From: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
To: barebox@lists.infradead.org
Subject: AT91: Pull
Date: Sat, 31 Dec 2011 16:16:55 +0100 [thread overview]
Message-ID: <20111231151655.GB945@game.jcrosoft.org> (raw)
Hi,
the following patch serie update nand, lowlevel init sram, gpio and
Atmel and Calao boards
The following changes since commit 06d9b16d98f9da5ff2b8ddf4bb3dea9e9352abf0:
atmel_nand: add on_flash_btt option to enable bbt option (2011-12-31 22:17:29 +0800)
are available in the git repository at:
git://uboot.jcrosoft.org/barebox.git at91
Jean-Christophe PLAGNIOL-VILLARD (12):
atmel: reference boards and Caloa boards bbt option enabled
ARM: import memcpy_from/toio and memset_io from linux
mtd: atmel_nand: optimize read/write buffer functions
atmel_nand: drop dead code
at91: add sram memory devices
at91sam9263ek: add nor partition
at91sam9x: switch lowlevel init to c
at91/gpio: simplify resources
usb-a926x: add led support
usb-a926x: add dfu support
at91_udc: update vbus param only if updated
usb-a926x: update defconfig
arch/arm/boards/at91sam9260ek/init.c | 1 +
arch/arm/boards/at91sam9261ek/init.c | 1 +
arch/arm/boards/at91sam9263ek/config.h | 18 --
arch/arm/boards/at91sam9263ek/env/config | 2 +
arch/arm/boards/at91sam9263ek/init.c | 1 +
arch/arm/boards/at91sam9m10g45ek/init.c | 1 +
arch/arm/boards/mmccpu/config.h | 18 --
arch/arm/boards/pm9261/config.h | 18 --
arch/arm/boards/pm9263/config.h | 18 --
arch/arm/boards/usb-a926x/env/bin/init_board | 43 ++++
arch/arm/boards/usb-a926x/init.c | 28 +++
arch/arm/configs/usb_a9260_defconfig | 20 ++-
arch/arm/configs/usb_a9263_128mib_defconfig | 20 ++-
arch/arm/configs/usb_a9263_defconfig | 20 ++-
arch/arm/configs/usb_a9g20_128mib_defconfig | 20 ++-
arch/arm/configs/usb_a9g20_defconfig | 20 ++-
arch/arm/include/asm/io.h | 7 +
arch/arm/lib/Makefile | 1 +
arch/arm/lib/io.c | 50 +++++
arch/arm/mach-at91/at91rm9200.c | 12 +-
arch/arm/mach-at91/at91rm9200_devices.c | 2 +
arch/arm/mach-at91/at91sam9260.c | 9 +-
arch/arm/mach-at91/at91sam9260_devices.c | 12 +
arch/arm/mach-at91/at91sam9261.c | 9 +-
arch/arm/mach-at91/at91sam9261_devices.c | 7 +
arch/arm/mach-at91/at91sam9263.c | 15 +-
arch/arm/mach-at91/at91sam9263_devices.c | 4 +
arch/arm/mach-at91/at91sam926x_lowlevel_init.S | 278 ------------------------
arch/arm/mach-at91/at91sam926x_lowlevel_init.c | 171 +++++++++++++++
arch/arm/mach-at91/at91sam9g45.c | 15 +-
arch/arm/mach-at91/at91sam9g45_devices.c | 2 +
arch/arm/mach-at91/gpio.c | 13 +-
arch/arm/mach-at91/include/mach/at91rm9200.h | 9 +-
arch/arm/mach-at91/include/mach/at91sam9260.h | 17 ++-
arch/arm/mach-at91/include/mach/at91sam9261.h | 10 +-
arch/arm/mach-at91/include/mach/at91sam9263.h | 11 +-
arch/arm/mach-at91/include/mach/at91sam9g45.h | 11 +-
arch/arm/mach-at91/include/mach/gpio.h | 4 -
drivers/mtd/nand/atmel_nand.c | 46 +----
drivers/usb/gadget/at91_udc.c | 17 ++-
drivers/usb/gadget/at91_udc.h | 1 +
41 files changed, 497 insertions(+), 485 deletions(-)
create mode 100644 arch/arm/boards/usb-a926x/env/bin/init_board
create mode 100644 arch/arm/lib/io.c
delete mode 100644 arch/arm/mach-at91/at91sam926x_lowlevel_init.S
create mode 100644 arch/arm/mach-at91/at91sam926x_lowlevel_init.c
Best Regards,
J.
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
next reply other threads:[~2011-12-31 15:22 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-12-31 15:16 Jean-Christophe PLAGNIOL-VILLARD [this message]
2011-12-31 15:21 ` [PATCH 01/12] atmel: reference boards and Caloa boards bbt option enabled Jean-Christophe PLAGNIOL-VILLARD
2012-01-03 9:37 ` Sascha Hauer
2012-01-03 10:33 ` Jean-Christophe PLAGNIOL-VILLARD
2011-12-31 15:21 ` [PATCH 02/12] ARM: import memcpy_from/toio and memset_io from linux Jean-Christophe PLAGNIOL-VILLARD
2011-12-31 15:21 ` [PATCH 03/12] mtd: atmel_nand: optimize read/write buffer functions Jean-Christophe PLAGNIOL-VILLARD
2011-12-31 15:21 ` [PATCH 04/12] atmel_nand: drop dead code Jean-Christophe PLAGNIOL-VILLARD
2011-12-31 15:21 ` [PATCH 05/12] at91: add sram memory devices Jean-Christophe PLAGNIOL-VILLARD
2012-01-04 13:42 ` Sascha Hauer
2011-12-31 15:21 ` [PATCH 06/12] at91sam9263ek: add nor partition Jean-Christophe PLAGNIOL-VILLARD
2011-12-31 15:21 ` [PATCH 07/12] at91sam9x: switch lowlevel init to c Jean-Christophe PLAGNIOL-VILLARD
2011-12-31 15:21 ` [PATCH 08/12] at91/gpio: simplify resources Jean-Christophe PLAGNIOL-VILLARD
2012-01-04 13:40 ` Sascha Hauer
2012-01-04 18:01 ` Jean-Christophe PLAGNIOL-VILLARD
2012-01-04 18:05 ` Jean-Christophe PLAGNIOL-VILLARD
2011-12-31 15:21 ` [PATCH 09/12] usb-a926x: add led support Jean-Christophe PLAGNIOL-VILLARD
2011-12-31 15:21 ` [PATCH 10/12] usb-a926x: add dfu support Jean-Christophe PLAGNIOL-VILLARD
2011-12-31 15:21 ` [PATCH 11/12] at91_udc: update vbus param only if updated Jean-Christophe PLAGNIOL-VILLARD
2011-12-31 15:21 ` [PATCH 12/12] usb-a926x: update defconfig Jean-Christophe PLAGNIOL-VILLARD
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=20111231151655.GB945@game.jcrosoft.org \
--to=plagnioj@jcrosoft.com \
--cc=barebox@lists.infradead.org \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.