
Hi Prafulla,
On Tue, Nov 01, 2011 at 11:25:21PM -0700, Prafulla Wadaskar wrote:
-----Original Message----- From: Simon Guinot [mailto:simon@sequanux.org] Sent: Tuesday, November 01, 2011 7:16 PM To: Prafulla Wadaskar Cc: u-boot@lists.denx.de; Simon Guinot Subject: [PATCH 2/2] ARM: add support for LaCie 2Big Network v2
From: Simon Guinot simon.guinot@sequanux.org
This patch adds support for the LaCie 2Big Network v2 board, based on the Marvell Kirkwood 6281 SoC.
Additional information is available at: http://lacie-nas.org/doku.php?id=2big_network_v2
Signed-off-by: Simon Guinot simon.guinot@sequanux.org
MAINTAINERS | 1 + board/LaCie/net2big_v2/Makefile | 49 +++++++++ board/LaCie/net2big_v2/kwbimage.cfg | 162 ++++++++++++++++++++++++++++++ board/LaCie/net2big_v2/net2big_v2.c | 188 +++++++++++++++++++++++++++++++++++ board/LaCie/net2big_v2/net2big_v2.h | 43 ++++++++ boards.cfg | 1 + include/configs/net2big_v2.h | 161 ++++++++++++++++++++++++++++++ 7 files changed, 605 insertions(+), 0 deletions(-) create mode 100644 board/LaCie/net2big_v2/Makefile create mode 100644 board/LaCie/net2big_v2/kwbimage.cfg create mode 100644 board/LaCie/net2big_v2/net2big_v2.c create mode 100644 board/LaCie/net2big_v2/net2big_v2.h create mode 100644 include/configs/net2big_v2.h
...snip...
diff --git a/boards.cfg b/boards.cfg index 17effc8..6bb567b 100644 --- a/boards.cfg +++ b/boards.cfg @@ -138,6 +138,7 @@ km_kirkwood_pci arm arm926ejs km_arm keymile mgcoge3un arm arm926ejs km_arm keymile kirkwood portl2 arm arm926ejs km_arm keymile kirkwood inetspace_v2 arm arm926ejs netspace_v2 LaCie kirkwood netspace_v2:INETSPACE_V2 +net2big_v2 arm arm926ejs net2big_v2 LaCie kirkwood netspace_v2 arm arm926ejs netspace_v2 LaCie kirkwood netspace_v2:NETSPACE_V2 netspace_max_v2 arm arm926ejs netspace_v2 LaCie kirkwood netspace_v2:NETSPACE_MAX_V2
How much is the delta for this board compared to other LaCie boards? Is kwbimage.cfg is copy paste from other boards that you have?
There is some differences. For example, the RAM frequency is 400MHz for the net2big_v2 and 267MHz for the netspace_v2.
I mean can you manage to support this board with :NET2BIG_V2 here?
No, but I can factorize a lot of code. I am working on it.
Regards,
Simon