From mboxrd@z Thu Jan 1 00:00:00 1970 From: Simon Guinot Date: Tue, 3 May 2011 00:42:23 +0200 Subject: [U-Boot] [PATCH v5 0/5] Add support for LaCie NAS Network Space v2 In-Reply-To: References: Message-ID: <1304376148-6332-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 This patch series adds support for Network Space v2 board and parents. Changes for v2: - 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 for v3: - 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 for v4: - sf macronix: use spi_flash_cmd_write_enable() - enhance commit message for patch "Add support for Network Space v2" Changes for v5: - add a changelog per patch 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