devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2 00/11] MSM8956/76 and Sony Xperia X / X Compact support
@ 2022-11-11 12:01 AngeloGioacchino Del Regno
  2022-11-11 12:01 ` [PATCH v2 01/11] dt-bindings: iio: qcom-spmi-vadc: Add definitions for USB DP/DM VADCs AngeloGioacchino Del Regno
                   ` (11 more replies)
  0 siblings, 12 replies; 32+ messages in thread
From: AngeloGioacchino Del Regno @ 2022-11-11 12:01 UTC (permalink / raw)
  To: agross
  Cc: andersson, konrad.dybcio, robh+dt, krzysztof.kozlowski+dt,
	jassisinghbrar, srinivas.kandagatla, jic23, lars, keescook,
	tony.luck, gpiccoli, evgreen, gregkh, a39.skl, linux-arm-msm,
	devicetree, linux-kernel, linux-iio, linux-hardening,
	marijn.suijten, kernel, luca, AngeloGioacchino Del Regno

This series adds basic support for MSM8976 and its lower spec variant
MSM8956, along with two devices: the Sony Xperia X and X Compact.

For now, even though I do have a tree in which these two devices are
fully booting, only a basic console boot is provided as the rest is
awaiting cleanup and some more dependencies.
Especially every device requiring IOMMU support, like MDSS, MDP and
Adreno GPU cannot work with the current qcom_iommu driver, as it
needs some code to get the ASIDs right for MSM8956/76.

This series depends on [1].

Tested on both Xperia X and X Compact.

[1]: https://patchwork.kernel.org/project/linux-arm-msm/list/?series=690889


Changes in v2:
 - Removed commits from v1 that were picked already
 - Added MSM8976 to socinfo and qcom,ids
 - Added a commit to fix ordering in qfprom yaml
 - Fix KPSS mailbox documentation to allow syscon on 8976
 - Various fixes from series v1 feedback (thanks!)

AngeloGioacchino Del Regno (9):
  dt-bindings: iio: qcom-spmi-vadc: Add definitions for USB DP/DM VADCs
  dt-bindings: nvmem: Fix qcom,qfprom compatibles enum ordering
  dt-bindings: sram: qcom,imem: Document MSM8976
  dt-bindings: mailbox: qcom: Allow syscon on
    qcom,msm8976-apcs-kpss-global
  dt-bindings: arm: qcom,ids: Add SoC IDs for MSM8956 and MSM8976
  soc: qcom: socinfo: Add MSM8956/76 SoC IDs to the soc_id table
  arm64: dts: qcom: Add configuration for PM8950 peripheral
  arm64: dts: qcom: Add DTS for MSM8976 and MSM8956 SoCs
  arm64: dts: qcom: Add support for SONY Xperia X/X Compact

Marijn Suijten (2):
  dt-bindings: nvmem: Add compatible for MSM8976
  dt-bindings: arm: qcom: Document msm8956 and msm8976 SoC and devices

 .../devicetree/bindings/arm/qcom.yaml         |   10 +
 .../mailbox/qcom,apcs-kpss-global.yaml        |    2 +-
 .../bindings/nvmem/qcom,qfprom.yaml           |    3 +-
 .../devicetree/bindings/sram/qcom,imem.yaml   |    1 +
 arch/arm64/boot/dts/qcom/Makefile             |    2 +
 .../qcom/msm8956-sony-xperia-loire-kugo.dts   |   35 +
 .../qcom/msm8956-sony-xperia-loire-suzu.dts   |   17 +
 .../dts/qcom/msm8956-sony-xperia-loire.dtsi   |  282 ++++
 arch/arm64/boot/dts/qcom/msm8956.dtsi         |   18 +
 arch/arm64/boot/dts/qcom/msm8976.dtsi         | 1198 +++++++++++++++++
 arch/arm64/boot/dts/qcom/pm8950.dtsi          |  165 +++
 drivers/soc/qcom/socinfo.c                    |    2 +
 include/dt-bindings/arm/qcom,ids.h            |    2 +
 include/dt-bindings/iio/qcom,spmi-vadc.h      |    3 +
 14 files changed, 1738 insertions(+), 2 deletions(-)
 create mode 100644 arch/arm64/boot/dts/qcom/msm8956-sony-xperia-loire-kugo.dts
 create mode 100644 arch/arm64/boot/dts/qcom/msm8956-sony-xperia-loire-suzu.dts
 create mode 100644 arch/arm64/boot/dts/qcom/msm8956-sony-xperia-loire.dtsi
 create mode 100644 arch/arm64/boot/dts/qcom/msm8956.dtsi
 create mode 100644 arch/arm64/boot/dts/qcom/msm8976.dtsi
 create mode 100644 arch/arm64/boot/dts/qcom/pm8950.dtsi

-- 
2.38.1


^ permalink raw reply	[flat|nested] 32+ messages in thread

end of thread, other threads:[~2025-01-06 20:59 UTC | newest]

Thread overview: 32+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-11-11 12:01 [PATCH v2 00/11] MSM8956/76 and Sony Xperia X / X Compact support AngeloGioacchino Del Regno
2022-11-11 12:01 ` [PATCH v2 01/11] dt-bindings: iio: qcom-spmi-vadc: Add definitions for USB DP/DM VADCs AngeloGioacchino Del Regno
2022-11-11 12:01 ` [PATCH v2 02/11] dt-bindings: nvmem: Fix qcom,qfprom compatibles enum ordering AngeloGioacchino Del Regno
2022-11-15 16:42   ` Krzysztof Kozlowski
2022-11-16  8:50     ` AngeloGioacchino Del Regno
2023-01-03 11:58       ` Srinivas Kandagatla
2023-01-03 11:59         ` AngeloGioacchino Del Regno
2022-11-11 12:01 ` [PATCH v2 03/11] dt-bindings: nvmem: Add compatible for MSM8976 AngeloGioacchino Del Regno
2022-11-15 16:42   ` Krzysztof Kozlowski
2023-01-03 11:57   ` Srinivas Kandagatla
2022-11-11 12:01 ` [PATCH v2 04/11] dt-bindings: sram: qcom,imem: Document MSM8976 AngeloGioacchino Del Regno
2022-11-15 16:42   ` Krzysztof Kozlowski
2025-01-06 20:59   ` Rob Herring (Arm)
2022-11-11 12:01 ` [PATCH v2 05/11] dt-bindings: mailbox: qcom: Allow syscon on qcom,msm8976-apcs-kpss-global AngeloGioacchino Del Regno
2022-11-15 16:44   ` Krzysztof Kozlowski
2022-11-16  8:52     ` AngeloGioacchino Del Regno
2022-11-16  8:57       ` Krzysztof Kozlowski
2022-11-16  9:00         ` AngeloGioacchino Del Regno
2022-11-16  9:44           ` Krzysztof Kozlowski
2022-11-11 12:01 ` [PATCH v2 06/11] dt-bindings: arm: qcom,ids: Add SoC IDs for MSM8956 and MSM8976 AngeloGioacchino Del Regno
2022-11-14  9:39   ` Konrad Dybcio
2022-11-15 16:43   ` Krzysztof Kozlowski
2022-11-11 12:01 ` [PATCH v2 07/11] soc: qcom: socinfo: Add MSM8956/76 SoC IDs to the soc_id table AngeloGioacchino Del Regno
2022-11-14  9:39   ` Konrad Dybcio
2022-11-15 16:43   ` Krzysztof Kozlowski
2022-11-11 12:01 ` [PATCH v2 08/11] dt-bindings: arm: qcom: Document msm8956 and msm8976 SoC and devices AngeloGioacchino Del Regno
2022-11-11 12:01 ` [PATCH v2 09/11] arm64: dts: qcom: Add configuration for PM8950 peripheral AngeloGioacchino Del Regno
2022-11-11 12:01 ` [PATCH v2 10/11] arm64: dts: qcom: Add DTS for MSM8976 and MSM8956 SoCs AngeloGioacchino Del Regno
2022-11-15 16:46   ` Krzysztof Kozlowski
2022-11-11 12:01 ` [PATCH v2 11/11] arm64: dts: qcom: Add support for SONY Xperia X/X Compact AngeloGioacchino Del Regno
2022-11-15 16:46   ` Krzysztof Kozlowski
2022-12-06 18:18 ` (subset) [PATCH v2 00/11] MSM8956/76 and Sony Xperia X / X Compact support Bjorn Andersson

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).