Hi Tom,

please pull the following Marvell and watchdog related patches:

----------------------------------------------------------------
- Add DM based generic watchdog start and reset implementation
  and remove all ad-hoc implementations (Stefan)
- Move mv_sdhci to DM (Pierre)
- Misc turris_omnia updates (Pierre)
- Change openrd targets to correctly build again (size changes
  and fixes to the dts targets) and bring it back into Travis
  builds (Stefan)
- Add Kirkwood db-88f6281-bp board (Chris)
----------------------------------------------------------------

Here the Travis build, without any issues:

https://travis-ci.org/stroese/u-boot/builds/524793378

Thanks,
Stefan


The following changes since commit 7d994067424776b6184872b82fcaf4c0b95528f9:

  Merge tag 'pull-24apr19' of git://git.denx.de/u-boot-dm (2019-04-24 12:27:29 
-0400)

are available in the Git repository at:

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

for you to fetch changes up to b684d4031b38b6b6a9e22676c7c6e2770e767cc7:

  arm: kirkwood: openrd: Mark openrd boards as maintained again (2019-04-26 
09:16:32 +0200)

----------------------------------------------------------------
Chris Packham (2):
      ARM: kirkwood: add db-88f6281-bp board
      ARM: kirkwood: enable CONFIG_DM_USB on db-88f6281-bp

Michael Walle (1):
      arm: kirkwood: lsxl: add note about sata in README

Pierre Bourdon (3):
      arm: mvebu: turris_omnia: fix eeprom/mcu device names
      mmc: mv_sdhci: add driver model support
      arm: mvebu: turris_omnia: use MMC driver model

Stefan Roese (9):
      arm: kirkwood: dts: Add openrd-* dtb makefile build targets
      arm: kirkwood: openrd: Remove superfluous CONFIG_ENV_ADDR
      arm: kirkwood: openrd: Increase U-Boot size in flash to make it fit
      arm: mvebu: turris_omnia: Use thumb instructions in SPL to save space
      watchdog: Implement generic watchdog_reset() version
      watchdog: cadence: Remove driver specific "timeout-sec" handling
      watchdog: mpc8xx_wdt: Watchdog driver and macros cleanup
      watchdog: at91sam9_wdt: Remove now superfluous wdt start and reset
      arm: kirkwood: openrd: Mark openrd boards as maintained again

 .travis.yml                                        |   4 +-
 arch/arm/dts/Makefile                              |   5 +
 arch/arm/dts/kirkwood-db-88f6281-spi.dts           |  48 ++++++++++
 arch/arm/dts/kirkwood-db-88f6281.dts               |  26 ++++++
 arch/arm/dts/kirkwood-db.dtsi                      |  94 +++++++++++++++++++
 arch/arm/mach-at91/clock.c                         |  45 ---------
 arch/arm/mach-at91/include/mach/at91_wdt.h         |   2 -
 arch/arm/mach-kirkwood/Kconfig                     |   4 +
 arch/arm/mach-mvebu/cpu.c                          |   2 +-
 arch/arm/mach-mvebu/include/mach/cpu.h             |   2 +
 arch/mips/mach-mt7620/cpu.c                        |  36 -------
 arch/powerpc/Kconfig                               |   2 +-
 arch/powerpc/cpu/mpc8xx/Kconfig                    |   6 +-
 board/CZ.NIC/turris_mox/turris_mox.c               |  30 ------
 board/CZ.NIC/turris_omnia/turris_omnia.c           |  39 +-------
 board/Marvell/db-88f6281-bp/.gitignore             |   1 +
 board/Marvell/db-88f6281-bp/Kconfig                |  12 +++
 board/Marvell/db-88f6281-bp/MAINTAINERS            |  10 ++
 board/Marvell/db-88f6281-bp/Makefile               |  12 +++
 board/Marvell/db-88f6281-bp/db-88f6281-bp.c        | 103 +++++++++++++++++++++
 board/Marvell/db-88f6281-bp/kwbimage.cfg.in        |  36 +++++++
 board/Marvell/openrd/MAINTAINERS                   |   4 +-
 board/alliedtelesis/x530/x530.c                    |  36 +------
 board/buffalo/lsxl/README                          |  10 ++
 .../xilinx/microblaze-generic/microblaze-generic.c |  40 --------
 board/xilinx/zynq/board.c                          |  39 --------
 board/xilinx/zynqmp/zynqmp.c                       |  39 --------
 common/board_r.c                                   |   4 +
 common/spl/spl.c                                   |   5 +
 configs/db-88f6281-bp-nand_defconfig               |  54 +++++++++++
 configs/db-88f6281-bp-spi_defconfig                |  56 +++++++++++
 configs/gardena-smart-gateway-at91sam_defconfig    |   2 -
 configs/turris_omnia_defconfig                     |   4 +-
 drivers/mmc/mv_sdhci.c                             |  67 +++++++++++++-
 drivers/watchdog/Kconfig                           |   2 +-
 drivers/watchdog/Makefile                          |   2 +-
 drivers/watchdog/at91sam9_wdt.c                    |   8 --
 drivers/watchdog/cdns_wdt.c                        |  15 ++-
 drivers/watchdog/mpc8xx_wdt.c                      |   4 +-
 drivers/watchdog/wdt-uclass.c                      |  26 ++++++
 include/asm-generic/global_data.h                  |   4 +
 include/configs/db-88f6281-bp.h                    |  99 ++++++++++++++++++++
 include/configs/openrd.h                           |   3 +-
 include/configs/turris_omnia.h                     |   5 -
 include/wdt.h                                      |  41 ++++++++
 45 files changed, 743 insertions(+), 345 deletions(-)
 create mode 100644 arch/arm/dts/kirkwood-db-88f6281-spi.dts
 create mode 100644 arch/arm/dts/kirkwood-db-88f6281.dts
 create mode 100644 arch/arm/dts/kirkwood-db.dtsi
 create mode 100644 board/Marvell/db-88f6281-bp/.gitignore
 create mode 100644 board/Marvell/db-88f6281-bp/Kconfig
 create mode 100644 board/Marvell/db-88f6281-bp/MAINTAINERS
 create mode 100644 board/Marvell/db-88f6281-bp/Makefile
 create mode 100644 board/Marvell/db-88f6281-bp/db-88f6281-bp.c
 create mode 100644 board/Marvell/db-88f6281-bp/kwbimage.cfg.in
 create mode 100644 configs/db-88f6281-bp-nand_defconfig
 create mode 100644 configs/db-88f6281-bp-spi_defconfig
 create mode 100644 include/configs/db-88f6281-bp.h
_______________________________________________
U-Boot mailing list
U-Boot@lists.denx.de
https://lists.denx.de/listinfo/u-boot

Reply via email to