
Albert Aribaud wrote:
This patch adds support for the LaCie ED Mini V2 product which is based on the Marvell Orion5x SoC. Current support is limited to console and Flash. Flash support uses CONFIG_FLASH_CFI_LEGACY as the Macronix MX29LV400 used on ED Mini V2 is not CFI compliant (mixes 16 and 8 bit behaviors).
Signed-off-by: Albert Aribaud albert.aribaud@free.fr
MAINTAINERS | 4 + MAKEALL | 1 + Makefile | 3 + board/LaCie/edminiv2/Makefile | 58 ++++++ board/LaCie/edminiv2/config.mk | 27 +++ board/LaCie/edminiv2/edminiv2.c | 88 +++++++++ board/LaCie/edminiv2/edminiv2.h | 59 ++++++ board/LaCie/edminiv2/lowlevel_init.S | 324 ++++++++++++++++++++++++++++++++++ include/configs/edminiv2.h | 147 +++++++++++++++ 9 files changed, 711 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 board/LaCie/edminiv2/lowlevel_init.S create mode 100644 include/configs/edminiv2.h
Please resolve the compile warnings generated from MAKEALL for the edminiv2_config.
dram.c: In function 'dram_init': dram.c:59: warning: passing argument 1 of 'get_ram_size' makes pointer from integer without a cast edminiv2.c: In function 'board_init': edminiv2.c:85: warning: implicit declaration of function 'orion5x_sdram_bar'
Tom