From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jean-Christophe PLAGNIOL-VILLARD Date: Tue, 1 Apr 2008 07:51:45 +0200 Subject: [U-Boot-Users] AT91 pull request Message-ID: <20080401055145.GD11802@game.jcrosoft.org> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Please pull u-boot-at91 The following changes since commit 74d1e66d22dac91388bc538b2fe19f735edc5b82: Bartlomiej Sieka (1): Fix host tool build breakage, take two are available in the git repository at: git://www.denx.de/git/u-boot-at91.git master David Brownell (2): add missing ARM boards to MAKEALL use correct at91rm9200 register name Jean-Christophe PLAGNIOL-VILLARD (5): use correct at91rm9200 register name in m501sk board AT91CAP9ADK: Move CONFIG_CMD_NAND to Makefile AT91SAM9: Move CONFIG_HAS_DATAFLASH to Makefile AT91SAM9260EK: Move CONFIG_CMD_NAND to Makefile dataflash: Move CONFIG_HAS_DATAFLASH to Makefile Stelian Pop (9): Fix CFG_NO_FLASH compilation. Cleanup DataFlash partition handling Use timer_init() instead of board supplied interrupt_init() Move at91cap9 specific files to at91sam9 directory Import several header files from Linux Finish header files reworking Port AT91CAP9 to the new headers Add support for AT91SAM9260EK Add maintainership information for AT91CAP9ADK and AT91SAM9260EK boards MAINTAINERS | 5 + MAKEALL | 4 + Makefile | 5 +- board/atmel/at91cap9adk/Makefile | 8 +- board/atmel/at91cap9adk/at91cap9adk.c | 231 +++++----- board/atmel/at91cap9adk/led.c | 43 +- board/atmel/at91cap9adk/nand.c | 11 +- .../atmel/at91sam9260ek}/Makefile | 24 +- board/atmel/at91sam9260ek/at91sam9260ek.c | 236 +++++++++ board/atmel/at91sam9260ek/config.mk | 1 + .../ether.c => board/atmel/at91sam9260ek/led.c | 41 ++- board/atmel/at91sam9260ek/nand.c | 76 +++ .../clk.h => board/atmel/at91sam9260ek/u-boot.lds | 48 ++- board/m501sk/memsetup.S | 8 +- common/cmd_flash.c | 25 +- common/cmd_mem.c | 6 +- cpu/arm920t/at91rm9200/lowlevel_init.S | 6 +- cpu/arm926ejs/at91cap9/spi.c | 119 ----- cpu/arm926ejs/{at91cap9 => at91sam9}/Makefile | 9 +- cpu/arm926ejs/{at91cap9 => at91sam9}/config.mk | 0 cpu/arm926ejs/{at91cap9 => at91sam9}/ether.c | 6 +- .../{at91cap9 => at91sam9}/lowlevel_init.S | 2 +- cpu/arm926ejs/at91sam9/spi.c | 157 ++++++ cpu/arm926ejs/{at91cap9 => at91sam9}/timer.c | 32 +- cpu/arm926ejs/{at91cap9 => at91sam9}/usb.c | 12 +- cpu/arm926ejs/interrupts.c | 2 +- drivers/mtd/Makefile | 8 +- drivers/mtd/dataflash.c | 83 +--- drivers/net/macb.c | 4 +- include/asm-arm/arch-at91cap9/AT91CAP9.h | 518 -------------------- include/asm-arm/arch-at91cap9/hardware.h | 38 -- include/asm-arm/arch-at91sam9/at91_pio.h | 49 ++ include/asm-arm/arch-at91sam9/at91_pit.h | 29 ++ include/asm-arm/arch-at91sam9/at91_pmc.h | 99 ++++ include/asm-arm/arch-at91sam9/at91_rstc.h | 38 ++ include/asm-arm/arch-at91sam9/at91_spi.h | 105 ++++ include/asm-arm/arch-at91sam9/at91cap9.h | 125 +++++ include/asm-arm/arch-at91sam9/at91cap9_matrix.h | 132 +++++ include/asm-arm/arch-at91sam9/at91sam9260.h | 124 +++++ include/asm-arm/arch-at91sam9/at91sam9260_matrix.h | 78 +++ include/asm-arm/arch-at91sam9/at91sam926x_mc.h | 140 ++++++ .../asm-arm/{arch-at91cap9 => arch-at91sam9}/clk.h | 4 +- include/asm-arm/arch-at91sam9/gpio.h | 366 ++++++++++++++ include/asm-arm/arch-at91sam9/hardware.h | 56 +++ include/asm-arm/arch-at91sam9/io.h | 40 ++ .../{arch-at91cap9 => arch-at91sam9}/memory-map.h | 10 +- include/configs/at91cap9adk.h | 61 +-- include/configs/at91rm9200dk.h | 2 +- include/configs/at91sam9260ek.h | 191 +++++++ include/configs/cmc_pu2.h | 2 +- include/configs/csb637.h | 2 +- include/configs/mp2usb.h | 2 +- include/dataflash.h | 6 +- net/eth.c | 6 +- 54 files changed, 2406 insertions(+), 1029 deletions(-) copy {cpu/arm926ejs/at91cap9 => board/atmel/at91sam9260ek}/Makefile (73%) create mode 100644 board/atmel/at91sam9260ek/at91sam9260ek.c create mode 100644 board/atmel/at91sam9260ek/config.mk copy cpu/arm926ejs/at91cap9/ether.c => board/atmel/at91sam9260ek/led.c (56%) create mode 100644 board/atmel/at91sam9260ek/nand.c copy include/asm-arm/arch-at91cap9/clk.h => board/atmel/at91sam9260ek/u-boot.lds (56%) delete mode 100644 cpu/arm926ejs/at91cap9/spi.c rename cpu/arm926ejs/{at91cap9 => at91sam9}/Makefile (87%) rename cpu/arm926ejs/{at91cap9 => at91sam9}/config.mk (100%) rename cpu/arm926ejs/{at91cap9 => at91sam9}/ether.c (89%) rename cpu/arm926ejs/{at91cap9 => at91sam9}/lowlevel_init.S (97%) create mode 100644 cpu/arm926ejs/at91sam9/spi.c rename cpu/arm926ejs/{at91cap9 => at91sam9}/timer.c (84%) rename cpu/arm926ejs/{at91cap9 => at91sam9}/usb.c (83%) delete mode 100644 include/asm-arm/arch-at91cap9/AT91CAP9.h delete mode 100644 include/asm-arm/arch-at91cap9/hardware.h create mode 100644 include/asm-arm/arch-at91sam9/at91_pio.h create mode 100644 include/asm-arm/arch-at91sam9/at91_pit.h create mode 100644 include/asm-arm/arch-at91sam9/at91_pmc.h create mode 100644 include/asm-arm/arch-at91sam9/at91_rstc.h create mode 100644 include/asm-arm/arch-at91sam9/at91_spi.h create mode 100644 include/asm-arm/arch-at91sam9/at91cap9.h create mode 100644 include/asm-arm/arch-at91sam9/at91cap9_matrix.h create mode 100644 include/asm-arm/arch-at91sam9/at91sam9260.h create mode 100644 include/asm-arm/arch-at91sam9/at91sam9260_matrix.h create mode 100644 include/asm-arm/arch-at91sam9/at91sam926x_mc.h rename include/asm-arm/{arch-at91cap9 => arch-at91sam9}/clk.h (95%) create mode 100644 include/asm-arm/arch-at91sam9/gpio.h create mode 100644 include/asm-arm/arch-at91sam9/hardware.h create mode 100644 include/asm-arm/arch-at91sam9/io.h rename include/asm-arm/{arch-at91cap9 => arch-at91sam9}/memory-map.h (85%) create mode 100644 include/configs/at91sam9260ek.h Best Reagards, J.