Hello, This series adds the device-tree support for enabling PCIe and USB functionality on J722S-EVM. Since AM62P and J722S SoCs share most of the peripherals, the files have been renamed to indicate the same. The main domain peripherals on both SoCs that aren't shared are present in the "soc-main.dtsi" files. This change has been made based on Roger's feedback at: https://lore.kernel.org/r/f52d9569-a399-422f-9cf0-b0bf69b64d18@xxxxxxxxxx/ This series has been tested on J722S-EVM for PCIe and USB functionality: https://gist.github.com/Siddharth-Vadapalli-at-TI/7c9fdfd25fdcd02eaf02a70db8bd46fd Sanity testing on AM62P5-SK with this series: https://gist.github.com/Siddharth-Vadapalli-at-TI/74893311fbebdc523e0ae8e158eee19f v5: https://lore.kernel.org/r/20240604085252.3686037-1-s-vadapalli@xxxxxx/ Changes since v5: - Rebased series on linux-next tagged next-20240612. - Collected Acked-by/Reviewed-by tags from v4 series. - k3-am62p.dtsi is left as-is, instead of changing it to k3-am62p-j722s-common.dtsi. - Renamed k3-am62p-thermal.dtsi to k3-am62p-j722s-common-thermal.dtsi. - Based on Vignesh's suggestion at: https://lore.kernel.org/r/9e7d3f9b-c762-40cd-9d0d-2f071aa3c371@xxxxxx/ and at: https://lore.kernel.org/r/79eedaea-bf4f-4a20-8a52-751ce7187523@xxxxxx/ the following is the file hierarchy in the current series: k3-am62p.dtsi = k3-am62p-j722s-common-{main,mcu,wakeup}.dtsi + k3-am62p-main.dtsi k3-am62p5.dtsi = CPUs + k3-am62p.dtsi k3-j722s.dtsi = CPUs + CBASS-Ranges + k3-am62p-j722s-common-{main,mcu,wakeup}.dtsi + k3-j722s-main.dtsi Regards, Siddharth. Siddharth Vadapalli (8): arm64: dts: ti: am62p: Rename am62p-{}.dtsi to am62p-j722s-common-{}.dtsi arm64: dts: ti: k3-am62p-j722s: Move AM62P specific USB1 to am62p-main.dtsi arm64: dts: ti: k3-j722s: Add main domain peripherals specific to J722S arm64: dts: ti: k3-j722s: Switch to k3-am62p-j722s-common-{}.dtsi includes arm64: dts: ti: k3-j722s: Move MAIN domain overrides to k3-j722s-main.dtsi arm64: dts: ti: k3-serdes: Add SERDES0/SERDES1 lane-muxing macros for J722S arm64: dts: ti: k3-j722s-main: Add SERDES and PCIe support arm64: dts: ti: k3-j722s: Enable PCIe and USB support on J722S-EVM .../dts/ti/k3-am62p-j722s-common-main.dtsi | 1068 +++++++++++++++++ ...cu.dtsi => k3-am62p-j722s-common-mcu.dtsi} | 3 +- ...tsi => k3-am62p-j722s-common-thermal.dtsi} | 0 ...dtsi => k3-am62p-j722s-common-wakeup.dtsi} | 3 +- arch/arm64/boot/dts/ti/k3-am62p-main.dtsi | 1063 +--------------- arch/arm64/boot/dts/ti/k3-am62p.dtsi | 9 +- arch/arm64/boot/dts/ti/k3-j722s-evm.dts | 73 ++ arch/arm64/boot/dts/ti/k3-j722s-main.dtsi | 184 +++ arch/arm64/boot/dts/ti/k3-j722s.dtsi | 165 ++- arch/arm64/boot/dts/ti/k3-serdes.h | 8 + 10 files changed, 1500 insertions(+), 1076 deletions(-) create mode 100644 arch/arm64/boot/dts/ti/k3-am62p-j722s-common-main.dtsi rename arch/arm64/boot/dts/ti/{k3-am62p-mcu.dtsi => k3-am62p-j722s-common-mcu.dtsi} (98%) rename arch/arm64/boot/dts/ti/{k3-am62p-thermal.dtsi => k3-am62p-j722s-common-thermal.dtsi} (100%) rename arch/arm64/boot/dts/ti/{k3-am62p-wakeup.dtsi => k3-am62p-j722s-common-wakeup.dtsi} (97%) create mode 100644 arch/arm64/boot/dts/ti/k3-j722s-main.dtsi -- 2.40.1