* [PATCH 1/1] dt-bindings: fsl: fsl,rcpm: reference power-domains.yaml
@ 2025-07-25 5:58 Alexander Stein
2025-07-25 7:25 ` Rob Herring (Arm)
2025-07-25 19:47 ` Rob Herring
0 siblings, 2 replies; 5+ messages in thread
From: Alexander Stein @ 2025-07-25 5:58 UTC (permalink / raw)
To: Christophe Leroy, Rob Herring, Krzysztof Kozlowski, Conor Dooley,
Frank Li
Cc: Alexander Stein, linuxppc-dev, linux-arm-kernel, devicetree,
linux-kernel
dtbs_check for ls1021.dtsi warns about unsupported property:
power-controller@1ee2140 (fsl,ls1021a-rcpm): '#power-domain-cells' does not match any of the regexes: '^pinctrl-[0-9]+$'
But if removed the check warns about missing property:
power-controller@1ee2140 (fsl,ls1021a-rcpm): '#power-domain-cells' is a required property
Given commit 8bcf67b8d893b ("ARM: dts: ls1021a: add #power-domain-cells
for power-controller node") explicitly added that property, add a
reference to the common bindings to fix the warning.
Fixes: ad21e3840a88 ("dt-bindings: soc: fsl: Convert rcpm to yaml format")
Signed-off-by: Alexander Stein <alexander.stein@ew.tq-group.com>
---
Documentation/devicetree/bindings/soc/fsl/fsl,rcpm.yaml | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/Documentation/devicetree/bindings/soc/fsl/fsl,rcpm.yaml b/Documentation/devicetree/bindings/soc/fsl/fsl,rcpm.yaml
index 03d71ab930d79..5b7c0a1905545 100644
--- a/Documentation/devicetree/bindings/soc/fsl/fsl,rcpm.yaml
+++ b/Documentation/devicetree/bindings/soc/fsl/fsl,rcpm.yaml
@@ -13,6 +13,9 @@ description:
maintainers:
- Frank Li <Frank.Li@nxp.com>
+allOf:
+ - $ref: /schemas/power/power-domain.yaml#
+
properties:
compatible:
oneOf:
@@ -75,7 +78,7 @@ properties:
RCPM register block is Little Endian. Without it RCPM
will be Big Endian (default case).
-additionalProperties: false
+unevaluatedProperties: false
examples:
- |
--
2.43.0
^ permalink raw reply related [flat|nested] 5+ messages in thread* Re: [PATCH 1/1] dt-bindings: fsl: fsl,rcpm: reference power-domains.yaml
2025-07-25 5:58 [PATCH 1/1] dt-bindings: fsl: fsl,rcpm: reference power-domains.yaml Alexander Stein
@ 2025-07-25 7:25 ` Rob Herring (Arm)
2025-07-25 19:47 ` Rob Herring
1 sibling, 0 replies; 5+ messages in thread
From: Rob Herring (Arm) @ 2025-07-25 7:25 UTC (permalink / raw)
To: Alexander Stein
Cc: devicetree, Christophe Leroy, linuxppc-dev, Conor Dooley,
Krzysztof Kozlowski, Frank Li, linux-arm-kernel, linux-kernel
On Fri, 25 Jul 2025 07:58:34 +0200, Alexander Stein wrote:
> dtbs_check for ls1021.dtsi warns about unsupported property:
> power-controller@1ee2140 (fsl,ls1021a-rcpm): '#power-domain-cells' does not match any of the regexes: '^pinctrl-[0-9]+$'
>
> But if removed the check warns about missing property:
> power-controller@1ee2140 (fsl,ls1021a-rcpm): '#power-domain-cells' is a required property
>
> Given commit 8bcf67b8d893b ("ARM: dts: ls1021a: add #power-domain-cells
> for power-controller node") explicitly added that property, add a
> reference to the common bindings to fix the warning.
>
> Fixes: ad21e3840a88 ("dt-bindings: soc: fsl: Convert rcpm to yaml format")
> Signed-off-by: Alexander Stein <alexander.stein@ew.tq-group.com>
> ---
> Documentation/devicetree/bindings/soc/fsl/fsl,rcpm.yaml | 5 ++++-
> 1 file changed, 4 insertions(+), 1 deletion(-)
>
My bot found errors running 'make dt_binding_check' on your patch:
yamllint warnings/errors:
dtschema/dtc warnings/errors:
/builds/robherring/dt-review-ci/linux/Documentation/devicetree/bindings/soc/fsl/fsl,rcpm.example.dtb: global-utilities@e2000 (fsl,t4240-rcpm): $nodename:0: 'global-utilities@e2000' does not match '^(power-controller|power-domain|performance-domain)([@-].*)?$'
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
/builds/robherring/dt-review-ci/linux/Documentation/devicetree/bindings/soc/fsl/fsl,rcpm.example.dtb: global-utilities@e2000 (fsl,t4240-rcpm): '#power-domain-cells' is a required property
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
doc reference errors (make refcheckdocs):
See https://patchwork.ozlabs.org/project/devicetree-bindings/patch/20250725055835.260930-1-alexander.stein@ew.tq-group.com
The base for the series is generally the latest rc1. A different dependency
should be noted in *this* patch.
If you already ran 'make dt_binding_check' and didn't see the above
error(s), then make sure 'yamllint' is installed and dt-schema is up to
date:
pip3 install dtschema --upgrade
Please check and re-submit after running the above command yourself. Note
that DT_SCHEMA_FILES can be set to your schema file to speed up checking
your schema. However, it must be unset to test all examples with your schema.
^ permalink raw reply [flat|nested] 5+ messages in thread* Re: [PATCH 1/1] dt-bindings: fsl: fsl,rcpm: reference power-domains.yaml
2025-07-25 5:58 [PATCH 1/1] dt-bindings: fsl: fsl,rcpm: reference power-domains.yaml Alexander Stein
2025-07-25 7:25 ` Rob Herring (Arm)
@ 2025-07-25 19:47 ` Rob Herring
1 sibling, 0 replies; 5+ messages in thread
From: Rob Herring @ 2025-07-25 19:47 UTC (permalink / raw)
To: Alexander Stein
Cc: Christophe Leroy, Krzysztof Kozlowski, Conor Dooley, Frank Li,
linuxppc-dev, linux-arm-kernel, devicetree, linux-kernel
On Fri, Jul 25, 2025 at 07:58:34AM +0200, Alexander Stein wrote:
> dtbs_check for ls1021.dtsi warns about unsupported property:
> power-controller@1ee2140 (fsl,ls1021a-rcpm): '#power-domain-cells' does not match any of the regexes: '^pinctrl-[0-9]+$'
>
> But if removed the check warns about missing property:
> power-controller@1ee2140 (fsl,ls1021a-rcpm): '#power-domain-cells' is a required property
>
> Given commit 8bcf67b8d893b ("ARM: dts: ls1021a: add #power-domain-cells
> for power-controller node") explicitly added that property, add a
> reference to the common bindings to fix the warning.
>
> Fixes: ad21e3840a88 ("dt-bindings: soc: fsl: Convert rcpm to yaml format")
> Signed-off-by: Alexander Stein <alexander.stein@ew.tq-group.com>
> ---
> Documentation/devicetree/bindings/soc/fsl/fsl,rcpm.yaml | 5 ++++-
> 1 file changed, 4 insertions(+), 1 deletion(-)
>
> diff --git a/Documentation/devicetree/bindings/soc/fsl/fsl,rcpm.yaml b/Documentation/devicetree/bindings/soc/fsl/fsl,rcpm.yaml
> index 03d71ab930d79..5b7c0a1905545 100644
> --- a/Documentation/devicetree/bindings/soc/fsl/fsl,rcpm.yaml
> +++ b/Documentation/devicetree/bindings/soc/fsl/fsl,rcpm.yaml
> @@ -13,6 +13,9 @@ description:
> maintainers:
> - Frank Li <Frank.Li@nxp.com>
>
> +allOf:
> + - $ref: /schemas/power/power-domain.yaml#
This is not correct. The fix for the above warning is to add
'#power-domain-cells' to the properties list here. You can't just
reference the schema because you have to define the value of
'#power-domain-cells' for this provider.
Generally, we only add a $ref to providers if they have child nodes
(e.g. are a bus).
> +
> properties:
> compatible:
> oneOf:
> @@ -75,7 +78,7 @@ properties:
> RCPM register block is Little Endian. Without it RCPM
> will be Big Endian (default case).
>
> -additionalProperties: false
> +unevaluatedProperties: false
>
> examples:
> - |
> --
> 2.43.0
>
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH 1/1] dt-bindings: fsl: fsl,rcpm: reference power-domains.yaml
@ 2025-07-27 4:13 kernel test robot
0 siblings, 0 replies; 5+ messages in thread
From: kernel test robot @ 2025-07-27 4:13 UTC (permalink / raw)
To: oe-kbuild; +Cc: lkp
::::::
:::::: Manual check reason: "dtcheck: binding changes may go via different trees"
::::::
BCC: lkp@intel.com
CC: oe-kbuild-all@lists.linux.dev
In-Reply-To: <20250725055835.260930-1-alexander.stein@ew.tq-group.com>
References: <20250725055835.260930-1-alexander.stein@ew.tq-group.com>
TO: Alexander Stein <alexander.stein@ew.tq-group.com>
TO: Christophe Leroy <christophe.leroy@csgroup.eu>
TO: Rob Herring <robh@kernel.org>
TO: Krzysztof Kozlowski <krzk@kernel.org>
TO: Conor Dooley <conor+dt@kernel.org>
TO: Frank Li <Frank.Li@nxp.com>
CC: Alexander Stein <alexander.stein@ew.tq-group.com>
CC: linuxppc-dev@lists.ozlabs.org
CC: linux-arm-kernel@lists.infradead.org
CC: devicetree@vger.kernel.org
CC: linux-kernel@vger.kernel.org
Hi Alexander,
kernel test robot noticed the following build warnings:
[auto build test WARNING on robh/for-next]
[also build test WARNING on linus/master v6.16-rc7 next-20250725]
[If your patch is applied to the wrong git tree, kindly drop us a note.
And when submitting patch, we suggest to use '--base' as documented in
https://git-scm.com/docs/git-format-patch#_base_tree_information]
url: https://github.com/intel-lab-lkp/linux/commits/Alexander-Stein/dt-bindings-fsl-fsl-rcpm-reference-power-domains-yaml/20250725-140232
base: https://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git for-next
patch link: https://lore.kernel.org/r/20250725055835.260930-1-alexander.stein%40ew.tq-group.com
patch subject: [PATCH 1/1] dt-bindings: fsl: fsl,rcpm: reference power-domains.yaml
:::::: branch date: 2 days ago
:::::: commit date: 2 days ago
config: powerpc-randconfig-051-20250726 (https://download.01.org/0day-ci/archive/20250727/202507271128.uYFcKFXI-lkp@intel.com/config)
compiler: powerpc-linux-gcc (GCC) 8.5.0
dtschema version: 2025.6.2.dev4+g8f79ddd
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20250727/202507271128.uYFcKFXI-lkp@intel.com/reproduce)
If you fix the issue in a separate patch/commit (i.e. not just a new version of
the same patch/commit), kindly add following tags
| Reported-by: kernel test robot <lkp@intel.com>
| Closes: https://lore.kernel.org/r/202507271128.uYFcKFXI-lkp@intel.com/
dtcheck warnings: (new ones prefixed by >>)
arch/powerpc/boot/dts/fsl/b4420qds.dtb: /soc@ffe000000/global-utilities@e0000: failed to match any schema with compatible: ['fsl,b4420-device-config', 'fsl,qoriq-device-config-2.0']
arch/powerpc/boot/dts/fsl/b4420qds.dtb: /soc@ffe000000/global-utilities@e0000: failed to match any schema with compatible: ['fsl,b4420-device-config', 'fsl,qoriq-device-config-2.0']
arch/powerpc/boot/dts/fsl/b4420qds.dtb: global-utilities@e1000 (fsl,b4420-clockgen): compatible: 'oneOf' conditional failed, one must be fixed:
['fsl,b4420-clockgen', 'fsl,b4-clockgen', 'fsl,qoriq-clockgen-2.0'] is too long
'fsl,b4420-clockgen' is not one of ['fsl,p2041-clockgen', 'fsl,p3041-clockgen', 'fsl,p4080-clockgen', 'fsl,p5020-clockgen', 'fsl,p5040-clockgen']
'fsl,b4420-clockgen' is not one of ['fsl,t1023-clockgen', 'fsl,t1024-clockgen', 'fsl,t1040-clockgen', 'fsl,t1042-clockgen', 'fsl,t2080-clockgen', 'fsl,t2081-clockgen', 'fsl,t4240-clockgen']
'fsl,b4420-clockgen' is not one of ['fsl,ls1012a-clockgen', 'fsl,ls1021a-clockgen', 'fsl,ls1028a-clockgen', 'fsl,ls1043a-clockgen', 'fsl,ls1046a-clockgen', 'fsl,ls1088a-clockgen', 'fsl,ls2080a-clockgen', 'fsl,lx2160a-clockgen']
'fsl,qoriq-clockgen-1.0' was expected
'fsl,qoriq-clockgen-2.0' was expected
from schema $id: http://devicetree.org/schemas/clock/fsl,qoriq-clock.yaml#
>> arch/powerpc/boot/dts/fsl/b4420qds.dtb: global-utilities@e2000 (fsl,b4420-rcpm): $nodename:0: 'global-utilities@e2000' does not match '^(power-controller|power-domain|performance-domain)([@-].*)?$'
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
>> arch/powerpc/boot/dts/fsl/b4420qds.dtb: global-utilities@e2000 (fsl,b4420-rcpm): '#power-domain-cells' is a required property
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
arch/powerpc/boot/dts/fsl/b4420qds.dtb: dma@100300 (fsl,elo3-dma): 'fsl,iommu-parent', 'fsl,liodn-reg' do not match any of the regexes: '^dma-channel@[0-9a-f]+$', '^pinctrl-[0-9]+$'
from schema $id: http://devicetree.org/schemas/dma/fsl,elo3-dma.yaml#
arch/powerpc/boot/dts/fsl/b4420qds.dtb: dma@101300 (fsl,elo3-dma): 'fsl,iommu-parent', 'fsl,liodn-reg' do not match any of the regexes: '^dma-channel@[0-9a-f]+$', '^pinctrl-[0-9]+$'
from schema $id: http://devicetree.org/schemas/dma/fsl,elo3-dma.yaml#
arch/powerpc/boot/dts/fsl/b4420qds.dtb: i2c@118100 (fsl-i2c): compatible: 'oneOf' conditional failed, one must be fixed:
['fsl-i2c'] is too short
'fsl-i2c' is not one of ['mpc5200-i2c', 'fsl,mpc5200-i2c', 'fsl,mpc5121-i2c', 'fsl,mpc8313-i2c', 'fsl,mpc8543-i2c', 'fsl,mpc8544-i2c']
'fsl,mpc5200b-i2c' was expected
from schema $id: http://devicetree.org/schemas/i2c/i2c-mpc.yaml#
--
arch/powerpc/boot/dts/fsl/b4860qds.dtb: /soc@ffe000000/global-utilities@e0000: failed to match any schema with compatible: ['fsl,b4860-device-config', 'fsl,qoriq-device-config-2.0']
arch/powerpc/boot/dts/fsl/b4860qds.dtb: /soc@ffe000000/global-utilities@e0000: failed to match any schema with compatible: ['fsl,b4860-device-config', 'fsl,qoriq-device-config-2.0']
arch/powerpc/boot/dts/fsl/b4860qds.dtb: global-utilities@e1000 (fsl,b4860-clockgen): compatible: 'oneOf' conditional failed, one must be fixed:
['fsl,b4860-clockgen', 'fsl,b4-clockgen', 'fsl,qoriq-clockgen-2.0'] is too long
'fsl,b4860-clockgen' is not one of ['fsl,p2041-clockgen', 'fsl,p3041-clockgen', 'fsl,p4080-clockgen', 'fsl,p5020-clockgen', 'fsl,p5040-clockgen']
'fsl,b4860-clockgen' is not one of ['fsl,t1023-clockgen', 'fsl,t1024-clockgen', 'fsl,t1040-clockgen', 'fsl,t1042-clockgen', 'fsl,t2080-clockgen', 'fsl,t2081-clockgen', 'fsl,t4240-clockgen']
'fsl,b4860-clockgen' is not one of ['fsl,ls1012a-clockgen', 'fsl,ls1021a-clockgen', 'fsl,ls1028a-clockgen', 'fsl,ls1043a-clockgen', 'fsl,ls1046a-clockgen', 'fsl,ls1088a-clockgen', 'fsl,ls2080a-clockgen', 'fsl,lx2160a-clockgen']
'fsl,qoriq-clockgen-1.0' was expected
'fsl,qoriq-clockgen-2.0' was expected
from schema $id: http://devicetree.org/schemas/clock/fsl,qoriq-clock.yaml#
>> arch/powerpc/boot/dts/fsl/b4860qds.dtb: global-utilities@e2000 (fsl,b4860-rcpm): $nodename:0: 'global-utilities@e2000' does not match '^(power-controller|power-domain|performance-domain)([@-].*)?$'
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
>> arch/powerpc/boot/dts/fsl/b4860qds.dtb: global-utilities@e2000 (fsl,b4860-rcpm): '#power-domain-cells' is a required property
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
arch/powerpc/boot/dts/fsl/b4860qds.dtb: dma@100300 (fsl,elo3-dma): 'fsl,iommu-parent', 'fsl,liodn-reg' do not match any of the regexes: '^dma-channel@[0-9a-f]+$', '^pinctrl-[0-9]+$'
from schema $id: http://devicetree.org/schemas/dma/fsl,elo3-dma.yaml#
arch/powerpc/boot/dts/fsl/b4860qds.dtb: dma@101300 (fsl,elo3-dma): 'fsl,iommu-parent', 'fsl,liodn-reg' do not match any of the regexes: '^dma-channel@[0-9a-f]+$', '^pinctrl-[0-9]+$'
from schema $id: http://devicetree.org/schemas/dma/fsl,elo3-dma.yaml#
arch/powerpc/boot/dts/fsl/b4860qds.dtb: i2c@118100 (fsl-i2c): compatible: 'oneOf' conditional failed, one must be fixed:
['fsl-i2c'] is too short
'fsl-i2c' is not one of ['mpc5200-i2c', 'fsl,mpc5200-i2c', 'fsl,mpc5121-i2c', 'fsl,mpc8313-i2c', 'fsl,mpc8543-i2c', 'fsl,mpc8544-i2c']
'fsl,mpc5200b-i2c' was expected
from schema $id: http://devicetree.org/schemas/i2c/i2c-mpc.yaml#
--
arch/powerpc/boot/dts/fsl/cyrus_p5020.dtb: pic@40000 (fsl,mpic): 'clock-frequency' does not match any of the regexes: '^pinctrl-[0-9]+$'
from schema $id: http://devicetree.org/schemas/interrupt-controller/chrp,open-pic.yaml#
arch/powerpc/boot/dts/fsl/cyrus_p5020.dtb: pic@40000 (fsl,mpic): #interrupt-cells: 2 was expected
from schema $id: http://devicetree.org/schemas/interrupt-controller/chrp,open-pic.yaml#
arch/powerpc/boot/dts/fsl/cyrus_p5020.dtb: pic@40000 (fsl,mpic): device_type:0: 'open-pci' was expected
from schema $id: http://devicetree.org/schemas/interrupt-controller/chrp,open-pic.yaml#
arch/powerpc/boot/dts/fsl/cyrus_p5020.dtb: /soc@ffe000000/timer@41100: failed to match any schema with compatible: ['fsl,mpic-global-timer']
arch/powerpc/boot/dts/fsl/cyrus_p5020.dtb: /soc@ffe000000/timer@42100: failed to match any schema with compatible: ['fsl,mpic-global-timer']
arch/powerpc/boot/dts/fsl/cyrus_p5020.dtb: /soc@ffe000000/global-utilities@e0000: failed to match any schema with compatible: ['fsl,qoriq-device-config-1.0']
arch/powerpc/boot/dts/fsl/cyrus_p5020.dtb: /soc@ffe000000/global-utilities@e0e00: failed to match any schema with compatible: ['fsl,qoriq-pin-control-1.0']
>> arch/powerpc/boot/dts/fsl/cyrus_p5020.dtb: global-utilities@e2000 (fsl,qoriq-rcpm-1.0): $nodename:0: 'global-utilities@e2000' does not match '^(power-controller|power-domain|performance-domain)([@-].*)?$'
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
>> arch/powerpc/boot/dts/fsl/cyrus_p5020.dtb: global-utilities@e2000 (fsl,qoriq-rcpm-1.0): '#power-domain-cells' is a required property
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
arch/powerpc/boot/dts/fsl/cyrus_p5020.dtb: global-utilities@e2000 (fsl,qoriq-rcpm-1.0): compatible: 'oneOf' conditional failed, one must be fixed:
['fsl,qoriq-rcpm-1.0'] is too short
'fsl,qoriq-rcpm-1.0' is not one of ['fsl,p2041-rcpm', 'fsl,p3041-rcpm', 'fsl,p4080-rcpm', 'fsl,p5020-rcpm', 'fsl,p5040-rcpm']
'fsl,qoriq-rcpm-1.0' is not one of ['fsl,b4420-rcpm', 'fsl,b4860-rcpm', 'fsl,t4240-rcpm']
'fsl,qoriq-rcpm-1.0' is not one of ['fsl,t1040-rcpm']
'fsl,qoriq-rcpm-1.0' is not one of ['fsl,ls1012a-rcpm', 'fsl,ls1021a-rcpm', 'fsl,ls1028a-rcpm', 'fsl,ls1043a-rcpm', 'fsl,ls1046a-rcpm', 'fsl,ls1088a-rcpm', 'fsl,ls208xa-rcpm', 'fsl,lx2160a-rcpm']
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
>> arch/powerpc/boot/dts/fsl/cyrus_p5020.dtb: global-utilities@e2000 (fsl,qoriq-rcpm-1.0): Unevaluated properties are not allowed ('#sleep-cells', 'compatible' were unexpected)
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
arch/powerpc/boot/dts/fsl/cyrus_p5020.dtb: /soc@ffe000000/sfp@e8000: failed to match any schema with compatible: ['fsl,p5020-sfp', 'fsl,qoriq-sfp-1.0']
arch/powerpc/boot/dts/fsl/cyrus_p5020.dtb: /soc@ffe000000/sfp@e8000: failed to match any schema with compatible: ['fsl,p5020-sfp', 'fsl,qoriq-sfp-1.0']
arch/powerpc/boot/dts/fsl/cyrus_p5020.dtb: /soc@ffe000000/serdes@ea000: failed to match any schema with compatible: ['fsl,p5020-serdes']
arch/powerpc/boot/dts/fsl/cyrus_p5020.dtb: dma@100300 (fsl,eloplus-dma): 'fsl,iommu-parent', 'fsl,liodn-reg' do not match any of the regexes: '^dma-channel@[0-9a-f]+$', '^pinctrl-[0-9]+$'
from schema $id: http://devicetree.org/schemas/dma/fsl,eloplus-dma.yaml#
arch/powerpc/boot/dts/fsl/cyrus_p5020.dtb: dma@100300 (fsl,eloplus-dma): dma-channel@0:compatible: 'oneOf' conditional failed, one must be fixed:
['fsl,eloplus-dma-channel'] is too short
'fsl,eloplus-dma-channel' is not one of ['fsl,mpc8540-dma-channel', 'fsl,mpc8541-dma-channel', 'fsl,mpc8548-dma-channel', 'fsl,mpc8555-dma-channel', 'fsl,mpc8560-dma-channel', 'fsl,mpc8572-dma-channel']
'fsl,ssi-dma-channel' was expected
--
arch/powerpc/boot/dts/fsl/kmcent2.dtb: pic@40000 (fsl,mpic): 'clock-frequency' does not match any of the regexes: '^pinctrl-[0-9]+$'
from schema $id: http://devicetree.org/schemas/interrupt-controller/chrp,open-pic.yaml#
arch/powerpc/boot/dts/fsl/kmcent2.dtb: pic@40000 (fsl,mpic): #interrupt-cells: 2 was expected
from schema $id: http://devicetree.org/schemas/interrupt-controller/chrp,open-pic.yaml#
arch/powerpc/boot/dts/fsl/kmcent2.dtb: pic@40000 (fsl,mpic): device_type:0: 'open-pci' was expected
from schema $id: http://devicetree.org/schemas/interrupt-controller/chrp,open-pic.yaml#
arch/powerpc/boot/dts/fsl/kmcent2.dtb: /soc@ffe000000/timer@41100: failed to match any schema with compatible: ['fsl,mpic-global-timer']
arch/powerpc/boot/dts/fsl/kmcent2.dtb: /soc@ffe000000/timer@42100: failed to match any schema with compatible: ['fsl,mpic-global-timer']
arch/powerpc/boot/dts/fsl/kmcent2.dtb: /soc@ffe000000/global-utilities@e0000: failed to match any schema with compatible: ['fsl,t1040-device-config', 'fsl,qoriq-device-config-2.0']
arch/powerpc/boot/dts/fsl/kmcent2.dtb: /soc@ffe000000/global-utilities@e0000: failed to match any schema with compatible: ['fsl,t1040-device-config', 'fsl,qoriq-device-config-2.0']
>> arch/powerpc/boot/dts/fsl/kmcent2.dtb: global-utilities@e2000 (fsl,t1040-rcpm): $nodename:0: 'global-utilities@e2000' does not match '^(power-controller|power-domain|performance-domain)([@-].*)?$'
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
>> arch/powerpc/boot/dts/fsl/kmcent2.dtb: global-utilities@e2000 (fsl,t1040-rcpm): '#power-domain-cells' is a required property
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
arch/powerpc/boot/dts/fsl/kmcent2.dtb: /soc@ffe000000/sfp@e8000: failed to match any schema with compatible: ['fsl,t1040-sfp']
arch/powerpc/boot/dts/fsl/kmcent2.dtb: /soc@ffe000000/serdes@ea000: failed to match any schema with compatible: ['fsl,t1040-serdes']
arch/powerpc/boot/dts/fsl/kmcent2.dtb: /soc@ffe000000/global-utilities@fc000: failed to match any schema with compatible: ['fsl,t1040-scfg']
arch/powerpc/boot/dts/fsl/kmcent2.dtb: serial@11c500 (fsl,ns16550): Unevaluated properties are not allowed ('cell-index', 'device_type' were unexpected)
from schema $id: http://devicetree.org/schemas/serial/8250.yaml#
arch/powerpc/boot/dts/fsl/kmcent2.dtb: serial@11c600 (fsl,ns16550): Unevaluated properties are not allowed ('cell-index', 'device_type' were unexpected)
from schema $id: http://devicetree.org/schemas/serial/8250.yaml#
arch/powerpc/boot/dts/fsl/kmcent2.dtb: gpio@130000 (fsl,qoriq-gpio): compatible: 'oneOf' conditional failed, one must be fixed:
['fsl,qoriq-gpio'] is too short
--
arch/powerpc/boot/dts/fsl/kmcoge4.dtb: pic@40000 (fsl,mpic): 'clock-frequency' does not match any of the regexes: '^pinctrl-[0-9]+$'
from schema $id: http://devicetree.org/schemas/interrupt-controller/chrp,open-pic.yaml#
arch/powerpc/boot/dts/fsl/kmcoge4.dtb: pic@40000 (fsl,mpic): #interrupt-cells: 2 was expected
from schema $id: http://devicetree.org/schemas/interrupt-controller/chrp,open-pic.yaml#
arch/powerpc/boot/dts/fsl/kmcoge4.dtb: pic@40000 (fsl,mpic): device_type:0: 'open-pci' was expected
from schema $id: http://devicetree.org/schemas/interrupt-controller/chrp,open-pic.yaml#
arch/powerpc/boot/dts/fsl/kmcoge4.dtb: /soc@ffe000000/timer@41100: failed to match any schema with compatible: ['fsl,mpic-global-timer']
arch/powerpc/boot/dts/fsl/kmcoge4.dtb: /soc@ffe000000/timer@42100: failed to match any schema with compatible: ['fsl,mpic-global-timer']
arch/powerpc/boot/dts/fsl/kmcoge4.dtb: /soc@ffe000000/global-utilities@e0000: failed to match any schema with compatible: ['fsl,qoriq-device-config-1.0']
arch/powerpc/boot/dts/fsl/kmcoge4.dtb: /soc@ffe000000/global-utilities@e0e00: failed to match any schema with compatible: ['fsl,qoriq-pin-control-1.0']
>> arch/powerpc/boot/dts/fsl/kmcoge4.dtb: global-utilities@e2000 (fsl,qoriq-rcpm-1.0): $nodename:0: 'global-utilities@e2000' does not match '^(power-controller|power-domain|performance-domain)([@-].*)?$'
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
>> arch/powerpc/boot/dts/fsl/kmcoge4.dtb: global-utilities@e2000 (fsl,qoriq-rcpm-1.0): '#power-domain-cells' is a required property
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
arch/powerpc/boot/dts/fsl/kmcoge4.dtb: global-utilities@e2000 (fsl,qoriq-rcpm-1.0): compatible: 'oneOf' conditional failed, one must be fixed:
['fsl,qoriq-rcpm-1.0'] is too short
'fsl,qoriq-rcpm-1.0' is not one of ['fsl,p2041-rcpm', 'fsl,p3041-rcpm', 'fsl,p4080-rcpm', 'fsl,p5020-rcpm', 'fsl,p5040-rcpm']
'fsl,qoriq-rcpm-1.0' is not one of ['fsl,b4420-rcpm', 'fsl,b4860-rcpm', 'fsl,t4240-rcpm']
'fsl,qoriq-rcpm-1.0' is not one of ['fsl,t1040-rcpm']
'fsl,qoriq-rcpm-1.0' is not one of ['fsl,ls1012a-rcpm', 'fsl,ls1021a-rcpm', 'fsl,ls1028a-rcpm', 'fsl,ls1043a-rcpm', 'fsl,ls1046a-rcpm', 'fsl,ls1088a-rcpm', 'fsl,ls208xa-rcpm', 'fsl,lx2160a-rcpm']
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
>> arch/powerpc/boot/dts/fsl/kmcoge4.dtb: global-utilities@e2000 (fsl,qoriq-rcpm-1.0): Unevaluated properties are not allowed ('#sleep-cells', 'compatible' were unexpected)
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
arch/powerpc/boot/dts/fsl/kmcoge4.dtb: /soc@ffe000000/sfp@e8000: failed to match any schema with compatible: ['fsl,p2041-sfp', 'fsl,qoriq-sfp-1.0']
arch/powerpc/boot/dts/fsl/kmcoge4.dtb: /soc@ffe000000/sfp@e8000: failed to match any schema with compatible: ['fsl,p2041-sfp', 'fsl,qoriq-sfp-1.0']
arch/powerpc/boot/dts/fsl/kmcoge4.dtb: /soc@ffe000000/serdes@ea000: failed to match any schema with compatible: ['fsl,p2041-serdes']
arch/powerpc/boot/dts/fsl/kmcoge4.dtb: dma@100300 (fsl,eloplus-dma): 'fsl,iommu-parent', 'fsl,liodn-reg' do not match any of the regexes: '^dma-channel@[0-9a-f]+$', '^pinctrl-[0-9]+$'
from schema $id: http://devicetree.org/schemas/dma/fsl,eloplus-dma.yaml#
arch/powerpc/boot/dts/fsl/kmcoge4.dtb: dma@100300 (fsl,eloplus-dma): dma-channel@0:compatible: 'oneOf' conditional failed, one must be fixed:
['fsl,eloplus-dma-channel'] is too short
'fsl,eloplus-dma-channel' is not one of ['fsl,mpc8540-dma-channel', 'fsl,mpc8541-dma-channel', 'fsl,mpc8548-dma-channel', 'fsl,mpc8555-dma-channel', 'fsl,mpc8560-dma-channel', 'fsl,mpc8572-dma-channel']
'fsl,ssi-dma-channel' was expected
--
arch/powerpc/boot/dts/fsl/oca4080.dtb: pic@40000 (fsl,mpic): 'clock-frequency' does not match any of the regexes: '^pinctrl-[0-9]+$'
from schema $id: http://devicetree.org/schemas/interrupt-controller/chrp,open-pic.yaml#
arch/powerpc/boot/dts/fsl/oca4080.dtb: pic@40000 (fsl,mpic): #interrupt-cells: 2 was expected
from schema $id: http://devicetree.org/schemas/interrupt-controller/chrp,open-pic.yaml#
arch/powerpc/boot/dts/fsl/oca4080.dtb: pic@40000 (fsl,mpic): device_type:0: 'open-pci' was expected
from schema $id: http://devicetree.org/schemas/interrupt-controller/chrp,open-pic.yaml#
arch/powerpc/boot/dts/fsl/oca4080.dtb: /soc@ffe000000/timer@41100: failed to match any schema with compatible: ['fsl,mpic-global-timer']
arch/powerpc/boot/dts/fsl/oca4080.dtb: /soc@ffe000000/timer@42100: failed to match any schema with compatible: ['fsl,mpic-global-timer']
arch/powerpc/boot/dts/fsl/oca4080.dtb: /soc@ffe000000/global-utilities@e0000: failed to match any schema with compatible: ['fsl,qoriq-device-config-1.0']
arch/powerpc/boot/dts/fsl/oca4080.dtb: /soc@ffe000000/global-utilities@e0e00: failed to match any schema with compatible: ['fsl,qoriq-pin-control-1.0']
>> arch/powerpc/boot/dts/fsl/oca4080.dtb: global-utilities@e2000 (fsl,qoriq-rcpm-1.0): $nodename:0: 'global-utilities@e2000' does not match '^(power-controller|power-domain|performance-domain)([@-].*)?$'
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
>> arch/powerpc/boot/dts/fsl/oca4080.dtb: global-utilities@e2000 (fsl,qoriq-rcpm-1.0): '#power-domain-cells' is a required property
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
arch/powerpc/boot/dts/fsl/oca4080.dtb: global-utilities@e2000 (fsl,qoriq-rcpm-1.0): compatible: 'oneOf' conditional failed, one must be fixed:
['fsl,qoriq-rcpm-1.0'] is too short
'fsl,qoriq-rcpm-1.0' is not one of ['fsl,p2041-rcpm', 'fsl,p3041-rcpm', 'fsl,p4080-rcpm', 'fsl,p5020-rcpm', 'fsl,p5040-rcpm']
'fsl,qoriq-rcpm-1.0' is not one of ['fsl,b4420-rcpm', 'fsl,b4860-rcpm', 'fsl,t4240-rcpm']
'fsl,qoriq-rcpm-1.0' is not one of ['fsl,t1040-rcpm']
'fsl,qoriq-rcpm-1.0' is not one of ['fsl,ls1012a-rcpm', 'fsl,ls1021a-rcpm', 'fsl,ls1028a-rcpm', 'fsl,ls1043a-rcpm', 'fsl,ls1046a-rcpm', 'fsl,ls1088a-rcpm', 'fsl,ls208xa-rcpm', 'fsl,lx2160a-rcpm']
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
>> arch/powerpc/boot/dts/fsl/oca4080.dtb: global-utilities@e2000 (fsl,qoriq-rcpm-1.0): Unevaluated properties are not allowed ('#sleep-cells', 'compatible' were unexpected)
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
arch/powerpc/boot/dts/fsl/oca4080.dtb: /soc@ffe000000/sfp@e8000: failed to match any schema with compatible: ['fsl,p4080-sfp', 'fsl,qoriq-sfp-1.0']
arch/powerpc/boot/dts/fsl/oca4080.dtb: /soc@ffe000000/sfp@e8000: failed to match any schema with compatible: ['fsl,p4080-sfp', 'fsl,qoriq-sfp-1.0']
arch/powerpc/boot/dts/fsl/oca4080.dtb: /soc@ffe000000/serdes@ea000: failed to match any schema with compatible: ['fsl,p4080-serdes']
arch/powerpc/boot/dts/fsl/oca4080.dtb: dma@100300 (fsl,eloplus-dma): 'fsl,iommu-parent', 'fsl,liodn-reg' do not match any of the regexes: '^dma-channel@[0-9a-f]+$', '^pinctrl-[0-9]+$'
from schema $id: http://devicetree.org/schemas/dma/fsl,eloplus-dma.yaml#
arch/powerpc/boot/dts/fsl/oca4080.dtb: dma@100300 (fsl,eloplus-dma): dma-channel@0:compatible: 'oneOf' conditional failed, one must be fixed:
['fsl,eloplus-dma-channel'] is too short
'fsl,eloplus-dma-channel' is not one of ['fsl,mpc8540-dma-channel', 'fsl,mpc8541-dma-channel', 'fsl,mpc8548-dma-channel', 'fsl,mpc8555-dma-channel', 'fsl,mpc8560-dma-channel', 'fsl,mpc8572-dma-channel']
'fsl,ssi-dma-channel' was expected
--
arch/powerpc/boot/dts/fsl/p2041rdb.dtb: pic@40000 (fsl,mpic): 'clock-frequency' does not match any of the regexes: '^pinctrl-[0-9]+$'
from schema $id: http://devicetree.org/schemas/interrupt-controller/chrp,open-pic.yaml#
arch/powerpc/boot/dts/fsl/p2041rdb.dtb: pic@40000 (fsl,mpic): #interrupt-cells: 2 was expected
from schema $id: http://devicetree.org/schemas/interrupt-controller/chrp,open-pic.yaml#
arch/powerpc/boot/dts/fsl/p2041rdb.dtb: pic@40000 (fsl,mpic): device_type:0: 'open-pci' was expected
from schema $id: http://devicetree.org/schemas/interrupt-controller/chrp,open-pic.yaml#
arch/powerpc/boot/dts/fsl/p2041rdb.dtb: /soc@ffe000000/timer@41100: failed to match any schema with compatible: ['fsl,mpic-global-timer']
arch/powerpc/boot/dts/fsl/p2041rdb.dtb: /soc@ffe000000/timer@42100: failed to match any schema with compatible: ['fsl,mpic-global-timer']
arch/powerpc/boot/dts/fsl/p2041rdb.dtb: /soc@ffe000000/global-utilities@e0000: failed to match any schema with compatible: ['fsl,qoriq-device-config-1.0']
arch/powerpc/boot/dts/fsl/p2041rdb.dtb: /soc@ffe000000/global-utilities@e0e00: failed to match any schema with compatible: ['fsl,qoriq-pin-control-1.0']
>> arch/powerpc/boot/dts/fsl/p2041rdb.dtb: global-utilities@e2000 (fsl,qoriq-rcpm-1.0): $nodename:0: 'global-utilities@e2000' does not match '^(power-controller|power-domain|performance-domain)([@-].*)?$'
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
>> arch/powerpc/boot/dts/fsl/p2041rdb.dtb: global-utilities@e2000 (fsl,qoriq-rcpm-1.0): '#power-domain-cells' is a required property
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
arch/powerpc/boot/dts/fsl/p2041rdb.dtb: global-utilities@e2000 (fsl,qoriq-rcpm-1.0): compatible: 'oneOf' conditional failed, one must be fixed:
['fsl,qoriq-rcpm-1.0'] is too short
'fsl,qoriq-rcpm-1.0' is not one of ['fsl,p2041-rcpm', 'fsl,p3041-rcpm', 'fsl,p4080-rcpm', 'fsl,p5020-rcpm', 'fsl,p5040-rcpm']
'fsl,qoriq-rcpm-1.0' is not one of ['fsl,b4420-rcpm', 'fsl,b4860-rcpm', 'fsl,t4240-rcpm']
'fsl,qoriq-rcpm-1.0' is not one of ['fsl,t1040-rcpm']
'fsl,qoriq-rcpm-1.0' is not one of ['fsl,ls1012a-rcpm', 'fsl,ls1021a-rcpm', 'fsl,ls1028a-rcpm', 'fsl,ls1043a-rcpm', 'fsl,ls1046a-rcpm', 'fsl,ls1088a-rcpm', 'fsl,ls208xa-rcpm', 'fsl,lx2160a-rcpm']
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
>> arch/powerpc/boot/dts/fsl/p2041rdb.dtb: global-utilities@e2000 (fsl,qoriq-rcpm-1.0): Unevaluated properties are not allowed ('#sleep-cells', 'compatible' were unexpected)
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
arch/powerpc/boot/dts/fsl/p2041rdb.dtb: /soc@ffe000000/sfp@e8000: failed to match any schema with compatible: ['fsl,p2041-sfp', 'fsl,qoriq-sfp-1.0']
arch/powerpc/boot/dts/fsl/p2041rdb.dtb: /soc@ffe000000/sfp@e8000: failed to match any schema with compatible: ['fsl,p2041-sfp', 'fsl,qoriq-sfp-1.0']
arch/powerpc/boot/dts/fsl/p2041rdb.dtb: /soc@ffe000000/serdes@ea000: failed to match any schema with compatible: ['fsl,p2041-serdes']
arch/powerpc/boot/dts/fsl/p2041rdb.dtb: dma@100300 (fsl,eloplus-dma): 'fsl,iommu-parent', 'fsl,liodn-reg' do not match any of the regexes: '^dma-channel@[0-9a-f]+$', '^pinctrl-[0-9]+$'
from schema $id: http://devicetree.org/schemas/dma/fsl,eloplus-dma.yaml#
arch/powerpc/boot/dts/fsl/p2041rdb.dtb: dma@100300 (fsl,eloplus-dma): dma-channel@0:compatible: 'oneOf' conditional failed, one must be fixed:
['fsl,eloplus-dma-channel'] is too short
'fsl,eloplus-dma-channel' is not one of ['fsl,mpc8540-dma-channel', 'fsl,mpc8541-dma-channel', 'fsl,mpc8548-dma-channel', 'fsl,mpc8555-dma-channel', 'fsl,mpc8560-dma-channel', 'fsl,mpc8572-dma-channel']
'fsl,ssi-dma-channel' was expected
--
arch/powerpc/boot/dts/fsl/p3041ds.dtb: pic@40000 (fsl,mpic): 'clock-frequency' does not match any of the regexes: '^pinctrl-[0-9]+$'
from schema $id: http://devicetree.org/schemas/interrupt-controller/chrp,open-pic.yaml#
arch/powerpc/boot/dts/fsl/p3041ds.dtb: pic@40000 (fsl,mpic): #interrupt-cells: 2 was expected
from schema $id: http://devicetree.org/schemas/interrupt-controller/chrp,open-pic.yaml#
arch/powerpc/boot/dts/fsl/p3041ds.dtb: pic@40000 (fsl,mpic): device_type:0: 'open-pci' was expected
from schema $id: http://devicetree.org/schemas/interrupt-controller/chrp,open-pic.yaml#
arch/powerpc/boot/dts/fsl/p3041ds.dtb: /soc@ffe000000/timer@41100: failed to match any schema with compatible: ['fsl,mpic-global-timer']
arch/powerpc/boot/dts/fsl/p3041ds.dtb: /soc@ffe000000/timer@42100: failed to match any schema with compatible: ['fsl,mpic-global-timer']
arch/powerpc/boot/dts/fsl/p3041ds.dtb: /soc@ffe000000/global-utilities@e0000: failed to match any schema with compatible: ['fsl,qoriq-device-config-1.0']
arch/powerpc/boot/dts/fsl/p3041ds.dtb: /soc@ffe000000/global-utilities@e0e00: failed to match any schema with compatible: ['fsl,qoriq-pin-control-1.0']
>> arch/powerpc/boot/dts/fsl/p3041ds.dtb: global-utilities@e2000 (fsl,qoriq-rcpm-1.0): $nodename:0: 'global-utilities@e2000' does not match '^(power-controller|power-domain|performance-domain)([@-].*)?$'
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
>> arch/powerpc/boot/dts/fsl/p3041ds.dtb: global-utilities@e2000 (fsl,qoriq-rcpm-1.0): '#power-domain-cells' is a required property
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
arch/powerpc/boot/dts/fsl/p3041ds.dtb: global-utilities@e2000 (fsl,qoriq-rcpm-1.0): compatible: 'oneOf' conditional failed, one must be fixed:
['fsl,qoriq-rcpm-1.0'] is too short
'fsl,qoriq-rcpm-1.0' is not one of ['fsl,p2041-rcpm', 'fsl,p3041-rcpm', 'fsl,p4080-rcpm', 'fsl,p5020-rcpm', 'fsl,p5040-rcpm']
'fsl,qoriq-rcpm-1.0' is not one of ['fsl,b4420-rcpm', 'fsl,b4860-rcpm', 'fsl,t4240-rcpm']
'fsl,qoriq-rcpm-1.0' is not one of ['fsl,t1040-rcpm']
'fsl,qoriq-rcpm-1.0' is not one of ['fsl,ls1012a-rcpm', 'fsl,ls1021a-rcpm', 'fsl,ls1028a-rcpm', 'fsl,ls1043a-rcpm', 'fsl,ls1046a-rcpm', 'fsl,ls1088a-rcpm', 'fsl,ls208xa-rcpm', 'fsl,lx2160a-rcpm']
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
>> arch/powerpc/boot/dts/fsl/p3041ds.dtb: global-utilities@e2000 (fsl,qoriq-rcpm-1.0): Unevaluated properties are not allowed ('#sleep-cells', 'compatible' were unexpected)
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
arch/powerpc/boot/dts/fsl/p3041ds.dtb: /soc@ffe000000/sfp@e8000: failed to match any schema with compatible: ['fsl,p3041-sfp', 'fsl,qoriq-sfp-1.0']
arch/powerpc/boot/dts/fsl/p3041ds.dtb: /soc@ffe000000/sfp@e8000: failed to match any schema with compatible: ['fsl,p3041-sfp', 'fsl,qoriq-sfp-1.0']
arch/powerpc/boot/dts/fsl/p3041ds.dtb: /soc@ffe000000/serdes@ea000: failed to match any schema with compatible: ['fsl,p3041-serdes']
arch/powerpc/boot/dts/fsl/p3041ds.dtb: dma@100300 (fsl,eloplus-dma): 'fsl,iommu-parent', 'fsl,liodn-reg' do not match any of the regexes: '^dma-channel@[0-9a-f]+$', '^pinctrl-[0-9]+$'
from schema $id: http://devicetree.org/schemas/dma/fsl,eloplus-dma.yaml#
arch/powerpc/boot/dts/fsl/p3041ds.dtb: dma@100300 (fsl,eloplus-dma): dma-channel@0:compatible: 'oneOf' conditional failed, one must be fixed:
['fsl,eloplus-dma-channel'] is too short
'fsl,eloplus-dma-channel' is not one of ['fsl,mpc8540-dma-channel', 'fsl,mpc8541-dma-channel', 'fsl,mpc8548-dma-channel', 'fsl,mpc8555-dma-channel', 'fsl,mpc8560-dma-channel', 'fsl,mpc8572-dma-channel']
'fsl,ssi-dma-channel' was expected
--
arch/powerpc/boot/dts/fsl/p4080ds.dtb: pic@40000 (fsl,mpic): 'clock-frequency' does not match any of the regexes: '^pinctrl-[0-9]+$'
from schema $id: http://devicetree.org/schemas/interrupt-controller/chrp,open-pic.yaml#
arch/powerpc/boot/dts/fsl/p4080ds.dtb: pic@40000 (fsl,mpic): #interrupt-cells: 2 was expected
from schema $id: http://devicetree.org/schemas/interrupt-controller/chrp,open-pic.yaml#
arch/powerpc/boot/dts/fsl/p4080ds.dtb: pic@40000 (fsl,mpic): device_type:0: 'open-pci' was expected
from schema $id: http://devicetree.org/schemas/interrupt-controller/chrp,open-pic.yaml#
arch/powerpc/boot/dts/fsl/p4080ds.dtb: /soc@ffe000000/timer@41100: failed to match any schema with compatible: ['fsl,mpic-global-timer']
arch/powerpc/boot/dts/fsl/p4080ds.dtb: /soc@ffe000000/timer@42100: failed to match any schema with compatible: ['fsl,mpic-global-timer']
arch/powerpc/boot/dts/fsl/p4080ds.dtb: /soc@ffe000000/global-utilities@e0000: failed to match any schema with compatible: ['fsl,qoriq-device-config-1.0']
arch/powerpc/boot/dts/fsl/p4080ds.dtb: /soc@ffe000000/global-utilities@e0e00: failed to match any schema with compatible: ['fsl,qoriq-pin-control-1.0']
>> arch/powerpc/boot/dts/fsl/p4080ds.dtb: global-utilities@e2000 (fsl,qoriq-rcpm-1.0): $nodename:0: 'global-utilities@e2000' does not match '^(power-controller|power-domain|performance-domain)([@-].*)?$'
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
>> arch/powerpc/boot/dts/fsl/p4080ds.dtb: global-utilities@e2000 (fsl,qoriq-rcpm-1.0): '#power-domain-cells' is a required property
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
arch/powerpc/boot/dts/fsl/p4080ds.dtb: global-utilities@e2000 (fsl,qoriq-rcpm-1.0): compatible: 'oneOf' conditional failed, one must be fixed:
['fsl,qoriq-rcpm-1.0'] is too short
'fsl,qoriq-rcpm-1.0' is not one of ['fsl,p2041-rcpm', 'fsl,p3041-rcpm', 'fsl,p4080-rcpm', 'fsl,p5020-rcpm', 'fsl,p5040-rcpm']
'fsl,qoriq-rcpm-1.0' is not one of ['fsl,b4420-rcpm', 'fsl,b4860-rcpm', 'fsl,t4240-rcpm']
'fsl,qoriq-rcpm-1.0' is not one of ['fsl,t1040-rcpm']
'fsl,qoriq-rcpm-1.0' is not one of ['fsl,ls1012a-rcpm', 'fsl,ls1021a-rcpm', 'fsl,ls1028a-rcpm', 'fsl,ls1043a-rcpm', 'fsl,ls1046a-rcpm', 'fsl,ls1088a-rcpm', 'fsl,ls208xa-rcpm', 'fsl,lx2160a-rcpm']
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
>> arch/powerpc/boot/dts/fsl/p4080ds.dtb: global-utilities@e2000 (fsl,qoriq-rcpm-1.0): Unevaluated properties are not allowed ('#sleep-cells', 'compatible' were unexpected)
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
arch/powerpc/boot/dts/fsl/p4080ds.dtb: /soc@ffe000000/sfp@e8000: failed to match any schema with compatible: ['fsl,p4080-sfp', 'fsl,qoriq-sfp-1.0']
arch/powerpc/boot/dts/fsl/p4080ds.dtb: /soc@ffe000000/sfp@e8000: failed to match any schema with compatible: ['fsl,p4080-sfp', 'fsl,qoriq-sfp-1.0']
arch/powerpc/boot/dts/fsl/p4080ds.dtb: /soc@ffe000000/serdes@ea000: failed to match any schema with compatible: ['fsl,p4080-serdes']
arch/powerpc/boot/dts/fsl/p4080ds.dtb: dma@100300 (fsl,eloplus-dma): 'fsl,iommu-parent', 'fsl,liodn-reg' do not match any of the regexes: '^dma-channel@[0-9a-f]+$', '^pinctrl-[0-9]+$'
from schema $id: http://devicetree.org/schemas/dma/fsl,eloplus-dma.yaml#
arch/powerpc/boot/dts/fsl/p4080ds.dtb: dma@100300 (fsl,eloplus-dma): dma-channel@0:compatible: 'oneOf' conditional failed, one must be fixed:
['fsl,eloplus-dma-channel'] is too short
'fsl,eloplus-dma-channel' is not one of ['fsl,mpc8540-dma-channel', 'fsl,mpc8541-dma-channel', 'fsl,mpc8548-dma-channel', 'fsl,mpc8555-dma-channel', 'fsl,mpc8560-dma-channel', 'fsl,mpc8572-dma-channel']
'fsl,ssi-dma-channel' was expected
--
arch/powerpc/boot/dts/fsl/p5020ds.dtb: pic@40000 (fsl,mpic): 'clock-frequency' does not match any of the regexes: '^pinctrl-[0-9]+$'
from schema $id: http://devicetree.org/schemas/interrupt-controller/chrp,open-pic.yaml#
arch/powerpc/boot/dts/fsl/p5020ds.dtb: pic@40000 (fsl,mpic): #interrupt-cells: 2 was expected
from schema $id: http://devicetree.org/schemas/interrupt-controller/chrp,open-pic.yaml#
arch/powerpc/boot/dts/fsl/p5020ds.dtb: pic@40000 (fsl,mpic): device_type:0: 'open-pci' was expected
from schema $id: http://devicetree.org/schemas/interrupt-controller/chrp,open-pic.yaml#
arch/powerpc/boot/dts/fsl/p5020ds.dtb: /soc@ffe000000/timer@41100: failed to match any schema with compatible: ['fsl,mpic-global-timer']
arch/powerpc/boot/dts/fsl/p5020ds.dtb: /soc@ffe000000/timer@42100: failed to match any schema with compatible: ['fsl,mpic-global-timer']
arch/powerpc/boot/dts/fsl/p5020ds.dtb: /soc@ffe000000/global-utilities@e0000: failed to match any schema with compatible: ['fsl,qoriq-device-config-1.0']
arch/powerpc/boot/dts/fsl/p5020ds.dtb: /soc@ffe000000/global-utilities@e0e00: failed to match any schema with compatible: ['fsl,qoriq-pin-control-1.0']
>> arch/powerpc/boot/dts/fsl/p5020ds.dtb: global-utilities@e2000 (fsl,qoriq-rcpm-1.0): $nodename:0: 'global-utilities@e2000' does not match '^(power-controller|power-domain|performance-domain)([@-].*)?$'
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
>> arch/powerpc/boot/dts/fsl/p5020ds.dtb: global-utilities@e2000 (fsl,qoriq-rcpm-1.0): '#power-domain-cells' is a required property
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
arch/powerpc/boot/dts/fsl/p5020ds.dtb: global-utilities@e2000 (fsl,qoriq-rcpm-1.0): compatible: 'oneOf' conditional failed, one must be fixed:
['fsl,qoriq-rcpm-1.0'] is too short
'fsl,qoriq-rcpm-1.0' is not one of ['fsl,p2041-rcpm', 'fsl,p3041-rcpm', 'fsl,p4080-rcpm', 'fsl,p5020-rcpm', 'fsl,p5040-rcpm']
'fsl,qoriq-rcpm-1.0' is not one of ['fsl,b4420-rcpm', 'fsl,b4860-rcpm', 'fsl,t4240-rcpm']
'fsl,qoriq-rcpm-1.0' is not one of ['fsl,t1040-rcpm']
'fsl,qoriq-rcpm-1.0' is not one of ['fsl,ls1012a-rcpm', 'fsl,ls1021a-rcpm', 'fsl,ls1028a-rcpm', 'fsl,ls1043a-rcpm', 'fsl,ls1046a-rcpm', 'fsl,ls1088a-rcpm', 'fsl,ls208xa-rcpm', 'fsl,lx2160a-rcpm']
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
>> arch/powerpc/boot/dts/fsl/p5020ds.dtb: global-utilities@e2000 (fsl,qoriq-rcpm-1.0): Unevaluated properties are not allowed ('#sleep-cells', 'compatible' were unexpected)
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
arch/powerpc/boot/dts/fsl/p5020ds.dtb: /soc@ffe000000/sfp@e8000: failed to match any schema with compatible: ['fsl,p5020-sfp', 'fsl,qoriq-sfp-1.0']
arch/powerpc/boot/dts/fsl/p5020ds.dtb: /soc@ffe000000/sfp@e8000: failed to match any schema with compatible: ['fsl,p5020-sfp', 'fsl,qoriq-sfp-1.0']
arch/powerpc/boot/dts/fsl/p5020ds.dtb: /soc@ffe000000/serdes@ea000: failed to match any schema with compatible: ['fsl,p5020-serdes']
arch/powerpc/boot/dts/fsl/p5020ds.dtb: dma@100300 (fsl,eloplus-dma): 'fsl,iommu-parent', 'fsl,liodn-reg' do not match any of the regexes: '^dma-channel@[0-9a-f]+$', '^pinctrl-[0-9]+$'
from schema $id: http://devicetree.org/schemas/dma/fsl,eloplus-dma.yaml#
arch/powerpc/boot/dts/fsl/p5020ds.dtb: dma@100300 (fsl,eloplus-dma): dma-channel@0:compatible: 'oneOf' conditional failed, one must be fixed:
['fsl,eloplus-dma-channel'] is too short
'fsl,eloplus-dma-channel' is not one of ['fsl,mpc8540-dma-channel', 'fsl,mpc8541-dma-channel', 'fsl,mpc8548-dma-channel', 'fsl,mpc8555-dma-channel', 'fsl,mpc8560-dma-channel', 'fsl,mpc8572-dma-channel']
'fsl,ssi-dma-channel' was expected
--
arch/powerpc/boot/dts/fsl/p5040ds.dtb: pic@40000 (fsl,mpic): #interrupt-cells: 2 was expected
from schema $id: http://devicetree.org/schemas/interrupt-controller/chrp,open-pic.yaml#
arch/powerpc/boot/dts/fsl/p5040ds.dtb: pic@40000 (fsl,mpic): device_type:0: 'open-pci' was expected
from schema $id: http://devicetree.org/schemas/interrupt-controller/chrp,open-pic.yaml#
arch/powerpc/boot/dts/fsl/p5040ds.dtb: /soc@ffe000000/timer@41100: failed to match any schema with compatible: ['fsl,mpic-global-timer']
arch/powerpc/boot/dts/fsl/p5040ds.dtb: /soc@ffe000000/timer@42100: failed to match any schema with compatible: ['fsl,mpic-global-timer']
arch/powerpc/boot/dts/fsl/p5040ds.dtb: /soc@ffe000000/global-utilities@e0000: failed to match any schema with compatible: ['fsl,p5040-device-config', 'fsl,qoriq-device-config-1.0']
arch/powerpc/boot/dts/fsl/p5040ds.dtb: /soc@ffe000000/global-utilities@e0000: failed to match any schema with compatible: ['fsl,p5040-device-config', 'fsl,qoriq-device-config-1.0']
arch/powerpc/boot/dts/fsl/p5040ds.dtb: /soc@ffe000000/global-utilities@e0e00: failed to match any schema with compatible: ['fsl,p5040-pin-control', 'fsl,qoriq-pin-control-1.0']
arch/powerpc/boot/dts/fsl/p5040ds.dtb: /soc@ffe000000/global-utilities@e0e00: failed to match any schema with compatible: ['fsl,p5040-pin-control', 'fsl,qoriq-pin-control-1.0']
>> arch/powerpc/boot/dts/fsl/p5040ds.dtb: global-utilities@e2000 (fsl,p5040-rcpm): $nodename:0: 'global-utilities@e2000' does not match '^(power-controller|power-domain|performance-domain)([@-].*)?$'
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
>> arch/powerpc/boot/dts/fsl/p5040ds.dtb: global-utilities@e2000 (fsl,p5040-rcpm): '#power-domain-cells' is a required property
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
>> arch/powerpc/boot/dts/fsl/p5040ds.dtb: global-utilities@e2000 (fsl,p5040-rcpm): Unevaluated properties are not allowed ('#sleep-cells' was unexpected)
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
arch/powerpc/boot/dts/fsl/p5040ds.dtb: /soc@ffe000000/sfp@e8000: failed to match any schema with compatible: ['fsl,p5040-sfp', 'fsl,qoriq-sfp-1.0']
arch/powerpc/boot/dts/fsl/p5040ds.dtb: /soc@ffe000000/sfp@e8000: failed to match any schema with compatible: ['fsl,p5040-sfp', 'fsl,qoriq-sfp-1.0']
arch/powerpc/boot/dts/fsl/p5040ds.dtb: /soc@ffe000000/serdes@ea000: failed to match any schema with compatible: ['fsl,p5040-serdes']
arch/powerpc/boot/dts/fsl/p5040ds.dtb: dma@100300 (fsl,eloplus-dma): 'fsl,iommu-parent', 'fsl,liodn-reg' do not match any of the regexes: '^dma-channel@[0-9a-f]+$', '^pinctrl-[0-9]+$'
from schema $id: http://devicetree.org/schemas/dma/fsl,eloplus-dma.yaml#
arch/powerpc/boot/dts/fsl/p5040ds.dtb: dma@100300 (fsl,eloplus-dma): dma-channel@0:compatible: 'oneOf' conditional failed, one must be fixed:
['fsl,eloplus-dma-channel'] is too short
'fsl,eloplus-dma-channel' is not one of ['fsl,mpc8540-dma-channel', 'fsl,mpc8541-dma-channel', 'fsl,mpc8548-dma-channel', 'fsl,mpc8555-dma-channel', 'fsl,mpc8560-dma-channel', 'fsl,mpc8572-dma-channel']
'fsl,ssi-dma-channel' was expected
--
arch/powerpc/boot/dts/fsl/t1023rdb.dtb: pic@40000 (fsl,mpic): 'clock-frequency' does not match any of the regexes: '^pinctrl-[0-9]+$'
from schema $id: http://devicetree.org/schemas/interrupt-controller/chrp,open-pic.yaml#
arch/powerpc/boot/dts/fsl/t1023rdb.dtb: pic@40000 (fsl,mpic): #interrupt-cells: 2 was expected
from schema $id: http://devicetree.org/schemas/interrupt-controller/chrp,open-pic.yaml#
arch/powerpc/boot/dts/fsl/t1023rdb.dtb: pic@40000 (fsl,mpic): device_type:0: 'open-pci' was expected
from schema $id: http://devicetree.org/schemas/interrupt-controller/chrp,open-pic.yaml#
arch/powerpc/boot/dts/fsl/t1023rdb.dtb: /soc@ffe000000/timer@41100: failed to match any schema with compatible: ['fsl,mpic-global-timer']
arch/powerpc/boot/dts/fsl/t1023rdb.dtb: /soc@ffe000000/timer@42100: failed to match any schema with compatible: ['fsl,mpic-global-timer']
arch/powerpc/boot/dts/fsl/t1023rdb.dtb: /soc@ffe000000/global-utilities@e0000: failed to match any schema with compatible: ['fsl,t1023-device-config', 'fsl,qoriq-device-config-2.0']
arch/powerpc/boot/dts/fsl/t1023rdb.dtb: /soc@ffe000000/global-utilities@e0000: failed to match any schema with compatible: ['fsl,t1023-device-config', 'fsl,qoriq-device-config-2.0']
>> arch/powerpc/boot/dts/fsl/t1023rdb.dtb: global-utilities@e2000 (fsl,t1023-rcpm): $nodename:0: 'global-utilities@e2000' does not match '^(power-controller|power-domain|performance-domain)([@-].*)?$'
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
>> arch/powerpc/boot/dts/fsl/t1023rdb.dtb: global-utilities@e2000 (fsl,t1023-rcpm): '#power-domain-cells' is a required property
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
arch/powerpc/boot/dts/fsl/t1023rdb.dtb: global-utilities@e2000 (fsl,t1023-rcpm): compatible: 'oneOf' conditional failed, one must be fixed:
'fsl,t1023-rcpm' is not one of ['fsl,p2041-rcpm', 'fsl,p3041-rcpm', 'fsl,p4080-rcpm', 'fsl,p5020-rcpm', 'fsl,p5040-rcpm']
'fsl,t1023-rcpm' is not one of ['fsl,b4420-rcpm', 'fsl,b4860-rcpm', 'fsl,t4240-rcpm']
'fsl,t1023-rcpm' is not one of ['fsl,t1040-rcpm']
'fsl,t1023-rcpm' is not one of ['fsl,ls1012a-rcpm', 'fsl,ls1021a-rcpm', 'fsl,ls1028a-rcpm', 'fsl,ls1043a-rcpm', 'fsl,ls1046a-rcpm', 'fsl,ls1088a-rcpm', 'fsl,ls208xa-rcpm', 'fsl,lx2160a-rcpm']
'fsl,qoriq-rcpm-1.0' was expected
'fsl,qoriq-rcpm-2.0' was expected
'fsl,qoriq-rcpm-2.1+' was expected
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
>> arch/powerpc/boot/dts/fsl/t1023rdb.dtb: global-utilities@e2000 (fsl,t1023-rcpm): Unevaluated properties are not allowed ('compatible' was unexpected)
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
arch/powerpc/boot/dts/fsl/t1023rdb.dtb: /soc@ffe000000/global-utilities@e2000: failed to match any schema with compatible: ['fsl,t1023-rcpm', 'fsl,qoriq-rcpm-2.1']
arch/powerpc/boot/dts/fsl/t1023rdb.dtb: /soc@ffe000000/serdes@ea000: failed to match any schema with compatible: ['fsl,t1023-serdes']
arch/powerpc/boot/dts/fsl/t1023rdb.dtb: /soc@ffe000000/global-utilities@fc000: failed to match any schema with compatible: ['fsl,t1023-scfg']
arch/powerpc/boot/dts/fsl/t1023rdb.dtb: sdhc@114000 (fsl,t1023-esdhc): $nodename:0: 'sdhc@114000' does not match '^mmc(@.*)?$'
from schema $id: http://devicetree.org/schemas/mmc/fsl,esdhc.yaml#
arch/powerpc/boot/dts/fsl/t1023rdb.dtb: sdhc@114000 (fsl,t1023-esdhc): compatible:0: 'fsl,t1023-esdhc' is not one of ['fsl,mpc8536-esdhc', 'fsl,mpc8378-esdhc', 'fsl,p2020-esdhc', 'fsl,p4080-esdhc', 'fsl,t1040-esdhc', 'fsl,t4240-esdhc', 'fsl,ls1012a-esdhc', 'fsl,ls1021a-esdhc', 'fsl,ls1028a-esdhc', 'fsl,ls1088a-esdhc', 'fsl,ls1043a-esdhc', 'fsl,ls1046a-esdhc', 'fsl,ls2080a-esdhc']
from schema $id: http://devicetree.org/schemas/mmc/fsl,esdhc.yaml#
arch/powerpc/boot/dts/fsl/t1023rdb.dtb: sdhc@114000 (fsl,t1023-esdhc): Unevaluated properties are not allowed ('compatible', 'fsl,iommu-parent', 'fsl,liodn-reg', 'no-1-8-v' were unexpected)
from schema $id: http://devicetree.org/schemas/mmc/fsl,esdhc.yaml#
--
arch/powerpc/boot/dts/fsl/t1024qds.dtb: pic@40000 (fsl,mpic): 'clock-frequency' does not match any of the regexes: '^pinctrl-[0-9]+$'
from schema $id: http://devicetree.org/schemas/interrupt-controller/chrp,open-pic.yaml#
arch/powerpc/boot/dts/fsl/t1024qds.dtb: pic@40000 (fsl,mpic): #interrupt-cells: 2 was expected
from schema $id: http://devicetree.org/schemas/interrupt-controller/chrp,open-pic.yaml#
arch/powerpc/boot/dts/fsl/t1024qds.dtb: pic@40000 (fsl,mpic): device_type:0: 'open-pci' was expected
from schema $id: http://devicetree.org/schemas/interrupt-controller/chrp,open-pic.yaml#
arch/powerpc/boot/dts/fsl/t1024qds.dtb: /soc@ffe000000/timer@41100: failed to match any schema with compatible: ['fsl,mpic-global-timer']
arch/powerpc/boot/dts/fsl/t1024qds.dtb: /soc@ffe000000/timer@42100: failed to match any schema with compatible: ['fsl,mpic-global-timer']
arch/powerpc/boot/dts/fsl/t1024qds.dtb: /soc@ffe000000/global-utilities@e0000: failed to match any schema with compatible: ['fsl,t1023-device-config', 'fsl,qoriq-device-config-2.0']
arch/powerpc/boot/dts/fsl/t1024qds.dtb: /soc@ffe000000/global-utilities@e0000: failed to match any schema with compatible: ['fsl,t1023-device-config', 'fsl,qoriq-device-config-2.0']
>> arch/powerpc/boot/dts/fsl/t1024qds.dtb: global-utilities@e2000 (fsl,t1023-rcpm): $nodename:0: 'global-utilities@e2000' does not match '^(power-controller|power-domain|performance-domain)([@-].*)?$'
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
>> arch/powerpc/boot/dts/fsl/t1024qds.dtb: global-utilities@e2000 (fsl,t1023-rcpm): '#power-domain-cells' is a required property
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
arch/powerpc/boot/dts/fsl/t1024qds.dtb: global-utilities@e2000 (fsl,t1023-rcpm): compatible: 'oneOf' conditional failed, one must be fixed:
'fsl,t1023-rcpm' is not one of ['fsl,p2041-rcpm', 'fsl,p3041-rcpm', 'fsl,p4080-rcpm', 'fsl,p5020-rcpm', 'fsl,p5040-rcpm']
'fsl,t1023-rcpm' is not one of ['fsl,b4420-rcpm', 'fsl,b4860-rcpm', 'fsl,t4240-rcpm']
'fsl,t1023-rcpm' is not one of ['fsl,t1040-rcpm']
'fsl,t1023-rcpm' is not one of ['fsl,ls1012a-rcpm', 'fsl,ls1021a-rcpm', 'fsl,ls1028a-rcpm', 'fsl,ls1043a-rcpm', 'fsl,ls1046a-rcpm', 'fsl,ls1088a-rcpm', 'fsl,ls208xa-rcpm', 'fsl,lx2160a-rcpm']
'fsl,qoriq-rcpm-1.0' was expected
'fsl,qoriq-rcpm-2.0' was expected
'fsl,qoriq-rcpm-2.1+' was expected
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
>> arch/powerpc/boot/dts/fsl/t1024qds.dtb: global-utilities@e2000 (fsl,t1023-rcpm): Unevaluated properties are not allowed ('compatible' was unexpected)
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
arch/powerpc/boot/dts/fsl/t1024qds.dtb: /soc@ffe000000/global-utilities@e2000: failed to match any schema with compatible: ['fsl,t1023-rcpm', 'fsl,qoriq-rcpm-2.1']
arch/powerpc/boot/dts/fsl/t1024qds.dtb: /soc@ffe000000/serdes@ea000: failed to match any schema with compatible: ['fsl,t1023-serdes']
arch/powerpc/boot/dts/fsl/t1024qds.dtb: /soc@ffe000000/global-utilities@fc000: failed to match any schema with compatible: ['fsl,t1023-scfg']
arch/powerpc/boot/dts/fsl/t1024qds.dtb: sdhc@114000 (fsl,t1023-esdhc): $nodename:0: 'sdhc@114000' does not match '^mmc(@.*)?$'
from schema $id: http://devicetree.org/schemas/mmc/fsl,esdhc.yaml#
arch/powerpc/boot/dts/fsl/t1024qds.dtb: sdhc@114000 (fsl,t1023-esdhc): compatible:0: 'fsl,t1023-esdhc' is not one of ['fsl,mpc8536-esdhc', 'fsl,mpc8378-esdhc', 'fsl,p2020-esdhc', 'fsl,p4080-esdhc', 'fsl,t1040-esdhc', 'fsl,t4240-esdhc', 'fsl,ls1012a-esdhc', 'fsl,ls1021a-esdhc', 'fsl,ls1028a-esdhc', 'fsl,ls1088a-esdhc', 'fsl,ls1043a-esdhc', 'fsl,ls1046a-esdhc', 'fsl,ls2080a-esdhc']
from schema $id: http://devicetree.org/schemas/mmc/fsl,esdhc.yaml#
arch/powerpc/boot/dts/fsl/t1024qds.dtb: sdhc@114000 (fsl,t1023-esdhc): Unevaluated properties are not allowed ('compatible', 'fsl,iommu-parent', 'fsl,liodn-reg', 'no-1-8-v' were unexpected)
from schema $id: http://devicetree.org/schemas/mmc/fsl,esdhc.yaml#
--
arch/powerpc/boot/dts/fsl/t1024rdb.dtb: pic@40000 (fsl,mpic): 'clock-frequency' does not match any of the regexes: '^pinctrl-[0-9]+$'
from schema $id: http://devicetree.org/schemas/interrupt-controller/chrp,open-pic.yaml#
arch/powerpc/boot/dts/fsl/t1024rdb.dtb: pic@40000 (fsl,mpic): #interrupt-cells: 2 was expected
from schema $id: http://devicetree.org/schemas/interrupt-controller/chrp,open-pic.yaml#
arch/powerpc/boot/dts/fsl/t1024rdb.dtb: pic@40000 (fsl,mpic): device_type:0: 'open-pci' was expected
from schema $id: http://devicetree.org/schemas/interrupt-controller/chrp,open-pic.yaml#
arch/powerpc/boot/dts/fsl/t1024rdb.dtb: /soc@ffe000000/timer@41100: failed to match any schema with compatible: ['fsl,mpic-global-timer']
arch/powerpc/boot/dts/fsl/t1024rdb.dtb: /soc@ffe000000/timer@42100: failed to match any schema with compatible: ['fsl,mpic-global-timer']
arch/powerpc/boot/dts/fsl/t1024rdb.dtb: /soc@ffe000000/global-utilities@e0000: failed to match any schema with compatible: ['fsl,t1023-device-config', 'fsl,qoriq-device-config-2.0']
arch/powerpc/boot/dts/fsl/t1024rdb.dtb: /soc@ffe000000/global-utilities@e0000: failed to match any schema with compatible: ['fsl,t1023-device-config', 'fsl,qoriq-device-config-2.0']
>> arch/powerpc/boot/dts/fsl/t1024rdb.dtb: global-utilities@e2000 (fsl,t1023-rcpm): $nodename:0: 'global-utilities@e2000' does not match '^(power-controller|power-domain|performance-domain)([@-].*)?$'
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
>> arch/powerpc/boot/dts/fsl/t1024rdb.dtb: global-utilities@e2000 (fsl,t1023-rcpm): '#power-domain-cells' is a required property
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
arch/powerpc/boot/dts/fsl/t1024rdb.dtb: global-utilities@e2000 (fsl,t1023-rcpm): compatible: 'oneOf' conditional failed, one must be fixed:
'fsl,t1023-rcpm' is not one of ['fsl,p2041-rcpm', 'fsl,p3041-rcpm', 'fsl,p4080-rcpm', 'fsl,p5020-rcpm', 'fsl,p5040-rcpm']
'fsl,t1023-rcpm' is not one of ['fsl,b4420-rcpm', 'fsl,b4860-rcpm', 'fsl,t4240-rcpm']
'fsl,t1023-rcpm' is not one of ['fsl,t1040-rcpm']
'fsl,t1023-rcpm' is not one of ['fsl,ls1012a-rcpm', 'fsl,ls1021a-rcpm', 'fsl,ls1028a-rcpm', 'fsl,ls1043a-rcpm', 'fsl,ls1046a-rcpm', 'fsl,ls1088a-rcpm', 'fsl,ls208xa-rcpm', 'fsl,lx2160a-rcpm']
'fsl,qoriq-rcpm-1.0' was expected
'fsl,qoriq-rcpm-2.0' was expected
'fsl,qoriq-rcpm-2.1+' was expected
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
>> arch/powerpc/boot/dts/fsl/t1024rdb.dtb: global-utilities@e2000 (fsl,t1023-rcpm): Unevaluated properties are not allowed ('compatible' was unexpected)
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
arch/powerpc/boot/dts/fsl/t1024rdb.dtb: /soc@ffe000000/global-utilities@e2000: failed to match any schema with compatible: ['fsl,t1023-rcpm', 'fsl,qoriq-rcpm-2.1']
arch/powerpc/boot/dts/fsl/t1024rdb.dtb: /soc@ffe000000/serdes@ea000: failed to match any schema with compatible: ['fsl,t1023-serdes']
arch/powerpc/boot/dts/fsl/t1024rdb.dtb: /soc@ffe000000/global-utilities@fc000: failed to match any schema with compatible: ['fsl,t1023-scfg']
arch/powerpc/boot/dts/fsl/t1024rdb.dtb: sdhc@114000 (fsl,t1023-esdhc): $nodename:0: 'sdhc@114000' does not match '^mmc(@.*)?$'
from schema $id: http://devicetree.org/schemas/mmc/fsl,esdhc.yaml#
arch/powerpc/boot/dts/fsl/t1024rdb.dtb: sdhc@114000 (fsl,t1023-esdhc): compatible:0: 'fsl,t1023-esdhc' is not one of ['fsl,mpc8536-esdhc', 'fsl,mpc8378-esdhc', 'fsl,p2020-esdhc', 'fsl,p4080-esdhc', 'fsl,t1040-esdhc', 'fsl,t4240-esdhc', 'fsl,ls1012a-esdhc', 'fsl,ls1021a-esdhc', 'fsl,ls1028a-esdhc', 'fsl,ls1088a-esdhc', 'fsl,ls1043a-esdhc', 'fsl,ls1046a-esdhc', 'fsl,ls2080a-esdhc']
from schema $id: http://devicetree.org/schemas/mmc/fsl,esdhc.yaml#
arch/powerpc/boot/dts/fsl/t1024rdb.dtb: sdhc@114000 (fsl,t1023-esdhc): Unevaluated properties are not allowed ('compatible', 'fsl,iommu-parent', 'fsl,liodn-reg', 'no-1-8-v' were unexpected)
from schema $id: http://devicetree.org/schemas/mmc/fsl,esdhc.yaml#
--
arch/powerpc/boot/dts/fsl/t1040d4rdb.dtb: pic@40000 (fsl,mpic): 'clock-frequency' does not match any of the regexes: '^pinctrl-[0-9]+$'
from schema $id: http://devicetree.org/schemas/interrupt-controller/chrp,open-pic.yaml#
arch/powerpc/boot/dts/fsl/t1040d4rdb.dtb: pic@40000 (fsl,mpic): #interrupt-cells: 2 was expected
from schema $id: http://devicetree.org/schemas/interrupt-controller/chrp,open-pic.yaml#
arch/powerpc/boot/dts/fsl/t1040d4rdb.dtb: pic@40000 (fsl,mpic): device_type:0: 'open-pci' was expected
from schema $id: http://devicetree.org/schemas/interrupt-controller/chrp,open-pic.yaml#
arch/powerpc/boot/dts/fsl/t1040d4rdb.dtb: /soc@ffe000000/timer@41100: failed to match any schema with compatible: ['fsl,mpic-global-timer']
arch/powerpc/boot/dts/fsl/t1040d4rdb.dtb: /soc@ffe000000/timer@42100: failed to match any schema with compatible: ['fsl,mpic-global-timer']
arch/powerpc/boot/dts/fsl/t1040d4rdb.dtb: /soc@ffe000000/global-utilities@e0000: failed to match any schema with compatible: ['fsl,t1040-device-config', 'fsl,qoriq-device-config-2.0']
arch/powerpc/boot/dts/fsl/t1040d4rdb.dtb: /soc@ffe000000/global-utilities@e0000: failed to match any schema with compatible: ['fsl,t1040-device-config', 'fsl,qoriq-device-config-2.0']
>> arch/powerpc/boot/dts/fsl/t1040d4rdb.dtb: global-utilities@e2000 (fsl,t1040-rcpm): $nodename:0: 'global-utilities@e2000' does not match '^(power-controller|power-domain|performance-domain)([@-].*)?$'
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
>> arch/powerpc/boot/dts/fsl/t1040d4rdb.dtb: global-utilities@e2000 (fsl,t1040-rcpm): '#power-domain-cells' is a required property
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
arch/powerpc/boot/dts/fsl/t1040d4rdb.dtb: /soc@ffe000000/sfp@e8000: failed to match any schema with compatible: ['fsl,t1040-sfp']
arch/powerpc/boot/dts/fsl/t1040d4rdb.dtb: /soc@ffe000000/serdes@ea000: failed to match any schema with compatible: ['fsl,t1040-serdes']
arch/powerpc/boot/dts/fsl/t1040d4rdb.dtb: /soc@ffe000000/global-utilities@fc000: failed to match any schema with compatible: ['fsl,t1040-scfg']
arch/powerpc/boot/dts/fsl/t1040d4rdb.dtb: sdhc@114000 (fsl,t1040-esdhc): $nodename:0: 'sdhc@114000' does not match '^mmc(@.*)?$'
from schema $id: http://devicetree.org/schemas/mmc/fsl,esdhc.yaml#
arch/powerpc/boot/dts/fsl/t1040d4rdb.dtb: sdhc@114000 (fsl,t1040-esdhc): Unevaluated properties are not allowed ('fsl,iommu-parent', 'fsl,liodn-reg' were unexpected)
from schema $id: http://devicetree.org/schemas/mmc/fsl,esdhc.yaml#
arch/powerpc/boot/dts/fsl/t1040d4rdb.dtb: i2c@119000 (fsl-i2c): compatible: 'oneOf' conditional failed, one must be fixed:
['fsl-i2c'] is too short
--
arch/powerpc/boot/dts/fsl/t1040qds.dtb: pic@40000 (fsl,mpic): 'clock-frequency' does not match any of the regexes: '^pinctrl-[0-9]+$'
from schema $id: http://devicetree.org/schemas/interrupt-controller/chrp,open-pic.yaml#
arch/powerpc/boot/dts/fsl/t1040qds.dtb: pic@40000 (fsl,mpic): #interrupt-cells: 2 was expected
from schema $id: http://devicetree.org/schemas/interrupt-controller/chrp,open-pic.yaml#
arch/powerpc/boot/dts/fsl/t1040qds.dtb: pic@40000 (fsl,mpic): device_type:0: 'open-pci' was expected
from schema $id: http://devicetree.org/schemas/interrupt-controller/chrp,open-pic.yaml#
arch/powerpc/boot/dts/fsl/t1040qds.dtb: /soc@ffe000000/timer@41100: failed to match any schema with compatible: ['fsl,mpic-global-timer']
arch/powerpc/boot/dts/fsl/t1040qds.dtb: /soc@ffe000000/timer@42100: failed to match any schema with compatible: ['fsl,mpic-global-timer']
arch/powerpc/boot/dts/fsl/t1040qds.dtb: /soc@ffe000000/global-utilities@e0000: failed to match any schema with compatible: ['fsl,t1040-device-config', 'fsl,qoriq-device-config-2.0']
arch/powerpc/boot/dts/fsl/t1040qds.dtb: /soc@ffe000000/global-utilities@e0000: failed to match any schema with compatible: ['fsl,t1040-device-config', 'fsl,qoriq-device-config-2.0']
>> arch/powerpc/boot/dts/fsl/t1040qds.dtb: global-utilities@e2000 (fsl,t1040-rcpm): $nodename:0: 'global-utilities@e2000' does not match '^(power-controller|power-domain|performance-domain)([@-].*)?$'
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
>> arch/powerpc/boot/dts/fsl/t1040qds.dtb: global-utilities@e2000 (fsl,t1040-rcpm): '#power-domain-cells' is a required property
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
arch/powerpc/boot/dts/fsl/t1040qds.dtb: /soc@ffe000000/sfp@e8000: failed to match any schema with compatible: ['fsl,t1040-sfp']
arch/powerpc/boot/dts/fsl/t1040qds.dtb: /soc@ffe000000/serdes@ea000: failed to match any schema with compatible: ['fsl,t1040-serdes']
arch/powerpc/boot/dts/fsl/t1040qds.dtb: /soc@ffe000000/global-utilities@fc000: failed to match any schema with compatible: ['fsl,t1040-scfg']
arch/powerpc/boot/dts/fsl/t1040qds.dtb: sdhc@114000 (fsl,t1040-esdhc): $nodename:0: 'sdhc@114000' does not match '^mmc(@.*)?$'
from schema $id: http://devicetree.org/schemas/mmc/fsl,esdhc.yaml#
arch/powerpc/boot/dts/fsl/t1040qds.dtb: sdhc@114000 (fsl,t1040-esdhc): Unevaluated properties are not allowed ('fsl,iommu-parent', 'fsl,liodn-reg' were unexpected)
from schema $id: http://devicetree.org/schemas/mmc/fsl,esdhc.yaml#
arch/powerpc/boot/dts/fsl/t1040qds.dtb: i2c@118100 (fsl-i2c): compatible: 'oneOf' conditional failed, one must be fixed:
['fsl-i2c'] is too short
--
arch/powerpc/boot/dts/fsl/t1040rdb-rev-a.dtb: pic@40000 (fsl,mpic): 'clock-frequency' does not match any of the regexes: '^pinctrl-[0-9]+$'
from schema $id: http://devicetree.org/schemas/interrupt-controller/chrp,open-pic.yaml#
arch/powerpc/boot/dts/fsl/t1040rdb-rev-a.dtb: pic@40000 (fsl,mpic): #interrupt-cells: 2 was expected
from schema $id: http://devicetree.org/schemas/interrupt-controller/chrp,open-pic.yaml#
arch/powerpc/boot/dts/fsl/t1040rdb-rev-a.dtb: pic@40000 (fsl,mpic): device_type:0: 'open-pci' was expected
from schema $id: http://devicetree.org/schemas/interrupt-controller/chrp,open-pic.yaml#
arch/powerpc/boot/dts/fsl/t1040rdb-rev-a.dtb: /soc@ffe000000/timer@41100: failed to match any schema with compatible: ['fsl,mpic-global-timer']
arch/powerpc/boot/dts/fsl/t1040rdb-rev-a.dtb: /soc@ffe000000/timer@42100: failed to match any schema with compatible: ['fsl,mpic-global-timer']
arch/powerpc/boot/dts/fsl/t1040rdb-rev-a.dtb: /soc@ffe000000/global-utilities@e0000: failed to match any schema with compatible: ['fsl,t1040-device-config', 'fsl,qoriq-device-config-2.0']
arch/powerpc/boot/dts/fsl/t1040rdb-rev-a.dtb: /soc@ffe000000/global-utilities@e0000: failed to match any schema with compatible: ['fsl,t1040-device-config', 'fsl,qoriq-device-config-2.0']
>> arch/powerpc/boot/dts/fsl/t1040rdb-rev-a.dtb: global-utilities@e2000 (fsl,t1040-rcpm): $nodename:0: 'global-utilities@e2000' does not match '^(power-controller|power-domain|performance-domain)([@-].*)?$'
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
>> arch/powerpc/boot/dts/fsl/t1040rdb-rev-a.dtb: global-utilities@e2000 (fsl,t1040-rcpm): '#power-domain-cells' is a required property
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
arch/powerpc/boot/dts/fsl/t1040rdb-rev-a.dtb: /soc@ffe000000/sfp@e8000: failed to match any schema with compatible: ['fsl,t1040-sfp']
arch/powerpc/boot/dts/fsl/t1040rdb-rev-a.dtb: /soc@ffe000000/serdes@ea000: failed to match any schema with compatible: ['fsl,t1040-serdes']
arch/powerpc/boot/dts/fsl/t1040rdb-rev-a.dtb: /soc@ffe000000/global-utilities@fc000: failed to match any schema with compatible: ['fsl,t1040-scfg']
arch/powerpc/boot/dts/fsl/t1040rdb-rev-a.dtb: sdhc@114000 (fsl,t1040-esdhc): $nodename:0: 'sdhc@114000' does not match '^mmc(@.*)?$'
from schema $id: http://devicetree.org/schemas/mmc/fsl,esdhc.yaml#
arch/powerpc/boot/dts/fsl/t1040rdb-rev-a.dtb: sdhc@114000 (fsl,t1040-esdhc): Unevaluated properties are not allowed ('fsl,iommu-parent', 'fsl,liodn-reg' were unexpected)
from schema $id: http://devicetree.org/schemas/mmc/fsl,esdhc.yaml#
arch/powerpc/boot/dts/fsl/t1040rdb-rev-a.dtb: i2c@119000 (fsl-i2c): compatible: 'oneOf' conditional failed, one must be fixed:
['fsl-i2c'] is too short
--
arch/powerpc/boot/dts/fsl/t1040rdb.dtb: pic@40000 (fsl,mpic): 'clock-frequency' does not match any of the regexes: '^pinctrl-[0-9]+$'
from schema $id: http://devicetree.org/schemas/interrupt-controller/chrp,open-pic.yaml#
arch/powerpc/boot/dts/fsl/t1040rdb.dtb: pic@40000 (fsl,mpic): #interrupt-cells: 2 was expected
from schema $id: http://devicetree.org/schemas/interrupt-controller/chrp,open-pic.yaml#
arch/powerpc/boot/dts/fsl/t1040rdb.dtb: pic@40000 (fsl,mpic): device_type:0: 'open-pci' was expected
from schema $id: http://devicetree.org/schemas/interrupt-controller/chrp,open-pic.yaml#
arch/powerpc/boot/dts/fsl/t1040rdb.dtb: /soc@ffe000000/timer@41100: failed to match any schema with compatible: ['fsl,mpic-global-timer']
arch/powerpc/boot/dts/fsl/t1040rdb.dtb: /soc@ffe000000/timer@42100: failed to match any schema with compatible: ['fsl,mpic-global-timer']
arch/powerpc/boot/dts/fsl/t1040rdb.dtb: /soc@ffe000000/global-utilities@e0000: failed to match any schema with compatible: ['fsl,t1040-device-config', 'fsl,qoriq-device-config-2.0']
arch/powerpc/boot/dts/fsl/t1040rdb.dtb: /soc@ffe000000/global-utilities@e0000: failed to match any schema with compatible: ['fsl,t1040-device-config', 'fsl,qoriq-device-config-2.0']
>> arch/powerpc/boot/dts/fsl/t1040rdb.dtb: global-utilities@e2000 (fsl,t1040-rcpm): $nodename:0: 'global-utilities@e2000' does not match '^(power-controller|power-domain|performance-domain)([@-].*)?$'
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
>> arch/powerpc/boot/dts/fsl/t1040rdb.dtb: global-utilities@e2000 (fsl,t1040-rcpm): '#power-domain-cells' is a required property
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
arch/powerpc/boot/dts/fsl/t1040rdb.dtb: /soc@ffe000000/sfp@e8000: failed to match any schema with compatible: ['fsl,t1040-sfp']
arch/powerpc/boot/dts/fsl/t1040rdb.dtb: /soc@ffe000000/serdes@ea000: failed to match any schema with compatible: ['fsl,t1040-serdes']
arch/powerpc/boot/dts/fsl/t1040rdb.dtb: /soc@ffe000000/global-utilities@fc000: failed to match any schema with compatible: ['fsl,t1040-scfg']
arch/powerpc/boot/dts/fsl/t1040rdb.dtb: sdhc@114000 (fsl,t1040-esdhc): $nodename:0: 'sdhc@114000' does not match '^mmc(@.*)?$'
from schema $id: http://devicetree.org/schemas/mmc/fsl,esdhc.yaml#
arch/powerpc/boot/dts/fsl/t1040rdb.dtb: sdhc@114000 (fsl,t1040-esdhc): Unevaluated properties are not allowed ('fsl,iommu-parent', 'fsl,liodn-reg' were unexpected)
from schema $id: http://devicetree.org/schemas/mmc/fsl,esdhc.yaml#
arch/powerpc/boot/dts/fsl/t1040rdb.dtb: i2c@119000 (fsl-i2c): compatible: 'oneOf' conditional failed, one must be fixed:
['fsl-i2c'] is too short
--
arch/powerpc/boot/dts/fsl/t1042d4rdb.dtb: pic@40000 (fsl,mpic): 'clock-frequency' does not match any of the regexes: '^pinctrl-[0-9]+$'
from schema $id: http://devicetree.org/schemas/interrupt-controller/chrp,open-pic.yaml#
arch/powerpc/boot/dts/fsl/t1042d4rdb.dtb: pic@40000 (fsl,mpic): #interrupt-cells: 2 was expected
from schema $id: http://devicetree.org/schemas/interrupt-controller/chrp,open-pic.yaml#
arch/powerpc/boot/dts/fsl/t1042d4rdb.dtb: pic@40000 (fsl,mpic): device_type:0: 'open-pci' was expected
from schema $id: http://devicetree.org/schemas/interrupt-controller/chrp,open-pic.yaml#
arch/powerpc/boot/dts/fsl/t1042d4rdb.dtb: /soc@ffe000000/timer@41100: failed to match any schema with compatible: ['fsl,mpic-global-timer']
arch/powerpc/boot/dts/fsl/t1042d4rdb.dtb: /soc@ffe000000/timer@42100: failed to match any schema with compatible: ['fsl,mpic-global-timer']
arch/powerpc/boot/dts/fsl/t1042d4rdb.dtb: /soc@ffe000000/global-utilities@e0000: failed to match any schema with compatible: ['fsl,t1040-device-config', 'fsl,qoriq-device-config-2.0']
arch/powerpc/boot/dts/fsl/t1042d4rdb.dtb: /soc@ffe000000/global-utilities@e0000: failed to match any schema with compatible: ['fsl,t1040-device-config', 'fsl,qoriq-device-config-2.0']
>> arch/powerpc/boot/dts/fsl/t1042d4rdb.dtb: global-utilities@e2000 (fsl,t1040-rcpm): $nodename:0: 'global-utilities@e2000' does not match '^(power-controller|power-domain|performance-domain)([@-].*)?$'
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
>> arch/powerpc/boot/dts/fsl/t1042d4rdb.dtb: global-utilities@e2000 (fsl,t1040-rcpm): '#power-domain-cells' is a required property
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
arch/powerpc/boot/dts/fsl/t1042d4rdb.dtb: /soc@ffe000000/sfp@e8000: failed to match any schema with compatible: ['fsl,t1040-sfp']
arch/powerpc/boot/dts/fsl/t1042d4rdb.dtb: /soc@ffe000000/serdes@ea000: failed to match any schema with compatible: ['fsl,t1040-serdes']
arch/powerpc/boot/dts/fsl/t1042d4rdb.dtb: /soc@ffe000000/global-utilities@fc000: failed to match any schema with compatible: ['fsl,t1040-scfg']
arch/powerpc/boot/dts/fsl/t1042d4rdb.dtb: sdhc@114000 (fsl,t1040-esdhc): $nodename:0: 'sdhc@114000' does not match '^mmc(@.*)?$'
from schema $id: http://devicetree.org/schemas/mmc/fsl,esdhc.yaml#
arch/powerpc/boot/dts/fsl/t1042d4rdb.dtb: sdhc@114000 (fsl,t1040-esdhc): Unevaluated properties are not allowed ('fsl,iommu-parent', 'fsl,liodn-reg' were unexpected)
from schema $id: http://devicetree.org/schemas/mmc/fsl,esdhc.yaml#
arch/powerpc/boot/dts/fsl/t1042d4rdb.dtb: i2c@119000 (fsl-i2c): compatible: 'oneOf' conditional failed, one must be fixed:
['fsl-i2c'] is too short
--
arch/powerpc/boot/dts/fsl/t1042qds.dtb: pic@40000 (fsl,mpic): 'clock-frequency' does not match any of the regexes: '^pinctrl-[0-9]+$'
from schema $id: http://devicetree.org/schemas/interrupt-controller/chrp,open-pic.yaml#
arch/powerpc/boot/dts/fsl/t1042qds.dtb: pic@40000 (fsl,mpic): #interrupt-cells: 2 was expected
from schema $id: http://devicetree.org/schemas/interrupt-controller/chrp,open-pic.yaml#
arch/powerpc/boot/dts/fsl/t1042qds.dtb: pic@40000 (fsl,mpic): device_type:0: 'open-pci' was expected
from schema $id: http://devicetree.org/schemas/interrupt-controller/chrp,open-pic.yaml#
arch/powerpc/boot/dts/fsl/t1042qds.dtb: /soc@ffe000000/timer@41100: failed to match any schema with compatible: ['fsl,mpic-global-timer']
arch/powerpc/boot/dts/fsl/t1042qds.dtb: /soc@ffe000000/timer@42100: failed to match any schema with compatible: ['fsl,mpic-global-timer']
arch/powerpc/boot/dts/fsl/t1042qds.dtb: /soc@ffe000000/global-utilities@e0000: failed to match any schema with compatible: ['fsl,t1040-device-config', 'fsl,qoriq-device-config-2.0']
arch/powerpc/boot/dts/fsl/t1042qds.dtb: /soc@ffe000000/global-utilities@e0000: failed to match any schema with compatible: ['fsl,t1040-device-config', 'fsl,qoriq-device-config-2.0']
>> arch/powerpc/boot/dts/fsl/t1042qds.dtb: global-utilities@e2000 (fsl,t1040-rcpm): $nodename:0: 'global-utilities@e2000' does not match '^(power-controller|power-domain|performance-domain)([@-].*)?$'
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
>> arch/powerpc/boot/dts/fsl/t1042qds.dtb: global-utilities@e2000 (fsl,t1040-rcpm): '#power-domain-cells' is a required property
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
arch/powerpc/boot/dts/fsl/t1042qds.dtb: /soc@ffe000000/sfp@e8000: failed to match any schema with compatible: ['fsl,t1040-sfp']
arch/powerpc/boot/dts/fsl/t1042qds.dtb: /soc@ffe000000/serdes@ea000: failed to match any schema with compatible: ['fsl,t1040-serdes']
arch/powerpc/boot/dts/fsl/t1042qds.dtb: /soc@ffe000000/global-utilities@fc000: failed to match any schema with compatible: ['fsl,t1040-scfg']
arch/powerpc/boot/dts/fsl/t1042qds.dtb: sdhc@114000 (fsl,t1040-esdhc): $nodename:0: 'sdhc@114000' does not match '^mmc(@.*)?$'
from schema $id: http://devicetree.org/schemas/mmc/fsl,esdhc.yaml#
arch/powerpc/boot/dts/fsl/t1042qds.dtb: sdhc@114000 (fsl,t1040-esdhc): Unevaluated properties are not allowed ('fsl,iommu-parent', 'fsl,liodn-reg' were unexpected)
from schema $id: http://devicetree.org/schemas/mmc/fsl,esdhc.yaml#
arch/powerpc/boot/dts/fsl/t1042qds.dtb: i2c@118100 (fsl-i2c): compatible: 'oneOf' conditional failed, one must be fixed:
['fsl-i2c'] is too short
--
arch/powerpc/boot/dts/fsl/t1042rdb.dtb: pic@40000 (fsl,mpic): 'clock-frequency' does not match any of the regexes: '^pinctrl-[0-9]+$'
from schema $id: http://devicetree.org/schemas/interrupt-controller/chrp,open-pic.yaml#
arch/powerpc/boot/dts/fsl/t1042rdb.dtb: pic@40000 (fsl,mpic): #interrupt-cells: 2 was expected
from schema $id: http://devicetree.org/schemas/interrupt-controller/chrp,open-pic.yaml#
arch/powerpc/boot/dts/fsl/t1042rdb.dtb: pic@40000 (fsl,mpic): device_type:0: 'open-pci' was expected
from schema $id: http://devicetree.org/schemas/interrupt-controller/chrp,open-pic.yaml#
arch/powerpc/boot/dts/fsl/t1042rdb.dtb: /soc@ffe000000/timer@41100: failed to match any schema with compatible: ['fsl,mpic-global-timer']
arch/powerpc/boot/dts/fsl/t1042rdb.dtb: /soc@ffe000000/timer@42100: failed to match any schema with compatible: ['fsl,mpic-global-timer']
arch/powerpc/boot/dts/fsl/t1042rdb.dtb: /soc@ffe000000/global-utilities@e0000: failed to match any schema with compatible: ['fsl,t1040-device-config', 'fsl,qoriq-device-config-2.0']
arch/powerpc/boot/dts/fsl/t1042rdb.dtb: /soc@ffe000000/global-utilities@e0000: failed to match any schema with compatible: ['fsl,t1040-device-config', 'fsl,qoriq-device-config-2.0']
>> arch/powerpc/boot/dts/fsl/t1042rdb.dtb: global-utilities@e2000 (fsl,t1040-rcpm): $nodename:0: 'global-utilities@e2000' does not match '^(power-controller|power-domain|performance-domain)([@-].*)?$'
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
>> arch/powerpc/boot/dts/fsl/t1042rdb.dtb: global-utilities@e2000 (fsl,t1040-rcpm): '#power-domain-cells' is a required property
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
arch/powerpc/boot/dts/fsl/t1042rdb.dtb: /soc@ffe000000/sfp@e8000: failed to match any schema with compatible: ['fsl,t1040-sfp']
arch/powerpc/boot/dts/fsl/t1042rdb.dtb: /soc@ffe000000/serdes@ea000: failed to match any schema with compatible: ['fsl,t1040-serdes']
arch/powerpc/boot/dts/fsl/t1042rdb.dtb: /soc@ffe000000/global-utilities@fc000: failed to match any schema with compatible: ['fsl,t1040-scfg']
arch/powerpc/boot/dts/fsl/t1042rdb.dtb: sdhc@114000 (fsl,t1040-esdhc): $nodename:0: 'sdhc@114000' does not match '^mmc(@.*)?$'
from schema $id: http://devicetree.org/schemas/mmc/fsl,esdhc.yaml#
arch/powerpc/boot/dts/fsl/t1042rdb.dtb: sdhc@114000 (fsl,t1040-esdhc): Unevaluated properties are not allowed ('fsl,iommu-parent', 'fsl,liodn-reg' were unexpected)
from schema $id: http://devicetree.org/schemas/mmc/fsl,esdhc.yaml#
arch/powerpc/boot/dts/fsl/t1042rdb.dtb: i2c@119000 (fsl-i2c): compatible: 'oneOf' conditional failed, one must be fixed:
['fsl-i2c'] is too short
--
arch/powerpc/boot/dts/fsl/t1042rdb_pi.dtb: pic@40000 (fsl,mpic): 'clock-frequency' does not match any of the regexes: '^pinctrl-[0-9]+$'
from schema $id: http://devicetree.org/schemas/interrupt-controller/chrp,open-pic.yaml#
arch/powerpc/boot/dts/fsl/t1042rdb_pi.dtb: pic@40000 (fsl,mpic): #interrupt-cells: 2 was expected
from schema $id: http://devicetree.org/schemas/interrupt-controller/chrp,open-pic.yaml#
arch/powerpc/boot/dts/fsl/t1042rdb_pi.dtb: pic@40000 (fsl,mpic): device_type:0: 'open-pci' was expected
from schema $id: http://devicetree.org/schemas/interrupt-controller/chrp,open-pic.yaml#
arch/powerpc/boot/dts/fsl/t1042rdb_pi.dtb: /soc@ffe000000/timer@41100: failed to match any schema with compatible: ['fsl,mpic-global-timer']
arch/powerpc/boot/dts/fsl/t1042rdb_pi.dtb: /soc@ffe000000/timer@42100: failed to match any schema with compatible: ['fsl,mpic-global-timer']
arch/powerpc/boot/dts/fsl/t1042rdb_pi.dtb: /soc@ffe000000/global-utilities@e0000: failed to match any schema with compatible: ['fsl,t1040-device-config', 'fsl,qoriq-device-config-2.0']
arch/powerpc/boot/dts/fsl/t1042rdb_pi.dtb: /soc@ffe000000/global-utilities@e0000: failed to match any schema with compatible: ['fsl,t1040-device-config', 'fsl,qoriq-device-config-2.0']
>> arch/powerpc/boot/dts/fsl/t1042rdb_pi.dtb: global-utilities@e2000 (fsl,t1040-rcpm): $nodename:0: 'global-utilities@e2000' does not match '^(power-controller|power-domain|performance-domain)([@-].*)?$'
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
>> arch/powerpc/boot/dts/fsl/t1042rdb_pi.dtb: global-utilities@e2000 (fsl,t1040-rcpm): '#power-domain-cells' is a required property
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
arch/powerpc/boot/dts/fsl/t1042rdb_pi.dtb: /soc@ffe000000/sfp@e8000: failed to match any schema with compatible: ['fsl,t1040-sfp']
arch/powerpc/boot/dts/fsl/t1042rdb_pi.dtb: /soc@ffe000000/serdes@ea000: failed to match any schema with compatible: ['fsl,t1040-serdes']
arch/powerpc/boot/dts/fsl/t1042rdb_pi.dtb: /soc@ffe000000/global-utilities@fc000: failed to match any schema with compatible: ['fsl,t1040-scfg']
arch/powerpc/boot/dts/fsl/t1042rdb_pi.dtb: sdhc@114000 (fsl,t1040-esdhc): $nodename:0: 'sdhc@114000' does not match '^mmc(@.*)?$'
from schema $id: http://devicetree.org/schemas/mmc/fsl,esdhc.yaml#
arch/powerpc/boot/dts/fsl/t1042rdb_pi.dtb: sdhc@114000 (fsl,t1040-esdhc): Unevaluated properties are not allowed ('fsl,iommu-parent', 'fsl,liodn-reg' were unexpected)
from schema $id: http://devicetree.org/schemas/mmc/fsl,esdhc.yaml#
arch/powerpc/boot/dts/fsl/t1042rdb_pi.dtb: i2c@119000 (fsl-i2c): compatible: 'oneOf' conditional failed, one must be fixed:
['fsl-i2c'] is too short
--
arch/powerpc/boot/dts/fsl/t2080qds.dtb: pic@40000 (fsl,mpic): compatible: 'oneOf' conditional failed, one must be fixed:
['fsl,mpic'] is too short
'chrp,open-pic' was expected
from schema $id: http://devicetree.org/schemas/interrupt-controller/chrp,open-pic.yaml#
arch/powerpc/boot/dts/fsl/t2080qds.dtb: pic@40000 (fsl,mpic): device_type:0: 'open-pci' was expected
from schema $id: http://devicetree.org/schemas/interrupt-controller/chrp,open-pic.yaml#
arch/powerpc/boot/dts/fsl/t2080qds.dtb: /soc@ffe000000/timer@41100: failed to match any schema with compatible: ['fsl,mpic-global-timer']
arch/powerpc/boot/dts/fsl/t2080qds.dtb: /soc@ffe000000/timer@42100: failed to match any schema with compatible: ['fsl,mpic-global-timer']
arch/powerpc/boot/dts/fsl/t2080qds.dtb: /soc@ffe000000/global-utilities@e0000: failed to match any schema with compatible: ['fsl,t2080-device-config', 'fsl,qoriq-device-config-2.0']
arch/powerpc/boot/dts/fsl/t2080qds.dtb: /soc@ffe000000/global-utilities@e0000: failed to match any schema with compatible: ['fsl,t2080-device-config', 'fsl,qoriq-device-config-2.0']
>> arch/powerpc/boot/dts/fsl/t2080qds.dtb: global-utilities@e2000 (fsl,t2080-rcpm): $nodename:0: 'global-utilities@e2000' does not match '^(power-controller|power-domain|performance-domain)([@-].*)?$'
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
>> arch/powerpc/boot/dts/fsl/t2080qds.dtb: global-utilities@e2000 (fsl,t2080-rcpm): '#power-domain-cells' is a required property
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
arch/powerpc/boot/dts/fsl/t2080qds.dtb: global-utilities@e2000 (fsl,t2080-rcpm): compatible: 'oneOf' conditional failed, one must be fixed:
'fsl,t2080-rcpm' is not one of ['fsl,p2041-rcpm', 'fsl,p3041-rcpm', 'fsl,p4080-rcpm', 'fsl,p5020-rcpm', 'fsl,p5040-rcpm']
'fsl,t2080-rcpm' is not one of ['fsl,b4420-rcpm', 'fsl,b4860-rcpm', 'fsl,t4240-rcpm']
'fsl,t2080-rcpm' is not one of ['fsl,t1040-rcpm']
'fsl,t2080-rcpm' is not one of ['fsl,ls1012a-rcpm', 'fsl,ls1021a-rcpm', 'fsl,ls1028a-rcpm', 'fsl,ls1043a-rcpm', 'fsl,ls1046a-rcpm', 'fsl,ls1088a-rcpm', 'fsl,ls208xa-rcpm', 'fsl,lx2160a-rcpm']
'fsl,qoriq-rcpm-1.0' was expected
'fsl,qoriq-rcpm-2.1' was expected
'fsl,qoriq-rcpm-2.1+' was expected
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
>> arch/powerpc/boot/dts/fsl/t2080qds.dtb: global-utilities@e2000 (fsl,t2080-rcpm): Unevaluated properties are not allowed ('compatible' was unexpected)
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
arch/powerpc/boot/dts/fsl/t2080qds.dtb: /soc@ffe000000/global-utilities@e2000: failed to match any schema with compatible: ['fsl,t2080-rcpm', 'fsl,qoriq-rcpm-2.0']
arch/powerpc/boot/dts/fsl/t2080qds.dtb: /soc@ffe000000/sfp@e8000: failed to match any schema with compatible: ['fsl,t2080-sfp']
arch/powerpc/boot/dts/fsl/t2080qds.dtb: /soc@ffe000000/serdes@ea000: failed to match any schema with compatible: ['fsl,t2080-serdes']
arch/powerpc/boot/dts/fsl/t2080qds.dtb: dma@100300 (fsl,elo3-dma): 'fsl,iommu-parent', 'fsl,liodn-reg' do not match any of the regexes: '^dma-channel@[0-9a-f]+$', '^pinctrl-[0-9]+$'
from schema $id: http://devicetree.org/schemas/dma/fsl,elo3-dma.yaml#
arch/powerpc/boot/dts/fsl/t2080qds.dtb: dma@101300 (fsl,elo3-dma): 'fsl,iommu-parent', 'fsl,liodn-reg' do not match any of the regexes: '^dma-channel@[0-9a-f]+$', '^pinctrl-[0-9]+$'
from schema $id: http://devicetree.org/schemas/dma/fsl,elo3-dma.yaml#
arch/powerpc/boot/dts/fsl/t2080qds.dtb: dma@102300 (fsl,elo3-dma): 'fsl,iommu-parent', 'fsl,liodn-reg' do not match any of the regexes: '^dma-channel@[0-9a-f]+$', '^pinctrl-[0-9]+$'
from schema $id: http://devicetree.org/schemas/dma/fsl,elo3-dma.yaml#
--
arch/powerpc/boot/dts/fsl/t2080rdb.dtb: pic@40000 (fsl,mpic): compatible: 'oneOf' conditional failed, one must be fixed:
['fsl,mpic'] is too short
'chrp,open-pic' was expected
from schema $id: http://devicetree.org/schemas/interrupt-controller/chrp,open-pic.yaml#
arch/powerpc/boot/dts/fsl/t2080rdb.dtb: pic@40000 (fsl,mpic): device_type:0: 'open-pci' was expected
from schema $id: http://devicetree.org/schemas/interrupt-controller/chrp,open-pic.yaml#
arch/powerpc/boot/dts/fsl/t2080rdb.dtb: /soc@ffe000000/timer@41100: failed to match any schema with compatible: ['fsl,mpic-global-timer']
arch/powerpc/boot/dts/fsl/t2080rdb.dtb: /soc@ffe000000/timer@42100: failed to match any schema with compatible: ['fsl,mpic-global-timer']
arch/powerpc/boot/dts/fsl/t2080rdb.dtb: /soc@ffe000000/global-utilities@e0000: failed to match any schema with compatible: ['fsl,t2080-device-config', 'fsl,qoriq-device-config-2.0']
arch/powerpc/boot/dts/fsl/t2080rdb.dtb: /soc@ffe000000/global-utilities@e0000: failed to match any schema with compatible: ['fsl,t2080-device-config', 'fsl,qoriq-device-config-2.0']
>> arch/powerpc/boot/dts/fsl/t2080rdb.dtb: global-utilities@e2000 (fsl,t2080-rcpm): $nodename:0: 'global-utilities@e2000' does not match '^(power-controller|power-domain|performance-domain)([@-].*)?$'
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
>> arch/powerpc/boot/dts/fsl/t2080rdb.dtb: global-utilities@e2000 (fsl,t2080-rcpm): '#power-domain-cells' is a required property
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
arch/powerpc/boot/dts/fsl/t2080rdb.dtb: global-utilities@e2000 (fsl,t2080-rcpm): compatible: 'oneOf' conditional failed, one must be fixed:
'fsl,t2080-rcpm' is not one of ['fsl,p2041-rcpm', 'fsl,p3041-rcpm', 'fsl,p4080-rcpm', 'fsl,p5020-rcpm', 'fsl,p5040-rcpm']
'fsl,t2080-rcpm' is not one of ['fsl,b4420-rcpm', 'fsl,b4860-rcpm', 'fsl,t4240-rcpm']
'fsl,t2080-rcpm' is not one of ['fsl,t1040-rcpm']
'fsl,t2080-rcpm' is not one of ['fsl,ls1012a-rcpm', 'fsl,ls1021a-rcpm', 'fsl,ls1028a-rcpm', 'fsl,ls1043a-rcpm', 'fsl,ls1046a-rcpm', 'fsl,ls1088a-rcpm', 'fsl,ls208xa-rcpm', 'fsl,lx2160a-rcpm']
'fsl,qoriq-rcpm-1.0' was expected
'fsl,qoriq-rcpm-2.1' was expected
'fsl,qoriq-rcpm-2.1+' was expected
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
>> arch/powerpc/boot/dts/fsl/t2080rdb.dtb: global-utilities@e2000 (fsl,t2080-rcpm): Unevaluated properties are not allowed ('compatible' was unexpected)
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
arch/powerpc/boot/dts/fsl/t2080rdb.dtb: /soc@ffe000000/global-utilities@e2000: failed to match any schema with compatible: ['fsl,t2080-rcpm', 'fsl,qoriq-rcpm-2.0']
arch/powerpc/boot/dts/fsl/t2080rdb.dtb: /soc@ffe000000/sfp@e8000: failed to match any schema with compatible: ['fsl,t2080-sfp']
arch/powerpc/boot/dts/fsl/t2080rdb.dtb: /soc@ffe000000/serdes@ea000: failed to match any schema with compatible: ['fsl,t2080-serdes']
arch/powerpc/boot/dts/fsl/t2080rdb.dtb: dma@100300 (fsl,elo3-dma): 'fsl,iommu-parent', 'fsl,liodn-reg' do not match any of the regexes: '^dma-channel@[0-9a-f]+$', '^pinctrl-[0-9]+$'
from schema $id: http://devicetree.org/schemas/dma/fsl,elo3-dma.yaml#
arch/powerpc/boot/dts/fsl/t2080rdb.dtb: dma@101300 (fsl,elo3-dma): 'fsl,iommu-parent', 'fsl,liodn-reg' do not match any of the regexes: '^dma-channel@[0-9a-f]+$', '^pinctrl-[0-9]+$'
from schema $id: http://devicetree.org/schemas/dma/fsl,elo3-dma.yaml#
arch/powerpc/boot/dts/fsl/t2080rdb.dtb: dma@102300 (fsl,elo3-dma): 'fsl,iommu-parent', 'fsl,liodn-reg' do not match any of the regexes: '^dma-channel@[0-9a-f]+$', '^pinctrl-[0-9]+$'
from schema $id: http://devicetree.org/schemas/dma/fsl,elo3-dma.yaml#
--
arch/powerpc/boot/dts/fsl/t2081qds.dtb: pic@40000 (fsl,mpic): compatible: 'oneOf' conditional failed, one must be fixed:
['fsl,mpic'] is too short
'chrp,open-pic' was expected
from schema $id: http://devicetree.org/schemas/interrupt-controller/chrp,open-pic.yaml#
arch/powerpc/boot/dts/fsl/t2081qds.dtb: pic@40000 (fsl,mpic): device_type:0: 'open-pci' was expected
from schema $id: http://devicetree.org/schemas/interrupt-controller/chrp,open-pic.yaml#
arch/powerpc/boot/dts/fsl/t2081qds.dtb: /soc@ffe000000/timer@41100: failed to match any schema with compatible: ['fsl,mpic-global-timer']
arch/powerpc/boot/dts/fsl/t2081qds.dtb: /soc@ffe000000/timer@42100: failed to match any schema with compatible: ['fsl,mpic-global-timer']
arch/powerpc/boot/dts/fsl/t2081qds.dtb: /soc@ffe000000/global-utilities@e0000: failed to match any schema with compatible: ['fsl,t2080-device-config', 'fsl,qoriq-device-config-2.0']
arch/powerpc/boot/dts/fsl/t2081qds.dtb: /soc@ffe000000/global-utilities@e0000: failed to match any schema with compatible: ['fsl,t2080-device-config', 'fsl,qoriq-device-config-2.0']
>> arch/powerpc/boot/dts/fsl/t2081qds.dtb: global-utilities@e2000 (fsl,t2080-rcpm): $nodename:0: 'global-utilities@e2000' does not match '^(power-controller|power-domain|performance-domain)([@-].*)?$'
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
>> arch/powerpc/boot/dts/fsl/t2081qds.dtb: global-utilities@e2000 (fsl,t2080-rcpm): '#power-domain-cells' is a required property
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
arch/powerpc/boot/dts/fsl/t2081qds.dtb: global-utilities@e2000 (fsl,t2080-rcpm): compatible: 'oneOf' conditional failed, one must be fixed:
'fsl,t2080-rcpm' is not one of ['fsl,p2041-rcpm', 'fsl,p3041-rcpm', 'fsl,p4080-rcpm', 'fsl,p5020-rcpm', 'fsl,p5040-rcpm']
'fsl,t2080-rcpm' is not one of ['fsl,b4420-rcpm', 'fsl,b4860-rcpm', 'fsl,t4240-rcpm']
'fsl,t2080-rcpm' is not one of ['fsl,t1040-rcpm']
'fsl,t2080-rcpm' is not one of ['fsl,ls1012a-rcpm', 'fsl,ls1021a-rcpm', 'fsl,ls1028a-rcpm', 'fsl,ls1043a-rcpm', 'fsl,ls1046a-rcpm', 'fsl,ls1088a-rcpm', 'fsl,ls208xa-rcpm', 'fsl,lx2160a-rcpm']
'fsl,qoriq-rcpm-1.0' was expected
'fsl,qoriq-rcpm-2.1' was expected
'fsl,qoriq-rcpm-2.1+' was expected
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
>> arch/powerpc/boot/dts/fsl/t2081qds.dtb: global-utilities@e2000 (fsl,t2080-rcpm): Unevaluated properties are not allowed ('compatible' was unexpected)
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
arch/powerpc/boot/dts/fsl/t2081qds.dtb: /soc@ffe000000/global-utilities@e2000: failed to match any schema with compatible: ['fsl,t2080-rcpm', 'fsl,qoriq-rcpm-2.0']
arch/powerpc/boot/dts/fsl/t2081qds.dtb: /soc@ffe000000/sfp@e8000: failed to match any schema with compatible: ['fsl,t2080-sfp']
arch/powerpc/boot/dts/fsl/t2081qds.dtb: /soc@ffe000000/serdes@ea000: failed to match any schema with compatible: ['fsl,t2080-serdes']
arch/powerpc/boot/dts/fsl/t2081qds.dtb: dma@100300 (fsl,elo3-dma): 'fsl,iommu-parent', 'fsl,liodn-reg' do not match any of the regexes: '^dma-channel@[0-9a-f]+$', '^pinctrl-[0-9]+$'
from schema $id: http://devicetree.org/schemas/dma/fsl,elo3-dma.yaml#
arch/powerpc/boot/dts/fsl/t2081qds.dtb: dma@101300 (fsl,elo3-dma): 'fsl,iommu-parent', 'fsl,liodn-reg' do not match any of the regexes: '^dma-channel@[0-9a-f]+$', '^pinctrl-[0-9]+$'
from schema $id: http://devicetree.org/schemas/dma/fsl,elo3-dma.yaml#
arch/powerpc/boot/dts/fsl/t2081qds.dtb: dma@102300 (fsl,elo3-dma): 'fsl,iommu-parent', 'fsl,liodn-reg' do not match any of the regexes: '^dma-channel@[0-9a-f]+$', '^pinctrl-[0-9]+$'
from schema $id: http://devicetree.org/schemas/dma/fsl,elo3-dma.yaml#
--
arch/powerpc/boot/dts/fsl/t4240qds.dtb: pic@40000 (fsl,mpic): compatible: 'oneOf' conditional failed, one must be fixed:
['fsl,mpic'] is too short
'chrp,open-pic' was expected
from schema $id: http://devicetree.org/schemas/interrupt-controller/chrp,open-pic.yaml#
arch/powerpc/boot/dts/fsl/t4240qds.dtb: pic@40000 (fsl,mpic): device_type:0: 'open-pci' was expected
from schema $id: http://devicetree.org/schemas/interrupt-controller/chrp,open-pic.yaml#
arch/powerpc/boot/dts/fsl/t4240qds.dtb: /soc@ffe000000/timer@41100: failed to match any schema with compatible: ['fsl,mpic-global-timer']
arch/powerpc/boot/dts/fsl/t4240qds.dtb: /soc@ffe000000/timer@42100: failed to match any schema with compatible: ['fsl,mpic-global-timer']
arch/powerpc/boot/dts/fsl/t4240qds.dtb: /soc@ffe000000/global-utilities@e0000: failed to match any schema with compatible: ['fsl,t4240-device-config', 'fsl,qoriq-device-config-2.0']
arch/powerpc/boot/dts/fsl/t4240qds.dtb: /soc@ffe000000/global-utilities@e0000: failed to match any schema with compatible: ['fsl,t4240-device-config', 'fsl,qoriq-device-config-2.0']
>> arch/powerpc/boot/dts/fsl/t4240qds.dtb: global-utilities@e2000 (fsl,t4240-rcpm): $nodename:0: 'global-utilities@e2000' does not match '^(power-controller|power-domain|performance-domain)([@-].*)?$'
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
>> arch/powerpc/boot/dts/fsl/t4240qds.dtb: global-utilities@e2000 (fsl,t4240-rcpm): '#power-domain-cells' is a required property
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
arch/powerpc/boot/dts/fsl/t4240qds.dtb: /soc@ffe000000/sfp@e8000: failed to match any schema with compatible: ['fsl,t4240-sfp']
arch/powerpc/boot/dts/fsl/t4240qds.dtb: /soc@ffe000000/serdes@ea000: failed to match any schema with compatible: ['fsl,t4240-serdes']
arch/powerpc/boot/dts/fsl/t4240qds.dtb: i2c@118100 (fsl-i2c): compatible: 'oneOf' conditional failed, one must be fixed:
['fsl-i2c'] is too short
'fsl-i2c' is not one of ['mpc5200-i2c', 'fsl,mpc5200-i2c', 'fsl,mpc5121-i2c', 'fsl,mpc8313-i2c', 'fsl,mpc8543-i2c', 'fsl,mpc8544-i2c']
'fsl,mpc5200b-i2c' was expected
from schema $id: http://devicetree.org/schemas/i2c/i2c-mpc.yaml#
arch/powerpc/boot/dts/fsl/t4240qds.dtb: i2c@118100 (fsl-i2c): Unevaluated properties are not allowed ('cell-index', 'compatible', 'dfsrr' were unexpected)
from schema $id: http://devicetree.org/schemas/i2c/i2c-mpc.yaml#
--
arch/powerpc/boot/dts/fsl/t4240rdb.dtb: pic@40000 (fsl,mpic): compatible: 'oneOf' conditional failed, one must be fixed:
['fsl,mpic'] is too short
'chrp,open-pic' was expected
from schema $id: http://devicetree.org/schemas/interrupt-controller/chrp,open-pic.yaml#
arch/powerpc/boot/dts/fsl/t4240rdb.dtb: pic@40000 (fsl,mpic): device_type:0: 'open-pci' was expected
from schema $id: http://devicetree.org/schemas/interrupt-controller/chrp,open-pic.yaml#
arch/powerpc/boot/dts/fsl/t4240rdb.dtb: /soc@ffe000000/timer@41100: failed to match any schema with compatible: ['fsl,mpic-global-timer']
arch/powerpc/boot/dts/fsl/t4240rdb.dtb: /soc@ffe000000/timer@42100: failed to match any schema with compatible: ['fsl,mpic-global-timer']
arch/powerpc/boot/dts/fsl/t4240rdb.dtb: /soc@ffe000000/global-utilities@e0000: failed to match any schema with compatible: ['fsl,t4240-device-config', 'fsl,qoriq-device-config-2.0']
arch/powerpc/boot/dts/fsl/t4240rdb.dtb: /soc@ffe000000/global-utilities@e0000: failed to match any schema with compatible: ['fsl,t4240-device-config', 'fsl,qoriq-device-config-2.0']
>> arch/powerpc/boot/dts/fsl/t4240rdb.dtb: global-utilities@e2000 (fsl,t4240-rcpm): $nodename:0: 'global-utilities@e2000' does not match '^(power-controller|power-domain|performance-domain)([@-].*)?$'
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
>> arch/powerpc/boot/dts/fsl/t4240rdb.dtb: global-utilities@e2000 (fsl,t4240-rcpm): '#power-domain-cells' is a required property
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
arch/powerpc/boot/dts/fsl/t4240rdb.dtb: /soc@ffe000000/sfp@e8000: failed to match any schema with compatible: ['fsl,t4240-sfp']
arch/powerpc/boot/dts/fsl/t4240rdb.dtb: /soc@ffe000000/serdes@ea000: failed to match any schema with compatible: ['fsl,t4240-serdes']
arch/powerpc/boot/dts/fsl/t4240rdb.dtb: i2c@118100 (fsl-i2c): compatible: 'oneOf' conditional failed, one must be fixed:
['fsl-i2c'] is too short
'fsl-i2c' is not one of ['mpc5200-i2c', 'fsl,mpc5200-i2c', 'fsl,mpc5121-i2c', 'fsl,mpc8313-i2c', 'fsl,mpc8543-i2c', 'fsl,mpc8544-i2c']
'fsl,mpc5200b-i2c' was expected
from schema $id: http://devicetree.org/schemas/i2c/i2c-mpc.yaml#
arch/powerpc/boot/dts/fsl/t4240rdb.dtb: i2c@118100 (fsl-i2c): Unevaluated properties are not allowed ('cell-index', 'compatible', 'dfsrr' were unexpected)
from schema $id: http://devicetree.org/schemas/i2c/i2c-mpc.yaml#
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
^ permalink raw reply [flat|nested] 5+ messages in thread* Re: [PATCH 1/1] dt-bindings: fsl: fsl,rcpm: reference power-domains.yaml
@ 2025-07-27 6:06 kernel test robot
0 siblings, 0 replies; 5+ messages in thread
From: kernel test robot @ 2025-07-27 6:06 UTC (permalink / raw)
To: oe-kbuild; +Cc: lkp
::::::
:::::: Manual check reason: "dtcheck: binding changes may go via different trees"
::::::
BCC: lkp@intel.com
CC: oe-kbuild-all@lists.linux.dev
In-Reply-To: <20250725055835.260930-1-alexander.stein@ew.tq-group.com>
References: <20250725055835.260930-1-alexander.stein@ew.tq-group.com>
TO: Alexander Stein <alexander.stein@ew.tq-group.com>
TO: Christophe Leroy <christophe.leroy@csgroup.eu>
TO: Rob Herring <robh@kernel.org>
TO: Krzysztof Kozlowski <krzk@kernel.org>
TO: Conor Dooley <conor+dt@kernel.org>
TO: Frank Li <Frank.Li@nxp.com>
CC: Alexander Stein <alexander.stein@ew.tq-group.com>
CC: linuxppc-dev@lists.ozlabs.org
CC: linux-arm-kernel@lists.infradead.org
CC: devicetree@vger.kernel.org
CC: linux-kernel@vger.kernel.org
Hi Alexander,
kernel test robot noticed the following build warnings:
[auto build test WARNING on robh/for-next]
[also build test WARNING on linus/master v6.16-rc7 next-20250725]
[If your patch is applied to the wrong git tree, kindly drop us a note.
And when submitting patch, we suggest to use '--base' as documented in
https://git-scm.com/docs/git-format-patch#_base_tree_information]
url: https://github.com/intel-lab-lkp/linux/commits/Alexander-Stein/dt-bindings-fsl-fsl-rcpm-reference-power-domains-yaml/20250725-140232
base: https://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git for-next
patch link: https://lore.kernel.org/r/20250725055835.260930-1-alexander.stein%40ew.tq-group.com
patch subject: [PATCH 1/1] dt-bindings: fsl: fsl,rcpm: reference power-domains.yaml
:::::: branch date: 2 days ago
:::::: commit date: 2 days ago
config: arm64-randconfig-051-20250726 (https://download.01.org/0day-ci/archive/20250727/202507271319.m2NdJjDy-lkp@intel.com/config)
compiler: clang version 22.0.0git (https://github.com/llvm/llvm-project 853c343b45b3e83cc5eeef5a52fc8cc9d8a09252)
dtschema version: 2025.6.2.dev4+g8f79ddd
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20250727/202507271319.m2NdJjDy-lkp@intel.com/reproduce)
If you fix the issue in a separate patch/commit (i.e. not just a new version of
the same patch/commit), kindly add following tags
| Reported-by: kernel test robot <lkp@intel.com>
| Closes: https://lore.kernel.org/r/202507271319.m2NdJjDy-lkp@intel.com/
dtcheck warnings: (new ones prefixed by >>)
>> arch/arm64/boot/dts/freescale/fsl-ls1012a-frdm.dtb: wakeup-controller@1ee2140 (fsl,ls1012a-rcpm): $nodename:0: 'wakeup-controller@1ee2140' does not match '^(power-controller|power-domain|performance-domain)([@-].*)?$'
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
>> arch/arm64/boot/dts/freescale/fsl-ls1012a-frdm.dtb: wakeup-controller@1ee2140 (fsl,ls1012a-rcpm): '#power-domain-cells' is a required property
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
--
>> arch/arm64/boot/dts/freescale/fsl-ls1012a-frwy.dtb: wakeup-controller@1ee2140 (fsl,ls1012a-rcpm): $nodename:0: 'wakeup-controller@1ee2140' does not match '^(power-controller|power-domain|performance-domain)([@-].*)?$'
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
>> arch/arm64/boot/dts/freescale/fsl-ls1012a-frwy.dtb: wakeup-controller@1ee2140 (fsl,ls1012a-rcpm): '#power-domain-cells' is a required property
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
--
>> arch/arm64/boot/dts/freescale/fsl-ls1012a-oxalis.dtb: wakeup-controller@1ee2140 (fsl,ls1012a-rcpm): $nodename:0: 'wakeup-controller@1ee2140' does not match '^(power-controller|power-domain|performance-domain)([@-].*)?$'
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
>> arch/arm64/boot/dts/freescale/fsl-ls1012a-oxalis.dtb: wakeup-controller@1ee2140 (fsl,ls1012a-rcpm): '#power-domain-cells' is a required property
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
--
>> arch/arm64/boot/dts/freescale/fsl-ls1012a-qds.dtb: wakeup-controller@1ee2140 (fsl,ls1012a-rcpm): $nodename:0: 'wakeup-controller@1ee2140' does not match '^(power-controller|power-domain|performance-domain)([@-].*)?$'
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
>> arch/arm64/boot/dts/freescale/fsl-ls1012a-qds.dtb: wakeup-controller@1ee2140 (fsl,ls1012a-rcpm): '#power-domain-cells' is a required property
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
--
>> arch/arm64/boot/dts/freescale/fsl-ls1012a-rdb.dtb: wakeup-controller@1ee2140 (fsl,ls1012a-rcpm): $nodename:0: 'wakeup-controller@1ee2140' does not match '^(power-controller|power-domain|performance-domain)([@-].*)?$'
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
>> arch/arm64/boot/dts/freescale/fsl-ls1012a-rdb.dtb: wakeup-controller@1ee2140 (fsl,ls1012a-rcpm): '#power-domain-cells' is a required property
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
--
>> arch/arm64/boot/dts/freescale/fsl-ls1028a-kontron-kbox-a-230-ls.dtb: wakeup-controller@1e34040 (fsl,ls1028a-rcpm): $nodename:0: 'wakeup-controller@1e34040' does not match '^(power-controller|power-domain|performance-domain)([@-].*)?$'
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
>> arch/arm64/boot/dts/freescale/fsl-ls1028a-kontron-kbox-a-230-ls.dtb: wakeup-controller@1e34040 (fsl,ls1028a-rcpm): '#power-domain-cells' is a required property
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
--
>> arch/arm64/boot/dts/freescale/fsl-ls1028a-kontron-sl28.dtb: wakeup-controller@1e34040 (fsl,ls1028a-rcpm): $nodename:0: 'wakeup-controller@1e34040' does not match '^(power-controller|power-domain|performance-domain)([@-].*)?$'
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
>> arch/arm64/boot/dts/freescale/fsl-ls1028a-kontron-sl28.dtb: wakeup-controller@1e34040 (fsl,ls1028a-rcpm): '#power-domain-cells' is a required property
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
--
>> arch/arm64/boot/dts/freescale/fsl-ls1028a-kontron-sl28-var1.dtb: wakeup-controller@1e34040 (fsl,ls1028a-rcpm): $nodename:0: 'wakeup-controller@1e34040' does not match '^(power-controller|power-domain|performance-domain)([@-].*)?$'
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
>> arch/arm64/boot/dts/freescale/fsl-ls1028a-kontron-sl28-var1.dtb: wakeup-controller@1e34040 (fsl,ls1028a-rcpm): '#power-domain-cells' is a required property
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
--
>> arch/arm64/boot/dts/freescale/fsl-ls1028a-kontron-sl28-var2.dtb: wakeup-controller@1e34040 (fsl,ls1028a-rcpm): $nodename:0: 'wakeup-controller@1e34040' does not match '^(power-controller|power-domain|performance-domain)([@-].*)?$'
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
>> arch/arm64/boot/dts/freescale/fsl-ls1028a-kontron-sl28-var2.dtb: wakeup-controller@1e34040 (fsl,ls1028a-rcpm): '#power-domain-cells' is a required property
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
--
>> arch/arm64/boot/dts/freescale/fsl-ls1028a-kontron-sl28-var3.dtb: wakeup-controller@1e34040 (fsl,ls1028a-rcpm): $nodename:0: 'wakeup-controller@1e34040' does not match '^(power-controller|power-domain|performance-domain)([@-].*)?$'
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
>> arch/arm64/boot/dts/freescale/fsl-ls1028a-kontron-sl28-var3.dtb: wakeup-controller@1e34040 (fsl,ls1028a-rcpm): '#power-domain-cells' is a required property
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
--
>> arch/arm64/boot/dts/freescale/fsl-ls1028a-kontron-sl28-var3-ads2.dtb: wakeup-controller@1e34040 (fsl,ls1028a-rcpm): $nodename:0: 'wakeup-controller@1e34040' does not match '^(power-controller|power-domain|performance-domain)([@-].*)?$'
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
>> arch/arm64/boot/dts/freescale/fsl-ls1028a-kontron-sl28-var3-ads2.dtb: wakeup-controller@1e34040 (fsl,ls1028a-rcpm): '#power-domain-cells' is a required property
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
--
>> arch/arm64/boot/dts/freescale/fsl-ls1028a-kontron-sl28-var4.dtb: wakeup-controller@1e34040 (fsl,ls1028a-rcpm): $nodename:0: 'wakeup-controller@1e34040' does not match '^(power-controller|power-domain|performance-domain)([@-].*)?$'
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
>> arch/arm64/boot/dts/freescale/fsl-ls1028a-kontron-sl28-var4.dtb: wakeup-controller@1e34040 (fsl,ls1028a-rcpm): '#power-domain-cells' is a required property
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
--
>> arch/arm64/boot/dts/freescale/fsl-ls1028a-qds.dtb: wakeup-controller@1e34040 (fsl,ls1028a-rcpm): $nodename:0: 'wakeup-controller@1e34040' does not match '^(power-controller|power-domain|performance-domain)([@-].*)?$'
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
>> arch/arm64/boot/dts/freescale/fsl-ls1028a-qds.dtb: wakeup-controller@1e34040 (fsl,ls1028a-rcpm): '#power-domain-cells' is a required property
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
--
>> arch/arm64/boot/dts/freescale/fsl-ls1028a-rdb.dtb: wakeup-controller@1e34040 (fsl,ls1028a-rcpm): $nodename:0: 'wakeup-controller@1e34040' does not match '^(power-controller|power-domain|performance-domain)([@-].*)?$'
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
>> arch/arm64/boot/dts/freescale/fsl-ls1028a-rdb.dtb: wakeup-controller@1e34040 (fsl,ls1028a-rcpm): '#power-domain-cells' is a required property
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
--
>> arch/arm64/boot/dts/freescale/fsl-ls1043a-qds.dtb: wakeup-controller@1ee2140 (fsl,ls1043a-rcpm): $nodename:0: 'wakeup-controller@1ee2140' does not match '^(power-controller|power-domain|performance-domain)([@-].*)?$'
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
>> arch/arm64/boot/dts/freescale/fsl-ls1043a-qds.dtb: wakeup-controller@1ee2140 (fsl,ls1043a-rcpm): '#power-domain-cells' is a required property
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
--
>> arch/arm64/boot/dts/freescale/fsl-ls1043a-rdb.dtb: wakeup-controller@1ee2140 (fsl,ls1043a-rcpm): $nodename:0: 'wakeup-controller@1ee2140' does not match '^(power-controller|power-domain|performance-domain)([@-].*)?$'
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
>> arch/arm64/boot/dts/freescale/fsl-ls1043a-rdb.dtb: wakeup-controller@1ee2140 (fsl,ls1043a-rcpm): '#power-domain-cells' is a required property
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
--
arch/arm64/boot/dts/freescale/fsl-ls1043a-tqmls1043a.dtsi:17.19-31.4: Warning (avoid_unnecessary_addr_size): /soc/spi@1550000/flash@0: unnecessary #address-cells/#size-cells without "ranges", "dma-ranges" or child "reg" property
>> arch/arm64/boot/dts/freescale/fsl-ls1043a-tqmls1043a-mbls10xxa.dtb: wakeup-controller@1ee2140 (fsl,ls1043a-rcpm): $nodename:0: 'wakeup-controller@1ee2140' does not match '^(power-controller|power-domain|performance-domain)([@-].*)?$'
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
>> arch/arm64/boot/dts/freescale/fsl-ls1043a-tqmls1043a-mbls10xxa.dtb: wakeup-controller@1ee2140 (fsl,ls1043a-rcpm): '#power-domain-cells' is a required property
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
--
>> arch/arm64/boot/dts/freescale/fsl-ls1046a-frwy.dtb: wakeup-controller@1ee2140 (fsl,ls1046a-rcpm): $nodename:0: 'wakeup-controller@1ee2140' does not match '^(power-controller|power-domain|performance-domain)([@-].*)?$'
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
>> arch/arm64/boot/dts/freescale/fsl-ls1046a-frwy.dtb: wakeup-controller@1ee2140 (fsl,ls1046a-rcpm): '#power-domain-cells' is a required property
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
--
>> arch/arm64/boot/dts/freescale/fsl-ls1046a-qds.dtb: wakeup-controller@1ee2140 (fsl,ls1046a-rcpm): $nodename:0: 'wakeup-controller@1ee2140' does not match '^(power-controller|power-domain|performance-domain)([@-].*)?$'
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
>> arch/arm64/boot/dts/freescale/fsl-ls1046a-qds.dtb: wakeup-controller@1ee2140 (fsl,ls1046a-rcpm): '#power-domain-cells' is a required property
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
--
>> arch/arm64/boot/dts/freescale/fsl-ls1046a-rdb.dtb: wakeup-controller@1ee2140 (fsl,ls1046a-rcpm): $nodename:0: 'wakeup-controller@1ee2140' does not match '^(power-controller|power-domain|performance-domain)([@-].*)?$'
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
>> arch/arm64/boot/dts/freescale/fsl-ls1046a-rdb.dtb: wakeup-controller@1ee2140 (fsl,ls1046a-rcpm): '#power-domain-cells' is a required property
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
--
arch/arm64/boot/dts/freescale/fsl-ls1046a-tqmls1046a.dtsi:17.19-31.4: Warning (avoid_unnecessary_addr_size): /soc/spi@1550000/flash@0: unnecessary #address-cells/#size-cells without "ranges", "dma-ranges" or child "reg" property
>> arch/arm64/boot/dts/freescale/fsl-ls1046a-tqmls1046a-mbls10xxa.dtb: wakeup-controller@1ee2140 (fsl,ls1046a-rcpm): $nodename:0: 'wakeup-controller@1ee2140' does not match '^(power-controller|power-domain|performance-domain)([@-].*)?$'
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
>> arch/arm64/boot/dts/freescale/fsl-ls1046a-tqmls1046a-mbls10xxa.dtb: wakeup-controller@1ee2140 (fsl,ls1046a-rcpm): '#power-domain-cells' is a required property
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
--
>> arch/arm64/boot/dts/freescale/fsl-ls1088a-qds.dtb: wakeup-controller@1e34040 (fsl,ls1088a-rcpm): $nodename:0: 'wakeup-controller@1e34040' does not match '^(power-controller|power-domain|performance-domain)([@-].*)?$'
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
>> arch/arm64/boot/dts/freescale/fsl-ls1088a-qds.dtb: wakeup-controller@1e34040 (fsl,ls1088a-rcpm): '#power-domain-cells' is a required property
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
--
>> arch/arm64/boot/dts/freescale/fsl-ls1088a-rdb.dtb: wakeup-controller@1e34040 (fsl,ls1088a-rcpm): $nodename:0: 'wakeup-controller@1e34040' does not match '^(power-controller|power-domain|performance-domain)([@-].*)?$'
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
>> arch/arm64/boot/dts/freescale/fsl-ls1088a-rdb.dtb: wakeup-controller@1e34040 (fsl,ls1088a-rcpm): '#power-domain-cells' is a required property
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
--
arch/arm64/boot/dts/freescale/fsl-ls1088a-ten64.dts:309.19-358.4: Warning (avoid_unnecessary_addr_size): /soc/spi@20c0000/flash@0: unnecessary #address-cells/#size-cells without "ranges", "dma-ranges" or child "reg" property
arch/arm64/boot/dts/freescale/fsl-ls1088a-ten64.dts:360.16-400.4: Warning (avoid_unnecessary_addr_size): /soc/spi@20c0000/flash@1: unnecessary #address-cells/#size-cells without "ranges", "dma-ranges" or child "reg" property
>> arch/arm64/boot/dts/freescale/fsl-ls1088a-ten64.dtb: wakeup-controller@1e34040 (fsl,ls1088a-rcpm): $nodename:0: 'wakeup-controller@1e34040' does not match '^(power-controller|power-domain|performance-domain)([@-].*)?$'
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
>> arch/arm64/boot/dts/freescale/fsl-ls1088a-ten64.dtb: wakeup-controller@1e34040 (fsl,ls1088a-rcpm): '#power-domain-cells' is a required property
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
--
arch/arm64/boot/dts/freescale/fsl-ls1088a-tqmls1088a.dtsi:17.19-31.4: Warning (avoid_unnecessary_addr_size): /soc/spi@20c0000/flash@0: unnecessary #address-cells/#size-cells without "ranges", "dma-ranges" or child "reg" property
>> arch/arm64/boot/dts/freescale/fsl-ls1088a-tqmls1088a-mbls10xxa.dtb: wakeup-controller@1e34040 (fsl,ls1088a-rcpm): $nodename:0: 'wakeup-controller@1e34040' does not match '^(power-controller|power-domain|performance-domain)([@-].*)?$'
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
>> arch/arm64/boot/dts/freescale/fsl-ls1088a-tqmls1088a-mbls10xxa.dtb: wakeup-controller@1e34040 (fsl,ls1088a-rcpm): '#power-domain-cells' is a required property
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
--
>> arch/arm64/boot/dts/freescale/fsl-ls2080a-qds.dtb: wakeup-controller@1e34040 (fsl,ls208xa-rcpm): $nodename:0: 'wakeup-controller@1e34040' does not match '^(power-controller|power-domain|performance-domain)([@-].*)?$'
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
>> arch/arm64/boot/dts/freescale/fsl-ls2080a-qds.dtb: wakeup-controller@1e34040 (fsl,ls208xa-rcpm): '#power-domain-cells' is a required property
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
--
>> arch/arm64/boot/dts/freescale/fsl-ls2080a-rdb.dtb: wakeup-controller@1e34040 (fsl,ls208xa-rcpm): $nodename:0: 'wakeup-controller@1e34040' does not match '^(power-controller|power-domain|performance-domain)([@-].*)?$'
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
>> arch/arm64/boot/dts/freescale/fsl-ls2080a-rdb.dtb: wakeup-controller@1e34040 (fsl,ls208xa-rcpm): '#power-domain-cells' is a required property
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
--
>> arch/arm64/boot/dts/freescale/fsl-ls2081a-rdb.dtb: wakeup-controller@1e34040 (fsl,ls208xa-rcpm): $nodename:0: 'wakeup-controller@1e34040' does not match '^(power-controller|power-domain|performance-domain)([@-].*)?$'
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
>> arch/arm64/boot/dts/freescale/fsl-ls2081a-rdb.dtb: wakeup-controller@1e34040 (fsl,ls208xa-rcpm): '#power-domain-cells' is a required property
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
--
>> arch/arm64/boot/dts/freescale/fsl-ls2080a-simu.dtb: wakeup-controller@1e34040 (fsl,ls208xa-rcpm): $nodename:0: 'wakeup-controller@1e34040' does not match '^(power-controller|power-domain|performance-domain)([@-].*)?$'
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
>> arch/arm64/boot/dts/freescale/fsl-ls2080a-simu.dtb: wakeup-controller@1e34040 (fsl,ls208xa-rcpm): '#power-domain-cells' is a required property
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
--
>> arch/arm64/boot/dts/freescale/fsl-ls2088a-qds.dtb: wakeup-controller@1e34040 (fsl,ls208xa-rcpm): $nodename:0: 'wakeup-controller@1e34040' does not match '^(power-controller|power-domain|performance-domain)([@-].*)?$'
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
>> arch/arm64/boot/dts/freescale/fsl-ls2088a-qds.dtb: wakeup-controller@1e34040 (fsl,ls208xa-rcpm): '#power-domain-cells' is a required property
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
--
>> arch/arm64/boot/dts/freescale/fsl-ls2088a-rdb.dtb: wakeup-controller@1e34040 (fsl,ls208xa-rcpm): $nodename:0: 'wakeup-controller@1e34040' does not match '^(power-controller|power-domain|performance-domain)([@-].*)?$'
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
>> arch/arm64/boot/dts/freescale/fsl-ls2088a-rdb.dtb: wakeup-controller@1e34040 (fsl,ls208xa-rcpm): '#power-domain-cells' is a required property
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
--
arch/arm64/boot/dts/freescale/fsl-lx2160a.dtsi:1703.34-1775.5: Warning (avoid_unnecessary_addr_size): /soc/pinmux@70010012c: unnecessary #address-cells/#size-cells without "ranges", "dma-ranges" or child "reg" property
>> arch/arm64/boot/dts/freescale/fsl-lx2160a-bluebox3.dtb: wakeup-controller@1e34040 (fsl,lx2160a-rcpm): $nodename:0: 'wakeup-controller@1e34040' does not match '^(power-controller|power-domain|performance-domain)([@-].*)?$'
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
>> arch/arm64/boot/dts/freescale/fsl-lx2160a-bluebox3.dtb: wakeup-controller@1e34040 (fsl,lx2160a-rcpm): '#power-domain-cells' is a required property
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
--
arch/arm64/boot/dts/freescale/fsl-lx2160a.dtsi:1703.34-1775.5: Warning (avoid_unnecessary_addr_size): /soc/pinmux@70010012c: unnecessary #address-cells/#size-cells without "ranges", "dma-ranges" or child "reg" property
>> arch/arm64/boot/dts/freescale/fsl-lx2160a-bluebox3-rev-a.dtb: wakeup-controller@1e34040 (fsl,lx2160a-rcpm): $nodename:0: 'wakeup-controller@1e34040' does not match '^(power-controller|power-domain|performance-domain)([@-].*)?$'
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
>> arch/arm64/boot/dts/freescale/fsl-lx2160a-bluebox3-rev-a.dtb: wakeup-controller@1e34040 (fsl,lx2160a-rcpm): '#power-domain-cells' is a required property
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
--
arch/arm64/boot/dts/freescale/fsl-lx2160a.dtsi:1703.34-1775.5: Warning (avoid_unnecessary_addr_size): /soc/pinmux@70010012c: unnecessary #address-cells/#size-cells without "ranges", "dma-ranges" or child "reg" property
>> arch/arm64/boot/dts/freescale/fsl-lx2160a-clearfog-cx.dtb: wakeup-controller@1e34040 (fsl,lx2160a-rcpm): $nodename:0: 'wakeup-controller@1e34040' does not match '^(power-controller|power-domain|performance-domain)([@-].*)?$'
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
>> arch/arm64/boot/dts/freescale/fsl-lx2160a-clearfog-cx.dtb: wakeup-controller@1e34040 (fsl,lx2160a-rcpm): '#power-domain-cells' is a required property
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
--
arch/arm64/boot/dts/freescale/fsl-lx2160a.dtsi:1703.34-1775.5: Warning (avoid_unnecessary_addr_size): /soc/pinmux@70010012c: unnecessary #address-cells/#size-cells without "ranges", "dma-ranges" or child "reg" property
>> arch/arm64/boot/dts/freescale/fsl-lx2160a-honeycomb.dtb: wakeup-controller@1e34040 (fsl,lx2160a-rcpm): $nodename:0: 'wakeup-controller@1e34040' does not match '^(power-controller|power-domain|performance-domain)([@-].*)?$'
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
>> arch/arm64/boot/dts/freescale/fsl-lx2160a-honeycomb.dtb: wakeup-controller@1e34040 (fsl,lx2160a-rcpm): '#power-domain-cells' is a required property
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
--
arch/arm64/boot/dts/freescale/fsl-lx2160a.dtsi:1703.34-1775.5: Warning (avoid_unnecessary_addr_size): /soc/pinmux@70010012c: unnecessary #address-cells/#size-cells without "ranges", "dma-ranges" or child "reg" property
>> arch/arm64/boot/dts/freescale/fsl-lx2160a-qds.dtb: wakeup-controller@1e34040 (fsl,lx2160a-rcpm): $nodename:0: 'wakeup-controller@1e34040' does not match '^(power-controller|power-domain|performance-domain)([@-].*)?$'
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
>> arch/arm64/boot/dts/freescale/fsl-lx2160a-qds.dtb: wakeup-controller@1e34040 (fsl,lx2160a-rcpm): '#power-domain-cells' is a required property
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
--
arch/arm64/boot/dts/freescale/fsl-lx2160a.dtsi:1703.34-1775.5: Warning (avoid_unnecessary_addr_size): /soc/pinmux@70010012c: unnecessary #address-cells/#size-cells without "ranges", "dma-ranges" or child "reg" property
>> arch/arm64/boot/dts/freescale/fsl-lx2160a-rdb.dtb: wakeup-controller@1e34040 (fsl,lx2160a-rcpm): $nodename:0: 'wakeup-controller@1e34040' does not match '^(power-controller|power-domain|performance-domain)([@-].*)?$'
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
>> arch/arm64/boot/dts/freescale/fsl-lx2160a-rdb.dtb: wakeup-controller@1e34040 (fsl,lx2160a-rcpm): '#power-domain-cells' is a required property
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
--
arch/arm64/boot/dts/freescale/fsl-lx2160a.dtsi:1703.34-1775.5: Warning (avoid_unnecessary_addr_size): /soc/pinmux@70010012c: unnecessary #address-cells/#size-cells without "ranges", "dma-ranges" or child "reg" property
>> arch/arm64/boot/dts/freescale/fsl-lx2162a-clearfog.dtb: wakeup-controller@1e34040 (fsl,lx2160a-rcpm): $nodename:0: 'wakeup-controller@1e34040' does not match '^(power-controller|power-domain|performance-domain)([@-].*)?$'
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
>> arch/arm64/boot/dts/freescale/fsl-lx2162a-clearfog.dtb: wakeup-controller@1e34040 (fsl,lx2160a-rcpm): '#power-domain-cells' is a required property
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
--
arch/arm64/boot/dts/freescale/fsl-lx2160a.dtsi:1703.34-1775.5: Warning (avoid_unnecessary_addr_size): /soc/pinmux@70010012c: unnecessary #address-cells/#size-cells without "ranges", "dma-ranges" or child "reg" property
>> arch/arm64/boot/dts/freescale/fsl-lx2162a-qds.dtb: wakeup-controller@1e34040 (fsl,lx2160a-rcpm): $nodename:0: 'wakeup-controller@1e34040' does not match '^(power-controller|power-domain|performance-domain)([@-].*)?$'
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
>> arch/arm64/boot/dts/freescale/fsl-lx2162a-qds.dtb: wakeup-controller@1e34040 (fsl,lx2160a-rcpm): '#power-domain-cells' is a required property
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
--
arch/arm64/boot/dts/freescale/fsl-lx2160a-tqmlx2160a.dtsi:41.18-55.4: Warning (avoid_unnecessary_addr_size): /soc/spi@20c0000/flash@0: unnecessary #address-cells/#size-cells without "ranges", "dma-ranges" or child "reg" property
arch/arm64/boot/dts/freescale/fsl-lx2160a.dtsi:1703.34-1775.5: Warning (avoid_unnecessary_addr_size): /soc/pinmux@70010012c: unnecessary #address-cells/#size-cells without "ranges", "dma-ranges" or child "reg" property
>> arch/arm64/boot/dts/freescale/fsl-lx2160a-tqmlx2160a-mblx2160a.dtb: wakeup-controller@1e34040 (fsl,lx2160a-rcpm): $nodename:0: 'wakeup-controller@1e34040' does not match '^(power-controller|power-domain|performance-domain)([@-].*)?$'
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
>> arch/arm64/boot/dts/freescale/fsl-lx2160a-tqmlx2160a-mblx2160a.dtb: wakeup-controller@1e34040 (fsl,lx2160a-rcpm): '#power-domain-cells' is a required property
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
--
>> arch/arm64/boot/dts/freescale/fsl-ls1028a-qds-13bb.dtb: wakeup-controller@1e34040 (fsl,ls1028a-rcpm): $nodename:0: 'wakeup-controller@1e34040' does not match '^(power-controller|power-domain|performance-domain)([@-].*)?$'
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
>> arch/arm64/boot/dts/freescale/fsl-ls1028a-qds-13bb.dtb: wakeup-controller@1e34040 (fsl,ls1028a-rcpm): '#power-domain-cells' is a required property
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
--
>> arch/arm64/boot/dts/freescale/fsl-ls1028a-qds-65bb.dtb: wakeup-controller@1e34040 (fsl,ls1028a-rcpm): $nodename:0: 'wakeup-controller@1e34040' does not match '^(power-controller|power-domain|performance-domain)([@-].*)?$'
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
>> arch/arm64/boot/dts/freescale/fsl-ls1028a-qds-65bb.dtb: wakeup-controller@1e34040 (fsl,ls1028a-rcpm): '#power-domain-cells' is a required property
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
--
>> arch/arm64/boot/dts/freescale/fsl-ls1028a-qds-7777.dtb: wakeup-controller@1e34040 (fsl,ls1028a-rcpm): $nodename:0: 'wakeup-controller@1e34040' does not match '^(power-controller|power-domain|performance-domain)([@-].*)?$'
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
>> arch/arm64/boot/dts/freescale/fsl-ls1028a-qds-7777.dtb: wakeup-controller@1e34040 (fsl,ls1028a-rcpm): '#power-domain-cells' is a required property
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
--
>> arch/arm64/boot/dts/freescale/fsl-ls1028a-qds-85bb.dtb: wakeup-controller@1e34040 (fsl,ls1028a-rcpm): $nodename:0: 'wakeup-controller@1e34040' does not match '^(power-controller|power-domain|performance-domain)([@-].*)?$'
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
>> arch/arm64/boot/dts/freescale/fsl-ls1028a-qds-85bb.dtb: wakeup-controller@1e34040 (fsl,ls1028a-rcpm): '#power-domain-cells' is a required property
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
--
>> arch/arm64/boot/dts/freescale/fsl-ls1028a-qds-899b.dtb: wakeup-controller@1e34040 (fsl,ls1028a-rcpm): $nodename:0: 'wakeup-controller@1e34040' does not match '^(power-controller|power-domain|performance-domain)([@-].*)?$'
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
>> arch/arm64/boot/dts/freescale/fsl-ls1028a-qds-899b.dtb: wakeup-controller@1e34040 (fsl,ls1028a-rcpm): '#power-domain-cells' is a required property
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
--
>> arch/arm64/boot/dts/freescale/fsl-lx2160a-tqmlx2160a-mblx2160a-12-11-x.dtb: wakeup-controller@1e34040 (fsl,lx2160a-rcpm): $nodename:0: 'wakeup-controller@1e34040' does not match '^(power-controller|power-domain|performance-domain)([@-].*)?$'
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
>> arch/arm64/boot/dts/freescale/fsl-lx2160a-tqmlx2160a-mblx2160a-12-11-x.dtb: wakeup-controller@1e34040 (fsl,lx2160a-rcpm): '#power-domain-cells' is a required property
from schema $id: http://devicetree.org/schemas/soc/fsl/fsl,rcpm.yaml#
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2025-07-27 6:07 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-07-25 5:58 [PATCH 1/1] dt-bindings: fsl: fsl,rcpm: reference power-domains.yaml Alexander Stein
2025-07-25 7:25 ` Rob Herring (Arm)
2025-07-25 19:47 ` Rob Herring
-- strict thread matches above, loose matches on Subject: below --
2025-07-27 4:13 kernel test robot
2025-07-27 6:06 kernel test robot
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.