[U-Boot] AT91 Pull Request

Wolfgang Denk wd at denx.de
Sat Apr 4 22:16:52 CEST 2009


Dear Jean-Christophe PLAGNIOL-VILLARD,

In message <20090404185017.GG32409 at game.jcrosoft.org> you wrote:
> 
> Please pull the following changes since commit 42f9ebff2f758bef524780a00c712eb63a72d99b:
>   Scott Wood (1):
>         MPC8260ADS: Define CONFIG_HAS_ETH0.
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-at91.git master
> 
> Jean-Christophe PLAGNIOL-VILLARD (11):
>       at91sam9/at91cap: spi init add hardware chip select support
>       at91sam9: add watchdog support
>       at91: rename DATAFLASH_MMC_SELECT to CONFIG_DATAFLASH_MMC_SELECT
>       at91rm9200dk: Move conditional compilation to Makefile
>       add dataflash mmc mux missing support
>       at91rm9200: move serial driver to drivers/serial
>       at91rm9200: move serial shutdown code to serial drivers
>       at91rm9200: Reset update
>       at91: move usb driver to drivers/usb
>       at91: move dataflash spi driver to drivers/spi
>       at91sam9263ek: enable hush and auto complete support
> 
> Ulf Samuelsson (1):
>       Add support for the AT91RM9200EK Board.
> 
>  MAKEALL                                            |    1 +
>  Makefile                                           |    4 +
>  board/atmel/at91rm9200dk/Makefile                  |   14 +-
>  board/atmel/at91rm9200dk/at91rm9200dk.c            |   10 +
>  board/atmel/at91rm9200dk/mux.c                     |   28 +-
>  board/atmel/at91rm9200ek/Makefile                  |   56 ++++
>  board/atmel/at91rm9200ek/at91rm9200ek.c            |   86 +++++
>  board/atmel/at91rm9200ek/config.mk                 |    1 +
>  board/atmel/at91rm9200ek/led.c                     |   89 ++++++
>  board/atmel/at91rm9200ek/misc.c                    |   51 +++
>  board/atmel/at91rm9200ek/mux.c                     |   38 +++
>  board/atmel/at91rm9200ek/partition.c               |   38 +++
>  board/atmel/at91rm9200ek/u-boot.lds                |   56 ++++
>  common/Makefile                                    |    1 +
>  common/cmd_dataflash_mmc_mux.c                     |   65 ++++
>  cpu/arm920t/at91rm9200/Makefile                    |    2 +-
>  cpu/arm920t/at91rm9200/interrupts.c                |   27 +--
>  cpu/arm920t/start.S                                |    4 +-
>  cpu/arm926ejs/at91/.gitignore                      |    5 +
>  cpu/arm926ejs/at91/Makefile                        |    2 -
>  cpu/arm926ejs/at91/at91cap9_spi.c                  |   37 ++-
>  cpu/arm926ejs/at91/at91sam9260_spi.c               |   36 ++-
>  cpu/arm926ejs/at91/at91sam9261_spi.c               |   36 ++-
>  cpu/arm926ejs/at91/at91sam9263_spi.c               |   36 ++-
>  cpu/arm926ejs/at91/at91sam9rl_spi.c                |   18 +-
>  doc/README.at91                                    |   11 +
>  drivers/mtd/cfi_flash.c                            |    5 +-
>  drivers/serial/Makefile                            |    1 +
>  .../serial.c => drivers/serial/at91rm9200_usart.c  |    5 +
>  drivers/serial/atmel_usart.c                       |    4 +-
>  drivers/spi/Makefile                               |    1 +
>  .../spi.c => drivers/spi/atmel_dataflash_spi.c     |    0
>  drivers/usb/Makefile                               |    1 +
>  .../at91/usb.c => drivers/usb/atmel_usb.c          |    0
>  drivers/watchdog/Makefile                          |   46 +++
>  drivers/watchdog/at91sam9_wdt.c                    |   79 +++++
>  include/asm-arm/arch-at91/at91_wdt.h               |   38 +++
>  include/at45.h                                     |    2 +-
>  include/common.h                                   |    1 +
>  include/configs/afeb9260.h                         |    2 +
>  include/configs/at91cap9adk.h                      |    2 +
>  include/configs/at91rm9200dk.h                     |    1 +
>  include/configs/at91rm9200ek.h                     |  327 ++++++++++++++++++++
>  include/configs/at91sam9260ek.h                    |    2 +
>  include/configs/at91sam9261ek.h                    |    2 +
>  include/configs/at91sam9263ek.h                    |    5 +
>  include/configs/at91sam9rlek.h                     |    1 +
>  include/configs/cmc_pu2.h                          |    1 +
>  include/configs/csb637.h                           |    1 +
>  include/configs/kb9202.h                           |    1 +
>  include/configs/m501sk.h                           |    1 +
>  include/configs/mp2usb.h                           |    1 +
>  52 files changed, 1201 insertions(+), 81 deletions(-)
>  create mode 100644 board/atmel/at91rm9200ek/Makefile
>  create mode 100644 board/atmel/at91rm9200ek/at91rm9200ek.c
>  create mode 100644 board/atmel/at91rm9200ek/config.mk
>  create mode 100644 board/atmel/at91rm9200ek/led.c
>  create mode 100644 board/atmel/at91rm9200ek/misc.c
>  create mode 100644 board/atmel/at91rm9200ek/mux.c
>  create mode 100644 board/atmel/at91rm9200ek/partition.c
>  create mode 100644 board/atmel/at91rm9200ek/u-boot.lds
>  create mode 100644 common/cmd_dataflash_mmc_mux.c
>  create mode 100644 cpu/arm926ejs/at91/.gitignore
>  rename cpu/arm920t/at91rm9200/serial.c => drivers/serial/at91rm9200_usart.c (97%)
>  rename cpu/arm926ejs/at91/spi.c => drivers/spi/atmel_dataflash_spi.c (100%)
>  rename cpu/arm926ejs/at91/usb.c => drivers/usb/atmel_usb.c (100%)
>  create mode 100644 drivers/watchdog/Makefile
>  create mode 100644 drivers/watchdog/at91sam9_wdt.c
>  create mode 100644 include/asm-arm/arch-at91/at91_wdt.h
>  create mode 100644 include/configs/at91rm9200ek.h

Applied, thanks.

Best regards,

Wolfgang Denk

-- 
DENX Software Engineering GmbH,     MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd at denx.de
       There is enough for the need of everyone in this world,
       but not for the greed of everyone.     - Mahatma Gandhi


More information about the U-Boot mailing list