
Wolfgang
Please pull from git://denx.de/git/u-boot-arm.git
It (actually) contains the following changes from Ulf - next time the commit messages will match the CHANGELOG entries......
Add MACH_TYPE records for several AT91 boards Merge to two at45.c files into a common file and 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
Unfortunately I shall not have time to request any more pulls before 17th August 2007.
Regards
Peter
---
The following changes since commit 4ef35e53c693556c54b0c22d6f873de87bade253: Wolfgang Denk (1): Coding style cleanup, update CHANGELOG
are found in the git repository at:
git://denx.de/git/u-boot-arm.git
Peter Pearse (6): Add MACH_TYPE records for several AT91 boards. Add the files. Delete the merged files. Update Makefiles for merged and split at45.c. Replace lost end of at45.c. Supply spi interface in at45.c
board/at91rm9200dk/Makefile | 2 +- board/at91rm9200dk/at45.c | 621 -------------------------- board/at91rm9200dk/led.c | 80 ++++ board/at91rm9200dk/mux.c | 39 ++ board/cmc_pu2/Makefile | 2 +- board/cmc_pu2/at45.c | 621 -------------------------- common/soft_i2c.c | 2 +- cpu/arm920t/at91rm9200/Makefile | 2 +- cpu/arm920t/at91rm9200/dm9161.c | 11 +- cpu/arm920t/at91rm9200/spi.c | 153 +++++++ cpu/arm920t/start.S | 93 ++++- drivers/Makefile | 2 +- drivers/at45.c | 569 +++++++++++++++++++++++ drivers/dataflash.c | 279 +++++++++--- include/asm-arm/arch-at91rm9200/AT91RM9200.h | 139 ++++--- include/asm-arm/mach-types.h | 69 +++ include/at45.h | 69 +++ include/config_cmd_all.h | 1 + include/configs/at91rm9200dk.h | 5 + include/dataflash.h | 43 ++- include/dm9161.h | 4 +- include/flash.h | 5 + include/led.h | 46 ++ 23 files changed, 1474 insertions(+), 1383 deletions(-) mode change 100644 => 100755 board/at91rm9200dk/Makefile delete mode 100644 board/at91rm9200dk/at45.c create mode 100644 board/at91rm9200dk/led.c create mode 100644 board/at91rm9200dk/mux.c mode change 100644 => 100755 board/cmc_pu2/Makefile delete mode 100644 board/cmc_pu2/at45.c create mode 100644 cpu/arm920t/at91rm9200/spi.c mode change 100644 => 100755 drivers/Makefile create mode 100755 drivers/at45.c create mode 100644 include/at45.h create mode 100644 include/led.h
---