[U-Boot] [PATCH 00/17] arm: mvebu: Add gdsys ControlCenter-Compact board

Mario Six mario.six at gdsys.cc
Wed Nov 23 16:12:18 CET 2016


This patch series adds support for the Guntermann & Drunck
ControlCenter-Compact board.

To this extent, some bugs in the mvebu PCI driver are fixed, a GPIO driver is
added, support for the Marvell 88E1680 is added, the TPM library is extended,
the kwbimage generation is streamlined, a board function for manipulating the
device tree is added, and secure boot for the mvebu architecture is
implemented.

Dirk Eibach (4):
  pci: mvebu: Fix Armada 38x support
  arm: mvebu: Add gpio support
  net: phy: Support Marvell 88E1680
  arm: mvebu: Add gdsys ControlCenter-Compact board

Mario Six (12):
  mvebu: Add board_pex_config()
  dm: Add callback to modify the device tree
  lib: tpm: Add command to flush resources
  tools: kwbimage: Fix dest addr
  tools: kwbimage: Fix style violations
  tools: kwbimage: Fix arithmetic with void pointers
  tools: kwbimage: Reduce scope of variables
  tools: kwbimage: Remove unused parameter
  tools: kwbimage: Factor out add_binary_header_v1
  tools: kwbimage: Refactor line parsing and fix error
  arm: mvebu: Implement secure boot
  controlcenterdc: Make secure boot available

Reinhard Pfau (1):
  arm: mvebu: spl.c: Remove useless gd declaration

 Makefile                                   |    3 +-
 arch/arm/Kconfig                           |    1 +
 arch/arm/dts/Makefile                      |    3 +-
 arch/arm/dts/controlcenterdc.dts           |  629 ++++++++++++++++
 arch/arm/mach-mvebu/Kconfig                |   24 +
 arch/arm/mach-mvebu/Makefile               |    1 +
 arch/arm/mach-mvebu/efuse.c                |  293 ++++++++
 arch/arm/mach-mvebu/include/mach/cpu.h     |    2 +
 arch/arm/mach-mvebu/include/mach/efuse.h   |   71 ++
 arch/arm/mach-mvebu/include/mach/gpio.h    |   41 +-
 arch/arm/mach-mvebu/include/mach/soc.h     |    1 +
 arch/arm/mach-mvebu/serdes/a38x/ctrl_pex.c |   10 +
 arch/arm/mach-mvebu/serdes/a38x/ctrl_pex.h |    2 +
 arch/arm/mach-mvebu/spl.c                  |    2 -
 board/gdsys/38x/.gitignore                 |    1 +
 board/gdsys/38x/Kconfig                    |   51 ++
 board/gdsys/38x/MAINTAINERS                |    7 +
 board/gdsys/38x/Makefile                   |   45 ++
 board/gdsys/38x/README                     |   18 +
 board/gdsys/38x/controlcenterdc.c          |  717 ++++++++++++++++++
 board/gdsys/38x/dt_helpers.c               |   60 ++
 board/gdsys/38x/dt_helpers.h               |   16 +
 board/gdsys/38x/hre.c                      |  517 +++++++++++++
 board/gdsys/38x/hre.h                      |   38 +
 board/gdsys/38x/keyprogram.c               |  158 ++++
 board/gdsys/38x/keyprogram.h               |   14 +
 board/gdsys/38x/kwbimage.cfg.in            |   40 +
 board/gdsys/38x/spl.c                      |   21 +
 board/gdsys/p1022/controlcenterd-id.c      |    9 -
 common/board_f.c                           |    3 +
 configs/controlcenterdc_defconfig          |   54 ++
 drivers/net/phy/marvell.c                  |   51 ++
 drivers/pci/pci_mvebu.c                    |   25 +-
 dts/Kconfig                                |   10 +
 include/asm-generic/global_data.h          |    4 +
 include/common.h                           |    1 +
 include/configs/controlcenterdc.h          |  244 +++++++
 include/tpm.h                              |   45 ++
 lib/tpm.c                                  |   28 +
 tools/Makefile                             |    6 +-
 tools/kwbimage.c                           | 1091 ++++++++++++++++++++++++----
 tools/kwbimage.h                           |   37 +
 42 files changed, 4216 insertions(+), 178 deletions(-)
 create mode 100644 arch/arm/dts/controlcenterdc.dts
 create mode 100644 arch/arm/mach-mvebu/efuse.c
 create mode 100644 arch/arm/mach-mvebu/include/mach/efuse.h
 create mode 100644 board/gdsys/38x/.gitignore
 create mode 100644 board/gdsys/38x/Kconfig
 create mode 100644 board/gdsys/38x/MAINTAINERS
 create mode 100644 board/gdsys/38x/Makefile
 create mode 100644 board/gdsys/38x/README
 create mode 100644 board/gdsys/38x/controlcenterdc.c
 create mode 100644 board/gdsys/38x/dt_helpers.c
 create mode 100644 board/gdsys/38x/dt_helpers.h
 create mode 100644 board/gdsys/38x/hre.c
 create mode 100644 board/gdsys/38x/hre.h
 create mode 100644 board/gdsys/38x/keyprogram.c
 create mode 100644 board/gdsys/38x/keyprogram.h
 create mode 100644 board/gdsys/38x/kwbimage.cfg.in
 create mode 100644 board/gdsys/38x/spl.c
 create mode 100644 configs/controlcenterdc_defconfig
 create mode 100644 include/configs/controlcenterdc.h

--
2.9.0



More information about the U-Boot mailing list