
Hi Tom,
Please pull the rockchip fixes: - Add kaslrseed support; - rk3568 spl and image tool support; - px30 dts sync from kernel; - rk3399 emmc fix; - rockchip fastboot cmd fix;
Gitlab ci: https://gitlab.denx.de/u-boot/custodians/u-boot-rockchip/pipelines/10351
Thanks, - Kever
The following changes since commit 734ad933766f0dbbeafe1b27211686940a5e6d16:
Prepare v2022.01-rc4 (2021-12-20 11:15:15 -0500)
are available in the Git repository at:
https://source.denx.de/u-boot/custodians/u-boot-rockchip.git tags/u-boot-rockchip-20211226
for you to fetch changes up to 376b08d0f159ec1047ad65b5d6e36fd2cbf6d8ff:
rockchip: mkimage: Add support for rk3568 SoC (2021-12-24 18:30:08 +0800)
---------------------------------------------------------------- Chris Morgan (2): cmd: kaslrseed: add command to generate value from hwrng rockchip: px30: add support for HW RNG for Odroid Go Advance
Jagan Teki (3): arm64: dts: rockchip: px30: Move dmc into -u-boot.dtsi arm64: dts: rockchip: Sync px30 from linux-next engicam: px30: Add Engicam PX30.Core C.TOUCH 2.0 10.1" OF
John Keeping (1): rockchip: boot_mode: fix fastboot command
Kever Yang (3): rockchip: mkimage: rename RK_SIGNATURE to RK_MAGIC rockchip: mkimage: Add image header version rockchip: mkimage: Add support for rk3568 SoC
Nico Cheng (3): rockchip: Kconfig: Enable SPL support for rk3568 arm: dts: rockchip: rk3568: Enable sdhci and sdmmc0 node rockchip: rk3568: add arch_cpu_init()
Quentin Schulz (2): doc: rockchip: puma: update build and flash instructions power: pmic/fan53555: allow dm be omitted by SPL
Sjoerd Simons (1): configs: rock-pi-4: Enable rockchip efuse support
Yi Liu (1): rockchip: mkimage: Add support for idb header V2
Yifeng Zhao (1): dts: rockchip: rk3399: enable emmc phy for spl
arch/arm/dts/Makefile | 5 +- arch/arm/dts/px30-engicam-common.dtsi | 90 +++++++ arch/arm/dts/px30-engicam-ctouch2.dtsi | 22 ++ arch/arm/dts/px30-engicam-edimm2.2.dtsi | 59 +++++ .../dts/px30-engicam-px30-core-ctouch2-of10.dts | 77 ++++++ ...uch2.dts => px30-engicam-px30-core-ctouch2.dts} | 4 +- arch/arm/dts/px30-engicam-px30-core-edimm2.2.dts | 43 ++++ ...-px30-core.dtsi => px30-engicam-px30-core.dtsi} | 11 +- arch/arm/dts/px30-evb.dts | 143 +++++++++-- arch/arm/dts/px30-px30-core-edimm2.2.dts | 21 -- arch/arm/dts/px30-u-boot.dtsi | 14 +- arch/arm/dts/px30.dtsi | 275 +++++++++++++++------ arch/arm/dts/rk3326-odroid-go2-u-boot.dtsi | 18 +- arch/arm/dts/rk3326-odroid-go2.dts | 178 ++++--------- arch/arm/dts/rk3399-u-boot.dtsi | 4 + arch/arm/dts/rk3568-u-boot.dtsi | 17 ++ arch/arm/mach-rockchip/Kconfig | 2 + arch/arm/mach-rockchip/boot_mode.c | 2 +- arch/arm/mach-rockchip/px30/Kconfig | 8 + arch/arm/mach-rockchip/rk3568/rk3568.c | 27 +- board/engicam/px30_core/MAINTAINERS | 6 + board/theobroma-systems/puma_rk3399/README | 66 +++-- cmd/Kconfig | 7 + cmd/Makefile | 1 + cmd/kaslrseed.c | 81 ++++++ configs/evb-rk3568_defconfig | 25 +- configs/px30-core-ctouch2-of10-px30_defconfig | 108 ++++++++ configs/px30-core-ctouch2-px30_defconfig | 4 +- configs/px30-core-edimm2.2-px30_defconfig | 4 +- configs/rock-pi-4-rk3399_defconfig | 1 + configs/rock-pi-4c-rk3399_defconfig | 1 + doc/README.rockchip | 27 +- drivers/power/pmic/Kconfig | 14 ++ drivers/power/pmic/Makefile | 2 +- include/configs/rk3568_common.h | 6 + tools/rkcommon.c | 226 +++++++++++++---- 36 files changed, 1225 insertions(+), 374 deletions(-) create mode 100644 arch/arm/dts/px30-engicam-px30-core-ctouch2-of10.dts rename arch/arm/dts/{px30-px30-core-ctouch2.dts => px30-engicam-px30-core-ctouch2.dts} (80%) create mode 100644 arch/arm/dts/px30-engicam-px30-core-edimm2.2.dts rename arch/arm/dts/{px30-px30-core.dtsi => px30-engicam-px30-core.dtsi} (96%) delete mode 100644 arch/arm/dts/px30-px30-core-edimm2.2.dts create mode 100644 cmd/kaslrseed.c create mode 100644 configs/px30-core-ctouch2-of10-px30_defconfig