From mboxrd@z Thu Jan 1 00:00:00 1970 From: Simon Guinot Date: Mon, 2 May 2011 23:01:37 +0200 Subject: [U-Boot] [PATCH v4 0/5] Add support for LaCie NAS Network Space v2 In-Reply-To: References: Message-ID: <1304370102-5978-1-git-send-email-simon.guinot@sequanux.org> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de From: Simon Guinot This patch series adds support for Network Space v2 board and parents. Changes since v1: - netconsole: restore NetOurIP check - add entries to MAINTAINERS file - move boards from root Makefile to boards.cfg - move MACH_TYPE definition into netspace_v2.h - remove CONFIG_SYS_HZ redefinition - turn PHY initialization message into debug() Changes since v2: - drop patch for Macronix MX25L4005A - rewrite patch "sf: disable write protection for Macronix flash", using the common spi flash code - fix "Definitions" typo in mv-common.h - netconsole: add a "/* Fall through */" comment before the NETCONS case label Changes since v3: - sf macronix: use spi_flash_cmd_write_enable() - enhance commit message for patch "Add support for Network Space v2" Simon Guinot (5): sf: disable write protection for Macronix flash Kirkwood: allow to override CONFIG_SYS_TCLK mv-common.h: fix DRAM banks configuration netconsole: remove `serverip' check Add support for Network Space v2 MAINTAINERS | 6 + arch/arm/include/asm/arch-kirkwood/kw88f6281.h | 8 +- board/LaCie/netspace_v2/Makefile | 49 +++++++ board/LaCie/netspace_v2/kwbimage.cfg | 162 ++++++++++++++++++++++++ board/LaCie/netspace_v2/netspace_v2.c | 144 +++++++++++++++++++++ board/LaCie/netspace_v2/netspace_v2.h | 39 ++++++ boards.cfg | 3 + drivers/mtd/spi/macronix.c | 42 ++++++ include/configs/mv-common.h | 8 +- include/configs/netspace_v2.h | 149 ++++++++++++++++++++++ net/net.c | 3 +- 11 files changed, 605 insertions(+), 8 deletions(-) create mode 100644 board/LaCie/netspace_v2/Makefile create mode 100644 board/LaCie/netspace_v2/kwbimage.cfg create mode 100644 board/LaCie/netspace_v2/netspace_v2.c create mode 100644 board/LaCie/netspace_v2/netspace_v2.h create mode 100644 include/configs/netspace_v2.h