summaryrefslogtreecommitdiffstats
path: root/cpu/arm920t
Commit message (Collapse)AuthorAgeFilesLines
* s3c24x0: Fix unused variable 'i' in function 'serial_init_dev'Jean-Christophe PLAGNIOL-VILLARD2008-02-171-1/+0
| | | | Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
* ARM: cleanup duplicated exception handlingcodeAndreas Engel2008-02-141-132/+3
| | | | | | Move duplicated exception handling code into lib_arm. Signed-off-by: Andreas Engel <andreas.engel@ericsson.com>
* ARM: S3C24x0 SoC NAND controller supportHarald Welte2008-02-042-1/+180
| | | | | | This patch adds NAND support to the S3C24x0 SoC code in u-boot Signed-off-by: Harald Welte <laforge@openmoko.org>
* ARM: s3c24xx: Multiple serial port supportHarald Welte2008-02-041-21/+143
| | | | | | This patch adds support for CONFIG_SERIAL_MULTI on s3c24x0 CPU's Signed-off-by: Harald Welte <laforge@openmoko.org>
* ARM: arm920t: Allow use of 'gd' pointer from IRQHarald Welte2008-02-041-5/+5
| | | | | | | | This patch allows us to use the 'gd' pointer (and thus environment and everything else associated with it) from interrupt context on arm920t. Signed-off-by: Harald Welte <laforge@openmoko.org>
* ARM: arm920/s3c24xx: IRQ demulitplexer callbackHarald Welte2008-02-042-1/+15
| | | | | | | | | | | This patch adds a IRQ demultiplexer callback to the arm920 cpu core code, plus a stub implementation of it for the S3C2410. The purpose is to allow arm920t implementations such as the s3c24x0 to implement interrupt handlers in u-boot without having to touch core arm920t code. Signed-off-by: Harald Welte <laforge@openmoko.org>
* s3c24x0: Fix usb_ohci.c missing in MakefileJean-Christophe PLAGNIOL-VILLARD2007-11-182-8/+8
| | | | | | and usb_ohci.c warning differ in signedness Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
* fix warning: no return statement in function returning non-voidJean-Christophe PLAGNIOL-VILLARD2007-10-241-4/+4
| | | | Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
* Move coloured led API to status_led.hPeter Pearse2007-09-181-1/+1
| | | | Improve indentation in drivers/at45.c
* Final tidyPeter Pearse2007-09-111-0/+0
|
* Changed API name to coloured_led.hPeter Pearse2007-09-051-105/+21
| | | | | Removed code using deprecated ifdef CONFIG_BOOTBINFUNC Tidied other cpu/arm920t/start.S code
* Add coloured led interface for ARM boards.Peter Pearse2007-09-041-8/+6
| | | | Use it in cpu/arm920t/start.S to indicate U-Boot code has been entered.
* Coding style cleanup. Update CHANGELOG.Wolfgang Denk2007-08-141-2/+0
| | | | Signed-off-by: Wolfgang Denk <wd@denx.de>
* Add the files.Peter Pearse2007-08-141-0/+153
|
* Add MACH_TYPE records for several AT91 boards.Peter Pearse2007-08-143-8/+98
| | | | | | | | | | | Merge to two at45.c files into a common file, split to at45.c and spi.c Fix spelling error in DM9161 PHY Support. Initialize at91rm9200 board (and set LED). Add PIO control for at91rm9200dk LEDs and Mux. Change dataflash partition boundaries to be compatible with Linux 2.6. Signed-off-by: Peter Pearse <peter.pearse@arm.com> Signed-off-by: Ulf Samuelsson <ulf@atmel.com>
* Merge with git://www.denx.de/git/u-boot.gitMarkus Klotzbuecher2007-08-074-11/+11
|\
| * cpu/[7a-ln-z]*: Remove obsolete references to CONFIG_COMMANDSJon Loeliger2007-07-094-11/+11
| | | | | | | | Signed-off-by: Jon Loeliger <jdl@freescale.com>
| * cpu/ non-mpc*: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).Jon Loeliger2007-07-044-6/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | This is a compatibility step that allows both the older form and the new form to co-exist for a while until the older can be removed entirely. All transformations are of the form: Before: #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) After: #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT) Signed-off-by: Jon Loeliger <jdl@freescale.com>
* | Merge with /home/mk/git/u-boot-generic_ohci#generic_ohciWolfgang Denk2006-11-272-2/+2
|\ \
| * | Introduced the configuration option CONFIG_USB_OHCI_NEW in order to be ableMarkus Klotzbuecher2006-11-272-2/+2
| | | | | | | | | | | | to choose between the old and the generic OHCI drivers.
* | | Merge with /home/wd/git/u-boot/masterWolfgang Denk2006-11-275-42/+58
|\ \ \ | |/ / |/| / | |/
| * Move "ar" flags to config.mk to allow for silent "make -s"Wolfgang Denk2006-10-095-5/+5
| | | | | | | | Based on patch by Mike Frysinger, 20 Jun 2006
| * Add support for a saving build objects in a separate directory.Marian Balakowicz2006-09-015-39/+55
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Modifications are based on the linux kernel approach and support two use cases: 1) Add O= to the make command line 'make O=/tmp/build all' 2) Set environement variable BUILD_DIR to point to the desired location 'export BUILD_DIR=/tmp/build' 'make' The second approach can also be used with a MAKEALL script 'export BUILD_DIR=/tmp/build' './MAKEALL' Command line 'O=' setting overrides BUILD_DIR environent variable. When none of the above methods is used the local build is performed and the object files are placed in the source directory.
* | Merge with /home/wd/git/u-boot/masterWolfgang Denk2006-08-071-1/+3
|\ \ | |/
| * Add support for friendly-arm SBC-2410X boardWolfgang Denk2006-07-211-1/+3
| | | | | | | | Patch by JinHua Luo, 01 Sep 2005
* | More code cleanupWolfgang Denk2006-06-261-3/+3
| |
* | Merge with /home/wd/git/u-boot/masterWolfgang Denk2006-06-261-1/+1
|\ \ | |/
| * Bugfix in I2C initialisation on S3C2400.Wolfgang Denk2006-06-161-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
* | Support generic OHCI support for the s3c24x0 cpu.Markus Klotzbuecher2006-05-303-1/+79
| |
* | Changed the mp2usb (at91rm9200) board to use the generic OHCI driver. SomeMarkus Klotzbuecher2006-05-234-2055/+48
|/ | | | fixes to the latter.
* Fix CONFIG_SKIP_LOWLEVEL_INIT dependency in cpu/arm920t/start.SWolfgang Denk2006-04-031-1/+2
| | | | Patch by Peter Menzebach, 13 Oct 2005 [DNX#2006040142000473]
* GCC-4.x fixes: clean up global data pointer initialization for all boards.Wolfgang Denk2006-03-314-5/+10
|
* More GCC 4.x woesWolfgang Denk2006-03-111-1/+2
|
* Some code cleanup for GCC 4.xWolfgang Denk2006-03-111-2/+2
|
* Add support for multiple PHYs.Marian Balakowicz2005-10-281-5/+16
|
* Support passing of OF flat trees to the kernel.Wolfgang Denk2005-10-131-1/+1
| | | | Patch by Pantelis Antoniou, 04 Sep 2005
* Eliminate hard-coded address of Ethernet transfer buffer on at91rm9200Wolfgang Denk2005-10-091-14/+8
| | | | | | | | | | Patch by Anders Larsen, 07 Oct 2005 The Atmel errata #11 states that the transfer buffer descriptor table must be aligned on a 16-word boundary. As it turned out, this is insufficient - it seems the table must be aligned on a boundary at least as large as the table itself (in Linux this is not an issue - the table is aligned on a PAGE_SIZE (4096) boundary).
* Update make target for ARM supported boards.Wolfgang Denk2005-10-061-2/+0
| | | | | Use lowlevel_init() instead of platformsetup() [rename]. Patch by Peter Pearse, 06 Oct 2005
* Complete support for the KwikByte KB920x boardsWolfgang Denk2005-10-061-2/+1
| | | | Patch by Anders Larsen, 05 Oct 2005
* Set the AT91RM9200 clock to asynchronous modeWolfgang Denk2005-10-051-2/+2
| | | | Patch by Anders Larsen, 03 May 2005
* Set the AT91RM9200 clock to synchronous modeWolfgang Denk2005-10-051-0/+5
| | | | Patch by Anders Larsen, 29 Apr 2005
* Add support for Cogent csb637Wolfgang Denk2005-10-052-1/+234
| | | | Patch by Anders Larsen, 29 Apr 2005
* Fix dm9161.c initializationWolfgang Denk2005-10-051-3/+4
| | | | Patch by Anders Larsen, 29 Apr 2005
* * Move dm9161.c and lxt972.c into cpu/arm920t/at91rm9200Wolfgang Denk2005-10-054-2/+417
| | | | | | | Patch by Anders Larsen, 29 Apr 2005 * Fix problems introduced by Patch by Steven Scholz, 02 Mar 2005 (8e2be51de8dd03c1ce4d06cbb18ad06133d47cd5)
* Update ARM Integrator boards:Wolfgang Denk2005-10-041-1/+0
| | | | | | | Correct addessing errors in platform files. Split off common core module data from Integrator header files to include/armcoremodule.h. Patch by Peter Pearse, 04 Oct 2005
* Make sure only supported compiler options are usedWolfgang Denk2005-10-041-2/+10
| | | | | | Import "cc-option" shell function from kernel and use it to get the correct ARM GCC options for individual CPUs Patch by Peter Pearse, 30 Jun 2005
* Add support for AT91RM9200 OHCI Controller.Wolfgang Denk2005-09-263-1/+2055
| | | | Patch by Eric Benard, 07 Apr 2005
* CleanupWolfgang Denk2005-09-251-1/+1
|
* Add ARM946E cpu and core module targets; remap memory to 0x00000000Wolfgang Denk2005-09-252-8/+16
| | | | Patch by Peter Pearse, 2 Feb 2005
* Fix make dependencies for at91rm9200 and ks8695 cpusWolfgang Denk2005-08-232-4/+4
| | | | Patch by Steven Scholz, 23 Aug 2005
OpenPOWER on IntegriCloud