
Hello,
This patchset implements the support for the Calao USB A9263 board (patch 4). The first three patches are preliminary work, to convert the Atmel Dataflash SPI driver to the new C struct accessors introduced a few months ago for AT91 support in U-Boot.
Thanks,
Thomas
Thomas Petazzoni (4): Atmel Dataflash: convert to C struct accessors at91_spi: remove register offsets at91sam9263: add new style definition for SPI0_BASE Support for Calao USB A9263 board based on AT91SAM9263 CPU
MAINTAINERS | 4 + MAKEALL | 1 + Makefile | 3 + arch/arm/include/asm/arch-at91/at91_spi.h | 152 +++++++++------------ arch/arm/include/asm/arch-at91/at91sam9263.h | 1 + board/calao/usb-a9263/Makefile | 58 ++++++++ board/calao/usb-a9263/config.mk | 24 ++++ board/calao/usb-a9263/partition.c | 38 ++++++ board/calao/usb-a9263/usb-a9263.c | 186 ++++++++++++++++++++++++++ drivers/spi/atmel_dataflash_spi.c | 73 ++++++----- include/configs/usb-a9263.h | 182 +++++++++++++++++++++++++ 11 files changed, 598 insertions(+), 124 deletions(-) create mode 100644 board/calao/usb-a9263/Makefile create mode 100644 board/calao/usb-a9263/config.mk create mode 100644 board/calao/usb-a9263/partition.c create mode 100644 board/calao/usb-a9263/usb-a9263.c create mode 100644 include/configs/usb-a9263.h