All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] dt-bindings: clock: ti: Convert mux.txt to json-schema
@ 2024-11-04 13:55 Andreas Kemnade
  2024-11-05 13:52 ` Rob Herring
  0 siblings, 1 reply; 7+ messages in thread
From: Andreas Kemnade @ 2024-11-04 13:55 UTC (permalink / raw)
  To: Michael Turquette, Krzysztof Kozlowski, Rob Herring, linux-kernel,
	linux-clk, linux-omap, Tero Kristo, Tony Lindgren,
	Andreas Kemnade, Conor Dooley, Stephen Boyd, devicetree

Convert the OMAP mux clock device tree binding to json-schema.
Specify the creator of the original binding as a maintainer.
Choose GPL-only license because original binding was also GPL.

Signed-off-by: Andreas Kemnade <andreas@kemnade.info>
---
 .../bindings/clock/ti/composite.txt           |   2 +-
 .../devicetree/bindings/clock/ti/mux.txt      |  78 -----------
 .../bindings/clock/ti/ti,mux-clock.yaml       | 123 ++++++++++++++++++
 3 files changed, 124 insertions(+), 79 deletions(-)
 delete mode 100644 Documentation/devicetree/bindings/clock/ti/mux.txt
 create mode 100644 Documentation/devicetree/bindings/clock/ti/ti,mux-clock.yaml

diff --git a/Documentation/devicetree/bindings/clock/ti/composite.txt b/Documentation/devicetree/bindings/clock/ti/composite.txt
index b02f22490dcb..238e6f7d74f8 100644
--- a/Documentation/devicetree/bindings/clock/ti/composite.txt
+++ b/Documentation/devicetree/bindings/clock/ti/composite.txt
@@ -16,7 +16,7 @@ merged to this clock. The component clocks shall be of one of the
 "ti,*composite*-clock" types.
 
 [1] Documentation/devicetree/bindings/clock/clock-bindings.txt
-[2] Documentation/devicetree/bindings/clock/ti/mux.txt
+[2] Documentation/devicetree/bindings/clock/ti/ti,mux-clock.yaml
 [3] Documentation/devicetree/bindings/clock/ti/ti,divider-clock.yaml
 [4] Documentation/devicetree/bindings/clock/ti/gate.txt
 
diff --git a/Documentation/devicetree/bindings/clock/ti/mux.txt b/Documentation/devicetree/bindings/clock/ti/mux.txt
deleted file mode 100644
index cd56d3c1c09f..000000000000
--- a/Documentation/devicetree/bindings/clock/ti/mux.txt
+++ /dev/null
@@ -1,78 +0,0 @@
-Binding for TI mux clock.
-
-This binding uses the common clock binding[1].  It assumes a
-register-mapped multiplexer with multiple input clock signals or
-parents, one of which can be selected as output.  This clock does not
-gate or adjust the parent rate via a divider or multiplier.
-
-By default the "clocks" property lists the parents in the same order
-as they are programmed into the register.  E.g:
-
-	clocks = <&foo_clock>, <&bar_clock>, <&baz_clock>;
-
-results in programming the register as follows:
-
-register value		selected parent clock
-0			foo_clock
-1			bar_clock
-2			baz_clock
-
-Some clock controller IPs do not allow a value of zero to be programmed
-into the register, instead indexing begins at 1.  The optional property
-"index-starts-at-one" modified the scheme as follows:
-
-register value		selected clock parent
-1			foo_clock
-2			bar_clock
-3			baz_clock
-
-The binding must provide the register to control the mux. Optionally
-the number of bits to shift the control field in the register can be
-supplied. If the shift value is missing it is the same as supplying
-a zero shift.
-
-[1] Documentation/devicetree/bindings/clock/clock-bindings.txt
-
-Required properties:
-- compatible : shall be "ti,mux-clock" or "ti,composite-mux-clock".
-- #clock-cells : from common clock binding; shall be set to 0.
-- clocks : link phandles of parent clocks
-- reg : register offset for register controlling adjustable mux
-
-Optional properties:
-- clock-output-names : from common clock binding.
-- ti,bit-shift : number of bits to shift the bit-mask, defaults to
-  0 if not present
-- ti,index-starts-at-one : valid input select programming starts at 1, not
-  zero
-- ti,set-rate-parent : clk_set_rate is propagated to parent clock,
-  not supported by the composite-mux-clock subtype
-- ti,latch-bit : latch the mux value to HW, only needed if the register
-  access requires this. As an example, dra7x DPLL_GMAC H14 muxing
-  implements such behavior.
-
-Examples:
-
-sys_clkin_ck: sys_clkin_ck@4a306110 {
-	#clock-cells = <0>;
-	compatible = "ti,mux-clock";
-	clocks = <&virt_12000000_ck>, <&virt_13000000_ck>, <&virt_16800000_ck>, <&virt_19200000_ck>, <&virt_26000000_ck>, <&virt_27000000_ck>, <&virt_38400000_ck>;
-	reg = <0x0110>;
-	ti,index-starts-at-one;
-};
-
-abe_dpll_bypass_clk_mux_ck: abe_dpll_bypass_clk_mux_ck@4a306108 {
-	#clock-cells = <0>;
-	compatible = "ti,mux-clock";
-	clocks = <&sys_clkin_ck>, <&sys_32k_ck>;
-	ti,bit-shift = <24>;
-	reg = <0x0108>;
-};
-
-mcbsp5_mux_fck: mcbsp5_mux_fck {
-	#clock-cells = <0>;
-	compatible = "ti,composite-mux-clock";
-	clocks = <&core_96m_fck>, <&mcbsp_clks>;
-	ti,bit-shift = <4>;
-	reg = <0x02d8>;
-};
diff --git a/Documentation/devicetree/bindings/clock/ti/ti,mux-clock.yaml b/Documentation/devicetree/bindings/clock/ti/ti,mux-clock.yaml
new file mode 100644
index 000000000000..b271ab86dde1
--- /dev/null
+++ b/Documentation/devicetree/bindings/clock/ti/ti,mux-clock.yaml
@@ -0,0 +1,123 @@
+# SPDX-License-Identifier: GPL-2.0-only
+%YAML 1.2
+---
+$id: http://devicetree.org/schemas/clock/ti/ti,mux-clock.yaml#
+$schema: http://devicetree.org/meta-schemas/core.yaml#
+
+title: Texas Instruments mux clock
+
+maintainers:
+  - Tero Kristo <kristo@kernel.org>
+
+description: |
+  This clock assumes a register-mapped multiplexer with multiple inpt clock
+  signals or parents, one of which can be selected as output. This clock does
+  not gate or adjust the parent rate via a divider or multiplier.
+
+  By default the "clocks" property lists the parents in the same order
+  as they are programmed into the register.  E.g:
+
+    clocks = <&foo_clock>, <&bar_clock>, <&baz_clock>;
+
+  results in programming the register as follows:
+
+  register value   selected parent clock
+  0                foo_clock
+  1                bar_clock
+  2                baz_clock
+
+  Some clock controller IPs do not allow a value of zero to be programmed
+  into the register, instead indexing begins at 1.  The optional property
+  "index-starts-at-one" modified the scheme as follows:
+
+  register value   selected clock parent
+  1                foo_clock
+  2                bar_clock
+  3                baz_clock
+
+  The binding must provide the register to control the mux. Optionally
+  the number of bits to shift the control field in the register can be
+  supplied. If the shift value is missing it is the same as supplying
+  a zero shift.
+
+properties:
+  compatible:
+    enum:
+      - ti,mux-clock
+      - ti,composite-mux-clock
+
+  "#clock-cells":
+    const: 0
+
+  clocks: true
+
+  clock-output-names:
+    maxItems: 1
+
+  reg:
+    maxItems: 1
+
+  ti,bit-shift:
+    $ref: /schemas/types.yaml#/definitions/uint32
+    description:
+      number of bits to shift the bit-mask, defaults to 0 if not present
+    maximum: 31
+    default: 0
+
+  ti,index-starts-at-one:
+    type: boolean
+    description:
+      valid input select programming starts at 1, not zero
+
+  ti,set-rate-parent:
+    type: boolean
+    description:
+      clk_set_rate is propagated to parent clock,
+      not supported by the composite-mux-clock subtype.
+  ti,latch-bit:
+    $ref: /schemas/types.yaml#/definitions/uint32
+    description:
+      latch the mux value to HW, only needed if the register
+      access requires this. As an example, dra7x DPLL_GMAC H14 muxing
+      implements such behavior.
+
+if:
+  properties:
+    compatible:
+      contains:
+        const: ti,composite-mux-clock
+then:
+  properties:
+    ti,set-rate-parent: false
+
+required:
+  - compatible
+  - "#clock-cells"
+  - clocks
+  - reg
+
+additionalProperties: false
+
+examples:
+  - |
+    bus {
+      #address-cells = <1>;
+      #size-cells = <0>;
+
+      clock-controller@110 {
+        #clock-cells = <0>;
+        compatible = "ti,mux-clock";
+        clocks = <&virt_12000000_ck>, <&virt_13000000_ck>, <&virt_16800000_ck>;
+        reg = <0x0110>;
+        ti,index-starts-at-one;
+        ti,set-rate-parent;
+      };
+
+      clock-controller@120 {
+        #clock-cells = <0>;
+        compatible = "ti,composite-mux-clock";
+        clocks = <&core_96m_fck>, <&mcbsp_clks>;
+        ti,bit-shift = <4>;
+        reg = <0x02d8>;
+      };
+    };
-- 
2.39.5


^ permalink raw reply related	[flat|nested] 7+ messages in thread
* Re: [PATCH] dt-bindings: clock: ti: Convert mux.txt to json-schema
@ 2024-11-07  8:54 kernel test robot
  0 siblings, 0 replies; 7+ messages in thread
From: kernel test robot @ 2024-11-07  8:54 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: <20241104135549.38486-1-andreas@kemnade.info>
References: <20241104135549.38486-1-andreas@kemnade.info>
TO: Andreas Kemnade <andreas@kemnade.info>
TO: Michael Turquette <mturquette@baylibre.com>
TO: Krzysztof Kozlowski <krzk@kernel.org>
TO: Rob Herring <robh@kernel.org>
TO: linux-kernel@vger.kernel.org
TO: linux-clk@vger.kernel.org
TO: linux-omap@vger.kernel.org
TO: Tero Kristo <kristo@kernel.org>
TO: Tony Lindgren <tony@atomide.com>
TO: Andreas Kemnade <andreas@kemnade.info>
TO: Conor Dooley <conor+dt@kernel.org>
TO: Stephen Boyd <sboyd@kernel.org>
TO: devicetree@vger.kernel.org

Hi Andreas,

kernel test robot noticed the following build warnings:

[auto build test WARNING on clk/clk-next]
[also build test WARNING on next-20241105]
[cannot apply to robh/for-next krzk-dt/for-next linus/master v6.12-rc6]
[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/Andreas-Kemnade/dt-bindings-clock-ti-Convert-mux-txt-to-json-schema/20241104-215728
base:   https://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git clk-next
patch link:    https://lore.kernel.org/r/20241104135549.38486-1-andreas%40kemnade.info
patch subject: [PATCH] dt-bindings: clock: ti: Convert mux.txt to json-schema
:::::: branch date: 3 days ago
:::::: commit date: 3 days ago
config: arm-randconfig-052-20241105 (https://download.01.org/0day-ci/archive/20241107/202411071630.ktrIyJlt-lkp@intel.com/config)
compiler: arm-linux-gnueabi-gcc (GCC) 14.1.0
dtschema version: 2024.10.dev6+g12c3cd5
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20241107/202411071630.ktrIyJlt-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/202411071630.ktrIyJlt-lkp@intel.com/

dtcheck warnings: (new ones prefixed by >>)
   arch/arm/boot/dts/ti/omap/am571x-idk.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clock@760: failed to match any schema with compatible: ['ti,omap4-cm']
   arch/arm/boot/dts/ti/omap/am571x-idk.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clock@760/clock@0: failed to match any schema with compatible: ['ti,clkctrl']
   arch/arm/boot/dts/ti/omap/am571x-idk.dtb: cm_core@0: $nodename:0: 'cm_core@0' 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/am571x-idk.dtb: cm_core@0: clockdomains: 'ranges' is a required property
   	from schema $id: http://devicetree.org/schemas/simple-bus.yaml#
   arch/arm/boot/dts/ti/omap/am571x-idk.dtb: cm_core@0: clocks: 'ranges' is a required property
   	from schema $id: http://devicetree.org/schemas/simple-bus.yaml#
   arch/arm/boot/dts/ti/omap/am571x-idk.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0: failed to match any schema with compatible: ['ti,dra7-cm-core', 'simple-bus']
   arch/arm/boot/dts/ti/omap/am571x-idk.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock@200: failed to match any schema with compatible: ['ti,omap4-dpll-clock']
>> arch/arm/boot/dts/ti/omap/am571x-idk.dtb: clock-apll-pcie-in-clk-mux-7@4ae06118: reg: [[540], [4]] is too long
   	from schema $id: http://devicetree.org/schemas/clock/ti/ti,mux-clock.yaml#
   arch/arm/boot/dts/ti/omap/am571x-idk.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock@21c: failed to match any schema with compatible: ['ti,dra7-apll-clock']
   arch/arm/boot/dts/ti/omap/am571x-idk.dtb: clock-optfclk-pciephy-div-8@4a00821c: ti,max-div: False schema does not allow 2
   	from schema $id: http://devicetree.org/schemas/clock/ti/ti,divider-clock.yaml#
   arch/arm/boot/dts/ti/omap/am571x-idk.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock@140: failed to match any schema with compatible: ['ti,omap4-dpll-clock']
   arch/arm/boot/dts/ti/omap/am571x-idk.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock@180: failed to match any schema with compatible: ['ti,omap4-dpll-j-type-clock']
   arch/arm/boot/dts/ti/omap/am571x-idk.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock-dpll-per-x2: failed to match any schema with compatible: ['ti,omap4-dpll-x2-clock']
   arch/arm/boot/dts/ti/omap/am571x-idk.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock-clkout2-8@6b0: failed to match any schema with compatible: ['ti,gate-clock']
   arch/arm/boot/dts/ti/omap/am571x-idk.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock-l3init-960m-gfclk-8@6c0: failed to match any schema with compatible: ['ti,gate-clock']
   arch/arm/boot/dts/ti/omap/am571x-idk.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock-usb-phy1-always-on-clk32k-8@640: failed to match any schema with compatible: ['ti,gate-clock']
--
   arch/arm/boot/dts/ti/omap/am572x-idk.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clock@760: failed to match any schema with compatible: ['ti,omap4-cm']
   arch/arm/boot/dts/ti/omap/am572x-idk.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clock@760/clock@0: failed to match any schema with compatible: ['ti,clkctrl']
   arch/arm/boot/dts/ti/omap/am572x-idk.dtb: cm_core@0: $nodename:0: 'cm_core@0' 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/am572x-idk.dtb: cm_core@0: clockdomains: 'ranges' is a required property
   	from schema $id: http://devicetree.org/schemas/simple-bus.yaml#
   arch/arm/boot/dts/ti/omap/am572x-idk.dtb: cm_core@0: clocks: 'ranges' is a required property
   	from schema $id: http://devicetree.org/schemas/simple-bus.yaml#
   arch/arm/boot/dts/ti/omap/am572x-idk.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0: failed to match any schema with compatible: ['ti,dra7-cm-core', 'simple-bus']
   arch/arm/boot/dts/ti/omap/am572x-idk.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock@200: failed to match any schema with compatible: ['ti,omap4-dpll-clock']
>> arch/arm/boot/dts/ti/omap/am572x-idk.dtb: clock-apll-pcie-in-clk-mux-7@4ae06118: reg: [[540], [4]] is too long
   	from schema $id: http://devicetree.org/schemas/clock/ti/ti,mux-clock.yaml#
   arch/arm/boot/dts/ti/omap/am572x-idk.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock@21c: failed to match any schema with compatible: ['ti,dra7-apll-clock']
   arch/arm/boot/dts/ti/omap/am572x-idk.dtb: clock-optfclk-pciephy-div-8@4a00821c: ti,max-div: False schema does not allow 2
   	from schema $id: http://devicetree.org/schemas/clock/ti/ti,divider-clock.yaml#
   arch/arm/boot/dts/ti/omap/am572x-idk.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock@140: failed to match any schema with compatible: ['ti,omap4-dpll-clock']
   arch/arm/boot/dts/ti/omap/am572x-idk.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock@180: failed to match any schema with compatible: ['ti,omap4-dpll-j-type-clock']
   arch/arm/boot/dts/ti/omap/am572x-idk.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock-dpll-per-x2: failed to match any schema with compatible: ['ti,omap4-dpll-x2-clock']
   arch/arm/boot/dts/ti/omap/am572x-idk.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock-clkout2-8@6b0: failed to match any schema with compatible: ['ti,gate-clock']
   arch/arm/boot/dts/ti/omap/am572x-idk.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock-l3init-960m-gfclk-8@6c0: failed to match any schema with compatible: ['ti,gate-clock']
   arch/arm/boot/dts/ti/omap/am572x-idk.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock-usb-phy1-always-on-clk32k-8@640: failed to match any schema with compatible: ['ti,gate-clock']
--
   arch/arm/boot/dts/ti/omap/am57xx-beagle-x15.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clock@760: failed to match any schema with compatible: ['ti,omap4-cm']
   arch/arm/boot/dts/ti/omap/am57xx-beagle-x15.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clock@760/clock@0: failed to match any schema with compatible: ['ti,clkctrl']
   arch/arm/boot/dts/ti/omap/am57xx-beagle-x15.dtb: cm_core@0: $nodename:0: 'cm_core@0' 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/am57xx-beagle-x15.dtb: cm_core@0: clockdomains: 'ranges' is a required property
   	from schema $id: http://devicetree.org/schemas/simple-bus.yaml#
   arch/arm/boot/dts/ti/omap/am57xx-beagle-x15.dtb: cm_core@0: clocks: 'ranges' is a required property
   	from schema $id: http://devicetree.org/schemas/simple-bus.yaml#
   arch/arm/boot/dts/ti/omap/am57xx-beagle-x15.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0: failed to match any schema with compatible: ['ti,dra7-cm-core', 'simple-bus']
   arch/arm/boot/dts/ti/omap/am57xx-beagle-x15.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock@200: failed to match any schema with compatible: ['ti,omap4-dpll-clock']
>> arch/arm/boot/dts/ti/omap/am57xx-beagle-x15.dtb: clock-apll-pcie-in-clk-mux-7@4ae06118: reg: [[540], [4]] is too long
   	from schema $id: http://devicetree.org/schemas/clock/ti/ti,mux-clock.yaml#
   arch/arm/boot/dts/ti/omap/am57xx-beagle-x15.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock@21c: failed to match any schema with compatible: ['ti,dra7-apll-clock']
   arch/arm/boot/dts/ti/omap/am57xx-beagle-x15.dtb: clock-optfclk-pciephy-div-8@4a00821c: ti,max-div: False schema does not allow 2
   	from schema $id: http://devicetree.org/schemas/clock/ti/ti,divider-clock.yaml#
   arch/arm/boot/dts/ti/omap/am57xx-beagle-x15.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock@140: failed to match any schema with compatible: ['ti,omap4-dpll-clock']
   arch/arm/boot/dts/ti/omap/am57xx-beagle-x15.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock@180: failed to match any schema with compatible: ['ti,omap4-dpll-j-type-clock']
   arch/arm/boot/dts/ti/omap/am57xx-beagle-x15.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock-dpll-per-x2: failed to match any schema with compatible: ['ti,omap4-dpll-x2-clock']
   arch/arm/boot/dts/ti/omap/am57xx-beagle-x15.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock-clkout2-8@6b0: failed to match any schema with compatible: ['ti,gate-clock']
   arch/arm/boot/dts/ti/omap/am57xx-beagle-x15.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock-l3init-960m-gfclk-8@6c0: failed to match any schema with compatible: ['ti,gate-clock']
   arch/arm/boot/dts/ti/omap/am57xx-beagle-x15.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock-usb-phy1-always-on-clk32k-8@640: failed to match any schema with compatible: ['ti,gate-clock']
--
   arch/arm/boot/dts/ti/omap/am57xx-beagle-x15-revb1.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clock@760: failed to match any schema with compatible: ['ti,omap4-cm']
   arch/arm/boot/dts/ti/omap/am57xx-beagle-x15-revb1.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clock@760/clock@0: failed to match any schema with compatible: ['ti,clkctrl']
   arch/arm/boot/dts/ti/omap/am57xx-beagle-x15-revb1.dtb: cm_core@0: $nodename:0: 'cm_core@0' 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/am57xx-beagle-x15-revb1.dtb: cm_core@0: clockdomains: 'ranges' is a required property
   	from schema $id: http://devicetree.org/schemas/simple-bus.yaml#
   arch/arm/boot/dts/ti/omap/am57xx-beagle-x15-revb1.dtb: cm_core@0: clocks: 'ranges' is a required property
   	from schema $id: http://devicetree.org/schemas/simple-bus.yaml#
   arch/arm/boot/dts/ti/omap/am57xx-beagle-x15-revb1.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0: failed to match any schema with compatible: ['ti,dra7-cm-core', 'simple-bus']
   arch/arm/boot/dts/ti/omap/am57xx-beagle-x15-revb1.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock@200: failed to match any schema with compatible: ['ti,omap4-dpll-clock']
>> arch/arm/boot/dts/ti/omap/am57xx-beagle-x15-revb1.dtb: clock-apll-pcie-in-clk-mux-7@4ae06118: reg: [[540], [4]] is too long
   	from schema $id: http://devicetree.org/schemas/clock/ti/ti,mux-clock.yaml#
   arch/arm/boot/dts/ti/omap/am57xx-beagle-x15-revb1.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock@21c: failed to match any schema with compatible: ['ti,dra7-apll-clock']
   arch/arm/boot/dts/ti/omap/am57xx-beagle-x15-revb1.dtb: clock-optfclk-pciephy-div-8@4a00821c: ti,max-div: False schema does not allow 2
   	from schema $id: http://devicetree.org/schemas/clock/ti/ti,divider-clock.yaml#
   arch/arm/boot/dts/ti/omap/am57xx-beagle-x15-revb1.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock@140: failed to match any schema with compatible: ['ti,omap4-dpll-clock']
   arch/arm/boot/dts/ti/omap/am57xx-beagle-x15-revb1.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock@180: failed to match any schema with compatible: ['ti,omap4-dpll-j-type-clock']
   arch/arm/boot/dts/ti/omap/am57xx-beagle-x15-revb1.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock-dpll-per-x2: failed to match any schema with compatible: ['ti,omap4-dpll-x2-clock']
   arch/arm/boot/dts/ti/omap/am57xx-beagle-x15-revb1.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock-clkout2-8@6b0: failed to match any schema with compatible: ['ti,gate-clock']
   arch/arm/boot/dts/ti/omap/am57xx-beagle-x15-revb1.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock-l3init-960m-gfclk-8@6c0: failed to match any schema with compatible: ['ti,gate-clock']
   arch/arm/boot/dts/ti/omap/am57xx-beagle-x15-revb1.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock-usb-phy1-always-on-clk32k-8@640: failed to match any schema with compatible: ['ti,gate-clock']
--
   arch/arm/boot/dts/ti/omap/am57xx-beagle-x15-revc.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clock@760: failed to match any schema with compatible: ['ti,omap4-cm']
   arch/arm/boot/dts/ti/omap/am57xx-beagle-x15-revc.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clock@760/clock@0: failed to match any schema with compatible: ['ti,clkctrl']
   arch/arm/boot/dts/ti/omap/am57xx-beagle-x15-revc.dtb: cm_core@0: $nodename:0: 'cm_core@0' 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/am57xx-beagle-x15-revc.dtb: cm_core@0: clockdomains: 'ranges' is a required property
   	from schema $id: http://devicetree.org/schemas/simple-bus.yaml#
   arch/arm/boot/dts/ti/omap/am57xx-beagle-x15-revc.dtb: cm_core@0: clocks: 'ranges' is a required property
   	from schema $id: http://devicetree.org/schemas/simple-bus.yaml#
   arch/arm/boot/dts/ti/omap/am57xx-beagle-x15-revc.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0: failed to match any schema with compatible: ['ti,dra7-cm-core', 'simple-bus']
   arch/arm/boot/dts/ti/omap/am57xx-beagle-x15-revc.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock@200: failed to match any schema with compatible: ['ti,omap4-dpll-clock']
>> arch/arm/boot/dts/ti/omap/am57xx-beagle-x15-revc.dtb: clock-apll-pcie-in-clk-mux-7@4ae06118: reg: [[540], [4]] is too long
   	from schema $id: http://devicetree.org/schemas/clock/ti/ti,mux-clock.yaml#
   arch/arm/boot/dts/ti/omap/am57xx-beagle-x15-revc.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock@21c: failed to match any schema with compatible: ['ti,dra7-apll-clock']
   arch/arm/boot/dts/ti/omap/am57xx-beagle-x15-revc.dtb: clock-optfclk-pciephy-div-8@4a00821c: ti,max-div: False schema does not allow 2
   	from schema $id: http://devicetree.org/schemas/clock/ti/ti,divider-clock.yaml#
   arch/arm/boot/dts/ti/omap/am57xx-beagle-x15-revc.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock@140: failed to match any schema with compatible: ['ti,omap4-dpll-clock']
   arch/arm/boot/dts/ti/omap/am57xx-beagle-x15-revc.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock@180: failed to match any schema with compatible: ['ti,omap4-dpll-j-type-clock']
   arch/arm/boot/dts/ti/omap/am57xx-beagle-x15-revc.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock-dpll-per-x2: failed to match any schema with compatible: ['ti,omap4-dpll-x2-clock']
   arch/arm/boot/dts/ti/omap/am57xx-beagle-x15-revc.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock-clkout2-8@6b0: failed to match any schema with compatible: ['ti,gate-clock']
   arch/arm/boot/dts/ti/omap/am57xx-beagle-x15-revc.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock-l3init-960m-gfclk-8@6c0: failed to match any schema with compatible: ['ti,gate-clock']
   arch/arm/boot/dts/ti/omap/am57xx-beagle-x15-revc.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock-usb-phy1-always-on-clk32k-8@640: failed to match any schema with compatible: ['ti,gate-clock']
--
   arch/arm/boot/dts/ti/omap/am5729-beagleboneai.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clock@760: failed to match any schema with compatible: ['ti,omap4-cm']
   arch/arm/boot/dts/ti/omap/am5729-beagleboneai.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clock@760/clock@0: failed to match any schema with compatible: ['ti,clkctrl']
   arch/arm/boot/dts/ti/omap/am5729-beagleboneai.dtb: cm_core@0: $nodename:0: 'cm_core@0' 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/am5729-beagleboneai.dtb: cm_core@0: clockdomains: 'ranges' is a required property
   	from schema $id: http://devicetree.org/schemas/simple-bus.yaml#
   arch/arm/boot/dts/ti/omap/am5729-beagleboneai.dtb: cm_core@0: clocks: 'ranges' is a required property
   	from schema $id: http://devicetree.org/schemas/simple-bus.yaml#
   arch/arm/boot/dts/ti/omap/am5729-beagleboneai.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0: failed to match any schema with compatible: ['ti,dra7-cm-core', 'simple-bus']
   arch/arm/boot/dts/ti/omap/am5729-beagleboneai.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock@200: failed to match any schema with compatible: ['ti,omap4-dpll-clock']
>> arch/arm/boot/dts/ti/omap/am5729-beagleboneai.dtb: clock-apll-pcie-in-clk-mux-7@4ae06118: reg: [[540], [4]] is too long
   	from schema $id: http://devicetree.org/schemas/clock/ti/ti,mux-clock.yaml#
   arch/arm/boot/dts/ti/omap/am5729-beagleboneai.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock@21c: failed to match any schema with compatible: ['ti,dra7-apll-clock']
   arch/arm/boot/dts/ti/omap/am5729-beagleboneai.dtb: clock-optfclk-pciephy-div-8@4a00821c: ti,max-div: False schema does not allow 2
   	from schema $id: http://devicetree.org/schemas/clock/ti/ti,divider-clock.yaml#
   arch/arm/boot/dts/ti/omap/am5729-beagleboneai.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock@140: failed to match any schema with compatible: ['ti,omap4-dpll-clock']
   arch/arm/boot/dts/ti/omap/am5729-beagleboneai.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock@180: failed to match any schema with compatible: ['ti,omap4-dpll-j-type-clock']
   arch/arm/boot/dts/ti/omap/am5729-beagleboneai.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock-dpll-per-x2: failed to match any schema with compatible: ['ti,omap4-dpll-x2-clock']
   arch/arm/boot/dts/ti/omap/am5729-beagleboneai.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock-clkout2-8@6b0: failed to match any schema with compatible: ['ti,gate-clock']
   arch/arm/boot/dts/ti/omap/am5729-beagleboneai.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock-l3init-960m-gfclk-8@6c0: failed to match any schema with compatible: ['ti,gate-clock']
   arch/arm/boot/dts/ti/omap/am5729-beagleboneai.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock-usb-phy1-always-on-clk32k-8@640: failed to match any schema with compatible: ['ti,gate-clock']
--
   arch/arm/boot/dts/ti/omap/am57xx-cl-som-am57x.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clock@760: failed to match any schema with compatible: ['ti,omap4-cm']
   arch/arm/boot/dts/ti/omap/am57xx-cl-som-am57x.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clock@760/clock@0: failed to match any schema with compatible: ['ti,clkctrl']
   arch/arm/boot/dts/ti/omap/am57xx-cl-som-am57x.dtb: cm_core@0: $nodename:0: 'cm_core@0' 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/am57xx-cl-som-am57x.dtb: cm_core@0: clockdomains: 'ranges' is a required property
   	from schema $id: http://devicetree.org/schemas/simple-bus.yaml#
   arch/arm/boot/dts/ti/omap/am57xx-cl-som-am57x.dtb: cm_core@0: clocks: 'ranges' is a required property
   	from schema $id: http://devicetree.org/schemas/simple-bus.yaml#
   arch/arm/boot/dts/ti/omap/am57xx-cl-som-am57x.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0: failed to match any schema with compatible: ['ti,dra7-cm-core', 'simple-bus']
   arch/arm/boot/dts/ti/omap/am57xx-cl-som-am57x.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock@200: failed to match any schema with compatible: ['ti,omap4-dpll-clock']
>> arch/arm/boot/dts/ti/omap/am57xx-cl-som-am57x.dtb: clock-apll-pcie-in-clk-mux-7@4ae06118: reg: [[540], [4]] is too long
   	from schema $id: http://devicetree.org/schemas/clock/ti/ti,mux-clock.yaml#
   arch/arm/boot/dts/ti/omap/am57xx-cl-som-am57x.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock@21c: failed to match any schema with compatible: ['ti,dra7-apll-clock']
   arch/arm/boot/dts/ti/omap/am57xx-cl-som-am57x.dtb: clock-optfclk-pciephy-div-8@4a00821c: ti,max-div: False schema does not allow 2
   	from schema $id: http://devicetree.org/schemas/clock/ti/ti,divider-clock.yaml#
   arch/arm/boot/dts/ti/omap/am57xx-cl-som-am57x.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock@140: failed to match any schema with compatible: ['ti,omap4-dpll-clock']
   arch/arm/boot/dts/ti/omap/am57xx-cl-som-am57x.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock@180: failed to match any schema with compatible: ['ti,omap4-dpll-j-type-clock']
   arch/arm/boot/dts/ti/omap/am57xx-cl-som-am57x.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock-dpll-per-x2: failed to match any schema with compatible: ['ti,omap4-dpll-x2-clock']
   arch/arm/boot/dts/ti/omap/am57xx-cl-som-am57x.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock-clkout2-8@6b0: failed to match any schema with compatible: ['ti,gate-clock']
   arch/arm/boot/dts/ti/omap/am57xx-cl-som-am57x.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock-l3init-960m-gfclk-8@6c0: failed to match any schema with compatible: ['ti,gate-clock']
   arch/arm/boot/dts/ti/omap/am57xx-cl-som-am57x.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock-usb-phy1-always-on-clk32k-8@640: failed to match any schema with compatible: ['ti,gate-clock']
--
   arch/arm/boot/dts/ti/omap/am57xx-sbc-am57x.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clock@760: failed to match any schema with compatible: ['ti,omap4-cm']
   arch/arm/boot/dts/ti/omap/am57xx-sbc-am57x.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clock@760/clock@0: failed to match any schema with compatible: ['ti,clkctrl']
   arch/arm/boot/dts/ti/omap/am57xx-sbc-am57x.dtb: cm_core@0: $nodename:0: 'cm_core@0' 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/am57xx-sbc-am57x.dtb: cm_core@0: clocks: 'ranges' is a required property
   	from schema $id: http://devicetree.org/schemas/simple-bus.yaml#
   arch/arm/boot/dts/ti/omap/am57xx-sbc-am57x.dtb: cm_core@0: clockdomains: 'ranges' is a required property
   	from schema $id: http://devicetree.org/schemas/simple-bus.yaml#
   arch/arm/boot/dts/ti/omap/am57xx-sbc-am57x.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0: failed to match any schema with compatible: ['ti,dra7-cm-core', 'simple-bus']
   arch/arm/boot/dts/ti/omap/am57xx-sbc-am57x.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock@200: failed to match any schema with compatible: ['ti,omap4-dpll-clock']
>> arch/arm/boot/dts/ti/omap/am57xx-sbc-am57x.dtb: clock-apll-pcie-in-clk-mux-7@4ae06118: reg: [[540], [4]] is too long
   	from schema $id: http://devicetree.org/schemas/clock/ti/ti,mux-clock.yaml#
   arch/arm/boot/dts/ti/omap/am57xx-sbc-am57x.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock@21c: failed to match any schema with compatible: ['ti,dra7-apll-clock']
   arch/arm/boot/dts/ti/omap/am57xx-sbc-am57x.dtb: clock-optfclk-pciephy-div-8@4a00821c: ti,max-div: False schema does not allow 2
   	from schema $id: http://devicetree.org/schemas/clock/ti/ti,divider-clock.yaml#
   arch/arm/boot/dts/ti/omap/am57xx-sbc-am57x.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock@140: failed to match any schema with compatible: ['ti,omap4-dpll-clock']
   arch/arm/boot/dts/ti/omap/am57xx-sbc-am57x.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock@180: failed to match any schema with compatible: ['ti,omap4-dpll-j-type-clock']
   arch/arm/boot/dts/ti/omap/am57xx-sbc-am57x.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock-dpll-per-x2: failed to match any schema with compatible: ['ti,omap4-dpll-x2-clock']
   arch/arm/boot/dts/ti/omap/am57xx-sbc-am57x.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock-clkout2-8@6b0: failed to match any schema with compatible: ['ti,gate-clock']
   arch/arm/boot/dts/ti/omap/am57xx-sbc-am57x.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock-l3init-960m-gfclk-8@6c0: failed to match any schema with compatible: ['ti,gate-clock']
   arch/arm/boot/dts/ti/omap/am57xx-sbc-am57x.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock-usb-phy1-always-on-clk32k-8@640: failed to match any schema with compatible: ['ti,gate-clock']
--
   arch/arm/boot/dts/ti/omap/am574x-idk.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clock@760: failed to match any schema with compatible: ['ti,omap4-cm']
   arch/arm/boot/dts/ti/omap/am574x-idk.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clock@760/clock@0: failed to match any schema with compatible: ['ti,clkctrl']
   arch/arm/boot/dts/ti/omap/am574x-idk.dtb: cm_core@0: $nodename:0: 'cm_core@0' 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/am574x-idk.dtb: cm_core@0: clockdomains: 'ranges' is a required property
   	from schema $id: http://devicetree.org/schemas/simple-bus.yaml#
   arch/arm/boot/dts/ti/omap/am574x-idk.dtb: cm_core@0: clocks: 'ranges' is a required property
   	from schema $id: http://devicetree.org/schemas/simple-bus.yaml#
   arch/arm/boot/dts/ti/omap/am574x-idk.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0: failed to match any schema with compatible: ['ti,dra7-cm-core', 'simple-bus']
   arch/arm/boot/dts/ti/omap/am574x-idk.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock@200: failed to match any schema with compatible: ['ti,omap4-dpll-clock']
>> arch/arm/boot/dts/ti/omap/am574x-idk.dtb: clock-apll-pcie-in-clk-mux-7@4ae06118: reg: [[540], [4]] is too long
   	from schema $id: http://devicetree.org/schemas/clock/ti/ti,mux-clock.yaml#
   arch/arm/boot/dts/ti/omap/am574x-idk.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock@21c: failed to match any schema with compatible: ['ti,dra7-apll-clock']
   arch/arm/boot/dts/ti/omap/am574x-idk.dtb: clock-optfclk-pciephy-div-8@4a00821c: ti,max-div: False schema does not allow 2
   	from schema $id: http://devicetree.org/schemas/clock/ti/ti,divider-clock.yaml#
   arch/arm/boot/dts/ti/omap/am574x-idk.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock@140: failed to match any schema with compatible: ['ti,omap4-dpll-clock']
   arch/arm/boot/dts/ti/omap/am574x-idk.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock@180: failed to match any schema with compatible: ['ti,omap4-dpll-j-type-clock']
   arch/arm/boot/dts/ti/omap/am574x-idk.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock-dpll-per-x2: failed to match any schema with compatible: ['ti,omap4-dpll-x2-clock']
   arch/arm/boot/dts/ti/omap/am574x-idk.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock-clkout2-8@6b0: failed to match any schema with compatible: ['ti,gate-clock']
   arch/arm/boot/dts/ti/omap/am574x-idk.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock-l3init-960m-gfclk-8@6c0: failed to match any schema with compatible: ['ti,gate-clock']
   arch/arm/boot/dts/ti/omap/am574x-idk.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock-usb-phy1-always-on-clk32k-8@640: failed to match any schema with compatible: ['ti,gate-clock']
--
   arch/arm/boot/dts/ti/omap/dra7-evm.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clock@760: failed to match any schema with compatible: ['ti,omap4-cm']
   arch/arm/boot/dts/ti/omap/dra7-evm.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clock@760/clock@0: failed to match any schema with compatible: ['ti,clkctrl']
   arch/arm/boot/dts/ti/omap/dra7-evm.dtb: cm_core@0: $nodename:0: 'cm_core@0' 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/dra7-evm.dtb: cm_core@0: clocks: 'ranges' is a required property
   	from schema $id: http://devicetree.org/schemas/simple-bus.yaml#
   arch/arm/boot/dts/ti/omap/dra7-evm.dtb: cm_core@0: clockdomains: 'ranges' is a required property
   	from schema $id: http://devicetree.org/schemas/simple-bus.yaml#
   arch/arm/boot/dts/ti/omap/dra7-evm.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0: failed to match any schema with compatible: ['ti,dra7-cm-core', 'simple-bus']
   arch/arm/boot/dts/ti/omap/dra7-evm.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock@200: failed to match any schema with compatible: ['ti,omap4-dpll-clock']
>> arch/arm/boot/dts/ti/omap/dra7-evm.dtb: clock-apll-pcie-in-clk-mux-7@4ae06118: reg: [[540], [4]] is too long
   	from schema $id: http://devicetree.org/schemas/clock/ti/ti,mux-clock.yaml#
   arch/arm/boot/dts/ti/omap/dra7-evm.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock@21c: failed to match any schema with compatible: ['ti,dra7-apll-clock']
   arch/arm/boot/dts/ti/omap/dra7-evm.dtb: clock-optfclk-pciephy-div-8@4a00821c: ti,max-div: False schema does not allow 2
   	from schema $id: http://devicetree.org/schemas/clock/ti/ti,divider-clock.yaml#
   arch/arm/boot/dts/ti/omap/dra7-evm.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock@140: failed to match any schema with compatible: ['ti,omap4-dpll-clock']
   arch/arm/boot/dts/ti/omap/dra7-evm.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock@180: failed to match any schema with compatible: ['ti,omap4-dpll-j-type-clock']
   arch/arm/boot/dts/ti/omap/dra7-evm.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock-dpll-per-x2: failed to match any schema with compatible: ['ti,omap4-dpll-x2-clock']
   arch/arm/boot/dts/ti/omap/dra7-evm.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock-clkout2-8@6b0: failed to match any schema with compatible: ['ti,gate-clock']
   arch/arm/boot/dts/ti/omap/dra7-evm.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock-l3init-960m-gfclk-8@6c0: failed to match any schema with compatible: ['ti,gate-clock']
   arch/arm/boot/dts/ti/omap/dra7-evm.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock-usb-phy1-always-on-clk32k-8@640: failed to match any schema with compatible: ['ti,gate-clock']
--
   arch/arm/boot/dts/ti/omap/dra72-evm.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clock@760: failed to match any schema with compatible: ['ti,omap4-cm']
   arch/arm/boot/dts/ti/omap/dra72-evm.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clock@760/clock@0: failed to match any schema with compatible: ['ti,clkctrl']
   arch/arm/boot/dts/ti/omap/dra72-evm.dtb: cm_core@0: $nodename:0: 'cm_core@0' 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/dra72-evm.dtb: cm_core@0: clocks: 'ranges' is a required property
   	from schema $id: http://devicetree.org/schemas/simple-bus.yaml#
   arch/arm/boot/dts/ti/omap/dra72-evm.dtb: cm_core@0: clockdomains: 'ranges' is a required property
   	from schema $id: http://devicetree.org/schemas/simple-bus.yaml#
   arch/arm/boot/dts/ti/omap/dra72-evm.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0: failed to match any schema with compatible: ['ti,dra7-cm-core', 'simple-bus']
   arch/arm/boot/dts/ti/omap/dra72-evm.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock@200: failed to match any schema with compatible: ['ti,omap4-dpll-clock']
>> arch/arm/boot/dts/ti/omap/dra72-evm.dtb: clock-apll-pcie-in-clk-mux-7@4ae06118: reg: [[540], [4]] is too long
   	from schema $id: http://devicetree.org/schemas/clock/ti/ti,mux-clock.yaml#
   arch/arm/boot/dts/ti/omap/dra72-evm.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock@21c: failed to match any schema with compatible: ['ti,dra7-apll-clock']
   arch/arm/boot/dts/ti/omap/dra72-evm.dtb: clock-optfclk-pciephy-div-8@4a00821c: ti,max-div: False schema does not allow 2
   	from schema $id: http://devicetree.org/schemas/clock/ti/ti,divider-clock.yaml#
   arch/arm/boot/dts/ti/omap/dra72-evm.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock@140: failed to match any schema with compatible: ['ti,omap4-dpll-clock']
   arch/arm/boot/dts/ti/omap/dra72-evm.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock@180: failed to match any schema with compatible: ['ti,omap4-dpll-j-type-clock']
   arch/arm/boot/dts/ti/omap/dra72-evm.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock-dpll-per-x2: failed to match any schema with compatible: ['ti,omap4-dpll-x2-clock']
   arch/arm/boot/dts/ti/omap/dra72-evm.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock-clkout2-8@6b0: failed to match any schema with compatible: ['ti,gate-clock']
   arch/arm/boot/dts/ti/omap/dra72-evm.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock-l3init-960m-gfclk-8@6c0: failed to match any schema with compatible: ['ti,gate-clock']
   arch/arm/boot/dts/ti/omap/dra72-evm.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock-usb-phy1-always-on-clk32k-8@640: failed to match any schema with compatible: ['ti,gate-clock']
--
   arch/arm/boot/dts/ti/omap/dra72-evm-revc.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clock@760: failed to match any schema with compatible: ['ti,omap4-cm']
   arch/arm/boot/dts/ti/omap/dra72-evm-revc.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clock@760/clock@0: failed to match any schema with compatible: ['ti,clkctrl']
   arch/arm/boot/dts/ti/omap/dra72-evm-revc.dtb: cm_core@0: $nodename:0: 'cm_core@0' 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/dra72-evm-revc.dtb: cm_core@0: clockdomains: 'ranges' is a required property
   	from schema $id: http://devicetree.org/schemas/simple-bus.yaml#
   arch/arm/boot/dts/ti/omap/dra72-evm-revc.dtb: cm_core@0: clocks: 'ranges' is a required property
   	from schema $id: http://devicetree.org/schemas/simple-bus.yaml#
   arch/arm/boot/dts/ti/omap/dra72-evm-revc.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0: failed to match any schema with compatible: ['ti,dra7-cm-core', 'simple-bus']
   arch/arm/boot/dts/ti/omap/dra72-evm-revc.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock@200: failed to match any schema with compatible: ['ti,omap4-dpll-clock']
>> arch/arm/boot/dts/ti/omap/dra72-evm-revc.dtb: clock-apll-pcie-in-clk-mux-7@4ae06118: reg: [[540], [4]] is too long
   	from schema $id: http://devicetree.org/schemas/clock/ti/ti,mux-clock.yaml#
   arch/arm/boot/dts/ti/omap/dra72-evm-revc.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock@21c: failed to match any schema with compatible: ['ti,dra7-apll-clock']
   arch/arm/boot/dts/ti/omap/dra72-evm-revc.dtb: clock-optfclk-pciephy-div-8@4a00821c: ti,max-div: False schema does not allow 2
   	from schema $id: http://devicetree.org/schemas/clock/ti/ti,divider-clock.yaml#
   arch/arm/boot/dts/ti/omap/dra72-evm-revc.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock@140: failed to match any schema with compatible: ['ti,omap4-dpll-clock']
   arch/arm/boot/dts/ti/omap/dra72-evm-revc.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock@180: failed to match any schema with compatible: ['ti,omap4-dpll-j-type-clock']
   arch/arm/boot/dts/ti/omap/dra72-evm-revc.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock-dpll-per-x2: failed to match any schema with compatible: ['ti,omap4-dpll-x2-clock']
   arch/arm/boot/dts/ti/omap/dra72-evm-revc.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock-clkout2-8@6b0: failed to match any schema with compatible: ['ti,gate-clock']
   arch/arm/boot/dts/ti/omap/dra72-evm-revc.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock-l3init-960m-gfclk-8@6c0: failed to match any schema with compatible: ['ti,gate-clock']
   arch/arm/boot/dts/ti/omap/dra72-evm-revc.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock-usb-phy1-always-on-clk32k-8@640: failed to match any schema with compatible: ['ti,gate-clock']
--
   arch/arm/boot/dts/ti/omap/dra71-evm.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clock@760: failed to match any schema with compatible: ['ti,omap4-cm']
   arch/arm/boot/dts/ti/omap/dra71-evm.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clock@760/clock@0: failed to match any schema with compatible: ['ti,clkctrl']
   arch/arm/boot/dts/ti/omap/dra71-evm.dtb: cm_core@0: $nodename:0: 'cm_core@0' 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/dra71-evm.dtb: cm_core@0: clocks: 'ranges' is a required property
   	from schema $id: http://devicetree.org/schemas/simple-bus.yaml#
   arch/arm/boot/dts/ti/omap/dra71-evm.dtb: cm_core@0: clockdomains: 'ranges' is a required property
   	from schema $id: http://devicetree.org/schemas/simple-bus.yaml#
   arch/arm/boot/dts/ti/omap/dra71-evm.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0: failed to match any schema with compatible: ['ti,dra7-cm-core', 'simple-bus']
   arch/arm/boot/dts/ti/omap/dra71-evm.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock@200: failed to match any schema with compatible: ['ti,omap4-dpll-clock']
>> arch/arm/boot/dts/ti/omap/dra71-evm.dtb: clock-apll-pcie-in-clk-mux-7@4ae06118: reg: [[540], [4]] is too long
   	from schema $id: http://devicetree.org/schemas/clock/ti/ti,mux-clock.yaml#
   arch/arm/boot/dts/ti/omap/dra71-evm.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock@21c: failed to match any schema with compatible: ['ti,dra7-apll-clock']
   arch/arm/boot/dts/ti/omap/dra71-evm.dtb: clock-optfclk-pciephy-div-8@4a00821c: ti,max-div: False schema does not allow 2
   	from schema $id: http://devicetree.org/schemas/clock/ti/ti,divider-clock.yaml#
   arch/arm/boot/dts/ti/omap/dra71-evm.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock@140: failed to match any schema with compatible: ['ti,omap4-dpll-clock']
   arch/arm/boot/dts/ti/omap/dra71-evm.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock@180: failed to match any schema with compatible: ['ti,omap4-dpll-j-type-clock']
   arch/arm/boot/dts/ti/omap/dra71-evm.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock-dpll-per-x2: failed to match any schema with compatible: ['ti,omap4-dpll-x2-clock']
   arch/arm/boot/dts/ti/omap/dra71-evm.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock-clkout2-8@6b0: failed to match any schema with compatible: ['ti,gate-clock']
   arch/arm/boot/dts/ti/omap/dra71-evm.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock-l3init-960m-gfclk-8@6c0: failed to match any schema with compatible: ['ti,gate-clock']
   arch/arm/boot/dts/ti/omap/dra71-evm.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock-usb-phy1-always-on-clk32k-8@640: failed to match any schema with compatible: ['ti,gate-clock']
--
   arch/arm/boot/dts/ti/omap/dra76-evm.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clock@760: failed to match any schema with compatible: ['ti,omap4-cm']
   arch/arm/boot/dts/ti/omap/dra76-evm.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clock@760/clock@0: failed to match any schema with compatible: ['ti,clkctrl']
   arch/arm/boot/dts/ti/omap/dra76-evm.dtb: cm_core@0: $nodename:0: 'cm_core@0' 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/dra76-evm.dtb: cm_core@0: clocks: 'ranges' is a required property
   	from schema $id: http://devicetree.org/schemas/simple-bus.yaml#
   arch/arm/boot/dts/ti/omap/dra76-evm.dtb: cm_core@0: clockdomains: 'ranges' is a required property
   	from schema $id: http://devicetree.org/schemas/simple-bus.yaml#
   arch/arm/boot/dts/ti/omap/dra76-evm.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0: failed to match any schema with compatible: ['ti,dra7-cm-core', 'simple-bus']
   arch/arm/boot/dts/ti/omap/dra76-evm.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock@200: failed to match any schema with compatible: ['ti,omap4-dpll-clock']
>> arch/arm/boot/dts/ti/omap/dra76-evm.dtb: clock-apll-pcie-in-clk-mux-7@4ae06118: reg: [[540], [4]] is too long
   	from schema $id: http://devicetree.org/schemas/clock/ti/ti,mux-clock.yaml#
   arch/arm/boot/dts/ti/omap/dra76-evm.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock@21c: failed to match any schema with compatible: ['ti,dra7-apll-clock']
   arch/arm/boot/dts/ti/omap/dra76-evm.dtb: clock-optfclk-pciephy-div-8@4a00821c: ti,max-div: False schema does not allow 2
   	from schema $id: http://devicetree.org/schemas/clock/ti/ti,divider-clock.yaml#
   arch/arm/boot/dts/ti/omap/dra76-evm.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock@140: failed to match any schema with compatible: ['ti,omap4-dpll-clock']
   arch/arm/boot/dts/ti/omap/dra76-evm.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock@180: failed to match any schema with compatible: ['ti,omap4-dpll-j-type-clock']
   arch/arm/boot/dts/ti/omap/dra76-evm.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock-dpll-per-x2: failed to match any schema with compatible: ['ti,omap4-dpll-x2-clock']
   arch/arm/boot/dts/ti/omap/dra76-evm.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock-clkout2-8@6b0: failed to match any schema with compatible: ['ti,gate-clock']
   arch/arm/boot/dts/ti/omap/dra76-evm.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock-l3init-960m-gfclk-8@6c0: failed to match any schema with compatible: ['ti,gate-clock']
   arch/arm/boot/dts/ti/omap/dra76-evm.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock-usb-phy1-always-on-clk32k-8@640: failed to match any schema with compatible: ['ti,gate-clock']
--
   arch/arm/boot/dts/ti/omap/am571x-idk-overlays.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clock@760: failed to match any schema with compatible: ['ti,omap4-cm']
   arch/arm/boot/dts/ti/omap/am571x-idk-overlays.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clock@760/clock@0: failed to match any schema with compatible: ['ti,clkctrl']
   arch/arm/boot/dts/ti/omap/am571x-idk-overlays.dtb: cm_core@0: $nodename:0: 'cm_core@0' 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/am571x-idk-overlays.dtb: cm_core@0: clockdomains: 'ranges' is a required property
   	from schema $id: http://devicetree.org/schemas/simple-bus.yaml#
   arch/arm/boot/dts/ti/omap/am571x-idk-overlays.dtb: cm_core@0: clocks: 'ranges' is a required property
   	from schema $id: http://devicetree.org/schemas/simple-bus.yaml#
   arch/arm/boot/dts/ti/omap/am571x-idk-overlays.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0: failed to match any schema with compatible: ['ti,dra7-cm-core', 'simple-bus']
   arch/arm/boot/dts/ti/omap/am571x-idk-overlays.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock@200: failed to match any schema with compatible: ['ti,omap4-dpll-clock']
>> arch/arm/boot/dts/ti/omap/am571x-idk-overlays.dtb: clock-apll-pcie-in-clk-mux-7@4ae06118: reg: [[540], [4]] is too long
   	from schema $id: http://devicetree.org/schemas/clock/ti/ti,mux-clock.yaml#
   arch/arm/boot/dts/ti/omap/am571x-idk-overlays.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock@21c: failed to match any schema with compatible: ['ti,dra7-apll-clock']
   arch/arm/boot/dts/ti/omap/am571x-idk-overlays.dtb: clock-optfclk-pciephy-div-8@4a00821c: ti,max-div: False schema does not allow 2
   	from schema $id: http://devicetree.org/schemas/clock/ti/ti,divider-clock.yaml#
   arch/arm/boot/dts/ti/omap/am571x-idk-overlays.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock@140: failed to match any schema with compatible: ['ti,omap4-dpll-clock']
   arch/arm/boot/dts/ti/omap/am571x-idk-overlays.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock@180: failed to match any schema with compatible: ['ti,omap4-dpll-j-type-clock']
   arch/arm/boot/dts/ti/omap/am571x-idk-overlays.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock-dpll-per-x2: failed to match any schema with compatible: ['ti,omap4-dpll-x2-clock']
   arch/arm/boot/dts/ti/omap/am571x-idk-overlays.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock-clkout2-8@6b0: failed to match any schema with compatible: ['ti,gate-clock']
   arch/arm/boot/dts/ti/omap/am571x-idk-overlays.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock-l3init-960m-gfclk-8@6c0: failed to match any schema with compatible: ['ti,gate-clock']
   arch/arm/boot/dts/ti/omap/am571x-idk-overlays.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock-usb-phy1-always-on-clk32k-8@640: failed to match any schema with compatible: ['ti,gate-clock']
--
   arch/arm/boot/dts/ti/omap/am57xx-evm.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clock@760: failed to match any schema with compatible: ['ti,omap4-cm']
   arch/arm/boot/dts/ti/omap/am57xx-evm.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clock@760/clock@0: failed to match any schema with compatible: ['ti,clkctrl']
   arch/arm/boot/dts/ti/omap/am57xx-evm.dtb: cm_core@0: $nodename:0: 'cm_core@0' 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/am57xx-evm.dtb: cm_core@0: clocks: 'ranges' is a required property
   	from schema $id: http://devicetree.org/schemas/simple-bus.yaml#
   arch/arm/boot/dts/ti/omap/am57xx-evm.dtb: cm_core@0: clockdomains: 'ranges' is a required property
   	from schema $id: http://devicetree.org/schemas/simple-bus.yaml#
   arch/arm/boot/dts/ti/omap/am57xx-evm.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0: failed to match any schema with compatible: ['ti,dra7-cm-core', 'simple-bus']
   arch/arm/boot/dts/ti/omap/am57xx-evm.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock@200: failed to match any schema with compatible: ['ti,omap4-dpll-clock']
>> arch/arm/boot/dts/ti/omap/am57xx-evm.dtb: clock-apll-pcie-in-clk-mux-7@4ae06118: reg: [[540], [4]] is too long
   	from schema $id: http://devicetree.org/schemas/clock/ti/ti,mux-clock.yaml#
   arch/arm/boot/dts/ti/omap/am57xx-evm.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock@21c: failed to match any schema with compatible: ['ti,dra7-apll-clock']
   arch/arm/boot/dts/ti/omap/am57xx-evm.dtb: clock-optfclk-pciephy-div-8@4a00821c: ti,max-div: False schema does not allow 2
   	from schema $id: http://devicetree.org/schemas/clock/ti/ti,divider-clock.yaml#
   arch/arm/boot/dts/ti/omap/am57xx-evm.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock@140: failed to match any schema with compatible: ['ti,omap4-dpll-clock']
   arch/arm/boot/dts/ti/omap/am57xx-evm.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock@180: failed to match any schema with compatible: ['ti,omap4-dpll-j-type-clock']
   arch/arm/boot/dts/ti/omap/am57xx-evm.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock-dpll-per-x2: failed to match any schema with compatible: ['ti,omap4-dpll-x2-clock']
   arch/arm/boot/dts/ti/omap/am57xx-evm.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock-clkout2-8@6b0: failed to match any schema with compatible: ['ti,gate-clock']
   arch/arm/boot/dts/ti/omap/am57xx-evm.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock-l3init-960m-gfclk-8@6c0: failed to match any schema with compatible: ['ti,gate-clock']
   arch/arm/boot/dts/ti/omap/am57xx-evm.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock-usb-phy1-always-on-clk32k-8@640: failed to match any schema with compatible: ['ti,gate-clock']
--
   arch/arm/boot/dts/ti/omap/am572x-idk-overlays.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clock@760: failed to match any schema with compatible: ['ti,omap4-cm']
   arch/arm/boot/dts/ti/omap/am572x-idk-overlays.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clock@760/clock@0: failed to match any schema with compatible: ['ti,clkctrl']
   arch/arm/boot/dts/ti/omap/am572x-idk-overlays.dtb: cm_core@0: $nodename:0: 'cm_core@0' 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/am572x-idk-overlays.dtb: cm_core@0: clockdomains: 'ranges' is a required property
   	from schema $id: http://devicetree.org/schemas/simple-bus.yaml#
   arch/arm/boot/dts/ti/omap/am572x-idk-overlays.dtb: cm_core@0: clocks: 'ranges' is a required property
   	from schema $id: http://devicetree.org/schemas/simple-bus.yaml#
   arch/arm/boot/dts/ti/omap/am572x-idk-overlays.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0: failed to match any schema with compatible: ['ti,dra7-cm-core', 'simple-bus']
   arch/arm/boot/dts/ti/omap/am572x-idk-overlays.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock@200: failed to match any schema with compatible: ['ti,omap4-dpll-clock']
>> arch/arm/boot/dts/ti/omap/am572x-idk-overlays.dtb: clock-apll-pcie-in-clk-mux-7@4ae06118: reg: [[540], [4]] is too long
   	from schema $id: http://devicetree.org/schemas/clock/ti/ti,mux-clock.yaml#
   arch/arm/boot/dts/ti/omap/am572x-idk-overlays.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock@21c: failed to match any schema with compatible: ['ti,dra7-apll-clock']
   arch/arm/boot/dts/ti/omap/am572x-idk-overlays.dtb: clock-optfclk-pciephy-div-8@4a00821c: ti,max-div: False schema does not allow 2
   	from schema $id: http://devicetree.org/schemas/clock/ti/ti,divider-clock.yaml#
   arch/arm/boot/dts/ti/omap/am572x-idk-overlays.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock@140: failed to match any schema with compatible: ['ti,omap4-dpll-clock']
   arch/arm/boot/dts/ti/omap/am572x-idk-overlays.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock@180: failed to match any schema with compatible: ['ti,omap4-dpll-j-type-clock']
   arch/arm/boot/dts/ti/omap/am572x-idk-overlays.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock-dpll-per-x2: failed to match any schema with compatible: ['ti,omap4-dpll-x2-clock']
   arch/arm/boot/dts/ti/omap/am572x-idk-overlays.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock-clkout2-8@6b0: failed to match any schema with compatible: ['ti,gate-clock']
   arch/arm/boot/dts/ti/omap/am572x-idk-overlays.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock-l3init-960m-gfclk-8@6c0: failed to match any schema with compatible: ['ti,gate-clock']
   arch/arm/boot/dts/ti/omap/am572x-idk-overlays.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock-usb-phy1-always-on-clk32k-8@640: failed to match any schema with compatible: ['ti,gate-clock']
--
   arch/arm/boot/dts/ti/omap/am57xx-evm-reva3.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clock@760: failed to match any schema with compatible: ['ti,omap4-cm']
   arch/arm/boot/dts/ti/omap/am57xx-evm-reva3.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clock@760/clock@0: failed to match any schema with compatible: ['ti,clkctrl']
   arch/arm/boot/dts/ti/omap/am57xx-evm-reva3.dtb: cm_core@0: $nodename:0: 'cm_core@0' 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/am57xx-evm-reva3.dtb: cm_core@0: clockdomains: 'ranges' is a required property
   	from schema $id: http://devicetree.org/schemas/simple-bus.yaml#
   arch/arm/boot/dts/ti/omap/am57xx-evm-reva3.dtb: cm_core@0: clocks: 'ranges' is a required property
   	from schema $id: http://devicetree.org/schemas/simple-bus.yaml#
   arch/arm/boot/dts/ti/omap/am57xx-evm-reva3.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0: failed to match any schema with compatible: ['ti,dra7-cm-core', 'simple-bus']
   arch/arm/boot/dts/ti/omap/am57xx-evm-reva3.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock@200: failed to match any schema with compatible: ['ti,omap4-dpll-clock']
>> arch/arm/boot/dts/ti/omap/am57xx-evm-reva3.dtb: clock-apll-pcie-in-clk-mux-7@4ae06118: reg: [[540], [4]] is too long
   	from schema $id: http://devicetree.org/schemas/clock/ti/ti,mux-clock.yaml#
   arch/arm/boot/dts/ti/omap/am57xx-evm-reva3.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock@21c: failed to match any schema with compatible: ['ti,dra7-apll-clock']
   arch/arm/boot/dts/ti/omap/am57xx-evm-reva3.dtb: clock-optfclk-pciephy-div-8@4a00821c: ti,max-div: False schema does not allow 2
   	from schema $id: http://devicetree.org/schemas/clock/ti/ti,divider-clock.yaml#
   arch/arm/boot/dts/ti/omap/am57xx-evm-reva3.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock@140: failed to match any schema with compatible: ['ti,omap4-dpll-clock']
   arch/arm/boot/dts/ti/omap/am57xx-evm-reva3.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock@180: failed to match any schema with compatible: ['ti,omap4-dpll-j-type-clock']
   arch/arm/boot/dts/ti/omap/am57xx-evm-reva3.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock-dpll-per-x2: failed to match any schema with compatible: ['ti,omap4-dpll-x2-clock']
   arch/arm/boot/dts/ti/omap/am57xx-evm-reva3.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock-clkout2-8@6b0: failed to match any schema with compatible: ['ti,gate-clock']
   arch/arm/boot/dts/ti/omap/am57xx-evm-reva3.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock-l3init-960m-gfclk-8@6c0: failed to match any schema with compatible: ['ti,gate-clock']
   arch/arm/boot/dts/ti/omap/am57xx-evm-reva3.dtb: /ocp/interconnect@4a000000/segment@0/target-module@8000/cm_core@0/clocks/clock-usb-phy1-always-on-clk32k-8@640: failed to match any schema with compatible: ['ti,gate-clock']

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

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

end of thread, other threads:[~2024-11-08 15:15 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-11-04 13:55 [PATCH] dt-bindings: clock: ti: Convert mux.txt to json-schema Andreas Kemnade
2024-11-05 13:52 ` Rob Herring
2024-11-07  6:58   ` Andreas Kemnade
2024-11-08 13:03     ` Roger Quadros
2024-11-08 14:48       ` Nishanth Menon
2024-11-08 15:15         ` Rob Herring
  -- strict thread matches above, loose matches on Subject: below --
2024-11-07  8:54 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.