
Hi Tom,
please pull this next batch of mostly Marvell related patches:
---------------------------------------------------------------- - kirkwood: pogo_v4 & nsa310s: Add distro boot (Tony) - kirkwood: add DM timer support and use it on lsxl boards (Michael) - kirkwood: convert the Buffalo Linkstation LS-CHLv2 and XHL boards to DM (Michael) - mvebu: turris_mox/omnia: misc improments (Pali) - mvebu: mbus: Fix mbus driver to work also after U-Boot relocation (Pali) ----------------------------------------------------------------
Here the Azure build, without any issues:
https://dev.azure.com/sr0718/u-boot/_build/results?buildId=241&view=resu...
Thanks, Stefan
The following changes since commit 1d323d83061fae8f94a9118b8db3384daef26216:
Prepare v2022.10-rc3 (2022-08-22 18:54:48 -0400)
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 560a5c3bb3bedac7d1da93362401a1d926214660:
board: lsxl: update the README (2022-08-23 12:40:34 +0200)
---------------------------------------------------------------- Michael Walle (21): time: move the CONFIG_SYS_TIMER_RATE handling to the compiler arm: kirkwood: make it CONFIG_TIMER aware timer: add orion-timer support button: gpio: add DM_GPIO dependency board: lsxl: limit size to 384kiB board: lsxl: remove unused features board: lsxl: remove eraseenv script board: lsxl: remove CONFIG_ENV_OVERWRITE board: lsxl: remove unused header files board: lsxl: automatically select CONFIG_MISC_INIT_R board: lsxl: use CONFIG_DEFAULT_FDT_FILE board: lsxl: reorder image loading and remove ramdisk_len board: lsxl: use proper *_r variables board: lsxl: enable ATAGS support board: lsxl: make last resort recovery more reliable board: lsxl: convert to DM_GPIO board: lsxl: convert to DM_ETH board: lsxl: convert to DM_SERIAL board: lsxl: convert to CONFIG_TIMER board: lsxl: disable eth0 board: lsxl: update the README
Pali Rohár (5): arm: mvebu: Define env_sf_get_env_addr() for all Armada boards in SPL arm: mvebu: turris_omnia: Show MCU version arm: mvebu: turris_mox: Set "sfp" label in eth1 DT node when only Mox SFP is detected arm: mvebu: mbus: Fix mbus driver to work also after U-Boot relocation arm: kirkwood: 88f6281: Detect CONFIG_SYS_TCLK from SAR register
Tony Dinh (2): arm: kirkwood: pogo_v4: Add Distro boot capability arm: kirkwood: nsa310s: Add Distro boot capability
arch/arm/dts/kirkwood-lschlv2-u-boot.dtsi | 13 ++ arch/arm/dts/kirkwood-lsxhl-u-boot.dtsi | 13 ++ arch/arm/mach-kirkwood/Kconfig | 2 + arch/arm/mach-kirkwood/include/mach/config.h | 2 + arch/arm/mach-kirkwood/include/mach/cpu.h | 3 - arch/arm/mach-kirkwood/include/mach/kw88f6281.h | 3 +- arch/arm/mach-kirkwood/include/mach/soc.h | 2 + arch/arm/mach-mvebu/Makefile | 3 + arch/arm/mach-mvebu/include/mach/cpu.h | 3 - arch/arm/mach-mvebu/mbus.c | 167 ++++++++++-------------- arch/arm/mach-mvebu/spl.c | 13 ++ board/CZ.NIC/turris_mox/turris_mox.c | 5 + board/CZ.NIC/turris_omnia/turris_omnia.c | 46 +++++-- board/Synology/ds109/ds109.c | 1 + board/alliedtelesis/x530/x530.c | 2 +- board/buffalo/lsxl/README | 32 ++--- board/buffalo/lsxl/lsxl.c | 165 +++++++++++++---------- board/maxbcm/maxbcm.c | 8 +- board/theadorable/theadorable.c | 4 +- board/zyxel/nsa310s/MAINTAINERS | 1 - configs/lschlv2_defconfig | 31 +++-- configs/lsxhl_defconfig | 31 +++-- configs/nsa310s_defconfig | 17 +-- configs/pogo_v4_defconfig | 25 ++-- drivers/button/Kconfig | 1 + drivers/timer/Kconfig | 6 + drivers/timer/Makefile | 1 + drivers/timer/orion-timer.c | 63 +++++++++ include/configs/lsxl.h | 76 ++++------- include/configs/nsa310s.h | 31 ++++- include/configs/pogo_v4.h | 54 ++++++-- include/linux/mbus.h | 13 +- lib/time.c | 15 ++- 33 files changed, 521 insertions(+), 331 deletions(-) create mode 100644 arch/arm/dts/kirkwood-lschlv2-u-boot.dtsi create mode 100644 arch/arm/dts/kirkwood-lsxhl-u-boot.dtsi create mode 100644 drivers/timer/orion-timer.c