From mboxrd@z Thu Jan 1 00:00:00 1970 From: Stefan Roese Date: Tue, 5 Jun 2018 11:33:03 +0200 Subject: [U-Boot] Please pull u-boot-marvell/master 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 Hi Tom, please pull the last batch of Marvell patches for this release (bug fixes might still be coming). I've run checkpatch as requested and only noticed warnings that I feel should be ignored (>80 chars etc). Thanks, Stefan The following changes since commit ee1855dc52fc366f33e21182103323c236cb3346: Prepare v2018.07-rc1 (2018-06-04 18:08:45 -0400) are available in the Git repository at: git://www.denx.de/git/u-boot-marvell.git for you to fetch changes up to d4899b0f5ddf39de47bd952ca8484a14f03d00fe: ARM: kirkwood: Enforce size limit for guruplug (2018-06-05 07:29:09 +0200) ---------------------------------------------------------------- Chris Packham (5): ARM: kirkwood: remove automatic I2C config if DM_I2C is enabled ARM: add SBx81LIFKW board ARM: kirkwood: SBx81LIFKW: Enable network hardware ARM: kirkwood: Enforce size limit for sheevaplug ARM: kirkwood: Enforce size limit for guruplug Jon Nettleton (2): arm: mvebu: enable sata support for clearfog arm: mvebu: switch clearfog to use device-tree i2c and gpio Michael Walle (2): enable CONFIG_DISTRO_DEFAULTS for LS-CHLv2 board arm: kirkwood: lsxl: Add SPI driver model support Rabeeh Khoury (1): mvebu: a38x: Force receiver detected on PCIe lanes Vagrant Cascadian (1): Enable thumb build to reduce build size of u-boot.kwb. arch/arm/dts/armada-388-clearfog.dts | 2 + arch/arm/dts/kirkwood-atl-sbx81lifkw.dts | 133 ++++++++++++++ arch/arm/dts/kirkwood-lsxl.dtsi | 4 + arch/arm/mach-kirkwood/Kconfig | 4 + arch/arm/mach-kirkwood/include/mach/config.h | 3 +- .../mach-mvebu/serdes/a38x/high_speed_env_spec.c | 2 + arch/arm/mach-mvebu/serdes/a38x/sys_env_lib.h | 1 + board/alliedtelesis/SBx81LIFKW/Kconfig | 12 ++ board/alliedtelesis/SBx81LIFKW/MAINTAINERS | 7 + board/alliedtelesis/SBx81LIFKW/Makefile | 7 + board/alliedtelesis/SBx81LIFKW/kwbimage.cfg | 47 +++++ board/alliedtelesis/SBx81LIFKW/sbx81lifkw.c | 197 +++++++++++++++++++++ board/solidrun/clearfog/clearfog.c | 22 --- configs/SBx81LIFKW_defconfig | 39 ++++ configs/clearfog_defconfig | 8 + configs/lschlv2_defconfig | 18 +- configs/lsxhl_defconfig | 3 + configs/sheevaplug_defconfig | 1 + include/configs/SBx81LIFKW.h | 119 +++++++++++++ include/configs/clearfog.h | 16 +- include/configs/guruplug.h | 5 + include/configs/sheevaplug.h | 5 + 22 files changed, 612 insertions(+), 43 deletions(-) create mode 100644 arch/arm/dts/kirkwood-atl-sbx81lifkw.dts create mode 100644 board/alliedtelesis/SBx81LIFKW/Kconfig create mode 100644 board/alliedtelesis/SBx81LIFKW/MAINTAINERS create mode 100644 board/alliedtelesis/SBx81LIFKW/Makefile create mode 100644 board/alliedtelesis/SBx81LIFKW/kwbimage.cfg create mode 100644 board/alliedtelesis/SBx81LIFKW/sbx81lifkw.c create mode 100644 configs/SBx81LIFKW_defconfig create mode 100644 include/configs/SBx81LIFKW.h