summaryrefslogtreecommitdiff
path: root/cpu/arm920t/s3c24x0
Commit message (Collapse)AuthorAgeLines
* Bugfix in I2C initialisation on S3C2400.Wolfgang Denk2006-06-16-1/+1
| | | | | | | | | If the bus is blocked because of a previously interrupted transfer, up to eleven clocks are generated on the I2CSCL line to complete the transfer and to free the bus. With this fix pin I2CSCL (PG6) is really configured as GPIO so the clock pulses are really generated. Patch by Martin Krause, 04 Apr 2006
* GCC-4.x fixes: clean up global data pointer initialization for all boards.Wolfgang Denk2006-03-31-1/+2
|
* More GCC 4.x woesWolfgang Denk2006-03-11-1/+2
|
* Coding style cleanupWolfgang Denk2005-08-02-4/+2
|
* Fix low-level OHCI transfers for ARM920t and MPC5xxxWolfgang Denk2005-07-21-7/+63
| | | | | | | | A new, Windows compatible init sequence was also backported from Linux 2.6, but disabled with #undef NEW_INIT_SEQ as it wouldn't change the behaviour of the memopry sticks we tested. Maybe it's not relevant for mass storage devices. For recerence, see file common/usb.c, function usb_new_device(), section #ifdef NEW_INIT_SEQ.
* * Patch by Ladislav Michl, 05 Apr 2005:wdenk2005-04-05-1/+3
| | | | | | | | | Add support for VoiceBlue board. * Patch by Ladislav Michl, 05 Apr 2005: Fix netboot_common() prototypes. * Cleanup.
* Patches by Steven Scholz, 05 Apr 2005:wdenk2005-04-05-0/+27
| | | | | | | - Use i.MX watchdog timer for reset_cpu() - Move reset_cpu() out of cpu/arm920t/start.S into the SoC specific subdirectories cpu/arm920t/imx/ and cpu/arm920t/s3c24x0/ (now in interupts.c)
* Fix timer code for ARM systems: make sure that udelay() does notwdenk2005-04-04-6/+15
| | | | reset timers so it's save to use udelay() in timeout code.
* Patch by Steven Scholz, 25 Oct 2004:wdenk2005-04-03-1/+0
| | | | Declare reset_cpu() in include/common.h instead locally
* * Patch by David Brownell, 10 Mar 2005:wdenk2005-03-14-2/+4
| | | | | | Restore copyright statements in OHCI drivers. * Add support for TQM8540 board
* Patch by Steven Scholz, 16 Aug 2004:wdenk2004-10-09-0/+3002
- Introducing the concept of SoCs "./cpu/$(CPU)/$(SOC)" - creating subdirs for SoCs ./cpu/arm920t/imx and ./cpu/arm920t/s3c24x0 - moving SoC specific code out of cpu/arm920t/ into cpu/arm920t/$(SOC)/ - moving drivers/s3c24x0_i2c.c and drivers/serial_imx.c out of drivers/ into cpu/arm920t/$(SOC)/