
Dear Tom,
Please find my pull-request for u-boot-fsl-qoriq/master https://github.com/u-boot/u-boot/pull/132
Summary
Update and fixes for sl28, lx2, pblimage generation for some powerpc products
Regards Priyanka --- The following changes since commit a900c7f8161b74fc66ec715e68e7244b53f04298:
Merge tag 'efi-2022-04-rc3' of https://source.denx.de/u-boot/custodians/u-boot-efi (2022-02-26 10:21:39 -0500)
are available in the Git repository at:
https://gitlab.denx.de/u-boot/custodians/u-boot-fsl-qoriq.git HEAD
for you to fetch changes up to 2058967d2fe8f93142d774bc47241d80894027d5:
tools: pblimage: fix image header verification function (2022-02-28 12:01:02 +0530)
---------------------------------------------------------------- Daniel Klauer (1): lx2160a: Fix distroboot device list for configs without USB/SCSI/etc
Hou Zhiqiang (1): tools: pblimage: fix image header verification function
Michael Walle (11): misc: add sl28cpld base driver watchdog: add sl28cpld watchdog driver gpio: add sl28cpld driver board: sl28: fix DRAM pretty print board: sl28: print CPLD version on bootup board: sl28: enable sl28cpld support board: sl28: enable SoC watchdog support board: sl28: disable recovery watchdog board: sl28: remove "Useful I2C tricks" section from docs board: sl28: disable random MAC address generation board: sl28: use fit image generator
MAINTAINERS | 7 + Makefile | 2 +- arch/arm/dts/fsl-ls1028a-kontron-sl28-u-boot.dtsi | 128 ++--------------- board/kontron/sl28/sl28.c | 59 +++++++- configs/kontron_sl28_defconfig | 13 +- doc/board/kontron/sl28.rst | 66 +++++---- drivers/gpio/Kconfig | 6 + drivers/gpio/Makefile | 1 + drivers/gpio/sl28cpld-gpio.c | 165 ++++++++++++++++++++++ drivers/misc/Kconfig | 8 ++ drivers/misc/Makefile | 1 + drivers/misc/sl28cpld.c | 105 ++++++++++++++ drivers/watchdog/Kconfig | 7 + drivers/watchdog/Makefile | 1 + drivers/watchdog/sl28cpld-wdt.c | 109 ++++++++++++++ include/configs/lx2160a_common.h | 34 ++++- include/sl28cpld.h | 16 +++ tools/pblimage.c | 10 +- tools/pblimage.h | 3 +- 19 files changed, 577 insertions(+), 164 deletions(-) create mode 100644 drivers/gpio/sl28cpld-gpio.c create mode 100644 drivers/misc/sl28cpld.c create mode 100644 drivers/watchdog/sl28cpld-wdt.c create mode 100644 include/sl28cpld.h