Message ID | 20240926073951.783869-3-xu.yang_2@nxp.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | dtbs_check warning clean up against fsl,mxs-usbphy.yaml | expand |
On Thu, Sep 26, 2024 at 03:39:48PM +0800, Xu Yang wrote: > Make fsl,imx8dxl-usbphy compatible with fsl,imx7ulp-usbphy to fix below > warning: > > /home/nxf75279/work/linux-next/arch/arm64/boot/dts/freescale/imx8dxl-evk.dtb: usbphy@5b100000: 'nxp,sim' is a required property A relative path might be a better fit: arch/arm64/boot/dts/freescale/imx8dxl-evk.dtb: usbphy@5b100000: 'nxp,sim' is a required property I applied all 4 DTS patches with this fix-up. Shawn > from schema $id: http://devicetree.org/schemas/phy/fsl,mxs-usbphy.yaml# > > Signed-off-by: Xu Yang <xu.yang_2@nxp.com> > --- > arch/arm64/boot/dts/freescale/imx8dxl-ss-conn.dtsi | 4 ++++ > 1 file changed, 4 insertions(+) > > diff --git a/arch/arm64/boot/dts/freescale/imx8dxl-ss-conn.dtsi b/arch/arm64/boot/dts/freescale/imx8dxl-ss-conn.dtsi > index 1e02b04494e9..9b114bed084b 100644 > --- a/arch/arm64/boot/dts/freescale/imx8dxl-ss-conn.dtsi > +++ b/arch/arm64/boot/dts/freescale/imx8dxl-ss-conn.dtsi > @@ -138,6 +138,10 @@ &gpmi { > interrupts = <GIC_SPI 174 IRQ_TYPE_LEVEL_HIGH>; > }; > > +&usbphy1 { > + compatible = "fsl,imx8dxl-usbphy", "fsl,imx7ulp-usbphy"; > +}; > + > &usdhc1 { > compatible = "fsl,imx8dxl-usdhc", "fsl,imx8qxp-usdhc"; > interrupts = <GIC_SPI 138 IRQ_TYPE_LEVEL_HIGH>; > -- > 2.34.1 >
diff --git a/arch/arm64/boot/dts/freescale/imx8dxl-ss-conn.dtsi b/arch/arm64/boot/dts/freescale/imx8dxl-ss-conn.dtsi index 1e02b04494e9..9b114bed084b 100644 --- a/arch/arm64/boot/dts/freescale/imx8dxl-ss-conn.dtsi +++ b/arch/arm64/boot/dts/freescale/imx8dxl-ss-conn.dtsi @@ -138,6 +138,10 @@ &gpmi { interrupts = <GIC_SPI 174 IRQ_TYPE_LEVEL_HIGH>; }; +&usbphy1 { + compatible = "fsl,imx8dxl-usbphy", "fsl,imx7ulp-usbphy"; +}; + &usdhc1 { compatible = "fsl,imx8dxl-usdhc", "fsl,imx8qxp-usdhc"; interrupts = <GIC_SPI 138 IRQ_TYPE_LEVEL_HIGH>;
Make fsl,imx8dxl-usbphy compatible with fsl,imx7ulp-usbphy to fix below warning: /home/nxf75279/work/linux-next/arch/arm64/boot/dts/freescale/imx8dxl-evk.dtb: usbphy@5b100000: 'nxp,sim' is a required property from schema $id: http://devicetree.org/schemas/phy/fsl,mxs-usbphy.yaml# Signed-off-by: Xu Yang <xu.yang_2@nxp.com> --- arch/arm64/boot/dts/freescale/imx8dxl-ss-conn.dtsi | 4 ++++ 1 file changed, 4 insertions(+)