From mboxrd@z Thu Jan 1 00:00:00 1970 From: Tom Date: Fri, 13 Nov 2009 20:21:58 -0600 Subject: [U-Boot] [PATCH] Initial support for Orion5x SoC and EDMini board In-Reply-To: <1258160515-31166-1-git-send-email-albert.aribaud@free.fr> References: <1258160515-31166-1-git-send-email-albert.aribaud@free.fr> Message-ID: <4AFE1446.3000608@windriver.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Albert Aribaud wrote: > This patch adds initial u-boot support for the Marvell orion5x > SoC and the LAcie ED Mini V2 board--support is limited to serial, > flash and environment. Further support will be added as devices > common with kirkwood are made useable across SoCs. > > Signed-off-by: Albert Aribaud > --- > Makefile | 3 + > board/Marvell/edminiv2/Makefile | 51 +++++ > board/Marvell/edminiv2/config.mk | 25 +++ > board/Marvell/edminiv2/edminiv2.c | 165 ++++++++++++++++ > board/Marvell/edminiv2/edminiv2.h | 39 ++++ > cpu/arm926ejs/orion5x/Makefile | 52 +++++ > cpu/arm926ejs/orion5x/cpu.c | 339 ++++++++++++++++++++++++++++++++ > cpu/arm926ejs/orion5x/dram.c | 61 ++++++ > cpu/arm926ejs/orion5x/mpp.c | 88 ++++++++ > cpu/arm926ejs/orion5x/timer.c | 171 ++++++++++++++++ > 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 | 53 +++++ > include/asm-arm/arch-orion5x/mpp.h | 122 ++++++++++++ > include/asm-arm/arch-orion5x/orion5x.h | 67 +++++++ > include/configs/edminiv2.h | 158 +++++++++++++++ > 17 files changed, 1650 insertions(+), 0 deletions(-) > create mode 100644 board/Marvell/edminiv2/Makefile > create mode 100644 board/Marvell/edminiv2/config.mk > create mode 100644 board/Marvell/edminiv2/edminiv2.c > create mode 100644 board/Marvell/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 For this pass, I ran the linux kernel checkpatch.pl against your patch. I get total: 180 errors, 26 warnings, 1662 lines checked In general, the patch should have no errors or warnings. Please fix the checkpatch issues. Tom