public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
From: Stelian Pop <stelian@popies.net>
To: u-boot@lists.denx.de
Subject: [U-Boot-Users] [PATCH 0/3] Add support for AT91CAP9 cpu and AT91CAP9A-DK board
Date: Wed, 16 Jan 2008 11:36:51 +0100	[thread overview]
Message-ID: <1200479811.6251.20.camel@galileo> (raw)

[Repost: previous patch was too big for the mailing list, let's try
again...]

Hi,

The patch below adds support for Atmel's AT91CAP9 Customizable
Microcontrollers family:
	http://www.atmel.com/products/AT91CAP/Default.asp
and more specifically for the AT91CAP9A-DK development kit:
	http://www.atmel.com/dyn/products/tools_card.asp?tool_id=4138

The supported features include:
	- SDRAM
	- Serial port DBGU
	- LEDs
	- SPI
	- NOR Flash
	- NAND Flash with ECC soft
	- DataFlash (through SPI)
	- Ethernet

This patch is to be applied on top of my three small patches I submitted
yesterday:
	http://article.gmane.org/gmane.comp.boot-loaders.u-boot/35306
	http://article.gmane.org/gmane.comp.boot-loaders.u-boot/35307
	http://article.gmane.org/gmane.comp.boot-loaders.u-boot/35309

For size reasons, the patch has been hand edited, splitted in several
chunks, and the AT91CAP9.h file (440 kB !) is not in the patch at all.
Please download the full version from:
	http://www.popies.net/tmp/uboot-at91cap9-full.patch
instead.

Comments are welcomed.

Signed-off-by: Stelian Pop <stelian@popies.net>

---
 CREDITS                                  |    4 +
 MAKEALL                                  |    1 +
 Makefile                                 |    3 +
 board/at91cap9adk/Makefile               |   50 +
 board/at91cap9adk/at91cap9adk.c          |  273 ++
 board/at91cap9adk/config.mk              |    1 +
 board/at91cap9adk/led.c                  |   79 +
 board/at91cap9adk/nand.c                 |   63 +
 board/at91cap9adk/u-boot.lds             |   57 +
 cpu/arm926ejs/at91cap9/Makefile          |   46 +
 cpu/arm926ejs/at91cap9/config.mk         |    5 +
 cpu/arm926ejs/at91cap9/ether.c           |   35 +
 cpu/arm926ejs/at91cap9/lowlevel_init.S   |   43 +
 cpu/arm926ejs/at91cap9/serial.c          |  107 +
 cpu/arm926ejs/at91cap9/spi.c             |  125 +
 cpu/arm926ejs/at91cap9/timer.c           |  165 +
 cpu/arm926ejs/at91cap9/usb.c             |   64 +
 cpu/arm926ejs/interrupts.c               |    2 +-
 cpu/arm926ejs/start.S                    |    3 +
 drivers/mtd/dataflash.c                  |    4 +-
 drivers/net/macb.c                       |    8 +
 drivers/net/macb.h                       |    6 +
 include/asm-arm/arch-at91cap9/AT91CAP9.h | 5594 ++++++++++++++++++++++++++++++
 include/asm-arm/arch-at91cap9/clk.h      |   34 +
 include/asm-arm/arch-at91cap9/hardware.h |   38 +
 include/asm-arm/dma-mapping.h            |   50 +
 include/asm-arm/mach-types.h             |   15 +
 include/configs/at91cap9adk.h            |  234 ++
 net/eth.c                                |    4 +
 29 files changed, 7110 insertions(+), 3 deletions(-)
 create mode 100644 board/at91cap9adk/Makefile
 create mode 100644 board/at91cap9adk/at91cap9adk.c
 create mode 100644 board/at91cap9adk/config.mk
 create mode 100644 board/at91cap9adk/led.c
 create mode 100644 board/at91cap9adk/nand.c
 create mode 100644 board/at91cap9adk/u-boot.lds
 create mode 100644 cpu/arm926ejs/at91cap9/Makefile
 create mode 100644 cpu/arm926ejs/at91cap9/config.mk
 create mode 100644 cpu/arm926ejs/at91cap9/ether.c
 create mode 100644 cpu/arm926ejs/at91cap9/lowlevel_init.S
 create mode 100644 cpu/arm926ejs/at91cap9/serial.c
 create mode 100644 cpu/arm926ejs/at91cap9/spi.c
 create mode 100644 cpu/arm926ejs/at91cap9/timer.c
 create mode 100644 cpu/arm926ejs/at91cap9/usb.c
 create mode 100644 include/asm-arm/arch-at91cap9/AT91CAP9.h
 create mode 100644 include/asm-arm/arch-at91cap9/clk.h
 create mode 100644 include/asm-arm/arch-at91cap9/hardware.h
 create mode 100644 include/asm-arm/dma-mapping.h
 create mode 100644 include/configs/at91cap9adk.h



-- 
Stelian Pop <stelian@popies.net>

             reply	other threads:[~2008-01-16 10:36 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-01-16 10:36 Stelian Pop [this message]
2008-01-16 10:37 ` [U-Boot-Users] [PATCH 1/3] Add support for AT91CAP9 cpu and AT91CAP9A-DK board Stelian Pop
2008-01-16 10:37 ` [U-Boot-Users] [PATCH 2/3] " Stelian Pop
2008-01-16 10:38 ` [U-Boot-Users] [PATCH 3/3] " Stelian Pop
2008-01-18  8:45   ` Haavard Skinnemoen
2008-01-18  9:28     ` Stelian Pop

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=1200479811.6251.20.camel@galileo \
    --to=stelian@popies.net \
    --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