This series aims to sync kernel.org v6.5-rc1 DTS with that of U-Boot. It also includes cleanups where necessary along with certain changes to ensure boot is unaffected.
Same as with other board series that have taken up this effort, cleanup of mcu_ringacc and mcu_udmap are dependent on MCU Ringacc [1] and DMA [2] fixes. This will be taken up after their merge to Linux. [1] https://lore.kernel.org/all/[email protected]/ [2] https://lore.kernel.org/all/[email protected]/ Changes in v2: - Nishanth: - synced k3-j721e-som-0.dtsi 6.5-rc1 - delete tick-timer from -u-boot.dtsi - remove unnecessary aliases - remove SERDES overrides in U-Boot - formatting changes - drop repeated nodes and properties in U-Boot dts - drop nodes and properties not related to U-Boot from U-Boot dts - drop all /delete-property/ from U-Boot dts by adding needed dev-data and ensuring it works for J721E that follows legacy boot flow - add dev-data for mcu_timer0 (new patch) - push clk_k3 probe to happen before TIFS comes up (new patch) - get TISCI revision only if TIFS/SYSFW is up (new patch) Neha Malcom Francis (7): drivers: misc: k3_avs: Add linux compatible to maintain sync arm: mach-k3: j721e: dev-data: Add mcu_timer0 ID arm: mach-k3: j721e_init: Move clk_k3 probe before loading TIFS drivers: firmware: ti_sci: Get SCI revision only if TIFS/SYSFW is up configs: j721e: Remove HBMC_AM654 config arm: dts: k3-j721e-r5: Clean up inclusion hierarchy arm: dts: k3-j721e: Sync with v6.5-rc1 .../k3-j721e-common-proc-board-u-boot.dtsi | 146 +-- arch/arm/dts/k3-j721e-common-proc-board.dts | 483 ++++++--- arch/arm/dts/k3-j721e-main.dtsi | 974 ++++++++++++++++-- arch/arm/dts/k3-j721e-mcu-wakeup.dtsi | 280 ++++- .../k3-j721e-r5-common-proc-board-u-boot.dtsi | 29 - .../arm/dts/k3-j721e-r5-common-proc-board.dts | 340 +----- arch/arm/dts/k3-j721e-r5-sk-u-boot.dtsi | 31 - arch/arm/dts/k3-j721e-r5-sk.dts | 565 +--------- arch/arm/dts/k3-j721e-sk-u-boot.dtsi | 177 +--- arch/arm/dts/k3-j721e-sk.dts | 663 +++++++++--- arch/arm/dts/k3-j721e-som-p0.dtsi | 226 ++-- arch/arm/dts/k3-j721e-thermal.dtsi | 75 ++ arch/arm/dts/k3-j721e.dtsi | 32 +- arch/arm/mach-k3/j721e/dev-data.c | 1 + arch/arm/mach-k3/j721e_init.c | 24 +- configs/j721e_evm_a72_defconfig | 1 - configs/j721e_evm_r5_defconfig | 1 - drivers/firmware/ti_sci.c | 9 +- drivers/misc/k3_avs.c | 1 + 19 files changed, 2401 insertions(+), 1657 deletions(-) delete mode 100644 arch/arm/dts/k3-j721e-r5-common-proc-board-u-boot.dtsi delete mode 100644 arch/arm/dts/k3-j721e-r5-sk-u-boot.dtsi create mode 100644 arch/arm/dts/k3-j721e-thermal.dtsi -- 2.34.1

