From mboxrd@z Thu Jan 1 00:00:00 1970 From: Prafulla Wadaskar Date: Thu, 5 Jul 2012 04:29:31 -0700 Subject: [U-Boot] Pull request for u-boot-marvell.git In-Reply-To: <20120705114455.01c499e0@aari01-12> References: <4F3576CA.7050408@aribaud.net> <20120705104047.72b3fbaf@aari01-12> <20120705113725.6a6751d1@aari01-12> <20120705114455.01c499e0@aari01-12> Message-ID: List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Dear Albert, Please pull The following changes since commit c45272e25bdf241fbb27638465f16ce2342ed1b6: Michael Langer (1): i.MX6 USDHC: Use the ESDHC clock are available in the git repository at: u-boot-marvell.git master branch. Holger Brunck (7): arm/km: add board type to boards.cfg arm/km: add piggy mac adress offset for mgcoge3un arm/km: rename CONFIG option CONFIG_KM_DEF_ENV_UPDATE arm/km: use ARRAY_SIZE macro arm/km: fix wrong comment in SDRAM config for mgcoge3un arm/km: change maintainer for mgcoge3un arm/km: remove CONFIG_RESET_PHY_R Luka Perkov (1): kwboot: boot kirkwood SoCs over a serial link Marek Vasut (1): Kirkwood: Add support for Ka-Ro TK71 Michael Walle (4): lib: add rand() function net: use common rand()/srand() functions net: add helper to generate random mac address Kirkwood: add lschlv2 and lsxhl board support Simon Guinot (3): lacie_kw: fix SDRAM banks number for net2big_v2 lacie_kw: fix CONFIG_SYS_KWD_CONFIG for inetspace_v2 ARM: don't probe PHY address for LaCie boards Valentin Longchamp (9): arm/km: enable mii cmd km_arm: use filesize for erase in update command kirkwood: add save functionality kirkwood_mpp_conf function kirkwood: fix calls to kirkwood_mpp_conf kw_spi: backup and reset the MPP of the chosen CS pin kw_spi: support spi_claim/release_bus functions kw_spi: add weak functions board_spi_claim/release_bus arm/kirkwood: protect the ENV_SPI #defines arm/km: use spi claim bus to switch between SPI and NAND MAINTAINERS | 7 +- arch/arm/cpu/arm926ejs/kirkwood/mpp.c | 10 +- arch/arm/include/asm/arch-kirkwood/config.h | 12 +- arch/arm/include/asm/arch-kirkwood/mpp.h | 2 +- arch/arm/include/asm/arch-kirkwood/spi.h | 11 + board/LaCie/common/common.c | 23 +- board/LaCie/common/common.h | 2 +- board/LaCie/edminiv2/edminiv2.c | 2 +- board/LaCie/net2big_v2/net2big_v2.c | 4 +- board/LaCie/netspace_v2/netspace_v2.c | 4 +- board/Marvell/dreamplug/dreamplug.c | 2 +- board/Marvell/guruplug/guruplug.c | 2 +- board/Marvell/mv88f6281gtw_ge/mv88f6281gtw_ge.c | 2 +- board/Marvell/openrd/openrd.c | 2 +- board/Marvell/rd6281a/rd6281a.c | 2 +- board/Marvell/sheevaplug/sheevaplug.c | 2 +- board/Seagate/dockstar/dockstar.c | 2 +- board/buffalo/lsxl/Makefile | 44 ++ board/buffalo/lsxl/kwbimage-lschl.cfg | 229 +++++++ board/buffalo/lsxl/kwbimage-lsxhl.cfg | 229 +++++++ board/buffalo/lsxl/lsxl.c | 283 +++++++++ board/buffalo/lsxl/lsxl.h | 75 +++ board/cloudengines/pogo_e02/pogo_e02.c | 2 +- board/d-link/dns325/dns325.c | 2 +- board/karo/tk71/Makefile | 45 ++ board/karo/tk71/kwbimage.cfg | 174 ++++++ board/karo/tk71/tk71.c | 166 +++++ board/keymile/km_arm/km_arm.c | 48 +-- board/keymile/km_arm/kwbimage-memphis.cfg | 2 +- board/raidsonic/ib62x0/ib62x0.c | 2 +- boards.cfg | 7 +- doc/kwboot.1 | 84 +++ drivers/spi/kirkwood_spi.c | 64 ++- include/common.h | 10 + include/configs/km/km_arm.h | 15 +- include/configs/km_kirkwood.h | 4 +- include/configs/lacie_kw.h | 6 +- include/configs/lsxl.h | 182 ++++++ include/configs/mgcoge3un.h | 1 + include/configs/tk71.h | 130 ++++ include/net.h | 17 + lib/Makefile | 5 +- lib/rand.c | 48 ++ net/Makefile | 2 - net/eth.c | 22 + net/link_local.c | 7 +- net/net_rand.c | 68 -- net/net_rand.h | 31 +- tools/Makefile | 6 + tools/kwboot.c | 742 +++++++++++++++++++++++ 50 files changed, 2659 insertions(+), 184 deletions(-) create mode 100644 board/buffalo/lsxl/Makefile create mode 100644 board/buffalo/lsxl/kwbimage-lschl.cfg create mode 100644 board/buffalo/lsxl/kwbimage-lsxhl.cfg create mode 100644 board/buffalo/lsxl/lsxl.c create mode 100644 board/buffalo/lsxl/lsxl.h create mode 100644 board/karo/tk71/Makefile create mode 100644 board/karo/tk71/kwbimage.cfg create mode 100644 board/karo/tk71/tk71.c create mode 100644 doc/kwboot.1 create mode 100644 include/configs/lsxl.h create mode 100644 include/configs/tk71.h create mode 100644 lib/rand.c delete mode 100644 net/net_rand.c create mode 100644 tools/kwboot.c Regards... Prafulla . . .