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-Users] AT91 pull request
Date: Tue, 1 Apr 2008 07:51:45 +0200	[thread overview]
Message-ID: <20080401055145.GD11802@game.jcrosoft.org> (raw)

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.

             reply	other threads:[~2008-04-01  5:51 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-04-01  5:51 Jean-Christophe PLAGNIOL-VILLARD [this message]
2008-04-07 22:20 ` [U-Boot-Users] AT91 pull request Wolfgang Denk
  -- strict thread matches above, loose matches on Subject: below --
2008-05-31 20:05 Jean-Christophe PLAGNIOL-VILLARD
2008-05-31 21:49 ` Matt Gessner
2008-06-04 22:05 ` Wolfgang Denk
2008-07-05 15:38 [U-Boot-Users] AT91 Pull request Jean-Christophe PLAGNIOL-VILLARD
2008-07-06 22:48 ` Wolfgang Denk
2008-07-10 21:09 [U-Boot-Users] AT91 pull request Jean-Christophe PLAGNIOL-VILLARD
2008-07-13 12:41 ` 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=20080401055145.GD11802@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