Message ID | 20241231095728.253943-1-andyshrk@163.com (mailing list archive) |
---|---|
Headers | show |
Series | Add display subsystem dt node on rk3576 | expand |
On Tue, 31 Dec 2024 17:57:17 +0800, Andy Yan wrote: > From: Andy Yan <andy.yan@rock-chips.com> > > > As the VOP[0] and HDMI[1] driver have already been submitted for review. > This series enable hdmi display on sige5 board. > > [0] https://lore.kernel.org/linux-rockchip/20241231090802.251787-1-andyshrk@163.com/T/#t > [1] https://lore.kernel.org/linux-rockchip/20241231094425.253398-1-andyshrk@163.com/T/#t > > Changes in v3: > - Split from https://lore.kernel.org/linux-rockchip/3330586.aeNJFYEL58@diego/T/#t > > Andy Yan (3): > arm64: dts: rockchip: Add vop for rk3576 > arm64: dts: rockchip: Add hdmi for rk3576 > arm64: dts: rockchip: Enable hdmi display on sige5 > > .../boot/dts/rockchip/rk3576-armsom-sige5.dts | 47 +++++++ > arch/arm64/boot/dts/rockchip/rk3576.dtsi | 126 ++++++++++++++++++ > 2 files changed, 173 insertions(+) > > -- > 2.34.1 > > > 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 rockchip/rk3576-armsom-sige5.dtb' for 20241231095728.253943-1-andyshrk@163.com: arch/arm64/boot/dts/rockchip/rk3576-armsom-sige5.dtb: /soc/syscon@26032000: failed to match any schema with compatible: ['rockchip,rk3576-hdptxphy-grf', 'syscon'] arch/arm64/boot/dts/rockchip/rk3576-armsom-sige5.dtb: /soc/vop@27d00000: failed to match any schema with compatible: ['rockchip,rk3576-vop'] arch/arm64/boot/dts/rockchip/rk3576-armsom-sige5.dtb: iommu@27d07e00: compatible: 'oneOf' conditional failed, one must be fixed: ['rockchip,rk3576-iommu', 'rockchip,rk3568-iommu'] is too long 'rockchip,rk3576-iommu' is not one of ['rockchip,iommu', 'rockchip,rk3568-iommu'] 'rockchip,rk3576-iommu' is not one of ['rockchip,rk3588-iommu'] from schema $id: http://devicetree.org/schemas/iommu/rockchip,iommu.yaml# arch/arm64/boot/dts/rockchip/rk3576-armsom-sige5.dtb: /soc/iommu@27d07e00: failed to match any schema with compatible: ['rockchip,rk3576-iommu', 'rockchip,rk3568-iommu'] arch/arm64/boot/dts/rockchip/rk3576-armsom-sige5.dtb: /soc/hdmi@27da0000: failed to match any schema with compatible: ['rockchip,rk3576-dw-hdmi-qp'] arch/arm64/boot/dts/rockchip/rk3576-armsom-sige5.dtb: hdmiphy@2b000000: compatible:0: 'rockchip,rk3576-hdptx-phy' is not one of ['rockchip,rk3588-hdptx-phy'] from schema $id: http://devicetree.org/schemas/phy/rockchip,rk3588-hdptx-phy.yaml# arch/arm64/boot/dts/rockchip/rk3576-armsom-sige5.dtb: hdmiphy@2b000000: compatible: ['rockchip,rk3576-hdptx-phy', 'rockchip,rk3588-hdptx-phy'] is too long from schema $id: http://devicetree.org/schemas/phy/rockchip,rk3588-hdptx-phy.yaml# arch/arm64/boot/dts/rockchip/rk3576-armsom-sige5.dtb: hdmiphy@2b000000: resets: [[17, 428], [17, 450], [17, 451], [17, 452]] is too short from schema $id: http://devicetree.org/schemas/phy/rockchip,rk3588-hdptx-phy.yaml# arch/arm64/boot/dts/rockchip/rk3576-armsom-sige5.dtb: hdmiphy@2b000000: reset-names:0: 'phy' was expected from schema $id: http://devicetree.org/schemas/phy/rockchip,rk3588-hdptx-phy.yaml# arch/arm64/boot/dts/rockchip/rk3576-armsom-sige5.dtb: hdmiphy@2b000000: reset-names:1: 'apb' was expected from schema $id: http://devicetree.org/schemas/phy/rockchip,rk3588-hdptx-phy.yaml# arch/arm64/boot/dts/rockchip/rk3576-armsom-sige5.dtb: hdmiphy@2b000000: reset-names:2: 'init' was expected from schema $id: http://devicetree.org/schemas/phy/rockchip,rk3588-hdptx-phy.yaml# arch/arm64/boot/dts/rockchip/rk3576-armsom-sige5.dtb: hdmiphy@2b000000: reset-names:3: 'cmn' was expected from schema $id: http://devicetree.org/schemas/phy/rockchip,rk3588-hdptx-phy.yaml# arch/arm64/boot/dts/rockchip/rk3576-armsom-sige5.dtb: hdmiphy@2b000000: reset-names: ['apb', 'init', 'cmn', 'lane'] is too short from schema $id: http://devicetree.org/schemas/phy/rockchip,rk3588-hdptx-phy.yaml# arch/arm64/boot/dts/rockchip/rk3576-armsom-sige5.dtb: /soc/hdmiphy@2b000000: failed to match any schema with compatible: ['rockchip,rk3576-hdptx-phy', 'rockchip,rk3588-hdptx-phy']
From: Andy Yan <andy.yan@rock-chips.com> As the VOP[0] and HDMI[1] driver have already been submitted for review. This series enable hdmi display on sige5 board. [0] https://lore.kernel.org/linux-rockchip/20241231090802.251787-1-andyshrk@163.com/T/#t [1] https://lore.kernel.org/linux-rockchip/20241231094425.253398-1-andyshrk@163.com/T/#t Changes in v3: - Split from https://lore.kernel.org/linux-rockchip/3330586.aeNJFYEL58@diego/T/#t Andy Yan (3): arm64: dts: rockchip: Add vop for rk3576 arm64: dts: rockchip: Add hdmi for rk3576 arm64: dts: rockchip: Enable hdmi display on sige5 .../boot/dts/rockchip/rk3576-armsom-sige5.dts | 47 +++++++ arch/arm64/boot/dts/rockchip/rk3576.dtsi | 126 ++++++++++++++++++ 2 files changed, 173 insertions(+)