This series adds the initial device tree support for the SM8750 SoCs needed to boot to shell. This specifically adds support for clocks, pinctrl, rpmhpd, regulators, interconnects, and SoC and board compatibles. The Qualcomm Technologies, Inc. SM8750 SoC is the latest in the line of consumer mobile device SoCs. See more at: https://www.qualcomm.com/content/dam/qcomm-martech/dm-assets/images/company/news-media/media-center/press-kits/snapdragon-summit-2024/day-1/documents/Snapdragon8EliteProductBrief.pdf Dependencies: clks: https://lore.kernel.org/all/20241112002807.2804021-1-quic_molvera@xxxxxxxxxxx/ interconnects: https://lore.kernel.org/all/20241112003017.2805670-1-quic_molvera@xxxxxxxxxxx/ pinctrl: https://lore.kernel.org/all/20241112002843.2804490-1-quic_molvera@xxxxxxxxxxx/ regulators: https://lore.kernel.org/all/20241112002645.2803506-1-quic_molvera@xxxxxxxxxxx/ power domains: https://lore.kernel.org/all/20241112002444.2802092-1-quic_molvera@xxxxxxxxxxx/ misc bindings: - https://lore.kernel.org/all/20241112003544.2807368-1-quic_molvera@xxxxxxxxxxx/ - https://lore.kernel.org/all/20241112003217.2806556-1-quic_molvera@xxxxxxxxxxx/ - https://lore.kernel.org/all/20241021230500.2632527-1-quic_molvera@xxxxxxxxxxx/ - https://lore.kernel.org/all/20241021230439.2632480-1-quic_molvera@xxxxxxxxxxx/ applied bindings: - https://lore.kernel.org/all/20241021230427.2632466-1-quic_molvera@xxxxxxxxxxx/ Changes in V2: - split dts and dtsi patches into separate patches - changed eusb-repeater to phy - removed empty chosen node - lowercased phandles in dtsi - added system-wide domain idle state - added leading zeroes to applicable regs - corrected gpio ranges - removed some unnecessary comments - updated timer size cells - separated pmics & thermal zones into their own file - added chassis type to board files - added reserved tlmm nodes to board files - corrected regulator-0 supplies in board files Jishnu Prakash (1): arm64: dts: qcom: Add pmd8028 and pmih0108 PMICs Melody Olvera (5): dt-bindings: arm: qcom: Document sm8750 SoC and boards arm64: dts: qcom: Add base SM8750 dtsi arm64: dts: qcom: sm8750: Add pmic dtsi arm64: dts: qcom: Add SM8750 MTP and QRD boards arm64: defconfig: Enable SM8750 SoC base configs .../devicetree/bindings/arm/qcom.yaml | 7 + arch/arm64/boot/dts/qcom/Makefile | 2 + arch/arm64/boot/dts/qcom/pmd8028.dtsi | 56 + arch/arm64/boot/dts/qcom/pmih0108.dtsi | 62 + arch/arm64/boot/dts/qcom/sm8750-mtp.dts | 794 +++++ arch/arm64/boot/dts/qcom/sm8750-pmics.dtsi | 188 ++ arch/arm64/boot/dts/qcom/sm8750-qrd.dts | 792 +++++ arch/arm64/boot/dts/qcom/sm8750.dtsi | 2917 +++++++++++++++++ arch/arm64/configs/defconfig | 4 + 9 files changed, 4822 insertions(+) create mode 100644 arch/arm64/boot/dts/qcom/pmd8028.dtsi create mode 100644 arch/arm64/boot/dts/qcom/pmih0108.dtsi create mode 100644 arch/arm64/boot/dts/qcom/sm8750-mtp.dts create mode 100644 arch/arm64/boot/dts/qcom/sm8750-pmics.dtsi create mode 100644 arch/arm64/boot/dts/qcom/sm8750-qrd.dts create mode 100644 arch/arm64/boot/dts/qcom/sm8750.dtsi base-commit: 6d59cab07b8d74d0f0422b750038123334f6ecc2 -- 2.46.1