Message ID | 20250112124127.994141-1-festevam@gmail.com (mailing list archive) |
---|---|
State | New |
Headers | show |
Series | ARM: dts: vfxxx: Fix the CAAM job ring node names | expand |
On Sun, 12 Jan 2025 09:41:27 -0300, Fabio Estevam wrote: > From: Fabio Estevam <festevam@denx.de> > > According to fsl,sec-v4.0.yaml, the job ring node names > should be 'jr'. > > Change them to fix the following dt-schema warnings: > > crypto@400f0000: 'jr0@1000', 'jr1@2000' do not match any of the regexes: > '^jr@[0-9a-f]+$', '^rtic@[0-9a-f]+$', 'pinctrl-[0-9]+' > > Signed-off-by: Fabio Estevam <festevam@denx.de> > --- > arch/arm/boot/dts/nxp/vf/vfxxx.dtsi | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > 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 for arch/arm/boot/dts/nxp/' for 20250112124127.994141-1-festevam@gmail.com: arch/arm/boot/dts/nxp/mxs/imx28-cfa10036.dtb: spi@80010000: $nodename:0: 'spi@80010000' does not match '^mmc(@.*)?$' from schema $id: http://devicetree.org/schemas/mmc/mxs-mmc.yaml# arch/arm/boot/dts/nxp/lpc/lpc3250-ea3250.dtb: /ahb/flash@20020000: failed to match any schema with compatible: ['nxp,lpc3220-slc'] arch/arm/boot/dts/nxp/ls/ls1021a-moxa-uc-8410a.dtb: /soc/dcu@2ce0000: failed to match any schema with compatible: ['fsl,ls1021a-dcu'] arch/arm/boot/dts/nxp/imx/imx53-usbarmory.dtb: /soc/bus@50000000/iomuxc-gpr@53fa8000: failed to match any schema with compatible: ['fsl,imx53-iomuxc-gpr', 'syscon'] arch/arm/boot/dts/nxp/imx/imx6q-lxr.dtb: /display-subsystem: failed to match any schema with compatible: ['fsl,imx-display-subsystem'] arch/arm/boot/dts/nxp/imx/imx6q-gw553x.dtb: /display-subsystem: failed to match any schema with compatible: ['fsl,imx-display-subsystem'] arch/arm/boot/dts/nxp/imx/imx6qp-tx6qp-8137.dtb: iomuxc-gpr@20e0000: 'ipu1_csi0_mux', 'ipu2_csi1_mux' do not match any of the regexes: 'pinctrl-[0-9]+' from schema $id: http://devicetree.org/schemas/soc/imx/fsl,imx-iomuxc-gpr.yaml# arch/arm/boot/dts/nxp/imx/imx6q-gw53xx.dtb: ds1672@68: $nodename:0: 'ds1672@68' does not match '^rtc(@.*|-([0-9]|[1-9][0-9]+))?$' from schema $id: http://devicetree.org/schemas/rtc/trivial-rtc.yaml# arch/arm/boot/dts/nxp/imx/imx53-mba53.dtb: /soc/bus@50000000/ldb@53fa8008: failed to match any schema with compatible: ['fsl,imx53-ldb'] arch/arm/boot/dts/nxp/imx/imx6q-apalis-eval.dtb: /soc/bus@2100000/mipi@21dc000: failed to match any schema with compatible: ['fsl,imx6-mipi-csi2']
On 12/01/2025 13:41, Fabio Estevam wrote: > From: Fabio Estevam <festevam@denx.de> > > According to fsl,sec-v4.0.yaml, the job ring node names > should be 'jr'. > > Change them to fix the following dt-schema warnings: > > crypto@400f0000: 'jr0@1000', 'jr1@2000' do not match any of the regexes: > '^jr@[0-9a-f]+$', '^rtic@[0-9a-f]+$', 'pinctrl-[0-9]+' > > Signed-off-by: Fabio Estevam <festevam@denx.de> > --- > arch/arm/boot/dts/nxp/vf/vfxxx.dtsi | 4 ++-- Reviewed-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org> Best regards, Krzysztof
diff --git a/arch/arm/boot/dts/nxp/vf/vfxxx.dtsi b/arch/arm/boot/dts/nxp/vf/vfxxx.dtsi index acccf9a3c898..6334ad4aec4b 100644 --- a/arch/arm/boot/dts/nxp/vf/vfxxx.dtsi +++ b/arch/arm/boot/dts/nxp/vf/vfxxx.dtsi @@ -725,13 +725,13 @@ crypto: crypto@400f0000 { clocks = <&clks VF610_CLK_CAAM>; clock-names = "ipg"; - sec_jr0: jr0@1000 { + sec_jr0: jr@1000 { compatible = "fsl,sec-v4.0-job-ring"; reg = <0x1000 0x1000>; interrupts = <102 IRQ_TYPE_LEVEL_HIGH>; }; - sec_jr1: jr1@2000 { + sec_jr1: jr@2000 { compatible = "fsl,sec-v4.0-job-ring"; reg = <0x2000 0x1000>; interrupts = <102 IRQ_TYPE_LEVEL_HIGH>;