[U-Boot] Please pull u-boot-marvell/master

Stefan Roese sr at denx.de
Mon Jan 21 10:52:54 UTC 2019


Hi Tom,

please pull the first Marvell patches in this merge window with the
following changes:

----------------------------------------------------------------
- Sync Armada-38x dts with Linux 4.20 from Chris
- Misc changes and enhancements to Turris Mox (v4) from Marek
- Reserve PSCI area for Armada 8k from Heinrich
- New Allied Telesis x530 board (Armada-385) from Chris
- Misc minor changes (defconfig etc)
----------------------------------------------------------------

Thanks,
Stefan


The following changes since commit 2acc24fc28ef782f4baef1aa0193d520ee9610b9:

   Kconfig: Migrate BOUNCE_BUFFER (2019-01-19 09:49:26 -0500)

are available in the Git repository at:

   git://www.denx.de/git/u-boot-marvell.git

for you to fetch changes up to 0e31666dfa043ab71fb1fbbba4feacfe8af3e06b:

   ARM: mvebu: add support for Allied Telesis x530 (2019-01-21 11:39:50 +0100)

----------------------------------------------------------------
Baruch Siach (1):
       board: mvebu: drop unused ETH_PHY macro definitions

Chris Packham (2):
       ARM: mvebu: sync Armada-38x dts with Linux 4.20
       ARM: mvebu: add support for Allied Telesis x530

Heinrich Schuchardt (2):
       arm64: dts: marvell: armada-ap806: reserve PSCI area
       arm64: mvebu: defconfig: enable CONFIG_CMD_NVME

Marek BehĂșn (10):
       arm: mvebu: turris_mox: Cosmetic restructurization
       arm: mvebu: turris_mox: Change SERDES map depending on module topology
       arm: mvebu: turris_mox: Check and configure modules
       arm: mvebu: dts: Fix Turris Mox device tree
       arm: mvebu: turris_mox: Update defconfig
       watchdog: armada_37xx: Fix compliance with kernel's driver
       MAINTAINERS: Add entry for CZ.NIC's Turris project
       arm: mvebu: turris_mox: Read info (and ethaddrs) from OTP
       arm: mvebu: turris_mox: Support 1 GB version of Turris Mox
       arm: mvebu: configs: turris_mox: Add 64 MiB of boot memory

  MAINTAINERS                                   |   8 +
  arch/arm/dts/Makefile                         |   4 +-
  arch/arm/dts/armada-3720-turris-mox.dts       |  23 +-
  arch/arm/dts/armada-380.dtsi                  |  44 +--
  arch/arm/dts/armada-385-atl-x530-u-boot.dtsi  |  13 +
  arch/arm/dts/armada-385-atl-x530.dts          |  50 +++
  arch/arm/dts/armada-385-atl-x530.dtsi         | 266 +++++++++++++++
  arch/arm/dts/armada-385-atl-x530DP.dts        |  51 +++
  arch/arm/dts/armada-385-atl-x530DP.dtsi       | 149 +++++++++
  arch/arm/dts/armada-385.dtsi                  |  63 +---
  arch/arm/dts/armada-388-clearfog.dts          |  25 +-
  arch/arm/dts/armada-388.dtsi                  |  43 +--
  arch/arm/dts/armada-38x-controlcenterdc.dts   |  68 ++--
  arch/arm/dts/armada-38x.dtsi                  | 283 +++++++++-------
  arch/arm/dts/armada-ap806.dtsi                |  11 +
  arch/arm/mach-mvebu/Kconfig                   |   7 +
  arch/arm/mach-mvebu/arm64-common.c            |   4 +-
  board/CZ.NIC/turris_mox/Makefile              |   2 +-
  board/CZ.NIC/turris_mox/mox_sp.c              | 136 ++++++++
  board/CZ.NIC/turris_mox/mox_sp.h              |  15 +
  board/CZ.NIC/turris_mox/turris_mox.c          | 462 +++++++++++++++++++++++---
  board/Marvell/db-88f6820-amc/db-88f6820-amc.c |   4 -
  board/Marvell/db-88f6820-gp/db-88f6820-gp.c   |   4 -
  board/alliedtelesis/common/gpio_hog.c         |  36 ++
  board/alliedtelesis/common/gpio_hog.h         |  13 +
  board/alliedtelesis/x530/MAINTAINERS          |  12 +
  board/alliedtelesis/x530/Makefile             |   9 +
  board/alliedtelesis/x530/kwbimage.cfg         |  12 +
  board/alliedtelesis/x530/x530.c               | 161 +++++++++
  board/gdsys/a38x/controlcenterdc.c            |   4 -
  board/kobol/helios4/helios4.c                 |   4 -
  board/solidrun/clearfog/clearfog.c            |   4 -
  configs/clearfog_gt_8k_defconfig              |   2 +
  configs/mvebu_db_armada8k_defconfig           |   2 +
  configs/mvebu_mcbin-88f8040_defconfig         |   2 +
  configs/turris_mox_defconfig                  |   6 +
  configs/x530_defconfig                        |  71 ++++
  drivers/watchdog/armada-37xx-wdt.c            | 109 +++---
  include/configs/turris_mox.h                  |   2 +
  include/configs/x530.h                        | 134 ++++++++
  40 files changed, 1918 insertions(+), 400 deletions(-)
  create mode 100644 arch/arm/dts/armada-385-atl-x530-u-boot.dtsi
  create mode 100644 arch/arm/dts/armada-385-atl-x530.dts
  create mode 100644 arch/arm/dts/armada-385-atl-x530.dtsi
  create mode 100644 arch/arm/dts/armada-385-atl-x530DP.dts
  create mode 100644 arch/arm/dts/armada-385-atl-x530DP.dtsi
  create mode 100644 board/CZ.NIC/turris_mox/mox_sp.c
  create mode 100644 board/CZ.NIC/turris_mox/mox_sp.h
  create mode 100644 board/alliedtelesis/common/gpio_hog.c
  create mode 100644 board/alliedtelesis/common/gpio_hog.h
  create mode 100644 board/alliedtelesis/x530/MAINTAINERS
  create mode 100644 board/alliedtelesis/x530/Makefile
  create mode 100644 board/alliedtelesis/x530/kwbimage.cfg
  create mode 100644 board/alliedtelesis/x530/x530.c
  create mode 100644 configs/x530_defconfig
  create mode 100644 include/configs/x530.h


More information about the U-Boot mailing list