[U-Boot] [PATCH V2 0/3] Support for Marvell Orion5x SoC and LaCie ED Mini V2 board
Albert Aribaud
albert.aribaud at free.fr
Sun Nov 15 00:03:13 CET 2009
This series of patches is the second attempt at introducing support
for the Marvell Orion5x SoC and the LaCie ED Mini V2 board. Initial
support includes only serial port and Flash. Additional support will
be added as Marvell devices (e.g. egiga) are made common to kirkwood
and orion5x.
All comments to the first attempt have been taken into account.
The Linux checkpatch.pl script has been run on all three patches. The
first patch has six errors and zero warnings, and all errors are false
positives triggered by colons in 'asm volatile' statements. The second
and third patches have zero errors and zero warnings.
Albert Aribaud (3):
Initial support for Marvell Orion5x SoC
Add Orion5x support to 16550 serial device driver
Add support for the LaCie ED Mini V2 board
MAINTAINERS | 4 +
MAKEALL | 1 +
Makefile | 3 +
board/LaCie/edminiv2/Makefile | 54 +++++
board/LaCie/edminiv2/config.mk | 27 +++
board/LaCie/edminiv2/edminiv2.c | 134 +++++++++++++
board/LaCie/edminiv2/edminiv2.h | 43 ++++
cpu/arm926ejs/orion5x/Makefile | 52 +++++
cpu/arm926ejs/orion5x/cpu.c | 332 ++++++++++++++++++++++++++++++++
cpu/arm926ejs/orion5x/dram.c | 61 ++++++
cpu/arm926ejs/orion5x/mpp.c | 89 +++++++++
cpu/arm926ejs/orion5x/timer.c | 175 +++++++++++++++++
drivers/serial/serial.c | 3 +
include/asm-arm/arch-orion5x/88f5182.h | 40 ++++
include/asm-arm/arch-orion5x/cpu.h | 213 ++++++++++++++++++++
include/asm-arm/arch-orion5x/gpio.h | 52 +++++
include/asm-arm/arch-orion5x/mpp.h | 122 ++++++++++++
include/asm-arm/arch-orion5x/orion5x.h | 67 +++++++
include/configs/edminiv2.h | 143 ++++++++++++++
19 files changed, 1615 insertions(+), 0 deletions(-)
create mode 100644 board/LaCie/edminiv2/Makefile
create mode 100644 board/LaCie/edminiv2/config.mk
create mode 100644 board/LaCie/edminiv2/edminiv2.c
create mode 100644 board/LaCie/edminiv2/edminiv2.h
create mode 100644 cpu/arm926ejs/orion5x/Makefile
create mode 100644 cpu/arm926ejs/orion5x/cpu.c
create mode 100644 cpu/arm926ejs/orion5x/dram.c
create mode 100644 cpu/arm926ejs/orion5x/mpp.c
create mode 100644 cpu/arm926ejs/orion5x/timer.c
create mode 100644 include/asm-arm/arch-orion5x/88f5182.h
create mode 100644 include/asm-arm/arch-orion5x/cpu.h
create mode 100644 include/asm-arm/arch-orion5x/gpio.h
create mode 100644 include/asm-arm/arch-orion5x/mpp.h
create mode 100644 include/asm-arm/arch-orion5x/orion5x.h
create mode 100644 include/configs/edminiv2.h
More information about the U-Boot
mailing list