* [PATCH net-next v2 01/10] dt-bindings: net: sun8i-emac: Add A523 GMAC200 compatible
2025-08-13 14:55 [PATCH net-next v2 00/10] net: stmmac: Add support for Allwinner A523 GMAC200 Chen-Yu Tsai
@ 2025-08-13 14:55 ` Chen-Yu Tsai
2025-08-13 16:40 ` Rob Herring (Arm)
0 siblings, 1 reply; 5+ messages in thread
From: Chen-Yu Tsai @ 2025-08-13 14:55 UTC (permalink / raw)
To: Andrew Lunn, David S. Miller, Eric Dumazet, Jakub Kicinski,
Paolo Abeni, Rob Herring, Krzysztof Kozlowski, Conor Dooley,
Chen-Yu Tsai, Jernej Skrabec, Samuel Holland
Cc: netdev, devicetree, linux-arm-kernel, linux-sunxi, linux-kernel,
Andre Przywara
From: Chen-Yu Tsai <wens@csie.org>
The Allwinner A523 SoC family has a second Ethernet controller, called
the GMAC200 in the BSP and T527 datasheet, and referred to as GMAC1 for
numbering. This controller, according to BSP sources, is fully
compatible with a slightly newer version of the Synopsys DWMAC core.
The glue layer around the controller is the same as found around older
DWMAC cores on Allwinner SoCs. The only slight difference is that since
this is the second controller on the SoC, the register for the clock
delay controls is at a different offset. Last, the integration includes
a dedicated clock gate for the memory bus and the whole thing is put in
a separately controllable power domain.
Add a compatible string entry for it, and work in the requirements for
a second clock and a power domain.
Signed-off-by: Chen-Yu Tsai <wens@csie.org>
---
Changes since v1:
- Switch to generic (tx|rx)-internal-delay-ps properties
---
.../net/allwinner,sun8i-a83t-emac.yaml | 81 ++++++++++++++++++-
1 file changed, 79 insertions(+), 2 deletions(-)
diff --git a/Documentation/devicetree/bindings/net/allwinner,sun8i-a83t-emac.yaml b/Documentation/devicetree/bindings/net/allwinner,sun8i-a83t-emac.yaml
index 2ac709a4c472..b4358e6456fa 100644
--- a/Documentation/devicetree/bindings/net/allwinner,sun8i-a83t-emac.yaml
+++ b/Documentation/devicetree/bindings/net/allwinner,sun8i-a83t-emac.yaml
@@ -26,6 +26,9 @@ properties:
- allwinner,sun50i-h616-emac0
- allwinner,sun55i-a523-gmac0
- const: allwinner,sun50i-a64-emac
+ - items:
+ - const: allwinner,sun55i-a523-gmac200
+ - const: snps,dwmac-4.20a
reg:
maxItems: 1
@@ -37,14 +40,19 @@ properties:
const: macirq
clocks:
- maxItems: 1
+ minItems: 1
+ maxItems: 2
clock-names:
- const: stmmaceth
+ minItems: 1
+ maxItems: 2
phy-supply:
description: PHY regulator
+ power-domains:
+ maxItems: 1
+
syscon:
$ref: /schemas/types.yaml#/definitions/phandle
description:
@@ -191,6 +199,45 @@ allOf:
- mdio-parent-bus
- mdio@1
+ - if:
+ properties:
+ compatible:
+ contains:
+ const: allwinner,sun55i-a523-gmac200
+ then:
+ properties:
+ clocks:
+ minItems: 2
+ clock-names:
+ items:
+ - const: stmmaceth
+ - const: mbus
+ tx-internal-delay-ps:
+ default: 0
+ minimum: 0
+ maximum: 700
+ multipleOf: 100
+ description:
+ External RGMII PHY TX clock delay chain value in ps.
+ rx-internal-delay-ps:
+ default: 0
+ minimum: 0
+ maximum: 3100
+ multipleOf: 100
+ description:
+ External RGMII PHY TX clock delay chain value in ps.
+ required:
+ - power-domains
+ else:
+ properties:
+ clocks:
+ maxItems: 1
+ clock-names:
+ items:
+ - const: stmmaceth
+ power-domains: false
+
+
unevaluatedProperties: false
examples:
@@ -323,4 +370,34 @@ examples:
};
};
+ - |
+ ethernet@4510000 {
+ compatible = "allwinner,sun55i-a523-gmac200",
+ "snps,dwmac-4.20a";
+ reg = <0x04510000 0x10000>;
+ clocks = <&ccu 117>, <&ccu 79>;
+ clock-names = "stmmaceth", "mbus";
+ resets = <&ccu 43>;
+ reset-names = "stmmaceth";
+ interrupts = <0 47 4>;
+ interrupt-names = "macirq";
+ pinctrl-names = "default";
+ pinctrl-0 = <&rgmii1_pins>;
+ power-domains = <&pck600 4>;
+ syscon = <&syscon>;
+ phy-handle = <&ext_rgmii_phy_1>;
+ phy-mode = "rgmii-id";
+ snps,fixed-burst;
+ snps,axi-config = <&gmac1_stmmac_axi_setup>;
+
+ mdio {
+ compatible = "snps,dwmac-mdio";
+ #address-cells = <1>;
+ #size-cells = <0>;
+
+ ext_rgmii_phy_1: ethernet-phy@1 {
+ reg = <1>;
+ };
+ };
+ };
...
--
2.39.5
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH net-next v2 01/10] dt-bindings: net: sun8i-emac: Add A523 GMAC200 compatible
2025-08-13 14:55 ` [PATCH net-next v2 01/10] dt-bindings: net: sun8i-emac: Add A523 GMAC200 compatible Chen-Yu Tsai
@ 2025-08-13 16:40 ` Rob Herring (Arm)
0 siblings, 0 replies; 5+ messages in thread
From: Rob Herring (Arm) @ 2025-08-13 16:40 UTC (permalink / raw)
To: Chen-Yu Tsai
Cc: Jernej Skrabec, linux-kernel, David S. Miller, Andrew Lunn,
Andre Przywara, Chen-Yu Tsai, Eric Dumazet, Krzysztof Kozlowski,
devicetree, Paolo Abeni, linux-arm-kernel, Samuel Holland,
Jakub Kicinski, netdev, linux-sunxi, Conor Dooley
On Wed, 13 Aug 2025 22:55:31 +0800, Chen-Yu Tsai wrote:
> From: Chen-Yu Tsai <wens@csie.org>
>
> The Allwinner A523 SoC family has a second Ethernet controller, called
> the GMAC200 in the BSP and T527 datasheet, and referred to as GMAC1 for
> numbering. This controller, according to BSP sources, is fully
> compatible with a slightly newer version of the Synopsys DWMAC core.
> The glue layer around the controller is the same as found around older
> DWMAC cores on Allwinner SoCs. The only slight difference is that since
> this is the second controller on the SoC, the register for the clock
> delay controls is at a different offset. Last, the integration includes
> a dedicated clock gate for the memory bus and the whole thing is put in
> a separately controllable power domain.
>
> Add a compatible string entry for it, and work in the requirements for
> a second clock and a power domain.
>
> Signed-off-by: Chen-Yu Tsai <wens@csie.org>
> ---
> Changes since v1:
> - Switch to generic (tx|rx)-internal-delay-ps properties
> ---
> .../net/allwinner,sun8i-a83t-emac.yaml | 81 ++++++++++++++++++-
> 1 file changed, 79 insertions(+), 2 deletions(-)
>
My bot found errors running 'make dt_binding_check' on your patch:
yamllint warnings/errors:
dtschema/dtc warnings/errors:
/builds/robherring/dt-review-ci/linux/Documentation/devicetree/bindings/net/toshiba,visconti-dwmac.example.dtb: ethernet@28000000 (toshiba,visconti-dwmac): clock-names: ['stmmaceth', 'phy_ref_clk'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
/builds/robherring/dt-review-ci/linux/Documentation/devicetree/bindings/net/toshiba,visconti-dwmac.example.dtb: ethernet@28000000 (toshiba,visconti-dwmac): clocks: [[4294967295, 28], [4294967295, 118]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
/builds/robherring/dt-review-ci/linux/Documentation/devicetree/bindings/net/toshiba,visconti-dwmac.example.dtb: ethernet@28000000 (toshiba,visconti-dwmac): compatible: 'oneOf' conditional failed, one must be fixed:
['toshiba,visconti-dwmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'toshiba,visconti-dwmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
/builds/robherring/dt-review-ci/linux/Documentation/devicetree/bindings/net/toshiba,visconti-dwmac.example.dtb: ethernet@28000000 (toshiba,visconti-dwmac): 'resets' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
/builds/robherring/dt-review-ci/linux/Documentation/devicetree/bindings/net/toshiba,visconti-dwmac.example.dtb: ethernet@28000000 (toshiba,visconti-dwmac): 'reset-names' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
/builds/robherring/dt-review-ci/linux/Documentation/devicetree/bindings/net/toshiba,visconti-dwmac.example.dtb: ethernet@28000000 (toshiba,visconti-dwmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
/builds/robherring/dt-review-ci/linux/Documentation/devicetree/bindings/net/stm32-dwmac.example.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clock-names: ['stmmaceth', 'mac-clk-tx', 'mac-clk-rx', 'ethstp', 'eth-ck'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
/builds/robherring/dt-review-ci/linux/Documentation/devicetree/bindings/net/stm32-dwmac.example.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clocks: [[4294967295, 105], [4294967295, 103], [4294967295, 104], [4294967295, 112], [4294967295, 123]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
/builds/robherring/dt-review-ci/linux/Documentation/devicetree/bindings/net/stm32-dwmac.example.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clock-names: ['stmmaceth', 'mac-clk-tx', 'mac-clk-rx', 'ethstp', 'eth-ck'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
/builds/robherring/dt-review-ci/linux/Documentation/devicetree/bindings/net/stm32-dwmac.example.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clocks: [[4294967295, 105], [4294967295, 103], [4294967295, 104], [4294967295, 112], [4294967295, 123]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
/builds/robherring/dt-review-ci/linux/Documentation/devicetree/bindings/net/stm32-dwmac.example.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): compatible: 'oneOf' conditional failed, one must be fixed:
['st,stm32mp1-dwmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'st,stm32mp1-dwmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
/builds/robherring/dt-review-ci/linux/Documentation/devicetree/bindings/net/stm32-dwmac.example.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): 'resets' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
/builds/robherring/dt-review-ci/linux/Documentation/devicetree/bindings/net/stm32-dwmac.example.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): 'reset-names' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
/builds/robherring/dt-review-ci/linux/Documentation/devicetree/bindings/net/stm32-dwmac.example.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): 'phy-handle' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
/builds/robherring/dt-review-ci/linux/Documentation/devicetree/bindings/net/stm32-dwmac.example.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
/builds/robherring/dt-review-ci/linux/Documentation/devicetree/bindings/net/stm32-dwmac.example.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): Unevaluated properties are not allowed ('reg-names', 'st,syscon' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
/builds/robherring/dt-review-ci/linux/Documentation/devicetree/bindings/net/mediatek-dwmac.example.dtb: ethernet@1101c000 (mediatek,mt2712-gmac): clock-names:0: 'stmmaceth' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
/builds/robherring/dt-review-ci/linux/Documentation/devicetree/bindings/net/mediatek-dwmac.example.dtb: ethernet@1101c000 (mediatek,mt2712-gmac): clock-names: ['axi', 'apb', 'mac_main', 'ptp_ref', 'rmii_internal'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
/builds/robherring/dt-review-ci/linux/Documentation/devicetree/bindings/net/mediatek-dwmac.example.dtb: ethernet@1101c000 (mediatek,mt2712-gmac): clocks: [[4294967295, 34], [4294967295, 37], [4294967295, 154], [4294967295, 155], [4294967295, 158]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
/builds/robherring/dt-review-ci/linux/Documentation/devicetree/bindings/net/mediatek-dwmac.example.dtb: ethernet@1101c000 (mediatek,mt2712-gmac): power-domains: False schema does not allow [[4294967295, 4]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
/builds/robherring/dt-review-ci/linux/Documentation/devicetree/bindings/net/mediatek-dwmac.example.dtb: ethernet@1101c000 (mediatek,mt2712-gmac): clock-names: ['axi', 'apb', 'mac_main', 'ptp_ref', 'rmii_internal'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
/builds/robherring/dt-review-ci/linux/Documentation/devicetree/bindings/net/mediatek-dwmac.example.dtb: ethernet@1101c000 (mediatek,mt2712-gmac): clocks: [[4294967295, 34], [4294967295, 37], [4294967295, 154], [4294967295, 155], [4294967295, 158]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
/builds/robherring/dt-review-ci/linux/Documentation/devicetree/bindings/net/mediatek-dwmac.example.dtb: ethernet@1101c000 (mediatek,mt2712-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['mediatek,mt2712-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'mediatek,mt2712-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
/builds/robherring/dt-review-ci/linux/Documentation/devicetree/bindings/net/mediatek-dwmac.example.dtb: ethernet@1101c000 (mediatek,mt2712-gmac): 'resets' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
/builds/robherring/dt-review-ci/linux/Documentation/devicetree/bindings/net/mediatek-dwmac.example.dtb: ethernet@1101c000 (mediatek,mt2712-gmac): 'reset-names' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
/builds/robherring/dt-review-ci/linux/Documentation/devicetree/bindings/net/mediatek-dwmac.example.dtb: ethernet@1101c000 (mediatek,mt2712-gmac): 'phy-handle' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
/builds/robherring/dt-review-ci/linux/Documentation/devicetree/bindings/net/mediatek-dwmac.example.dtb: ethernet@1101c000 (mediatek,mt2712-gmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
/builds/robherring/dt-review-ci/linux/Documentation/devicetree/bindings/net/mediatek-dwmac.example.dtb: ethernet@1101c000 (mediatek,mt2712-gmac): Unevaluated properties are not allowed ('mediatek,pericfg', 'mediatek,tx-delay-ps' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
doc reference errors (make refcheckdocs):
See https://patchwork.ozlabs.org/project/devicetree-bindings/patch/20250813145540.2577789-2-wens@kernel.org
The base for the series is generally the latest rc1. A different dependency
should be noted in *this* patch.
If you already ran 'make dt_binding_check' and didn't see the above
error(s), then make sure 'yamllint' is installed and dt-schema is up to
date:
pip3 install dtschema --upgrade
Please check and re-submit after running the above command yourself. Note
that DT_SCHEMA_FILES can be set to your schema file to speed up checking
your schema. However, it must be unset to test all examples with your schema.
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH net-next v2 01/10] dt-bindings: net: sun8i-emac: Add A523 GMAC200 compatible
@ 2025-08-14 12:03 kernel test robot
0 siblings, 0 replies; 5+ messages in thread
From: kernel test robot @ 2025-08-14 12:03 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: <20250813145540.2577789-2-wens@kernel.org>
References: <20250813145540.2577789-2-wens@kernel.org>
TO: "Chen-Yu Tsai" <wens@kernel.org>
TO: Andrew Lunn <andrew+netdev@lunn.ch>
TO: "David S. Miller" <davem@davemloft.net>
CC: netdev@vger.kernel.org
TO: Eric Dumazet <edumazet@google.com>
TO: Jakub Kicinski <kuba@kernel.org>
TO: Paolo Abeni <pabeni@redhat.com>
TO: Rob Herring <robh@kernel.org>
TO: Krzysztof Kozlowski <krzk@kernel.org>
TO: Conor Dooley <conor+dt@kernel.org>
TO: "Chen-Yu Tsai" <wens@csie.org>
TO: Jernej Skrabec <jernej@kernel.org>
TO: Samuel Holland <samuel@sholland.org>
CC: devicetree@vger.kernel.org
CC: linux-arm-kernel@lists.infradead.org
CC: linux-sunxi@lists.linux.dev
CC: linux-kernel@vger.kernel.org
CC: Andre Przywara <andre.przywara@arm.com>
Hi Chen-Yu,
kernel test robot noticed the following build warnings:
[auto build test WARNING on net-next/main]
url: https://github.com/intel-lab-lkp/linux/commits/Chen-Yu-Tsai/dt-bindings-net-sun8i-emac-Add-A523-GMAC200-compatible/20250813-230250
base: net-next/main
patch link: https://lore.kernel.org/r/20250813145540.2577789-2-wens%40kernel.org
patch subject: [PATCH net-next v2 01/10] dt-bindings: net: sun8i-emac: Add A523 GMAC200 compatible
:::::: branch date: 21 hours ago
:::::: commit date: 21 hours ago
config: arm64-randconfig-051-20250814 (https://download.01.org/0day-ci/archive/20250814/202508141954.akc9NiK9-lkp@intel.com/config)
compiler: clang version 18.1.8 (https://github.com/llvm/llvm-project 3b5b5c1ec4a3095ab096dd780e84d7ab81f3d7ff)
dtschema version: 2025.6.2.dev4+g8f79ddd
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20250814/202508141954.akc9NiK9-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/202508141954.akc9NiK9-lkp@intel.com/
dtcheck warnings: (new ones prefixed by >>)
arch/arm64/boot/dts/mediatek/mt2712-evb.dtb: /power-controller@10006000: failed to match any schema with compatible: ['mediatek,mt2712-scpsys', 'syscon']
>> arch/arm64/boot/dts/mediatek/mt2712-evb.dtb: ethernet@1101c000 (mediatek,mt2712-gmac): clock-names:0: 'stmmaceth' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/mediatek/mt2712-evb.dtb: ethernet@1101c000 (mediatek,mt2712-gmac): clock-names: ['axi', 'apb', 'mac_main', 'ptp_ref', 'rmii_internal'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/mediatek/mt2712-evb.dtb: ethernet@1101c000 (mediatek,mt2712-gmac): clocks: [[27, 34], [27, 37], [6, 154], [6, 155], [6, 158]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/mediatek/mt2712-evb.dtb: ethernet@1101c000 (mediatek,mt2712-gmac): power-domains: False schema does not allow [[29, 4]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/mediatek/mt2712-evb.dtb: ethernet@1101c000 (mediatek,mt2712-gmac): clock-names: ['axi', 'apb', 'mac_main', 'ptp_ref', 'rmii_internal'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/mediatek/mt2712-evb.dtb: ethernet@1101c000 (mediatek,mt2712-gmac): clocks: [[27, 34], [27, 37], [6, 154], [6, 155], [6, 158]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/mediatek/mt2712-evb.dtb: ethernet@1101c000 (mediatek,mt2712-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['mediatek,mt2712-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'mediatek,mt2712-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/mediatek/mt2712-evb.dtb: ethernet@1101c000 (mediatek,mt2712-gmac): 'resets' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/mediatek/mt2712-evb.dtb: ethernet@1101c000 (mediatek,mt2712-gmac): 'reset-names' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/mediatek/mt2712-evb.dtb: ethernet@1101c000 (mediatek,mt2712-gmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/mediatek/mt2712-evb.dtb: ethernet@1101c000 (mediatek,mt2712-gmac): Unevaluated properties are not allowed ('mediatek,mac-wol', 'mediatek,pericfg', 'mediatek,tx-delay-ps' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/mediatek/mt2712-evb.dtb: /pcie@112ff000: failed to match any schema with compatible: ['mediatek,mt2712-pcie']
arch/arm64/boot/dts/mediatek/mt2712-evb.dtb: /pcie@11700000: failed to match any schema with compatible: ['mediatek,mt2712-pcie']
--
arch/arm64/boot/dts/rockchip/rk3528.dtsi:235.6-1087.4: Warning (unit_address_vs_reg): /soc: node has a reg or ranges property, but no unit name
>> arch/arm64/boot/dts/rockchip/rk3528-radxa-e20c.dtb: ethernet@ffbd0000 (rockchip,rk3528-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'mac_clk_rx', 'mac_clk_tx', 'pclk_mac', 'aclk_mac'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3528-radxa-e20c.dtb: ethernet@ffbd0000 (rockchip,rk3528-gmac): clocks: [[10, 282], [10, 283], [10, 285], [10, 284], [10, 281], [10, 280]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3528-radxa-e20c.dtb: ethernet@ffbd0000 (rockchip,rk3528-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'mac_clk_rx', 'mac_clk_tx', 'pclk_mac', 'aclk_mac'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3528-radxa-e20c.dtb: ethernet@ffbd0000 (rockchip,rk3528-gmac): clocks: [[10, 282], [10, 283], [10, 285], [10, 284], [10, 281], [10, 280]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3528-radxa-e20c.dtb: ethernet@ffbd0000 (rockchip,rk3528-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3528-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3528-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3528-radxa-e20c.dtb: ethernet@ffbd0000 (rockchip,rk3528-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3528-radxa-e20c.dtb: ethernet@ffbd0000 (rockchip,rk3528-gmac): interrupts: [[0, 113, 4], [0, 116, 4]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3528-radxa-e20c.dtb: ethernet@ffbe0000 (rockchip,rk3528-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3528-radxa-e20c.dtb: ethernet@ffbe0000 (rockchip,rk3528-gmac): clocks: [[10, 173], [10, 172], [10, 171], [10, 170]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3528-radxa-e20c.dtb: ethernet@ffbe0000 (rockchip,rk3528-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3528-radxa-e20c.dtb: ethernet@ffbe0000 (rockchip,rk3528-gmac): clocks: [[10, 173], [10, 172], [10, 171], [10, 170]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3528-radxa-e20c.dtb: ethernet@ffbe0000 (rockchip,rk3528-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3528-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3528-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3528-radxa-e20c.dtb: ethernet@ffbe0000 (rockchip,rk3528-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3528-radxa-e20c.dtb: ethernet@ffbe0000 (rockchip,rk3528-gmac): interrupts: [[0, 121, 4], [0, 124, 4]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3528-radxa-e20c.dtb: ethernet@ffbe0000 (rockchip,rk3528-gmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3528-radxa-e20c.dtb: ethernet@ffbe0000 (rockchip,rk3528-gmac): Unevaluated properties are not allowed ('clock_in_out', 'rockchip,grf' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm64/boot/dts/rockchip/rk3566-anbernic-rg-arc-d.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-anbernic-rg-arc-d.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clocks: [[15, 390], [15, 393], [15, 393], [15, 199], [15, 195], [15, 196], [15, 393], [15, 200]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-anbernic-rg-arc-d.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-anbernic-rg-arc-d.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clocks: [[15, 390], [15, 393], [15, 393], [15, 199], [15, 195], [15, 196], [15, 393], [15, 200]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-anbernic-rg-arc-d.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3568-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3568-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-anbernic-rg-arc-d.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-anbernic-rg-arc-d.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): interrupts: [[0, 32, 4], [0, 29, 4]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm64/boot/dts/rockchip/rk3566-anbernic-rg-arc-s.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-anbernic-rg-arc-s.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clocks: [[15, 390], [15, 393], [15, 393], [15, 199], [15, 195], [15, 196], [15, 393], [15, 200]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-anbernic-rg-arc-s.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-anbernic-rg-arc-s.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clocks: [[15, 390], [15, 393], [15, 393], [15, 199], [15, 195], [15, 196], [15, 393], [15, 200]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-anbernic-rg-arc-s.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3568-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3568-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-anbernic-rg-arc-s.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-anbernic-rg-arc-s.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): interrupts: [[0, 32, 4], [0, 29, 4]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm64/boot/dts/rockchip/rk3566-anbernic-rg353p.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-anbernic-rg353p.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clocks: [[15, 390], [15, 393], [15, 393], [15, 199], [15, 195], [15, 196], [15, 393], [15, 200]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-anbernic-rg353p.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-anbernic-rg353p.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clocks: [[15, 390], [15, 393], [15, 393], [15, 199], [15, 195], [15, 196], [15, 393], [15, 200]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-anbernic-rg353p.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3568-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3568-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-anbernic-rg353p.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-anbernic-rg353p.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): interrupts: [[0, 32, 4], [0, 29, 4]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm64/boot/dts/rockchip/rk3566-anbernic-rg353ps.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-anbernic-rg353ps.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clocks: [[15, 390], [15, 393], [15, 393], [15, 199], [15, 195], [15, 196], [15, 393], [15, 200]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-anbernic-rg353ps.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-anbernic-rg353ps.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clocks: [[15, 390], [15, 393], [15, 393], [15, 199], [15, 195], [15, 196], [15, 393], [15, 200]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-anbernic-rg353ps.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3568-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3568-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-anbernic-rg353ps.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-anbernic-rg353ps.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): interrupts: [[0, 32, 4], [0, 29, 4]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm64/boot/dts/rockchip/rk3566-anbernic-rg353v.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-anbernic-rg353v.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clocks: [[15, 390], [15, 393], [15, 393], [15, 199], [15, 195], [15, 196], [15, 393], [15, 200]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-anbernic-rg353v.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-anbernic-rg353v.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clocks: [[15, 390], [15, 393], [15, 393], [15, 199], [15, 195], [15, 196], [15, 393], [15, 200]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-anbernic-rg353v.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3568-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3568-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-anbernic-rg353v.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-anbernic-rg353v.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): interrupts: [[0, 32, 4], [0, 29, 4]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm64/boot/dts/rockchip/rk3566-anbernic-rg353vs.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-anbernic-rg353vs.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clocks: [[15, 390], [15, 393], [15, 393], [15, 199], [15, 195], [15, 196], [15, 393], [15, 200]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-anbernic-rg353vs.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-anbernic-rg353vs.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clocks: [[15, 390], [15, 393], [15, 393], [15, 199], [15, 195], [15, 196], [15, 393], [15, 200]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-anbernic-rg353vs.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3568-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3568-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-anbernic-rg353vs.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-anbernic-rg353vs.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): interrupts: [[0, 32, 4], [0, 29, 4]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm64/boot/dts/rockchip/rk3566-anbernic-rg503.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-anbernic-rg503.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clocks: [[15, 390], [15, 393], [15, 393], [15, 199], [15, 195], [15, 196], [15, 393], [15, 200]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-anbernic-rg503.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-anbernic-rg503.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clocks: [[15, 390], [15, 393], [15, 393], [15, 199], [15, 195], [15, 196], [15, 393], [15, 200]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-anbernic-rg503.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3568-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3568-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-anbernic-rg503.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-anbernic-rg503.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): interrupts: [[0, 32, 4], [0, 29, 4]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm64/boot/dts/rockchip/rk3566-odroid-m1s.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-odroid-m1s.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clocks: [[15, 390], [15, 393], [15, 393], [15, 199], [15, 195], [15, 196], [15, 393], [15, 200]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-odroid-m1s.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-odroid-m1s.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clocks: [[15, 390], [15, 393], [15, 393], [15, 199], [15, 195], [15, 196], [15, 393], [15, 200]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-odroid-m1s.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3568-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3568-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-odroid-m1s.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-odroid-m1s.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): interrupts: [[0, 32, 4], [0, 29, 4]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-odroid-m1s.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-odroid-m1s.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): Unevaluated properties are not allowed ('clock_in_out', 'rockchip,grf' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm64/boot/dts/rockchip/rk3566-orangepi-3b-v1.1.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-orangepi-3b-v1.1.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clocks: [[15, 390], [15, 393], [15, 393], [15, 199], [15, 195], [15, 196], [15, 393], [15, 200]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-orangepi-3b-v1.1.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-orangepi-3b-v1.1.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clocks: [[15, 390], [15, 393], [15, 393], [15, 199], [15, 195], [15, 196], [15, 393], [15, 200]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-orangepi-3b-v1.1.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3568-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3568-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-orangepi-3b-v1.1.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-orangepi-3b-v1.1.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): interrupts: [[0, 32, 4], [0, 29, 4]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-orangepi-3b-v1.1.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-orangepi-3b-v1.1.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): Unevaluated properties are not allowed ('clock_in_out', 'rockchip,grf' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm64/boot/dts/rockchip/rk3566-orangepi-3b-v2.1.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-orangepi-3b-v2.1.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clocks: [[15, 390], [15, 393], [15, 393], [15, 199], [15, 195], [15, 196], [15, 393], [15, 200]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-orangepi-3b-v2.1.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-orangepi-3b-v2.1.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clocks: [[15, 390], [15, 393], [15, 393], [15, 199], [15, 195], [15, 196], [15, 393], [15, 200]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-orangepi-3b-v2.1.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3568-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3568-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-orangepi-3b-v2.1.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-orangepi-3b-v2.1.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): interrupts: [[0, 32, 4], [0, 29, 4]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-orangepi-3b-v2.1.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-orangepi-3b-v2.1.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): Unevaluated properties are not allowed ('clock_in_out', 'rockchip,grf' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
arch/arm64/boot/dts/rockchip/rk3566-pinenote.dtsi:488.10-499.6: Warning (graph_child_address): /i2c@fe5c0000/tcpc@60/connector/ports: graph node has single child node 'port@0', #address-cells/#size-cells are not necessary
>> arch/arm64/boot/dts/rockchip/rk3566-pinenote-v1.1.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-pinenote-v1.1.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clocks: [[15, 390], [15, 393], [15, 393], [15, 199], [15, 195], [15, 196], [15, 393], [15, 200]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-pinenote-v1.1.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-pinenote-v1.1.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clocks: [[15, 390], [15, 393], [15, 393], [15, 199], [15, 195], [15, 196], [15, 393], [15, 200]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-pinenote-v1.1.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3568-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3568-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-pinenote-v1.1.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-pinenote-v1.1.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): interrupts: [[0, 32, 4], [0, 29, 4]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3566-pinenote-v1.1.dtb: usb2phy@fe8a0000 (rockchip,rk3568-usb2phy): otg-port: 'port' does not match any of the regexes: '^pinctrl-[0-9]+$'
from schema $id: http://devicetree.org/schemas/phy/rockchip,inno-usb2phy.yaml#
--
>> arch/arm64/boot/dts/rockchip/rk3566-pinetab2-v0.1.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-pinetab2-v0.1.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clocks: [[15, 390], [15, 393], [15, 393], [15, 199], [15, 195], [15, 196], [15, 393], [15, 200]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-pinetab2-v0.1.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-pinetab2-v0.1.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clocks: [[15, 390], [15, 393], [15, 393], [15, 199], [15, 195], [15, 196], [15, 393], [15, 200]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-pinetab2-v0.1.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3568-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3568-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-pinetab2-v0.1.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-pinetab2-v0.1.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): interrupts: [[0, 32, 4], [0, 29, 4]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3566-pinetab2-v0.1.dtb: phy@fe870000 (rockchip,rk3568-csi-dphy): 'power-domains' is a required property
from schema $id: http://devicetree.org/schemas/phy/rockchip-inno-csi-dphy.yaml#
--
>> arch/arm64/boot/dts/rockchip/rk3566-pinetab2-v2.0.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-pinetab2-v2.0.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clocks: [[15, 390], [15, 393], [15, 393], [15, 199], [15, 195], [15, 196], [15, 393], [15, 200]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-pinetab2-v2.0.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-pinetab2-v2.0.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clocks: [[15, 390], [15, 393], [15, 393], [15, 199], [15, 195], [15, 196], [15, 393], [15, 200]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-pinetab2-v2.0.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3568-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3568-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-pinetab2-v2.0.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-pinetab2-v2.0.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): interrupts: [[0, 32, 4], [0, 29, 4]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3566-pinetab2-v2.0.dtb: phy@fe870000 (rockchip,rk3568-csi-dphy): 'power-domains' is a required property
from schema $id: http://devicetree.org/schemas/phy/rockchip-inno-csi-dphy.yaml#
--
>> arch/arm64/boot/dts/rockchip/rk3566-powkiddy-rgb10max3.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-powkiddy-rgb10max3.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clocks: [[15, 390], [15, 393], [15, 393], [15, 199], [15, 195], [15, 196], [15, 393], [15, 200]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-powkiddy-rgb10max3.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-powkiddy-rgb10max3.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clocks: [[15, 390], [15, 393], [15, 393], [15, 199], [15, 195], [15, 196], [15, 393], [15, 200]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-powkiddy-rgb10max3.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3568-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3568-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-powkiddy-rgb10max3.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-powkiddy-rgb10max3.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): interrupts: [[0, 32, 4], [0, 29, 4]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm64/boot/dts/rockchip/rk3566-powkiddy-rgb20sx.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-powkiddy-rgb20sx.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clocks: [[15, 390], [15, 393], [15, 393], [15, 199], [15, 195], [15, 196], [15, 393], [15, 200]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-powkiddy-rgb20sx.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-powkiddy-rgb20sx.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clocks: [[15, 390], [15, 393], [15, 393], [15, 199], [15, 195], [15, 196], [15, 393], [15, 200]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-powkiddy-rgb20sx.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3568-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3568-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-powkiddy-rgb20sx.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-powkiddy-rgb20sx.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): interrupts: [[0, 32, 4], [0, 29, 4]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm64/boot/dts/rockchip/rk3566-powkiddy-rgb30.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-powkiddy-rgb30.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clocks: [[15, 390], [15, 393], [15, 393], [15, 199], [15, 195], [15, 196], [15, 393], [15, 200]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-powkiddy-rgb30.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-powkiddy-rgb30.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clocks: [[15, 390], [15, 393], [15, 393], [15, 199], [15, 195], [15, 196], [15, 393], [15, 200]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-powkiddy-rgb30.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3568-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3568-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-powkiddy-rgb30.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-powkiddy-rgb30.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): interrupts: [[0, 32, 4], [0, 29, 4]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm64/boot/dts/rockchip/rk3566-powkiddy-rk2023.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-powkiddy-rk2023.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clocks: [[15, 390], [15, 393], [15, 393], [15, 199], [15, 195], [15, 196], [15, 393], [15, 200]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-powkiddy-rk2023.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-powkiddy-rk2023.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clocks: [[15, 390], [15, 393], [15, 393], [15, 199], [15, 195], [15, 196], [15, 393], [15, 200]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-powkiddy-rk2023.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3568-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3568-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-powkiddy-rk2023.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-powkiddy-rk2023.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): interrupts: [[0, 32, 4], [0, 29, 4]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm64/boot/dts/rockchip/rk3566-powkiddy-x55.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-powkiddy-x55.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clocks: [[15, 390], [15, 393], [15, 393], [15, 199], [15, 195], [15, 196], [15, 393], [15, 200]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-powkiddy-x55.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-powkiddy-x55.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clocks: [[15, 390], [15, 393], [15, 393], [15, 199], [15, 195], [15, 196], [15, 393], [15, 200]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-powkiddy-x55.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3568-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3568-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-powkiddy-x55.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-powkiddy-x55.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): interrupts: [[0, 32, 4], [0, 29, 4]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm64/boot/dts/rockchip/rk3566-quartz64-a.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-quartz64-a.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clocks: [[15, 390], [15, 393], [15, 393], [15, 199], [15, 195], [15, 196], [15, 393], [15, 200]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-quartz64-a.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-quartz64-a.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clocks: [[15, 390], [15, 393], [15, 393], [15, 199], [15, 195], [15, 196], [15, 393], [15, 200]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-quartz64-a.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3568-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3568-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-quartz64-a.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-quartz64-a.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): interrupts: [[0, 32, 4], [0, 29, 4]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-quartz64-a.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-quartz64-a.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): Unevaluated properties are not allowed ('clock_in_out', 'rockchip,grf', 'rx_delay', 'tx_delay' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm64/boot/dts/rockchip/rk3566-quartz64-b.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-quartz64-b.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clocks: [[15, 390], [15, 393], [15, 393], [15, 199], [15, 195], [15, 196], [15, 393], [15, 200]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-quartz64-b.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-quartz64-b.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clocks: [[15, 390], [15, 393], [15, 393], [15, 199], [15, 195], [15, 196], [15, 393], [15, 200]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-quartz64-b.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3568-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3568-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-quartz64-b.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-quartz64-b.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): interrupts: [[0, 32, 4], [0, 29, 4]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-quartz64-b.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-quartz64-b.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): Unevaluated properties are not allowed ('clock_in_out', 'rockchip,grf', 'rx_delay', 'tx_delay' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm64/boot/dts/rockchip/rk3566-radxa-cm3-io.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-radxa-cm3-io.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clocks: [[15, 390], [15, 393], [15, 393], [15, 199], [15, 195], [15, 196], [15, 393], [15, 200]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-radxa-cm3-io.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-radxa-cm3-io.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clocks: [[15, 390], [15, 393], [15, 393], [15, 199], [15, 195], [15, 196], [15, 393], [15, 200]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-radxa-cm3-io.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3568-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3568-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-radxa-cm3-io.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-radxa-cm3-io.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): interrupts: [[0, 32, 4], [0, 29, 4]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-radxa-cm3-io.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-radxa-cm3-io.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): Unevaluated properties are not allowed ('clock_in_out', 'rockchip,grf', 'rx_delay', 'tx_delay' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3566-radxa-cm3-io.dtb: wifi@1 (brcm,bcm43455-fmac): compatible: 'oneOf' conditional failed, one must be fixed:
['brcm,bcm43455-fmac'] is too short
'brcm,bcm43455-fmac' is not one of ['brcm,bcm4329-fmac', 'pci14e4,43dc', 'pci14e4,4464', 'pci14e4,4488', 'pci14e4,4425', 'pci14e4,4433', 'pci14e4,449d']
from schema $id: http://devicetree.org/schemas/net/wireless/brcm,bcm4329-fmac.yaml#
arch/arm64/boot/dts/rockchip/rk3566-radxa-cm3-io.dtb: wifi@1 (brcm,bcm43455-fmac): Unevaluated properties are not allowed ('compatible' was unexpected)
from schema $id: http://devicetree.org/schemas/net/wireless/brcm,bcm4329-fmac.yaml#
--
>> arch/arm64/boot/dts/rockchip/rk3566-radxa-zero-3e.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-radxa-zero-3e.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clocks: [[15, 390], [15, 393], [15, 393], [15, 199], [15, 195], [15, 196], [15, 393], [15, 200]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-radxa-zero-3e.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-radxa-zero-3e.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clocks: [[15, 390], [15, 393], [15, 393], [15, 199], [15, 195], [15, 196], [15, 393], [15, 200]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-radxa-zero-3e.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3568-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3568-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-radxa-zero-3e.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-radxa-zero-3e.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): interrupts: [[0, 32, 4], [0, 29, 4]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-radxa-zero-3e.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-radxa-zero-3e.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): Unevaluated properties are not allowed ('clock_in_out', 'rockchip,grf' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm64/boot/dts/rockchip/rk3566-radxa-zero-3w.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-radxa-zero-3w.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clocks: [[15, 390], [15, 393], [15, 393], [15, 199], [15, 195], [15, 196], [15, 393], [15, 200]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-radxa-zero-3w.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-radxa-zero-3w.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clocks: [[15, 390], [15, 393], [15, 393], [15, 199], [15, 195], [15, 196], [15, 393], [15, 200]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-radxa-zero-3w.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3568-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3568-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-radxa-zero-3w.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-radxa-zero-3w.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): interrupts: [[0, 32, 4], [0, 29, 4]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm64/boot/dts/rockchip/rk3566-roc-pc.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-roc-pc.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clocks: [[15, 390], [15, 393], [15, 393], [15, 199], [15, 195], [15, 196], [15, 393], [15, 200]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-roc-pc.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-roc-pc.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clocks: [[15, 390], [15, 393], [15, 393], [15, 199], [15, 195], [15, 196], [15, 393], [15, 200]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-roc-pc.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3568-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3568-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-roc-pc.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-roc-pc.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): interrupts: [[0, 32, 4], [0, 29, 4]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-roc-pc.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-roc-pc.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): Unevaluated properties are not allowed ('clock_in_out', 'rockchip,grf', 'rx_delay', 'tx_delay' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm64/boot/dts/rockchip/rk3566-rock-3c.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-rock-3c.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clocks: [[15, 390], [15, 393], [15, 393], [15, 199], [15, 195], [15, 196], [15, 393], [15, 200]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-rock-3c.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-rock-3c.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clocks: [[15, 390], [15, 393], [15, 393], [15, 199], [15, 195], [15, 196], [15, 393], [15, 200]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-rock-3c.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3568-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3568-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-rock-3c.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-rock-3c.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): interrupts: [[0, 32, 4], [0, 29, 4]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-rock-3c.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-rock-3c.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): Unevaluated properties are not allowed ('clock_in_out', 'rockchip,grf' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm64/boot/dts/rockchip/rk3566-soquartz-blade.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-soquartz-blade.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clocks: [[15, 390], [15, 393], [15, 393], [15, 199], [15, 195], [15, 196], [15, 393], [15, 200]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-soquartz-blade.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-soquartz-blade.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clocks: [[15, 390], [15, 393], [15, 393], [15, 199], [15, 195], [15, 196], [15, 393], [15, 200]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-soquartz-blade.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3568-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3568-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-soquartz-blade.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-soquartz-blade.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): interrupts: [[0, 32, 4], [0, 29, 4]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-soquartz-blade.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-soquartz-blade.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): Unevaluated properties are not allowed ('clock_in_out', 'rockchip,grf', 'rx_delay', 'tx_delay' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm64/boot/dts/rockchip/rk3566-soquartz-cm4.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-soquartz-cm4.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clocks: [[15, 390], [15, 393], [15, 393], [15, 199], [15, 195], [15, 196], [15, 393], [15, 200]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-soquartz-cm4.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-soquartz-cm4.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clocks: [[15, 390], [15, 393], [15, 393], [15, 199], [15, 195], [15, 196], [15, 393], [15, 200]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-soquartz-cm4.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3568-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3568-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-soquartz-cm4.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-soquartz-cm4.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): interrupts: [[0, 32, 4], [0, 29, 4]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-soquartz-cm4.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-soquartz-cm4.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): Unevaluated properties are not allowed ('clock_in_out', 'rockchip,grf', 'rx_delay', 'tx_delay' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm64/boot/dts/rockchip/rk3566-soquartz-model-a.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-soquartz-model-a.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clocks: [[15, 390], [15, 393], [15, 393], [15, 199], [15, 195], [15, 196], [15, 393], [15, 200]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-soquartz-model-a.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-soquartz-model-a.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clocks: [[15, 390], [15, 393], [15, 393], [15, 199], [15, 195], [15, 196], [15, 393], [15, 200]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-soquartz-model-a.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3568-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3568-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-soquartz-model-a.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-soquartz-model-a.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): interrupts: [[0, 32, 4], [0, 29, 4]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-soquartz-model-a.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-soquartz-model-a.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): Unevaluated properties are not allowed ('clock_in_out', 'rockchip,grf', 'rx_delay', 'tx_delay' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm64/boot/dts/rockchip/rk3566-box-demo.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-box-demo.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clocks: [[15, 390], [15, 393], [15, 393], [15, 199], [15, 195], [15, 196], [15, 393], [15, 200]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-box-demo.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-box-demo.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clocks: [[15, 390], [15, 393], [15, 393], [15, 199], [15, 195], [15, 196], [15, 393], [15, 200]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-box-demo.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3568-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3568-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-box-demo.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-box-demo.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): interrupts: [[0, 32, 4], [0, 29, 4]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-box-demo.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-box-demo.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): Unevaluated properties are not allowed ('clock_in_out', 'rockchip,grf', 'rx_delay', 'tx_delay' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm64/boot/dts/rockchip/rk3566-lckfb-tspi.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-lckfb-tspi.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clocks: [[15, 390], [15, 393], [15, 393], [15, 199], [15, 195], [15, 196], [15, 393], [15, 200]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-lckfb-tspi.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-lckfb-tspi.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clocks: [[15, 390], [15, 393], [15, 393], [15, 199], [15, 195], [15, 196], [15, 393], [15, 200]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-lckfb-tspi.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3568-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3568-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-lckfb-tspi.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-lckfb-tspi.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): interrupts: [[0, 32, 4], [0, 29, 4]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm64/boot/dts/rockchip/rk3566-lubancat-1.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-lubancat-1.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clocks: [[15, 390], [15, 393], [15, 393], [15, 199], [15, 195], [15, 196], [15, 393], [15, 200]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-lubancat-1.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-lubancat-1.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clocks: [[15, 390], [15, 393], [15, 393], [15, 199], [15, 195], [15, 196], [15, 393], [15, 200]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-lubancat-1.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3568-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3568-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-lubancat-1.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-lubancat-1.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): interrupts: [[0, 32, 4], [0, 29, 4]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-lubancat-1.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-lubancat-1.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): Unevaluated properties are not allowed ('clock_in_out', 'rockchip,grf', 'rx_delay', 'tx_delay' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm64/boot/dts/rockchip/rk3566-nanopi-r3s.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-nanopi-r3s.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clocks: [[15, 390], [15, 393], [15, 393], [15, 199], [15, 195], [15, 196], [15, 393], [15, 200]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-nanopi-r3s.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-nanopi-r3s.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clocks: [[15, 390], [15, 393], [15, 393], [15, 199], [15, 195], [15, 196], [15, 393], [15, 200]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-nanopi-r3s.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3568-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3568-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-nanopi-r3s.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-nanopi-r3s.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): interrupts: [[0, 32, 4], [0, 29, 4]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-nanopi-r3s.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-nanopi-r3s.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): Unevaluated properties are not allowed ('clock_in_out', 'rockchip,grf' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm64/boot/dts/rockchip/rk3566-bigtreetech-cb2-manta.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-bigtreetech-cb2-manta.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clocks: [[15, 390], [15, 393], [15, 393], [15, 199], [15, 195], [15, 196], [15, 393], [15, 200]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-bigtreetech-cb2-manta.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-bigtreetech-cb2-manta.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clocks: [[15, 390], [15, 393], [15, 393], [15, 199], [15, 195], [15, 196], [15, 393], [15, 200]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-bigtreetech-cb2-manta.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3568-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3568-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-bigtreetech-cb2-manta.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-bigtreetech-cb2-manta.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): interrupts: [[0, 32, 4], [0, 29, 4]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-bigtreetech-cb2-manta.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-bigtreetech-cb2-manta.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): Unevaluated properties are not allowed ('clock_in_out', 'rockchip,grf' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3566-bigtreetech-cb2-manta.dtb: touchscreen@48 (ti,tsc2007): 'ti,rt-thr' does not match any of the regexes: '^pinctrl-[0-9]+$'
from schema $id: http://devicetree.org/schemas/input/touchscreen/ti.tsc2007.yaml#
--
>> arch/arm64/boot/dts/rockchip/rk3566-bigtreetech-pi2.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-bigtreetech-pi2.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clocks: [[15, 390], [15, 393], [15, 393], [15, 199], [15, 195], [15, 196], [15, 393], [15, 200]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-bigtreetech-pi2.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-bigtreetech-pi2.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clocks: [[15, 390], [15, 393], [15, 393], [15, 199], [15, 195], [15, 196], [15, 393], [15, 200]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-bigtreetech-pi2.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3568-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3568-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-bigtreetech-pi2.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-bigtreetech-pi2.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): interrupts: [[0, 32, 4], [0, 29, 4]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-bigtreetech-pi2.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3566-bigtreetech-pi2.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): Unevaluated properties are not allowed ('clock_in_out', 'rockchip,grf' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3566-bigtreetech-pi2.dtb: touchscreen@48 (ti,tsc2007): 'ti,rt-thr' does not match any of the regexes: '^pinctrl-[0-9]+$'
from schema $id: http://devicetree.org/schemas/input/touchscreen/ti.tsc2007.yaml#
--
>> arch/arm64/boot/dts/rockchip/rk3568-bpi-r2-pro.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-bpi-r2-pro.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clocks: [[14, 390], [14, 393], [14, 393], [14, 199], [14, 195], [14, 196], [14, 393], [14, 200]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-bpi-r2-pro.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-bpi-r2-pro.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clocks: [[14, 390], [14, 393], [14, 393], [14, 199], [14, 195], [14, 196], [14, 393], [14, 200]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-bpi-r2-pro.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3568-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3568-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-bpi-r2-pro.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-bpi-r2-pro.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): interrupts: [[0, 32, 4], [0, 29, 4]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-bpi-r2-pro.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-bpi-r2-pro.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): Unevaluated properties are not allowed ('clock_in_out', 'rockchip,grf', 'rx_delay', 'tx_delay' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-bpi-r2-pro.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-bpi-r2-pro.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): clocks: [[14, 386], [14, 389], [14, 389], [14, 184], [14, 180], [14, 181], [14, 389], [14, 185]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-bpi-r2-pro.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-bpi-r2-pro.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): clocks: [[14, 386], [14, 389], [14, 389], [14, 184], [14, 180], [14, 181], [14, 389], [14, 185]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-bpi-r2-pro.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3568-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3568-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-bpi-r2-pro.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-bpi-r2-pro.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): interrupts: [[0, 27, 4], [0, 24, 4]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-bpi-r2-pro.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): 'phy-handle' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-bpi-r2-pro.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-bpi-r2-pro.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): Unevaluated properties are not allowed ('clock_in_out', 'rockchip,grf', 'rx_delay', 'tx_delay' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm64/boot/dts/rockchip/rk3568-evb1-v10.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-evb1-v10.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clocks: [[15, 390], [15, 393], [15, 393], [15, 199], [15, 195], [15, 196], [15, 393], [15, 200]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-evb1-v10.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-evb1-v10.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clocks: [[15, 390], [15, 393], [15, 393], [15, 199], [15, 195], [15, 196], [15, 393], [15, 200]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-evb1-v10.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3568-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3568-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-evb1-v10.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-evb1-v10.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): interrupts: [[0, 32, 4], [0, 29, 4]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-evb1-v10.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-evb1-v10.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): Unevaluated properties are not allowed ('clock_in_out', 'rockchip,grf' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-evb1-v10.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-evb1-v10.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): clocks: [[15, 386], [15, 389], [15, 389], [15, 184], [15, 180], [15, 181], [15, 389], [15, 185]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-evb1-v10.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-evb1-v10.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): clocks: [[15, 386], [15, 389], [15, 389], [15, 184], [15, 180], [15, 181], [15, 389], [15, 185]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-evb1-v10.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3568-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3568-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-evb1-v10.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-evb1-v10.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): interrupts: [[0, 27, 4], [0, 24, 4]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-evb1-v10.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-evb1-v10.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): Unevaluated properties are not allowed ('clock_in_out', 'rockchip,grf' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm64/boot/dts/rockchip/rk3568-fastrhino-r66s.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-fastrhino-r66s.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clocks: [[15, 390], [15, 393], [15, 393], [15, 199], [15, 195], [15, 196], [15, 393], [15, 200]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-fastrhino-r66s.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-fastrhino-r66s.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clocks: [[15, 390], [15, 393], [15, 393], [15, 199], [15, 195], [15, 196], [15, 393], [15, 200]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-fastrhino-r66s.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3568-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3568-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-fastrhino-r66s.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-fastrhino-r66s.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): interrupts: [[0, 32, 4], [0, 29, 4]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-fastrhino-r66s.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-fastrhino-r66s.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): clocks: [[15, 386], [15, 389], [15, 389], [15, 184], [15, 180], [15, 181], [15, 389], [15, 185]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-fastrhino-r66s.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-fastrhino-r66s.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): clocks: [[15, 386], [15, 389], [15, 389], [15, 184], [15, 180], [15, 181], [15, 389], [15, 185]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-fastrhino-r66s.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3568-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3568-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-fastrhino-r66s.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-fastrhino-r66s.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): interrupts: [[0, 27, 4], [0, 24, 4]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm64/boot/dts/rockchip/rk3568-fastrhino-r68s.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-fastrhino-r68s.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clocks: [[15, 390], [15, 393], [15, 393], [15, 199], [15, 195], [15, 196], [15, 393], [15, 200]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-fastrhino-r68s.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-fastrhino-r68s.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clocks: [[15, 390], [15, 393], [15, 393], [15, 199], [15, 195], [15, 196], [15, 393], [15, 200]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-fastrhino-r68s.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3568-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3568-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-fastrhino-r68s.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-fastrhino-r68s.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): interrupts: [[0, 32, 4], [0, 29, 4]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-fastrhino-r68s.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-fastrhino-r68s.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): Unevaluated properties are not allowed ('clock_in_out', 'rockchip,grf' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-fastrhino-r68s.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-fastrhino-r68s.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): clocks: [[15, 386], [15, 389], [15, 389], [15, 184], [15, 180], [15, 181], [15, 389], [15, 185]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-fastrhino-r68s.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-fastrhino-r68s.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): clocks: [[15, 386], [15, 389], [15, 389], [15, 184], [15, 180], [15, 181], [15, 389], [15, 185]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-fastrhino-r68s.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3568-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3568-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-fastrhino-r68s.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-fastrhino-r68s.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): interrupts: [[0, 27, 4], [0, 24, 4]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-fastrhino-r68s.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-fastrhino-r68s.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): Unevaluated properties are not allowed ('clock_in_out', 'rockchip,grf' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm64/boot/dts/rockchip/rk3568-lubancat-2.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-lubancat-2.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clocks: [[15, 390], [15, 393], [15, 393], [15, 199], [15, 195], [15, 196], [15, 393], [15, 200]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-lubancat-2.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-lubancat-2.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clocks: [[15, 390], [15, 393], [15, 393], [15, 199], [15, 195], [15, 196], [15, 393], [15, 200]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-lubancat-2.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3568-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3568-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-lubancat-2.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-lubancat-2.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): interrupts: [[0, 32, 4], [0, 29, 4]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-lubancat-2.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-lubancat-2.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): Unevaluated properties are not allowed ('clock_in_out', 'rockchip,grf', 'rx_delay', 'tx_delay' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-lubancat-2.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-lubancat-2.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): clocks: [[15, 386], [15, 389], [15, 389], [15, 184], [15, 180], [15, 181], [15, 389], [15, 185]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-lubancat-2.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-lubancat-2.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): clocks: [[15, 386], [15, 389], [15, 389], [15, 184], [15, 180], [15, 181], [15, 389], [15, 185]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-lubancat-2.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3568-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3568-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-lubancat-2.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-lubancat-2.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): interrupts: [[0, 27, 4], [0, 24, 4]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-lubancat-2.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-lubancat-2.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): Unevaluated properties are not allowed ('clock_in_out', 'rockchip,grf', 'rx_delay', 'tx_delay' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm64/boot/dts/rockchip/rk3568-mecsbc.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-mecsbc.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clocks: [[15, 390], [15, 393], [15, 393], [15, 199], [15, 195], [15, 196], [15, 393], [15, 200]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-mecsbc.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-mecsbc.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clocks: [[15, 390], [15, 393], [15, 393], [15, 199], [15, 195], [15, 196], [15, 393], [15, 200]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-mecsbc.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3568-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3568-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-mecsbc.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-mecsbc.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): interrupts: [[0, 32, 4], [0, 29, 4]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-mecsbc.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-mecsbc.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): Unevaluated properties are not allowed ('clock_in_out', 'rockchip,grf' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-mecsbc.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-mecsbc.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): clocks: [[15, 386], [15, 389], [15, 389], [15, 184], [15, 180], [15, 181], [15, 389], [15, 185]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-mecsbc.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-mecsbc.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): clocks: [[15, 386], [15, 389], [15, 389], [15, 184], [15, 180], [15, 181], [15, 389], [15, 185]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-mecsbc.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3568-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3568-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-mecsbc.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-mecsbc.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): interrupts: [[0, 27, 4], [0, 24, 4]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm64/boot/dts/rockchip/rk3568-nanopi-r5c.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-nanopi-r5c.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clocks: [[15, 390], [15, 393], [15, 393], [15, 199], [15, 195], [15, 196], [15, 393], [15, 200]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-nanopi-r5c.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-nanopi-r5c.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clocks: [[15, 390], [15, 393], [15, 393], [15, 199], [15, 195], [15, 196], [15, 393], [15, 200]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-nanopi-r5c.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3568-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3568-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-nanopi-r5c.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-nanopi-r5c.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): interrupts: [[0, 32, 4], [0, 29, 4]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-nanopi-r5c.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-nanopi-r5c.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): clocks: [[15, 386], [15, 389], [15, 389], [15, 184], [15, 180], [15, 181], [15, 389], [15, 185]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-nanopi-r5c.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-nanopi-r5c.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): clocks: [[15, 386], [15, 389], [15, 389], [15, 184], [15, 180], [15, 181], [15, 389], [15, 185]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-nanopi-r5c.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3568-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3568-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-nanopi-r5c.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-nanopi-r5c.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): interrupts: [[0, 27, 4], [0, 24, 4]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm64/boot/dts/rockchip/rk3568-nanopi-r5s.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-nanopi-r5s.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clocks: [[15, 390], [15, 393], [15, 393], [15, 199], [15, 195], [15, 196], [15, 393], [15, 200]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-nanopi-r5s.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-nanopi-r5s.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clocks: [[15, 390], [15, 393], [15, 393], [15, 199], [15, 195], [15, 196], [15, 393], [15, 200]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-nanopi-r5s.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3568-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3568-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-nanopi-r5s.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-nanopi-r5s.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): interrupts: [[0, 32, 4], [0, 29, 4]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-nanopi-r5s.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-nanopi-r5s.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): clocks: [[15, 386], [15, 389], [15, 389], [15, 184], [15, 180], [15, 181], [15, 389], [15, 185]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-nanopi-r5s.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-nanopi-r5s.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): clocks: [[15, 386], [15, 389], [15, 389], [15, 184], [15, 180], [15, 181], [15, 389], [15, 185]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-nanopi-r5s.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3568-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3568-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-nanopi-r5s.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-nanopi-r5s.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): interrupts: [[0, 27, 4], [0, 24, 4]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-nanopi-r5s.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-nanopi-r5s.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): Unevaluated properties are not allowed ('clock_in_out', 'rockchip,grf', 'rx_delay', 'tx_delay' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm64/boot/dts/rockchip/rk3568-odroid-m1.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-odroid-m1.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clocks: [[15, 390], [15, 393], [15, 393], [15, 199], [15, 195], [15, 196], [15, 393], [15, 200]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-odroid-m1.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-odroid-m1.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clocks: [[15, 390], [15, 393], [15, 393], [15, 199], [15, 195], [15, 196], [15, 393], [15, 200]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-odroid-m1.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3568-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3568-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-odroid-m1.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-odroid-m1.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): interrupts: [[0, 32, 4], [0, 29, 4]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-odroid-m1.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-odroid-m1.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): clocks: [[15, 386], [15, 389], [15, 389], [15, 184], [15, 180], [15, 181], [15, 389], [15, 185]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-odroid-m1.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-odroid-m1.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): clocks: [[15, 386], [15, 389], [15, 389], [15, 184], [15, 180], [15, 181], [15, 389], [15, 185]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-odroid-m1.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3568-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3568-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-odroid-m1.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-odroid-m1.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): interrupts: [[0, 27, 4], [0, 24, 4]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-odroid-m1.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-odroid-m1.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): Unevaluated properties are not allowed ('clock_in_out', 'rockchip,grf', 'rx_delay', 'tx_delay' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm64/boot/dts/rockchip/rk3568-photonicat.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-photonicat.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clocks: [[15, 390], [15, 393], [15, 393], [15, 199], [15, 195], [15, 196], [15, 393], [15, 200]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-photonicat.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-photonicat.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clocks: [[15, 390], [15, 393], [15, 393], [15, 199], [15, 195], [15, 196], [15, 393], [15, 200]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-photonicat.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3568-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3568-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-photonicat.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-photonicat.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): interrupts: [[0, 32, 4], [0, 29, 4]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-photonicat.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-photonicat.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): Unevaluated properties are not allowed ('clock_in_out', 'rockchip,grf' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-photonicat.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-photonicat.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): clocks: [[15, 386], [15, 389], [15, 389], [15, 184], [15, 180], [15, 181], [15, 389], [15, 185]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-photonicat.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-photonicat.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): clocks: [[15, 386], [15, 389], [15, 389], [15, 184], [15, 180], [15, 181], [15, 389], [15, 185]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-photonicat.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3568-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3568-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-photonicat.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-photonicat.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): interrupts: [[0, 27, 4], [0, 24, 4]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm64/boot/dts/rockchip/rk3568-qnap-ts433.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-qnap-ts433.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clocks: [[15, 390], [15, 393], [15, 393], [15, 199], [15, 195], [15, 196], [15, 393], [15, 200]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-qnap-ts433.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-qnap-ts433.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clocks: [[15, 390], [15, 393], [15, 393], [15, 199], [15, 195], [15, 196], [15, 393], [15, 200]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-qnap-ts433.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3568-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3568-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-qnap-ts433.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-qnap-ts433.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): interrupts: [[0, 32, 4], [0, 29, 4]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-qnap-ts433.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-qnap-ts433.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): clocks: [[15, 386], [15, 389], [15, 389], [15, 184], [15, 180], [15, 181], [15, 389], [15, 185]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-qnap-ts433.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-qnap-ts433.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): clocks: [[15, 386], [15, 389], [15, 389], [15, 184], [15, 180], [15, 181], [15, 389], [15, 185]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-qnap-ts433.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3568-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3568-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-qnap-ts433.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-qnap-ts433.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): interrupts: [[0, 27, 4], [0, 24, 4]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-qnap-ts433.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-qnap-ts433.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): Unevaluated properties are not allowed ('clock_in_out', 'rockchip,grf' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm64/boot/dts/rockchip/rk3568-radxa-e25.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-radxa-e25.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clocks: [[15, 390], [15, 393], [15, 393], [15, 199], [15, 195], [15, 196], [15, 393], [15, 200]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-radxa-e25.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-radxa-e25.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clocks: [[15, 390], [15, 393], [15, 393], [15, 199], [15, 195], [15, 196], [15, 393], [15, 200]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-radxa-e25.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3568-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3568-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-radxa-e25.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-radxa-e25.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): interrupts: [[0, 32, 4], [0, 29, 4]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-radxa-e25.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-radxa-e25.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): clocks: [[15, 386], [15, 389], [15, 389], [15, 184], [15, 180], [15, 181], [15, 389], [15, 185]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-radxa-e25.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-radxa-e25.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): clocks: [[15, 386], [15, 389], [15, 389], [15, 184], [15, 180], [15, 181], [15, 389], [15, 185]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-radxa-e25.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3568-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3568-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-radxa-e25.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-radxa-e25.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): interrupts: [[0, 27, 4], [0, 24, 4]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm64/boot/dts/rockchip/rk3568-roc-pc.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-roc-pc.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clocks: [[14, 390], [14, 393], [14, 393], [14, 199], [14, 195], [14, 196], [14, 393], [14, 200]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-roc-pc.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-roc-pc.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clocks: [[14, 390], [14, 393], [14, 393], [14, 199], [14, 195], [14, 196], [14, 393], [14, 200]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-roc-pc.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3568-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3568-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-roc-pc.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-roc-pc.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): interrupts: [[0, 32, 4], [0, 29, 4]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-roc-pc.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-roc-pc.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): Unevaluated properties are not allowed ('clock_in_out', 'rockchip,grf', 'rx_delay', 'tx_delay' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-roc-pc.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-roc-pc.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): clocks: [[14, 386], [14, 389], [14, 389], [14, 184], [14, 180], [14, 181], [14, 389], [14, 185]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-roc-pc.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-roc-pc.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): clocks: [[14, 386], [14, 389], [14, 389], [14, 184], [14, 180], [14, 181], [14, 389], [14, 185]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-roc-pc.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3568-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3568-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-roc-pc.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-roc-pc.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): interrupts: [[0, 27, 4], [0, 24, 4]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-roc-pc.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-roc-pc.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): Unevaluated properties are not allowed ('clock_in_out', 'rockchip,grf', 'rx_delay', 'tx_delay' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm64/boot/dts/rockchip/rk3568-rock-3a.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-rock-3a.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clocks: [[15, 390], [15, 393], [15, 393], [15, 199], [15, 195], [15, 196], [15, 393], [15, 200]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-rock-3a.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-rock-3a.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clocks: [[15, 390], [15, 393], [15, 393], [15, 199], [15, 195], [15, 196], [15, 393], [15, 200]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-rock-3a.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3568-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3568-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-rock-3a.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-rock-3a.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): interrupts: [[0, 32, 4], [0, 29, 4]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-rock-3a.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-rock-3a.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): Unevaluated properties are not allowed ('clock_in_out', 'rockchip,grf' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-rock-3a.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-rock-3a.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): clocks: [[15, 386], [15, 389], [15, 389], [15, 184], [15, 180], [15, 181], [15, 389], [15, 185]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-rock-3a.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-rock-3a.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): clocks: [[15, 386], [15, 389], [15, 389], [15, 184], [15, 180], [15, 181], [15, 389], [15, 185]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-rock-3a.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3568-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3568-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-rock-3a.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-rock-3a.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): interrupts: [[0, 27, 4], [0, 24, 4]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm64/boot/dts/rockchip/rk3568-rock-3b.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-rock-3b.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clocks: [[15, 390], [15, 393], [15, 393], [15, 199], [15, 195], [15, 196], [15, 393], [15, 200]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-rock-3b.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-rock-3b.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clocks: [[15, 390], [15, 393], [15, 393], [15, 199], [15, 195], [15, 196], [15, 393], [15, 200]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-rock-3b.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3568-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3568-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-rock-3b.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-rock-3b.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): interrupts: [[0, 32, 4], [0, 29, 4]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-rock-3b.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-rock-3b.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): Unevaluated properties are not allowed ('clock_in_out', 'rockchip,grf' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-rock-3b.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-rock-3b.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): clocks: [[15, 386], [15, 389], [15, 389], [15, 184], [15, 180], [15, 181], [15, 389], [15, 185]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-rock-3b.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-rock-3b.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): clocks: [[15, 386], [15, 389], [15, 389], [15, 184], [15, 180], [15, 181], [15, 389], [15, 185]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-rock-3b.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3568-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3568-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-rock-3b.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-rock-3b.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): interrupts: [[0, 27, 4], [0, 24, 4]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-rock-3b.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-rock-3b.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): Unevaluated properties are not allowed ('clock_in_out', 'rockchip,grf' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm64/boot/dts/rockchip/rk3568-wolfvision-pf5.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-wolfvision-pf5.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clocks: [[15, 390], [15, 393], [15, 393], [15, 199], [15, 195], [15, 196], [15, 393], [15, 200]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-wolfvision-pf5.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-wolfvision-pf5.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clocks: [[15, 390], [15, 393], [15, 393], [15, 199], [15, 195], [15, 196], [15, 393], [15, 200]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-wolfvision-pf5.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3568-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3568-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-wolfvision-pf5.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-wolfvision-pf5.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): interrupts: [[0, 32, 4], [0, 29, 4]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-wolfvision-pf5.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-wolfvision-pf5.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): clocks: [[15, 386], [15, 389], [15, 389], [15, 184], [15, 180], [15, 181], [15, 389], [15, 185]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-wolfvision-pf5.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-wolfvision-pf5.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): clocks: [[15, 386], [15, 389], [15, 389], [15, 184], [15, 180], [15, 181], [15, 389], [15, 185]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-wolfvision-pf5.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3568-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3568-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-wolfvision-pf5.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-wolfvision-pf5.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): interrupts: [[0, 27, 4], [0, 24, 4]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm64/boot/dts/rockchip/rk3576-armsom-sige5.dtb: ethernet@2a220000 (rockchip,rk3576-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3576-armsom-sige5.dtb: ethernet@2a220000 (rockchip,rk3576-gmac): clocks: [[21, 36], [21, 46], [21, 288], [21, 286], [21, 293]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3576-armsom-sige5.dtb: ethernet@2a220000 (rockchip,rk3576-gmac): power-domains: False schema does not allow [[32, 6]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3576-armsom-sige5.dtb: ethernet@2a220000 (rockchip,rk3576-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3576-armsom-sige5.dtb: ethernet@2a220000 (rockchip,rk3576-gmac): clocks: [[21, 36], [21, 46], [21, 288], [21, 286], [21, 293]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3576-armsom-sige5.dtb: ethernet@2a220000 (rockchip,rk3576-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3576-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3576-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3576-armsom-sige5.dtb: ethernet@2a220000 (rockchip,rk3576-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3576-armsom-sige5.dtb: ethernet@2a220000 (rockchip,rk3576-gmac): interrupts: [[0, 293, 4], [0, 298, 4]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3576-armsom-sige5.dtb: ethernet@2a220000 (rockchip,rk3576-gmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3576-armsom-sige5.dtb: ethernet@2a220000 (rockchip,rk3576-gmac): Unevaluated properties are not allowed ('clock_in_out', 'rockchip,grf', 'rockchip,php-grf' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3576-armsom-sige5.dtb: ethernet@2a230000 (rockchip,rk3576-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3576-armsom-sige5.dtb: ethernet@2a230000 (rockchip,rk3576-gmac): clocks: [[21, 37], [21, 47], [21, 289], [21, 287], [21, 292]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3576-armsom-sige5.dtb: ethernet@2a230000 (rockchip,rk3576-gmac): power-domains: False schema does not allow [[32, 6]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3576-armsom-sige5.dtb: ethernet@2a230000 (rockchip,rk3576-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3576-armsom-sige5.dtb: ethernet@2a230000 (rockchip,rk3576-gmac): clocks: [[21, 37], [21, 47], [21, 289], [21, 287], [21, 292]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3576-armsom-sige5.dtb: ethernet@2a230000 (rockchip,rk3576-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3576-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3576-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3576-armsom-sige5.dtb: ethernet@2a230000 (rockchip,rk3576-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3576-armsom-sige5.dtb: ethernet@2a230000 (rockchip,rk3576-gmac): interrupts: [[0, 301, 4], [0, 306, 4]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3576-armsom-sige5.dtb: ethernet@2a230000 (rockchip,rk3576-gmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3576-armsom-sige5.dtb: ethernet@2a230000 (rockchip,rk3576-gmac): Unevaluated properties are not allowed ('clock_in_out', 'rockchip,grf', 'rockchip,php-grf' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm64/boot/dts/rockchip/rk3576-evb1-v10.dtb: ethernet@2a220000 (rockchip,rk3576-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3576-evb1-v10.dtb: ethernet@2a220000 (rockchip,rk3576-gmac): clocks: [[21, 36], [21, 46], [21, 288], [21, 286], [21, 293]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3576-evb1-v10.dtb: ethernet@2a220000 (rockchip,rk3576-gmac): power-domains: False schema does not allow [[31, 6]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3576-evb1-v10.dtb: ethernet@2a220000 (rockchip,rk3576-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3576-evb1-v10.dtb: ethernet@2a220000 (rockchip,rk3576-gmac): clocks: [[21, 36], [21, 46], [21, 288], [21, 286], [21, 293]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3576-evb1-v10.dtb: ethernet@2a220000 (rockchip,rk3576-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3576-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3576-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3576-evb1-v10.dtb: ethernet@2a220000 (rockchip,rk3576-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3576-evb1-v10.dtb: ethernet@2a220000 (rockchip,rk3576-gmac): interrupts: [[0, 293, 4], [0, 298, 4]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3576-evb1-v10.dtb: ethernet@2a220000 (rockchip,rk3576-gmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3576-evb1-v10.dtb: ethernet@2a220000 (rockchip,rk3576-gmac): Unevaluated properties are not allowed ('clock_in_out', 'rockchip,grf', 'rockchip,php-grf', 'tx_delay' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3576-evb1-v10.dtb: ethernet@2a230000 (rockchip,rk3576-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3576-evb1-v10.dtb: ethernet@2a230000 (rockchip,rk3576-gmac): clocks: [[21, 37], [21, 47], [21, 289], [21, 287], [21, 292]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3576-evb1-v10.dtb: ethernet@2a230000 (rockchip,rk3576-gmac): power-domains: False schema does not allow [[31, 6]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3576-evb1-v10.dtb: ethernet@2a230000 (rockchip,rk3576-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3576-evb1-v10.dtb: ethernet@2a230000 (rockchip,rk3576-gmac): clocks: [[21, 37], [21, 47], [21, 289], [21, 287], [21, 292]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3576-evb1-v10.dtb: ethernet@2a230000 (rockchip,rk3576-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3576-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3576-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3576-evb1-v10.dtb: ethernet@2a230000 (rockchip,rk3576-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3576-evb1-v10.dtb: ethernet@2a230000 (rockchip,rk3576-gmac): interrupts: [[0, 301, 4], [0, 306, 4]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3576-evb1-v10.dtb: ethernet@2a230000 (rockchip,rk3576-gmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3576-evb1-v10.dtb: ethernet@2a230000 (rockchip,rk3576-gmac): Unevaluated properties are not allowed ('clock_in_out', 'rockchip,grf', 'rockchip,php-grf', 'tx_delay' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm64/boot/dts/rockchip/rk3576-luckfox-omni3576.dtb: ethernet@2a220000 (rockchip,rk3576-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3576-luckfox-omni3576.dtb: ethernet@2a220000 (rockchip,rk3576-gmac): clocks: [[21, 36], [21, 46], [21, 288], [21, 286], [21, 293]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3576-luckfox-omni3576.dtb: ethernet@2a220000 (rockchip,rk3576-gmac): power-domains: False schema does not allow [[31, 6]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3576-luckfox-omni3576.dtb: ethernet@2a220000 (rockchip,rk3576-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3576-luckfox-omni3576.dtb: ethernet@2a220000 (rockchip,rk3576-gmac): clocks: [[21, 36], [21, 46], [21, 288], [21, 286], [21, 293]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3576-luckfox-omni3576.dtb: ethernet@2a220000 (rockchip,rk3576-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3576-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3576-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3576-luckfox-omni3576.dtb: ethernet@2a220000 (rockchip,rk3576-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3576-luckfox-omni3576.dtb: ethernet@2a220000 (rockchip,rk3576-gmac): interrupts: [[0, 293, 4], [0, 298, 4]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3576-luckfox-omni3576.dtb: ethernet@2a230000 (rockchip,rk3576-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3576-luckfox-omni3576.dtb: ethernet@2a230000 (rockchip,rk3576-gmac): clocks: [[21, 37], [21, 47], [21, 289], [21, 287], [21, 292]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3576-luckfox-omni3576.dtb: ethernet@2a230000 (rockchip,rk3576-gmac): power-domains: False schema does not allow [[31, 6]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3576-luckfox-omni3576.dtb: ethernet@2a230000 (rockchip,rk3576-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3576-luckfox-omni3576.dtb: ethernet@2a230000 (rockchip,rk3576-gmac): clocks: [[21, 37], [21, 47], [21, 289], [21, 287], [21, 292]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3576-luckfox-omni3576.dtb: ethernet@2a230000 (rockchip,rk3576-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3576-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3576-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3576-luckfox-omni3576.dtb: ethernet@2a230000 (rockchip,rk3576-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3576-luckfox-omni3576.dtb: ethernet@2a230000 (rockchip,rk3576-gmac): interrupts: [[0, 301, 4], [0, 306, 4]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm64/boot/dts/rockchip/rk3576-nanopi-m5.dtb: ethernet@2a220000 (rockchip,rk3576-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3576-nanopi-m5.dtb: ethernet@2a220000 (rockchip,rk3576-gmac): clocks: [[21, 36], [21, 46], [21, 288], [21, 286], [21, 293]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3576-nanopi-m5.dtb: ethernet@2a220000 (rockchip,rk3576-gmac): power-domains: False schema does not allow [[31, 6]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3576-nanopi-m5.dtb: ethernet@2a220000 (rockchip,rk3576-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3576-nanopi-m5.dtb: ethernet@2a220000 (rockchip,rk3576-gmac): clocks: [[21, 36], [21, 46], [21, 288], [21, 286], [21, 293]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3576-nanopi-m5.dtb: ethernet@2a220000 (rockchip,rk3576-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3576-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3576-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3576-nanopi-m5.dtb: ethernet@2a220000 (rockchip,rk3576-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3576-nanopi-m5.dtb: ethernet@2a220000 (rockchip,rk3576-gmac): interrupts: [[0, 293, 4], [0, 298, 4]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3576-nanopi-m5.dtb: ethernet@2a220000 (rockchip,rk3576-gmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3576-nanopi-m5.dtb: ethernet@2a220000 (rockchip,rk3576-gmac): Unevaluated properties are not allowed ('clock_in_out', 'rockchip,grf', 'rockchip,php-grf' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3576-nanopi-m5.dtb: ethernet@2a230000 (rockchip,rk3576-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3576-nanopi-m5.dtb: ethernet@2a230000 (rockchip,rk3576-gmac): clocks: [[21, 37], [21, 47], [21, 289], [21, 287], [21, 292]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3576-nanopi-m5.dtb: ethernet@2a230000 (rockchip,rk3576-gmac): power-domains: False schema does not allow [[31, 6]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3576-nanopi-m5.dtb: ethernet@2a230000 (rockchip,rk3576-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3576-nanopi-m5.dtb: ethernet@2a230000 (rockchip,rk3576-gmac): clocks: [[21, 37], [21, 47], [21, 289], [21, 287], [21, 292]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3576-nanopi-m5.dtb: ethernet@2a230000 (rockchip,rk3576-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3576-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3576-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3576-nanopi-m5.dtb: ethernet@2a230000 (rockchip,rk3576-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3576-nanopi-m5.dtb: ethernet@2a230000 (rockchip,rk3576-gmac): interrupts: [[0, 301, 4], [0, 306, 4]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3576-nanopi-m5.dtb: ethernet@2a230000 (rockchip,rk3576-gmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3576-nanopi-m5.dtb: ethernet@2a230000 (rockchip,rk3576-gmac): Unevaluated properties are not allowed ('clock_in_out', 'rockchip,grf', 'rockchip,php-grf' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm64/boot/dts/rockchip/rk3576-roc-pc.dtb: ethernet@2a220000 (rockchip,rk3576-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3576-roc-pc.dtb: ethernet@2a220000 (rockchip,rk3576-gmac): clocks: [[21, 36], [21, 46], [21, 288], [21, 286], [21, 293]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3576-roc-pc.dtb: ethernet@2a220000 (rockchip,rk3576-gmac): power-domains: False schema does not allow [[31, 6]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3576-roc-pc.dtb: ethernet@2a220000 (rockchip,rk3576-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3576-roc-pc.dtb: ethernet@2a220000 (rockchip,rk3576-gmac): clocks: [[21, 36], [21, 46], [21, 288], [21, 286], [21, 293]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3576-roc-pc.dtb: ethernet@2a220000 (rockchip,rk3576-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3576-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3576-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3576-roc-pc.dtb: ethernet@2a220000 (rockchip,rk3576-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3576-roc-pc.dtb: ethernet@2a220000 (rockchip,rk3576-gmac): interrupts: [[0, 293, 4], [0, 298, 4]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3576-roc-pc.dtb: ethernet@2a220000 (rockchip,rk3576-gmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3576-roc-pc.dtb: ethernet@2a220000 (rockchip,rk3576-gmac): Unevaluated properties are not allowed ('clock_in_out', 'rockchip,grf', 'rockchip,php-grf', 'tx_delay' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3576-roc-pc.dtb: ethernet@2a230000 (rockchip,rk3576-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3576-roc-pc.dtb: ethernet@2a230000 (rockchip,rk3576-gmac): clocks: [[21, 37], [21, 47], [21, 289], [21, 287], [21, 292]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3576-roc-pc.dtb: ethernet@2a230000 (rockchip,rk3576-gmac): power-domains: False schema does not allow [[31, 6]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3576-roc-pc.dtb: ethernet@2a230000 (rockchip,rk3576-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3576-roc-pc.dtb: ethernet@2a230000 (rockchip,rk3576-gmac): clocks: [[21, 37], [21, 47], [21, 289], [21, 287], [21, 292]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3576-roc-pc.dtb: ethernet@2a230000 (rockchip,rk3576-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3576-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3576-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3576-roc-pc.dtb: ethernet@2a230000 (rockchip,rk3576-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3576-roc-pc.dtb: ethernet@2a230000 (rockchip,rk3576-gmac): interrupts: [[0, 301, 4], [0, 306, 4]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm64/boot/dts/rockchip/rk3576-rock-4d.dtb: ethernet@2a220000 (rockchip,rk3576-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3576-rock-4d.dtb: ethernet@2a220000 (rockchip,rk3576-gmac): clocks: [[21, 36], [21, 46], [21, 288], [21, 286], [21, 293]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3576-rock-4d.dtb: ethernet@2a220000 (rockchip,rk3576-gmac): power-domains: False schema does not allow [[32, 6]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3576-rock-4d.dtb: ethernet@2a220000 (rockchip,rk3576-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3576-rock-4d.dtb: ethernet@2a220000 (rockchip,rk3576-gmac): clocks: [[21, 36], [21, 46], [21, 288], [21, 286], [21, 293]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3576-rock-4d.dtb: ethernet@2a220000 (rockchip,rk3576-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3576-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3576-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3576-rock-4d.dtb: ethernet@2a220000 (rockchip,rk3576-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3576-rock-4d.dtb: ethernet@2a220000 (rockchip,rk3576-gmac): interrupts: [[0, 293, 4], [0, 298, 4]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3576-rock-4d.dtb: ethernet@2a220000 (rockchip,rk3576-gmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3576-rock-4d.dtb: ethernet@2a220000 (rockchip,rk3576-gmac): Unevaluated properties are not allowed ('clock_in_out', 'rockchip,grf', 'rockchip,php-grf' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3576-rock-4d.dtb: ethernet@2a230000 (rockchip,rk3576-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3576-rock-4d.dtb: ethernet@2a230000 (rockchip,rk3576-gmac): clocks: [[21, 37], [21, 47], [21, 289], [21, 287], [21, 292]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3576-rock-4d.dtb: ethernet@2a230000 (rockchip,rk3576-gmac): power-domains: False schema does not allow [[32, 6]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3576-rock-4d.dtb: ethernet@2a230000 (rockchip,rk3576-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3576-rock-4d.dtb: ethernet@2a230000 (rockchip,rk3576-gmac): clocks: [[21, 37], [21, 47], [21, 289], [21, 287], [21, 292]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3576-rock-4d.dtb: ethernet@2a230000 (rockchip,rk3576-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3576-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3576-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3576-rock-4d.dtb: ethernet@2a230000 (rockchip,rk3576-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3576-rock-4d.dtb: ethernet@2a230000 (rockchip,rk3576-gmac): interrupts: [[0, 301, 4], [0, 306, 4]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm64/boot/dts/rockchip/rk3582-radxa-e52c.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3582-radxa-e52c.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3582-radxa-e52c.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3582-radxa-e52c.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3582-radxa-e52c.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3582-radxa-e52c.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3582-radxa-e52c.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3582-radxa-e52c.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupts: [[0, 234, 4, 0], [0, 233, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm64/boot/dts/rockchip/rk3588-armsom-sige7.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-armsom-sige7.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-armsom-sige7.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-armsom-sige7.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-armsom-sige7.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-armsom-sige7.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-armsom-sige7.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-armsom-sige7.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupts: [[0, 234, 4, 0], [0, 233, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-armsom-sige7.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-armsom-sige7.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-armsom-sige7.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-armsom-sige7.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-armsom-sige7.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-armsom-sige7.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-armsom-sige7.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-armsom-sige7.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupts: [[0, 227, 4, 0], [0, 226, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
arch/arm64/boot/dts/rockchip/rk3588-armsom-w3.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-armsom-w3.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-armsom-w3.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-armsom-w3.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-armsom-w3.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-armsom-w3.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-armsom-w3.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-armsom-w3.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupts: [[0, 234, 4, 0], [0, 233, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-armsom-w3.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-armsom-w3.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-armsom-w3.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-armsom-w3.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-armsom-w3.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-armsom-w3.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-armsom-w3.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-armsom-w3.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupts: [[0, 227, 4, 0], [0, 226, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
arch/arm64/boot/dts/rockchip/rk3588-coolpi-cm5-evb.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-coolpi-cm5-evb.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-coolpi-cm5-evb.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-coolpi-cm5-evb.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-coolpi-cm5-evb.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-coolpi-cm5-evb.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-coolpi-cm5-evb.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-coolpi-cm5-evb.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupts: [[0, 234, 4, 0], [0, 233, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-coolpi-cm5-evb.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-coolpi-cm5-evb.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-coolpi-cm5-evb.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-coolpi-cm5-evb.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-coolpi-cm5-evb.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-coolpi-cm5-evb.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-coolpi-cm5-evb.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-coolpi-cm5-evb.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupts: [[0, 227, 4, 0], [0, 226, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-coolpi-cm5-evb.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-coolpi-cm5-evb.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): Unevaluated properties are not allowed ('clock_in_out', 'rockchip,grf', 'rockchip,php-grf', 'rx_delay', 'tx_delay' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm64/boot/dts/rockchip/rk3588-coolpi-cm5-genbook.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-coolpi-cm5-genbook.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-coolpi-cm5-genbook.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-coolpi-cm5-genbook.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-coolpi-cm5-genbook.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-coolpi-cm5-genbook.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-coolpi-cm5-genbook.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-coolpi-cm5-genbook.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupts: [[0, 234, 4, 0], [0, 233, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-coolpi-cm5-genbook.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-coolpi-cm5-genbook.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-coolpi-cm5-genbook.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-coolpi-cm5-genbook.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-coolpi-cm5-genbook.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-coolpi-cm5-genbook.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-coolpi-cm5-genbook.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-coolpi-cm5-genbook.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupts: [[0, 227, 4, 0], [0, 226, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6a-io.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6a-io.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6a-io.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6a-io.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6a-io.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6a-io.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6a-io.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6a-io.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupts: [[0, 234, 4, 0], [0, 233, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6a-io.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6a-io.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6a-io.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6a-io.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6a-io.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6a-io.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6a-io.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6a-io.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupts: [[0, 227, 4, 0], [0, 226, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6b-io.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6b-io.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6b-io.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6b-io.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6b-io.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6b-io.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6b-io.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6b-io.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupts: [[0, 234, 4, 0], [0, 233, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6b-io.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6b-io.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6b-io.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6b-io.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6b-io.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6b-io.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6b-io.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6b-io.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupts: [[0, 227, 4, 0], [0, 226, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
arch/arm64/boot/dts/rockchip/rk3588-evb1-v10.dts:1410.7-1418.4: Warning (graph_child_address): /usb@fc000000/port: graph node has single child node 'endpoint@0', #address-cells/#size-cells are not necessary
>> arch/arm64/boot/dts/rockchip/rk3588-evb1-v10.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-evb1-v10.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-evb1-v10.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-evb1-v10.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-evb1-v10.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-evb1-v10.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-evb1-v10.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-evb1-v10.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupts: [[0, 234, 4, 0], [0, 233, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-evb1-v10.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-evb1-v10.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-evb1-v10.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-evb1-v10.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-evb1-v10.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-evb1-v10.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-evb1-v10.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-evb1-v10.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupts: [[0, 227, 4, 0], [0, 226, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-evb1-v10.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-evb1-v10.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): Unevaluated properties are not allowed ('clock_in_out', 'rockchip,grf', 'rockchip,php-grf', 'rx_delay', 'tx_delay' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm64/boot/dts/rockchip/rk3588-evb2-v10.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-evb2-v10.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[30, 310], [30, 311], [30, 345], [30, 350], [30, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-evb2-v10.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[31, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-evb2-v10.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-evb2-v10.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[30, 310], [30, 311], [30, 345], [30, 350], [30, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-evb2-v10.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-evb2-v10.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-evb2-v10.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupts: [[0, 234, 4, 0], [0, 233, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-evb2-v10.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-evb2-v10.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[30, 310], [30, 311], [30, 344], [30, 349], [30, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-evb2-v10.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[31, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-evb2-v10.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-evb2-v10.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[30, 310], [30, 311], [30, 344], [30, 349], [30, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-evb2-v10.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-evb2-v10.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-evb2-v10.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupts: [[0, 227, 4, 0], [0, 226, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
arch/arm64/boot/dts/rockchip/rk3588-firefly-itx-3588j.dts:626.7-634.4: Warning (graph_child_address): /usb@fc000000/port: graph node has single child node 'endpoint@0', #address-cells/#size-cells are not necessary
>> arch/arm64/boot/dts/rockchip/rk3588-firefly-itx-3588j.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-firefly-itx-3588j.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-firefly-itx-3588j.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-firefly-itx-3588j.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-firefly-itx-3588j.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-firefly-itx-3588j.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-firefly-itx-3588j.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-firefly-itx-3588j.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupts: [[0, 234, 4, 0], [0, 233, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-firefly-itx-3588j.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-firefly-itx-3588j.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): Unevaluated properties are not allowed ('clock_in_out', 'rockchip,grf', 'rockchip,php-grf', 'rx_delay', 'tx_delay' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-firefly-itx-3588j.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-firefly-itx-3588j.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-firefly-itx-3588j.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-firefly-itx-3588j.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-firefly-itx-3588j.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-firefly-itx-3588j.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-firefly-itx-3588j.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-firefly-itx-3588j.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupts: [[0, 227, 4, 0], [0, 226, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-firefly-itx-3588j.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-firefly-itx-3588j.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): Unevaluated properties are not allowed ('clock_in_out', 'rockchip,grf', 'rockchip,php-grf', 'rx_delay', 'tx_delay' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
arch/arm64/boot/dts/rockchip/rk3588-friendlyelec-cm3588-nas.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-friendlyelec-cm3588-nas.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-friendlyelec-cm3588-nas.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-friendlyelec-cm3588-nas.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-friendlyelec-cm3588-nas.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-friendlyelec-cm3588-nas.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-friendlyelec-cm3588-nas.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-friendlyelec-cm3588-nas.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupts: [[0, 234, 4, 0], [0, 233, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-friendlyelec-cm3588-nas.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-friendlyelec-cm3588-nas.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-friendlyelec-cm3588-nas.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-friendlyelec-cm3588-nas.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-friendlyelec-cm3588-nas.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-friendlyelec-cm3588-nas.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-friendlyelec-cm3588-nas.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-friendlyelec-cm3588-nas.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupts: [[0, 227, 4, 0], [0, 226, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm64/boot/dts/rockchip/rk3588-h96-max-v58.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-h96-max-v58.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-h96-max-v58.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-h96-max-v58.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-h96-max-v58.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-h96-max-v58.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-h96-max-v58.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-h96-max-v58.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupts: [[0, 234, 4, 0], [0, 233, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-h96-max-v58.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-h96-max-v58.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): Unevaluated properties are not allowed ('clock_in_out', 'rockchip,grf', 'rockchip,php-grf' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-h96-max-v58.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-h96-max-v58.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-h96-max-v58.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-h96-max-v58.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-h96-max-v58.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-h96-max-v58.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-h96-max-v58.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-h96-max-v58.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupts: [[0, 227, 4, 0], [0, 226, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
arch/arm64/boot/dts/rockchip/rk3588-jaguar.dts:1112.7-1119.4: Warning (avoid_unnecessary_addr_size): /usb@fc000000/port: unnecessary #address-cells/#size-cells without "ranges", "dma-ranges" or child "reg" property
arch/arm64/boot/dts/rockchip/rk3588-jaguar.dts:1127.7-1134.4: Warning (avoid_unnecessary_addr_size): /usb@fc400000/port: unnecessary #address-cells/#size-cells without "ranges", "dma-ranges" or child "reg" property
arch/arm64/boot/dts/rockchip/rk3588-jaguar.dts:1112.7-1119.4: Warning (graph_child_address): /usb@fc000000/port: graph node has single child node 'endpoint', #address-cells/#size-cells are not necessary
arch/arm64/boot/dts/rockchip/rk3588-jaguar.dts:1127.7-1134.4: Warning (graph_child_address): /usb@fc400000/port: graph node has single child node 'endpoint', #address-cells/#size-cells are not necessary
arch/arm64/boot/dts/rockchip/rk3588-jaguar.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-jaguar.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-jaguar.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-jaguar.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-jaguar.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-jaguar.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-jaguar.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-jaguar.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupts: [[0, 234, 4, 0], [0, 233, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-jaguar.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-jaguar.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-jaguar.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-jaguar.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-jaguar.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-jaguar.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-jaguar.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-jaguar.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupts: [[0, 227, 4, 0], [0, 226, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-jaguar.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-jaguar.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): Unevaluated properties are not allowed ('clock_in_out', 'rockchip,grf', 'rockchip,php-grf', 'rx_delay', 'tx_delay' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm64/boot/dts/rockchip/rk3588-mnt-reform2.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-mnt-reform2.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-mnt-reform2.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-mnt-reform2.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-mnt-reform2.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-mnt-reform2.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-mnt-reform2.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-mnt-reform2.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupts: [[0, 234, 4, 0], [0, 233, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-mnt-reform2.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-mnt-reform2.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-mnt-reform2.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-mnt-reform2.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-mnt-reform2.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-mnt-reform2.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-mnt-reform2.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-mnt-reform2.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupts: [[0, 227, 4, 0], [0, 226, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-mnt-reform2.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-mnt-reform2.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): Unevaluated properties are not allowed ('clock_in_out', 'rockchip,grf', 'rockchip,php-grf' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm64/boot/dts/rockchip/rk3588-nanopc-t6.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-nanopc-t6.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-nanopc-t6.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-nanopc-t6.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-nanopc-t6.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-nanopc-t6.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-nanopc-t6.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-nanopc-t6.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupts: [[0, 234, 4, 0], [0, 233, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-nanopc-t6.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-nanopc-t6.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-nanopc-t6.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-nanopc-t6.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-nanopc-t6.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-nanopc-t6.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-nanopc-t6.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-nanopc-t6.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupts: [[0, 227, 4, 0], [0, 226, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
arch/arm64/boot/dts/rockchip/rk3588-nanopc-t6-lts.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-nanopc-t6-lts.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-nanopc-t6-lts.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-nanopc-t6-lts.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-nanopc-t6-lts.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-nanopc-t6-lts.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-nanopc-t6-lts.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-nanopc-t6-lts.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupts: [[0, 234, 4, 0], [0, 233, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-nanopc-t6-lts.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-nanopc-t6-lts.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-nanopc-t6-lts.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-nanopc-t6-lts.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-nanopc-t6-lts.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-nanopc-t6-lts.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-nanopc-t6-lts.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-nanopc-t6-lts.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupts: [[0, 227, 4, 0], [0, 226, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
arch/arm64/boot/dts/rockchip/rk3588-ok3588-c.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-ok3588-c.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-ok3588-c.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-ok3588-c.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-ok3588-c.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-ok3588-c.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-ok3588-c.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-ok3588-c.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupts: [[0, 234, 4, 0], [0, 233, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-ok3588-c.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-ok3588-c.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): Unevaluated properties are not allowed ('clock_in_out', 'rockchip,grf', 'rockchip,php-grf', 'rx_delay', 'tx_delay' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-ok3588-c.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-ok3588-c.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-ok3588-c.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-ok3588-c.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-ok3588-c.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-ok3588-c.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-ok3588-c.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-ok3588-c.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupts: [[0, 227, 4, 0], [0, 226, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-ok3588-c.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-ok3588-c.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): Unevaluated properties are not allowed ('clock_in_out', 'rockchip,grf', 'rockchip,php-grf', 'rx_delay', 'tx_delay' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-max.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-max.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-max.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-max.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-max.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-max.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-max.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-max.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupts: [[0, 234, 4, 0], [0, 233, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-max.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-max.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-max.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-max.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-max.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-max.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-max.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-max.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupts: [[0, 227, 4, 0], [0, 226, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-plus.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-plus.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-plus.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-plus.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-plus.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-plus.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-plus.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-plus.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupts: [[0, 234, 4, 0], [0, 233, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-plus.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-plus.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-plus.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-plus.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-plus.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-plus.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-plus.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-plus.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupts: [[0, 227, 4, 0], [0, 226, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-ultra.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-ultra.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-ultra.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-ultra.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-ultra.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-ultra.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-ultra.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-ultra.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupts: [[0, 234, 4, 0], [0, 233, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-ultra.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-ultra.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-ultra.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-ultra.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-ultra.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-ultra.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-ultra.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-ultra.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupts: [[0, 227, 4, 0], [0, 226, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
arch/arm64/boot/dts/rockchip/rk3588-quartzpro64.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-quartzpro64.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-quartzpro64.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-quartzpro64.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-quartzpro64.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-quartzpro64.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-quartzpro64.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-quartzpro64.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupts: [[0, 234, 4, 0], [0, 233, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-quartzpro64.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-quartzpro64.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-quartzpro64.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-quartzpro64.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-quartzpro64.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-quartzpro64.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-quartzpro64.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-quartzpro64.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupts: [[0, 227, 4, 0], [0, 226, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-quartzpro64.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-quartzpro64.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): Unevaluated properties are not allowed ('clock_in_out', 'rockchip,grf', 'rockchip,php-grf', 'rx_delay', 'tx_delay' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
arch/arm64/boot/dts/rockchip/rk3588-rock-5-itx.dts:1186.7-1194.4: Warning (graph_child_address): /usb@fc000000/port: graph node has single child node 'endpoint@0', #address-cells/#size-cells are not necessary
>> arch/arm64/boot/dts/rockchip/rk3588-rock-5-itx.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-rock-5-itx.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-rock-5-itx.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-rock-5-itx.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-rock-5-itx.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-rock-5-itx.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-rock-5-itx.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-rock-5-itx.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupts: [[0, 234, 4, 0], [0, 233, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-rock-5-itx.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-rock-5-itx.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-rock-5-itx.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-rock-5-itx.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-rock-5-itx.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-rock-5-itx.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-rock-5-itx.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-rock-5-itx.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupts: [[0, 227, 4, 0], [0, 226, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
arch/arm64/boot/dts/rockchip/rk3588-rock-5b.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-rock-5b.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-rock-5b.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-rock-5b.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-rock-5b.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-rock-5b.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-rock-5b.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-rock-5b.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupts: [[0, 234, 4, 0], [0, 233, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-rock-5b.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-rock-5b.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-rock-5b.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-rock-5b.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-rock-5b.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-rock-5b.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-rock-5b.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-rock-5b.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupts: [[0, 227, 4, 0], [0, 226, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
arch/arm64/boot/dts/rockchip/rk3588-rock-5b-plus.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-rock-5b-plus.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-rock-5b-plus.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-rock-5b-plus.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-rock-5b-plus.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-rock-5b-plus.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-rock-5b-plus.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-rock-5b-plus.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupts: [[0, 234, 4, 0], [0, 233, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-rock-5b-plus.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-rock-5b-plus.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-rock-5b-plus.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-rock-5b-plus.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-rock-5b-plus.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-rock-5b-plus.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-rock-5b-plus.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-rock-5b-plus.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupts: [[0, 227, 4, 0], [0, 226, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
arch/arm64/boot/dts/rockchip/rk3588-rock-5t.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-rock-5t.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-rock-5t.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-rock-5t.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-rock-5t.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-rock-5t.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-rock-5t.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-rock-5t.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupts: [[0, 234, 4, 0], [0, 233, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-rock-5t.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-rock-5t.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-rock-5t.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-rock-5t.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-rock-5t.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-rock-5t.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-rock-5t.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-rock-5t.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupts: [[0, 227, 4, 0], [0, 226, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm64/boot/dts/rockchip/rk3588-tiger-haikou.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-tiger-haikou.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-tiger-haikou.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-tiger-haikou.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-tiger-haikou.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-tiger-haikou.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-tiger-haikou.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-tiger-haikou.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupts: [[0, 234, 4, 0], [0, 233, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-tiger-haikou.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-tiger-haikou.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-tiger-haikou.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-tiger-haikou.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-tiger-haikou.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-tiger-haikou.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-tiger-haikou.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-tiger-haikou.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupts: [[0, 227, 4, 0], [0, 226, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-tiger-haikou.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-tiger-haikou.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): Unevaluated properties are not allowed ('clock_in_out', 'rockchip,grf', 'rockchip,php-grf', 'rx_delay', 'tx_delay' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm64/boot/dts/rockchip/rk3588-toybrick-x0.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-toybrick-x0.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-toybrick-x0.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-toybrick-x0.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-toybrick-x0.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-toybrick-x0.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-toybrick-x0.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-toybrick-x0.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupts: [[0, 234, 4, 0], [0, 233, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-toybrick-x0.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-toybrick-x0.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-toybrick-x0.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-toybrick-x0.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-toybrick-x0.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-toybrick-x0.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-toybrick-x0.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-toybrick-x0.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupts: [[0, 227, 4, 0], [0, 226, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-toybrick-x0.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-toybrick-x0.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): Unevaluated properties are not allowed ('clock_in_out', 'rockchip,grf', 'rockchip,php-grf', 'rx_delay', 'tx_delay' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm64/boot/dts/rockchip/rk3588-turing-rk1.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-turing-rk1.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-turing-rk1.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-turing-rk1.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-turing-rk1.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-turing-rk1.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-turing-rk1.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-turing-rk1.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupts: [[0, 234, 4, 0], [0, 233, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-turing-rk1.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-turing-rk1.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): Unevaluated properties are not allowed ('clock_in_out', 'rockchip,grf', 'rockchip,php-grf', 'rx_delay', 'tx_delay' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-turing-rk1.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-turing-rk1.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-turing-rk1.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-turing-rk1.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-turing-rk1.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-turing-rk1.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-turing-rk1.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-turing-rk1.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupts: [[0, 227, 4, 0], [0, 226, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
arch/arm64/boot/dts/rockchip/rk3588s-coolpi-4b.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588s-coolpi-4b.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588s-coolpi-4b.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588s-coolpi-4b.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588s-coolpi-4b.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588s-coolpi-4b.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588s-coolpi-4b.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588s-coolpi-4b.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupts: [[0, 234, 4, 0], [0, 233, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
arch/arm64/boot/dts/rockchip/rk3588s-evb1-v10.dts:1172.7-1180.4: Warning (graph_child_address): /usb@fc000000/port: graph node has single child node 'endpoint@0', #address-cells/#size-cells are not necessary
>> arch/arm64/boot/dts/rockchip/rk3588s-evb1-v10.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588s-evb1-v10.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[30, 310], [30, 311], [30, 345], [30, 350], [30, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588s-evb1-v10.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[31, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588s-evb1-v10.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588s-evb1-v10.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[30, 310], [30, 311], [30, 345], [30, 350], [30, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588s-evb1-v10.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588s-evb1-v10.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588s-evb1-v10.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupts: [[0, 234, 4, 0], [0, 233, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm64/boot/dts/rockchip/rk3588s-gameforce-ace.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588s-gameforce-ace.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588s-gameforce-ace.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588s-gameforce-ace.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588s-gameforce-ace.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588s-gameforce-ace.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588s-gameforce-ace.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588s-gameforce-ace.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupts: [[0, 234, 4, 0], [0, 233, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm64/boot/dts/rockchip/rk3588s-indiedroid-nova.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588s-indiedroid-nova.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588s-indiedroid-nova.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588s-indiedroid-nova.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588s-indiedroid-nova.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588s-indiedroid-nova.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588s-indiedroid-nova.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588s-indiedroid-nova.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupts: [[0, 234, 4, 0], [0, 233, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
arch/arm64/boot/dts/rockchip/rk3588s-khadas-edge2.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588s-khadas-edge2.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588s-khadas-edge2.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588s-khadas-edge2.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588s-khadas-edge2.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588s-khadas-edge2.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588s-khadas-edge2.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588s-khadas-edge2.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupts: [[0, 234, 4, 0], [0, 233, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
arch/arm64/boot/dts/rockchip/rk3588s-nanopi-r6s.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588s-nanopi-r6s.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588s-nanopi-r6s.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588s-nanopi-r6s.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588s-nanopi-r6s.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588s-nanopi-r6s.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588s-nanopi-r6s.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588s-nanopi-r6s.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupts: [[0, 234, 4, 0], [0, 233, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588s-nanopi-r6s.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588s-nanopi-r6s.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): Unevaluated properties are not allowed ('clock_in_out', 'rockchip,grf', 'rockchip,php-grf', 'tx_delay' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
arch/arm64/boot/dts/rockchip/rk3588s-nanopi-r6c.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588s-nanopi-r6c.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588s-nanopi-r6c.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588s-nanopi-r6c.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588s-nanopi-r6c.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588s-nanopi-r6c.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588s-nanopi-r6c.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588s-nanopi-r6c.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupts: [[0, 234, 4, 0], [0, 233, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588s-nanopi-r6c.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588s-nanopi-r6c.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): Unevaluated properties are not allowed ('clock_in_out', 'rockchip,grf', 'rockchip,php-grf', 'tx_delay' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm64/boot/dts/rockchip/rk3588s-odroid-m2.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588s-odroid-m2.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588s-odroid-m2.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588s-odroid-m2.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588s-odroid-m2.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588s-odroid-m2.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588s-odroid-m2.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588s-odroid-m2.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupts: [[0, 234, 4, 0], [0, 233, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588s-odroid-m2.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588s-odroid-m2.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): Unevaluated properties are not allowed ('clock_in_out', 'rockchip,grf', 'rockchip,php-grf' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
arch/arm64/boot/dts/rockchip/rk3588s-orangepi-5.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588s-orangepi-5.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588s-orangepi-5.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588s-orangepi-5.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588s-orangepi-5.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588s-orangepi-5.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588s-orangepi-5.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588s-orangepi-5.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupts: [[0, 234, 4, 0], [0, 233, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588s-orangepi-5.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588s-orangepi-5.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): Unevaluated properties are not allowed ('clock_in_out', 'rockchip,grf', 'rockchip,php-grf', 'tx_delay' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm64/boot/dts/rockchip/rk3588s-orangepi-5b.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588s-orangepi-5b.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588s-orangepi-5b.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588s-orangepi-5b.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588s-orangepi-5b.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588s-orangepi-5b.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588s-orangepi-5b.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588s-orangepi-5b.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupts: [[0, 234, 4, 0], [0, 233, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588s-orangepi-5b.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588s-orangepi-5b.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): Unevaluated properties are not allowed ('clock_in_out', 'rockchip,grf', 'rockchip,php-grf', 'tx_delay' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
arch/arm64/boot/dts/rockchip/rk3588s-roc-pc.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588s-roc-pc.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588s-roc-pc.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588s-roc-pc.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588s-roc-pc.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588s-roc-pc.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588s-roc-pc.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588s-roc-pc.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupts: [[0, 234, 4, 0], [0, 233, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588s-roc-pc.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588s-roc-pc.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): Unevaluated properties are not allowed ('clock_in_out', 'rockchip,grf', 'rockchip,php-grf' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
arch/arm64/boot/dts/rockchip/rk3588s-rock-5a.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588s-rock-5a.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588s-rock-5a.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588s-rock-5a.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588s-rock-5a.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588s-rock-5a.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588s-rock-5a.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588s-rock-5a.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupts: [[0, 234, 4, 0], [0, 233, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588s-rock-5a.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588s-rock-5a.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): Unevaluated properties are not allowed ('clock_in_out', 'rockchip,grf', 'rockchip,php-grf', 'rx_delay', 'tx_delay' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
arch/arm64/boot/dts/rockchip/rk3588s-rock-5c.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588s-rock-5c.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588s-rock-5c.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588s-rock-5c.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588s-rock-5c.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588s-rock-5c.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588s-rock-5c.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588s-rock-5c.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupts: [[0, 234, 4, 0], [0, 233, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588s-rock-5c.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588s-rock-5c.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): Unevaluated properties are not allowed ('rockchip,grf', 'rockchip,php-grf' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
arch/arm64/boot/dts/rockchip/rk3568-wolfvision-pf5-vz-2-uhd.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-wolfvision-pf5-vz-2-uhd.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clocks: [[15, 390], [15, 393], [15, 393], [15, 199], [15, 195], [15, 196], [15, 393], [15, 200]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3568-wolfvision-pf5-vz-2-uhd.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-wolfvision-pf5-vz-2-uhd.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clocks: [[15, 390], [15, 393], [15, 393], [15, 199], [15, 195], [15, 196], [15, 393], [15, 200]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3568-wolfvision-pf5-vz-2-uhd.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3568-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3568-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-wolfvision-pf5-vz-2-uhd.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3568-wolfvision-pf5-vz-2-uhd.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): interrupts: [[0, 32, 4], [0, 29, 4]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3568-wolfvision-pf5-vz-2-uhd.dtb: panel@0 (jasonic,jt240mhqs-hwt-ek-e3): compatible: ['jasonic,jt240mhqs-hwt-ek-e3', 'sitronix,st7789v'] is too long
from schema $id: http://devicetree.org/schemas/display/panel/sitronix,st7789v.yaml#
arch/arm64/boot/dts/rockchip/rk3568-wolfvision-pf5-vz-2-uhd.dtb: touchscreen@55 (sitronix,st1624): compatible:0: 'sitronix,st1624' is not one of ['sitronix,st1232', 'sitronix,st1633']
from schema $id: http://devicetree.org/schemas/input/touchscreen/sitronix,st1232.yaml#
arch/arm64/boot/dts/rockchip/rk3568-wolfvision-pf5-vz-2-uhd.dtb: touchscreen@55 (sitronix,st1624): compatible: ['sitronix,st1624', 'sitronix,st1633'] is too long
from schema $id: http://devicetree.org/schemas/input/touchscreen/sitronix,st1232.yaml#
arch/arm64/boot/dts/rockchip/rk3568-wolfvision-pf5-vz-2-uhd.dtb: touchscreen@55 (sitronix,st1624): Unevaluated properties are not allowed ('compatible', 'wakeup-source' were unexpected)
from schema $id: http://devicetree.org/schemas/input/touchscreen/sitronix,st1232.yaml#
arch/arm64/boot/dts/rockchip/rk3568-wolfvision-pf5-vz-2-uhd.dtb: /i2c@fe5a0000/touchscreen@55: failed to match any schema with compatible: ['sitronix,st1624', 'sitronix,st1633']
>> arch/arm64/boot/dts/rockchip/rk3568-wolfvision-pf5-vz-2-uhd.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3568-wolfvision-pf5-vz-2-uhd.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): clocks: [[15, 386], [15, 389], [15, 389], [15, 184], [15, 180], [15, 181], [15, 389], [15, 185]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-wolfvision-pf5-vz-2-uhd.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3568-wolfvision-pf5-vz-2-uhd.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): clocks: [[15, 386], [15, 389], [15, 389], [15, 184], [15, 180], [15, 181], [15, 389], [15, 185]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-wolfvision-pf5-vz-2-uhd.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3568-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3568-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3568-wolfvision-pf5-vz-2-uhd.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-wolfvision-pf5-vz-2-uhd.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): interrupts: [[0, 27, 4], [0, 24, 4]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3568-wolfvision-pf5-vz-2-uhd.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-wolfvision-pf5-vz-2-uhd.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): Unevaluated properties are not allowed ('clock_in_out', 'rockchip,grf' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
arch/arm64/boot/dts/rockchip/rk3576-armsom-sige5-v1.2-wifibt.dtb: ethernet@2a220000 (rockchip,rk3576-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3576-armsom-sige5-v1.2-wifibt.dtb: ethernet@2a220000 (rockchip,rk3576-gmac): clocks: [[21, 36], [21, 46], [21, 288], [21, 286], [21, 293]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3576-armsom-sige5-v1.2-wifibt.dtb: ethernet@2a220000 (rockchip,rk3576-gmac): power-domains: False schema does not allow [[32, 6]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3576-armsom-sige5-v1.2-wifibt.dtb: ethernet@2a220000 (rockchip,rk3576-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3576-armsom-sige5-v1.2-wifibt.dtb: ethernet@2a220000 (rockchip,rk3576-gmac): clocks: [[21, 36], [21, 46], [21, 288], [21, 286], [21, 293]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3576-armsom-sige5-v1.2-wifibt.dtb: ethernet@2a220000 (rockchip,rk3576-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3576-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3576-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3576-armsom-sige5-v1.2-wifibt.dtb: ethernet@2a220000 (rockchip,rk3576-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3576-armsom-sige5-v1.2-wifibt.dtb: ethernet@2a220000 (rockchip,rk3576-gmac): interrupts: [[0, 293, 4], [0, 298, 4]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3576-armsom-sige5-v1.2-wifibt.dtb: ethernet@2a220000 (rockchip,rk3576-gmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3576-armsom-sige5-v1.2-wifibt.dtb: ethernet@2a220000 (rockchip,rk3576-gmac): Unevaluated properties are not allowed ('clock_in_out', 'rockchip,grf', 'rockchip,php-grf' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3576-armsom-sige5-v1.2-wifibt.dtb: ethernet@2a230000 (rockchip,rk3576-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3576-armsom-sige5-v1.2-wifibt.dtb: ethernet@2a230000 (rockchip,rk3576-gmac): clocks: [[21, 37], [21, 47], [21, 289], [21, 287], [21, 292]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3576-armsom-sige5-v1.2-wifibt.dtb: ethernet@2a230000 (rockchip,rk3576-gmac): power-domains: False schema does not allow [[32, 6]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3576-armsom-sige5-v1.2-wifibt.dtb: ethernet@2a230000 (rockchip,rk3576-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3576-armsom-sige5-v1.2-wifibt.dtb: ethernet@2a230000 (rockchip,rk3576-gmac): clocks: [[21, 37], [21, 47], [21, 289], [21, 287], [21, 292]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3576-armsom-sige5-v1.2-wifibt.dtb: ethernet@2a230000 (rockchip,rk3576-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3576-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3576-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3576-armsom-sige5-v1.2-wifibt.dtb: ethernet@2a230000 (rockchip,rk3576-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3576-armsom-sige5-v1.2-wifibt.dtb: ethernet@2a230000 (rockchip,rk3576-gmac): interrupts: [[0, 301, 4], [0, 306, 4]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3576-armsom-sige5-v1.2-wifibt.dtb: ethernet@2a230000 (rockchip,rk3576-gmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3576-armsom-sige5-v1.2-wifibt.dtb: ethernet@2a230000 (rockchip,rk3576-gmac): Unevaluated properties are not allowed ('clock_in_out', 'rockchip,grf', 'rockchip,php-grf' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6a-wifi.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6a-wifi.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6a-wifi.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6a-wifi.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6a-wifi.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6a-wifi.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6a-wifi.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6a-wifi.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupts: [[0, 234, 4, 0], [0, 233, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6a-wifi.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6a-wifi.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6a-wifi.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6a-wifi.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6a-wifi.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6a-wifi.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6a-wifi.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6a-wifi.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupts: [[0, 227, 4, 0], [0, 226, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6b-wifi.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6b-wifi.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6b-wifi.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6b-wifi.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6b-wifi.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6b-wifi.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6b-wifi.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6b-wifi.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupts: [[0, 234, 4, 0], [0, 233, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6b-wifi.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6b-wifi.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6b-wifi.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6b-wifi.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6b-wifi.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6b-wifi.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6b-wifi.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6b-wifi.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupts: [[0, 227, 4, 0], [0, 226, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
arch/arm64/boot/dts/rockchip/rk3588-jaguar-ethernet-switch.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-jaguar-ethernet-switch.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-jaguar-ethernet-switch.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-jaguar-ethernet-switch.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-jaguar-ethernet-switch.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-jaguar-ethernet-switch.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-jaguar-ethernet-switch.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-jaguar-ethernet-switch.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupts: [[0, 234, 4, 0], [0, 233, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-jaguar-ethernet-switch.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): 'phy-handle' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-jaguar-ethernet-switch.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-jaguar-ethernet-switch.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): Unevaluated properties are not allowed ('clock_in_out', 'rockchip,grf', 'rockchip,php-grf', 'rx_delay', 'tx_delay' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-jaguar-ethernet-switch.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-jaguar-ethernet-switch.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-jaguar-ethernet-switch.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-jaguar-ethernet-switch.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-jaguar-ethernet-switch.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-jaguar-ethernet-switch.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-jaguar-ethernet-switch.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-jaguar-ethernet-switch.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupts: [[0, 227, 4, 0], [0, 226, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-jaguar-ethernet-switch.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-jaguar-ethernet-switch.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): Unevaluated properties are not allowed ('clock_in_out', 'rockchip,grf', 'rockchip,php-grf', 'rx_delay', 'tx_delay' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm64/boot/dts/rockchip/rk3588-jaguar-pre-ict-tester.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-jaguar-pre-ict-tester.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-jaguar-pre-ict-tester.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-jaguar-pre-ict-tester.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-jaguar-pre-ict-tester.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-jaguar-pre-ict-tester.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-jaguar-pre-ict-tester.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-jaguar-pre-ict-tester.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupts: [[0, 234, 4, 0], [0, 233, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-jaguar-pre-ict-tester.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-jaguar-pre-ict-tester.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-jaguar-pre-ict-tester.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-jaguar-pre-ict-tester.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-jaguar-pre-ict-tester.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-jaguar-pre-ict-tester.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-jaguar-pre-ict-tester.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-jaguar-pre-ict-tester.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupts: [[0, 227, 4, 0], [0, 226, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-jaguar-pre-ict-tester.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-jaguar-pre-ict-tester.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): Unevaluated properties are not allowed ('clock_in_out', 'rockchip,grf', 'rockchip,php-grf', 'rx_delay', 'tx_delay' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
arch/arm64/boot/dts/rockchip/rk3588-rock-5b-pcie-ep.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-rock-5b-pcie-ep.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-rock-5b-pcie-ep.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-rock-5b-pcie-ep.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-rock-5b-pcie-ep.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-rock-5b-pcie-ep.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-rock-5b-pcie-ep.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-rock-5b-pcie-ep.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupts: [[0, 234, 4, 0], [0, 233, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-rock-5b-pcie-ep.dtb: pcie-ep@fe150000 (rockchip,rk3588-pcie-ep): Unevaluated properties are not allowed ('vpcie3v3-supply' was unexpected)
from schema $id: http://devicetree.org/schemas/pci/rockchip-dw-pcie-ep.yaml#
arch/arm64/boot/dts/rockchip/rk3588-rock-5b-pcie-ep.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-rock-5b-pcie-ep.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-rock-5b-pcie-ep.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-rock-5b-pcie-ep.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-rock-5b-pcie-ep.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-rock-5b-pcie-ep.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-rock-5b-pcie-ep.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-rock-5b-pcie-ep.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupts: [[0, 227, 4, 0], [0, 226, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm64/boot/dts/rockchip/rk3588-rock-5b-pcie-srns.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-rock-5b-pcie-srns.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-rock-5b-pcie-srns.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-rock-5b-pcie-srns.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-rock-5b-pcie-srns.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-rock-5b-pcie-srns.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-rock-5b-pcie-srns.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-rock-5b-pcie-srns.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupts: [[0, 234, 4, 0], [0, 233, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-rock-5b-pcie-srns.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-rock-5b-pcie-srns.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-rock-5b-pcie-srns.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-rock-5b-pcie-srns.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-rock-5b-pcie-srns.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-rock-5b-pcie-srns.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-rock-5b-pcie-srns.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-rock-5b-pcie-srns.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupts: [[0, 227, 4, 0], [0, 226, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
arch/arm64/boot/dts/rockchip/rk3588-tiger-haikou-haikou-video-demo.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-tiger-haikou-haikou-video-demo.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-tiger-haikou-haikou-video-demo.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-tiger-haikou-haikou-video-demo.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-tiger-haikou-haikou-video-demo.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-tiger-haikou-haikou-video-demo.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-tiger-haikou-haikou-video-demo.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-tiger-haikou-haikou-video-demo.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupts: [[0, 234, 4, 0], [0, 233, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-tiger-haikou-haikou-video-demo.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-tiger-haikou-haikou-video-demo.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-tiger-haikou-haikou-video-demo.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-tiger-haikou-haikou-video-demo.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-tiger-haikou-haikou-video-demo.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-tiger-haikou-haikou-video-demo.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-tiger-haikou-haikou-video-demo.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-tiger-haikou-haikou-video-demo.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupts: [[0, 227, 4, 0], [0, 226, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-tiger-haikou-haikou-video-demo.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-tiger-haikou-haikou-video-demo.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): Unevaluated properties are not allowed ('clock_in_out', 'rockchip,grf', 'rockchip,php-grf', 'rx_delay', 'tx_delay' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
arch/arm64/boot/dts/toshiba/tmpv7708-rm-mbrc.dtb: pmux@24190000 (toshiba,tmpv7708-pinctrl): 'pwm_mux' does not match any of the regexes: '-pins$', '^pinctrl-[0-9]+$'
from schema $id: http://devicetree.org/schemas/pinctrl/toshiba,visconti-pinctrl.yaml#
arch/arm64/boot/dts/toshiba/tmpv7708-rm-mbrc.dtb: pmux@24190000 (toshiba,tmpv7708-pinctrl): $nodename:0: 'pmux@24190000' does not match '^(pinctrl|pinmux)(@[0-9a-f]+)?$'
from schema $id: http://devicetree.org/schemas/pinctrl/toshiba,visconti-pinctrl.yaml#
arch/arm64/boot/dts/toshiba/tmpv7708-rm-mbrc.dtb: ethernet@28000000 (toshiba,visconti-dwmac): clock-names: ['stmmaceth', 'phy_ref_clk'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/toshiba/tmpv7708-rm-mbrc.dtb: ethernet@28000000 (toshiba,visconti-dwmac): clocks: [[13, 28], [13, 118]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/toshiba/tmpv7708-rm-mbrc.dtb: ethernet@28000000 (toshiba,visconti-dwmac): compatible: 'oneOf' conditional failed, one must be fixed:
['toshiba,visconti-dwmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'toshiba,visconti-dwmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/toshiba/tmpv7708-rm-mbrc.dtb: ethernet@28000000 (toshiba,visconti-dwmac): 'resets' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/toshiba/tmpv7708-rm-mbrc.dtb: ethernet@28000000 (toshiba,visconti-dwmac): 'reset-names' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/toshiba/tmpv7708-rm-mbrc.dtb: ethernet@28000000 (toshiba,visconti-dwmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/toshiba/tmpv7708-rm-mbrc.dtb: ethernet@28000000 (toshiba,visconti-dwmac): Unevaluated properties are not allowed ('mdio0' was unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/toshiba/tmpv7708-rm-mbrc.dtb: ethernet@28000000 (toshiba,visconti-dwmac): Unevaluated properties are not allowed ('mdio0' was unexpected)
from schema $id: http://devicetree.org/schemas/net/toshiba,visconti-dwmac.yaml#
arch/arm64/boot/dts/toshiba/tmpv7708-rm-mbrc.dtb: wdt@28330000 (toshiba,visconti-wdt): $nodename:0: 'wdt@28330000' does not match '^(timer|watchdog)(@.*|-([0-9]|[1-9][0-9]+))?$'
from schema $id: http://devicetree.org/schemas/watchdog/toshiba,visconti-wdt.yaml#
--
arch/arm64/boot/dts/toshiba/tmpv7708-visrobo-vrb.dtb: pmux@24190000 (toshiba,tmpv7708-pinctrl): $nodename:0: 'pmux@24190000' does not match '^(pinctrl|pinmux)(@[0-9a-f]+)?$'
from schema $id: http://devicetree.org/schemas/pinctrl/toshiba,visconti-pinctrl.yaml#
arch/arm64/boot/dts/toshiba/tmpv7708-visrobo-vrb.dtb: pmux@24190000 (toshiba,tmpv7708-pinctrl): spi0-pins:groups: ['spi0_grp', 'spi0_cs0_grp'] is too long
from schema $id: http://devicetree.org/schemas/pinctrl/toshiba,visconti-pinctrl.yaml#
arch/arm64/boot/dts/toshiba/tmpv7708-visrobo-vrb.dtb: pmux@24190000 (toshiba,tmpv7708-pinctrl): spi0-pins:groups: ['spi0_grp', 'spi0_cs0_grp'] is too long
from schema $id: http://devicetree.org/schemas/pinctrl/toshiba,visconti-pinctrl.yaml#
arch/arm64/boot/dts/toshiba/tmpv7708-visrobo-vrb.dtb: mmc-slot@0 (mmc-spi-slot): $nodename:0: 'mmc-slot@0' does not match '^mmc(@.*)?$'
from schema $id: http://devicetree.org/schemas/mmc/mmc-spi-slot.yaml#
arch/arm64/boot/dts/toshiba/tmpv7708-visrobo-vrb.dtb: ethernet@28000000 (toshiba,visconti-dwmac): clock-names: ['stmmaceth', 'phy_ref_clk'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/toshiba/tmpv7708-visrobo-vrb.dtb: ethernet@28000000 (toshiba,visconti-dwmac): clocks: [[13, 28], [13, 118]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/toshiba/tmpv7708-visrobo-vrb.dtb: ethernet@28000000 (toshiba,visconti-dwmac): compatible: 'oneOf' conditional failed, one must be fixed:
['toshiba,visconti-dwmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'toshiba,visconti-dwmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/toshiba/tmpv7708-visrobo-vrb.dtb: ethernet@28000000 (toshiba,visconti-dwmac): 'resets' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/toshiba/tmpv7708-visrobo-vrb.dtb: ethernet@28000000 (toshiba,visconti-dwmac): 'reset-names' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/toshiba/tmpv7708-visrobo-vrb.dtb: ethernet@28000000 (toshiba,visconti-dwmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/toshiba/tmpv7708-visrobo-vrb.dtb: ethernet@28000000 (toshiba,visconti-dwmac): Unevaluated properties are not allowed ('mdio0' was unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/toshiba/tmpv7708-visrobo-vrb.dtb: ethernet@28000000 (toshiba,visconti-dwmac): Unevaluated properties are not allowed ('mdio0' was unexpected)
from schema $id: http://devicetree.org/schemas/net/toshiba,visconti-dwmac.yaml#
arch/arm64/boot/dts/toshiba/tmpv7708-visrobo-vrb.dtb: wdt@28330000 (toshiba,visconti-wdt): $nodename:0: 'wdt@28330000' does not match '^(timer|watchdog)(@.*|-([0-9]|[1-9][0-9]+))?$'
from schema $id: http://devicetree.org/schemas/watchdog/toshiba,visconti-wdt.yaml#
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH net-next v2 01/10] dt-bindings: net: sun8i-emac: Add A523 GMAC200 compatible
@ 2025-08-16 8:56 kernel test robot
0 siblings, 0 replies; 5+ messages in thread
From: kernel test robot @ 2025-08-16 8:56 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: <20250813145540.2577789-2-wens@kernel.org>
References: <20250813145540.2577789-2-wens@kernel.org>
TO: "Chen-Yu Tsai" <wens@kernel.org>
TO: Andrew Lunn <andrew+netdev@lunn.ch>
TO: "David S. Miller" <davem@davemloft.net>
CC: netdev@vger.kernel.org
TO: Eric Dumazet <edumazet@google.com>
TO: Jakub Kicinski <kuba@kernel.org>
TO: Paolo Abeni <pabeni@redhat.com>
TO: Rob Herring <robh@kernel.org>
TO: Krzysztof Kozlowski <krzk@kernel.org>
TO: Conor Dooley <conor+dt@kernel.org>
TO: "Chen-Yu Tsai" <wens@csie.org>
TO: Jernej Skrabec <jernej@kernel.org>
TO: Samuel Holland <samuel@sholland.org>
CC: devicetree@vger.kernel.org
CC: linux-arm-kernel@lists.infradead.org
CC: linux-sunxi@lists.linux.dev
CC: linux-kernel@vger.kernel.org
CC: Andre Przywara <andre.przywara@arm.com>
Hi Chen-Yu,
kernel test robot noticed the following build warnings:
[auto build test WARNING on net-next/main]
url: https://github.com/intel-lab-lkp/linux/commits/Chen-Yu-Tsai/dt-bindings-net-sun8i-emac-Add-A523-GMAC200-compatible/20250813-230250
base: net-next/main
patch link: https://lore.kernel.org/r/20250813145540.2577789-2-wens%40kernel.org
patch subject: [PATCH net-next v2 01/10] dt-bindings: net: sun8i-emac: Add A523 GMAC200 compatible
:::::: branch date: 3 days ago
:::::: commit date: 3 days ago
config: arm64-randconfig-052-20250814 (https://download.01.org/0day-ci/archive/20250816/202508161633.ayrx0Zyv-lkp@intel.com/config)
compiler: clang version 22.0.0git (https://github.com/llvm/llvm-project 3769ce013be2879bf0b329c14a16f5cb766f26ce)
dtschema version: 2025.6.2.dev4+g8f79ddd
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20250816/202508161633.ayrx0Zyv-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/202508161633.ayrx0Zyv-lkp@intel.com/
dtcheck warnings: (new ones prefixed by >>)
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3576-rock-4d.dtb: ethernet@2a220000 (rockchip,rk3576-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3576-rock-4d.dtb: ethernet@2a220000 (rockchip,rk3576-gmac): interrupts: [[0, 293, 4], [0, 298, 4]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3576-rock-4d.dtb: ethernet@2a220000 (rockchip,rk3576-gmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3576-rock-4d.dtb: ethernet@2a220000 (rockchip,rk3576-gmac): Unevaluated properties are not allowed ('clock_in_out', 'rockchip,grf', 'rockchip,php-grf' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3576-rock-4d.dtb: ethernet@2a230000 (rockchip,rk3576-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3576-rock-4d.dtb: ethernet@2a230000 (rockchip,rk3576-gmac): clocks: [[21, 37], [21, 47], [21, 289], [21, 287], [21, 292]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3576-rock-4d.dtb: ethernet@2a230000 (rockchip,rk3576-gmac): power-domains: False schema does not allow [[32, 6]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3576-rock-4d.dtb: ethernet@2a230000 (rockchip,rk3576-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3576-rock-4d.dtb: ethernet@2a230000 (rockchip,rk3576-gmac): clocks: [[21, 37], [21, 47], [21, 289], [21, 287], [21, 292]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3576-rock-4d.dtb: ethernet@2a230000 (rockchip,rk3576-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3576-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3576-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3576-rock-4d.dtb: ethernet@2a230000 (rockchip,rk3576-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3576-rock-4d.dtb: ethernet@2a230000 (rockchip,rk3576-gmac): interrupts: [[0, 301, 4], [0, 306, 4]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
arch/arm64/boot/dts/rockchip/rk3582-radxa-e52c.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3582-radxa-e52c.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3582-radxa-e52c.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3582-radxa-e52c.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3582-radxa-e52c.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3582-radxa-e52c.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3582-radxa-e52c.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3582-radxa-e52c.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupts: [[0, 234, 4, 0], [0, 233, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
arch/arm64/boot/dts/rockchip/rk3588-armsom-sige7.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-armsom-sige7.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-armsom-sige7.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-armsom-sige7.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-armsom-sige7.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-armsom-sige7.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-armsom-sige7.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-armsom-sige7.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupts: [[0, 234, 4, 0], [0, 233, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-armsom-sige7.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-armsom-sige7.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-armsom-sige7.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-armsom-sige7.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-armsom-sige7.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-armsom-sige7.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-armsom-sige7.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-armsom-sige7.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupts: [[0, 227, 4, 0], [0, 226, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm64/boot/dts/rockchip/rk3588-armsom-w3.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-armsom-w3.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-armsom-w3.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-armsom-w3.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-armsom-w3.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-armsom-w3.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-armsom-w3.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-armsom-w3.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupts: [[0, 234, 4, 0], [0, 233, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-armsom-w3.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-armsom-w3.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-armsom-w3.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-armsom-w3.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-armsom-w3.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-armsom-w3.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-armsom-w3.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-armsom-w3.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupts: [[0, 227, 4, 0], [0, 226, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm64/boot/dts/rockchip/rk3588-coolpi-cm5-evb.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-coolpi-cm5-evb.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-coolpi-cm5-evb.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-coolpi-cm5-evb.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-coolpi-cm5-evb.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-coolpi-cm5-evb.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-coolpi-cm5-evb.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-coolpi-cm5-evb.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupts: [[0, 234, 4, 0], [0, 233, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-coolpi-cm5-evb.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-coolpi-cm5-evb.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-coolpi-cm5-evb.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-coolpi-cm5-evb.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-coolpi-cm5-evb.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-coolpi-cm5-evb.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-coolpi-cm5-evb.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-coolpi-cm5-evb.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupts: [[0, 227, 4, 0], [0, 226, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-coolpi-cm5-evb.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-coolpi-cm5-evb.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): Unevaluated properties are not allowed ('clock_in_out', 'rockchip,grf', 'rockchip,php-grf', 'rx_delay', 'tx_delay' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
arch/arm64/boot/dts/rockchip/rk3588-coolpi-cm5-genbook.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-coolpi-cm5-genbook.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-coolpi-cm5-genbook.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-coolpi-cm5-genbook.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-coolpi-cm5-genbook.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-coolpi-cm5-genbook.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-coolpi-cm5-genbook.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-coolpi-cm5-genbook.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupts: [[0, 234, 4, 0], [0, 233, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-coolpi-cm5-genbook.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-coolpi-cm5-genbook.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-coolpi-cm5-genbook.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-coolpi-cm5-genbook.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-coolpi-cm5-genbook.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-coolpi-cm5-genbook.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-coolpi-cm5-genbook.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-coolpi-cm5-genbook.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupts: [[0, 227, 4, 0], [0, 226, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6a-io.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6a-io.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6a-io.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6a-io.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6a-io.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6a-io.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6a-io.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6a-io.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupts: [[0, 234, 4, 0], [0, 233, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6a-io.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6a-io.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6a-io.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6a-io.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6a-io.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6a-io.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6a-io.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6a-io.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupts: [[0, 227, 4, 0], [0, 226, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6b-io.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6b-io.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6b-io.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6b-io.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6b-io.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6b-io.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6b-io.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6b-io.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupts: [[0, 234, 4, 0], [0, 233, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6b-io.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6b-io.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6b-io.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6b-io.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6b-io.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6b-io.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6b-io.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6b-io.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupts: [[0, 227, 4, 0], [0, 226, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
arch/arm64/boot/dts/rockchip/rk3588-evb1-v10.dts:1410.7-1418.4: Warning (graph_child_address): /usb@fc000000/port: graph node has single child node 'endpoint@0', #address-cells/#size-cells are not necessary
arch/arm64/boot/dts/rockchip/rk3588-evb1-v10.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-evb1-v10.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-evb1-v10.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-evb1-v10.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-evb1-v10.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-evb1-v10.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-evb1-v10.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-evb1-v10.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupts: [[0, 234, 4, 0], [0, 233, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-evb1-v10.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-evb1-v10.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-evb1-v10.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-evb1-v10.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-evb1-v10.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-evb1-v10.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-evb1-v10.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-evb1-v10.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupts: [[0, 227, 4, 0], [0, 226, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-evb1-v10.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-evb1-v10.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): Unevaluated properties are not allowed ('clock_in_out', 'rockchip,grf', 'rockchip,php-grf', 'rx_delay', 'tx_delay' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
arch/arm64/boot/dts/rockchip/rk3588-evb2-v10.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-evb2-v10.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[30, 310], [30, 311], [30, 345], [30, 350], [30, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-evb2-v10.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[31, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-evb2-v10.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-evb2-v10.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[30, 310], [30, 311], [30, 345], [30, 350], [30, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-evb2-v10.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-evb2-v10.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-evb2-v10.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupts: [[0, 234, 4, 0], [0, 233, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-evb2-v10.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-evb2-v10.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[30, 310], [30, 311], [30, 344], [30, 349], [30, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-evb2-v10.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[31, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-evb2-v10.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-evb2-v10.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[30, 310], [30, 311], [30, 344], [30, 349], [30, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-evb2-v10.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-evb2-v10.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-evb2-v10.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupts: [[0, 227, 4, 0], [0, 226, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
arch/arm64/boot/dts/rockchip/rk3588-firefly-itx-3588j.dts:626.7-634.4: Warning (graph_child_address): /usb@fc000000/port: graph node has single child node 'endpoint@0', #address-cells/#size-cells are not necessary
arch/arm64/boot/dts/rockchip/rk3588-firefly-itx-3588j.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-firefly-itx-3588j.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-firefly-itx-3588j.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-firefly-itx-3588j.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-firefly-itx-3588j.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-firefly-itx-3588j.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-firefly-itx-3588j.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-firefly-itx-3588j.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupts: [[0, 234, 4, 0], [0, 233, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-firefly-itx-3588j.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-firefly-itx-3588j.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): Unevaluated properties are not allowed ('clock_in_out', 'rockchip,grf', 'rockchip,php-grf', 'rx_delay', 'tx_delay' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-firefly-itx-3588j.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-firefly-itx-3588j.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-firefly-itx-3588j.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-firefly-itx-3588j.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-firefly-itx-3588j.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-firefly-itx-3588j.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-firefly-itx-3588j.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-firefly-itx-3588j.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupts: [[0, 227, 4, 0], [0, 226, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-firefly-itx-3588j.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-firefly-itx-3588j.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): Unevaluated properties are not allowed ('clock_in_out', 'rockchip,grf', 'rockchip,php-grf', 'rx_delay', 'tx_delay' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm64/boot/dts/rockchip/rk3588-friendlyelec-cm3588-nas.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-friendlyelec-cm3588-nas.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-friendlyelec-cm3588-nas.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-friendlyelec-cm3588-nas.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-friendlyelec-cm3588-nas.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-friendlyelec-cm3588-nas.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-friendlyelec-cm3588-nas.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-friendlyelec-cm3588-nas.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupts: [[0, 234, 4, 0], [0, 233, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-friendlyelec-cm3588-nas.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-friendlyelec-cm3588-nas.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-friendlyelec-cm3588-nas.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-friendlyelec-cm3588-nas.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-friendlyelec-cm3588-nas.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-friendlyelec-cm3588-nas.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-friendlyelec-cm3588-nas.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-friendlyelec-cm3588-nas.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupts: [[0, 227, 4, 0], [0, 226, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
arch/arm64/boot/dts/rockchip/rk3588-h96-max-v58.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-h96-max-v58.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-h96-max-v58.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-h96-max-v58.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-h96-max-v58.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-h96-max-v58.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-h96-max-v58.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-h96-max-v58.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupts: [[0, 234, 4, 0], [0, 233, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-h96-max-v58.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-h96-max-v58.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): Unevaluated properties are not allowed ('clock_in_out', 'rockchip,grf', 'rockchip,php-grf' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-h96-max-v58.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-h96-max-v58.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-h96-max-v58.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-h96-max-v58.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-h96-max-v58.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-h96-max-v58.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-h96-max-v58.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-h96-max-v58.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupts: [[0, 227, 4, 0], [0, 226, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
arch/arm64/boot/dts/rockchip/rk3588-jaguar.dts:1112.7-1119.4: Warning (avoid_unnecessary_addr_size): /usb@fc000000/port: unnecessary #address-cells/#size-cells without "ranges", "dma-ranges" or child "reg" property
arch/arm64/boot/dts/rockchip/rk3588-jaguar.dts:1127.7-1134.4: Warning (avoid_unnecessary_addr_size): /usb@fc400000/port: unnecessary #address-cells/#size-cells without "ranges", "dma-ranges" or child "reg" property
arch/arm64/boot/dts/rockchip/rk3588-jaguar.dts:1112.7-1119.4: Warning (graph_child_address): /usb@fc000000/port: graph node has single child node 'endpoint', #address-cells/#size-cells are not necessary
arch/arm64/boot/dts/rockchip/rk3588-jaguar.dts:1127.7-1134.4: Warning (graph_child_address): /usb@fc400000/port: graph node has single child node 'endpoint', #address-cells/#size-cells are not necessary
>> arch/arm64/boot/dts/rockchip/rk3588-jaguar.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-jaguar.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-jaguar.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-jaguar.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-jaguar.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-jaguar.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-jaguar.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-jaguar.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupts: [[0, 234, 4, 0], [0, 233, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-jaguar.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-jaguar.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-jaguar.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-jaguar.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-jaguar.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-jaguar.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-jaguar.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-jaguar.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupts: [[0, 227, 4, 0], [0, 226, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-jaguar.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-jaguar.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): Unevaluated properties are not allowed ('clock_in_out', 'rockchip,grf', 'rockchip,php-grf', 'rx_delay', 'tx_delay' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
arch/arm64/boot/dts/rockchip/rk3588-mnt-reform2.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-mnt-reform2.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-mnt-reform2.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-mnt-reform2.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-mnt-reform2.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-mnt-reform2.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-mnt-reform2.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-mnt-reform2.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupts: [[0, 234, 4, 0], [0, 233, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-mnt-reform2.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-mnt-reform2.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-mnt-reform2.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-mnt-reform2.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-mnt-reform2.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-mnt-reform2.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-mnt-reform2.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-mnt-reform2.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupts: [[0, 227, 4, 0], [0, 226, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-mnt-reform2.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-mnt-reform2.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): Unevaluated properties are not allowed ('clock_in_out', 'rockchip,grf', 'rockchip,php-grf' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
arch/arm64/boot/dts/rockchip/rk3588-nanopc-t6.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-nanopc-t6.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-nanopc-t6.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-nanopc-t6.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-nanopc-t6.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-nanopc-t6.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-nanopc-t6.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-nanopc-t6.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupts: [[0, 234, 4, 0], [0, 233, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-nanopc-t6.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-nanopc-t6.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-nanopc-t6.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-nanopc-t6.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-nanopc-t6.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-nanopc-t6.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-nanopc-t6.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-nanopc-t6.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupts: [[0, 227, 4, 0], [0, 226, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm64/boot/dts/rockchip/rk3588-nanopc-t6-lts.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-nanopc-t6-lts.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-nanopc-t6-lts.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-nanopc-t6-lts.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-nanopc-t6-lts.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-nanopc-t6-lts.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-nanopc-t6-lts.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-nanopc-t6-lts.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupts: [[0, 234, 4, 0], [0, 233, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-nanopc-t6-lts.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-nanopc-t6-lts.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-nanopc-t6-lts.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-nanopc-t6-lts.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-nanopc-t6-lts.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-nanopc-t6-lts.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-nanopc-t6-lts.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-nanopc-t6-lts.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupts: [[0, 227, 4, 0], [0, 226, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm64/boot/dts/rockchip/rk3588-ok3588-c.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-ok3588-c.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-ok3588-c.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-ok3588-c.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-ok3588-c.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-ok3588-c.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-ok3588-c.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-ok3588-c.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupts: [[0, 234, 4, 0], [0, 233, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-ok3588-c.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-ok3588-c.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): Unevaluated properties are not allowed ('clock_in_out', 'rockchip,grf', 'rockchip,php-grf', 'rx_delay', 'tx_delay' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-ok3588-c.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-ok3588-c.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-ok3588-c.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-ok3588-c.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-ok3588-c.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-ok3588-c.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-ok3588-c.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-ok3588-c.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupts: [[0, 227, 4, 0], [0, 226, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-ok3588-c.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-ok3588-c.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): Unevaluated properties are not allowed ('clock_in_out', 'rockchip,grf', 'rockchip,php-grf', 'rx_delay', 'tx_delay' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-max.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-max.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-max.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-max.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-max.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-max.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-max.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-max.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupts: [[0, 234, 4, 0], [0, 233, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-max.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-max.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-max.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-max.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-max.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-max.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-max.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-max.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupts: [[0, 227, 4, 0], [0, 226, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-plus.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-plus.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-plus.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-plus.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-plus.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-plus.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-plus.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-plus.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupts: [[0, 234, 4, 0], [0, 233, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-plus.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-plus.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-plus.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-plus.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-plus.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-plus.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-plus.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
--
>> arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-ultra.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-ultra.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-ultra.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-ultra.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-ultra.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-ultra.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-ultra.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-ultra.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupts: [[0, 234, 4, 0], [0, 233, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-ultra.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-ultra.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-ultra.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-ultra.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-ultra.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-ultra.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-ultra.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-ultra.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupts: [[0, 227, 4, 0], [0, 226, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm64/boot/dts/rockchip/rk3588-quartzpro64.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-quartzpro64.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-quartzpro64.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-quartzpro64.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-quartzpro64.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-quartzpro64.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-quartzpro64.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-quartzpro64.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupts: [[0, 234, 4, 0], [0, 233, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-quartzpro64.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-quartzpro64.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-quartzpro64.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-quartzpro64.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-quartzpro64.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-quartzpro64.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-quartzpro64.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-quartzpro64.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupts: [[0, 227, 4, 0], [0, 226, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-quartzpro64.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-quartzpro64.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): Unevaluated properties are not allowed ('clock_in_out', 'rockchip,grf', 'rockchip,php-grf', 'rx_delay', 'tx_delay' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
arch/arm64/boot/dts/rockchip/rk3588-rock-5-itx.dts:1186.7-1194.4: Warning (graph_child_address): /usb@fc000000/port: graph node has single child node 'endpoint@0', #address-cells/#size-cells are not necessary
arch/arm64/boot/dts/rockchip/rk3588-rock-5-itx.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-rock-5-itx.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-rock-5-itx.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-rock-5-itx.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-rock-5-itx.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-rock-5-itx.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-rock-5-itx.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-rock-5-itx.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupts: [[0, 234, 4, 0], [0, 233, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-rock-5-itx.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-rock-5-itx.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-rock-5-itx.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-rock-5-itx.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-rock-5-itx.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-rock-5-itx.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-rock-5-itx.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-rock-5-itx.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupts: [[0, 227, 4, 0], [0, 226, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm64/boot/dts/rockchip/rk3588-rock-5b.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-rock-5b.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-rock-5b.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-rock-5b.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-rock-5b.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-rock-5b.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-rock-5b.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-rock-5b.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupts: [[0, 234, 4, 0], [0, 233, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-rock-5b.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-rock-5b.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-rock-5b.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-rock-5b.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-rock-5b.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-rock-5b.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-rock-5b.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-rock-5b.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupts: [[0, 227, 4, 0], [0, 226, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm64/boot/dts/rockchip/rk3588-rock-5b-plus.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-rock-5b-plus.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-rock-5b-plus.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-rock-5b-plus.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-rock-5b-plus.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-rock-5b-plus.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-rock-5b-plus.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-rock-5b-plus.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupts: [[0, 234, 4, 0], [0, 233, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-rock-5b-plus.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-rock-5b-plus.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-rock-5b-plus.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-rock-5b-plus.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-rock-5b-plus.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-rock-5b-plus.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-rock-5b-plus.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-rock-5b-plus.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupts: [[0, 227, 4, 0], [0, 226, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm64/boot/dts/rockchip/rk3588-rock-5t.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-rock-5t.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-rock-5t.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-rock-5t.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-rock-5t.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-rock-5t.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-rock-5t.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-rock-5t.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupts: [[0, 234, 4, 0], [0, 233, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-rock-5t.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-rock-5t.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-rock-5t.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-rock-5t.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-rock-5t.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-rock-5t.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-rock-5t.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-rock-5t.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupts: [[0, 227, 4, 0], [0, 226, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
arch/arm64/boot/dts/rockchip/rk3588-tiger-haikou.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-tiger-haikou.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-tiger-haikou.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-tiger-haikou.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-tiger-haikou.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-tiger-haikou.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-tiger-haikou.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-tiger-haikou.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupts: [[0, 234, 4, 0], [0, 233, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-tiger-haikou.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-tiger-haikou.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-tiger-haikou.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-tiger-haikou.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-tiger-haikou.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-tiger-haikou.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-tiger-haikou.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-tiger-haikou.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupts: [[0, 227, 4, 0], [0, 226, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-tiger-haikou.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-tiger-haikou.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): Unevaluated properties are not allowed ('clock_in_out', 'rockchip,grf', 'rockchip,php-grf', 'rx_delay', 'tx_delay' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
arch/arm64/boot/dts/rockchip/rk3588-toybrick-x0.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-toybrick-x0.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-toybrick-x0.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-toybrick-x0.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-toybrick-x0.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-toybrick-x0.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-toybrick-x0.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-toybrick-x0.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupts: [[0, 234, 4, 0], [0, 233, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-toybrick-x0.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-toybrick-x0.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-toybrick-x0.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-toybrick-x0.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-toybrick-x0.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-toybrick-x0.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-toybrick-x0.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-toybrick-x0.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupts: [[0, 227, 4, 0], [0, 226, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-toybrick-x0.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-toybrick-x0.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): Unevaluated properties are not allowed ('clock_in_out', 'rockchip,grf', 'rockchip,php-grf', 'rx_delay', 'tx_delay' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
arch/arm64/boot/dts/rockchip/rk3588-turing-rk1.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-turing-rk1.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-turing-rk1.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-turing-rk1.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-turing-rk1.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-turing-rk1.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-turing-rk1.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-turing-rk1.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupts: [[0, 234, 4, 0], [0, 233, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-turing-rk1.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-turing-rk1.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): Unevaluated properties are not allowed ('clock_in_out', 'rockchip,grf', 'rockchip,php-grf', 'rx_delay', 'tx_delay' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-turing-rk1.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-turing-rk1.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-turing-rk1.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-turing-rk1.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-turing-rk1.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-turing-rk1.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-turing-rk1.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
--
>> arch/arm64/boot/dts/rockchip/rk3588s-coolpi-4b.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588s-coolpi-4b.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588s-coolpi-4b.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588s-coolpi-4b.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588s-coolpi-4b.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588s-coolpi-4b.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588s-coolpi-4b.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588s-coolpi-4b.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupts: [[0, 234, 4, 0], [0, 233, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
arch/arm64/boot/dts/rockchip/rk3588s-evb1-v10.dts:1172.7-1180.4: Warning (graph_child_address): /usb@fc000000/port: graph node has single child node 'endpoint@0', #address-cells/#size-cells are not necessary
arch/arm64/boot/dts/rockchip/rk3588s-evb1-v10.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588s-evb1-v10.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[30, 310], [30, 311], [30, 345], [30, 350], [30, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588s-evb1-v10.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[31, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588s-evb1-v10.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588s-evb1-v10.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[30, 310], [30, 311], [30, 345], [30, 350], [30, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588s-evb1-v10.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588s-evb1-v10.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588s-evb1-v10.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupts: [[0, 234, 4, 0], [0, 233, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
arch/arm64/boot/dts/rockchip/rk3588s-gameforce-ace.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588s-gameforce-ace.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588s-gameforce-ace.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588s-gameforce-ace.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588s-gameforce-ace.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588s-gameforce-ace.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588s-gameforce-ace.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588s-gameforce-ace.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupts: [[0, 234, 4, 0], [0, 233, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
arch/arm64/boot/dts/rockchip/rk3588s-indiedroid-nova.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588s-indiedroid-nova.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588s-indiedroid-nova.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588s-indiedroid-nova.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588s-indiedroid-nova.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588s-indiedroid-nova.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588s-indiedroid-nova.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588s-indiedroid-nova.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupts: [[0, 234, 4, 0], [0, 233, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm64/boot/dts/rockchip/rk3588s-khadas-edge2.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588s-khadas-edge2.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588s-khadas-edge2.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588s-khadas-edge2.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588s-khadas-edge2.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588s-khadas-edge2.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588s-khadas-edge2.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
--
>> arch/arm64/boot/dts/rockchip/rk3588s-nanopi-r6s.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588s-nanopi-r6s.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588s-nanopi-r6s.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588s-nanopi-r6s.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588s-nanopi-r6s.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588s-nanopi-r6s.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588s-nanopi-r6s.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588s-nanopi-r6s.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupts: [[0, 234, 4, 0], [0, 233, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588s-nanopi-r6s.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588s-nanopi-r6s.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): Unevaluated properties are not allowed ('clock_in_out', 'rockchip,grf', 'rockchip,php-grf', 'tx_delay' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm64/boot/dts/rockchip/rk3588s-nanopi-r6c.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588s-nanopi-r6c.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588s-nanopi-r6c.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588s-nanopi-r6c.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588s-nanopi-r6c.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588s-nanopi-r6c.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588s-nanopi-r6c.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588s-nanopi-r6c.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupts: [[0, 234, 4, 0], [0, 233, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588s-nanopi-r6c.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588s-nanopi-r6c.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): Unevaluated properties are not allowed ('clock_in_out', 'rockchip,grf', 'rockchip,php-grf', 'tx_delay' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
arch/arm64/boot/dts/rockchip/rk3588s-odroid-m2.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588s-odroid-m2.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588s-odroid-m2.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588s-odroid-m2.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588s-odroid-m2.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588s-odroid-m2.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588s-odroid-m2.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588s-odroid-m2.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupts: [[0, 234, 4, 0], [0, 233, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588s-odroid-m2.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588s-odroid-m2.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): Unevaluated properties are not allowed ('clock_in_out', 'rockchip,grf', 'rockchip,php-grf' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm64/boot/dts/rockchip/rk3588s-orangepi-5.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588s-orangepi-5.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588s-orangepi-5.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588s-orangepi-5.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588s-orangepi-5.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588s-orangepi-5.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588s-orangepi-5.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588s-orangepi-5.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupts: [[0, 234, 4, 0], [0, 233, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588s-orangepi-5.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588s-orangepi-5.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): Unevaluated properties are not allowed ('clock_in_out', 'rockchip,grf', 'rockchip,php-grf', 'tx_delay' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
arch/arm64/boot/dts/rockchip/rk3588s-orangepi-5b.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588s-orangepi-5b.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588s-orangepi-5b.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588s-orangepi-5b.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588s-orangepi-5b.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588s-orangepi-5b.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588s-orangepi-5b.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588s-orangepi-5b.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupts: [[0, 234, 4, 0], [0, 233, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588s-orangepi-5b.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588s-orangepi-5b.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): Unevaluated properties are not allowed ('clock_in_out', 'rockchip,grf', 'rockchip,php-grf', 'tx_delay' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm64/boot/dts/rockchip/rk3588s-roc-pc.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588s-roc-pc.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588s-roc-pc.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588s-roc-pc.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588s-roc-pc.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588s-roc-pc.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588s-roc-pc.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588s-roc-pc.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupts: [[0, 234, 4, 0], [0, 233, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588s-roc-pc.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588s-roc-pc.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): Unevaluated properties are not allowed ('clock_in_out', 'rockchip,grf', 'rockchip,php-grf' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm64/boot/dts/rockchip/rk3588s-rock-5a.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588s-rock-5a.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588s-rock-5a.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588s-rock-5a.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588s-rock-5a.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588s-rock-5a.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588s-rock-5a.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588s-rock-5a.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupts: [[0, 234, 4, 0], [0, 233, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588s-rock-5a.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588s-rock-5a.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): Unevaluated properties are not allowed ('clock_in_out', 'rockchip,grf', 'rockchip,php-grf', 'rx_delay', 'tx_delay' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm64/boot/dts/rockchip/rk3588s-rock-5c.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588s-rock-5c.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588s-rock-5c.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588s-rock-5c.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588s-rock-5c.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588s-rock-5c.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588s-rock-5c.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588s-rock-5c.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupts: [[0, 234, 4, 0], [0, 233, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588s-rock-5c.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588s-rock-5c.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): Unevaluated properties are not allowed ('rockchip,grf', 'rockchip,php-grf' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm64/boot/dts/rockchip/rk3568-wolfvision-pf5-vz-2-uhd.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3568-wolfvision-pf5-vz-2-uhd.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clocks: [[15, 390], [15, 393], [15, 393], [15, 199], [15, 195], [15, 196], [15, 393], [15, 200]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-wolfvision-pf5-vz-2-uhd.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3568-wolfvision-pf5-vz-2-uhd.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): clocks: [[15, 390], [15, 393], [15, 393], [15, 199], [15, 195], [15, 196], [15, 393], [15, 200]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-wolfvision-pf5-vz-2-uhd.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3568-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3568-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3568-wolfvision-pf5-vz-2-uhd.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-wolfvision-pf5-vz-2-uhd.dtb: ethernet@fe010000 (rockchip,rk3568-gmac): interrupts: [[0, 32, 4], [0, 29, 4]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3568-wolfvision-pf5-vz-2-uhd.dtb: panel@0 (jasonic,jt240mhqs-hwt-ek-e3): compatible: ['jasonic,jt240mhqs-hwt-ek-e3', 'sitronix,st7789v'] is too long
from schema $id: http://devicetree.org/schemas/display/panel/sitronix,st7789v.yaml#
arch/arm64/boot/dts/rockchip/rk3568-wolfvision-pf5-vz-2-uhd.dtb: touchscreen@55 (sitronix,st1624): compatible:0: 'sitronix,st1624' is not one of ['sitronix,st1232', 'sitronix,st1633']
from schema $id: http://devicetree.org/schemas/input/touchscreen/sitronix,st1232.yaml#
arch/arm64/boot/dts/rockchip/rk3568-wolfvision-pf5-vz-2-uhd.dtb: touchscreen@55 (sitronix,st1624): compatible: ['sitronix,st1624', 'sitronix,st1633'] is too long
from schema $id: http://devicetree.org/schemas/input/touchscreen/sitronix,st1232.yaml#
arch/arm64/boot/dts/rockchip/rk3568-wolfvision-pf5-vz-2-uhd.dtb: touchscreen@55 (sitronix,st1624): Unevaluated properties are not allowed ('compatible', 'wakeup-source' were unexpected)
from schema $id: http://devicetree.org/schemas/input/touchscreen/sitronix,st1232.yaml#
arch/arm64/boot/dts/rockchip/rk3568-wolfvision-pf5-vz-2-uhd.dtb: /i2c@fe5a0000/touchscreen@55: failed to match any schema with compatible: ['sitronix,st1624', 'sitronix,st1633']
arch/arm64/boot/dts/rockchip/rk3568-wolfvision-pf5-vz-2-uhd.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-wolfvision-pf5-vz-2-uhd.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): clocks: [[15, 386], [15, 389], [15, 389], [15, 184], [15, 180], [15, 181], [15, 389], [15, 185]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3568-wolfvision-pf5-vz-2-uhd.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_refout', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-wolfvision-pf5-vz-2-uhd.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): clocks: [[15, 386], [15, 389], [15, 389], [15, 184], [15, 180], [15, 181], [15, 389], [15, 185]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3568-wolfvision-pf5-vz-2-uhd.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3568-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3568-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-wolfvision-pf5-vz-2-uhd.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3568-wolfvision-pf5-vz-2-uhd.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): interrupts: [[0, 27, 4], [0, 24, 4]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3568-wolfvision-pf5-vz-2-uhd.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3568-wolfvision-pf5-vz-2-uhd.dtb: ethernet@fe2a0000 (rockchip,rk3568-gmac): Unevaluated properties are not allowed ('clock_in_out', 'rockchip,grf' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm64/boot/dts/rockchip/rk3576-armsom-sige5-v1.2-wifibt.dtb: ethernet@2a220000 (rockchip,rk3576-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3576-armsom-sige5-v1.2-wifibt.dtb: ethernet@2a220000 (rockchip,rk3576-gmac): clocks: [[21, 36], [21, 46], [21, 288], [21, 286], [21, 293]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3576-armsom-sige5-v1.2-wifibt.dtb: ethernet@2a220000 (rockchip,rk3576-gmac): power-domains: False schema does not allow [[32, 6]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3576-armsom-sige5-v1.2-wifibt.dtb: ethernet@2a220000 (rockchip,rk3576-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3576-armsom-sige5-v1.2-wifibt.dtb: ethernet@2a220000 (rockchip,rk3576-gmac): clocks: [[21, 36], [21, 46], [21, 288], [21, 286], [21, 293]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3576-armsom-sige5-v1.2-wifibt.dtb: ethernet@2a220000 (rockchip,rk3576-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3576-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3576-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3576-armsom-sige5-v1.2-wifibt.dtb: ethernet@2a220000 (rockchip,rk3576-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3576-armsom-sige5-v1.2-wifibt.dtb: ethernet@2a220000 (rockchip,rk3576-gmac): interrupts: [[0, 293, 4], [0, 298, 4]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3576-armsom-sige5-v1.2-wifibt.dtb: ethernet@2a220000 (rockchip,rk3576-gmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3576-armsom-sige5-v1.2-wifibt.dtb: ethernet@2a220000 (rockchip,rk3576-gmac): Unevaluated properties are not allowed ('clock_in_out', 'rockchip,grf', 'rockchip,php-grf' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3576-armsom-sige5-v1.2-wifibt.dtb: ethernet@2a230000 (rockchip,rk3576-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3576-armsom-sige5-v1.2-wifibt.dtb: ethernet@2a230000 (rockchip,rk3576-gmac): clocks: [[21, 37], [21, 47], [21, 289], [21, 287], [21, 292]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3576-armsom-sige5-v1.2-wifibt.dtb: ethernet@2a230000 (rockchip,rk3576-gmac): power-domains: False schema does not allow [[32, 6]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3576-armsom-sige5-v1.2-wifibt.dtb: ethernet@2a230000 (rockchip,rk3576-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3576-armsom-sige5-v1.2-wifibt.dtb: ethernet@2a230000 (rockchip,rk3576-gmac): clocks: [[21, 37], [21, 47], [21, 289], [21, 287], [21, 292]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3576-armsom-sige5-v1.2-wifibt.dtb: ethernet@2a230000 (rockchip,rk3576-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3576-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3576-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3576-armsom-sige5-v1.2-wifibt.dtb: ethernet@2a230000 (rockchip,rk3576-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3576-armsom-sige5-v1.2-wifibt.dtb: ethernet@2a230000 (rockchip,rk3576-gmac): interrupts: [[0, 301, 4], [0, 306, 4]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3576-armsom-sige5-v1.2-wifibt.dtb: ethernet@2a230000 (rockchip,rk3576-gmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3576-armsom-sige5-v1.2-wifibt.dtb: ethernet@2a230000 (rockchip,rk3576-gmac): Unevaluated properties are not allowed ('clock_in_out', 'rockchip,grf', 'rockchip,php-grf' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6a-wifi.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6a-wifi.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6a-wifi.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6a-wifi.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6a-wifi.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6a-wifi.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6a-wifi.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6a-wifi.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupts: [[0, 234, 4, 0], [0, 233, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6a-wifi.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6a-wifi.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6a-wifi.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6a-wifi.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6a-wifi.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6a-wifi.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6a-wifi.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6a-wifi.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupts: [[0, 227, 4, 0], [0, 226, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6b-wifi.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6b-wifi.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6b-wifi.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6b-wifi.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6b-wifi.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6b-wifi.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6b-wifi.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6b-wifi.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupts: [[0, 234, 4, 0], [0, 233, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6b-wifi.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6b-wifi.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6b-wifi.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6b-wifi.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6b-wifi.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6b-wifi.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6b-wifi.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-edgeble-neu6b-wifi.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupts: [[0, 227, 4, 0], [0, 226, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm64/boot/dts/rockchip/rk3588-jaguar-ethernet-switch.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-jaguar-ethernet-switch.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-jaguar-ethernet-switch.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-jaguar-ethernet-switch.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-jaguar-ethernet-switch.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-jaguar-ethernet-switch.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-jaguar-ethernet-switch.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-jaguar-ethernet-switch.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupts: [[0, 234, 4, 0], [0, 233, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-jaguar-ethernet-switch.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): 'phy-handle' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-jaguar-ethernet-switch.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-jaguar-ethernet-switch.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): Unevaluated properties are not allowed ('clock_in_out', 'rockchip,grf', 'rockchip,php-grf', 'rx_delay', 'tx_delay' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-jaguar-ethernet-switch.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-jaguar-ethernet-switch.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-jaguar-ethernet-switch.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-jaguar-ethernet-switch.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-jaguar-ethernet-switch.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-jaguar-ethernet-switch.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-jaguar-ethernet-switch.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-jaguar-ethernet-switch.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupts: [[0, 227, 4, 0], [0, 226, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-jaguar-ethernet-switch.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-jaguar-ethernet-switch.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): Unevaluated properties are not allowed ('clock_in_out', 'rockchip,grf', 'rockchip,php-grf', 'rx_delay', 'tx_delay' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
arch/arm64/boot/dts/rockchip/rk3588-jaguar-pre-ict-tester.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-jaguar-pre-ict-tester.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-jaguar-pre-ict-tester.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-jaguar-pre-ict-tester.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-jaguar-pre-ict-tester.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-jaguar-pre-ict-tester.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-jaguar-pre-ict-tester.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-jaguar-pre-ict-tester.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupts: [[0, 234, 4, 0], [0, 233, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-jaguar-pre-ict-tester.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-jaguar-pre-ict-tester.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-jaguar-pre-ict-tester.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-jaguar-pre-ict-tester.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-jaguar-pre-ict-tester.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-jaguar-pre-ict-tester.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-jaguar-pre-ict-tester.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-jaguar-pre-ict-tester.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupts: [[0, 227, 4, 0], [0, 226, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-jaguar-pre-ict-tester.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-jaguar-pre-ict-tester.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): Unevaluated properties are not allowed ('clock_in_out', 'rockchip,grf', 'rockchip,php-grf', 'rx_delay', 'tx_delay' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm64/boot/dts/rockchip/rk3588-rock-5b-pcie-ep.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-rock-5b-pcie-ep.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-rock-5b-pcie-ep.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-rock-5b-pcie-ep.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-rock-5b-pcie-ep.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-rock-5b-pcie-ep.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-rock-5b-pcie-ep.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-rock-5b-pcie-ep.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupts: [[0, 234, 4, 0], [0, 233, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-rock-5b-pcie-ep.dtb: pcie-ep@fe150000 (rockchip,rk3588-pcie-ep): Unevaluated properties are not allowed ('vpcie3v3-supply' was unexpected)
from schema $id: http://devicetree.org/schemas/pci/rockchip-dw-pcie-ep.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-rock-5b-pcie-ep.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-rock-5b-pcie-ep.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-rock-5b-pcie-ep.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-rock-5b-pcie-ep.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-rock-5b-pcie-ep.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-rock-5b-pcie-ep.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-rock-5b-pcie-ep.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-rock-5b-pcie-ep.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupts: [[0, 227, 4, 0], [0, 226, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
arch/arm64/boot/dts/rockchip/rk3588-rock-5b-pcie-srns.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-rock-5b-pcie-srns.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-rock-5b-pcie-srns.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-rock-5b-pcie-srns.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-rock-5b-pcie-srns.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-rock-5b-pcie-srns.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-rock-5b-pcie-srns.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-rock-5b-pcie-srns.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupts: [[0, 234, 4, 0], [0, 233, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-rock-5b-pcie-srns.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-rock-5b-pcie-srns.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-rock-5b-pcie-srns.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-rock-5b-pcie-srns.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-rock-5b-pcie-srns.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-rock-5b-pcie-srns.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-rock-5b-pcie-srns.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
--
>> arch/arm64/boot/dts/rockchip/rk3588-tiger-haikou-haikou-video-demo.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-tiger-haikou-haikou-video-demo.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-tiger-haikou-haikou-video-demo.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-tiger-haikou-haikou-video-demo.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-tiger-haikou-haikou-video-demo.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 345], [33, 350], [33, 309]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-tiger-haikou-haikou-video-demo.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-tiger-haikou-haikou-video-demo.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-tiger-haikou-haikou-video-demo.dtb: ethernet@fe1c0000 (rockchip,rk3588-gmac): interrupts: [[0, 234, 4, 0], [0, 233, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-tiger-haikou-haikou-video-demo.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-tiger-haikou-haikou-video-demo.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-tiger-haikou-haikou-video-demo.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): power-domains: False schema does not allow [[34, 33]]
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-tiger-haikou-haikou-video-demo.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clock-names: ['stmmaceth', 'clk_mac_ref', 'pclk_mac', 'aclk_mac', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-tiger-haikou-haikou-video-demo.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): clocks: [[33, 310], [33, 311], [33, 344], [33, 349], [33, 308]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-tiger-haikou-haikou-video-demo.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rk3588-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rk3588-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-tiger-haikou-haikou-video-demo.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-tiger-haikou-haikou-video-demo.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): interrupts: [[0, 227, 4, 0], [0, 226, 4, 0]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/rockchip/rk3588-tiger-haikou-haikou-video-demo.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/rockchip/rk3588-tiger-haikou-haikou-video-demo.dtb: ethernet@fe1b0000 (rockchip,rk3588-gmac): Unevaluated properties are not allowed ('clock_in_out', 'rockchip,grf', 'rockchip,php-grf', 'rx_delay', 'tx_delay' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
arch/arm64/boot/dts/toshiba/tmpv7708-rm-mbrc.dtb: pmux@24190000 (toshiba,tmpv7708-pinctrl): 'pwm_mux' does not match any of the regexes: '-pins$', '^pinctrl-[0-9]+$'
from schema $id: http://devicetree.org/schemas/pinctrl/toshiba,visconti-pinctrl.yaml#
arch/arm64/boot/dts/toshiba/tmpv7708-rm-mbrc.dtb: pmux@24190000 (toshiba,tmpv7708-pinctrl): $nodename:0: 'pmux@24190000' does not match '^(pinctrl|pinmux)(@[0-9a-f]+)?$'
from schema $id: http://devicetree.org/schemas/pinctrl/toshiba,visconti-pinctrl.yaml#
>> arch/arm64/boot/dts/toshiba/tmpv7708-rm-mbrc.dtb: ethernet@28000000 (toshiba,visconti-dwmac): clock-names: ['stmmaceth', 'phy_ref_clk'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/toshiba/tmpv7708-rm-mbrc.dtb: ethernet@28000000 (toshiba,visconti-dwmac): clocks: [[13, 28], [13, 118]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/toshiba/tmpv7708-rm-mbrc.dtb: ethernet@28000000 (toshiba,visconti-dwmac): compatible: 'oneOf' conditional failed, one must be fixed:
['toshiba,visconti-dwmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'toshiba,visconti-dwmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/toshiba/tmpv7708-rm-mbrc.dtb: ethernet@28000000 (toshiba,visconti-dwmac): 'resets' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/toshiba/tmpv7708-rm-mbrc.dtb: ethernet@28000000 (toshiba,visconti-dwmac): 'reset-names' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/toshiba/tmpv7708-rm-mbrc.dtb: ethernet@28000000 (toshiba,visconti-dwmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/toshiba/tmpv7708-rm-mbrc.dtb: ethernet@28000000 (toshiba,visconti-dwmac): Unevaluated properties are not allowed ('mdio0' was unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/toshiba/tmpv7708-rm-mbrc.dtb: ethernet@28000000 (toshiba,visconti-dwmac): Unevaluated properties are not allowed ('mdio0' was unexpected)
from schema $id: http://devicetree.org/schemas/net/toshiba,visconti-dwmac.yaml#
arch/arm64/boot/dts/toshiba/tmpv7708-rm-mbrc.dtb: wdt@28330000 (toshiba,visconti-wdt): $nodename:0: 'wdt@28330000' does not match '^(timer|watchdog)(@.*|-([0-9]|[1-9][0-9]+))?$'
from schema $id: http://devicetree.org/schemas/watchdog/toshiba,visconti-wdt.yaml#
--
arch/arm64/boot/dts/toshiba/tmpv7708-visrobo-vrb.dtb: pmux@24190000 (toshiba,tmpv7708-pinctrl): 'pwm_mux' does not match any of the regexes: '-pins$', '^pinctrl-[0-9]+$'
from schema $id: http://devicetree.org/schemas/pinctrl/toshiba,visconti-pinctrl.yaml#
arch/arm64/boot/dts/toshiba/tmpv7708-visrobo-vrb.dtb: pmux@24190000 (toshiba,tmpv7708-pinctrl): $nodename:0: 'pmux@24190000' does not match '^(pinctrl|pinmux)(@[0-9a-f]+)?$'
from schema $id: http://devicetree.org/schemas/pinctrl/toshiba,visconti-pinctrl.yaml#
arch/arm64/boot/dts/toshiba/tmpv7708-visrobo-vrb.dtb: pmux@24190000 (toshiba,tmpv7708-pinctrl): spi0-pins:groups: ['spi0_grp', 'spi0_cs0_grp'] is too long
from schema $id: http://devicetree.org/schemas/pinctrl/toshiba,visconti-pinctrl.yaml#
arch/arm64/boot/dts/toshiba/tmpv7708-visrobo-vrb.dtb: pmux@24190000 (toshiba,tmpv7708-pinctrl): spi0-pins:groups: ['spi0_grp', 'spi0_cs0_grp'] is too long
from schema $id: http://devicetree.org/schemas/pinctrl/toshiba,visconti-pinctrl.yaml#
arch/arm64/boot/dts/toshiba/tmpv7708-visrobo-vrb.dtb: mmc-slot@0 (mmc-spi-slot): $nodename:0: 'mmc-slot@0' does not match '^mmc(@.*)?$'
from schema $id: http://devicetree.org/schemas/mmc/mmc-spi-slot.yaml#
>> arch/arm64/boot/dts/toshiba/tmpv7708-visrobo-vrb.dtb: ethernet@28000000 (toshiba,visconti-dwmac): clock-names: ['stmmaceth', 'phy_ref_clk'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/toshiba/tmpv7708-visrobo-vrb.dtb: ethernet@28000000 (toshiba,visconti-dwmac): clocks: [[13, 28], [13, 118]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/toshiba/tmpv7708-visrobo-vrb.dtb: ethernet@28000000 (toshiba,visconti-dwmac): compatible: 'oneOf' conditional failed, one must be fixed:
['toshiba,visconti-dwmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'toshiba,visconti-dwmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/toshiba/tmpv7708-visrobo-vrb.dtb: ethernet@28000000 (toshiba,visconti-dwmac): 'resets' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm64/boot/dts/toshiba/tmpv7708-visrobo-vrb.dtb: ethernet@28000000 (toshiba,visconti-dwmac): 'reset-names' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/toshiba/tmpv7708-visrobo-vrb.dtb: ethernet@28000000 (toshiba,visconti-dwmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/toshiba/tmpv7708-visrobo-vrb.dtb: ethernet@28000000 (toshiba,visconti-dwmac): Unevaluated properties are not allowed ('mdio0' was unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm64/boot/dts/toshiba/tmpv7708-visrobo-vrb.dtb: ethernet@28000000 (toshiba,visconti-dwmac): Unevaluated properties are not allowed ('mdio0' was unexpected)
from schema $id: http://devicetree.org/schemas/net/toshiba,visconti-dwmac.yaml#
arch/arm64/boot/dts/toshiba/tmpv7708-visrobo-vrb.dtb: wdt@28330000 (toshiba,visconti-wdt): $nodename:0: 'wdt@28330000' does not match '^(timer|watchdog)(@.*|-([0-9]|[1-9][0-9]+))?$'
from schema $id: http://devicetree.org/schemas/watchdog/toshiba,visconti-wdt.yaml#
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH net-next v2 01/10] dt-bindings: net: sun8i-emac: Add A523 GMAC200 compatible
@ 2025-08-24 6:40 kernel test robot
0 siblings, 0 replies; 5+ messages in thread
From: kernel test robot @ 2025-08-24 6:40 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: <20250813145540.2577789-2-wens@kernel.org>
References: <20250813145540.2577789-2-wens@kernel.org>
TO: "Chen-Yu Tsai" <wens@kernel.org>
TO: Andrew Lunn <andrew+netdev@lunn.ch>
TO: "David S. Miller" <davem@davemloft.net>
CC: netdev@vger.kernel.org
TO: Eric Dumazet <edumazet@google.com>
TO: Jakub Kicinski <kuba@kernel.org>
TO: Paolo Abeni <pabeni@redhat.com>
TO: Rob Herring <robh@kernel.org>
TO: Krzysztof Kozlowski <krzk@kernel.org>
TO: Conor Dooley <conor+dt@kernel.org>
TO: "Chen-Yu Tsai" <wens@csie.org>
TO: Jernej Skrabec <jernej@kernel.org>
TO: Samuel Holland <samuel@sholland.org>
CC: devicetree@vger.kernel.org
CC: linux-arm-kernel@lists.infradead.org
CC: linux-sunxi@lists.linux.dev
CC: linux-kernel@vger.kernel.org
CC: Andre Przywara <andre.przywara@arm.com>
Hi Chen-Yu,
kernel test robot noticed the following build warnings:
[auto build test WARNING on net-next/main]
url: https://github.com/intel-lab-lkp/linux/commits/Chen-Yu-Tsai/dt-bindings-net-sun8i-emac-Add-A523-GMAC200-compatible/20250813-230250
base: net-next/main
patch link: https://lore.kernel.org/r/20250813145540.2577789-2-wens%40kernel.org
patch subject: [PATCH net-next v2 01/10] dt-bindings: net: sun8i-emac: Add A523 GMAC200 compatible
:::::: branch date: 11 days ago
:::::: commit date: 11 days ago
config: arm-randconfig-052-20250814 (https://download.01.org/0day-ci/archive/20250824/202508241442.SlEipQds-lkp@intel.com/config)
compiler: clang version 22.0.0git (https://github.com/llvm/llvm-project 3769ce013be2879bf0b329c14a16f5cb766f26ce)
dtschema version: 2025.6.2.dev4+g8f79ddd
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20250824/202508241442.SlEipQds-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/202508241442.SlEipQds-lkp@intel.com/
dtcheck warnings: (new ones prefixed by >>)
>> arch/arm/boot/dts/rockchip/rv1109-relfor-saib.dtb: ethernet@ffc40000 (rockchip,rv1126-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_ref', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/rockchip/rv1109-relfor-saib.dtb: ethernet@ffc40000 (rockchip,rv1126-gmac): clocks: [[2, 126], [2, 136], [2, 136], [2, 127], [2, 191], [2, 278], [2, 136], [2, 137]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/rockchip/rv1109-relfor-saib.dtb: ethernet@ffc40000 (rockchip,rv1126-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_ref', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/rockchip/rv1109-relfor-saib.dtb: ethernet@ffc40000 (rockchip,rv1126-gmac): clocks: [[2, 126], [2, 136], [2, 136], [2, 127], [2, 191], [2, 278], [2, 136], [2, 137]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/rockchip/rv1109-relfor-saib.dtb: ethernet@ffc40000 (rockchip,rv1126-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rv1126-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rv1126-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/rockchip/rv1109-relfor-saib.dtb: ethernet@ffc40000 (rockchip,rv1126-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/rockchip/rv1109-relfor-saib.dtb: ethernet@ffc40000 (rockchip,rv1126-gmac): interrupts: [[0, 95, 4], [0, 96, 4]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm/boot/dts/rockchip/rv1109-sonoff-ihost.dtb: ethernet@ffc40000 (rockchip,rv1126-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_ref', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/rockchip/rv1109-sonoff-ihost.dtb: ethernet@ffc40000 (rockchip,rv1126-gmac): clocks: [[2, 126], [2, 136], [2, 136], [2, 127], [2, 191], [2, 278], [2, 136], [2, 137]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/rockchip/rv1109-sonoff-ihost.dtb: ethernet@ffc40000 (rockchip,rv1126-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_ref', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/rockchip/rv1109-sonoff-ihost.dtb: ethernet@ffc40000 (rockchip,rv1126-gmac): clocks: [[2, 126], [2, 136], [2, 136], [2, 127], [2, 191], [2, 278], [2, 136], [2, 137]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/rockchip/rv1109-sonoff-ihost.dtb: ethernet@ffc40000 (rockchip,rv1126-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rv1126-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rv1126-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/rockchip/rv1109-sonoff-ihost.dtb: ethernet@ffc40000 (rockchip,rv1126-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/rockchip/rv1109-sonoff-ihost.dtb: ethernet@ffc40000 (rockchip,rv1126-gmac): interrupts: [[0, 95, 4], [0, 96, 4]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/rockchip/rv1109-sonoff-ihost.dtb: ethernet@ffc40000 (rockchip,rv1126-gmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/rockchip/rv1109-sonoff-ihost.dtb: ethernet@ffc40000 (rockchip,rv1126-gmac): Unevaluated properties are not allowed ('clock_in_out', 'rockchip,grf' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm/boot/dts/rockchip/rv1126-edgeble-neu2-io.dtb: ethernet@ffc40000 (rockchip,rv1126-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_ref', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/rockchip/rv1126-edgeble-neu2-io.dtb: ethernet@ffc40000 (rockchip,rv1126-gmac): clocks: [[2, 126], [2, 136], [2, 136], [2, 127], [2, 191], [2, 278], [2, 136], [2, 137]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/rockchip/rv1126-edgeble-neu2-io.dtb: ethernet@ffc40000 (rockchip,rv1126-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_ref', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/rockchip/rv1126-edgeble-neu2-io.dtb: ethernet@ffc40000 (rockchip,rv1126-gmac): clocks: [[2, 126], [2, 136], [2, 136], [2, 127], [2, 191], [2, 278], [2, 136], [2, 137]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/rockchip/rv1126-edgeble-neu2-io.dtb: ethernet@ffc40000 (rockchip,rv1126-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rv1126-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rv1126-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/rockchip/rv1126-edgeble-neu2-io.dtb: ethernet@ffc40000 (rockchip,rv1126-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/rockchip/rv1126-edgeble-neu2-io.dtb: ethernet@ffc40000 (rockchip,rv1126-gmac): interrupts: [[0, 95, 4], [0, 96, 4]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/rockchip/rv1126-edgeble-neu2-io.dtb: ethernet@ffc40000 (rockchip,rv1126-gmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/rockchip/rv1126-edgeble-neu2-io.dtb: ethernet@ffc40000 (rockchip,rv1126-gmac): Unevaluated properties are not allowed ('clock_in_out', 'rockchip,grf', 'rx_delay', 'tx_delay' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm/boot/dts/rockchip/rv1126-sonoff-ihost.dtb: ethernet@ffc40000 (rockchip,rv1126-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_ref', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/rockchip/rv1126-sonoff-ihost.dtb: ethernet@ffc40000 (rockchip,rv1126-gmac): clocks: [[2, 126], [2, 136], [2, 136], [2, 127], [2, 191], [2, 278], [2, 136], [2, 137]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/rockchip/rv1126-sonoff-ihost.dtb: ethernet@ffc40000 (rockchip,rv1126-gmac): clock-names: ['stmmaceth', 'mac_clk_rx', 'mac_clk_tx', 'clk_mac_ref', 'aclk_mac', 'pclk_mac', 'clk_mac_speed', 'ptp_ref'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/rockchip/rv1126-sonoff-ihost.dtb: ethernet@ffc40000 (rockchip,rv1126-gmac): clocks: [[2, 126], [2, 136], [2, 136], [2, 127], [2, 191], [2, 278], [2, 136], [2, 137]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/rockchip/rv1126-sonoff-ihost.dtb: ethernet@ffc40000 (rockchip,rv1126-gmac): compatible: 'oneOf' conditional failed, one must be fixed:
['rockchip,rv1126-gmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'rockchip,rv1126-gmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/rockchip/rv1126-sonoff-ihost.dtb: ethernet@ffc40000 (rockchip,rv1126-gmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/rockchip/rv1126-sonoff-ihost.dtb: ethernet@ffc40000 (rockchip,rv1126-gmac): interrupts: [[0, 95, 4], [0, 96, 4]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/rockchip/rv1126-sonoff-ihost.dtb: ethernet@ffc40000 (rockchip,rv1126-gmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/rockchip/rv1126-sonoff-ihost.dtb: ethernet@ffc40000 (rockchip,rv1126-gmac): Unevaluated properties are not allowed ('clock_in_out', 'rockchip,grf' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
arch/arm/boot/dts/st/stm32mp133c-prihmb.dtb: adc@48004000 (st,stm32mp13-adc-core): adc@0:interrupts: 0 was expected
from schema $id: http://devicetree.org/schemas/iio/adc/st,stm32-adc.yaml#
>> arch/arm/boot/dts/st/stm32mp133c-prihmb.dtb: ethernet@5800a000 (st,stm32mp13-dwmac): clock-names: ['stmmaceth', 'mac-clk-tx', 'mac-clk-rx', 'ethstp', 'eth-ck'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp133c-prihmb.dtb: ethernet@5800a000 (st,stm32mp13-dwmac): clocks: [[4, 81], [4, 77], [4, 79], [4, 83], [4, 139]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp133c-prihmb.dtb: ethernet@5800a000 (st,stm32mp13-dwmac): clock-names: ['stmmaceth', 'mac-clk-tx', 'mac-clk-rx', 'ethstp', 'eth-ck'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp133c-prihmb.dtb: ethernet@5800a000 (st,stm32mp13-dwmac): clocks: [[4, 81], [4, 77], [4, 79], [4, 83], [4, 139]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp133c-prihmb.dtb: ethernet@5800a000 (st,stm32mp13-dwmac): compatible: 'oneOf' conditional failed, one must be fixed:
['st,stm32mp13-dwmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'st,stm32mp13-dwmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp133c-prihmb.dtb: ethernet@5800a000 (st,stm32mp13-dwmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp133c-prihmb.dtb: ethernet@5800a000 (st,stm32mp13-dwmac): interrupts-extended: [[2, 0, 62, 4], [10, 68, 1]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp133c-prihmb.dtb: ethernet@5800a000 (st,stm32mp13-dwmac): 'resets' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp133c-prihmb.dtb: ethernet@5800a000 (st,stm32mp13-dwmac): 'reset-names' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp133c-prihmb.dtb: ethernet@5800a000 (st,stm32mp13-dwmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp133c-prihmb.dtb: ethernet@5800a000 (st,stm32mp13-dwmac): Unevaluated properties are not allowed ('access-controllers', 'reg-names', 'st,syscon' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm/boot/dts/st/stm32mp133c-prihmb.dtb: adc@48003000 (st,stm32mp13-adc-core): adc@0:interrupts: 0 was expected
from schema $id: http://devicetree.org/schemas/iio/adc/st,stm32-adc.yaml#
>> arch/arm/boot/dts/st/stm32mp133c-prihmb.dtb: ethernet@5800e000 (st,stm32mp13-dwmac): clock-names: ['stmmaceth', 'mac-clk-tx', 'mac-clk-rx', 'ethstp', 'eth-ck'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp133c-prihmb.dtb: ethernet@5800e000 (st,stm32mp13-dwmac): clocks: [[4, 82], [4, 78], [4, 80], [4, 84], [4, 141]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp133c-prihmb.dtb: ethernet@5800e000 (st,stm32mp13-dwmac): clock-names: ['stmmaceth', 'mac-clk-tx', 'mac-clk-rx', 'ethstp', 'eth-ck'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp133c-prihmb.dtb: ethernet@5800e000 (st,stm32mp13-dwmac): clocks: [[4, 82], [4, 78], [4, 80], [4, 84], [4, 141]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp133c-prihmb.dtb: ethernet@5800e000 (st,stm32mp13-dwmac): compatible: 'oneOf' conditional failed, one must be fixed:
['st,stm32mp13-dwmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'st,stm32mp13-dwmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
arch/arm/boot/dts/st/stm32mp135f-dhcor-dhsbc.dtb: adc@48004000 (st,stm32mp13-adc-core): adc@0:interrupts: 0 was expected
from schema $id: http://devicetree.org/schemas/iio/adc/st,stm32-adc.yaml#
>> arch/arm/boot/dts/st/stm32mp135f-dhcor-dhsbc.dtb: ethernet@5800a000 (st,stm32mp13-dwmac): clock-names: ['stmmaceth', 'mac-clk-tx', 'mac-clk-rx', 'ethstp', 'eth-ck'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp135f-dhcor-dhsbc.dtb: ethernet@5800a000 (st,stm32mp13-dwmac): clocks: [[4, 81], [4, 77], [4, 79], [4, 83], [4, 139]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp135f-dhcor-dhsbc.dtb: ethernet@5800a000 (st,stm32mp13-dwmac): clock-names: ['stmmaceth', 'mac-clk-tx', 'mac-clk-rx', 'ethstp', 'eth-ck'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp135f-dhcor-dhsbc.dtb: ethernet@5800a000 (st,stm32mp13-dwmac): clocks: [[4, 81], [4, 77], [4, 79], [4, 83], [4, 139]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp135f-dhcor-dhsbc.dtb: ethernet@5800a000 (st,stm32mp13-dwmac): compatible: 'oneOf' conditional failed, one must be fixed:
['st,stm32mp13-dwmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'st,stm32mp13-dwmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp135f-dhcor-dhsbc.dtb: ethernet@5800a000 (st,stm32mp13-dwmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp135f-dhcor-dhsbc.dtb: ethernet@5800a000 (st,stm32mp13-dwmac): interrupts-extended: [[2, 0, 62, 4], [8, 68, 1]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp135f-dhcor-dhsbc.dtb: ethernet@5800a000 (st,stm32mp13-dwmac): 'resets' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp135f-dhcor-dhsbc.dtb: ethernet@5800a000 (st,stm32mp13-dwmac): 'reset-names' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp135f-dhcor-dhsbc.dtb: ethernet@5800a000 (st,stm32mp13-dwmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp135f-dhcor-dhsbc.dtb: ethernet@5800a000 (st,stm32mp13-dwmac): Unevaluated properties are not allowed ('access-controllers', 'reg-names', 'st,ext-phyclk', 'st,syscon' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm/boot/dts/st/stm32mp135f-dhcor-dhsbc.dtb: adc@48003000 (st,stm32mp13-adc-core): adc@0:interrupts: 0 was expected
from schema $id: http://devicetree.org/schemas/iio/adc/st,stm32-adc.yaml#
>> arch/arm/boot/dts/st/stm32mp135f-dhcor-dhsbc.dtb: ethernet@5800e000 (st,stm32mp13-dwmac): clock-names: ['stmmaceth', 'mac-clk-tx', 'mac-clk-rx', 'ethstp', 'eth-ck'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp135f-dhcor-dhsbc.dtb: ethernet@5800e000 (st,stm32mp13-dwmac): clocks: [[4, 82], [4, 78], [4, 80], [4, 84], [4, 141]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp135f-dhcor-dhsbc.dtb: ethernet@5800e000 (st,stm32mp13-dwmac): clock-names: ['stmmaceth', 'mac-clk-tx', 'mac-clk-rx', 'ethstp', 'eth-ck'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp135f-dhcor-dhsbc.dtb: ethernet@5800e000 (st,stm32mp13-dwmac): clocks: [[4, 82], [4, 78], [4, 80], [4, 84], [4, 141]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp135f-dhcor-dhsbc.dtb: ethernet@5800e000 (st,stm32mp13-dwmac): compatible: 'oneOf' conditional failed, one must be fixed:
['st,stm32mp13-dwmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'st,stm32mp13-dwmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp135f-dhcor-dhsbc.dtb: ethernet@5800e000 (st,stm32mp13-dwmac): 'resets' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp135f-dhcor-dhsbc.dtb: ethernet@5800e000 (st,stm32mp13-dwmac): 'reset-names' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp135f-dhcor-dhsbc.dtb: ethernet@5800e000 (st,stm32mp13-dwmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp135f-dhcor-dhsbc.dtb: ethernet@5800e000 (st,stm32mp13-dwmac): Unevaluated properties are not allowed ('access-controllers', 'reg-names', 'st,ext-phyclk', 'st,syscon' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
arch/arm/boot/dts/st/stm32mp135f-dk.dtb: adc@48004000 (st,stm32mp13-adc-core): adc@0:interrupts: 0 was expected
from schema $id: http://devicetree.org/schemas/iio/adc/st,stm32-adc.yaml#
>> arch/arm/boot/dts/st/stm32mp135f-dk.dtb: ethernet@5800a000 (st,stm32mp13-dwmac): clock-names: ['stmmaceth', 'mac-clk-tx', 'mac-clk-rx', 'ethstp', 'eth-ck'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp135f-dk.dtb: ethernet@5800a000 (st,stm32mp13-dwmac): clocks: [[4, 81], [4, 77], [4, 79], [4, 83], [4, 139]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp135f-dk.dtb: ethernet@5800a000 (st,stm32mp13-dwmac): clock-names: ['stmmaceth', 'mac-clk-tx', 'mac-clk-rx', 'ethstp', 'eth-ck'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp135f-dk.dtb: ethernet@5800a000 (st,stm32mp13-dwmac): clocks: [[4, 81], [4, 77], [4, 79], [4, 83], [4, 139]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp135f-dk.dtb: ethernet@5800a000 (st,stm32mp13-dwmac): compatible: 'oneOf' conditional failed, one must be fixed:
['st,stm32mp13-dwmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'st,stm32mp13-dwmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp135f-dk.dtb: ethernet@5800a000 (st,stm32mp13-dwmac): interrupt-names: ['macirq', 'eth_wake_irq'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp135f-dk.dtb: ethernet@5800a000 (st,stm32mp13-dwmac): interrupts-extended: [[2, 0, 62, 4], [10, 68, 1]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp135f-dk.dtb: ethernet@5800a000 (st,stm32mp13-dwmac): 'resets' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp135f-dk.dtb: ethernet@5800a000 (st,stm32mp13-dwmac): 'reset-names' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp135f-dk.dtb: ethernet@5800a000 (st,stm32mp13-dwmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp135f-dk.dtb: ethernet@5800a000 (st,stm32mp13-dwmac): Unevaluated properties are not allowed ('access-controllers', 'reg-names', 'st,syscon' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm/boot/dts/st/stm32mp135f-dk.dtb: adc@48003000 (st,stm32mp13-adc-core): adc@0:interrupts: 0 was expected
from schema $id: http://devicetree.org/schemas/iio/adc/st,stm32-adc.yaml#
>> arch/arm/boot/dts/st/stm32mp135f-dk.dtb: ethernet@5800e000 (st,stm32mp13-dwmac): clock-names: ['stmmaceth', 'mac-clk-tx', 'mac-clk-rx', 'ethstp', 'eth-ck'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp135f-dk.dtb: ethernet@5800e000 (st,stm32mp13-dwmac): clocks: [[4, 82], [4, 78], [4, 80], [4, 84], [4, 141]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp135f-dk.dtb: ethernet@5800e000 (st,stm32mp13-dwmac): clock-names: ['stmmaceth', 'mac-clk-tx', 'mac-clk-rx', 'ethstp', 'eth-ck'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp135f-dk.dtb: ethernet@5800e000 (st,stm32mp13-dwmac): clocks: [[4, 82], [4, 78], [4, 80], [4, 84], [4, 141]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp135f-dk.dtb: ethernet@5800e000 (st,stm32mp13-dwmac): compatible: 'oneOf' conditional failed, one must be fixed:
['st,stm32mp13-dwmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'st,stm32mp13-dwmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm/boot/dts/st/stm32mp151a-prtt1a.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clock-names: ['stmmaceth', 'mac-clk-tx', 'mac-clk-rx', 'eth-ck', 'ptp_ref', 'ethstp'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp151a-prtt1a.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clocks: [[6, 105], [6, 103], [6, 104], [6, 123], [6, 169], [6, 112]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp151a-prtt1a.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clock-names: ['stmmaceth', 'mac-clk-tx', 'mac-clk-rx', 'eth-ck', 'ptp_ref', 'ethstp'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp151a-prtt1a.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clocks: [[6, 105], [6, 103], [6, 104], [6, 123], [6, 169], [6, 112]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp151a-prtt1a.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): compatible: 'oneOf' conditional failed, one must be fixed:
['st,stm32mp1-dwmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'st,stm32mp1-dwmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp151a-prtt1a.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): 'resets' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp151a-prtt1a.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): 'reset-names' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp151a-prtt1a.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp151a-prtt1a.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): Unevaluated properties are not allowed ('access-controllers', 'reg-names', 'st,syscon' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
arch/arm/boot/dts/st/stm32mp151a-prtt1c.dtb: switch@0 (nxp,sja1105q): Unevaluated properties are not allowed ('clocks', 'reset-gpios' were unexpected)
from schema $id: http://devicetree.org/schemas/net/dsa/nxp,sja1105.yaml#
arch/arm/boot/dts/st/stm32mp151a-prtt1c.dtb: mmc@1 (prt,prtt1c-wfm200): $nodename:0: 'mmc@1' does not match '^wifi(@.*)?$'
from schema $id: http://devicetree.org/schemas/net/wireless/silabs,wfx.yaml#
>> arch/arm/boot/dts/st/stm32mp151a-prtt1c.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clock-names: ['stmmaceth', 'mac-clk-tx', 'mac-clk-rx', 'eth-ck', 'ptp_ref', 'ethstp'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp151a-prtt1c.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clocks: [[6, 105], [6, 103], [6, 104], [6, 123], [6, 169], [6, 112]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp151a-prtt1c.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clock-names: ['stmmaceth', 'mac-clk-tx', 'mac-clk-rx', 'eth-ck', 'ptp_ref', 'ethstp'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp151a-prtt1c.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clocks: [[6, 105], [6, 103], [6, 104], [6, 123], [6, 169], [6, 112]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp151a-prtt1c.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): compatible: 'oneOf' conditional failed, one must be fixed:
['st,stm32mp1-dwmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'st,stm32mp1-dwmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp151a-prtt1c.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): 'resets' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp151a-prtt1c.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): 'reset-names' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp151a-prtt1c.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): 'phy-handle' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp151a-prtt1c.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp151a-prtt1c.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): Unevaluated properties are not allowed ('access-controllers', 'reg-names', 'st,syscon' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm/boot/dts/st/stm32mp151a-prtt1s.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clock-names: ['stmmaceth', 'mac-clk-tx', 'mac-clk-rx', 'eth-ck', 'ptp_ref', 'ethstp'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp151a-prtt1s.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clocks: [[6, 105], [6, 103], [6, 104], [6, 123], [6, 169], [6, 112]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp151a-prtt1s.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clock-names: ['stmmaceth', 'mac-clk-tx', 'mac-clk-rx', 'eth-ck', 'ptp_ref', 'ethstp'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp151a-prtt1s.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clocks: [[6, 105], [6, 103], [6, 104], [6, 123], [6, 169], [6, 112]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp151a-prtt1s.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): compatible: 'oneOf' conditional failed, one must be fixed:
['st,stm32mp1-dwmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'st,stm32mp1-dwmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp151a-prtt1s.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): 'resets' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp151a-prtt1s.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): 'reset-names' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp151a-prtt1s.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp151a-prtt1s.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): Unevaluated properties are not allowed ('access-controllers', 'reg-names', 'st,syscon' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm/boot/dts/st/stm32mp151a-dhcor-testbench.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clock-names: ['stmmaceth', 'mac-clk-tx', 'mac-clk-rx', 'eth-ck', 'ptp_ref', 'ethstp'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp151a-dhcor-testbench.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clocks: [[6, 105], [6, 103], [6, 104], [6, 123], [6, 169], [6, 112]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp151a-dhcor-testbench.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clock-names: ['stmmaceth', 'mac-clk-tx', 'mac-clk-rx', 'eth-ck', 'ptp_ref', 'ethstp'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp151a-dhcor-testbench.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clocks: [[6, 105], [6, 103], [6, 104], [6, 123], [6, 169], [6, 112]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp151a-dhcor-testbench.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): compatible: 'oneOf' conditional failed, one must be fixed:
['st,stm32mp1-dwmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'st,stm32mp1-dwmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp151a-dhcor-testbench.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): 'resets' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp151a-dhcor-testbench.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): 'reset-names' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp151a-dhcor-testbench.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp151a-dhcor-testbench.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): Unevaluated properties are not allowed ('access-controllers', 'reg-names', 'st,syscon' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm/boot/dts/st/stm32mp151c-mecio1r0.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clock-names: ['stmmaceth', 'mac-clk-tx', 'mac-clk-rx', 'eth-ck', 'ptp_ref', 'ethstp'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp151c-mecio1r0.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clocks: [[6, 105], [6, 103], [6, 104], [6, 123], [6, 169], [6, 112]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp151c-mecio1r0.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clock-names: ['stmmaceth', 'mac-clk-tx', 'mac-clk-rx', 'eth-ck', 'ptp_ref', 'ethstp'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp151c-mecio1r0.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clocks: [[6, 105], [6, 103], [6, 104], [6, 123], [6, 169], [6, 112]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp151c-mecio1r0.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): compatible: 'oneOf' conditional failed, one must be fixed:
['st,stm32mp1-dwmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'st,stm32mp1-dwmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp151c-mecio1r0.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): 'resets' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp151c-mecio1r0.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): 'reset-names' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp151c-mecio1r0.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp151c-mecio1r0.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): Unevaluated properties are not allowed ('access-controllers', 'reg-names', 'st,eth-clk-sel', 'st,syscon' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm/boot/dts/st/stm32mp151c-mect1s.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clock-names: ['stmmaceth', 'mac-clk-tx', 'mac-clk-rx', 'eth-ck', 'ptp_ref', 'ethstp'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp151c-mect1s.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clocks: [[6, 105], [6, 103], [6, 104], [6, 123], [6, 169], [6, 112]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp151c-mect1s.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clock-names: ['stmmaceth', 'mac-clk-tx', 'mac-clk-rx', 'eth-ck', 'ptp_ref', 'ethstp'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp151c-mect1s.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clocks: [[6, 105], [6, 103], [6, 104], [6, 123], [6, 169], [6, 112]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp151c-mect1s.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): compatible: 'oneOf' conditional failed, one must be fixed:
['st,stm32mp1-dwmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'st,stm32mp1-dwmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp151c-mect1s.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): 'resets' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp151c-mect1s.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): 'reset-names' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp151c-mect1s.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): 'phy-handle' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp151c-mect1s.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp151c-mect1s.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): Unevaluated properties are not allowed ('access-controllers', 'reg-names', 'st,eth-clk-sel', 'st,syscon' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
arch/arm/boot/dts/st/stm32mp151c-plyaqm.dtb: audio-controller@44004000 (st,stm32h7-i2s): port:endpoint: Unevaluated properties are not allowed ('format' was unexpected)
from schema $id: http://devicetree.org/schemas/sound/st,stm32-i2s.yaml#
arch/arm/boot/dts/st/stm32mp151c-plyaqm.dtb: audio-controller@44004000 (st,stm32h7-i2s): Unevaluated properties are not allowed ('port' was unexpected)
from schema $id: http://devicetree.org/schemas/sound/st,stm32-i2s.yaml#
>> arch/arm/boot/dts/st/stm32mp151c-plyaqm.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clock-names: ['stmmaceth', 'mac-clk-tx', 'mac-clk-rx', 'eth-ck', 'ptp_ref', 'ethstp'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp151c-plyaqm.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clocks: [[7, 105], [7, 103], [7, 104], [7, 123], [7, 169], [7, 112]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp151c-plyaqm.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clock-names: ['stmmaceth', 'mac-clk-tx', 'mac-clk-rx', 'eth-ck', 'ptp_ref', 'ethstp'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp151c-plyaqm.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clocks: [[7, 105], [7, 103], [7, 104], [7, 123], [7, 169], [7, 112]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp151c-plyaqm.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): compatible: 'oneOf' conditional failed, one must be fixed:
['st,stm32mp1-dwmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'st,stm32mp1-dwmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp151c-plyaqm.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): 'resets' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp151c-plyaqm.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): 'reset-names' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp151c-plyaqm.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp151c-plyaqm.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): Unevaluated properties are not allowed ('access-controllers', 'reg-names', 'st,syscon' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm/boot/dts/st/stm32mp153c-dhcom-drc02.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clock-names: ['stmmaceth', 'mac-clk-tx', 'mac-clk-rx', 'eth-ck', 'ptp_ref', 'ethstp'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp153c-dhcom-drc02.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clocks: [[7, 105], [7, 103], [7, 104], [7, 123], [7, 169], [7, 112]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp153c-dhcom-drc02.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clock-names: ['stmmaceth', 'mac-clk-tx', 'mac-clk-rx', 'eth-ck', 'ptp_ref', 'ethstp'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp153c-dhcom-drc02.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clocks: [[7, 105], [7, 103], [7, 104], [7, 123], [7, 169], [7, 112]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp153c-dhcom-drc02.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): compatible: 'oneOf' conditional failed, one must be fixed:
['st,stm32mp1-dwmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'st,stm32mp1-dwmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp153c-dhcom-drc02.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): 'resets' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp153c-dhcom-drc02.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): 'reset-names' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp153c-dhcom-drc02.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp153c-dhcom-drc02.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): Unevaluated properties are not allowed ('access-controllers', 'reg-names', 'st,syscon' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm/boot/dts/st/stm32mp153c-dhcor-drc-compact.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clock-names: ['stmmaceth', 'mac-clk-tx', 'mac-clk-rx', 'eth-ck', 'ptp_ref', 'ethstp'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp153c-dhcor-drc-compact.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clocks: [[7, 105], [7, 103], [7, 104], [7, 123], [7, 169], [7, 112]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp153c-dhcor-drc-compact.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clock-names: ['stmmaceth', 'mac-clk-tx', 'mac-clk-rx', 'eth-ck', 'ptp_ref', 'ethstp'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp153c-dhcor-drc-compact.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clocks: [[7, 105], [7, 103], [7, 104], [7, 123], [7, 169], [7, 112]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp153c-dhcor-drc-compact.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): compatible: 'oneOf' conditional failed, one must be fixed:
['st,stm32mp1-dwmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'st,stm32mp1-dwmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp153c-dhcor-drc-compact.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): 'resets' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp153c-dhcor-drc-compact.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): 'reset-names' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp153c-dhcor-drc-compact.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp153c-dhcor-drc-compact.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): Unevaluated properties are not allowed ('access-controllers', 'reg-names', 'st,syscon' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm/boot/dts/st/stm32mp153c-lxa-fairytux2-gen1.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clock-names: ['stmmaceth', 'mac-clk-tx', 'mac-clk-rx', 'eth-ck', 'ptp_ref', 'ethstp'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp153c-lxa-fairytux2-gen1.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clocks: [[7, 105], [7, 103], [7, 104], [7, 123], [7, 169], [7, 112]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp153c-lxa-fairytux2-gen1.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clock-names: ['stmmaceth', 'mac-clk-tx', 'mac-clk-rx', 'eth-ck', 'ptp_ref', 'ethstp'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp153c-lxa-fairytux2-gen1.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clocks: [[7, 105], [7, 103], [7, 104], [7, 123], [7, 169], [7, 112]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp153c-lxa-fairytux2-gen1.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): compatible: 'oneOf' conditional failed, one must be fixed:
['st,stm32mp1-dwmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'st,stm32mp1-dwmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp153c-lxa-fairytux2-gen1.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): 'resets' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp153c-lxa-fairytux2-gen1.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): 'reset-names' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp153c-lxa-fairytux2-gen1.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp153c-lxa-fairytux2-gen1.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): Unevaluated properties are not allowed ('access-controllers', 'reg-names', 'st,eth-clk-sel', 'st,syscon' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm/boot/dts/st/stm32mp153c-lxa-fairytux2-gen2.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clock-names: ['stmmaceth', 'mac-clk-tx', 'mac-clk-rx', 'eth-ck', 'ptp_ref', 'ethstp'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp153c-lxa-fairytux2-gen2.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clocks: [[7, 105], [7, 103], [7, 104], [7, 123], [7, 169], [7, 112]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp153c-lxa-fairytux2-gen2.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clock-names: ['stmmaceth', 'mac-clk-tx', 'mac-clk-rx', 'eth-ck', 'ptp_ref', 'ethstp'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp153c-lxa-fairytux2-gen2.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clocks: [[7, 105], [7, 103], [7, 104], [7, 123], [7, 169], [7, 112]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp153c-lxa-fairytux2-gen2.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): compatible: 'oneOf' conditional failed, one must be fixed:
['st,stm32mp1-dwmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'st,stm32mp1-dwmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp153c-lxa-fairytux2-gen2.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): 'resets' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp153c-lxa-fairytux2-gen2.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): 'reset-names' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp153c-lxa-fairytux2-gen2.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp153c-lxa-fairytux2-gen2.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): Unevaluated properties are not allowed ('access-controllers', 'reg-names', 'st,eth-clk-sel', 'st,syscon' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm/boot/dts/st/stm32mp153c-lxa-tac-gen3.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clock-names: ['stmmaceth', 'mac-clk-tx', 'mac-clk-rx', 'eth-ck', 'ptp_ref', 'ethstp'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp153c-lxa-tac-gen3.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clocks: [[7, 105], [7, 103], [7, 104], [7, 123], [7, 169], [7, 112]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp153c-lxa-tac-gen3.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clock-names: ['stmmaceth', 'mac-clk-tx', 'mac-clk-rx', 'eth-ck', 'ptp_ref', 'ethstp'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp153c-lxa-tac-gen3.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clocks: [[7, 105], [7, 103], [7, 104], [7, 123], [7, 169], [7, 112]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp153c-lxa-tac-gen3.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): compatible: 'oneOf' conditional failed, one must be fixed:
['st,stm32mp1-dwmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'st,stm32mp1-dwmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp153c-lxa-tac-gen3.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): 'resets' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp153c-lxa-tac-gen3.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): 'reset-names' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp153c-lxa-tac-gen3.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): 'phy-handle' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp153c-lxa-tac-gen3.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp153c-lxa-tac-gen3.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): Unevaluated properties are not allowed ('access-controllers', 'reg-names', 'st,eth-clk-sel', 'st,syscon' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm/boot/dts/st/stm32mp153c-mecio1r1.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clock-names: ['stmmaceth', 'mac-clk-tx', 'mac-clk-rx', 'eth-ck', 'ptp_ref', 'ethstp'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp153c-mecio1r1.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clocks: [[7, 105], [7, 103], [7, 104], [7, 123], [7, 169], [7, 112]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp153c-mecio1r1.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clock-names: ['stmmaceth', 'mac-clk-tx', 'mac-clk-rx', 'eth-ck', 'ptp_ref', 'ethstp'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp153c-mecio1r1.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clocks: [[7, 105], [7, 103], [7, 104], [7, 123], [7, 169], [7, 112]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp153c-mecio1r1.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): compatible: 'oneOf' conditional failed, one must be fixed:
['st,stm32mp1-dwmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'st,stm32mp1-dwmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp153c-mecio1r1.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): 'resets' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp153c-mecio1r1.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): 'reset-names' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp153c-mecio1r1.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp153c-mecio1r1.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): Unevaluated properties are not allowed ('access-controllers', 'reg-names', 'st,eth-clk-sel', 'st,syscon' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm/boot/dts/st/stm32mp157a-avenger96.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clock-names: ['stmmaceth', 'mac-clk-tx', 'mac-clk-rx', 'eth-ck', 'ptp_ref', 'ethstp'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157a-avenger96.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clocks: [[7, 105], [7, 103], [7, 104], [7, 123], [7, 169], [7, 112]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157a-avenger96.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clock-names: ['stmmaceth', 'mac-clk-tx', 'mac-clk-rx', 'eth-ck', 'ptp_ref', 'ethstp'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157a-avenger96.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clocks: [[7, 105], [7, 103], [7, 104], [7, 123], [7, 169], [7, 112]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157a-avenger96.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): compatible: 'oneOf' conditional failed, one must be fixed:
['st,stm32mp1-dwmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'st,stm32mp1-dwmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157a-avenger96.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): 'resets' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157a-avenger96.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): 'reset-names' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157a-avenger96.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157a-avenger96.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): Unevaluated properties are not allowed ('access-controllers', 'reg-names', 'st,syscon' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm/boot/dts/st/stm32mp157a-dhcor-avenger96.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clock-names: ['stmmaceth', 'mac-clk-tx', 'mac-clk-rx', 'eth-ck', 'ptp_ref', 'ethstp'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157a-dhcor-avenger96.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clocks: [[7, 105], [7, 103], [7, 104], [7, 123], [7, 169], [7, 112]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157a-dhcor-avenger96.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clock-names: ['stmmaceth', 'mac-clk-tx', 'mac-clk-rx', 'eth-ck', 'ptp_ref', 'ethstp'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157a-dhcor-avenger96.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clocks: [[7, 105], [7, 103], [7, 104], [7, 123], [7, 169], [7, 112]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157a-dhcor-avenger96.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): compatible: 'oneOf' conditional failed, one must be fixed:
['st,stm32mp1-dwmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'st,stm32mp1-dwmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157a-dhcor-avenger96.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): 'resets' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157a-dhcor-avenger96.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): 'reset-names' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157a-dhcor-avenger96.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157a-dhcor-avenger96.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): Unevaluated properties are not allowed ('access-controllers', 'reg-names', 'st,syscon' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm/boot/dts/st/stm32mp157a-dk1.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clock-names: ['stmmaceth', 'mac-clk-tx', 'mac-clk-rx', 'eth-ck', 'ptp_ref', 'ethstp'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157a-dk1.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clocks: [[7, 105], [7, 103], [7, 104], [7, 123], [7, 169], [7, 112]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157a-dk1.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clock-names: ['stmmaceth', 'mac-clk-tx', 'mac-clk-rx', 'eth-ck', 'ptp_ref', 'ethstp'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157a-dk1.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clocks: [[7, 105], [7, 103], [7, 104], [7, 123], [7, 169], [7, 112]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157a-dk1.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): compatible: 'oneOf' conditional failed, one must be fixed:
['st,stm32mp1-dwmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'st,stm32mp1-dwmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157a-dk1.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): 'resets' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157a-dk1.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): 'reset-names' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157a-dk1.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157a-dk1.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): Unevaluated properties are not allowed ('access-controllers', 'reg-names', 'st,syscon' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm/boot/dts/st/stm32mp157a-dk1-scmi.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clock-names: ['stmmaceth', 'mac-clk-tx', 'mac-clk-rx', 'eth-ck', 'ptp_ref', 'ethstp'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157a-dk1-scmi.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clocks: [[8, 105], [8, 103], [8, 104], [8, 123], [8, 169], [8, 112]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157a-dk1-scmi.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clock-names: ['stmmaceth', 'mac-clk-tx', 'mac-clk-rx', 'eth-ck', 'ptp_ref', 'ethstp'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157a-dk1-scmi.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clocks: [[8, 105], [8, 103], [8, 104], [8, 123], [8, 169], [8, 112]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157a-dk1-scmi.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): compatible: 'oneOf' conditional failed, one must be fixed:
['st,stm32mp1-dwmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'st,stm32mp1-dwmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157a-dk1-scmi.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): 'resets' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157a-dk1-scmi.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): 'reset-names' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157a-dk1-scmi.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157a-dk1-scmi.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): Unevaluated properties are not allowed ('access-controllers', 'reg-names', 'st,syscon' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
arch/arm/boot/dts/st/stm32mp157a-iot-box.dtb: serial@40010000 (st,stm32h7-uart): cts-gpios: False schema does not allow [[31, 15, 1]]
from schema $id: http://devicetree.org/schemas/serial/st,stm32-uart.yaml#
arch/arm/boot/dts/st/stm32mp157a-iot-box.dtb: serial@40010000 (st,stm32h7-uart): rts-gpios: False schema does not allow [[32, 0, 1]]
from schema $id: http://devicetree.org/schemas/serial/st,stm32-uart.yaml#
arch/arm/boot/dts/st/stm32mp157a-iot-box.dtb: serial@40010000 (st,stm32h7-uart): Unevaluated properties are not allowed ('bluetooth', 'uart-has-rtscts' were unexpected)
from schema $id: http://devicetree.org/schemas/serial/st,stm32-uart.yaml#
arch/arm/boot/dts/st/stm32mp157a-iot-box.dtb: serial@40010000 (st,stm32h7-uart): cts-gpios: False schema does not allow [[31, 15, 1]]
from schema $id: http://devicetree.org/schemas/serial/serial.yaml#
arch/arm/boot/dts/st/stm32mp157a-iot-box.dtb: serial@40010000 (st,stm32h7-uart): rts-gpios: False schema does not allow [[32, 0, 1]]
from schema $id: http://devicetree.org/schemas/serial/serial.yaml#
>> arch/arm/boot/dts/st/stm32mp157a-iot-box.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clock-names: ['stmmaceth', 'mac-clk-tx', 'mac-clk-rx', 'eth-ck', 'ptp_ref', 'ethstp'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157a-iot-box.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clocks: [[7, 105], [7, 103], [7, 104], [7, 123], [7, 169], [7, 112]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157a-iot-box.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clock-names: ['stmmaceth', 'mac-clk-tx', 'mac-clk-rx', 'eth-ck', 'ptp_ref', 'ethstp'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157a-iot-box.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clocks: [[7, 105], [7, 103], [7, 104], [7, 123], [7, 169], [7, 112]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157a-iot-box.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): compatible: 'oneOf' conditional failed, one must be fixed:
['st,stm32mp1-dwmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'st,stm32mp1-dwmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm/boot/dts/st/stm32mp157a-microgea-stm32mp1-microdev2.0.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clock-names: ['stmmaceth', 'mac-clk-tx', 'mac-clk-rx', 'eth-ck', 'ptp_ref', 'ethstp'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157a-microgea-stm32mp1-microdev2.0.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clocks: [[7, 105], [7, 103], [7, 104], [7, 123], [7, 169], [7, 112]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157a-microgea-stm32mp1-microdev2.0.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clock-names: ['stmmaceth', 'mac-clk-tx', 'mac-clk-rx', 'eth-ck', 'ptp_ref', 'ethstp'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157a-microgea-stm32mp1-microdev2.0.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clocks: [[7, 105], [7, 103], [7, 104], [7, 123], [7, 169], [7, 112]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157a-microgea-stm32mp1-microdev2.0.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): compatible: 'oneOf' conditional failed, one must be fixed:
['st,stm32mp1-dwmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'st,stm32mp1-dwmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm/boot/dts/st/stm32mp157a-microgea-stm32mp1-microdev2.0-of7.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clock-names: ['stmmaceth', 'mac-clk-tx', 'mac-clk-rx', 'eth-ck', 'ptp_ref', 'ethstp'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157a-microgea-stm32mp1-microdev2.0-of7.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clocks: [[7, 105], [7, 103], [7, 104], [7, 123], [7, 169], [7, 112]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157a-microgea-stm32mp1-microdev2.0-of7.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clock-names: ['stmmaceth', 'mac-clk-tx', 'mac-clk-rx', 'eth-ck', 'ptp_ref', 'ethstp'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157a-microgea-stm32mp1-microdev2.0-of7.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clocks: [[7, 105], [7, 103], [7, 104], [7, 123], [7, 169], [7, 112]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157a-microgea-stm32mp1-microdev2.0-of7.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): compatible: 'oneOf' conditional failed, one must be fixed:
['st,stm32mp1-dwmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'st,stm32mp1-dwmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm/boot/dts/st/stm32mp157a-icore-stm32mp1-ctouch2.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clock-names: ['stmmaceth', 'mac-clk-tx', 'mac-clk-rx', 'eth-ck', 'ptp_ref', 'ethstp'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157a-icore-stm32mp1-ctouch2.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clocks: [[7, 105], [7, 103], [7, 104], [7, 123], [7, 169], [7, 112]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157a-icore-stm32mp1-ctouch2.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clock-names: ['stmmaceth', 'mac-clk-tx', 'mac-clk-rx', 'eth-ck', 'ptp_ref', 'ethstp'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157a-icore-stm32mp1-ctouch2.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clocks: [[7, 105], [7, 103], [7, 104], [7, 123], [7, 169], [7, 112]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157a-icore-stm32mp1-ctouch2.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): compatible: 'oneOf' conditional failed, one must be fixed:
['st,stm32mp1-dwmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'st,stm32mp1-dwmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm/boot/dts/st/stm32mp157a-icore-stm32mp1-ctouch2-of10.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clock-names: ['stmmaceth', 'mac-clk-tx', 'mac-clk-rx', 'eth-ck', 'ptp_ref', 'ethstp'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157a-icore-stm32mp1-ctouch2-of10.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clocks: [[7, 105], [7, 103], [7, 104], [7, 123], [7, 169], [7, 112]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157a-icore-stm32mp1-ctouch2-of10.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clock-names: ['stmmaceth', 'mac-clk-tx', 'mac-clk-rx', 'eth-ck', 'ptp_ref', 'ethstp'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157a-icore-stm32mp1-ctouch2-of10.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clocks: [[7, 105], [7, 103], [7, 104], [7, 123], [7, 169], [7, 112]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157a-icore-stm32mp1-ctouch2-of10.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): compatible: 'oneOf' conditional failed, one must be fixed:
['st,stm32mp1-dwmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'st,stm32mp1-dwmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm/boot/dts/st/stm32mp157a-icore-stm32mp1-edimm2.2.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clock-names: ['stmmaceth', 'mac-clk-tx', 'mac-clk-rx', 'eth-ck', 'ptp_ref', 'ethstp'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157a-icore-stm32mp1-edimm2.2.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clocks: [[7, 105], [7, 103], [7, 104], [7, 123], [7, 169], [7, 112]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157a-icore-stm32mp1-edimm2.2.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clock-names: ['stmmaceth', 'mac-clk-tx', 'mac-clk-rx', 'eth-ck', 'ptp_ref', 'ethstp'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157a-icore-stm32mp1-edimm2.2.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clocks: [[7, 105], [7, 103], [7, 104], [7, 123], [7, 169], [7, 112]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157a-icore-stm32mp1-edimm2.2.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): compatible: 'oneOf' conditional failed, one must be fixed:
['st,stm32mp1-dwmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'st,stm32mp1-dwmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm/boot/dts/st/stm32mp157a-stinger96.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clock-names: ['stmmaceth', 'mac-clk-tx', 'mac-clk-rx', 'eth-ck', 'ptp_ref', 'ethstp'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157a-stinger96.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clocks: [[7, 105], [7, 103], [7, 104], [7, 123], [7, 169], [7, 112]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157a-stinger96.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clock-names: ['stmmaceth', 'mac-clk-tx', 'mac-clk-rx', 'eth-ck', 'ptp_ref', 'ethstp'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157a-stinger96.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clocks: [[7, 105], [7, 103], [7, 104], [7, 123], [7, 169], [7, 112]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157a-stinger96.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): compatible: 'oneOf' conditional failed, one must be fixed:
['st,stm32mp1-dwmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'st,stm32mp1-dwmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm/boot/dts/st/stm32mp157c-dhcom-pdk2.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clock-names: ['stmmaceth', 'mac-clk-tx', 'mac-clk-rx', 'eth-ck', 'ptp_ref', 'ethstp'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157c-dhcom-pdk2.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clocks: [[7, 105], [7, 103], [7, 104], [7, 123], [7, 169], [7, 112]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157c-dhcom-pdk2.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clock-names: ['stmmaceth', 'mac-clk-tx', 'mac-clk-rx', 'eth-ck', 'ptp_ref', 'ethstp'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157c-dhcom-pdk2.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clocks: [[7, 105], [7, 103], [7, 104], [7, 123], [7, 169], [7, 112]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157c-dhcom-pdk2.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): compatible: 'oneOf' conditional failed, one must be fixed:
['st,stm32mp1-dwmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'st,stm32mp1-dwmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157c-dhcom-pdk2.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): 'resets' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157c-dhcom-pdk2.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): 'reset-names' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157c-dhcom-pdk2.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157c-dhcom-pdk2.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): Unevaluated properties are not allowed ('access-controllers', 'reg-names', 'st,syscon' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm/boot/dts/st/stm32mp157c-dhcom-picoitx.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clock-names: ['stmmaceth', 'mac-clk-tx', 'mac-clk-rx', 'eth-ck', 'ptp_ref', 'ethstp'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157c-dhcom-picoitx.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clocks: [[7, 105], [7, 103], [7, 104], [7, 123], [7, 169], [7, 112]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157c-dhcom-picoitx.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clock-names: ['stmmaceth', 'mac-clk-tx', 'mac-clk-rx', 'eth-ck', 'ptp_ref', 'ethstp'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157c-dhcom-picoitx.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clocks: [[7, 105], [7, 103], [7, 104], [7, 123], [7, 169], [7, 112]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157c-dhcom-picoitx.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): compatible: 'oneOf' conditional failed, one must be fixed:
['st,stm32mp1-dwmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'st,stm32mp1-dwmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157c-dhcom-picoitx.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): 'resets' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157c-dhcom-picoitx.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): 'reset-names' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157c-dhcom-picoitx.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157c-dhcom-picoitx.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): Unevaluated properties are not allowed ('access-controllers', 'reg-names', 'st,syscon' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm/boot/dts/st/stm32mp157c-dk2.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clock-names: ['stmmaceth', 'mac-clk-tx', 'mac-clk-rx', 'eth-ck', 'ptp_ref', 'ethstp'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157c-dk2.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clocks: [[7, 105], [7, 103], [7, 104], [7, 123], [7, 169], [7, 112]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157c-dk2.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clock-names: ['stmmaceth', 'mac-clk-tx', 'mac-clk-rx', 'eth-ck', 'ptp_ref', 'ethstp'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157c-dk2.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clocks: [[7, 105], [7, 103], [7, 104], [7, 123], [7, 169], [7, 112]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157c-dk2.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): compatible: 'oneOf' conditional failed, one must be fixed:
['st,stm32mp1-dwmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'st,stm32mp1-dwmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157c-dk2.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): 'resets' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157c-dk2.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): 'reset-names' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157c-dk2.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157c-dk2.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): Unevaluated properties are not allowed ('access-controllers', 'reg-names', 'st,syscon' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm/boot/dts/st/stm32mp157c-dk2-scmi.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clock-names: ['stmmaceth', 'mac-clk-tx', 'mac-clk-rx', 'eth-ck', 'ptp_ref', 'ethstp'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157c-dk2-scmi.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clocks: [[8, 105], [8, 103], [8, 104], [8, 123], [8, 169], [8, 112]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157c-dk2-scmi.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clock-names: ['stmmaceth', 'mac-clk-tx', 'mac-clk-rx', 'eth-ck', 'ptp_ref', 'ethstp'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157c-dk2-scmi.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clocks: [[8, 105], [8, 103], [8, 104], [8, 123], [8, 169], [8, 112]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157c-dk2-scmi.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): compatible: 'oneOf' conditional failed, one must be fixed:
['st,stm32mp1-dwmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'st,stm32mp1-dwmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157c-dk2-scmi.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): 'resets' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157c-dk2-scmi.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): 'reset-names' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157c-dk2-scmi.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157c-dk2-scmi.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): Unevaluated properties are not allowed ('access-controllers', 'reg-names', 'st,syscon' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm/boot/dts/st/stm32mp157c-ed1.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clock-names: ['stmmaceth', 'mac-clk-tx', 'mac-clk-rx', 'eth-ck', 'ptp_ref', 'ethstp'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157c-ed1.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clocks: [[7, 105], [7, 103], [7, 104], [7, 123], [7, 169], [7, 112]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157c-ed1.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clock-names: ['stmmaceth', 'mac-clk-tx', 'mac-clk-rx', 'eth-ck', 'ptp_ref', 'ethstp'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157c-ed1.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clocks: [[7, 105], [7, 103], [7, 104], [7, 123], [7, 169], [7, 112]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157c-ed1.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): compatible: 'oneOf' conditional failed, one must be fixed:
['st,stm32mp1-dwmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'st,stm32mp1-dwmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm/boot/dts/st/stm32mp157c-ed1-scmi.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clock-names: ['stmmaceth', 'mac-clk-tx', 'mac-clk-rx', 'eth-ck', 'ptp_ref', 'ethstp'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157c-ed1-scmi.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clocks: [[8, 105], [8, 103], [8, 104], [8, 123], [8, 169], [8, 112]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157c-ed1-scmi.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clock-names: ['stmmaceth', 'mac-clk-tx', 'mac-clk-rx', 'eth-ck', 'ptp_ref', 'ethstp'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157c-ed1-scmi.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clocks: [[8, 105], [8, 103], [8, 104], [8, 123], [8, 169], [8, 112]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157c-ed1-scmi.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): compatible: 'oneOf' conditional failed, one must be fixed:
['st,stm32mp1-dwmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'st,stm32mp1-dwmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm/boot/dts/st/stm32mp157c-emsbc-argon.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clock-names: ['stmmaceth', 'mac-clk-tx', 'mac-clk-rx', 'eth-ck', 'ptp_ref', 'ethstp'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157c-emsbc-argon.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clocks: [[7, 105], [7, 103], [7, 104], [7, 123], [7, 169], [7, 112]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157c-emsbc-argon.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clock-names: ['stmmaceth', 'mac-clk-tx', 'mac-clk-rx', 'eth-ck', 'ptp_ref', 'ethstp'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157c-emsbc-argon.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clocks: [[7, 105], [7, 103], [7, 104], [7, 123], [7, 169], [7, 112]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157c-emsbc-argon.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): compatible: 'oneOf' conditional failed, one must be fixed:
['st,stm32mp1-dwmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'st,stm32mp1-dwmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157c-emsbc-argon.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): 'resets' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157c-emsbc-argon.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): 'reset-names' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157c-emsbc-argon.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157c-emsbc-argon.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): Unevaluated properties are not allowed ('access-controllers', 'reg-names', 'st,eth-ref-clk-sel', 'st,syscon' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
arch/arm/boot/dts/st/stm32mp157c-emsbc-argon.dtb: m4@10000000 (st,stm32mp1-m4): 'interrupt-names', 'recovery' do not match any of the regexes: '^pinctrl-[0-9]+$'
from schema $id: http://devicetree.org/schemas/remoteproc/st,stm32-rproc.yaml#
--
>> arch/arm/boot/dts/st/stm32mp157c-ev1.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clock-names: ['stmmaceth', 'mac-clk-tx', 'mac-clk-rx', 'eth-ck', 'ptp_ref', 'ethstp'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157c-ev1.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clocks: [[7, 105], [7, 103], [7, 104], [7, 123], [7, 169], [7, 112]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157c-ev1.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clock-names: ['stmmaceth', 'mac-clk-tx', 'mac-clk-rx', 'eth-ck', 'ptp_ref', 'ethstp'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157c-ev1.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clocks: [[7, 105], [7, 103], [7, 104], [7, 123], [7, 169], [7, 112]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157c-ev1.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): compatible: 'oneOf' conditional failed, one must be fixed:
['st,stm32mp1-dwmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'st,stm32mp1-dwmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157c-ev1.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): 'resets' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157c-ev1.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): 'reset-names' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157c-ev1.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157c-ev1.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): Unevaluated properties are not allowed ('access-controllers', 'reg-names', 'st,syscon' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm/boot/dts/st/stm32mp157c-ev1-scmi.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clock-names: ['stmmaceth', 'mac-clk-tx', 'mac-clk-rx', 'eth-ck', 'ptp_ref', 'ethstp'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157c-ev1-scmi.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clocks: [[8, 105], [8, 103], [8, 104], [8, 123], [8, 169], [8, 112]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157c-ev1-scmi.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clock-names: ['stmmaceth', 'mac-clk-tx', 'mac-clk-rx', 'eth-ck', 'ptp_ref', 'ethstp'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157c-ev1-scmi.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clocks: [[8, 105], [8, 103], [8, 104], [8, 123], [8, 169], [8, 112]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157c-ev1-scmi.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): compatible: 'oneOf' conditional failed, one must be fixed:
['st,stm32mp1-dwmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'st,stm32mp1-dwmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157c-ev1-scmi.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): 'resets' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157c-ev1-scmi.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): 'reset-names' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157c-ev1-scmi.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157c-ev1-scmi.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): Unevaluated properties are not allowed ('access-controllers', 'reg-names', 'st,syscon' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
arch/arm/boot/dts/st/stm32mp157c-lxa-mc1.dtb: /soc/bus@5c007000/i2c@40015000/touchscreen@38: failed to match any schema with compatible: ['edt,edt-ft5x06']
>> arch/arm/boot/dts/st/stm32mp157c-lxa-mc1.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clock-names: ['stmmaceth', 'mac-clk-tx', 'mac-clk-rx', 'eth-ck', 'ptp_ref', 'ethstp'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157c-lxa-mc1.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clocks: [[7, 105], [7, 103], [7, 104], [7, 123], [7, 169], [7, 112]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157c-lxa-mc1.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clock-names: ['stmmaceth', 'mac-clk-tx', 'mac-clk-rx', 'eth-ck', 'ptp_ref', 'ethstp'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157c-lxa-mc1.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clocks: [[7, 105], [7, 103], [7, 104], [7, 123], [7, 169], [7, 112]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157c-lxa-mc1.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): compatible: 'oneOf' conditional failed, one must be fixed:
['st,stm32mp1-dwmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'st,stm32mp1-dwmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157c-lxa-mc1.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): 'resets' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157c-lxa-mc1.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): 'reset-names' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157c-lxa-mc1.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157c-lxa-mc1.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): Unevaluated properties are not allowed ('access-controllers', 'reg-names', 'st,syscon' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm/boot/dts/st/stm32mp157c-lxa-tac-gen1.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clock-names: ['stmmaceth', 'mac-clk-tx', 'mac-clk-rx', 'eth-ck', 'ptp_ref', 'ethstp'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157c-lxa-tac-gen1.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clocks: [[7, 105], [7, 103], [7, 104], [7, 123], [7, 169], [7, 112]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157c-lxa-tac-gen1.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clock-names: ['stmmaceth', 'mac-clk-tx', 'mac-clk-rx', 'eth-ck', 'ptp_ref', 'ethstp'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157c-lxa-tac-gen1.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clocks: [[7, 105], [7, 103], [7, 104], [7, 123], [7, 169], [7, 112]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157c-lxa-tac-gen1.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): compatible: 'oneOf' conditional failed, one must be fixed:
['st,stm32mp1-dwmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'st,stm32mp1-dwmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157c-lxa-tac-gen1.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): 'resets' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157c-lxa-tac-gen1.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): 'reset-names' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157c-lxa-tac-gen1.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): 'phy-handle' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157c-lxa-tac-gen1.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157c-lxa-tac-gen1.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): Unevaluated properties are not allowed ('access-controllers', 'reg-names', 'st,eth-clk-sel', 'st,syscon' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm/boot/dts/st/stm32mp157c-lxa-tac-gen2.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clock-names: ['stmmaceth', 'mac-clk-tx', 'mac-clk-rx', 'eth-ck', 'ptp_ref', 'ethstp'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157c-lxa-tac-gen2.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clocks: [[7, 105], [7, 103], [7, 104], [7, 123], [7, 169], [7, 112]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157c-lxa-tac-gen2.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clock-names: ['stmmaceth', 'mac-clk-tx', 'mac-clk-rx', 'eth-ck', 'ptp_ref', 'ethstp'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157c-lxa-tac-gen2.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clocks: [[7, 105], [7, 103], [7, 104], [7, 123], [7, 169], [7, 112]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157c-lxa-tac-gen2.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): compatible: 'oneOf' conditional failed, one must be fixed:
['st,stm32mp1-dwmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'st,stm32mp1-dwmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157c-lxa-tac-gen2.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): 'resets' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157c-lxa-tac-gen2.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): 'reset-names' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157c-lxa-tac-gen2.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): 'phy-handle' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157c-lxa-tac-gen2.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157c-lxa-tac-gen2.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): Unevaluated properties are not allowed ('access-controllers', 'reg-names', 'st,eth-clk-sel', 'st,syscon' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm/boot/dts/st/stm32mp157c-odyssey.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clock-names: ['stmmaceth', 'mac-clk-tx', 'mac-clk-rx', 'eth-ck', 'ptp_ref', 'ethstp'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157c-odyssey.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clocks: [[7, 105], [7, 103], [7, 104], [7, 123], [7, 169], [7, 112]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157c-odyssey.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clock-names: ['stmmaceth', 'mac-clk-tx', 'mac-clk-rx', 'eth-ck', 'ptp_ref', 'ethstp'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157c-odyssey.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clocks: [[7, 105], [7, 103], [7, 104], [7, 123], [7, 169], [7, 112]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157c-odyssey.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): compatible: 'oneOf' conditional failed, one must be fixed:
['st,stm32mp1-dwmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'st,stm32mp1-dwmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157c-odyssey.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): 'resets' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157c-odyssey.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): 'reset-names' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157c-odyssey.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157c-odyssey.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): Unevaluated properties are not allowed ('access-controllers', 'reg-names', 'st,eth-clk-sel', 'st,syscon' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm/boot/dts/st/stm32mp157c-osd32mp1-red.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clock-names: ['stmmaceth', 'mac-clk-tx', 'mac-clk-rx', 'eth-ck', 'ptp_ref', 'ethstp'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157c-osd32mp1-red.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clocks: [[7, 105], [7, 103], [7, 104], [7, 123], [7, 169], [7, 112]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157c-osd32mp1-red.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clock-names: ['stmmaceth', 'mac-clk-tx', 'mac-clk-rx', 'eth-ck', 'ptp_ref', 'ethstp'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157c-osd32mp1-red.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clocks: [[7, 105], [7, 103], [7, 104], [7, 123], [7, 169], [7, 112]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157c-osd32mp1-red.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): compatible: 'oneOf' conditional failed, one must be fixed:
['st,stm32mp1-dwmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'st,stm32mp1-dwmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157c-osd32mp1-red.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): 'resets' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157c-osd32mp1-red.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): 'reset-names' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157c-osd32mp1-red.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157c-osd32mp1-red.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): Unevaluated properties are not allowed ('access-controllers', 'reg-names', 'st,eth-clk-sel', 'st,syscon' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
arch/arm/boot/dts/st/stm32mp157c-phycore-stm32mp1-3.dtb: touch@44 (st,stmpe811): touchscreen: Unevaluated properties are not allowed ('st,adc-freq', 'st,mod-12b', 'st,ref-sel', 'st,sample-time' were unexpected)
from schema $id: http://devicetree.org/schemas/mfd/st,stmpe.yaml#
>> arch/arm/boot/dts/st/stm32mp157c-phycore-stm32mp1-3.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clock-names: ['stmmaceth', 'mac-clk-tx', 'mac-clk-rx', 'eth-ck', 'ptp_ref', 'ethstp'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157c-phycore-stm32mp1-3.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clocks: [[7, 105], [7, 103], [7, 104], [7, 123], [7, 169], [7, 112]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157c-phycore-stm32mp1-3.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clock-names: ['stmmaceth', 'mac-clk-tx', 'mac-clk-rx', 'eth-ck', 'ptp_ref', 'ethstp'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157c-phycore-stm32mp1-3.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clocks: [[7, 105], [7, 103], [7, 104], [7, 123], [7, 169], [7, 112]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157c-phycore-stm32mp1-3.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): compatible: 'oneOf' conditional failed, one must be fixed:
['st,stm32mp1-dwmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'st,stm32mp1-dwmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157c-phycore-stm32mp1-3.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): 'resets' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157c-phycore-stm32mp1-3.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): 'reset-names' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157c-phycore-stm32mp1-3.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157c-phycore-stm32mp1-3.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): Unevaluated properties are not allowed ('access-controllers', 'reg-names', 'st,eth-clk-sel', 'st,syscon' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm/boot/dts/st/stm32mp157c-ultra-fly-sbc.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clock-names: ['stmmaceth', 'mac-clk-tx', 'mac-clk-rx', 'eth-ck', 'ptp_ref', 'ethstp'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157c-ultra-fly-sbc.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clocks: [[7, 105], [7, 103], [7, 104], [7, 123], [7, 169], [7, 112]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157c-ultra-fly-sbc.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clock-names: ['stmmaceth', 'mac-clk-tx', 'mac-clk-rx', 'eth-ck', 'ptp_ref', 'ethstp'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157c-ultra-fly-sbc.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clocks: [[7, 105], [7, 103], [7, 104], [7, 123], [7, 169], [7, 112]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157c-ultra-fly-sbc.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): compatible: 'oneOf' conditional failed, one must be fixed:
['st,stm32mp1-dwmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'st,stm32mp1-dwmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157c-ultra-fly-sbc.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): 'resets' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157c-ultra-fly-sbc.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): 'reset-names' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157c-ultra-fly-sbc.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157c-ultra-fly-sbc.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): Unevaluated properties are not allowed ('access-controllers', 'reg-names', 'st,syscon' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
>> arch/arm/boot/dts/st/stm32mp157f-dk2.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clock-names: ['stmmaceth', 'mac-clk-tx', 'mac-clk-rx', 'eth-ck', 'ptp_ref', 'ethstp'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157f-dk2.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clocks: [[8, 105], [8, 103], [8, 104], [8, 123], [8, 169], [8, 112]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157f-dk2.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clock-names: ['stmmaceth', 'mac-clk-tx', 'mac-clk-rx', 'eth-ck', 'ptp_ref', 'ethstp'] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157f-dk2.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): clocks: [[8, 105], [8, 103], [8, 104], [8, 123], [8, 169], [8, 112]] is too long
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157f-dk2.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): compatible: 'oneOf' conditional failed, one must be fixed:
['st,stm32mp1-dwmac', 'snps,dwmac-4.20a'] is too long
'allwinner,sun8i-a83t-emac' was expected
'allwinner,sun8i-h3-emac' was expected
'allwinner,sun8i-r40-gmac' was expected
'allwinner,sun8i-v3s-emac' was expected
'allwinner,sun50i-a64-emac' was expected
'st,stm32mp1-dwmac' is not one of ['allwinner,sun20i-d1-emac', 'allwinner,sun50i-a100-emac', 'allwinner,sun50i-h6-emac', 'allwinner,sun50i-h616-emac0', 'allwinner,sun55i-a523-gmac0']
'allwinner,sun55i-a523-gmac200' was expected
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157f-dk2.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): 'resets' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157f-dk2.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): 'reset-names' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157f-dk2.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): 'syscon' is a required property
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
>> arch/arm/boot/dts/st/stm32mp157f-dk2.dtb: ethernet@5800a000 (st,stm32mp1-dwmac): Unevaluated properties are not allowed ('access-controllers', 'reg-names', 'st,syscon' were unexpected)
from schema $id: http://devicetree.org/schemas/net/allwinner,sun8i-a83t-emac.yaml#
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2025-08-24 6:41 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-08-16 8:56 [PATCH net-next v2 01/10] dt-bindings: net: sun8i-emac: Add A523 GMAC200 compatible kernel test robot
-- strict thread matches above, loose matches on Subject: below --
2025-08-24 6:40 kernel test robot
2025-08-14 12:03 kernel test robot
2025-08-13 14:55 [PATCH net-next v2 00/10] net: stmmac: Add support for Allwinner A523 GMAC200 Chen-Yu Tsai
2025-08-13 14:55 ` [PATCH net-next v2 01/10] dt-bindings: net: sun8i-emac: Add A523 GMAC200 compatible Chen-Yu Tsai
2025-08-13 16:40 ` Rob Herring (Arm)
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.