All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2] dt-bindings: crypto: Convert ti,omap2-aes to DT schema
@ 2025-06-11 23:10 Rob Herring (Arm)
  2025-06-17  8:36 ` Krzysztof Kozlowski
  2025-06-23  9:18 ` Herbert Xu
  0 siblings, 2 replies; 4+ messages in thread
From: Rob Herring (Arm) @ 2025-06-11 23:10 UTC (permalink / raw)
  To: Herbert Xu, David S. Miller, Krzysztof Kozlowski, Conor Dooley,
	Aaro Koskinen, Andreas Kemnade, Kevin Hilman, Roger Quadros,
	Tony Lindgren
  Cc: linux-crypto, devicetree, linux-kernel

Convert the TI OMAP AES binding to DT schema format. It's a straight
forward conversion.

Make "ti,hwmods" not required as it is deprecated and only used on
OMAP2.

Signed-off-by: Rob Herring (Arm) <robh@kernel.org>
---
v2:
 - Drop ti,hwmods from required
 - Fix filename to be omap2, not omap4.
---
 .../devicetree/bindings/crypto/omap-aes.txt   | 31 ----------
 .../bindings/crypto/ti,omap2-aes.yaml         | 58 +++++++++++++++++++
 2 files changed, 58 insertions(+), 31 deletions(-)
 delete mode 100644 Documentation/devicetree/bindings/crypto/omap-aes.txt
 create mode 100644 Documentation/devicetree/bindings/crypto/ti,omap2-aes.yaml

diff --git a/Documentation/devicetree/bindings/crypto/omap-aes.txt b/Documentation/devicetree/bindings/crypto/omap-aes.txt
deleted file mode 100644
index fd9717653cbb..000000000000
--- a/Documentation/devicetree/bindings/crypto/omap-aes.txt
+++ /dev/null
@@ -1,31 +0,0 @@
-OMAP SoC AES crypto Module
-
-Required properties:
-
-- compatible : Should contain entries for this and backward compatible
-  AES versions:
-  - "ti,omap2-aes" for OMAP2.
-  - "ti,omap3-aes" for OMAP3.
-  - "ti,omap4-aes" for OMAP4 and AM33XX.
-  Note that the OMAP2 and 3 versions are compatible (OMAP3 supports
-  more algorithms) but they are incompatible with OMAP4.
-- ti,hwmods: Name of the hwmod associated with the AES module
-- reg : Offset and length of the register set for the module
-- interrupts : the interrupt-specifier for the AES module.
-
-Optional properties:
-- dmas: DMA specifiers for tx and rx dma. See the DMA client binding,
-	Documentation/devicetree/bindings/dma/dma.txt
-- dma-names: DMA request names should include "tx" and "rx" if present.
-
-Example:
-	/* AM335x */
-	aes: aes@53500000 {
-		compatible = "ti,omap4-aes";
-		ti,hwmods = "aes";
-		reg = <0x53500000 0xa0>;
-		interrupts = <102>;
-		dmas = <&edma 6>,
-		       <&edma 5>;
-		dma-names = "tx", "rx";
-	};
diff --git a/Documentation/devicetree/bindings/crypto/ti,omap2-aes.yaml b/Documentation/devicetree/bindings/crypto/ti,omap2-aes.yaml
new file mode 100644
index 000000000000..90e92050ad2e
--- /dev/null
+++ b/Documentation/devicetree/bindings/crypto/ti,omap2-aes.yaml
@@ -0,0 +1,58 @@
+# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
+%YAML 1.2
+---
+$id: http://devicetree.org/schemas/ti,omap2-aes.yaml#
+$schema: http://devicetree.org/meta-schemas/core.yaml#
+
+title: OMAP SoC AES crypto Module
+
+maintainers:
+  - Aaro Koskinen <aaro.koskinen@iki.fi>
+  - Andreas Kemnade <andreas@kemnade.info>
+  - Kevin Hilman <khilman@baylibre.com>
+  - Roger Quadros <rogerq@kernel.org>
+  - Tony Lindgren <tony@atomide.com>
+
+properties:
+  compatible:
+    enum:
+      - ti,omap2-aes
+      - ti,omap3-aes
+      - ti,omap4-aes
+
+  reg:
+    maxItems: 1
+
+  interrupts:
+    maxItems: 1
+
+  dmas:
+    maxItems: 2
+
+  dma-names:
+    items:
+      - const: tx
+      - const: rx
+
+  ti,hwmods:
+    description: Name of the hwmod associated with the AES module
+    const: aes
+    deprecated: true
+
+required:
+  - compatible
+  - reg
+  - interrupts
+
+additionalProperties: false
+
+examples:
+  - |
+    aes@53500000 {
+        compatible = "ti,omap4-aes";
+        reg = <0x53500000 0xa0>;
+        interrupts = <102>;
+        dmas = <&edma 6>,
+               <&edma 5>;
+        dma-names = "tx", "rx";
+    };
-- 
2.47.2


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH v2] dt-bindings: crypto: Convert ti,omap2-aes to DT schema
@ 2025-06-14 13:00 kernel test robot
  0 siblings, 0 replies; 4+ messages in thread
From: kernel test robot @ 2025-06-14 13:00 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: <20250611231047.1400566-1-robh@kernel.org>
References: <20250611231047.1400566-1-robh@kernel.org>
TO: "Rob Herring (Arm)" <robh@kernel.org>
TO: Herbert Xu <herbert@gondor.apana.org.au>
TO: "David S. Miller" <davem@davemloft.net>
CC: netdev@vger.kernel.org
TO: Krzysztof Kozlowski <krzk@kernel.org>
TO: Conor Dooley <conor+dt@kernel.org>
TO: Aaro Koskinen <aaro.koskinen@iki.fi>
TO: Andreas Kemnade <andreas@kemnade.info>
TO: Kevin Hilman <khilman@baylibre.com>
TO: Roger Quadros <rogerq@kernel.org>
TO: Tony Lindgren <tony@atomide.com>
CC: linux-crypto@vger.kernel.org
CC: devicetree@vger.kernel.org
CC: linux-kernel@vger.kernel.org

Hi Rob,

kernel test robot noticed the following build warnings:

[auto build test WARNING on herbert-cryptodev-2.6/master]
[also build test WARNING on herbert-crypto-2.6/master krzk-dt/for-next linus/master v6.16-rc1 next-20250613]
[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/Rob-Herring-Arm/dt-bindings-crypto-Convert-ti-omap2-aes-to-DT-schema/20250612-071245
base:   https://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git master
patch link:    https://lore.kernel.org/r/20250611231047.1400566-1-robh%40kernel.org
patch subject: [PATCH v2] dt-bindings: crypto: Convert ti,omap2-aes to DT schema
:::::: branch date: 3 days ago
:::::: commit date: 3 days ago
config: arm-randconfig-054-20250612 (https://download.01.org/0day-ci/archive/20250614/202506142044.2ORCIiOX-lkp@intel.com/config)
compiler: clang version 20.1.2 (https://github.com/llvm/llvm-project 58df0ef89dd64126512e4ee27b4ac3fd8ddf6247)
dtschema version: 2025.3.dev28+g49451a5
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20250614/202506142044.2ORCIiOX-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/202506142044.2ORCIiOX-lkp@intel.com/

dtcheck warnings: (new ones prefixed by >>)
   arch/arm/boot/dts/ti/omap/omap24xx-clocks.dtsi:502.37-509.4: Warning (unique_unit_address_if_enabled): /ocp/l4@48000000/prcm@8000/clocks/usb_l4_div_ick@240: duplicate unit-address (also used in node /ocp/l4@48000000/prcm@8000/clocks/vlynq_mux_fck@240)
   arch/arm/boot/dts/ti/omap/omap24xx-clocks.dtsi:8.35-14.4: Warning (unique_unit_address_if_enabled): /ocp/l4@48000000/scm@0/scm_conf@270/clocks/mcbsp1_mux_fck@4: duplicate unit-address (also used in node /ocp/l4@48000000/scm@0/scm_conf@270/clocks/mcbsp2_mux_fck@4)
   arch/arm/boot/dts/ti/omap/omap2420-h4.dtb: cpus: #address-cells: 0 is less than the minimum of 1
   	from schema $id: http://devicetree.org/schemas/cpus.yaml#
   arch/arm/boot/dts/ti/omap/omap2420-h4.dtb: cpu (arm,arm1136jf-s): 'reg' is a required property
   	from schema $id: http://devicetree.org/schemas/arm/cpus.yaml#
   arch/arm/boot/dts/ti/omap/omap2420-h4.dtb: /soc: failed to match any schema with compatible: ['ti,omap-infra']
   arch/arm/boot/dts/ti/omap/omap2420-h4.dtb: /soc/mpu: failed to match any schema with compatible: ['ti,omap2-mpu']
   arch/arm/boot/dts/ti/omap/omap2420-h4.dtb: ocp (simple-bus): $nodename:0: 'ocp' does not match '^([a-z][a-z0-9\\-]+-bus|bus|localbus|soc|axi|ahb|apb)(@.+)?$'
   	from schema $id: http://devicetree.org/schemas/simple-bus.yaml#
>> arch/arm/boot/dts/ti/omap/omap2420-h4.dtb: aes@480a6000 (ti,omap2-aes): 'oneOf' conditional failed, one must be fixed:
   	'interrupts' is a required property
   	'interrupts-extended' is a required property
   	from schema $id: http://devicetree.org/schemas/ti,omap2-aes.yaml#
   arch/arm/boot/dts/ti/omap/omap2420-h4.dtb: /ocp/1w@480b2000: failed to match any schema with compatible: ['ti,omap2420-1w']
   arch/arm/boot/dts/ti/omap/omap2420-h4.dtb: /ocp/target-module@48056000/dma-controller@0: failed to match any schema with compatible: ['ti,omap2420-sdma', 'ti,omap-sdma']
   arch/arm/boot/dts/ti/omap/omap2420-h4.dtb: /ocp/target-module@48056000/dma-controller@0: failed to match any schema with compatible: ['ti,omap2420-sdma', 'ti,omap-sdma']
   arch/arm/boot/dts/ti/omap/omap2420-h4.dtb: /ocp/dss@48050000: failed to match any schema with compatible: ['ti,omap2-dss']
   arch/arm/boot/dts/ti/omap/omap2420-h4.dtb: /ocp/dss@48050000/dispc@48050400: failed to match any schema with compatible: ['ti,omap2-dispc']
   arch/arm/boot/dts/ti/omap/omap2420-h4.dtb: /ocp/dss@48050000/encoder@48050800: failed to match any schema with compatible: ['ti,omap2-rfbi']
   arch/arm/boot/dts/ti/omap/omap2420-h4.dtb: /ocp/dss@48050000/encoder@48050c00: failed to match any schema with compatible: ['ti,omap2-venc']
--
   arch/arm/boot/dts/ti/omap/omap2420-n800.dtb: cpus: #address-cells: 0 is less than the minimum of 1
   	from schema $id: http://devicetree.org/schemas/cpus.yaml#
   arch/arm/boot/dts/ti/omap/omap2420-n800.dtb: cpu (arm,arm1136jf-s): 'reg' is a required property
   	from schema $id: http://devicetree.org/schemas/arm/cpus.yaml#
   arch/arm/boot/dts/ti/omap/omap2420-n800.dtb: /soc: failed to match any schema with compatible: ['ti,omap-infra']
   arch/arm/boot/dts/ti/omap/omap2420-n800.dtb: /soc/mpu: failed to match any schema with compatible: ['ti,omap2-mpu']
   arch/arm/boot/dts/ti/omap/omap2420-n800.dtb: ocp (simple-bus): i2c0: 'ranges' is a required property
   	from schema $id: http://devicetree.org/schemas/simple-bus.yaml#
   arch/arm/boot/dts/ti/omap/omap2420-n800.dtb: ocp (simple-bus): $nodename:0: 'ocp' does not match '^([a-z][a-z0-9\\-]+-bus|bus|localbus|soc|axi|ahb|apb)(@.+)?$'
   	from schema $id: http://devicetree.org/schemas/simple-bus.yaml#
>> arch/arm/boot/dts/ti/omap/omap2420-n800.dtb: aes@480a6000 (ti,omap2-aes): 'oneOf' conditional failed, one must be fixed:
   	'interrupts' is a required property
   	'interrupts-extended' is a required property
   	from schema $id: http://devicetree.org/schemas/ti,omap2-aes.yaml#
   arch/arm/boot/dts/ti/omap/omap2420-n800.dtb: /ocp/1w@480b2000: failed to match any schema with compatible: ['ti,omap2420-1w']
   arch/arm/boot/dts/ti/omap/omap2420-n800.dtb: /ocp/target-module@48056000/dma-controller@0: failed to match any schema with compatible: ['ti,omap2420-sdma', 'ti,omap-sdma']
   arch/arm/boot/dts/ti/omap/omap2420-n800.dtb: /ocp/target-module@48056000/dma-controller@0: failed to match any schema with compatible: ['ti,omap2420-sdma', 'ti,omap-sdma']
   arch/arm/boot/dts/ti/omap/omap2420-n800.dtb: /ocp/i2c@48070000/pmic@72: failed to match any schema with compatible: ['menelaus']
   arch/arm/boot/dts/ti/omap/omap2420-n800.dtb: /ocp/dss@48050000: failed to match any schema with compatible: ['ti,omap2-dss']
   arch/arm/boot/dts/ti/omap/omap2420-n800.dtb: /ocp/dss@48050000/dispc@48050400: failed to match any schema with compatible: ['ti,omap2-dispc']
   arch/arm/boot/dts/ti/omap/omap2420-n800.dtb: /ocp/dss@48050000/encoder@48050800: failed to match any schema with compatible: ['ti,omap2-rfbi']
--
   arch/arm/boot/dts/ti/omap/omap2420-n810.dtb: cpus: #address-cells: 0 is less than the minimum of 1
   	from schema $id: http://devicetree.org/schemas/cpus.yaml#
   arch/arm/boot/dts/ti/omap/omap2420-n810.dtb: cpu (arm,arm1136jf-s): 'reg' is a required property
   	from schema $id: http://devicetree.org/schemas/arm/cpus.yaml#
   arch/arm/boot/dts/ti/omap/omap2420-n810.dtb: /soc: failed to match any schema with compatible: ['ti,omap-infra']
   arch/arm/boot/dts/ti/omap/omap2420-n810.dtb: /soc/mpu: failed to match any schema with compatible: ['ti,omap2-mpu']
   arch/arm/boot/dts/ti/omap/omap2420-n810.dtb: ocp (simple-bus): i2c0: 'ranges' is a required property
   	from schema $id: http://devicetree.org/schemas/simple-bus.yaml#
   arch/arm/boot/dts/ti/omap/omap2420-n810.dtb: ocp (simple-bus): $nodename:0: 'ocp' does not match '^([a-z][a-z0-9\\-]+-bus|bus|localbus|soc|axi|ahb|apb)(@.+)?$'
   	from schema $id: http://devicetree.org/schemas/simple-bus.yaml#
>> arch/arm/boot/dts/ti/omap/omap2420-n810.dtb: aes@480a6000 (ti,omap2-aes): 'oneOf' conditional failed, one must be fixed:
   	'interrupts' is a required property
   	'interrupts-extended' is a required property
   	from schema $id: http://devicetree.org/schemas/ti,omap2-aes.yaml#
   arch/arm/boot/dts/ti/omap/omap2420-n810.dtb: /ocp/1w@480b2000: failed to match any schema with compatible: ['ti,omap2420-1w']
   arch/arm/boot/dts/ti/omap/omap2420-n810.dtb: /ocp/target-module@48056000/dma-controller@0: failed to match any schema with compatible: ['ti,omap2420-sdma', 'ti,omap-sdma']
   arch/arm/boot/dts/ti/omap/omap2420-n810.dtb: /ocp/target-module@48056000/dma-controller@0: failed to match any schema with compatible: ['ti,omap2420-sdma', 'ti,omap-sdma']
   arch/arm/boot/dts/ti/omap/omap2420-n810.dtb: /ocp/i2c@48070000/pmic@72: failed to match any schema with compatible: ['menelaus']
   arch/arm/boot/dts/ti/omap/omap2420-n810.dtb: aic33@18 (ti,tlv320aic33): 'anyOf' conditional failed, one must be fixed:
   	'clocks' is a required property
   	'#clock-cells' is a required property
--
   arch/arm/boot/dts/ti/omap/omap2420-n810-wimax.dtb: cpus: #address-cells: 0 is less than the minimum of 1
   	from schema $id: http://devicetree.org/schemas/cpus.yaml#
   arch/arm/boot/dts/ti/omap/omap2420-n810-wimax.dtb: cpu (arm,arm1136jf-s): 'reg' is a required property
   	from schema $id: http://devicetree.org/schemas/arm/cpus.yaml#
   arch/arm/boot/dts/ti/omap/omap2420-n810-wimax.dtb: /soc: failed to match any schema with compatible: ['ti,omap-infra']
   arch/arm/boot/dts/ti/omap/omap2420-n810-wimax.dtb: /soc/mpu: failed to match any schema with compatible: ['ti,omap2-mpu']
   arch/arm/boot/dts/ti/omap/omap2420-n810-wimax.dtb: ocp (simple-bus): i2c0: 'ranges' is a required property
   	from schema $id: http://devicetree.org/schemas/simple-bus.yaml#
   arch/arm/boot/dts/ti/omap/omap2420-n810-wimax.dtb: ocp (simple-bus): $nodename:0: 'ocp' does not match '^([a-z][a-z0-9\\-]+-bus|bus|localbus|soc|axi|ahb|apb)(@.+)?$'
   	from schema $id: http://devicetree.org/schemas/simple-bus.yaml#
>> arch/arm/boot/dts/ti/omap/omap2420-n810-wimax.dtb: aes@480a6000 (ti,omap2-aes): 'oneOf' conditional failed, one must be fixed:
   	'interrupts' is a required property
   	'interrupts-extended' is a required property
   	from schema $id: http://devicetree.org/schemas/ti,omap2-aes.yaml#
   arch/arm/boot/dts/ti/omap/omap2420-n810-wimax.dtb: /ocp/1w@480b2000: failed to match any schema with compatible: ['ti,omap2420-1w']
   arch/arm/boot/dts/ti/omap/omap2420-n810-wimax.dtb: /ocp/target-module@48056000/dma-controller@0: failed to match any schema with compatible: ['ti,omap2420-sdma', 'ti,omap-sdma']
   arch/arm/boot/dts/ti/omap/omap2420-n810-wimax.dtb: /ocp/target-module@48056000/dma-controller@0: failed to match any schema with compatible: ['ti,omap2420-sdma', 'ti,omap-sdma']
   arch/arm/boot/dts/ti/omap/omap2420-n810-wimax.dtb: /ocp/i2c@48070000/pmic@72: failed to match any schema with compatible: ['menelaus']
   arch/arm/boot/dts/ti/omap/omap2420-n810-wimax.dtb: /ocp/dss@48050000: failed to match any schema with compatible: ['ti,omap2-dss']
   arch/arm/boot/dts/ti/omap/omap2420-n810-wimax.dtb: /ocp/dss@48050000/dispc@48050400: failed to match any schema with compatible: ['ti,omap2-dispc']
   arch/arm/boot/dts/ti/omap/omap2420-n810-wimax.dtb: /ocp/dss@48050000/encoder@48050800: failed to match any schema with compatible: ['ti,omap2-rfbi']
--
   arch/arm/boot/dts/ti/omap/omap2430-clocks.dtsi:9.36-14.4: Warning (unique_unit_address_if_enabled): /ocp/l4_wkup@49000000/scm@2000/scm_conf@270/clocks/mcbsp3_mux_fck@78: duplicate unit-address (also used in node /ocp/l4_wkup@49000000/scm@2000/scm_conf@270/clocks/mcbsp5_mux_fck@78)
   arch/arm/boot/dts/ti/omap/omap2430-clocks.dtsi:22.36-28.4: Warning (unique_unit_address_if_enabled): /ocp/l4_wkup@49000000/scm@2000/scm_conf@270/clocks/mcbsp4_mux_fck@78: duplicate unit-address (also used in node /ocp/l4_wkup@49000000/scm@2000/scm_conf@270/clocks/mcbsp5_mux_fck@78)
   arch/arm/boot/dts/ti/omap/omap2430-sdp.dtb: cpus: #address-cells: 0 is less than the minimum of 1
   	from schema $id: http://devicetree.org/schemas/cpus.yaml#
   arch/arm/boot/dts/ti/omap/omap2430-sdp.dtb: cpu (arm,arm1136jf-s): 'reg' is a required property
   	from schema $id: http://devicetree.org/schemas/arm/cpus.yaml#
   arch/arm/boot/dts/ti/omap/omap2430-sdp.dtb: /soc: failed to match any schema with compatible: ['ti,omap-infra']
   arch/arm/boot/dts/ti/omap/omap2430-sdp.dtb: /soc/mpu: failed to match any schema with compatible: ['ti,omap2-mpu']
   arch/arm/boot/dts/ti/omap/omap2430-sdp.dtb: ocp (simple-bus): $nodename:0: 'ocp' does not match '^([a-z][a-z0-9\\-]+-bus|bus|localbus|soc|axi|ahb|apb)(@.+)?$'
   	from schema $id: http://devicetree.org/schemas/simple-bus.yaml#
>> arch/arm/boot/dts/ti/omap/omap2430-sdp.dtb: aes@480a6000 (ti,omap2-aes): 'oneOf' conditional failed, one must be fixed:
   	'interrupts' is a required property
   	'interrupts-extended' is a required property
   	from schema $id: http://devicetree.org/schemas/ti,omap2-aes.yaml#
   arch/arm/boot/dts/ti/omap/omap2430-sdp.dtb: /ocp/1w@480b2000: failed to match any schema with compatible: ['ti,omap2420-1w']
   arch/arm/boot/dts/ti/omap/omap2430-sdp.dtb: /ocp/target-module@48056000/dma-controller@0: failed to match any schema with compatible: ['ti,omap2430-sdma', 'ti,omap-sdma']
   arch/arm/boot/dts/ti/omap/omap2430-sdp.dtb: /ocp/target-module@48056000/dma-controller@0: failed to match any schema with compatible: ['ti,omap2430-sdma', 'ti,omap-sdma']
   arch/arm/boot/dts/ti/omap/omap2430-sdp.dtb: twl@48 (ti,twl4030): Unevaluated properties are not allowed ('gpio', 'keypad', 'pwm', 'pwmled', 'twl4030-usb' were unexpected)
   	from schema $id: http://devicetree.org/schemas/mfd/ti,twl.yaml#
   arch/arm/boot/dts/ti/omap/omap2430-sdp.dtb: /ocp/i2c@48072000/twl@48/gpio: failed to match any schema with compatible: ['ti,twl4030-gpio']
   arch/arm/boot/dts/ti/omap/omap2430-sdp.dtb: /ocp/i2c@48072000/twl@48/twl4030-usb: failed to match any schema with compatible: ['ti,twl4030-usb']
--
   arch/arm/boot/dts/ti/omap/am571x-idk.dtb: /ocp/target-module@58882000/mmu@0: failed to match any schema with compatible: ['ti,dra7-iommu']
   arch/arm/boot/dts/ti/omap/am571x-idk.dtb: /ocp/target-module@55082000/mmu@0: failed to match any schema with compatible: ['ti,dra7-iommu']
   arch/arm/boot/dts/ti/omap/am571x-idk.dtb: /ocp/regulator-abb-mpu@4ae07ddc: failed to match any schema with compatible: ['ti,abb-v3']
   arch/arm/boot/dts/ti/omap/am571x-idk.dtb: /ocp/regulator-abb-ivahd@4ae07e34: failed to match any schema with compatible: ['ti,abb-v3']
   arch/arm/boot/dts/ti/omap/am571x-idk.dtb: /ocp/regulator-abb-dspeve@4ae07e30: failed to match any schema with compatible: ['ti,abb-v3']
   arch/arm/boot/dts/ti/omap/am571x-idk.dtb: /ocp/regulator-abb-gpu@4ae07de4: failed to match any schema with compatible: ['ti,abb-v3']
   arch/arm/boot/dts/ti/omap/am571x-idk.dtb: /ocp/crossbar@4a002a48: failed to match any schema with compatible: ['ti,irq-crossbar']
   arch/arm/boot/dts/ti/omap/am571x-idk.dtb: /ocp/target-module@58000000/dss@0: failed to match any schema with compatible: ['ti,dra7-dss']
   arch/arm/boot/dts/ti/omap/am571x-idk.dtb: /ocp/target-module@58000000/dss@0/target-module@1000/dispc@0: failed to match any schema with compatible: ['ti,dra7-dispc']
   arch/arm/boot/dts/ti/omap/am571x-idk.dtb: /ocp/target-module@58000000/dss@0/target-module@40000/encoder@0: failed to match any schema with compatible: ['ti,dra7-hdmi']
>> arch/arm/boot/dts/ti/omap/am571x-idk.dtb: aes@0 (ti,omap4-aes): 'clock-names', 'clocks' do not match any of the regexes: '^pinctrl-[0-9]+$'
   	from schema $id: http://devicetree.org/schemas/ti,omap2-aes.yaml#
>> arch/arm/boot/dts/ti/omap/am571x-idk.dtb: aes@0 (ti,omap4-aes): 'clock-names', 'clocks' do not match any of the regexes: '^pinctrl-[0-9]+$'
   	from schema $id: http://devicetree.org/schemas/ti,omap2-aes.yaml#
   arch/arm/boot/dts/ti/omap/am571x-idk.dtb: sham@0 (ti,omap5-sham): 'clock-names', 'clocks' do not match any of the regexes: '^pinctrl-[0-9]+$'
   	from schema $id: http://devicetree.org/schemas/crypto/ti,omap-sham.yaml#
   arch/arm/boot/dts/ti/omap/am571x-idk.dtb: sham@0 (ti,omap5-sham): 'ti,hwmods' is a required property
   	from schema $id: http://devicetree.org/schemas/crypto/ti,omap-sham.yaml#
   arch/arm/boot/dts/ti/omap/am571x-idk.dtb: sham@0 (ti,omap5-sham): 'clock-names', 'clocks' do not match any of the regexes: '^pinctrl-[0-9]+$'
   	from schema $id: http://devicetree.org/schemas/crypto/ti,omap-sham.yaml#
   arch/arm/boot/dts/ti/omap/am571x-idk.dtb: sham@0 (ti,omap5-sham): 'ti,hwmods' is a required property
   	from schema $id: http://devicetree.org/schemas/crypto/ti,omap-sham.yaml#
   arch/arm/boot/dts/ti/omap/am571x-idk.dtb: /ocp/target-module@5a000000/iva: failed to match any schema with compatible: ['ti,ivahd']
--
   arch/arm/boot/dts/ti/omap/am572x-idk.dtb: /ocp/target-module@58882000/mmu@0: failed to match any schema with compatible: ['ti,dra7-iommu']
   arch/arm/boot/dts/ti/omap/am572x-idk.dtb: /ocp/target-module@55082000/mmu@0: failed to match any schema with compatible: ['ti,dra7-iommu']
   arch/arm/boot/dts/ti/omap/am572x-idk.dtb: /ocp/regulator-abb-mpu@4ae07ddc: failed to match any schema with compatible: ['ti,abb-v3']
   arch/arm/boot/dts/ti/omap/am572x-idk.dtb: /ocp/regulator-abb-ivahd@4ae07e34: failed to match any schema with compatible: ['ti,abb-v3']
   arch/arm/boot/dts/ti/omap/am572x-idk.dtb: /ocp/regulator-abb-dspeve@4ae07e30: failed to match any schema with compatible: ['ti,abb-v3']
   arch/arm/boot/dts/ti/omap/am572x-idk.dtb: /ocp/regulator-abb-gpu@4ae07de4: failed to match any schema with compatible: ['ti,abb-v3']
   arch/arm/boot/dts/ti/omap/am572x-idk.dtb: /ocp/crossbar@4a002a48: failed to match any schema with compatible: ['ti,irq-crossbar']
   arch/arm/boot/dts/ti/omap/am572x-idk.dtb: /ocp/target-module@58000000/dss@0: failed to match any schema with compatible: ['ti,dra7-dss']
   arch/arm/boot/dts/ti/omap/am572x-idk.dtb: /ocp/target-module@58000000/dss@0/target-module@1000/dispc@0: failed to match any schema with compatible: ['ti,dra7-dispc']
   arch/arm/boot/dts/ti/omap/am572x-idk.dtb: /ocp/target-module@58000000/dss@0/target-module@40000/encoder@0: failed to match any schema with compatible: ['ti,dra7-hdmi']
>> arch/arm/boot/dts/ti/omap/am572x-idk.dtb: aes@0 (ti,omap4-aes): 'clock-names', 'clocks' do not match any of the regexes: '^pinctrl-[0-9]+$'
   	from schema $id: http://devicetree.org/schemas/ti,omap2-aes.yaml#
>> arch/arm/boot/dts/ti/omap/am572x-idk.dtb: aes@0 (ti,omap4-aes): 'clock-names', 'clocks' do not match any of the regexes: '^pinctrl-[0-9]+$'
   	from schema $id: http://devicetree.org/schemas/ti,omap2-aes.yaml#
   arch/arm/boot/dts/ti/omap/am572x-idk.dtb: sham@0 (ti,omap5-sham): 'clock-names', 'clocks' do not match any of the regexes: '^pinctrl-[0-9]+$'
   	from schema $id: http://devicetree.org/schemas/crypto/ti,omap-sham.yaml#
   arch/arm/boot/dts/ti/omap/am572x-idk.dtb: sham@0 (ti,omap5-sham): 'ti,hwmods' is a required property
   	from schema $id: http://devicetree.org/schemas/crypto/ti,omap-sham.yaml#
   arch/arm/boot/dts/ti/omap/am572x-idk.dtb: sham@0 (ti,omap5-sham): 'clock-names', 'clocks' do not match any of the regexes: '^pinctrl-[0-9]+$'
   	from schema $id: http://devicetree.org/schemas/crypto/ti,omap-sham.yaml#
   arch/arm/boot/dts/ti/omap/am572x-idk.dtb: sham@0 (ti,omap5-sham): 'ti,hwmods' is a required property
   	from schema $id: http://devicetree.org/schemas/crypto/ti,omap-sham.yaml#
   arch/arm/boot/dts/ti/omap/am572x-idk.dtb: /ocp/target-module@5a000000/iva: failed to match any schema with compatible: ['ti,ivahd']
--
   arch/arm/boot/dts/ti/omap/am57xx-beagle-x15.dtb: /ocp/target-module@58882000/mmu@0: failed to match any schema with compatible: ['ti,dra7-iommu']
   arch/arm/boot/dts/ti/omap/am57xx-beagle-x15.dtb: /ocp/target-module@55082000/mmu@0: failed to match any schema with compatible: ['ti,dra7-iommu']
   arch/arm/boot/dts/ti/omap/am57xx-beagle-x15.dtb: /ocp/regulator-abb-mpu@4ae07ddc: failed to match any schema with compatible: ['ti,abb-v3']
   arch/arm/boot/dts/ti/omap/am57xx-beagle-x15.dtb: /ocp/regulator-abb-ivahd@4ae07e34: failed to match any schema with compatible: ['ti,abb-v3']
   arch/arm/boot/dts/ti/omap/am57xx-beagle-x15.dtb: /ocp/regulator-abb-dspeve@4ae07e30: failed to match any schema with compatible: ['ti,abb-v3']
   arch/arm/boot/dts/ti/omap/am57xx-beagle-x15.dtb: /ocp/regulator-abb-gpu@4ae07de4: failed to match any schema with compatible: ['ti,abb-v3']
   arch/arm/boot/dts/ti/omap/am57xx-beagle-x15.dtb: /ocp/crossbar@4a002a48: failed to match any schema with compatible: ['ti,irq-crossbar']
   arch/arm/boot/dts/ti/omap/am57xx-beagle-x15.dtb: /ocp/target-module@58000000/dss@0: failed to match any schema with compatible: ['ti,dra7-dss']
   arch/arm/boot/dts/ti/omap/am57xx-beagle-x15.dtb: /ocp/target-module@58000000/dss@0/target-module@1000/dispc@0: failed to match any schema with compatible: ['ti,dra7-dispc']
   arch/arm/boot/dts/ti/omap/am57xx-beagle-x15.dtb: /ocp/target-module@58000000/dss@0/target-module@40000/encoder@0: failed to match any schema with compatible: ['ti,dra7-hdmi']
>> arch/arm/boot/dts/ti/omap/am57xx-beagle-x15.dtb: aes@0 (ti,omap4-aes): 'clock-names', 'clocks' do not match any of the regexes: '^pinctrl-[0-9]+$'
   	from schema $id: http://devicetree.org/schemas/ti,omap2-aes.yaml#
>> arch/arm/boot/dts/ti/omap/am57xx-beagle-x15.dtb: aes@0 (ti,omap4-aes): 'clock-names', 'clocks' do not match any of the regexes: '^pinctrl-[0-9]+$'
   	from schema $id: http://devicetree.org/schemas/ti,omap2-aes.yaml#
   arch/arm/boot/dts/ti/omap/am57xx-beagle-x15.dtb: sham@0 (ti,omap5-sham): 'clock-names', 'clocks' do not match any of the regexes: '^pinctrl-[0-9]+$'
   	from schema $id: http://devicetree.org/schemas/crypto/ti,omap-sham.yaml#
   arch/arm/boot/dts/ti/omap/am57xx-beagle-x15.dtb: sham@0 (ti,omap5-sham): 'ti,hwmods' is a required property
   	from schema $id: http://devicetree.org/schemas/crypto/ti,omap-sham.yaml#
   arch/arm/boot/dts/ti/omap/am57xx-beagle-x15.dtb: sham@0 (ti,omap5-sham): 'clock-names', 'clocks' do not match any of the regexes: '^pinctrl-[0-9]+$'
   	from schema $id: http://devicetree.org/schemas/crypto/ti,omap-sham.yaml#
   arch/arm/boot/dts/ti/omap/am57xx-beagle-x15.dtb: sham@0 (ti,omap5-sham): 'ti,hwmods' is a required property
   	from schema $id: http://devicetree.org/schemas/crypto/ti,omap-sham.yaml#
   arch/arm/boot/dts/ti/omap/am57xx-beagle-x15.dtb: /ocp/target-module@5a000000/iva: failed to match any schema with compatible: ['ti,ivahd']
--
   arch/arm/boot/dts/ti/omap/am57xx-beagle-x15-revb1.dtb: /ocp/target-module@58882000/mmu@0: failed to match any schema with compatible: ['ti,dra7-iommu']
   arch/arm/boot/dts/ti/omap/am57xx-beagle-x15-revb1.dtb: /ocp/target-module@55082000/mmu@0: failed to match any schema with compatible: ['ti,dra7-iommu']
   arch/arm/boot/dts/ti/omap/am57xx-beagle-x15-revb1.dtb: /ocp/regulator-abb-mpu@4ae07ddc: failed to match any schema with compatible: ['ti,abb-v3']
   arch/arm/boot/dts/ti/omap/am57xx-beagle-x15-revb1.dtb: /ocp/regulator-abb-ivahd@4ae07e34: failed to match any schema with compatible: ['ti,abb-v3']
   arch/arm/boot/dts/ti/omap/am57xx-beagle-x15-revb1.dtb: /ocp/regulator-abb-dspeve@4ae07e30: failed to match any schema with compatible: ['ti,abb-v3']
   arch/arm/boot/dts/ti/omap/am57xx-beagle-x15-revb1.dtb: /ocp/regulator-abb-gpu@4ae07de4: failed to match any schema with compatible: ['ti,abb-v3']
   arch/arm/boot/dts/ti/omap/am57xx-beagle-x15-revb1.dtb: /ocp/crossbar@4a002a48: failed to match any schema with compatible: ['ti,irq-crossbar']
   arch/arm/boot/dts/ti/omap/am57xx-beagle-x15-revb1.dtb: /ocp/target-module@58000000/dss@0: failed to match any schema with compatible: ['ti,dra7-dss']
   arch/arm/boot/dts/ti/omap/am57xx-beagle-x15-revb1.dtb: /ocp/target-module@58000000/dss@0/target-module@1000/dispc@0: failed to match any schema with compatible: ['ti,dra7-dispc']
   arch/arm/boot/dts/ti/omap/am57xx-beagle-x15-revb1.dtb: /ocp/target-module@58000000/dss@0/target-module@40000/encoder@0: failed to match any schema with compatible: ['ti,dra7-hdmi']
>> arch/arm/boot/dts/ti/omap/am57xx-beagle-x15-revb1.dtb: aes@0 (ti,omap4-aes): 'clock-names', 'clocks' do not match any of the regexes: '^pinctrl-[0-9]+$'
   	from schema $id: http://devicetree.org/schemas/ti,omap2-aes.yaml#
>> arch/arm/boot/dts/ti/omap/am57xx-beagle-x15-revb1.dtb: aes@0 (ti,omap4-aes): 'clock-names', 'clocks' do not match any of the regexes: '^pinctrl-[0-9]+$'
   	from schema $id: http://devicetree.org/schemas/ti,omap2-aes.yaml#
   arch/arm/boot/dts/ti/omap/am57xx-beagle-x15-revb1.dtb: sham@0 (ti,omap5-sham): 'clock-names', 'clocks' do not match any of the regexes: '^pinctrl-[0-9]+$'
   	from schema $id: http://devicetree.org/schemas/crypto/ti,omap-sham.yaml#
   arch/arm/boot/dts/ti/omap/am57xx-beagle-x15-revb1.dtb: sham@0 (ti,omap5-sham): 'ti,hwmods' is a required property
   	from schema $id: http://devicetree.org/schemas/crypto/ti,omap-sham.yaml#
   arch/arm/boot/dts/ti/omap/am57xx-beagle-x15-revb1.dtb: sham@0 (ti,omap5-sham): 'clock-names', 'clocks' do not match any of the regexes: '^pinctrl-[0-9]+$'
   	from schema $id: http://devicetree.org/schemas/crypto/ti,omap-sham.yaml#
   arch/arm/boot/dts/ti/omap/am57xx-beagle-x15-revb1.dtb: sham@0 (ti,omap5-sham): 'ti,hwmods' is a required property
   	from schema $id: http://devicetree.org/schemas/crypto/ti,omap-sham.yaml#
   arch/arm/boot/dts/ti/omap/am57xx-beagle-x15-revb1.dtb: /ocp/target-module@5a000000/iva: failed to match any schema with compatible: ['ti,ivahd']
--
   arch/arm/boot/dts/ti/omap/am57xx-beagle-x15-revc.dtb: /ocp/target-module@58882000/mmu@0: failed to match any schema with compatible: ['ti,dra7-iommu']
   arch/arm/boot/dts/ti/omap/am57xx-beagle-x15-revc.dtb: /ocp/target-module@55082000/mmu@0: failed to match any schema with compatible: ['ti,dra7-iommu']
   arch/arm/boot/dts/ti/omap/am57xx-beagle-x15-revc.dtb: /ocp/regulator-abb-mpu@4ae07ddc: failed to match any schema with compatible: ['ti,abb-v3']
   arch/arm/boot/dts/ti/omap/am57xx-beagle-x15-revc.dtb: /ocp/regulator-abb-ivahd@4ae07e34: failed to match any schema with compatible: ['ti,abb-v3']
   arch/arm/boot/dts/ti/omap/am57xx-beagle-x15-revc.dtb: /ocp/regulator-abb-dspeve@4ae07e30: failed to match any schema with compatible: ['ti,abb-v3']
   arch/arm/boot/dts/ti/omap/am57xx-beagle-x15-revc.dtb: /ocp/regulator-abb-gpu@4ae07de4: failed to match any schema with compatible: ['ti,abb-v3']
   arch/arm/boot/dts/ti/omap/am57xx-beagle-x15-revc.dtb: /ocp/crossbar@4a002a48: failed to match any schema with compatible: ['ti,irq-crossbar']
   arch/arm/boot/dts/ti/omap/am57xx-beagle-x15-revc.dtb: /ocp/target-module@58000000/dss@0: failed to match any schema with compatible: ['ti,dra7-dss']
   arch/arm/boot/dts/ti/omap/am57xx-beagle-x15-revc.dtb: /ocp/target-module@58000000/dss@0/target-module@1000/dispc@0: failed to match any schema with compatible: ['ti,dra7-dispc']
   arch/arm/boot/dts/ti/omap/am57xx-beagle-x15-revc.dtb: /ocp/target-module@58000000/dss@0/target-module@40000/encoder@0: failed to match any schema with compatible: ['ti,dra7-hdmi']
>> arch/arm/boot/dts/ti/omap/am57xx-beagle-x15-revc.dtb: aes@0 (ti,omap4-aes): 'clock-names', 'clocks' do not match any of the regexes: '^pinctrl-[0-9]+$'
   	from schema $id: http://devicetree.org/schemas/ti,omap2-aes.yaml#
>> arch/arm/boot/dts/ti/omap/am57xx-beagle-x15-revc.dtb: aes@0 (ti,omap4-aes): 'clock-names', 'clocks' do not match any of the regexes: '^pinctrl-[0-9]+$'
   	from schema $id: http://devicetree.org/schemas/ti,omap2-aes.yaml#
   arch/arm/boot/dts/ti/omap/am57xx-beagle-x15-revc.dtb: sham@0 (ti,omap5-sham): 'clock-names', 'clocks' do not match any of the regexes: '^pinctrl-[0-9]+$'
   	from schema $id: http://devicetree.org/schemas/crypto/ti,omap-sham.yaml#
   arch/arm/boot/dts/ti/omap/am57xx-beagle-x15-revc.dtb: sham@0 (ti,omap5-sham): 'ti,hwmods' is a required property
   	from schema $id: http://devicetree.org/schemas/crypto/ti,omap-sham.yaml#
   arch/arm/boot/dts/ti/omap/am57xx-beagle-x15-revc.dtb: sham@0 (ti,omap5-sham): 'clock-names', 'clocks' do not match any of the regexes: '^pinctrl-[0-9]+$'
   	from schema $id: http://devicetree.org/schemas/crypto/ti,omap-sham.yaml#
   arch/arm/boot/dts/ti/omap/am57xx-beagle-x15-revc.dtb: sham@0 (ti,omap5-sham): 'ti,hwmods' is a required property
   	from schema $id: http://devicetree.org/schemas/crypto/ti,omap-sham.yaml#
   arch/arm/boot/dts/ti/omap/am57xx-beagle-x15-revc.dtb: /ocp/target-module@5a000000/iva: failed to match any schema with compatible: ['ti,ivahd']
--
   arch/arm/boot/dts/ti/omap/am5729-beagleboneai.dtb: /ocp/target-module@58882000/mmu@0: failed to match any schema with compatible: ['ti,dra7-iommu']
   arch/arm/boot/dts/ti/omap/am5729-beagleboneai.dtb: /ocp/target-module@55082000/mmu@0: failed to match any schema with compatible: ['ti,dra7-iommu']
   arch/arm/boot/dts/ti/omap/am5729-beagleboneai.dtb: /ocp/regulator-abb-mpu@4ae07ddc: failed to match any schema with compatible: ['ti,abb-v3']
   arch/arm/boot/dts/ti/omap/am5729-beagleboneai.dtb: /ocp/regulator-abb-ivahd@4ae07e34: failed to match any schema with compatible: ['ti,abb-v3']
   arch/arm/boot/dts/ti/omap/am5729-beagleboneai.dtb: /ocp/regulator-abb-dspeve@4ae07e30: failed to match any schema with compatible: ['ti,abb-v3']
   arch/arm/boot/dts/ti/omap/am5729-beagleboneai.dtb: /ocp/regulator-abb-gpu@4ae07de4: failed to match any schema with compatible: ['ti,abb-v3']
   arch/arm/boot/dts/ti/omap/am5729-beagleboneai.dtb: /ocp/crossbar@4a002a48: failed to match any schema with compatible: ['ti,irq-crossbar']
   arch/arm/boot/dts/ti/omap/am5729-beagleboneai.dtb: /ocp/target-module@58000000/dss@0: failed to match any schema with compatible: ['ti,dra7-dss']
   arch/arm/boot/dts/ti/omap/am5729-beagleboneai.dtb: /ocp/target-module@58000000/dss@0/target-module@1000/dispc@0: failed to match any schema with compatible: ['ti,dra7-dispc']
   arch/arm/boot/dts/ti/omap/am5729-beagleboneai.dtb: /ocp/target-module@58000000/dss@0/target-module@40000/encoder@0: failed to match any schema with compatible: ['ti,dra7-hdmi']
>> arch/arm/boot/dts/ti/omap/am5729-beagleboneai.dtb: aes@0 (ti,omap4-aes): 'clock-names', 'clocks' do not match any of the regexes: '^pinctrl-[0-9]+$'
   	from schema $id: http://devicetree.org/schemas/ti,omap2-aes.yaml#
>> arch/arm/boot/dts/ti/omap/am5729-beagleboneai.dtb: aes@0 (ti,omap4-aes): 'clock-names', 'clocks' do not match any of the regexes: '^pinctrl-[0-9]+$'
   	from schema $id: http://devicetree.org/schemas/ti,omap2-aes.yaml#
   arch/arm/boot/dts/ti/omap/am5729-beagleboneai.dtb: sham@0 (ti,omap5-sham): 'clock-names', 'clocks' do not match any of the regexes: '^pinctrl-[0-9]+$'
   	from schema $id: http://devicetree.org/schemas/crypto/ti,omap-sham.yaml#
   arch/arm/boot/dts/ti/omap/am5729-beagleboneai.dtb: sham@0 (ti,omap5-sham): 'ti,hwmods' is a required property
   	from schema $id: http://devicetree.org/schemas/crypto/ti,omap-sham.yaml#
   arch/arm/boot/dts/ti/omap/am5729-beagleboneai.dtb: sham@0 (ti,omap5-sham): 'clock-names', 'clocks' do not match any of the regexes: '^pinctrl-[0-9]+$'
   	from schema $id: http://devicetree.org/schemas/crypto/ti,omap-sham.yaml#
   arch/arm/boot/dts/ti/omap/am5729-beagleboneai.dtb: sham@0 (ti,omap5-sham): 'ti,hwmods' is a required property
   	from schema $id: http://devicetree.org/schemas/crypto/ti,omap-sham.yaml#
   arch/arm/boot/dts/ti/omap/am5729-beagleboneai.dtb: /ocp/target-module@5a000000/iva: failed to match any schema with compatible: ['ti,ivahd']
--
   arch/arm/boot/dts/ti/omap/am57xx-cl-som-am57x.dtb: /ocp/target-module@58882000/mmu@0: failed to match any schema with compatible: ['ti,dra7-iommu']
   arch/arm/boot/dts/ti/omap/am57xx-cl-som-am57x.dtb: /ocp/target-module@55082000/mmu@0: failed to match any schema with compatible: ['ti,dra7-iommu']
   arch/arm/boot/dts/ti/omap/am57xx-cl-som-am57x.dtb: /ocp/regulator-abb-mpu@4ae07ddc: failed to match any schema with compatible: ['ti,abb-v3']
   arch/arm/boot/dts/ti/omap/am57xx-cl-som-am57x.dtb: /ocp/regulator-abb-ivahd@4ae07e34: failed to match any schema with compatible: ['ti,abb-v3']
   arch/arm/boot/dts/ti/omap/am57xx-cl-som-am57x.dtb: /ocp/regulator-abb-dspeve@4ae07e30: failed to match any schema with compatible: ['ti,abb-v3']
   arch/arm/boot/dts/ti/omap/am57xx-cl-som-am57x.dtb: /ocp/regulator-abb-gpu@4ae07de4: failed to match any schema with compatible: ['ti,abb-v3']
   arch/arm/boot/dts/ti/omap/am57xx-cl-som-am57x.dtb: /ocp/crossbar@4a002a48: failed to match any schema with compatible: ['ti,irq-crossbar']
   arch/arm/boot/dts/ti/omap/am57xx-cl-som-am57x.dtb: /ocp/target-module@58000000/dss@0: failed to match any schema with compatible: ['ti,dra7-dss']
   arch/arm/boot/dts/ti/omap/am57xx-cl-som-am57x.dtb: /ocp/target-module@58000000/dss@0/target-module@1000/dispc@0: failed to match any schema with compatible: ['ti,dra7-dispc']
   arch/arm/boot/dts/ti/omap/am57xx-cl-som-am57x.dtb: /ocp/target-module@58000000/dss@0/target-module@40000/encoder@0: failed to match any schema with compatible: ['ti,dra7-hdmi']
>> arch/arm/boot/dts/ti/omap/am57xx-cl-som-am57x.dtb: aes@0 (ti,omap4-aes): 'clock-names', 'clocks' do not match any of the regexes: '^pinctrl-[0-9]+$'
   	from schema $id: http://devicetree.org/schemas/ti,omap2-aes.yaml#
>> arch/arm/boot/dts/ti/omap/am57xx-cl-som-am57x.dtb: aes@0 (ti,omap4-aes): 'clock-names', 'clocks' do not match any of the regexes: '^pinctrl-[0-9]+$'
   	from schema $id: http://devicetree.org/schemas/ti,omap2-aes.yaml#
   arch/arm/boot/dts/ti/omap/am57xx-cl-som-am57x.dtb: sham@0 (ti,omap5-sham): 'clock-names', 'clocks' do not match any of the regexes: '^pinctrl-[0-9]+$'
   	from schema $id: http://devicetree.org/schemas/crypto/ti,omap-sham.yaml#
   arch/arm/boot/dts/ti/omap/am57xx-cl-som-am57x.dtb: sham@0 (ti,omap5-sham): 'ti,hwmods' is a required property
   	from schema $id: http://devicetree.org/schemas/crypto/ti,omap-sham.yaml#
   arch/arm/boot/dts/ti/omap/am57xx-cl-som-am57x.dtb: sham@0 (ti,omap5-sham): 'clock-names', 'clocks' do not match any of the regexes: '^pinctrl-[0-9]+$'
   	from schema $id: http://devicetree.org/schemas/crypto/ti,omap-sham.yaml#
   arch/arm/boot/dts/ti/omap/am57xx-cl-som-am57x.dtb: sham@0 (ti,omap5-sham): 'ti,hwmods' is a required property
   	from schema $id: http://devicetree.org/schemas/crypto/ti,omap-sham.yaml#
   arch/arm/boot/dts/ti/omap/am57xx-cl-som-am57x.dtb: /ocp/target-module@5a000000/iva: failed to match any schema with compatible: ['ti,ivahd']
--
   arch/arm/boot/dts/ti/omap/am57xx-sbc-am57x.dtb: /ocp/target-module@58882000/mmu@0: failed to match any schema with compatible: ['ti,dra7-iommu']
   arch/arm/boot/dts/ti/omap/am57xx-sbc-am57x.dtb: /ocp/target-module@55082000/mmu@0: failed to match any schema with compatible: ['ti,dra7-iommu']
   arch/arm/boot/dts/ti/omap/am57xx-sbc-am57x.dtb: /ocp/regulator-abb-mpu@4ae07ddc: failed to match any schema with compatible: ['ti,abb-v3']
   arch/arm/boot/dts/ti/omap/am57xx-sbc-am57x.dtb: /ocp/regulator-abb-ivahd@4ae07e34: failed to match any schema with compatible: ['ti,abb-v3']
   arch/arm/boot/dts/ti/omap/am57xx-sbc-am57x.dtb: /ocp/regulator-abb-dspeve@4ae07e30: failed to match any schema with compatible: ['ti,abb-v3']
   arch/arm/boot/dts/ti/omap/am57xx-sbc-am57x.dtb: /ocp/regulator-abb-gpu@4ae07de4: failed to match any schema with compatible: ['ti,abb-v3']
   arch/arm/boot/dts/ti/omap/am57xx-sbc-am57x.dtb: /ocp/crossbar@4a002a48: failed to match any schema with compatible: ['ti,irq-crossbar']
   arch/arm/boot/dts/ti/omap/am57xx-sbc-am57x.dtb: /ocp/target-module@58000000/dss@0: failed to match any schema with compatible: ['ti,dra7-dss']
   arch/arm/boot/dts/ti/omap/am57xx-sbc-am57x.dtb: /ocp/target-module@58000000/dss@0/target-module@1000/dispc@0: failed to match any schema with compatible: ['ti,dra7-dispc']
   arch/arm/boot/dts/ti/omap/am57xx-sbc-am57x.dtb: /ocp/target-module@58000000/dss@0/target-module@40000/encoder@0: failed to match any schema with compatible: ['ti,dra7-hdmi']
>> arch/arm/boot/dts/ti/omap/am57xx-sbc-am57x.dtb: aes@0 (ti,omap4-aes): 'clock-names', 'clocks' do not match any of the regexes: '^pinctrl-[0-9]+$'
   	from schema $id: http://devicetree.org/schemas/ti,omap2-aes.yaml#
>> arch/arm/boot/dts/ti/omap/am57xx-sbc-am57x.dtb: aes@0 (ti,omap4-aes): 'clock-names', 'clocks' do not match any of the regexes: '^pinctrl-[0-9]+$'
   	from schema $id: http://devicetree.org/schemas/ti,omap2-aes.yaml#
   arch/arm/boot/dts/ti/omap/am57xx-sbc-am57x.dtb: sham@0 (ti,omap5-sham): 'clock-names', 'clocks' do not match any of the regexes: '^pinctrl-[0-9]+$'
   	from schema $id: http://devicetree.org/schemas/crypto/ti,omap-sham.yaml#
   arch/arm/boot/dts/ti/omap/am57xx-sbc-am57x.dtb: sham@0 (ti,omap5-sham): 'ti,hwmods' is a required property
   	from schema $id: http://devicetree.org/schemas/crypto/ti,omap-sham.yaml#
   arch/arm/boot/dts/ti/omap/am57xx-sbc-am57x.dtb: sham@0 (ti,omap5-sham): 'clock-names', 'clocks' do not match any of the regexes: '^pinctrl-[0-9]+$'
   	from schema $id: http://devicetree.org/schemas/crypto/ti,omap-sham.yaml#
   arch/arm/boot/dts/ti/omap/am57xx-sbc-am57x.dtb: sham@0 (ti,omap5-sham): 'ti,hwmods' is a required property
   	from schema $id: http://devicetree.org/schemas/crypto/ti,omap-sham.yaml#
   arch/arm/boot/dts/ti/omap/am57xx-sbc-am57x.dtb: /ocp/target-module@5a000000/iva: failed to match any schema with compatible: ['ti,ivahd']
--
   arch/arm/boot/dts/ti/omap/am574x-idk.dtb: /ocp/target-module@58882000/mmu@0: failed to match any schema with compatible: ['ti,dra7-iommu']
   arch/arm/boot/dts/ti/omap/am574x-idk.dtb: /ocp/target-module@55082000/mmu@0: failed to match any schema with compatible: ['ti,dra7-iommu']
   arch/arm/boot/dts/ti/omap/am574x-idk.dtb: /ocp/regulator-abb-mpu@4ae07ddc: failed to match any schema with compatible: ['ti,abb-v3']
   arch/arm/boot/dts/ti/omap/am574x-idk.dtb: /ocp/regulator-abb-ivahd@4ae07e34: failed to match any schema with compatible: ['ti,abb-v3']
   arch/arm/boot/dts/ti/omap/am574x-idk.dtb: /ocp/regulator-abb-dspeve@4ae07e30: failed to match any schema with compatible: ['ti,abb-v3']
   arch/arm/boot/dts/ti/omap/am574x-idk.dtb: /ocp/regulator-abb-gpu@4ae07de4: failed to match any schema with compatible: ['ti,abb-v3']
   arch/arm/boot/dts/ti/omap/am574x-idk.dtb: /ocp/crossbar@4a002a48: failed to match any schema with compatible: ['ti,irq-crossbar']
   arch/arm/boot/dts/ti/omap/am574x-idk.dtb: /ocp/target-module@58000000/dss@0: failed to match any schema with compatible: ['ti,dra7-dss']
   arch/arm/boot/dts/ti/omap/am574x-idk.dtb: /ocp/target-module@58000000/dss@0/target-module@1000/dispc@0: failed to match any schema with compatible: ['ti,dra7-dispc']
   arch/arm/boot/dts/ti/omap/am574x-idk.dtb: /ocp/target-module@58000000/dss@0/target-module@40000/encoder@0: failed to match any schema with compatible: ['ti,dra7-hdmi']
>> arch/arm/boot/dts/ti/omap/am574x-idk.dtb: aes@0 (ti,omap4-aes): 'clock-names', 'clocks' do not match any of the regexes: '^pinctrl-[0-9]+$'
   	from schema $id: http://devicetree.org/schemas/ti,omap2-aes.yaml#
>> arch/arm/boot/dts/ti/omap/am574x-idk.dtb: aes@0 (ti,omap4-aes): 'clock-names', 'clocks' do not match any of the regexes: '^pinctrl-[0-9]+$'
   	from schema $id: http://devicetree.org/schemas/ti,omap2-aes.yaml#
   arch/arm/boot/dts/ti/omap/am574x-idk.dtb: sham@0 (ti,omap5-sham): 'clock-names', 'clocks' do not match any of the regexes: '^pinctrl-[0-9]+$'
   	from schema $id: http://devicetree.org/schemas/crypto/ti,omap-sham.yaml#
   arch/arm/boot/dts/ti/omap/am574x-idk.dtb: sham@0 (ti,omap5-sham): 'ti,hwmods' is a required property
   	from schema $id: http://devicetree.org/schemas/crypto/ti,omap-sham.yaml#
   arch/arm/boot/dts/ti/omap/am574x-idk.dtb: sham@0 (ti,omap5-sham): 'clock-names', 'clocks' do not match any of the regexes: '^pinctrl-[0-9]+$'
   	from schema $id: http://devicetree.org/schemas/crypto/ti,omap-sham.yaml#
   arch/arm/boot/dts/ti/omap/am574x-idk.dtb: sham@0 (ti,omap5-sham): 'ti,hwmods' is a required property
   	from schema $id: http://devicetree.org/schemas/crypto/ti,omap-sham.yaml#
   arch/arm/boot/dts/ti/omap/am574x-idk.dtb: /ocp/target-module@5a000000/iva: failed to match any schema with compatible: ['ti,ivahd']
--
   arch/arm/boot/dts/ti/omap/dra7-evm.dtb: /ocp/target-module@58882000/mmu@0: failed to match any schema with compatible: ['ti,dra7-iommu']
   arch/arm/boot/dts/ti/omap/dra7-evm.dtb: /ocp/target-module@55082000/mmu@0: failed to match any schema with compatible: ['ti,dra7-iommu']
   arch/arm/boot/dts/ti/omap/dra7-evm.dtb: /ocp/regulator-abb-mpu@4ae07ddc: failed to match any schema with compatible: ['ti,abb-v3']
   arch/arm/boot/dts/ti/omap/dra7-evm.dtb: /ocp/regulator-abb-ivahd@4ae07e34: failed to match any schema with compatible: ['ti,abb-v3']
   arch/arm/boot/dts/ti/omap/dra7-evm.dtb: /ocp/regulator-abb-dspeve@4ae07e30: failed to match any schema with compatible: ['ti,abb-v3']
   arch/arm/boot/dts/ti/omap/dra7-evm.dtb: /ocp/regulator-abb-gpu@4ae07de4: failed to match any schema with compatible: ['ti,abb-v3']
   arch/arm/boot/dts/ti/omap/dra7-evm.dtb: /ocp/crossbar@4a002a48: failed to match any schema with compatible: ['ti,irq-crossbar']
   arch/arm/boot/dts/ti/omap/dra7-evm.dtb: /ocp/target-module@58000000/dss@0: failed to match any schema with compatible: ['ti,dra7-dss']
   arch/arm/boot/dts/ti/omap/dra7-evm.dtb: /ocp/target-module@58000000/dss@0/target-module@1000/dispc@0: failed to match any schema with compatible: ['ti,dra7-dispc']
   arch/arm/boot/dts/ti/omap/dra7-evm.dtb: /ocp/target-module@58000000/dss@0/target-module@40000/encoder@0: failed to match any schema with compatible: ['ti,dra7-hdmi']
>> arch/arm/boot/dts/ti/omap/dra7-evm.dtb: aes@0 (ti,omap4-aes): 'clock-names', 'clocks' do not match any of the regexes: '^pinctrl-[0-9]+$'
   	from schema $id: http://devicetree.org/schemas/ti,omap2-aes.yaml#
>> arch/arm/boot/dts/ti/omap/dra7-evm.dtb: aes@0 (ti,omap4-aes): 'clock-names', 'clocks' do not match any of the regexes: '^pinctrl-[0-9]+$'
   	from schema $id: http://devicetree.org/schemas/ti,omap2-aes.yaml#
   arch/arm/boot/dts/ti/omap/dra7-evm.dtb: sham@0 (ti,omap5-sham): 'clock-names', 'clocks' do not match any of the regexes: '^pinctrl-[0-9]+$'
   	from schema $id: http://devicetree.org/schemas/crypto/ti,omap-sham.yaml#
   arch/arm/boot/dts/ti/omap/dra7-evm.dtb: sham@0 (ti,omap5-sham): 'ti,hwmods' is a required property
   	from schema $id: http://devicetree.org/schemas/crypto/ti,omap-sham.yaml#
   arch/arm/boot/dts/ti/omap/dra7-evm.dtb: sham@0 (ti,omap5-sham): 'clock-names', 'clocks' do not match any of the regexes: '^pinctrl-[0-9]+$'
   	from schema $id: http://devicetree.org/schemas/crypto/ti,omap-sham.yaml#
   arch/arm/boot/dts/ti/omap/dra7-evm.dtb: sham@0 (ti,omap5-sham): 'ti,hwmods' is a required property
   	from schema $id: http://devicetree.org/schemas/crypto/ti,omap-sham.yaml#
   arch/arm/boot/dts/ti/omap/dra7-evm.dtb: /ocp/target-module@5a000000/iva: failed to match any schema with compatible: ['ti,ivahd']
--
   arch/arm/boot/dts/ti/omap/dra72-evm.dtb: /ocp/target-module@58882000/mmu@0: failed to match any schema with compatible: ['ti,dra7-iommu']
   arch/arm/boot/dts/ti/omap/dra72-evm.dtb: /ocp/target-module@55082000/mmu@0: failed to match any schema with compatible: ['ti,dra7-iommu']
   arch/arm/boot/dts/ti/omap/dra72-evm.dtb: /ocp/regulator-abb-mpu@4ae07ddc: failed to match any schema with compatible: ['ti,abb-v3']
   arch/arm/boot/dts/ti/omap/dra72-evm.dtb: /ocp/regulator-abb-ivahd@4ae07e34: failed to match any schema with compatible: ['ti,abb-v3']
   arch/arm/boot/dts/ti/omap/dra72-evm.dtb: /ocp/regulator-abb-dspeve@4ae07e30: failed to match any schema with compatible: ['ti,abb-v3']
   arch/arm/boot/dts/ti/omap/dra72-evm.dtb: /ocp/regulator-abb-gpu@4ae07de4: failed to match any schema with compatible: ['ti,abb-v3']
   arch/arm/boot/dts/ti/omap/dra72-evm.dtb: /ocp/crossbar@4a002a48: failed to match any schema with compatible: ['ti,irq-crossbar']
   arch/arm/boot/dts/ti/omap/dra72-evm.dtb: /ocp/target-module@58000000/dss@0: failed to match any schema with compatible: ['ti,dra7-dss']
   arch/arm/boot/dts/ti/omap/dra72-evm.dtb: /ocp/target-module@58000000/dss@0/target-module@1000/dispc@0: failed to match any schema with compatible: ['ti,dra7-dispc']
   arch/arm/boot/dts/ti/omap/dra72-evm.dtb: /ocp/target-module@58000000/dss@0/target-module@40000/encoder@0: failed to match any schema with compatible: ['ti,dra7-hdmi']
>> arch/arm/boot/dts/ti/omap/dra72-evm.dtb: aes@0 (ti,omap4-aes): 'clock-names', 'clocks' do not match any of the regexes: '^pinctrl-[0-9]+$'
   	from schema $id: http://devicetree.org/schemas/ti,omap2-aes.yaml#
>> arch/arm/boot/dts/ti/omap/dra72-evm.dtb: aes@0 (ti,omap4-aes): 'clock-names', 'clocks' do not match any of the regexes: '^pinctrl-[0-9]+$'
   	from schema $id: http://devicetree.org/schemas/ti,omap2-aes.yaml#
   arch/arm/boot/dts/ti/omap/dra72-evm.dtb: sham@0 (ti,omap5-sham): 'clock-names', 'clocks' do not match any of the regexes: '^pinctrl-[0-9]+$'
   	from schema $id: http://devicetree.org/schemas/crypto/ti,omap-sham.yaml#
   arch/arm/boot/dts/ti/omap/dra72-evm.dtb: sham@0 (ti,omap5-sham): 'ti,hwmods' is a required property
   	from schema $id: http://devicetree.org/schemas/crypto/ti,omap-sham.yaml#
   arch/arm/boot/dts/ti/omap/dra72-evm.dtb: sham@0 (ti,omap5-sham): 'clock-names', 'clocks' do not match any of the regexes: '^pinctrl-[0-9]+$'
   	from schema $id: http://devicetree.org/schemas/crypto/ti,omap-sham.yaml#
   arch/arm/boot/dts/ti/omap/dra72-evm.dtb: sham@0 (ti,omap5-sham): 'ti,hwmods' is a required property
   	from schema $id: http://devicetree.org/schemas/crypto/ti,omap-sham.yaml#
   arch/arm/boot/dts/ti/omap/dra72-evm.dtb: /ocp/target-module@5a000000/iva: failed to match any schema with compatible: ['ti,ivahd']
--
   arch/arm/boot/dts/ti/omap/dra72-evm-revc.dtb: /ocp/target-module@58882000/mmu@0: failed to match any schema with compatible: ['ti,dra7-iommu']
   arch/arm/boot/dts/ti/omap/dra72-evm-revc.dtb: /ocp/target-module@55082000/mmu@0: failed to match any schema with compatible: ['ti,dra7-iommu']
   arch/arm/boot/dts/ti/omap/dra72-evm-revc.dtb: /ocp/regulator-abb-mpu@4ae07ddc: failed to match any schema with compatible: ['ti,abb-v3']
   arch/arm/boot/dts/ti/omap/dra72-evm-revc.dtb: /ocp/regulator-abb-ivahd@4ae07e34: failed to match any schema with compatible: ['ti,abb-v3']
   arch/arm/boot/dts/ti/omap/dra72-evm-revc.dtb: /ocp/regulator-abb-dspeve@4ae07e30: failed to match any schema with compatible: ['ti,abb-v3']
   arch/arm/boot/dts/ti/omap/dra72-evm-revc.dtb: /ocp/regulator-abb-gpu@4ae07de4: failed to match any schema with compatible: ['ti,abb-v3']
   arch/arm/boot/dts/ti/omap/dra72-evm-revc.dtb: /ocp/crossbar@4a002a48: failed to match any schema with compatible: ['ti,irq-crossbar']
   arch/arm/boot/dts/ti/omap/dra72-evm-revc.dtb: /ocp/target-module@58000000/dss@0: failed to match any schema with compatible: ['ti,dra7-dss']
   arch/arm/boot/dts/ti/omap/dra72-evm-revc.dtb: /ocp/target-module@58000000/dss@0/target-module@1000/dispc@0: failed to match any schema with compatible: ['ti,dra7-dispc']
   arch/arm/boot/dts/ti/omap/dra72-evm-revc.dtb: /ocp/target-module@58000000/dss@0/target-module@40000/encoder@0: failed to match any schema with compatible: ['ti,dra7-hdmi']
>> arch/arm/boot/dts/ti/omap/dra72-evm-revc.dtb: aes@0 (ti,omap4-aes): 'clock-names', 'clocks' do not match any of the regexes: '^pinctrl-[0-9]+$'
   	from schema $id: http://devicetree.org/schemas/ti,omap2-aes.yaml#
>> arch/arm/boot/dts/ti/omap/dra72-evm-revc.dtb: aes@0 (ti,omap4-aes): 'clock-names', 'clocks' do not match any of the regexes: '^pinctrl-[0-9]+$'
   	from schema $id: http://devicetree.org/schemas/ti,omap2-aes.yaml#
   arch/arm/boot/dts/ti/omap/dra72-evm-revc.dtb: sham@0 (ti,omap5-sham): 'clock-names', 'clocks' do not match any of the regexes: '^pinctrl-[0-9]+$'
   	from schema $id: http://devicetree.org/schemas/crypto/ti,omap-sham.yaml#
   arch/arm/boot/dts/ti/omap/dra72-evm-revc.dtb: sham@0 (ti,omap5-sham): 'ti,hwmods' is a required property
   	from schema $id: http://devicetree.org/schemas/crypto/ti,omap-sham.yaml#
   arch/arm/boot/dts/ti/omap/dra72-evm-revc.dtb: sham@0 (ti,omap5-sham): 'clock-names', 'clocks' do not match any of the regexes: '^pinctrl-[0-9]+$'
   	from schema $id: http://devicetree.org/schemas/crypto/ti,omap-sham.yaml#
   arch/arm/boot/dts/ti/omap/dra72-evm-revc.dtb: sham@0 (ti,omap5-sham): 'ti,hwmods' is a required property
   	from schema $id: http://devicetree.org/schemas/crypto/ti,omap-sham.yaml#
   arch/arm/boot/dts/ti/omap/dra72-evm-revc.dtb: /ocp/target-module@5a000000/iva: failed to match any schema with compatible: ['ti,ivahd']
--
   arch/arm/boot/dts/ti/omap/dra71-evm.dtb: /ocp/target-module@58882000/mmu@0: failed to match any schema with compatible: ['ti,dra7-iommu']
   arch/arm/boot/dts/ti/omap/dra71-evm.dtb: /ocp/target-module@55082000/mmu@0: failed to match any schema with compatible: ['ti,dra7-iommu']
   arch/arm/boot/dts/ti/omap/dra71-evm.dtb: /ocp/regulator-abb-mpu@4ae07ddc: failed to match any schema with compatible: ['ti,abb-v3']
   arch/arm/boot/dts/ti/omap/dra71-evm.dtb: /ocp/regulator-abb-ivahd@4ae07e34: failed to match any schema with compatible: ['ti,abb-v3']
   arch/arm/boot/dts/ti/omap/dra71-evm.dtb: /ocp/regulator-abb-dspeve@4ae07e30: failed to match any schema with compatible: ['ti,abb-v3']
   arch/arm/boot/dts/ti/omap/dra71-evm.dtb: /ocp/regulator-abb-gpu@4ae07de4: failed to match any schema with compatible: ['ti,abb-v3']
   arch/arm/boot/dts/ti/omap/dra71-evm.dtb: /ocp/crossbar@4a002a48: failed to match any schema with compatible: ['ti,irq-crossbar']
   arch/arm/boot/dts/ti/omap/dra71-evm.dtb: /ocp/target-module@58000000/dss@0: failed to match any schema with compatible: ['ti,dra7-dss']
   arch/arm/boot/dts/ti/omap/dra71-evm.dtb: /ocp/target-module@58000000/dss@0/target-module@1000/dispc@0: failed to match any schema with compatible: ['ti,dra7-dispc']
   arch/arm/boot/dts/ti/omap/dra71-evm.dtb: /ocp/target-module@58000000/dss@0/target-module@40000/encoder@0: failed to match any schema with compatible: ['ti,dra7-hdmi']
>> arch/arm/boot/dts/ti/omap/dra71-evm.dtb: aes@0 (ti,omap4-aes): 'clock-names', 'clocks' do not match any of the regexes: '^pinctrl-[0-9]+$'
   	from schema $id: http://devicetree.org/schemas/ti,omap2-aes.yaml#
>> arch/arm/boot/dts/ti/omap/dra71-evm.dtb: aes@0 (ti,omap4-aes): 'clock-names', 'clocks' do not match any of the regexes: '^pinctrl-[0-9]+$'
   	from schema $id: http://devicetree.org/schemas/ti,omap2-aes.yaml#
   arch/arm/boot/dts/ti/omap/dra71-evm.dtb: sham@0 (ti,omap5-sham): 'clock-names', 'clocks' do not match any of the regexes: '^pinctrl-[0-9]+$'
   	from schema $id: http://devicetree.org/schemas/crypto/ti,omap-sham.yaml#
   arch/arm/boot/dts/ti/omap/dra71-evm.dtb: sham@0 (ti,omap5-sham): 'ti,hwmods' is a required property
   	from schema $id: http://devicetree.org/schemas/crypto/ti,omap-sham.yaml#
   arch/arm/boot/dts/ti/omap/dra71-evm.dtb: sham@0 (ti,omap5-sham): 'clock-names', 'clocks' do not match any of the regexes: '^pinctrl-[0-9]+$'
   	from schema $id: http://devicetree.org/schemas/crypto/ti,omap-sham.yaml#
   arch/arm/boot/dts/ti/omap/dra71-evm.dtb: sham@0 (ti,omap5-sham): 'ti,hwmods' is a required property
   	from schema $id: http://devicetree.org/schemas/crypto/ti,omap-sham.yaml#
   arch/arm/boot/dts/ti/omap/dra71-evm.dtb: /ocp/target-module@5a000000/iva: failed to match any schema with compatible: ['ti,ivahd']
--
   arch/arm/boot/dts/ti/omap/dra76-evm.dtb: /ocp/target-module@58882000/mmu@0: failed to match any schema with compatible: ['ti,dra7-iommu']
   arch/arm/boot/dts/ti/omap/dra76-evm.dtb: /ocp/target-module@55082000/mmu@0: failed to match any schema with compatible: ['ti,dra7-iommu']
   arch/arm/boot/dts/ti/omap/dra76-evm.dtb: /ocp/regulator-abb-mpu@4ae07ddc: failed to match any schema with compatible: ['ti,abb-v3']
   arch/arm/boot/dts/ti/omap/dra76-evm.dtb: /ocp/regulator-abb-ivahd@4ae07e34: failed to match any schema with compatible: ['ti,abb-v3']
   arch/arm/boot/dts/ti/omap/dra76-evm.dtb: /ocp/regulator-abb-dspeve@4ae07e30: failed to match any schema with compatible: ['ti,abb-v3']
   arch/arm/boot/dts/ti/omap/dra76-evm.dtb: /ocp/regulator-abb-gpu@4ae07de4: failed to match any schema with compatible: ['ti,abb-v3']
   arch/arm/boot/dts/ti/omap/dra76-evm.dtb: /ocp/crossbar@4a002a48: failed to match any schema with compatible: ['ti,irq-crossbar']
   arch/arm/boot/dts/ti/omap/dra76-evm.dtb: /ocp/target-module@58000000/dss@0: failed to match any schema with compatible: ['ti,dra7-dss']
   arch/arm/boot/dts/ti/omap/dra76-evm.dtb: /ocp/target-module@58000000/dss@0/target-module@1000/dispc@0: failed to match any schema with compatible: ['ti,dra7-dispc']
   arch/arm/boot/dts/ti/omap/dra76-evm.dtb: /ocp/target-module@58000000/dss@0/target-module@40000/encoder@0: failed to match any schema with compatible: ['ti,dra7-hdmi']
>> arch/arm/boot/dts/ti/omap/dra76-evm.dtb: aes@0 (ti,omap4-aes): 'clock-names', 'clocks' do not match any of the regexes: '^pinctrl-[0-9]+$'
   	from schema $id: http://devicetree.org/schemas/ti,omap2-aes.yaml#
>> arch/arm/boot/dts/ti/omap/dra76-evm.dtb: aes@0 (ti,omap4-aes): 'clock-names', 'clocks' do not match any of the regexes: '^pinctrl-[0-9]+$'
   	from schema $id: http://devicetree.org/schemas/ti,omap2-aes.yaml#
   arch/arm/boot/dts/ti/omap/dra76-evm.dtb: sham@0 (ti,omap5-sham): 'clock-names', 'clocks' do not match any of the regexes: '^pinctrl-[0-9]+$'
   	from schema $id: http://devicetree.org/schemas/crypto/ti,omap-sham.yaml#
   arch/arm/boot/dts/ti/omap/dra76-evm.dtb: sham@0 (ti,omap5-sham): 'ti,hwmods' is a required property
   	from schema $id: http://devicetree.org/schemas/crypto/ti,omap-sham.yaml#
   arch/arm/boot/dts/ti/omap/dra76-evm.dtb: sham@0 (ti,omap5-sham): 'clock-names', 'clocks' do not match any of the regexes: '^pinctrl-[0-9]+$'
   	from schema $id: http://devicetree.org/schemas/crypto/ti,omap-sham.yaml#
   arch/arm/boot/dts/ti/omap/dra76-evm.dtb: sham@0 (ti,omap5-sham): 'ti,hwmods' is a required property
   	from schema $id: http://devicetree.org/schemas/crypto/ti,omap-sham.yaml#
   arch/arm/boot/dts/ti/omap/dra76-evm.dtb: /ocp/target-module@5a000000/iva: failed to match any schema with compatible: ['ti,ivahd']
--
   arch/arm/boot/dts/ti/omap/am57xx-evm.dtb: /ocp/target-module@58882000/mmu@0: failed to match any schema with compatible: ['ti,dra7-iommu']
   arch/arm/boot/dts/ti/omap/am57xx-evm.dtb: /ocp/target-module@55082000/mmu@0: failed to match any schema with compatible: ['ti,dra7-iommu']
   arch/arm/boot/dts/ti/omap/am57xx-evm.dtb: /ocp/regulator-abb-mpu@4ae07ddc: failed to match any schema with compatible: ['ti,abb-v3']
   arch/arm/boot/dts/ti/omap/am57xx-evm.dtb: /ocp/regulator-abb-ivahd@4ae07e34: failed to match any schema with compatible: ['ti,abb-v3']
   arch/arm/boot/dts/ti/omap/am57xx-evm.dtb: /ocp/regulator-abb-dspeve@4ae07e30: failed to match any schema with compatible: ['ti,abb-v3']
   arch/arm/boot/dts/ti/omap/am57xx-evm.dtb: /ocp/regulator-abb-gpu@4ae07de4: failed to match any schema with compatible: ['ti,abb-v3']
   arch/arm/boot/dts/ti/omap/am57xx-evm.dtb: /ocp/crossbar@4a002a48: failed to match any schema with compatible: ['ti,irq-crossbar']
   arch/arm/boot/dts/ti/omap/am57xx-evm.dtb: /ocp/target-module@58000000/dss@0: failed to match any schema with compatible: ['ti,dra7-dss']
   arch/arm/boot/dts/ti/omap/am57xx-evm.dtb: /ocp/target-module@58000000/dss@0/target-module@1000/dispc@0: failed to match any schema with compatible: ['ti,dra7-dispc']
   arch/arm/boot/dts/ti/omap/am57xx-evm.dtb: /ocp/target-module@58000000/dss@0/target-module@40000/encoder@0: failed to match any schema with compatible: ['ti,dra7-hdmi']
>> arch/arm/boot/dts/ti/omap/am57xx-evm.dtb: aes@0 (ti,omap4-aes): 'clock-names', 'clocks' do not match any of the regexes: '^pinctrl-[0-9]+$'
   	from schema $id: http://devicetree.org/schemas/ti,omap2-aes.yaml#
>> arch/arm/boot/dts/ti/omap/am57xx-evm.dtb: aes@0 (ti,omap4-aes): 'clock-names', 'clocks' do not match any of the regexes: '^pinctrl-[0-9]+$'
   	from schema $id: http://devicetree.org/schemas/ti,omap2-aes.yaml#
   arch/arm/boot/dts/ti/omap/am57xx-evm.dtb: sham@0 (ti,omap5-sham): 'clock-names', 'clocks' do not match any of the regexes: '^pinctrl-[0-9]+$'
   	from schema $id: http://devicetree.org/schemas/crypto/ti,omap-sham.yaml#
   arch/arm/boot/dts/ti/omap/am57xx-evm.dtb: sham@0 (ti,omap5-sham): 'ti,hwmods' is a required property
   	from schema $id: http://devicetree.org/schemas/crypto/ti,omap-sham.yaml#
   arch/arm/boot/dts/ti/omap/am57xx-evm.dtb: sham@0 (ti,omap5-sham): 'clock-names', 'clocks' do not match any of the regexes: '^pinctrl-[0-9]+$'
   	from schema $id: http://devicetree.org/schemas/crypto/ti,omap-sham.yaml#
   arch/arm/boot/dts/ti/omap/am57xx-evm.dtb: sham@0 (ti,omap5-sham): 'ti,hwmods' is a required property
   	from schema $id: http://devicetree.org/schemas/crypto/ti,omap-sham.yaml#
   arch/arm/boot/dts/ti/omap/am57xx-evm.dtb: /ocp/target-module@5a000000/iva: failed to match any schema with compatible: ['ti,ivahd']
--
   arch/arm/boot/dts/ti/omap/am572x-idk-overlays.dtb: /ocp/target-module@58882000/mmu@0: failed to match any schema with compatible: ['ti,dra7-iommu']
   arch/arm/boot/dts/ti/omap/am572x-idk-overlays.dtb: /ocp/target-module@55082000/mmu@0: failed to match any schema with compatible: ['ti,dra7-iommu']
   arch/arm/boot/dts/ti/omap/am572x-idk-overlays.dtb: /ocp/regulator-abb-mpu@4ae07ddc: failed to match any schema with compatible: ['ti,abb-v3']
   arch/arm/boot/dts/ti/omap/am572x-idk-overlays.dtb: /ocp/regulator-abb-ivahd@4ae07e34: failed to match any schema with compatible: ['ti,abb-v3']
   arch/arm/boot/dts/ti/omap/am572x-idk-overlays.dtb: /ocp/regulator-abb-dspeve@4ae07e30: failed to match any schema with compatible: ['ti,abb-v3']
   arch/arm/boot/dts/ti/omap/am572x-idk-overlays.dtb: /ocp/regulator-abb-gpu@4ae07de4: failed to match any schema with compatible: ['ti,abb-v3']
   arch/arm/boot/dts/ti/omap/am572x-idk-overlays.dtb: /ocp/crossbar@4a002a48: failed to match any schema with compatible: ['ti,irq-crossbar']
   arch/arm/boot/dts/ti/omap/am572x-idk-overlays.dtb: /ocp/target-module@58000000/dss@0: failed to match any schema with compatible: ['ti,dra7-dss']
   arch/arm/boot/dts/ti/omap/am572x-idk-overlays.dtb: /ocp/target-module@58000000/dss@0/target-module@1000/dispc@0: failed to match any schema with compatible: ['ti,dra7-dispc']
   arch/arm/boot/dts/ti/omap/am572x-idk-overlays.dtb: /ocp/target-module@58000000/dss@0/target-module@40000/encoder@0: failed to match any schema with compatible: ['ti,dra7-hdmi']
>> arch/arm/boot/dts/ti/omap/am572x-idk-overlays.dtb: aes@0 (ti,omap4-aes): 'clock-names', 'clocks' do not match any of the regexes: '^pinctrl-[0-9]+$'
   	from schema $id: http://devicetree.org/schemas/ti,omap2-aes.yaml#
>> arch/arm/boot/dts/ti/omap/am572x-idk-overlays.dtb: aes@0 (ti,omap4-aes): 'clock-names', 'clocks' do not match any of the regexes: '^pinctrl-[0-9]+$'
   	from schema $id: http://devicetree.org/schemas/ti,omap2-aes.yaml#
   arch/arm/boot/dts/ti/omap/am572x-idk-overlays.dtb: sham@0 (ti,omap5-sham): 'clock-names', 'clocks' do not match any of the regexes: '^pinctrl-[0-9]+$'
   	from schema $id: http://devicetree.org/schemas/crypto/ti,omap-sham.yaml#
   arch/arm/boot/dts/ti/omap/am572x-idk-overlays.dtb: sham@0 (ti,omap5-sham): 'ti,hwmods' is a required property
   	from schema $id: http://devicetree.org/schemas/crypto/ti,omap-sham.yaml#
   arch/arm/boot/dts/ti/omap/am572x-idk-overlays.dtb: sham@0 (ti,omap5-sham): 'clock-names', 'clocks' do not match any of the regexes: '^pinctrl-[0-9]+$'
   	from schema $id: http://devicetree.org/schemas/crypto/ti,omap-sham.yaml#
   arch/arm/boot/dts/ti/omap/am572x-idk-overlays.dtb: sham@0 (ti,omap5-sham): 'ti,hwmods' is a required property
   	from schema $id: http://devicetree.org/schemas/crypto/ti,omap-sham.yaml#
   arch/arm/boot/dts/ti/omap/am572x-idk-overlays.dtb: /ocp/target-module@5a000000/iva: failed to match any schema with compatible: ['ti,ivahd']
--
   arch/arm/boot/dts/ti/omap/am571x-idk-overlays.dtb: /ocp/target-module@58882000/mmu@0: failed to match any schema with compatible: ['ti,dra7-iommu']
   arch/arm/boot/dts/ti/omap/am571x-idk-overlays.dtb: /ocp/target-module@55082000/mmu@0: failed to match any schema with compatible: ['ti,dra7-iommu']
   arch/arm/boot/dts/ti/omap/am571x-idk-overlays.dtb: /ocp/regulator-abb-mpu@4ae07ddc: failed to match any schema with compatible: ['ti,abb-v3']
   arch/arm/boot/dts/ti/omap/am571x-idk-overlays.dtb: /ocp/regulator-abb-ivahd@4ae07e34: failed to match any schema with compatible: ['ti,abb-v3']
   arch/arm/boot/dts/ti/omap/am571x-idk-overlays.dtb: /ocp/regulator-abb-dspeve@4ae07e30: failed to match any schema with compatible: ['ti,abb-v3']
   arch/arm/boot/dts/ti/omap/am571x-idk-overlays.dtb: /ocp/regulator-abb-gpu@4ae07de4: failed to match any schema with compatible: ['ti,abb-v3']
   arch/arm/boot/dts/ti/omap/am571x-idk-overlays.dtb: /ocp/crossbar@4a002a48: failed to match any schema with compatible: ['ti,irq-crossbar']
   arch/arm/boot/dts/ti/omap/am571x-idk-overlays.dtb: /ocp/target-module@58000000/dss@0: failed to match any schema with compatible: ['ti,dra7-dss']
   arch/arm/boot/dts/ti/omap/am571x-idk-overlays.dtb: /ocp/target-module@58000000/dss@0/target-module@1000/dispc@0: failed to match any schema with compatible: ['ti,dra7-dispc']
   arch/arm/boot/dts/ti/omap/am571x-idk-overlays.dtb: /ocp/target-module@58000000/dss@0/target-module@40000/encoder@0: failed to match any schema with compatible: ['ti,dra7-hdmi']
>> arch/arm/boot/dts/ti/omap/am571x-idk-overlays.dtb: aes@0 (ti,omap4-aes): 'clock-names', 'clocks' do not match any of the regexes: '^pinctrl-[0-9]+$'
   	from schema $id: http://devicetree.org/schemas/ti,omap2-aes.yaml#
>> arch/arm/boot/dts/ti/omap/am571x-idk-overlays.dtb: aes@0 (ti,omap4-aes): 'clock-names', 'clocks' do not match any of the regexes: '^pinctrl-[0-9]+$'
   	from schema $id: http://devicetree.org/schemas/ti,omap2-aes.yaml#
   arch/arm/boot/dts/ti/omap/am571x-idk-overlays.dtb: sham@0 (ti,omap5-sham): 'clock-names', 'clocks' do not match any of the regexes: '^pinctrl-[0-9]+$'
   	from schema $id: http://devicetree.org/schemas/crypto/ti,omap-sham.yaml#
   arch/arm/boot/dts/ti/omap/am571x-idk-overlays.dtb: sham@0 (ti,omap5-sham): 'ti,hwmods' is a required property
   	from schema $id: http://devicetree.org/schemas/crypto/ti,omap-sham.yaml#
   arch/arm/boot/dts/ti/omap/am571x-idk-overlays.dtb: sham@0 (ti,omap5-sham): 'clock-names', 'clocks' do not match any of the regexes: '^pinctrl-[0-9]+$'
   	from schema $id: http://devicetree.org/schemas/crypto/ti,omap-sham.yaml#
   arch/arm/boot/dts/ti/omap/am571x-idk-overlays.dtb: sham@0 (ti,omap5-sham): 'ti,hwmods' is a required property
   	from schema $id: http://devicetree.org/schemas/crypto/ti,omap-sham.yaml#
   arch/arm/boot/dts/ti/omap/am571x-idk-overlays.dtb: /ocp/target-module@5a000000/iva: failed to match any schema with compatible: ['ti,ivahd']
--
   arch/arm/boot/dts/ti/omap/am57xx-evm-reva3.dtb: /ocp/target-module@58882000/mmu@0: failed to match any schema with compatible: ['ti,dra7-iommu']
   arch/arm/boot/dts/ti/omap/am57xx-evm-reva3.dtb: /ocp/target-module@55082000/mmu@0: failed to match any schema with compatible: ['ti,dra7-iommu']
   arch/arm/boot/dts/ti/omap/am57xx-evm-reva3.dtb: /ocp/regulator-abb-mpu@4ae07ddc: failed to match any schema with compatible: ['ti,abb-v3']
   arch/arm/boot/dts/ti/omap/am57xx-evm-reva3.dtb: /ocp/regulator-abb-ivahd@4ae07e34: failed to match any schema with compatible: ['ti,abb-v3']
   arch/arm/boot/dts/ti/omap/am57xx-evm-reva3.dtb: /ocp/regulator-abb-dspeve@4ae07e30: failed to match any schema with compatible: ['ti,abb-v3']
   arch/arm/boot/dts/ti/omap/am57xx-evm-reva3.dtb: /ocp/regulator-abb-gpu@4ae07de4: failed to match any schema with compatible: ['ti,abb-v3']
   arch/arm/boot/dts/ti/omap/am57xx-evm-reva3.dtb: /ocp/crossbar@4a002a48: failed to match any schema with compatible: ['ti,irq-crossbar']
   arch/arm/boot/dts/ti/omap/am57xx-evm-reva3.dtb: /ocp/target-module@58000000/dss@0: failed to match any schema with compatible: ['ti,dra7-dss']
   arch/arm/boot/dts/ti/omap/am57xx-evm-reva3.dtb: /ocp/target-module@58000000/dss@0/target-module@1000/dispc@0: failed to match any schema with compatible: ['ti,dra7-dispc']
   arch/arm/boot/dts/ti/omap/am57xx-evm-reva3.dtb: /ocp/target-module@58000000/dss@0/target-module@40000/encoder@0: failed to match any schema with compatible: ['ti,dra7-hdmi']
>> arch/arm/boot/dts/ti/omap/am57xx-evm-reva3.dtb: aes@0 (ti,omap4-aes): 'clock-names', 'clocks' do not match any of the regexes: '^pinctrl-[0-9]+$'
   	from schema $id: http://devicetree.org/schemas/ti,omap2-aes.yaml#
>> arch/arm/boot/dts/ti/omap/am57xx-evm-reva3.dtb: aes@0 (ti,omap4-aes): 'clock-names', 'clocks' do not match any of the regexes: '^pinctrl-[0-9]+$'
   	from schema $id: http://devicetree.org/schemas/ti,omap2-aes.yaml#
   arch/arm/boot/dts/ti/omap/am57xx-evm-reva3.dtb: sham@0 (ti,omap5-sham): 'clock-names', 'clocks' do not match any of the regexes: '^pinctrl-[0-9]+$'
   	from schema $id: http://devicetree.org/schemas/crypto/ti,omap-sham.yaml#
   arch/arm/boot/dts/ti/omap/am57xx-evm-reva3.dtb: sham@0 (ti,omap5-sham): 'ti,hwmods' is a required property
   	from schema $id: http://devicetree.org/schemas/crypto/ti,omap-sham.yaml#
   arch/arm/boot/dts/ti/omap/am57xx-evm-reva3.dtb: sham@0 (ti,omap5-sham): 'clock-names', 'clocks' do not match any of the regexes: '^pinctrl-[0-9]+$'
   	from schema $id: http://devicetree.org/schemas/crypto/ti,omap-sham.yaml#
   arch/arm/boot/dts/ti/omap/am57xx-evm-reva3.dtb: sham@0 (ti,omap5-sham): 'ti,hwmods' is a required property
   	from schema $id: http://devicetree.org/schemas/crypto/ti,omap-sham.yaml#
   arch/arm/boot/dts/ti/omap/am57xx-evm-reva3.dtb: /ocp/target-module@5a000000/iva: failed to match any schema with compatible: ['ti,ivahd']

-- 
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH v2] dt-bindings: crypto: Convert ti,omap2-aes to DT schema
  2025-06-11 23:10 Rob Herring (Arm)
@ 2025-06-17  8:36 ` Krzysztof Kozlowski
  2025-06-23  9:18 ` Herbert Xu
  1 sibling, 0 replies; 4+ messages in thread
From: Krzysztof Kozlowski @ 2025-06-17  8:36 UTC (permalink / raw)
  To: Rob Herring (Arm)
  Cc: Herbert Xu, David S. Miller, Krzysztof Kozlowski, Conor Dooley,
	Aaro Koskinen, Andreas Kemnade, Kevin Hilman, Roger Quadros,
	Tony Lindgren, linux-crypto, devicetree, linux-kernel

On Wed, Jun 11, 2025 at 06:10:45PM GMT, Rob Herring (Arm) wrote:
> Convert the TI OMAP AES binding to DT schema format. It's a straight
> forward conversion.
> 
> Make "ti,hwmods" not required as it is deprecated and only used on
> OMAP2.
> 
> Signed-off-by: Rob Herring (Arm) <robh@kernel.org>
> ---

Reviewed-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>

Best regards,
Krzysztof


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH v2] dt-bindings: crypto: Convert ti,omap2-aes to DT schema
  2025-06-11 23:10 Rob Herring (Arm)
  2025-06-17  8:36 ` Krzysztof Kozlowski
@ 2025-06-23  9:18 ` Herbert Xu
  1 sibling, 0 replies; 4+ messages in thread
From: Herbert Xu @ 2025-06-23  9:18 UTC (permalink / raw)
  To: Rob Herring (Arm)
  Cc: David S. Miller, Krzysztof Kozlowski, Conor Dooley, Aaro Koskinen,
	Andreas Kemnade, Kevin Hilman, Roger Quadros, Tony Lindgren,
	linux-crypto, devicetree, linux-kernel

On Wed, Jun 11, 2025 at 06:10:45PM -0500, Rob Herring (Arm) wrote:
> Convert the TI OMAP AES binding to DT schema format. It's a straight
> forward conversion.
> 
> Make "ti,hwmods" not required as it is deprecated and only used on
> OMAP2.
> 
> Signed-off-by: Rob Herring (Arm) <robh@kernel.org>
> ---
> v2:
>  - Drop ti,hwmods from required
>  - Fix filename to be omap2, not omap4.
> ---
>  .../devicetree/bindings/crypto/omap-aes.txt   | 31 ----------
>  .../bindings/crypto/ti,omap2-aes.yaml         | 58 +++++++++++++++++++
>  2 files changed, 58 insertions(+), 31 deletions(-)
>  delete mode 100644 Documentation/devicetree/bindings/crypto/omap-aes.txt
>  create mode 100644 Documentation/devicetree/bindings/crypto/ti,omap2-aes.yaml

Patch applied.  Thanks.
-- 
Email: Herbert Xu <herbert@gondor.apana.org.au>
Home Page: http://gondor.apana.org.au/~herbert/
PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2025-06-23  9:19 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-06-14 13:00 [PATCH v2] dt-bindings: crypto: Convert ti,omap2-aes to DT schema kernel test robot
  -- strict thread matches above, loose matches on Subject: below --
2025-06-11 23:10 Rob Herring (Arm)
2025-06-17  8:36 ` Krzysztof Kozlowski
2025-06-23  9:18 ` Herbert Xu

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.