
Hi Tom,
please pull this next batch of Marvell related patches.
---------------------------------------------------------------- - mvebu: Support for 2 new Armada 385 boards (Tony) - mvebu: Minor misc board enhancements (Tony) - kirkwood: Serial driver fixes (Kconfig & dtsi) (Tony) - cmd: return code when tlv_eeprom incorrectly called (Heinrich) ----------------------------------------------------------------
Here the Azure build, without any issues:
https://dev.azure.com/sr0718/u-boot/_build/results?buildId=284&view=resu...
Thanks, Stefan
The following changes since commit a5e490f14e904fd240ccec5d364509b36a3150f9:
socfpga: fix the serial console on DE1-SoC (2023-02-12 15:47:19 -0500)
are available in the Git repository at:
git@source.denx.de:u-boot/custodians/u-boot-marvell.git
for you to fetch changes up to dd15284b749e41a3db94883bde9b96601491ec10:
arm: kirkwood: Enable uart0 dm-pre-reloc for Pogoplug V4 board (2023-02-13 10:15:04 +0100)
---------------------------------------------------------------- Heinrich Schuchardt (1): cmd: return code when tlv_eeprom incorrectly called
Tony Dinh (6): arm: kirkwood: Use CONFIG_SYS_NS16550 with DM_SERIAL for Kirkwood boards arm: mvebu: Add support for Thecus N2350 (Armada 385) board arm: kirkwood: sheevaplug: reduce u-boot image size arm: mvebu: Power up 2nd SATA port for Thecus N2350 arm: mvebu: Add support for Synology DS116 (Armada 385) arm: kirkwood: Enable uart0 dm-pre-reloc for Pogoplug V4 board
arch/arm/dts/Makefile | 2 + arch/arm/dts/armada-385-synology-ds116.dts | 291 ++++++++++++++ arch/arm/dts/armada-385-thecus-n2350.dts | 446 +++++++++++++++++++++ .../arm/dts/kirkwood-pogoplug-series-4-u-boot.dtsi | 7 + arch/arm/mach-kirkwood/Kconfig | 1 + arch/arm/mach-mvebu/Kconfig | 18 + board/Synology/ds116/MAINTAINERS | 7 + board/Synology/ds116/Makefile | 6 + board/Synology/ds116/ds116.c | 135 +++++++ board/thecus/n2350/MAINTAINERS | 7 + board/thecus/n2350/Makefile | 6 + board/thecus/n2350/n2350.c | 126 ++++++ cmd/tlv_eeprom.c | 11 +- configs/ds116_defconfig | 92 +++++ configs/n2350_defconfig | 93 +++++ configs/sheevaplug_defconfig | 5 + include/configs/ds116.h | 56 +++ include/configs/n2350.h | 56 +++ 18 files changed, 1358 insertions(+), 7 deletions(-) create mode 100644 arch/arm/dts/armada-385-synology-ds116.dts create mode 100644 arch/arm/dts/armada-385-thecus-n2350.dts create mode 100644 arch/arm/dts/kirkwood-pogoplug-series-4-u-boot.dtsi create mode 100644 board/Synology/ds116/MAINTAINERS create mode 100644 board/Synology/ds116/Makefile create mode 100644 board/Synology/ds116/ds116.c create mode 100644 board/thecus/n2350/MAINTAINERS create mode 100644 board/thecus/n2350/Makefile create mode 100644 board/thecus/n2350/n2350.c create mode 100644 configs/ds116_defconfig create mode 100644 configs/n2350_defconfig create mode 100644 include/configs/ds116.h create mode 100644 include/configs/n2350.h