* [PATCH] dt-bindings: clock: ti: Convert ti-clkctrl.txt to json-schema
@ 2025-03-05 22:47 Andreas Kemnade
2025-03-06 9:43 ` Krzysztof Kozlowski
2025-03-07 4:21 ` Tony Lindgren
0 siblings, 2 replies; 4+ messages in thread
From: Andreas Kemnade @ 2025-03-05 22:47 UTC (permalink / raw)
To: mturquette, sboyd, robh, krzk+dt, conor+dt, tony, linux-clk,
devicetree, linux-kernel, linux-omap
Cc: Andreas Kemnade
Convert the TI clkctrl clock device tree binding to json-schema.
Specify the creator of the original binding as a maintainer.
reg property is used mostly with one item, in am3xxx also with
an arbitrary number of items, so divert from the original binding
specifying two (probably meaning one address and one size).
The consumer part of the example is left out because the full consumer
node would be needed.
Signed-off-by: Andreas Kemnade <andreas@kemnade.info>
---
@Tony: you seem to be the only contributor to the txt binding,
so we could go with dual-licensing if you agree.
.../devicetree/bindings/clock/ti,clkctrl.yaml | 64 +++++++++++++++++++
1 file changed, 64 insertions(+)
create mode 100644 Documentation/devicetree/bindings/clock/ti,clkctrl.yaml
diff --git a/Documentation/devicetree/bindings/clock/ti,clkctrl.yaml b/Documentation/devicetree/bindings/clock/ti,clkctrl.yaml
new file mode 100644
index 0000000000000..bf4119c9c61fe
--- /dev/null
+++ b/Documentation/devicetree/bindings/clock/ti,clkctrl.yaml
@@ -0,0 +1,64 @@
+# SPDX-License-Identifier: GPL-2.0-only
+%YAML 1.2
+---
+$id: http://devicetree.org/schemas/clock/ti,clkctrl.yaml#
+$schema: http://devicetree.org/meta-schemas/core.yaml#
+
+title: Texas Instruments clkctrl clock
+
+maintainers:
+ - Tony Lindgren <tony@atomide.com>
+
+description: |
+ Texas Instruments SoCs can have a clkctrl clock controller for each
+ interconnect target module. The clkctrl clock controller manages functional
+ and interface clocks for each module. Each clkctrl controller can also
+ gate one or more optional functional clocks for a module, and can have one
+ or more clock muxes. There is a clkctrl clock controller typically for each
+ interconnect target module on omap4 and later variants.
+
+ The clock consumers can specify the index of the clkctrl clock using
+ the hardware offset from the clkctrl instance register space. The optional
+ clocks can be specified by clkctrl hardware offset and the index of the
+ optional clock.
+
+properties:
+ compatible:
+ enum:
+ - ti,clkctrl
+ - ti,clkctrl-l4-cfg
+ - ti,clkctrl-l4-per
+ - ti,clkctrl-l4-secure
+ - ti,clkctrl-l4-wkup
+
+ "#clock-cells":
+ const: 2
+
+ clock-output-names:
+ maxItems: 1
+
+ reg:
+ minItems: 1
+ maxItems: 8 # arbitrary, should be enough
+
+required:
+ - compatible
+ - "#clock-cells"
+ - clock-output-names
+ - reg
+
+additionalProperties: false
+
+examples:
+ - |
+ bus {
+ #address-cells = <1>;
+ #size-cells = <1>;
+
+ clock@20 {
+ compatible = "ti,clkctrl";
+ clock-output-names = "l4_per";
+ reg = <0x20 0x1b0>;
+ #clock-cells = <2>;
+ };
+ };
--
2.39.5
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] dt-bindings: clock: ti: Convert ti-clkctrl.txt to json-schema
2025-03-05 22:47 [PATCH] dt-bindings: clock: ti: Convert ti-clkctrl.txt to json-schema Andreas Kemnade
@ 2025-03-06 9:43 ` Krzysztof Kozlowski
2025-03-07 4:21 ` Tony Lindgren
1 sibling, 0 replies; 4+ messages in thread
From: Krzysztof Kozlowski @ 2025-03-06 9:43 UTC (permalink / raw)
To: Andreas Kemnade
Cc: mturquette, sboyd, robh, krzk+dt, conor+dt, tony, linux-clk,
devicetree, linux-kernel, linux-omap
On Wed, Mar 05, 2025 at 11:47:22PM +0100, Andreas Kemnade wrote:
> Convert the TI clkctrl clock device tree binding to json-schema.
I do not see conversion here - old TXT?
Best regards,
Krzysztof
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] dt-bindings: clock: ti: Convert ti-clkctrl.txt to json-schema
2025-03-05 22:47 [PATCH] dt-bindings: clock: ti: Convert ti-clkctrl.txt to json-schema Andreas Kemnade
2025-03-06 9:43 ` Krzysztof Kozlowski
@ 2025-03-07 4:21 ` Tony Lindgren
1 sibling, 0 replies; 4+ messages in thread
From: Tony Lindgren @ 2025-03-07 4:21 UTC (permalink / raw)
To: Andreas Kemnade
Cc: mturquette, sboyd, robh, krzk+dt, conor+dt, linux-clk, devicetree,
linux-kernel, linux-omap
* Andreas Kemnade <andreas@kemnade.info> [250305 22:47]:
> Convert the TI clkctrl clock device tree binding to json-schema.
> Specify the creator of the original binding as a maintainer.
Good to see this happening :)
> @Tony: you seem to be the only contributor to the txt binding,
> so we could go with dual-licensing if you agree.
Yes I agree dual-licensing makes sense for the binding.
> --- /dev/null
> +++ b/Documentation/devicetree/bindings/clock/ti,clkctrl.yaml
> @@ -0,0 +1,64 @@
> +# SPDX-License-Identifier: GPL-2.0-only
> +%YAML 1.2
> +---
> +$id: http://devicetree.org/schemas/clock/ti,clkctrl.yaml#
> +$schema: http://devicetree.org/meta-schemas/core.yaml#
> +
> +title: Texas Instruments clkctrl clock
> +
> +maintainers:
> + - Tony Lindgren <tony@atomide.com>
Please add yourself as a maintainer too for the binding.
Regards,
Tony
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] dt-bindings: clock: ti: Convert ti-clkctrl.txt to json-schema
@ 2025-03-09 1:06 kernel test robot
0 siblings, 0 replies; 4+ messages in thread
From: kernel test robot @ 2025-03-09 1:06 UTC (permalink / raw)
To: oe-kbuild; +Cc: lkp
::::::
:::::: Manual check reason: "dtcheck: binding changes may go via different trees"
::::::
BCC: lkp@intel.com
CC: oe-kbuild-all@lists.linux.dev
In-Reply-To: <20250305224722.66360-1-andreas@kemnade.info>
References: <20250305224722.66360-1-andreas@kemnade.info>
TO: Andreas Kemnade <andreas@kemnade.info>
TO: mturquette@baylibre.com
TO: sboyd@kernel.org
TO: robh@kernel.org
TO: krzk+dt@kernel.org
TO: conor+dt@kernel.org
TO: tony@atomide.com
TO: linux-clk@vger.kernel.org
TO: devicetree@vger.kernel.org
TO: linux-kernel@vger.kernel.org
TO: linux-omap@vger.kernel.org
CC: Andreas Kemnade <andreas@kemnade.info>
Hi Andreas,
kernel test robot noticed the following build warnings:
[auto build test WARNING on clk/clk-next]
[also build test WARNING on linus/master v6.14-rc5 next-20250306]
[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-ti-clkctrl-txt-to-json-schema/20250306-064856
base: https://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git clk-next
patch link: https://lore.kernel.org/r/20250305224722.66360-1-andreas%40kemnade.info
patch subject: [PATCH] dt-bindings: clock: ti: Convert ti-clkctrl.txt to json-schema
:::::: branch date: 3 days ago
:::::: commit date: 3 days ago
config: arm-randconfig-053-20250307 (https://download.01.org/0day-ci/archive/20250309/202503090807.S1GLjdG8-lkp@intel.com/config)
compiler: clang version 15.0.7 (https://github.com/llvm/llvm-project 8dfdcc7b7bf66834a761bd8de445840ef68e4d1a)
dtschema version: 2025.3.dev3+gabf9328
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20250309/202503090807.S1GLjdG8-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/202503090807.S1GLjdG8-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/clocks/clock-dpll-gmac-x2: failed to match any schema with compatible: ['ti,omap4-dpll-x2-clock']
arch/arm/boot/dts/ti/omap/am571x-idk.dtb: clock@300: '#clock-cells' is a dependency of 'clock-output-names'
from schema $id: http://devicetree.org/schemas/clock/clock.yaml#
arch/arm/boot/dts/ti/omap/am571x-idk.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clock@300: failed to match any schema with compatible: ['ti,omap4-cm']
arch/arm/boot/dts/ti/omap/am571x-idk.dtb: clock@400: '#clock-cells' is a dependency of 'clock-output-names'
from schema $id: http://devicetree.org/schemas/clock/clock.yaml#
arch/arm/boot/dts/ti/omap/am571x-idk.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clock@400: failed to match any schema with compatible: ['ti,omap4-cm']
arch/arm/boot/dts/ti/omap/am571x-idk.dtb: clock@500: '#clock-cells' is a dependency of 'clock-output-names'
from schema $id: http://devicetree.org/schemas/clock/clock.yaml#
arch/arm/boot/dts/ti/omap/am571x-idk.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clock@500: failed to match any schema with compatible: ['ti,omap4-cm']
>> arch/arm/boot/dts/ti/omap/am571x-idk.dtb: clock@20: 'assigned-clock-parents', 'assigned-clocks' do not match any of the regexes: 'pinctrl-[0-9]+'
from schema $id: http://devicetree.org/schemas/clock/ti,clkctrl.yaml#
arch/arm/boot/dts/ti/omap/am571x-idk.dtb: clock@600: '#clock-cells' is a dependency of 'clock-output-names'
from schema $id: http://devicetree.org/schemas/clock/clock.yaml#
arch/arm/boot/dts/ti/omap/am571x-idk.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clock@600: failed to match any schema with compatible: ['ti,omap4-cm']
arch/arm/boot/dts/ti/omap/am571x-idk.dtb: clock@700: '#clock-cells' is a dependency of 'clock-output-names'
from schema $id: http://devicetree.org/schemas/clock/clock.yaml#
arch/arm/boot/dts/ti/omap/am571x-idk.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clock@700: failed to match any schema with compatible: ['ti,omap4-cm']
arch/arm/boot/dts/ti/omap/am571x-idk.dtb: clock@760: '#clock-cells' is a dependency of 'clock-output-names'
from schema $id: http://devicetree.org/schemas/clock/clock.yaml#
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/am572x-idk.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clocks/clock-dpll-gmac-x2: failed to match any schema with compatible: ['ti,omap4-dpll-x2-clock']
arch/arm/boot/dts/ti/omap/am572x-idk.dtb: clock@300: '#clock-cells' is a dependency of 'clock-output-names'
from schema $id: http://devicetree.org/schemas/clock/clock.yaml#
arch/arm/boot/dts/ti/omap/am572x-idk.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clock@300: failed to match any schema with compatible: ['ti,omap4-cm']
arch/arm/boot/dts/ti/omap/am572x-idk.dtb: clock@400: '#clock-cells' is a dependency of 'clock-output-names'
from schema $id: http://devicetree.org/schemas/clock/clock.yaml#
arch/arm/boot/dts/ti/omap/am572x-idk.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clock@400: failed to match any schema with compatible: ['ti,omap4-cm']
arch/arm/boot/dts/ti/omap/am572x-idk.dtb: clock@500: '#clock-cells' is a dependency of 'clock-output-names'
from schema $id: http://devicetree.org/schemas/clock/clock.yaml#
arch/arm/boot/dts/ti/omap/am572x-idk.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clock@500: failed to match any schema with compatible: ['ti,omap4-cm']
>> arch/arm/boot/dts/ti/omap/am572x-idk.dtb: clock@20: 'assigned-clock-parents', 'assigned-clocks' do not match any of the regexes: 'pinctrl-[0-9]+'
from schema $id: http://devicetree.org/schemas/clock/ti,clkctrl.yaml#
arch/arm/boot/dts/ti/omap/am572x-idk.dtb: clock@600: '#clock-cells' is a dependency of 'clock-output-names'
from schema $id: http://devicetree.org/schemas/clock/clock.yaml#
arch/arm/boot/dts/ti/omap/am572x-idk.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clock@600: failed to match any schema with compatible: ['ti,omap4-cm']
arch/arm/boot/dts/ti/omap/am572x-idk.dtb: clock@700: '#clock-cells' is a dependency of 'clock-output-names'
from schema $id: http://devicetree.org/schemas/clock/clock.yaml#
arch/arm/boot/dts/ti/omap/am572x-idk.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clock@700: failed to match any schema with compatible: ['ti,omap4-cm']
arch/arm/boot/dts/ti/omap/am572x-idk.dtb: clock@760: '#clock-cells' is a dependency of 'clock-output-names'
from schema $id: http://devicetree.org/schemas/clock/clock.yaml#
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/am57xx-beagle-x15.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clocks/clock-dpll-gmac-x2: failed to match any schema with compatible: ['ti,omap4-dpll-x2-clock']
arch/arm/boot/dts/ti/omap/am57xx-beagle-x15.dtb: clock@300: '#clock-cells' is a dependency of 'clock-output-names'
from schema $id: http://devicetree.org/schemas/clock/clock.yaml#
arch/arm/boot/dts/ti/omap/am57xx-beagle-x15.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clock@300: failed to match any schema with compatible: ['ti,omap4-cm']
arch/arm/boot/dts/ti/omap/am57xx-beagle-x15.dtb: clock@400: '#clock-cells' is a dependency of 'clock-output-names'
from schema $id: http://devicetree.org/schemas/clock/clock.yaml#
arch/arm/boot/dts/ti/omap/am57xx-beagle-x15.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clock@400: failed to match any schema with compatible: ['ti,omap4-cm']
arch/arm/boot/dts/ti/omap/am57xx-beagle-x15.dtb: clock@500: '#clock-cells' is a dependency of 'clock-output-names'
from schema $id: http://devicetree.org/schemas/clock/clock.yaml#
arch/arm/boot/dts/ti/omap/am57xx-beagle-x15.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clock@500: failed to match any schema with compatible: ['ti,omap4-cm']
>> arch/arm/boot/dts/ti/omap/am57xx-beagle-x15.dtb: clock@20: 'assigned-clock-parents', 'assigned-clocks' do not match any of the regexes: 'pinctrl-[0-9]+'
from schema $id: http://devicetree.org/schemas/clock/ti,clkctrl.yaml#
arch/arm/boot/dts/ti/omap/am57xx-beagle-x15.dtb: clock@600: '#clock-cells' is a dependency of 'clock-output-names'
from schema $id: http://devicetree.org/schemas/clock/clock.yaml#
arch/arm/boot/dts/ti/omap/am57xx-beagle-x15.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clock@600: failed to match any schema with compatible: ['ti,omap4-cm']
arch/arm/boot/dts/ti/omap/am57xx-beagle-x15.dtb: clock@700: '#clock-cells' is a dependency of 'clock-output-names'
from schema $id: http://devicetree.org/schemas/clock/clock.yaml#
arch/arm/boot/dts/ti/omap/am57xx-beagle-x15.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clock@700: failed to match any schema with compatible: ['ti,omap4-cm']
arch/arm/boot/dts/ti/omap/am57xx-beagle-x15.dtb: clock@760: '#clock-cells' is a dependency of 'clock-output-names'
from schema $id: http://devicetree.org/schemas/clock/clock.yaml#
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-revb1.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clocks/clock-dpll-gmac-x2: failed to match any schema with compatible: ['ti,omap4-dpll-x2-clock']
arch/arm/boot/dts/ti/omap/am57xx-beagle-x15-revb1.dtb: clock@300: '#clock-cells' is a dependency of 'clock-output-names'
from schema $id: http://devicetree.org/schemas/clock/clock.yaml#
arch/arm/boot/dts/ti/omap/am57xx-beagle-x15-revb1.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clock@300: failed to match any schema with compatible: ['ti,omap4-cm']
arch/arm/boot/dts/ti/omap/am57xx-beagle-x15-revb1.dtb: clock@400: '#clock-cells' is a dependency of 'clock-output-names'
from schema $id: http://devicetree.org/schemas/clock/clock.yaml#
arch/arm/boot/dts/ti/omap/am57xx-beagle-x15-revb1.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clock@400: failed to match any schema with compatible: ['ti,omap4-cm']
arch/arm/boot/dts/ti/omap/am57xx-beagle-x15-revb1.dtb: clock@500: '#clock-cells' is a dependency of 'clock-output-names'
from schema $id: http://devicetree.org/schemas/clock/clock.yaml#
arch/arm/boot/dts/ti/omap/am57xx-beagle-x15-revb1.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clock@500: failed to match any schema with compatible: ['ti,omap4-cm']
>> arch/arm/boot/dts/ti/omap/am57xx-beagle-x15-revb1.dtb: clock@20: 'assigned-clock-parents', 'assigned-clocks' do not match any of the regexes: 'pinctrl-[0-9]+'
from schema $id: http://devicetree.org/schemas/clock/ti,clkctrl.yaml#
arch/arm/boot/dts/ti/omap/am57xx-beagle-x15-revb1.dtb: clock@600: '#clock-cells' is a dependency of 'clock-output-names'
from schema $id: http://devicetree.org/schemas/clock/clock.yaml#
arch/arm/boot/dts/ti/omap/am57xx-beagle-x15-revb1.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clock@600: failed to match any schema with compatible: ['ti,omap4-cm']
arch/arm/boot/dts/ti/omap/am57xx-beagle-x15-revb1.dtb: clock@700: '#clock-cells' is a dependency of 'clock-output-names'
from schema $id: http://devicetree.org/schemas/clock/clock.yaml#
arch/arm/boot/dts/ti/omap/am57xx-beagle-x15-revb1.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clock@700: failed to match any schema with compatible: ['ti,omap4-cm']
arch/arm/boot/dts/ti/omap/am57xx-beagle-x15-revb1.dtb: clock@760: '#clock-cells' is a dependency of 'clock-output-names'
from schema $id: http://devicetree.org/schemas/clock/clock.yaml#
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-revc.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clocks/clock-dpll-gmac-x2: failed to match any schema with compatible: ['ti,omap4-dpll-x2-clock']
arch/arm/boot/dts/ti/omap/am57xx-beagle-x15-revc.dtb: clock@300: '#clock-cells' is a dependency of 'clock-output-names'
from schema $id: http://devicetree.org/schemas/clock/clock.yaml#
arch/arm/boot/dts/ti/omap/am57xx-beagle-x15-revc.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clock@300: failed to match any schema with compatible: ['ti,omap4-cm']
arch/arm/boot/dts/ti/omap/am57xx-beagle-x15-revc.dtb: clock@400: '#clock-cells' is a dependency of 'clock-output-names'
from schema $id: http://devicetree.org/schemas/clock/clock.yaml#
arch/arm/boot/dts/ti/omap/am57xx-beagle-x15-revc.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clock@400: failed to match any schema with compatible: ['ti,omap4-cm']
arch/arm/boot/dts/ti/omap/am57xx-beagle-x15-revc.dtb: clock@500: '#clock-cells' is a dependency of 'clock-output-names'
from schema $id: http://devicetree.org/schemas/clock/clock.yaml#
arch/arm/boot/dts/ti/omap/am57xx-beagle-x15-revc.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clock@500: failed to match any schema with compatible: ['ti,omap4-cm']
>> arch/arm/boot/dts/ti/omap/am57xx-beagle-x15-revc.dtb: clock@20: 'assigned-clock-parents', 'assigned-clocks' do not match any of the regexes: 'pinctrl-[0-9]+'
from schema $id: http://devicetree.org/schemas/clock/ti,clkctrl.yaml#
arch/arm/boot/dts/ti/omap/am57xx-beagle-x15-revc.dtb: clock@600: '#clock-cells' is a dependency of 'clock-output-names'
from schema $id: http://devicetree.org/schemas/clock/clock.yaml#
arch/arm/boot/dts/ti/omap/am57xx-beagle-x15-revc.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clock@600: failed to match any schema with compatible: ['ti,omap4-cm']
arch/arm/boot/dts/ti/omap/am57xx-beagle-x15-revc.dtb: clock@700: '#clock-cells' is a dependency of 'clock-output-names'
from schema $id: http://devicetree.org/schemas/clock/clock.yaml#
arch/arm/boot/dts/ti/omap/am57xx-beagle-x15-revc.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clock@700: failed to match any schema with compatible: ['ti,omap4-cm']
arch/arm/boot/dts/ti/omap/am57xx-beagle-x15-revc.dtb: clock@760: '#clock-cells' is a dependency of 'clock-output-names'
from schema $id: http://devicetree.org/schemas/clock/clock.yaml#
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/am5729-beagleboneai.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clocks/clock-dpll-gmac-x2: failed to match any schema with compatible: ['ti,omap4-dpll-x2-clock']
arch/arm/boot/dts/ti/omap/am5729-beagleboneai.dtb: clock@300: '#clock-cells' is a dependency of 'clock-output-names'
from schema $id: http://devicetree.org/schemas/clock/clock.yaml#
arch/arm/boot/dts/ti/omap/am5729-beagleboneai.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clock@300: failed to match any schema with compatible: ['ti,omap4-cm']
arch/arm/boot/dts/ti/omap/am5729-beagleboneai.dtb: clock@400: '#clock-cells' is a dependency of 'clock-output-names'
from schema $id: http://devicetree.org/schemas/clock/clock.yaml#
arch/arm/boot/dts/ti/omap/am5729-beagleboneai.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clock@400: failed to match any schema with compatible: ['ti,omap4-cm']
arch/arm/boot/dts/ti/omap/am5729-beagleboneai.dtb: clock@500: '#clock-cells' is a dependency of 'clock-output-names'
from schema $id: http://devicetree.org/schemas/clock/clock.yaml#
arch/arm/boot/dts/ti/omap/am5729-beagleboneai.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clock@500: failed to match any schema with compatible: ['ti,omap4-cm']
>> arch/arm/boot/dts/ti/omap/am5729-beagleboneai.dtb: clock@20: 'assigned-clock-parents', 'assigned-clocks' do not match any of the regexes: 'pinctrl-[0-9]+'
from schema $id: http://devicetree.org/schemas/clock/ti,clkctrl.yaml#
arch/arm/boot/dts/ti/omap/am5729-beagleboneai.dtb: clock@600: '#clock-cells' is a dependency of 'clock-output-names'
from schema $id: http://devicetree.org/schemas/clock/clock.yaml#
arch/arm/boot/dts/ti/omap/am5729-beagleboneai.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clock@600: failed to match any schema with compatible: ['ti,omap4-cm']
arch/arm/boot/dts/ti/omap/am5729-beagleboneai.dtb: clock@700: '#clock-cells' is a dependency of 'clock-output-names'
from schema $id: http://devicetree.org/schemas/clock/clock.yaml#
arch/arm/boot/dts/ti/omap/am5729-beagleboneai.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clock@700: failed to match any schema with compatible: ['ti,omap4-cm']
arch/arm/boot/dts/ti/omap/am5729-beagleboneai.dtb: clock@760: '#clock-cells' is a dependency of 'clock-output-names'
from schema $id: http://devicetree.org/schemas/clock/clock.yaml#
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/am57xx-cl-som-am57x.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clocks/clock-dpll-gmac-x2: failed to match any schema with compatible: ['ti,omap4-dpll-x2-clock']
arch/arm/boot/dts/ti/omap/am57xx-cl-som-am57x.dtb: clock@300: '#clock-cells' is a dependency of 'clock-output-names'
from schema $id: http://devicetree.org/schemas/clock/clock.yaml#
arch/arm/boot/dts/ti/omap/am57xx-cl-som-am57x.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clock@300: failed to match any schema with compatible: ['ti,omap4-cm']
arch/arm/boot/dts/ti/omap/am57xx-cl-som-am57x.dtb: clock@400: '#clock-cells' is a dependency of 'clock-output-names'
from schema $id: http://devicetree.org/schemas/clock/clock.yaml#
arch/arm/boot/dts/ti/omap/am57xx-cl-som-am57x.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clock@400: failed to match any schema with compatible: ['ti,omap4-cm']
arch/arm/boot/dts/ti/omap/am57xx-cl-som-am57x.dtb: clock@500: '#clock-cells' is a dependency of 'clock-output-names'
from schema $id: http://devicetree.org/schemas/clock/clock.yaml#
arch/arm/boot/dts/ti/omap/am57xx-cl-som-am57x.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clock@500: failed to match any schema with compatible: ['ti,omap4-cm']
>> arch/arm/boot/dts/ti/omap/am57xx-cl-som-am57x.dtb: clock@20: 'assigned-clock-parents', 'assigned-clocks' do not match any of the regexes: 'pinctrl-[0-9]+'
from schema $id: http://devicetree.org/schemas/clock/ti,clkctrl.yaml#
arch/arm/boot/dts/ti/omap/am57xx-cl-som-am57x.dtb: clock@600: '#clock-cells' is a dependency of 'clock-output-names'
from schema $id: http://devicetree.org/schemas/clock/clock.yaml#
arch/arm/boot/dts/ti/omap/am57xx-cl-som-am57x.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clock@600: failed to match any schema with compatible: ['ti,omap4-cm']
arch/arm/boot/dts/ti/omap/am57xx-cl-som-am57x.dtb: clock@700: '#clock-cells' is a dependency of 'clock-output-names'
from schema $id: http://devicetree.org/schemas/clock/clock.yaml#
arch/arm/boot/dts/ti/omap/am57xx-cl-som-am57x.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clock@700: failed to match any schema with compatible: ['ti,omap4-cm']
arch/arm/boot/dts/ti/omap/am57xx-cl-som-am57x.dtb: clock@760: '#clock-cells' is a dependency of 'clock-output-names'
from schema $id: http://devicetree.org/schemas/clock/clock.yaml#
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-sbc-am57x.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clocks/clock-dpll-gmac-x2: failed to match any schema with compatible: ['ti,omap4-dpll-x2-clock']
arch/arm/boot/dts/ti/omap/am57xx-sbc-am57x.dtb: clock@300: '#clock-cells' is a dependency of 'clock-output-names'
from schema $id: http://devicetree.org/schemas/clock/clock.yaml#
arch/arm/boot/dts/ti/omap/am57xx-sbc-am57x.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clock@300: failed to match any schema with compatible: ['ti,omap4-cm']
arch/arm/boot/dts/ti/omap/am57xx-sbc-am57x.dtb: clock@400: '#clock-cells' is a dependency of 'clock-output-names'
from schema $id: http://devicetree.org/schemas/clock/clock.yaml#
arch/arm/boot/dts/ti/omap/am57xx-sbc-am57x.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clock@400: failed to match any schema with compatible: ['ti,omap4-cm']
arch/arm/boot/dts/ti/omap/am57xx-sbc-am57x.dtb: clock@500: '#clock-cells' is a dependency of 'clock-output-names'
from schema $id: http://devicetree.org/schemas/clock/clock.yaml#
arch/arm/boot/dts/ti/omap/am57xx-sbc-am57x.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clock@500: failed to match any schema with compatible: ['ti,omap4-cm']
>> arch/arm/boot/dts/ti/omap/am57xx-sbc-am57x.dtb: clock@20: 'assigned-clock-parents', 'assigned-clocks' do not match any of the regexes: 'pinctrl-[0-9]+'
from schema $id: http://devicetree.org/schemas/clock/ti,clkctrl.yaml#
arch/arm/boot/dts/ti/omap/am57xx-sbc-am57x.dtb: clock@600: '#clock-cells' is a dependency of 'clock-output-names'
from schema $id: http://devicetree.org/schemas/clock/clock.yaml#
arch/arm/boot/dts/ti/omap/am57xx-sbc-am57x.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clock@600: failed to match any schema with compatible: ['ti,omap4-cm']
arch/arm/boot/dts/ti/omap/am57xx-sbc-am57x.dtb: clock@700: '#clock-cells' is a dependency of 'clock-output-names'
from schema $id: http://devicetree.org/schemas/clock/clock.yaml#
arch/arm/boot/dts/ti/omap/am57xx-sbc-am57x.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clock@700: failed to match any schema with compatible: ['ti,omap4-cm']
arch/arm/boot/dts/ti/omap/am57xx-sbc-am57x.dtb: clock@760: '#clock-cells' is a dependency of 'clock-output-names'
from schema $id: http://devicetree.org/schemas/clock/clock.yaml#
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/am574x-idk.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clocks/clock-dpll-gmac-x2: failed to match any schema with compatible: ['ti,omap4-dpll-x2-clock']
arch/arm/boot/dts/ti/omap/am574x-idk.dtb: clock@300: '#clock-cells' is a dependency of 'clock-output-names'
from schema $id: http://devicetree.org/schemas/clock/clock.yaml#
arch/arm/boot/dts/ti/omap/am574x-idk.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clock@300: failed to match any schema with compatible: ['ti,omap4-cm']
arch/arm/boot/dts/ti/omap/am574x-idk.dtb: clock@400: '#clock-cells' is a dependency of 'clock-output-names'
from schema $id: http://devicetree.org/schemas/clock/clock.yaml#
arch/arm/boot/dts/ti/omap/am574x-idk.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clock@400: failed to match any schema with compatible: ['ti,omap4-cm']
arch/arm/boot/dts/ti/omap/am574x-idk.dtb: clock@500: '#clock-cells' is a dependency of 'clock-output-names'
from schema $id: http://devicetree.org/schemas/clock/clock.yaml#
arch/arm/boot/dts/ti/omap/am574x-idk.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clock@500: failed to match any schema with compatible: ['ti,omap4-cm']
>> arch/arm/boot/dts/ti/omap/am574x-idk.dtb: clock@20: 'assigned-clock-parents', 'assigned-clocks' do not match any of the regexes: 'pinctrl-[0-9]+'
from schema $id: http://devicetree.org/schemas/clock/ti,clkctrl.yaml#
arch/arm/boot/dts/ti/omap/am574x-idk.dtb: clock@600: '#clock-cells' is a dependency of 'clock-output-names'
from schema $id: http://devicetree.org/schemas/clock/clock.yaml#
arch/arm/boot/dts/ti/omap/am574x-idk.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clock@600: failed to match any schema with compatible: ['ti,omap4-cm']
arch/arm/boot/dts/ti/omap/am574x-idk.dtb: clock@700: '#clock-cells' is a dependency of 'clock-output-names'
from schema $id: http://devicetree.org/schemas/clock/clock.yaml#
arch/arm/boot/dts/ti/omap/am574x-idk.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clock@700: failed to match any schema with compatible: ['ti,omap4-cm']
arch/arm/boot/dts/ti/omap/am574x-idk.dtb: clock@760: '#clock-cells' is a dependency of 'clock-output-names'
from schema $id: http://devicetree.org/schemas/clock/clock.yaml#
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/dra7-evm.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clocks/clock-dpll-gmac-x2: failed to match any schema with compatible: ['ti,omap4-dpll-x2-clock']
arch/arm/boot/dts/ti/omap/dra7-evm.dtb: clock@300: '#clock-cells' is a dependency of 'clock-output-names'
from schema $id: http://devicetree.org/schemas/clock/clock.yaml#
arch/arm/boot/dts/ti/omap/dra7-evm.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clock@300: failed to match any schema with compatible: ['ti,omap4-cm']
arch/arm/boot/dts/ti/omap/dra7-evm.dtb: clock@400: '#clock-cells' is a dependency of 'clock-output-names'
from schema $id: http://devicetree.org/schemas/clock/clock.yaml#
arch/arm/boot/dts/ti/omap/dra7-evm.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clock@400: failed to match any schema with compatible: ['ti,omap4-cm']
arch/arm/boot/dts/ti/omap/dra7-evm.dtb: clock@500: '#clock-cells' is a dependency of 'clock-output-names'
from schema $id: http://devicetree.org/schemas/clock/clock.yaml#
arch/arm/boot/dts/ti/omap/dra7-evm.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clock@500: failed to match any schema with compatible: ['ti,omap4-cm']
>> arch/arm/boot/dts/ti/omap/dra7-evm.dtb: clock@20: 'assigned-clock-parents', 'assigned-clocks' do not match any of the regexes: 'pinctrl-[0-9]+'
from schema $id: http://devicetree.org/schemas/clock/ti,clkctrl.yaml#
arch/arm/boot/dts/ti/omap/dra7-evm.dtb: clock@600: '#clock-cells' is a dependency of 'clock-output-names'
from schema $id: http://devicetree.org/schemas/clock/clock.yaml#
arch/arm/boot/dts/ti/omap/dra7-evm.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clock@600: failed to match any schema with compatible: ['ti,omap4-cm']
arch/arm/boot/dts/ti/omap/dra7-evm.dtb: clock@700: '#clock-cells' is a dependency of 'clock-output-names'
from schema $id: http://devicetree.org/schemas/clock/clock.yaml#
arch/arm/boot/dts/ti/omap/dra7-evm.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clock@700: failed to match any schema with compatible: ['ti,omap4-cm']
arch/arm/boot/dts/ti/omap/dra7-evm.dtb: clock@760: '#clock-cells' is a dependency of 'clock-output-names'
from schema $id: http://devicetree.org/schemas/clock/clock.yaml#
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/dra72-evm.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clocks/clock-dpll-gmac-x2: failed to match any schema with compatible: ['ti,omap4-dpll-x2-clock']
arch/arm/boot/dts/ti/omap/dra72-evm.dtb: clock@300: '#clock-cells' is a dependency of 'clock-output-names'
from schema $id: http://devicetree.org/schemas/clock/clock.yaml#
arch/arm/boot/dts/ti/omap/dra72-evm.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clock@300: failed to match any schema with compatible: ['ti,omap4-cm']
arch/arm/boot/dts/ti/omap/dra72-evm.dtb: clock@400: '#clock-cells' is a dependency of 'clock-output-names'
from schema $id: http://devicetree.org/schemas/clock/clock.yaml#
arch/arm/boot/dts/ti/omap/dra72-evm.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clock@400: failed to match any schema with compatible: ['ti,omap4-cm']
arch/arm/boot/dts/ti/omap/dra72-evm.dtb: clock@500: '#clock-cells' is a dependency of 'clock-output-names'
from schema $id: http://devicetree.org/schemas/clock/clock.yaml#
arch/arm/boot/dts/ti/omap/dra72-evm.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clock@500: failed to match any schema with compatible: ['ti,omap4-cm']
>> arch/arm/boot/dts/ti/omap/dra72-evm.dtb: clock@20: 'assigned-clock-parents', 'assigned-clocks' do not match any of the regexes: 'pinctrl-[0-9]+'
from schema $id: http://devicetree.org/schemas/clock/ti,clkctrl.yaml#
arch/arm/boot/dts/ti/omap/dra72-evm.dtb: clock@600: '#clock-cells' is a dependency of 'clock-output-names'
from schema $id: http://devicetree.org/schemas/clock/clock.yaml#
arch/arm/boot/dts/ti/omap/dra72-evm.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clock@600: failed to match any schema with compatible: ['ti,omap4-cm']
arch/arm/boot/dts/ti/omap/dra72-evm.dtb: clock@700: '#clock-cells' is a dependency of 'clock-output-names'
from schema $id: http://devicetree.org/schemas/clock/clock.yaml#
arch/arm/boot/dts/ti/omap/dra72-evm.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clock@700: failed to match any schema with compatible: ['ti,omap4-cm']
arch/arm/boot/dts/ti/omap/dra72-evm.dtb: clock@760: '#clock-cells' is a dependency of 'clock-output-names'
from schema $id: http://devicetree.org/schemas/clock/clock.yaml#
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-revc.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clocks/clock-dpll-gmac-x2: failed to match any schema with compatible: ['ti,omap4-dpll-x2-clock']
arch/arm/boot/dts/ti/omap/dra72-evm-revc.dtb: clock@300: '#clock-cells' is a dependency of 'clock-output-names'
from schema $id: http://devicetree.org/schemas/clock/clock.yaml#
arch/arm/boot/dts/ti/omap/dra72-evm-revc.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clock@300: failed to match any schema with compatible: ['ti,omap4-cm']
arch/arm/boot/dts/ti/omap/dra72-evm-revc.dtb: clock@400: '#clock-cells' is a dependency of 'clock-output-names'
from schema $id: http://devicetree.org/schemas/clock/clock.yaml#
arch/arm/boot/dts/ti/omap/dra72-evm-revc.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clock@400: failed to match any schema with compatible: ['ti,omap4-cm']
arch/arm/boot/dts/ti/omap/dra72-evm-revc.dtb: clock@500: '#clock-cells' is a dependency of 'clock-output-names'
from schema $id: http://devicetree.org/schemas/clock/clock.yaml#
arch/arm/boot/dts/ti/omap/dra72-evm-revc.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clock@500: failed to match any schema with compatible: ['ti,omap4-cm']
>> arch/arm/boot/dts/ti/omap/dra72-evm-revc.dtb: clock@20: 'assigned-clock-parents', 'assigned-clocks' do not match any of the regexes: 'pinctrl-[0-9]+'
from schema $id: http://devicetree.org/schemas/clock/ti,clkctrl.yaml#
arch/arm/boot/dts/ti/omap/dra72-evm-revc.dtb: clock@600: '#clock-cells' is a dependency of 'clock-output-names'
from schema $id: http://devicetree.org/schemas/clock/clock.yaml#
arch/arm/boot/dts/ti/omap/dra72-evm-revc.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clock@600: failed to match any schema with compatible: ['ti,omap4-cm']
arch/arm/boot/dts/ti/omap/dra72-evm-revc.dtb: clock@700: '#clock-cells' is a dependency of 'clock-output-names'
from schema $id: http://devicetree.org/schemas/clock/clock.yaml#
arch/arm/boot/dts/ti/omap/dra72-evm-revc.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clock@700: failed to match any schema with compatible: ['ti,omap4-cm']
arch/arm/boot/dts/ti/omap/dra72-evm-revc.dtb: clock@760: '#clock-cells' is a dependency of 'clock-output-names'
from schema $id: http://devicetree.org/schemas/clock/clock.yaml#
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/dra71-evm.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clocks/clock-dpll-gmac-x2: failed to match any schema with compatible: ['ti,omap4-dpll-x2-clock']
arch/arm/boot/dts/ti/omap/dra71-evm.dtb: clock@300: '#clock-cells' is a dependency of 'clock-output-names'
from schema $id: http://devicetree.org/schemas/clock/clock.yaml#
arch/arm/boot/dts/ti/omap/dra71-evm.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clock@300: failed to match any schema with compatible: ['ti,omap4-cm']
arch/arm/boot/dts/ti/omap/dra71-evm.dtb: clock@400: '#clock-cells' is a dependency of 'clock-output-names'
from schema $id: http://devicetree.org/schemas/clock/clock.yaml#
arch/arm/boot/dts/ti/omap/dra71-evm.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clock@400: failed to match any schema with compatible: ['ti,omap4-cm']
arch/arm/boot/dts/ti/omap/dra71-evm.dtb: clock@500: '#clock-cells' is a dependency of 'clock-output-names'
from schema $id: http://devicetree.org/schemas/clock/clock.yaml#
arch/arm/boot/dts/ti/omap/dra71-evm.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clock@500: failed to match any schema with compatible: ['ti,omap4-cm']
>> arch/arm/boot/dts/ti/omap/dra71-evm.dtb: clock@20: 'assigned-clock-parents', 'assigned-clocks' do not match any of the regexes: 'pinctrl-[0-9]+'
from schema $id: http://devicetree.org/schemas/clock/ti,clkctrl.yaml#
arch/arm/boot/dts/ti/omap/dra71-evm.dtb: clock@600: '#clock-cells' is a dependency of 'clock-output-names'
from schema $id: http://devicetree.org/schemas/clock/clock.yaml#
arch/arm/boot/dts/ti/omap/dra71-evm.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clock@600: failed to match any schema with compatible: ['ti,omap4-cm']
arch/arm/boot/dts/ti/omap/dra71-evm.dtb: clock@700: '#clock-cells' is a dependency of 'clock-output-names'
from schema $id: http://devicetree.org/schemas/clock/clock.yaml#
arch/arm/boot/dts/ti/omap/dra71-evm.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clock@700: failed to match any schema with compatible: ['ti,omap4-cm']
arch/arm/boot/dts/ti/omap/dra71-evm.dtb: clock@760: '#clock-cells' is a dependency of 'clock-output-names'
from schema $id: http://devicetree.org/schemas/clock/clock.yaml#
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/dra76-evm.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clocks/clock-dpll-gmac-x2: failed to match any schema with compatible: ['ti,omap4-dpll-x2-clock']
arch/arm/boot/dts/ti/omap/dra76-evm.dtb: clock@300: '#clock-cells' is a dependency of 'clock-output-names'
from schema $id: http://devicetree.org/schemas/clock/clock.yaml#
arch/arm/boot/dts/ti/omap/dra76-evm.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clock@300: failed to match any schema with compatible: ['ti,omap4-cm']
arch/arm/boot/dts/ti/omap/dra76-evm.dtb: clock@400: '#clock-cells' is a dependency of 'clock-output-names'
from schema $id: http://devicetree.org/schemas/clock/clock.yaml#
arch/arm/boot/dts/ti/omap/dra76-evm.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clock@400: failed to match any schema with compatible: ['ti,omap4-cm']
arch/arm/boot/dts/ti/omap/dra76-evm.dtb: clock@500: '#clock-cells' is a dependency of 'clock-output-names'
from schema $id: http://devicetree.org/schemas/clock/clock.yaml#
arch/arm/boot/dts/ti/omap/dra76-evm.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clock@500: failed to match any schema with compatible: ['ti,omap4-cm']
>> arch/arm/boot/dts/ti/omap/dra76-evm.dtb: clock@20: 'assigned-clock-parents', 'assigned-clocks' do not match any of the regexes: 'pinctrl-[0-9]+'
from schema $id: http://devicetree.org/schemas/clock/ti,clkctrl.yaml#
arch/arm/boot/dts/ti/omap/dra76-evm.dtb: clock@600: '#clock-cells' is a dependency of 'clock-output-names'
from schema $id: http://devicetree.org/schemas/clock/clock.yaml#
arch/arm/boot/dts/ti/omap/dra76-evm.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clock@600: failed to match any schema with compatible: ['ti,omap4-cm']
arch/arm/boot/dts/ti/omap/dra76-evm.dtb: clock@700: '#clock-cells' is a dependency of 'clock-output-names'
from schema $id: http://devicetree.org/schemas/clock/clock.yaml#
arch/arm/boot/dts/ti/omap/dra76-evm.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clock@700: failed to match any schema with compatible: ['ti,omap4-cm']
arch/arm/boot/dts/ti/omap/dra76-evm.dtb: clock@760: '#clock-cells' is a dependency of 'clock-output-names'
from schema $id: http://devicetree.org/schemas/clock/clock.yaml#
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/am3874-iceboard.dtb: prcm@180000: clockdomains: 'ranges' is a required property
from schema $id: http://devicetree.org/schemas/simple-bus.yaml#
arch/arm/boot/dts/ti/omap/am3874-iceboard.dtb: prcm@180000: clocks: 'ranges' is a required property
from schema $id: http://devicetree.org/schemas/simple-bus.yaml#
arch/arm/boot/dts/ti/omap/am3874-iceboard.dtb: /ocp/l4ls@48000000/prcm@180000: failed to match any schema with compatible: ['ti,dm814-prcm', 'simple-bus']
arch/arm/boot/dts/ti/omap/am3874-iceboard.dtb: /ocp/l4ls@48000000/prcm@180000/clocks/sysclk4_ck: failed to match any schema with compatible: ['ti,fixed-factor-clock']
arch/arm/boot/dts/ti/omap/am3874-iceboard.dtb: /ocp/l4ls@48000000/prcm@180000/clocks/sysclk5_ck: failed to match any schema with compatible: ['ti,fixed-factor-clock']
arch/arm/boot/dts/ti/omap/am3874-iceboard.dtb: /ocp/l4ls@48000000/prcm@180000/clocks/sysclk6_ck: failed to match any schema with compatible: ['ti,fixed-factor-clock']
arch/arm/boot/dts/ti/omap/am3874-iceboard.dtb: /ocp/l4ls@48000000/prcm@180000/clocks/sysclk8_ck: failed to match any schema with compatible: ['ti,fixed-factor-clock']
arch/arm/boot/dts/ti/omap/am3874-iceboard.dtb: /ocp/l4ls@48000000/prcm@180000/default_cm@500: failed to match any schema with compatible: ['ti,omap4-cm']
>> arch/arm/boot/dts/ti/omap/am3874-iceboard.dtb: clk@0: 'clock-output-names' is a required property
from schema $id: http://devicetree.org/schemas/clock/ti,clkctrl.yaml#
arch/arm/boot/dts/ti/omap/am3874-iceboard.dtb: /ocp/l4ls@48000000/prcm@180000/alwon_cm@1400: failed to match any schema with compatible: ['ti,omap4-cm']
>> arch/arm/boot/dts/ti/omap/am3874-iceboard.dtb: clk@0: 'clock-output-names' is a required property
from schema $id: http://devicetree.org/schemas/clock/ti,clkctrl.yaml#
arch/arm/boot/dts/ti/omap/am3874-iceboard.dtb: /ocp/l4ls@48000000/prcm@180000/alwon_ethernet_cm@15d4: failed to match any schema with compatible: ['ti,omap4-cm']
>> arch/arm/boot/dts/ti/omap/am3874-iceboard.dtb: clk@0: 'clock-output-names' is a required property
from schema $id: http://devicetree.org/schemas/clock/ti,clkctrl.yaml#
arch/arm/boot/dts/ti/omap/am3874-iceboard.dtb: pllss@1c5000: $nodename:0: 'pllss@1c5000' 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/am3874-iceboard.dtb: pllss@1c5000: clockdomains: 'ranges' is a required property
from schema $id: http://devicetree.org/schemas/simple-bus.yaml#
arch/arm/boot/dts/ti/omap/am3874-iceboard.dtb: pllss@1c5000: clocks: 'ranges' is a required property
from schema $id: http://devicetree.org/schemas/simple-bus.yaml#
arch/arm/boot/dts/ti/omap/am3874-iceboard.dtb: /ocp/l4ls@48000000/pllss@1c5000: failed to match any schema with compatible: ['ti,dm814-pllss', 'simple-bus']
arch/arm/boot/dts/ti/omap/am3874-iceboard.dtb: /ocp/l4ls@48000000/pllss@1c5000/adpll@40: failed to match any schema with compatible: ['ti,dm814-adpll-s-clock']
arch/arm/boot/dts/ti/omap/am3874-iceboard.dtb: /ocp/l4ls@48000000/pllss@1c5000/adpll@80: failed to match any schema with compatible: ['ti,dm814-adpll-lj-clock']
--
arch/arm/boot/dts/ti/omap/dm8148-evm.dtb: prcm@180000: clockdomains: 'ranges' is a required property
from schema $id: http://devicetree.org/schemas/simple-bus.yaml#
arch/arm/boot/dts/ti/omap/dm8148-evm.dtb: prcm@180000: clocks: 'ranges' is a required property
from schema $id: http://devicetree.org/schemas/simple-bus.yaml#
arch/arm/boot/dts/ti/omap/dm8148-evm.dtb: /ocp/l4ls@48000000/prcm@180000: failed to match any schema with compatible: ['ti,dm814-prcm', 'simple-bus']
arch/arm/boot/dts/ti/omap/dm8148-evm.dtb: /ocp/l4ls@48000000/prcm@180000/clocks/sysclk4_ck: failed to match any schema with compatible: ['ti,fixed-factor-clock']
arch/arm/boot/dts/ti/omap/dm8148-evm.dtb: /ocp/l4ls@48000000/prcm@180000/clocks/sysclk5_ck: failed to match any schema with compatible: ['ti,fixed-factor-clock']
arch/arm/boot/dts/ti/omap/dm8148-evm.dtb: /ocp/l4ls@48000000/prcm@180000/clocks/sysclk6_ck: failed to match any schema with compatible: ['ti,fixed-factor-clock']
arch/arm/boot/dts/ti/omap/dm8148-evm.dtb: /ocp/l4ls@48000000/prcm@180000/clocks/sysclk8_ck: failed to match any schema with compatible: ['ti,fixed-factor-clock']
arch/arm/boot/dts/ti/omap/dm8148-evm.dtb: /ocp/l4ls@48000000/prcm@180000/default_cm@500: failed to match any schema with compatible: ['ti,omap4-cm']
>> arch/arm/boot/dts/ti/omap/dm8148-evm.dtb: clk@0: 'clock-output-names' is a required property
from schema $id: http://devicetree.org/schemas/clock/ti,clkctrl.yaml#
arch/arm/boot/dts/ti/omap/dm8148-evm.dtb: /ocp/l4ls@48000000/prcm@180000/alwon_cm@1400: failed to match any schema with compatible: ['ti,omap4-cm']
>> arch/arm/boot/dts/ti/omap/dm8148-evm.dtb: clk@0: 'clock-output-names' is a required property
from schema $id: http://devicetree.org/schemas/clock/ti,clkctrl.yaml#
arch/arm/boot/dts/ti/omap/dm8148-evm.dtb: /ocp/l4ls@48000000/prcm@180000/alwon_ethernet_cm@15d4: failed to match any schema with compatible: ['ti,omap4-cm']
>> arch/arm/boot/dts/ti/omap/dm8148-evm.dtb: clk@0: 'clock-output-names' is a required property
from schema $id: http://devicetree.org/schemas/clock/ti,clkctrl.yaml#
arch/arm/boot/dts/ti/omap/dm8148-evm.dtb: pllss@1c5000: $nodename:0: 'pllss@1c5000' 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/dm8148-evm.dtb: pllss@1c5000: clockdomains: 'ranges' is a required property
from schema $id: http://devicetree.org/schemas/simple-bus.yaml#
arch/arm/boot/dts/ti/omap/dm8148-evm.dtb: pllss@1c5000: clocks: 'ranges' is a required property
from schema $id: http://devicetree.org/schemas/simple-bus.yaml#
arch/arm/boot/dts/ti/omap/dm8148-evm.dtb: /ocp/l4ls@48000000/pllss@1c5000: failed to match any schema with compatible: ['ti,dm814-pllss', 'simple-bus']
arch/arm/boot/dts/ti/omap/dm8148-evm.dtb: /ocp/l4ls@48000000/pllss@1c5000/adpll@40: failed to match any schema with compatible: ['ti,dm814-adpll-s-clock']
arch/arm/boot/dts/ti/omap/dm8148-evm.dtb: /ocp/l4ls@48000000/pllss@1c5000/adpll@80: failed to match any schema with compatible: ['ti,dm814-adpll-lj-clock']
--
arch/arm/boot/dts/ti/omap/dm8148-t410.dtb: prcm@180000: clockdomains: 'ranges' is a required property
from schema $id: http://devicetree.org/schemas/simple-bus.yaml#
arch/arm/boot/dts/ti/omap/dm8148-t410.dtb: prcm@180000: clocks: 'ranges' is a required property
from schema $id: http://devicetree.org/schemas/simple-bus.yaml#
arch/arm/boot/dts/ti/omap/dm8148-t410.dtb: /ocp/l4ls@48000000/prcm@180000: failed to match any schema with compatible: ['ti,dm814-prcm', 'simple-bus']
arch/arm/boot/dts/ti/omap/dm8148-t410.dtb: /ocp/l4ls@48000000/prcm@180000/clocks/sysclk4_ck: failed to match any schema with compatible: ['ti,fixed-factor-clock']
arch/arm/boot/dts/ti/omap/dm8148-t410.dtb: /ocp/l4ls@48000000/prcm@180000/clocks/sysclk5_ck: failed to match any schema with compatible: ['ti,fixed-factor-clock']
arch/arm/boot/dts/ti/omap/dm8148-t410.dtb: /ocp/l4ls@48000000/prcm@180000/clocks/sysclk6_ck: failed to match any schema with compatible: ['ti,fixed-factor-clock']
arch/arm/boot/dts/ti/omap/dm8148-t410.dtb: /ocp/l4ls@48000000/prcm@180000/clocks/sysclk8_ck: failed to match any schema with compatible: ['ti,fixed-factor-clock']
arch/arm/boot/dts/ti/omap/dm8148-t410.dtb: /ocp/l4ls@48000000/prcm@180000/default_cm@500: failed to match any schema with compatible: ['ti,omap4-cm']
>> arch/arm/boot/dts/ti/omap/dm8148-t410.dtb: clk@0: 'clock-output-names' is a required property
from schema $id: http://devicetree.org/schemas/clock/ti,clkctrl.yaml#
arch/arm/boot/dts/ti/omap/dm8148-t410.dtb: /ocp/l4ls@48000000/prcm@180000/alwon_cm@1400: failed to match any schema with compatible: ['ti,omap4-cm']
>> arch/arm/boot/dts/ti/omap/dm8148-t410.dtb: clk@0: 'clock-output-names' is a required property
from schema $id: http://devicetree.org/schemas/clock/ti,clkctrl.yaml#
arch/arm/boot/dts/ti/omap/dm8148-t410.dtb: /ocp/l4ls@48000000/prcm@180000/alwon_ethernet_cm@15d4: failed to match any schema with compatible: ['ti,omap4-cm']
>> arch/arm/boot/dts/ti/omap/dm8148-t410.dtb: clk@0: 'clock-output-names' is a required property
from schema $id: http://devicetree.org/schemas/clock/ti,clkctrl.yaml#
arch/arm/boot/dts/ti/omap/dm8148-t410.dtb: pllss@1c5000: $nodename:0: 'pllss@1c5000' 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/dm8148-t410.dtb: pllss@1c5000: clockdomains: 'ranges' is a required property
from schema $id: http://devicetree.org/schemas/simple-bus.yaml#
arch/arm/boot/dts/ti/omap/dm8148-t410.dtb: pllss@1c5000: clocks: 'ranges' is a required property
from schema $id: http://devicetree.org/schemas/simple-bus.yaml#
arch/arm/boot/dts/ti/omap/dm8148-t410.dtb: /ocp/l4ls@48000000/pllss@1c5000: failed to match any schema with compatible: ['ti,dm814-pllss', 'simple-bus']
arch/arm/boot/dts/ti/omap/dm8148-t410.dtb: /ocp/l4ls@48000000/pllss@1c5000/adpll@40: failed to match any schema with compatible: ['ti,dm814-adpll-s-clock']
arch/arm/boot/dts/ti/omap/dm8148-t410.dtb: /ocp/l4ls@48000000/pllss@1c5000/adpll@80: failed to match any schema with compatible: ['ti,dm814-adpll-lj-clock']
--
arch/arm/boot/dts/ti/omap/dm8168-evm.dtb: ocp: $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/dm8168-evm.dtb: prcm@48180000: $nodename:0: 'prcm@48180000' 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/dm8168-evm.dtb: prcm@48180000: clockdomains: 'ranges' is a required property
from schema $id: http://devicetree.org/schemas/simple-bus.yaml#
arch/arm/boot/dts/ti/omap/dm8168-evm.dtb: prcm@48180000: clocks: 'ranges' is a required property
from schema $id: http://devicetree.org/schemas/simple-bus.yaml#
arch/arm/boot/dts/ti/omap/dm8168-evm.dtb: /ocp/prcm@48180000: failed to match any schema with compatible: ['ti,dm816-prcm', 'simple-bus']
arch/arm/boot/dts/ti/omap/dm8168-evm.dtb: /ocp/prcm@48180000/default_cm@500: failed to match any schema with compatible: ['ti,omap4-cm']
>> arch/arm/boot/dts/ti/omap/dm8168-evm.dtb: clk@0: 'clock-output-names' is a required property
from schema $id: http://devicetree.org/schemas/clock/ti,clkctrl.yaml#
arch/arm/boot/dts/ti/omap/dm8168-evm.dtb: /ocp/prcm@48180000/alwon_cm@1400: failed to match any schema with compatible: ['ti,omap4-cm']
>> arch/arm/boot/dts/ti/omap/dm8168-evm.dtb: clk@0: 'clock-output-names' is a required property
from schema $id: http://devicetree.org/schemas/clock/ti,clkctrl.yaml#
arch/arm/boot/dts/ti/omap/dm8168-evm.dtb: scrm@48140000: $nodename:0: 'scrm@48140000' 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/dm8168-evm.dtb: scrm@48140000: audio_fapll: 'ranges' is a required property
from schema $id: http://devicetree.org/schemas/simple-bus.yaml#
arch/arm/boot/dts/ti/omap/dm8168-evm.dtb: scrm@48140000: ddr_fapll: 'ranges' is a required property
from schema $id: http://devicetree.org/schemas/simple-bus.yaml#
arch/arm/boot/dts/ti/omap/dm8168-evm.dtb: scrm@48140000: clockdomains: 'ranges' is a required property
from schema $id: http://devicetree.org/schemas/simple-bus.yaml#
arch/arm/boot/dts/ti/omap/dm8168-evm.dtb: scrm@48140000: video_fapll: 'ranges' is a required property
--
arch/arm/boot/dts/ti/omap/dra62x-j5eco-evm.dtb: prcm@180000: clocks: 'ranges' is a required property
from schema $id: http://devicetree.org/schemas/simple-bus.yaml#
arch/arm/boot/dts/ti/omap/dra62x-j5eco-evm.dtb: prcm@180000: clockdomains: 'ranges' is a required property
from schema $id: http://devicetree.org/schemas/simple-bus.yaml#
arch/arm/boot/dts/ti/omap/dra62x-j5eco-evm.dtb: /ocp/l4ls@48000000/prcm@180000: failed to match any schema with compatible: ['ti,dm814-prcm', 'simple-bus']
arch/arm/boot/dts/ti/omap/dra62x-j5eco-evm.dtb: /ocp/l4ls@48000000/prcm@180000/clocks/sysclk4_ck: failed to match any schema with compatible: ['ti,fixed-factor-clock']
arch/arm/boot/dts/ti/omap/dra62x-j5eco-evm.dtb: /ocp/l4ls@48000000/prcm@180000/clocks/sysclk5_ck: failed to match any schema with compatible: ['ti,fixed-factor-clock']
arch/arm/boot/dts/ti/omap/dra62x-j5eco-evm.dtb: /ocp/l4ls@48000000/prcm@180000/clocks/sysclk6_ck: failed to match any schema with compatible: ['ti,fixed-factor-clock']
arch/arm/boot/dts/ti/omap/dra62x-j5eco-evm.dtb: /ocp/l4ls@48000000/prcm@180000/clocks/sysclk8_ck: failed to match any schema with compatible: ['ti,fixed-factor-clock']
arch/arm/boot/dts/ti/omap/dra62x-j5eco-evm.dtb: /ocp/l4ls@48000000/prcm@180000/default_cm@500: failed to match any schema with compatible: ['ti,omap4-cm']
>> arch/arm/boot/dts/ti/omap/dra62x-j5eco-evm.dtb: clk@0: 'clock-output-names' is a required property
from schema $id: http://devicetree.org/schemas/clock/ti,clkctrl.yaml#
arch/arm/boot/dts/ti/omap/dra62x-j5eco-evm.dtb: /ocp/l4ls@48000000/prcm@180000/alwon_cm@1400: failed to match any schema with compatible: ['ti,omap4-cm']
>> arch/arm/boot/dts/ti/omap/dra62x-j5eco-evm.dtb: clk@0: 'clock-output-names' is a required property
from schema $id: http://devicetree.org/schemas/clock/ti,clkctrl.yaml#
arch/arm/boot/dts/ti/omap/dra62x-j5eco-evm.dtb: /ocp/l4ls@48000000/prcm@180000/alwon_ethernet_cm@15d4: failed to match any schema with compatible: ['ti,omap4-cm']
>> arch/arm/boot/dts/ti/omap/dra62x-j5eco-evm.dtb: clk@0: 'clock-output-names' is a required property
from schema $id: http://devicetree.org/schemas/clock/ti,clkctrl.yaml#
arch/arm/boot/dts/ti/omap/dra62x-j5eco-evm.dtb: pllss@1c5000: $nodename:0: 'pllss@1c5000' 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/dra62x-j5eco-evm.dtb: pllss@1c5000: clocks: 'ranges' is a required property
from schema $id: http://devicetree.org/schemas/simple-bus.yaml#
arch/arm/boot/dts/ti/omap/dra62x-j5eco-evm.dtb: pllss@1c5000: clockdomains: 'ranges' is a required property
from schema $id: http://devicetree.org/schemas/simple-bus.yaml#
arch/arm/boot/dts/ti/omap/dra62x-j5eco-evm.dtb: /ocp/l4ls@48000000/pllss@1c5000: failed to match any schema with compatible: ['ti,dm814-pllss', 'simple-bus']
arch/arm/boot/dts/ti/omap/dra62x-j5eco-evm.dtb: /ocp/l4ls@48000000/pllss@1c5000/adpll@40: failed to match any schema with compatible: ['ti,dm814-adpll-s-clock']
arch/arm/boot/dts/ti/omap/dra62x-j5eco-evm.dtb: /ocp/l4ls@48000000/pllss@1c5000/adpll@80: failed to match any schema with compatible: ['ti,dm814-adpll-lj-clock']
--
arch/arm/boot/dts/ti/omap/am571x-idk-overlays.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clocks/clock-dpll-gmac-x2: failed to match any schema with compatible: ['ti,omap4-dpll-x2-clock']
arch/arm/boot/dts/ti/omap/am571x-idk-overlays.dtb: clock@300: '#clock-cells' is a dependency of 'clock-output-names'
from schema $id: http://devicetree.org/schemas/clock/clock.yaml#
arch/arm/boot/dts/ti/omap/am571x-idk-overlays.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clock@300: failed to match any schema with compatible: ['ti,omap4-cm']
arch/arm/boot/dts/ti/omap/am571x-idk-overlays.dtb: clock@400: '#clock-cells' is a dependency of 'clock-output-names'
from schema $id: http://devicetree.org/schemas/clock/clock.yaml#
arch/arm/boot/dts/ti/omap/am571x-idk-overlays.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clock@400: failed to match any schema with compatible: ['ti,omap4-cm']
arch/arm/boot/dts/ti/omap/am571x-idk-overlays.dtb: clock@500: '#clock-cells' is a dependency of 'clock-output-names'
from schema $id: http://devicetree.org/schemas/clock/clock.yaml#
arch/arm/boot/dts/ti/omap/am571x-idk-overlays.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clock@500: failed to match any schema with compatible: ['ti,omap4-cm']
>> arch/arm/boot/dts/ti/omap/am571x-idk-overlays.dtb: clock@20: 'assigned-clock-parents', 'assigned-clocks' do not match any of the regexes: 'pinctrl-[0-9]+'
from schema $id: http://devicetree.org/schemas/clock/ti,clkctrl.yaml#
arch/arm/boot/dts/ti/omap/am571x-idk-overlays.dtb: clock@600: '#clock-cells' is a dependency of 'clock-output-names'
from schema $id: http://devicetree.org/schemas/clock/clock.yaml#
arch/arm/boot/dts/ti/omap/am571x-idk-overlays.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clock@600: failed to match any schema with compatible: ['ti,omap4-cm']
arch/arm/boot/dts/ti/omap/am571x-idk-overlays.dtb: clock@700: '#clock-cells' is a dependency of 'clock-output-names'
from schema $id: http://devicetree.org/schemas/clock/clock.yaml#
arch/arm/boot/dts/ti/omap/am571x-idk-overlays.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clock@700: failed to match any schema with compatible: ['ti,omap4-cm']
arch/arm/boot/dts/ti/omap/am571x-idk-overlays.dtb: clock@760: '#clock-cells' is a dependency of 'clock-output-names'
from schema $id: http://devicetree.org/schemas/clock/clock.yaml#
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/am572x-idk-overlays.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clocks/clock-dpll-gmac-x2: failed to match any schema with compatible: ['ti,omap4-dpll-x2-clock']
arch/arm/boot/dts/ti/omap/am572x-idk-overlays.dtb: clock@300: '#clock-cells' is a dependency of 'clock-output-names'
from schema $id: http://devicetree.org/schemas/clock/clock.yaml#
arch/arm/boot/dts/ti/omap/am572x-idk-overlays.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clock@300: failed to match any schema with compatible: ['ti,omap4-cm']
arch/arm/boot/dts/ti/omap/am572x-idk-overlays.dtb: clock@400: '#clock-cells' is a dependency of 'clock-output-names'
from schema $id: http://devicetree.org/schemas/clock/clock.yaml#
arch/arm/boot/dts/ti/omap/am572x-idk-overlays.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clock@400: failed to match any schema with compatible: ['ti,omap4-cm']
arch/arm/boot/dts/ti/omap/am572x-idk-overlays.dtb: clock@500: '#clock-cells' is a dependency of 'clock-output-names'
from schema $id: http://devicetree.org/schemas/clock/clock.yaml#
arch/arm/boot/dts/ti/omap/am572x-idk-overlays.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clock@500: failed to match any schema with compatible: ['ti,omap4-cm']
>> arch/arm/boot/dts/ti/omap/am572x-idk-overlays.dtb: clock@20: 'assigned-clock-parents', 'assigned-clocks' do not match any of the regexes: 'pinctrl-[0-9]+'
from schema $id: http://devicetree.org/schemas/clock/ti,clkctrl.yaml#
arch/arm/boot/dts/ti/omap/am572x-idk-overlays.dtb: clock@600: '#clock-cells' is a dependency of 'clock-output-names'
from schema $id: http://devicetree.org/schemas/clock/clock.yaml#
arch/arm/boot/dts/ti/omap/am572x-idk-overlays.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clock@600: failed to match any schema with compatible: ['ti,omap4-cm']
arch/arm/boot/dts/ti/omap/am572x-idk-overlays.dtb: clock@700: '#clock-cells' is a dependency of 'clock-output-names'
from schema $id: http://devicetree.org/schemas/clock/clock.yaml#
arch/arm/boot/dts/ti/omap/am572x-idk-overlays.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clock@700: failed to match any schema with compatible: ['ti,omap4-cm']
arch/arm/boot/dts/ti/omap/am572x-idk-overlays.dtb: clock@760: '#clock-cells' is a dependency of 'clock-output-names'
from schema $id: http://devicetree.org/schemas/clock/clock.yaml#
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/am57xx-evm.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clocks/clock-dpll-gmac-x2: failed to match any schema with compatible: ['ti,omap4-dpll-x2-clock']
arch/arm/boot/dts/ti/omap/am57xx-evm.dtb: clock@300: '#clock-cells' is a dependency of 'clock-output-names'
from schema $id: http://devicetree.org/schemas/clock/clock.yaml#
arch/arm/boot/dts/ti/omap/am57xx-evm.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clock@300: failed to match any schema with compatible: ['ti,omap4-cm']
arch/arm/boot/dts/ti/omap/am57xx-evm.dtb: clock@400: '#clock-cells' is a dependency of 'clock-output-names'
from schema $id: http://devicetree.org/schemas/clock/clock.yaml#
arch/arm/boot/dts/ti/omap/am57xx-evm.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clock@400: failed to match any schema with compatible: ['ti,omap4-cm']
arch/arm/boot/dts/ti/omap/am57xx-evm.dtb: clock@500: '#clock-cells' is a dependency of 'clock-output-names'
from schema $id: http://devicetree.org/schemas/clock/clock.yaml#
arch/arm/boot/dts/ti/omap/am57xx-evm.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clock@500: failed to match any schema with compatible: ['ti,omap4-cm']
>> arch/arm/boot/dts/ti/omap/am57xx-evm.dtb: clock@20: 'assigned-clock-parents', 'assigned-clocks' do not match any of the regexes: 'pinctrl-[0-9]+'
from schema $id: http://devicetree.org/schemas/clock/ti,clkctrl.yaml#
arch/arm/boot/dts/ti/omap/am57xx-evm.dtb: clock@600: '#clock-cells' is a dependency of 'clock-output-names'
from schema $id: http://devicetree.org/schemas/clock/clock.yaml#
arch/arm/boot/dts/ti/omap/am57xx-evm.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clock@600: failed to match any schema with compatible: ['ti,omap4-cm']
arch/arm/boot/dts/ti/omap/am57xx-evm.dtb: clock@700: '#clock-cells' is a dependency of 'clock-output-names'
from schema $id: http://devicetree.org/schemas/clock/clock.yaml#
arch/arm/boot/dts/ti/omap/am57xx-evm.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clock@700: failed to match any schema with compatible: ['ti,omap4-cm']
arch/arm/boot/dts/ti/omap/am57xx-evm.dtb: clock@760: '#clock-cells' is a dependency of 'clock-output-names'
from schema $id: http://devicetree.org/schemas/clock/clock.yaml#
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-reva3.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clocks/clock-dpll-gmac-x2: failed to match any schema with compatible: ['ti,omap4-dpll-x2-clock']
arch/arm/boot/dts/ti/omap/am57xx-evm-reva3.dtb: clock@300: '#clock-cells' is a dependency of 'clock-output-names'
from schema $id: http://devicetree.org/schemas/clock/clock.yaml#
arch/arm/boot/dts/ti/omap/am57xx-evm-reva3.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clock@300: failed to match any schema with compatible: ['ti,omap4-cm']
arch/arm/boot/dts/ti/omap/am57xx-evm-reva3.dtb: clock@400: '#clock-cells' is a dependency of 'clock-output-names'
from schema $id: http://devicetree.org/schemas/clock/clock.yaml#
arch/arm/boot/dts/ti/omap/am57xx-evm-reva3.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clock@400: failed to match any schema with compatible: ['ti,omap4-cm']
arch/arm/boot/dts/ti/omap/am57xx-evm-reva3.dtb: clock@500: '#clock-cells' is a dependency of 'clock-output-names'
from schema $id: http://devicetree.org/schemas/clock/clock.yaml#
arch/arm/boot/dts/ti/omap/am57xx-evm-reva3.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clock@500: failed to match any schema with compatible: ['ti,omap4-cm']
>> arch/arm/boot/dts/ti/omap/am57xx-evm-reva3.dtb: clock@20: 'assigned-clock-parents', 'assigned-clocks' do not match any of the regexes: 'pinctrl-[0-9]+'
from schema $id: http://devicetree.org/schemas/clock/ti,clkctrl.yaml#
arch/arm/boot/dts/ti/omap/am57xx-evm-reva3.dtb: clock@600: '#clock-cells' is a dependency of 'clock-output-names'
from schema $id: http://devicetree.org/schemas/clock/clock.yaml#
arch/arm/boot/dts/ti/omap/am57xx-evm-reva3.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clock@600: failed to match any schema with compatible: ['ti,omap4-cm']
arch/arm/boot/dts/ti/omap/am57xx-evm-reva3.dtb: clock@700: '#clock-cells' is a dependency of 'clock-output-names'
from schema $id: http://devicetree.org/schemas/clock/clock.yaml#
arch/arm/boot/dts/ti/omap/am57xx-evm-reva3.dtb: /ocp/interconnect@4a000000/segment@0/target-module@5000/cm_core_aon@0/clock@700: failed to match any schema with compatible: ['ti,omap4-cm']
arch/arm/boot/dts/ti/omap/am57xx-evm-reva3.dtb: clock@760: '#clock-cells' is a dependency of 'clock-output-names'
from schema $id: http://devicetree.org/schemas/clock/clock.yaml#
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']
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2025-03-09 1:07 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-03-05 22:47 [PATCH] dt-bindings: clock: ti: Convert ti-clkctrl.txt to json-schema Andreas Kemnade
2025-03-06 9:43 ` Krzysztof Kozlowski
2025-03-07 4:21 ` Tony Lindgren
-- strict thread matches above, loose matches on Subject: below --
2025-03-09 1:06 kernel test robot
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.