Message ID | 20240405-msm8916-moto-init-v1-0-502b58176d34@trvn.ru |
---|---|
Headers | show |
Series | Introduce msm8916 based Motorola devices | expand |
On Fri, 05 Apr 2024 19:06:09 +0500, Nikita Travkin wrote: > This series introduces a set of msm8916 bsed Motorola devices: > > - Moto G4 Play (harpia) > - Moto G 2015 (osprey) > - Moto E 2015 LTE (surnia) > > The submission brings up the following features: > > - eMMC and SD; > - Buttons; > - Touchscreen; > - USB; > - Fuel Gauge; > - Sound; > - Accelerometer (harpia only). > > Since the devices share a lot of similarities, the common parts of the > DT are separated out into a dedicated dtsi, introduced with the first > device. > > Signed-off-by: Nikita Travkin <nikita@trvn.ru> > --- > Martijn Braam (1): > arm64: dts: qcom: Add Motorola Moto G 2015 (osprey) > > Nikita Travkin (1): > dt-bindings: arm: qcom: Add msm8916 based Motorola devices > > Ruby Iris Juric (1): > arm64: dts: qcom: Add device tree for Motorola Moto G4 Play (harpia) > > Wiktor Strzębała (1): > arm64: dts: qcom: Add Motorola Moto E 2015 LTE (surnia) > > Documentation/devicetree/bindings/arm/qcom.yaml | 3 + > arch/arm64/boot/dts/qcom/Makefile | 3 + > .../boot/dts/qcom/msm8916-motorola-common.dtsi | 161 +++++++++++++++++++++ > .../boot/dts/qcom/msm8916-motorola-harpia.dts | 147 +++++++++++++++++++ > .../boot/dts/qcom/msm8916-motorola-osprey.dts | 105 ++++++++++++++ > .../boot/dts/qcom/msm8916-motorola-surnia.dts | 83 +++++++++++ > 6 files changed, 502 insertions(+) > --- > base-commit: 29493ca7d6b1d3fdc224467c422ac9bdf6d7a252 > change-id: 20240405-msm8916-moto-init-640862b8f57c > > Best regards, > -- > Nikita Travkin <nikita@trvn.ru> > > 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 New warnings running 'make CHECK_DTBS=y qcom/msm8916-motorola-harpia.dtb qcom/msm8916-motorola-osprey.dtb qcom/msm8916-motorola-surnia.dtb' for 20240405-msm8916-moto-init-v1-0-502b58176d34@trvn.ru: arch/arm64/boot/dts/qcom/msm8916-motorola-surnia.dtb: /soc@0/audio-codec@771c000: failed to match any schema with compatible: ['qcom,msm8916-wcd-digital-codec'] arch/arm64/boot/dts/qcom/msm8916-motorola-harpia.dtb: /soc@0/audio-codec@771c000: failed to match any schema with compatible: ['qcom,msm8916-wcd-digital-codec'] arch/arm64/boot/dts/qcom/msm8916-motorola-osprey.dtb: /soc@0/audio-codec@771c000: failed to match any schema with compatible: ['qcom,msm8916-wcd-digital-codec'] arch/arm64/boot/dts/qcom/msm8916-motorola-surnia.dtb: /soc@0/power-manager@b088000: failed to match any schema with compatible: ['qcom,msm8916-acc'] arch/arm64/boot/dts/qcom/msm8916-motorola-harpia.dtb: /soc@0/power-manager@b088000: failed to match any schema with compatible: ['qcom,msm8916-acc'] arch/arm64/boot/dts/qcom/msm8916-motorola-surnia.dtb: /soc@0/power-manager@b098000: failed to match any schema with compatible: ['qcom,msm8916-acc'] arch/arm64/boot/dts/qcom/msm8916-motorola-harpia.dtb: /soc@0/power-manager@b098000: failed to match any schema with compatible: ['qcom,msm8916-acc'] arch/arm64/boot/dts/qcom/msm8916-motorola-surnia.dtb: /soc@0/power-manager@b0a8000: failed to match any schema with compatible: ['qcom,msm8916-acc'] arch/arm64/boot/dts/qcom/msm8916-motorola-harpia.dtb: /soc@0/power-manager@b0a8000: failed to match any schema with compatible: ['qcom,msm8916-acc'] arch/arm64/boot/dts/qcom/msm8916-motorola-surnia.dtb: /soc@0/power-manager@b0b8000: failed to match any schema with compatible: ['qcom,msm8916-acc'] arch/arm64/boot/dts/qcom/msm8916-motorola-harpia.dtb: /soc@0/power-manager@b0b8000: failed to match any schema with compatible: ['qcom,msm8916-acc'] arch/arm64/boot/dts/qcom/msm8916-motorola-osprey.dtb: /soc@0/power-manager@b088000: failed to match any schema with compatible: ['qcom,msm8916-acc'] arch/arm64/boot/dts/qcom/msm8916-motorola-osprey.dtb: /soc@0/power-manager@b098000: failed to match any schema with compatible: ['qcom,msm8916-acc'] arch/arm64/boot/dts/qcom/msm8916-motorola-osprey.dtb: /soc@0/power-manager@b0a8000: failed to match any schema with compatible: ['qcom,msm8916-acc'] arch/arm64/boot/dts/qcom/msm8916-motorola-osprey.dtb: /soc@0/power-manager@b0b8000: failed to match any schema with compatible: ['qcom,msm8916-acc'] arch/arm64/boot/dts/qcom/msm8916-motorola-surnia.dtb: /usb-id: failed to match any schema with compatible: ['linux,extcon-usb-gpio'] arch/arm64/boot/dts/qcom/msm8916-motorola-harpia.dtb: /usb-id: failed to match any schema with compatible: ['linux,extcon-usb-gpio'] arch/arm64/boot/dts/qcom/msm8916-motorola-osprey.dtb: /usb-id: failed to match any schema with compatible: ['linux,extcon-usb-gpio']
On Fri, 05 Apr 2024 19:06:09 +0500, Nikita Travkin wrote: > This series introduces a set of msm8916 bsed Motorola devices: > > - Moto G4 Play (harpia) > - Moto G 2015 (osprey) > - Moto E 2015 LTE (surnia) > > The submission brings up the following features: > > [...] Applied, thanks! [2/4] arm64: dts: qcom: Add device tree for Motorola Moto G4 Play (harpia) commit: 65321d09e38bfbebd0e66975e021b748844cf478 [3/4] arm64: dts: qcom: Add Motorola Moto E 2015 LTE (surnia) commit: 24773481ae5e54f041a24b99037ba80775ec9fc5 [4/4] arm64: dts: qcom: Add Motorola Moto G 2015 (osprey) commit: 83086701167434c444ecde8479f1b9d3e0804a65 Best regards,
This series introduces a set of msm8916 bsed Motorola devices: - Moto G4 Play (harpia) - Moto G 2015 (osprey) - Moto E 2015 LTE (surnia) The submission brings up the following features: - eMMC and SD; - Buttons; - Touchscreen; - USB; - Fuel Gauge; - Sound; - Accelerometer (harpia only). Since the devices share a lot of similarities, the common parts of the DT are separated out into a dedicated dtsi, introduced with the first device. Signed-off-by: Nikita Travkin <nikita@trvn.ru> --- Martijn Braam (1): arm64: dts: qcom: Add Motorola Moto G 2015 (osprey) Nikita Travkin (1): dt-bindings: arm: qcom: Add msm8916 based Motorola devices Ruby Iris Juric (1): arm64: dts: qcom: Add device tree for Motorola Moto G4 Play (harpia) Wiktor Strzębała (1): arm64: dts: qcom: Add Motorola Moto E 2015 LTE (surnia) Documentation/devicetree/bindings/arm/qcom.yaml | 3 + arch/arm64/boot/dts/qcom/Makefile | 3 + .../boot/dts/qcom/msm8916-motorola-common.dtsi | 161 +++++++++++++++++++++ .../boot/dts/qcom/msm8916-motorola-harpia.dts | 147 +++++++++++++++++++ .../boot/dts/qcom/msm8916-motorola-osprey.dts | 105 ++++++++++++++ .../boot/dts/qcom/msm8916-motorola-surnia.dts | 83 +++++++++++ 6 files changed, 502 insertions(+) --- base-commit: 29493ca7d6b1d3fdc224467c422ac9bdf6d7a252 change-id: 20240405-msm8916-moto-init-640862b8f57c Best regards,