public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
From: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] AT91 Pull Request
Date: Sat, 4 Apr 2009 20:50:17 +0200	[thread overview]
Message-ID: <20090404185017.GG32409@game.jcrosoft.org> (raw)

Hi Wolfgang,

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

Best Regards,
J.

             reply	other threads:[~2009-04-04 18:50 UTC|newest]

Thread overview: 26+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-04-04 18:50 Jean-Christophe PLAGNIOL-VILLARD [this message]
2009-04-04 20:16 ` [U-Boot] AT91 Pull Request Wolfgang Denk
  -- strict thread matches above, loose matches on Subject: below --
2009-04-17 19:55 Jean-Christophe PLAGNIOL-VILLARD
2009-04-24 11:37 ` Wolfgang Denk
2009-03-30 16:38 Jean-Christophe PLAGNIOL-VILLARD
2009-04-01 22:17 ` Wolfgang Denk
2009-03-29 21:17 Jean-Christophe PLAGNIOL-VILLARD
2009-03-25 21:34 Jean-Christophe PLAGNIOL-VILLARD
2009-03-26 21:28 ` Wolfgang Denk
2009-03-03 14:11 Jean-Christophe PLAGNIOL-VILLARD
2009-03-08 23:34 ` Wolfgang Denk
2009-01-06 20:57 [U-Boot] AT91 Pull request Jean-Christophe PLAGNIOL-VILLARD
2009-01-10 16:33 ` Wolfgang Denk
2009-01-06 20:57 Jean-Christophe PLAGNIOL-VILLARD
2008-12-06 12:13 Jean-Christophe PLAGNIOL-VILLARD
2008-12-09  0:06 ` Wolfgang Denk
2008-12-02 21:04 Jean-Christophe PLAGNIOL-VILLARD
2008-12-04 23:28 ` Wolfgang Denk
2008-11-21  0:43 [U-Boot] AT91 pull request Jean-Christophe PLAGNIOL-VILLARD
2008-11-25 10:29 ` Wolfgang Denk
2008-11-06 19:32 Jean-Christophe PLAGNIOL-VILLARD
2008-11-08 23:11 ` Wolfgang Denk
2008-08-12 16:45 [U-Boot] AT91 Pull Request Jean-Christophe PLAGNIOL-VILLARD
2008-08-12 20:03 ` Wolfgang Denk
2008-08-08 22:48 [U-Boot] AT91 pull request Jean-Christophe PLAGNIOL-VILLARD
2008-08-09 23:05 ` Wolfgang Denk

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20090404185017.GG32409@game.jcrosoft.org \
    --to=plagnioj@jcrosoft.com \
    --cc=u-boot@lists.denx.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox