Message ID | 20250421-msm8937-v5-0-bf9879ef14d9@mainlining.org |
---|---|
Headers | show |
Series | Initial support of MSM8937 and Xiaomi Redmi 3S | expand |
On Mon, 21 Apr 2025 22:18:22 +0200, Barnabás Czémán wrote: > This patch series add initial support for MSM8937 SoC > and Xiaomi Redmi 3S (land). > > The series is extending the MSM8917 gcc and pinctrl drivers > because they are sibling SoCs. > MSM8937 have 4 more A53 cores and have one more dsi port then > MSM8917. > It implements little-big architecture and uses Adreno 505. > > Signed-off-by: Barnabás Czémán <barnabas.czeman@mainlining.org> > --- > Changes in v5: > - msm8937: > - Remove wrongly defined idle-states. > - Fix thermal zones. > - Use the header with DSI phy clock IDs. > - Fix the nodes order. > - Fix the pinctrls style. > - Follow gcc header changes. > - msm8937-xiaomi-land: > - Remove headphone switch and speaker amplifier bindings. > - Unify status property style. > - gcc bindings: > - Expand MSM8953 gcc schema with MSM8937. > - Add MSM8937 prefix for MSM8937 specific clocks. > - gcc: > - Follow the bindings changes. > - Drop alwayson clock documentation it will be handled in another > patchset. > - Link to v4: https://lore.kernel.org/r/20250315-msm8937-v4-0-1f132e870a49@mainlining.org > > Changes in v4: > - Add missing rpmcc include for qcom,gcc-msm8937 dtbinding exmaple. > - msm8937: add missing space after s9-p1@230 > - msm8937-xiaomi-land: replace LED_FUNCTION_INDICATOR to LED_FUNCTION_STATUS > - Remove applied patches > - Link to v3: https://lore.kernel.org/r/20250224-msm8937-v3-0-dad7c182cccb@mainlining.org > > Changes in v3: > - Fix qcom,gcc-msm8937 dtbinding example > - Link to v2: https://lore.kernel.org/r/20250223-msm8937-v2-0-b99722363ed3@mainlining.org > > Changes in v2: > - drop applied patches > - drop gcc schema commits infavor of a new schema for gcc-msm8937 > - document always on clock for adreno 505/506/510 > - msm8937: > - set cache size > - rename cpu labels > - fix style issues addressed by review > - msm8937-xiaom-land: > - remove unused serial0 alias > - remove regulator-always-on from pm8937_l6 > - add blue indicator led for aw2013 > - Link to v1: https://lore.kernel.org/r/20250211-msm8937-v1-0-7d27ed67f708@mainlining.org > > --- > Barnabás Czémán (3): > dt-bindings: clock: qcom: Add MSM8937 Global Clock Controller > dt-bindings: arm: qcom: Add Xiaomi Redmi 3S > arm64: dts: qcom: Add Xiaomi Redmi 3S > > Dang Huynh (1): > arm64: dts: qcom: Add initial support for MSM8937 > > Daniil Titov (1): > clk: qcom: gcc: Add support for Global Clock controller found on MSM8937 > > Documentation/devicetree/bindings/arm/qcom.yaml | 7 + > .../bindings/clock/qcom,gcc-msm8953.yaml | 11 +- > arch/arm64/boot/dts/qcom/Makefile | 1 + > arch/arm64/boot/dts/qcom/msm8937-xiaomi-land.dts | 381 ++++ > arch/arm64/boot/dts/qcom/msm8937.dtsi | 2069 ++++++++++++++++++++ > drivers/clk/qcom/Kconfig | 6 +- > drivers/clk/qcom/gcc-msm8917.c | 617 +++++- > include/dt-bindings/clock/qcom,gcc-msm8917.h | 19 + > 8 files changed, 3101 insertions(+), 10 deletions(-) > --- > base-commit: 5b37f7bfff3b1582c34be8fb23968b226db71ebd > change-id: 20250210-msm8937-228ef0dc3ec9 > > Best regards, > -- > Barnabás Czémán <barnabas.czeman@mainlining.org> > > > My bot found new DTB warnings on the .dts files added or changed in this series. Some warnings may be from an existing SoC .dtsi. Or perhaps the warnings are fixed by another series. Ultimately, it is up to the platform maintainer whether these warnings are acceptable or not. No need to reply unless the platform maintainer has comments. If you already ran DT checks and didn't see these error(s), then make sure dt-schema is up to date: pip3 install dtschema --upgrade This patch series was applied (using b4) to base: Base: using specified base-commit 5b37f7bfff3b1582c34be8fb23968b226db71ebd If this is not the correct base, please add 'base-commit' tag (or use b4 which does this automatically) New warnings running 'make CHECK_DTBS=y for arch/arm64/boot/dts/qcom/' for 20250421-msm8937-v5-0-bf9879ef14d9@mainlining.org: arch/arm64/boot/dts/qcom/msm8937-xiaomi-land.dtb: gpu@1c00000 (qcom,adreno-505.0): clock-names:5: 'alwayson' is not one of ['core', 'iface', 'mem', 'mem_iface', 'alt_mem_iface', 'gfx3d', 'rbbmtimer', 'rbcpr'] from schema $id: http://devicetree.org/schemas/display/msm/gpu.yaml#
This patch series add initial support for MSM8937 SoC and Xiaomi Redmi 3S (land). The series is extending the MSM8917 gcc and pinctrl drivers because they are sibling SoCs. MSM8937 have 4 more A53 cores and have one more dsi port then MSM8917. It implements little-big architecture and uses Adreno 505. Signed-off-by: Barnabás Czémán <barnabas.czeman@mainlining.org> --- Changes in v5: - msm8937: - Remove wrongly defined idle-states. - Fix thermal zones. - Use the header with DSI phy clock IDs. - Fix the nodes order. - Fix the pinctrls style. - Follow gcc header changes. - msm8937-xiaomi-land: - Remove headphone switch and speaker amplifier bindings. - Unify status property style. - gcc bindings: - Expand MSM8953 gcc schema with MSM8937. - Add MSM8937 prefix for MSM8937 specific clocks. - gcc: - Follow the bindings changes. - Drop alwayson clock documentation it will be handled in another patchset. - Link to v4: https://lore.kernel.org/r/20250315-msm8937-v4-0-1f132e870a49@mainlining.org Changes in v4: - Add missing rpmcc include for qcom,gcc-msm8937 dtbinding exmaple. - msm8937: add missing space after s9-p1@230 - msm8937-xiaomi-land: replace LED_FUNCTION_INDICATOR to LED_FUNCTION_STATUS - Remove applied patches - Link to v3: https://lore.kernel.org/r/20250224-msm8937-v3-0-dad7c182cccb@mainlining.org Changes in v3: - Fix qcom,gcc-msm8937 dtbinding example - Link to v2: https://lore.kernel.org/r/20250223-msm8937-v2-0-b99722363ed3@mainlining.org Changes in v2: - drop applied patches - drop gcc schema commits infavor of a new schema for gcc-msm8937 - document always on clock for adreno 505/506/510 - msm8937: - set cache size - rename cpu labels - fix style issues addressed by review - msm8937-xiaom-land: - remove unused serial0 alias - remove regulator-always-on from pm8937_l6 - add blue indicator led for aw2013 - Link to v1: https://lore.kernel.org/r/20250211-msm8937-v1-0-7d27ed67f708@mainlining.org --- Barnabás Czémán (3): dt-bindings: clock: qcom: Add MSM8937 Global Clock Controller dt-bindings: arm: qcom: Add Xiaomi Redmi 3S arm64: dts: qcom: Add Xiaomi Redmi 3S Dang Huynh (1): arm64: dts: qcom: Add initial support for MSM8937 Daniil Titov (1): clk: qcom: gcc: Add support for Global Clock controller found on MSM8937 Documentation/devicetree/bindings/arm/qcom.yaml | 7 + .../bindings/clock/qcom,gcc-msm8953.yaml | 11 +- arch/arm64/boot/dts/qcom/Makefile | 1 + arch/arm64/boot/dts/qcom/msm8937-xiaomi-land.dts | 381 ++++ arch/arm64/boot/dts/qcom/msm8937.dtsi | 2069 ++++++++++++++++++++ drivers/clk/qcom/Kconfig | 6 +- drivers/clk/qcom/gcc-msm8917.c | 617 +++++- include/dt-bindings/clock/qcom,gcc-msm8917.h | 19 + 8 files changed, 3101 insertions(+), 10 deletions(-) --- base-commit: 5b37f7bfff3b1582c34be8fb23968b226db71ebd change-id: 20250210-msm8937-228ef0dc3ec9 Best regards,