public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH V2 0/3] Support for Marvell Orion5x SoC and LaCie ED Mini V2 board
@ 2009-11-14 23:03 Albert Aribaud
  2009-11-14 23:03 ` [U-Boot] [PATCH V2 1/3] Initial support for Marvell Orion5x SoC Albert Aribaud
  0 siblings, 1 reply; 27+ messages in thread
From: Albert Aribaud @ 2009-11-14 23:03 UTC (permalink / raw)
  To: u-boot

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

^ permalink raw reply	[flat|nested] 27+ messages in thread

end of thread, other threads:[~2009-12-23  6:07 UTC | newest]

Thread overview: 27+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-11-14 23:03 [U-Boot] [PATCH V2 0/3] Support for Marvell Orion5x SoC and LaCie ED Mini V2 board Albert Aribaud
2009-11-14 23:03 ` [U-Boot] [PATCH V2 1/3] Initial support for Marvell Orion5x SoC Albert Aribaud
2009-11-14 23:03   ` [U-Boot] [PATCH V2 2/3] Add Orion5x support to 16550 serial device driver Albert Aribaud
2009-11-14 23:03     ` [U-Boot] [PATCH V2 3/3] Add support for the LaCie ED Mini V2 board Albert Aribaud
2009-11-16  9:05       ` Prafulla Wadaskar
2009-11-29 11:22         ` Albert ARIBAUD
2009-11-18 22:21       ` Wolfgang Denk
2009-11-19  7:51         ` Stefan Roese
2009-11-19 12:48           ` Albert ARIBAUD
2009-11-19 13:10             ` Stefan Roese
2009-11-28 22:21         ` Albert ARIBAUD
2009-11-29 12:56         ` Albert ARIBAUD
2009-12-05  0:35           ` Wolfgang Denk
2009-12-05  7:03             ` Albert ARIBAUD
2009-12-07 21:56               ` Wolfgang Denk
2009-12-11 15:51                 ` Albert ARIBAUD
2009-12-02  8:31         ` [U-Boot] Mixed 8/16 bits NOR FLASH support (was: [PATCH V2 3/3] Add support for the LaCie ED Mini V2 board) Albert ARIBAUD
2009-12-02  9:15           ` Stefan Roese
2009-12-02  9:38             ` Wolfgang Denk
2009-12-02 11:07               ` [U-Boot] Mixed 8/16 bits NOR FLASH support Albert ARIBAUD
2009-12-02 10:57             ` Albert ARIBAUD
2009-11-18 22:17   ` [U-Boot] [PATCH V2 1/3] Initial support for Marvell Orion5x SoC Wolfgang Denk
2009-11-18 22:51     ` Albert ARIBAUD
2009-11-29  8:55     ` Albert ARIBAUD
2009-12-05  0:37       ` Wolfgang Denk
2009-12-23  6:07         ` Prafulla Wadaskar
2009-11-29 10:34     ` Albert ARIBAUD

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox