Am Mon, Nov 28, 2022 at 12:22:30AM +0100 schrieb Patrick Wildt:
> Am Fri, Nov 25, 2022 at 12:52:24AM +0000 schrieb Peter Stuge:
> > Jan Stary wrote:
> > > Here is the cpsw problem:
> > > 
> > > -cpsw0 at omsysc46: version 1.12 (0), address 90:59:af:82:2e:7e
> > > +cpsw0 at omsysc46: version 1.12 (0), address 00:00:00:00:00:00
> > 
> > I confirm this on beaglebone black but I'm not sure it's actually a
> > dtb bug, more on that below.
> > 
> > I could anyway DHCP and ping with great success with the zero address.
> > 
> > 
> > > > I reverted the change that switches from the 'old' cpsw switch driver
> > > > model to the 'new' one.  This should allow is to update the dtbs.
> > > 
> > > I don't know what the old/new model is,
> > 
> > I too am a bit confused, Patrick can you please clarify 'old' and 'new'?
> > 
> > 
> > Does it have to do with these two sibling fragments?
> > 
> > ethernet@0 {
> >     compatible = "ti,am335x-cpsw", "ti,cpsw";
> > 
> > switch@0 {
> >     compatible = "ti,am335x-cpsw-switch", "ti,cpsw-switch";
> > 
> > (Only the former is (currently) matched by OpenBSD if_cpsw.c.)
> > 
> 
> Yup.  Apparently the Linux device trees have both, and a commit in Linux
> 5.15 switched the beaglebone from the one representation style to the
> other.
> 
> > 
> > > but the version in this dtb breaks my bbb.
> > 
> > In a way it may be making things more correct, just not yet complete.
> 
> Eh, well yes and no.  If it causes a regression because our drivers
> aren't expecting the changes in the .dts then it's a question of "does
> anyone actually adjust our drivers?".  I don't have the machine, so
> instead of re-writing cpsw(4) to fit the new-style I'd rather have a
> small revert that makes OpenBSD continue to work on the machine.
> 
> > For one, both the dtb from Nov 1 snapshot miniroot-am335x-72.img and
> > Patrick's dtb have mac-address = [00 00 00 00 00 00]; for both slaves
> > (= PHYs). (Though I don't believe that this value is ever used.)
> > 
> > Working on the cpsw driver I was silently wondering where the nonzero
> > MAC on my beaglebone black comes from and I still don't know the answer.
> > 
> 
> Either local-mac-address or from hardware registers.  For cpsw(4) it's
> local-mac-address.  U-Boot configures those on bootup.  Usually there
> needs to be a /aliases/ethernet0 or so pointing to the correct node for
> U-Boot to set it correctly.  It's possible that this changes as well.
> I will have a look.

And that is exactly what happened, this should be reverted as well:

-               ethernet0 = &cpsw_emac0;
-               ethernet1 = &cpsw_emac1;
+               ethernet0 = &cpsw_port1;
+               ethernet1 = &cpsw_port2;

Following diff changes that, and also reverts the changes for
am335x-evm, am335x-evmsk and am335x-icev2, which are also included
in our miniroots.

Can you give this a shot?

I updated the dtb package that I uploaded and sent you the link
for recently.

Cheers,
Patrick

diff --git a/sysutils/dtb/Makefile b/sysutils/dtb/Makefile
index 23accca5c62..674663b3c47 100644
--- a/sysutils/dtb/Makefile
+++ b/sysutils/dtb/Makefile
@@ -1,9 +1,7 @@
 ONLY_FOR_ARCHS=        ${GCC4_ARCHS} ${CLANG_ARCHS}
 
 COMMENT=       Device Tree Blobs
-# 5.15 breaks cpsw(4) on bbb
-VERSION=       5.14
-REVISION=      1
+VERSION=       6.0.8
 
 # XXX Updating this port has a high chance of breaking drivers as breaking
 # XXX changes are frequently made to device trees in linux. See commit log
@@ -17,7 +15,7 @@ HOMEPAGE=     https://www.devicetree.org
 # dual GPL/BSD
 PERMIT_PACKAGE=        Yes
 
-MASTER_SITES=  https://cdn.kernel.org/pub/linux/kernel/v5.x/
+MASTER_SITES=  https://cdn.kernel.org/pub/linux/kernel/v6.x/
 EXTRACT_SUFX=  .tar.xz
 #MASTER_SITES= https://git.kernel.org/torvalds/t/
 PKG_ARCH=      *
diff --git a/sysutils/dtb/distinfo b/sysutils/dtb/distinfo
index 2a1c1224b86..269f5365e57 100644
--- a/sysutils/dtb/distinfo
+++ b/sysutils/dtb/distinfo
@@ -1,2 +1,2 @@
-SHA256 (linux-5.14.tar.xz) = fgaLXg0mpisQ5TILJdzldYjLvG94HAkEQhOMnJwycbI=
-SIZE (linux-5.14.tar.xz) = 120669872
+SHA256 (linux-6.0.8.tar.xz) = DeT4OZaVHG+vmyIl209kWILEexoJGYGQ+XvUbl9folc=
+SIZE (linux-6.0.8.tar.xz) = 133886436
diff --git 
a/sysutils/dtb/patches/patch-arch_arm64_boot_dts_rockchip_rk3328-rock64_dts 
b/sysutils/dtb/patches/patch-arch_arm64_boot_dts_rockchip_rk3328-rock64_dts
index d4d21ab8799..d341db3426f 100644
--- a/sysutils/dtb/patches/patch-arch_arm64_boot_dts_rockchip_rk3328-rock64_dts
+++ b/sysutils/dtb/patches/patch-arch_arm64_boot_dts_rockchip_rk3328-rock64_dts
@@ -1,8 +1,8 @@
 Index: arch/arm64/boot/dts/rockchip/rk3328-rock64.dts
 --- arch/arm64/boot/dts/rockchip/rk3328-rock64.dts.orig
 +++ arch/arm64/boot/dts/rockchip/rk3328-rock64.dts
-@@ -11,7 +11,7 @@
-       compatible = "pine64,rock64", "rockchip,rk3328";
+@@ -16,7 +16,7 @@
+       };
  
        chosen {
 -              stdout-path = "serial2:1500000n8";
diff --git 
a/sysutils/dtb/patches/patch-arch_arm64_boot_dts_rockchip_rk3399-firefly_dts 
b/sysutils/dtb/patches/patch-arch_arm64_boot_dts_rockchip_rk3399-firefly_dts
index 3f491bca66d..9284f71d631 100644
--- a/sysutils/dtb/patches/patch-arch_arm64_boot_dts_rockchip_rk3399-firefly_dts
+++ b/sysutils/dtb/patches/patch-arch_arm64_boot_dts_rockchip_rk3399-firefly_dts
@@ -1,8 +1,8 @@
 Index: arch/arm64/boot/dts/rockchip/rk3399-firefly.dts
 --- arch/arm64/boot/dts/rockchip/rk3399-firefly.dts.orig
 +++ arch/arm64/boot/dts/rockchip/rk3399-firefly.dts
-@@ -14,7 +14,7 @@
-       compatible = "firefly,firefly-rk3399", "rockchip,rk3399";
+@@ -22,7 +22,7 @@
+       };
  
        chosen {
 -              stdout-path = "serial2:1500000n8";
diff --git 
a/sysutils/dtb/patches/patch-arch_arm64_boot_dts_rockchip_rk3399-nanopi4_dtsi 
b/sysutils/dtb/patches/patch-arch_arm64_boot_dts_rockchip_rk3399-nanopi4_dtsi
index 2ad73484b0b..735c90c8109 100644
--- 
a/sysutils/dtb/patches/patch-arch_arm64_boot_dts_rockchip_rk3399-nanopi4_dtsi
+++ 
b/sysutils/dtb/patches/patch-arch_arm64_boot_dts_rockchip_rk3399-nanopi4_dtsi
@@ -1,9 +1,9 @@
 Index: arch/arm64/boot/dts/rockchip/rk3399-nanopi4.dtsi
 --- arch/arm64/boot/dts/rockchip/rk3399-nanopi4.dtsi.orig
 +++ arch/arm64/boot/dts/rockchip/rk3399-nanopi4.dtsi
-@@ -18,7 +18,7 @@
+@@ -24,7 +24,7 @@
+       };
  
- / {
        chosen {
 -              stdout-path = "serial2:1500000n8";
 +              stdout-path = "serial2:115200n8";
diff --git 
a/sysutils/dtb/patches/patch-arch_arm64_boot_dts_rockchip_rk3399-pinebook-pro_dts
 
b/sysutils/dtb/patches/patch-arch_arm64_boot_dts_rockchip_rk3399-pinebook-pro_dts
index 3126aee73a4..a45b88b43cf 100644
--- 
a/sysutils/dtb/patches/patch-arch_arm64_boot_dts_rockchip_rk3399-pinebook-pro_dts
+++ 
b/sysutils/dtb/patches/patch-arch_arm64_boot_dts_rockchip_rk3399-pinebook-pro_dts
@@ -1,8 +1,8 @@
 Index: arch/arm64/boot/dts/rockchip/rk3399-pinebook-pro.dts
 --- arch/arm64/boot/dts/rockchip/rk3399-pinebook-pro.dts.orig
 +++ arch/arm64/boot/dts/rockchip/rk3399-pinebook-pro.dts
-@@ -19,7 +19,7 @@
-       compatible = "pine64,pinebook-pro", "rockchip,rk3399";
+@@ -26,7 +26,7 @@
+       };
  
        chosen {
 -              stdout-path = "serial2:1500000n8";
diff --git 
a/sysutils/dtb/patches/patch-arch_arm64_boot_dts_rockchip_rk3399-rock-pi-4_dtsi 
b/sysutils/dtb/patches/patch-arch_arm64_boot_dts_rockchip_rk3399-rock-pi-4_dtsi
index 572ede1c981..7b523657210 100644
--- 
a/sysutils/dtb/patches/patch-arch_arm64_boot_dts_rockchip_rk3399-rock-pi-4_dtsi
+++ 
b/sysutils/dtb/patches/patch-arch_arm64_boot_dts_rockchip_rk3399-rock-pi-4_dtsi
@@ -1,9 +1,9 @@
 Index: arch/arm64/boot/dts/rockchip/rk3399-rock-pi-4.dtsi
 --- arch/arm64/boot/dts/rockchip/rk3399-rock-pi-4.dtsi.orig
 +++ arch/arm64/boot/dts/rockchip/rk3399-rock-pi-4.dtsi
-@@ -12,7 +12,7 @@
+@@ -17,7 +17,7 @@
+       };
  
- / {
        chosen {
 -              stdout-path = "serial2:1500000n8";
 +              stdout-path = "serial2:115200n8";
diff --git 
a/sysutils/dtb/patches/patch-arch_arm64_boot_dts_rockchip_rk3399-rockpro64_dtsi 
b/sysutils/dtb/patches/patch-arch_arm64_boot_dts_rockchip_rk3399-rockpro64_dtsi
index 72516716b42..48d9271a461 100644
--- 
a/sysutils/dtb/patches/patch-arch_arm64_boot_dts_rockchip_rk3399-rockpro64_dtsi
+++ 
b/sysutils/dtb/patches/patch-arch_arm64_boot_dts_rockchip_rk3399-rockpro64_dtsi
@@ -1,12 +1,12 @@
 Index: arch/arm64/boot/dts/rockchip/rk3399-rockpro64.dtsi
 --- arch/arm64/boot/dts/rockchip/rk3399-rockpro64.dtsi.orig
 +++ arch/arm64/boot/dts/rockchip/rk3399-rockpro64.dtsi
-@@ -11,7 +11,7 @@
+@@ -17,7 +17,7 @@
+       };
  
- / {
        chosen {
 -              stdout-path = "serial2:1500000n8";
 +              stdout-path = "serial2:115200n8";
        };
  
-       clkin_gmac: external-gmac-clock {
+       /* enable for panel backlight support */
diff --git 
a/sysutils/dtb/patches/patch-arch_arm64_boot_dts_rockchip_rk3399_dtsi 
b/sysutils/dtb/patches/patch-arch_arm64_boot_dts_rockchip_rk3399_dtsi
index 69fc5a772b1..fd328c35f52 100644
--- a/sysutils/dtb/patches/patch-arch_arm64_boot_dts_rockchip_rk3399_dtsi
+++ b/sysutils/dtb/patches/patch-arch_arm64_boot_dts_rockchip_rk3399_dtsi
@@ -1,7 +1,7 @@
 Index: arch/arm64/boot/dts/rockchip/rk3399.dtsi
 --- arch/arm64/boot/dts/rockchip/rk3399.dtsi.orig
 +++ arch/arm64/boot/dts/rockchip/rk3399.dtsi
-@@ -857,6 +857,11 @@
+@@ -894,6 +894,11 @@
                status = "disabled";
        };
  
@@ -11,5 +11,5 @@ Index: arch/arm64/boot/dts/rockchip/rk3399.dtsi
 +      };
 +
        qos_emmc: qos@ffa58000 {
-               compatible = "syscon";
+               compatible = "rockchip,rk3399-qos", "syscon";
                reg = <0x0 0xffa58000 0x0 0x20>;
diff --git 
a/sysutils/dtb/patches/patch-arch_arm_boot_dts_am335x-bone-common_dtsi 
b/sysutils/dtb/patches/patch-arch_arm_boot_dts_am335x-bone-common_dtsi
new file mode 100644
index 00000000000..3b30e2df2b4
--- /dev/null
+++ b/sysutils/dtb/patches/patch-arch_arm_boot_dts_am335x-bone-common_dtsi
@@ -0,0 +1,36 @@
+Index: arch/arm/boot/dts/am335x-bone-common.dtsi
+--- arch/arm/boot/dts/am335x-bone-common.dtsi.orig
++++ arch/arm/boot/dts/am335x-bone-common.dtsi
+@@ -353,27 +353,24 @@
+       };
+ };
+ 
+-&cpsw_port1 {
++&cpsw_emac0 {
+       phy-handle = <&ethphy0>;
+       phy-mode = "mii";
+-      ti,dual-emac-pvid = <1>;
+ };
+ 
+-&cpsw_port2 {
+-      status = "disabled";
+-};
+-
+-&mac_sw {
++&mac {
++      slaves = <1>;
+       pinctrl-names = "default", "sleep";
+       pinctrl-0 = <&cpsw_default>;
+       pinctrl-1 = <&cpsw_sleep>;
+       status = "okay";
+ };
+ 
+-&davinci_mdio_sw {
++&davinci_mdio {
+       pinctrl-names = "default", "sleep";
+       pinctrl-0 = <&davinci_mdio_default>;
+       pinctrl-1 = <&davinci_mdio_sleep>;
++      status = "okay";
+ 
+       ethphy0: ethernet-phy@0 {
+               reg = <0>;
diff --git 
a/sysutils/dtb/patches/patch-arch_arm_boot_dts_am335x-boneblack-wireless_dts 
b/sysutils/dtb/patches/patch-arch_arm_boot_dts_am335x-boneblack-wireless_dts
new file mode 100644
index 00000000000..0d34fb60e86
--- /dev/null
+++ b/sysutils/dtb/patches/patch-arch_arm_boot_dts_am335x-boneblack-wireless_dts
@@ -0,0 +1,12 @@
+Index: arch/arm/boot/dts/am335x-boneblack-wireless.dts
+--- arch/arm/boot/dts/am335x-boneblack-wireless.dts.orig
++++ arch/arm/boot/dts/am335x-boneblack-wireless.dts
+@@ -63,7 +63,7 @@
+       };
+ };
+ 
+-&mac_sw {
++&mac {
+       status = "disabled";
+ };
+ 
diff --git 
a/sysutils/dtb/patches/patch-arch_arm_boot_dts_am335x-bonegreen-wireless_dts 
b/sysutils/dtb/patches/patch-arch_arm_boot_dts_am335x-bonegreen-wireless_dts
new file mode 100644
index 00000000000..6d096a0bd38
--- /dev/null
+++ b/sysutils/dtb/patches/patch-arch_arm_boot_dts_am335x-bonegreen-wireless_dts
@@ -0,0 +1,12 @@
+Index: arch/arm/boot/dts/am335x-bonegreen-wireless.dts
+--- arch/arm/boot/dts/am335x-bonegreen-wireless.dts.orig
++++ arch/arm/boot/dts/am335x-bonegreen-wireless.dts
+@@ -62,7 +62,7 @@
+       };
+ };
+ 
+-&mac_sw {
++&mac {
+       status = "disabled";
+ };
+ 
diff --git a/sysutils/dtb/patches/patch-arch_arm_boot_dts_am335x-evm_dts 
b/sysutils/dtb/patches/patch-arch_arm_boot_dts_am335x-evm_dts
new file mode 100644
index 00000000000..3fb61be7993
--- /dev/null
+++ b/sysutils/dtb/patches/patch-arch_arm_boot_dts_am335x-evm_dts
@@ -0,0 +1,40 @@
+Index: arch/arm/boot/dts/am335x-evm.dts
+--- arch/arm/boot/dts/am335x-evm.dts.orig
++++ arch/arm/boot/dts/am335x-evm.dts
+@@ -682,31 +682,28 @@
+       };
+ };
+ 
+-&mac_sw {
++&mac {
+       pinctrl-names = "default", "sleep";
+       pinctrl-0 = <&cpsw_default>;
+       pinctrl-1 = <&cpsw_sleep>;
+       status = "okay";
++      slaves = <1>;
+ };
+ 
+-&davinci_mdio_sw {
++&davinci_mdio {
+       pinctrl-names = "default", "sleep";
+       pinctrl-0 = <&davinci_mdio_default>;
+       pinctrl-1 = <&davinci_mdio_sleep>;
++      status = "okay";
+ 
+       ethphy0: ethernet-phy@0 {
+               reg = <0>;
+       };
+ };
+ 
+-&cpsw_port1 {
++&cpsw_emac0 {
+       phy-handle = <&ethphy0>;
+       phy-mode = "rgmii-id";
+-      ti,dual-emac-pvid = <1>;
+-};
+-
+-&cpsw_port2 {
+-       status = "disabled";
+ };
+ 
+ &tscadc {
diff --git a/sysutils/dtb/patches/patch-arch_arm_boot_dts_am335x-evmsk_dts 
b/sysutils/dtb/patches/patch-arch_arm_boot_dts_am335x-evmsk_dts
new file mode 100644
index 00000000000..85ddd6dfca8
--- /dev/null
+++ b/sysutils/dtb/patches/patch-arch_arm_boot_dts_am335x-evmsk_dts
@@ -0,0 +1,46 @@
+Index: arch/arm/boot/dts/am335x-evmsk.dts
+--- arch/arm/boot/dts/am335x-evmsk.dts.orig
++++ arch/arm/boot/dts/am335x-evmsk.dts
+@@ -596,17 +596,19 @@
+       };
+ };
+ 
+-&mac_sw {
++&mac {
+       pinctrl-names = "default", "sleep";
+       pinctrl-0 = <&cpsw_default>;
+       pinctrl-1 = <&cpsw_sleep>;
++      dual_emac = <1>;
+       status = "okay";
+ };
+ 
+-&davinci_mdio_sw {
++&davinci_mdio {
+       pinctrl-names = "default", "sleep";
+       pinctrl-0 = <&davinci_mdio_default>;
+       pinctrl-1 = <&davinci_mdio_sleep>;
++      status = "okay";
+ 
+       ethphy0: ethernet-phy@0 {
+               reg = <0>;
+@@ -617,16 +619,16 @@
+       };
+ };
+ 
+-&cpsw_port1 {
++&cpsw_emac0 {
+       phy-handle = <&ethphy0>;
+       phy-mode = "rgmii-id";
+-      ti,dual-emac-pvid = <1>;
++      dual_emac_res_vlan = <1>;
+ };
+ 
+-&cpsw_port2 {
++&cpsw_emac1 {
+       phy-handle = <&ethphy1>;
+       phy-mode = "rgmii-id";
+-      ti,dual-emac-pvid = <2>;
++      dual_emac_res_vlan = <2>;
+ };
+ 
+ &mmc1 {
diff --git a/sysutils/dtb/patches/patch-arch_arm_boot_dts_am335x-icev2_dts 
b/sysutils/dtb/patches/patch-arch_arm_boot_dts_am335x-icev2_dts
new file mode 100644
index 00000000000..c8de6c2e263
--- /dev/null
+++ b/sysutils/dtb/patches/patch-arch_arm_boot_dts_am335x-icev2_dts
@@ -0,0 +1,41 @@
+Index: arch/arm/boot/dts/am335x-icev2.dts
+--- arch/arm/boot/dts/am335x-icev2.dts.orig
++++ arch/arm/boot/dts/am335x-icev2.dts
+@@ -474,29 +474,31 @@
+       };
+ };
+ 
+-&cpsw_port1 {
++&cpsw_emac0 {
+       phy-handle = <&ethphy0>;
+       phy-mode = "rmii";
+-      ti,dual-emac-pvid = <1>;
++      dual_emac_res_vlan = <1>;
+ };
+ 
+-&cpsw_port2 {
++&cpsw_emac1 {
+       phy-handle = <&ethphy1>;
+       phy-mode = "rmii";
+-      ti,dual-emac-pvid = <2>;
++      dual_emac_res_vlan = <2>;
+ };
+ 
+-&mac_sw {
++&mac {
+       pinctrl-names = "default", "sleep";
+       pinctrl-0 = <&cpsw_default>;
+       pinctrl-1 = <&cpsw_sleep>;
+       status = "okay";
++      dual_emac;
+ };
+ 
+-&davinci_mdio_sw {
++&davinci_mdio {
+       pinctrl-names = "default", "sleep";
+       pinctrl-0 = <&davinci_mdio_default>;
+       pinctrl-1 = <&davinci_mdio_sleep>;
++      status = "okay";
+       reset-gpios = <&gpio2 5 GPIO_ACTIVE_LOW>;
+       reset-delay-us = <2>;   /* PHY datasheet states 1uS min */
+ 
diff --git 
a/sysutils/dtb/patches/patch-arch_arm_boot_dts_am335x-sancloud-bbe-common_dtsi 
b/sysutils/dtb/patches/patch-arch_arm_boot_dts_am335x-sancloud-bbe-common_dtsi
new file mode 100644
index 00000000000..ea251f63c88
--- /dev/null
+++ 
b/sysutils/dtb/patches/patch-arch_arm_boot_dts_am335x-sancloud-bbe-common_dtsi
@@ -0,0 +1,55 @@
+Index: arch/arm/boot/dts/am335x-sancloud-bbe-common.dtsi
+--- arch/arm/boot/dts/am335x-sancloud-bbe-common.dtsi.orig
++++ arch/arm/boot/dts/am335x-sancloud-bbe-common.dtsi
+@@ -40,6 +40,22 @@
+               >;
+       };
+ 
++      davinci_mdio_default: davinci_mdio_default {
++              pinctrl-single,pins = <
++                      /* MDIO */
++                      AM33XX_PADCONF(AM335X_PIN_MDIO, PIN_INPUT_PULLUP | 
SLEWCTRL_FAST, MUX_MODE0)
++                      AM33XX_PADCONF(AM335X_PIN_MDC, PIN_OUTPUT_PULLUP, 
MUX_MODE0)
++              >;
++      };
++
++      davinci_mdio_sleep: davinci_mdio_sleep {
++              pinctrl-single,pins = <
++                      /* MDIO reset value */
++                      AM33XX_PADCONF(AM335X_PIN_MDIO, PIN_INPUT_PULLDOWN, 
MUX_MODE7)
++                      AM33XX_PADCONF(AM335X_PIN_MDC, PIN_INPUT_PULLDOWN, 
MUX_MODE7)
++              >;
++      };
++
+       usb_hub_ctrl: usb_hub_ctrl {
+               pinctrl-single,pins = <
+                       AM33XX_PADCONF(AM335X_PIN_RMII1_REF_CLK, 
PIN_OUTPUT_PULLUP, MUX_MODE7)     /* rmii1_refclk.gpio0_29 */
+@@ -47,12 +63,26 @@
+       };
+ };
+ 
+-&mac_sw {
++&mac {
++      pinctrl-names = "default", "sleep";
+       pinctrl-0 = <&cpsw_default>;
+       pinctrl-1 = <&cpsw_sleep>;
++      status = "okay";
+ };
+ 
+-&cpsw_port1 {
++&davinci_mdio {
++      pinctrl-names = "default", "sleep";
++      pinctrl-0 = <&davinci_mdio_default>;
++      pinctrl-1 = <&davinci_mdio_sleep>;
++      status = "okay";
++
++      ethphy0: ethernet-phy@0 {
++              reg = <0>;
++      };
++};
++
++&cpsw_emac0 {
++      phy-handle = <&ethphy0>;
+       phy-mode = "rgmii-id";
+ };
+ 
diff --git a/sysutils/dtb/patches/patch-arch_arm_boot_dts_am33xx_dtsi 
b/sysutils/dtb/patches/patch-arch_arm_boot_dts_am33xx_dtsi
new file mode 100644
index 00000000000..d514367ba55
--- /dev/null
+++ b/sysutils/dtb/patches/patch-arch_arm_boot_dts_am33xx_dtsi
@@ -0,0 +1,14 @@
+Index: arch/arm/boot/dts/am33xx.dtsi
+--- arch/arm/boot/dts/am33xx.dtsi.orig
++++ arch/arm/boot/dts/am33xx.dtsi
+@@ -33,8 +33,8 @@
+               usb1 = &usb1;
+               phy0 = &usb0_phy;
+               phy1 = &usb1_phy;
+-              ethernet0 = &cpsw_port1;
+-              ethernet1 = &cpsw_port2;
++              ethernet0 = &cpsw_emac0;
++              ethernet1 = &cpsw_emac1;
+               spi0 = &spi0;
+               spi1 = &spi1;
+               mmc0 = &mmc1;
diff --git a/sysutils/dtb/pkg/PLIST b/sysutils/dtb/pkg/PLIST
index eb820a0cc16..c7546c1b8eb 100644
--- a/sysutils/dtb/pkg/PLIST
+++ b/sysutils/dtb/pkg/PLIST
@@ -33,6 +33,8 @@ share/dtb/arm/am335x-pepper.dtb
 share/dtb/arm/am335x-phycore-rdk.dtb
 share/dtb/arm/am335x-pocketbeagle.dtb
 share/dtb/arm/am335x-regor-rdk.dtb
+share/dtb/arm/am335x-sancloud-bbe-extended-wifi.dtb
+share/dtb/arm/am335x-sancloud-bbe-lite.dtb
 share/dtb/arm/am335x-sancloud-bbe.dtb
 share/dtb/arm/am335x-sbc-t335.dtb
 share/dtb/arm/am335x-shc.dtb
@@ -70,6 +72,7 @@ share/dtb/arm/arm-realview-pb1176.dtb
 share/dtb/arm/arm-realview-pb11mp.dtb
 share/dtb/arm/arm-realview-pba8.dtb
 share/dtb/arm/arm-realview-pbx-a9.dtb
+share/dtb/arm/armada-370-c200-v2.dtb
 share/dtb/arm/armada-370-db.dtb
 share/dtb/arm/armada-370-dlink-dns327l.dtb
 share/dtb/arm/armada-370-mirabox.dtb
@@ -82,6 +85,7 @@ share/dtb/arm/armada-370-seagate-personal-cloud-2bay.dtb
 share/dtb/arm/armada-370-seagate-personal-cloud.dtb
 share/dtb/arm/armada-370-synology-ds213j.dtb
 share/dtb/arm/armada-375-db.dtb
+share/dtb/arm/armada-381-netgear-gs110emx.dtb
 share/dtb/arm/armada-382-rd-ac3x-48g4x2xl.dtb
 share/dtb/arm/armada-385-atl-x530.dtb
 share/dtb/arm/armada-385-clearfog-gtr-l8.dtb
@@ -127,11 +131,15 @@ share/dtb/arm/aspeed-ast2600-evb-a1.dtb
 share/dtb/arm/aspeed-ast2600-evb.dtb
 share/dtb/arm/aspeed-bmc-amd-ethanolx.dtb
 share/dtb/arm/aspeed-bmc-ampere-mtjade.dtb
-share/dtb/arm/aspeed-bmc-arm-centriq2400-rep.dtb
 share/dtb/arm/aspeed-bmc-arm-stardragon4800-rep2.dtb
 share/dtb/arm/aspeed-bmc-asrock-e3c246d4i.dtb
+share/dtb/arm/aspeed-bmc-asrock-romed8hm3.dtb
 share/dtb/arm/aspeed-bmc-bytedance-g220a.dtb
+share/dtb/arm/aspeed-bmc-facebook-bletchley.dtb
+share/dtb/arm/aspeed-bmc-facebook-cloudripper.dtb
 share/dtb/arm/aspeed-bmc-facebook-cmm.dtb
+share/dtb/arm/aspeed-bmc-facebook-elbert.dtb
+share/dtb/arm/aspeed-bmc-facebook-fuji.dtb
 share/dtb/arm/aspeed-bmc-facebook-galaxy100.dtb
 share/dtb/arm/aspeed-bmc-facebook-minipack.dtb
 share/dtb/arm/aspeed-bmc-facebook-tiogapass.dtb
@@ -145,8 +153,10 @@ share/dtb/arm/aspeed-bmc-ibm-rainier-1s4u.dtb
 share/dtb/arm/aspeed-bmc-ibm-rainier-4u.dtb
 share/dtb/arm/aspeed-bmc-ibm-rainier.dtb
 share/dtb/arm/aspeed-bmc-inspur-fp5280g2.dtb
+share/dtb/arm/aspeed-bmc-inspur-nf5280m6.dtb
 share/dtb/arm/aspeed-bmc-inspur-on5263m5.dtb
 share/dtb/arm/aspeed-bmc-intel-s2600wf.dtb
+share/dtb/arm/aspeed-bmc-inventec-transformers.dtb
 share/dtb/arm/aspeed-bmc-lenovo-hr630.dtb
 share/dtb/arm/aspeed-bmc-lenovo-hr855xg2.dtb
 share/dtb/arm/aspeed-bmc-microsoft-olympus.dtb
@@ -162,8 +172,15 @@ share/dtb/arm/aspeed-bmc-opp-vesnin.dtb
 share/dtb/arm/aspeed-bmc-opp-witherspoon.dtb
 share/dtb/arm/aspeed-bmc-opp-zaius.dtb
 share/dtb/arm/aspeed-bmc-portwell-neptune.dtb
+share/dtb/arm/aspeed-bmc-qcom-dc-scm-v1.dtb
 share/dtb/arm/aspeed-bmc-quanta-q71l.dtb
+share/dtb/arm/aspeed-bmc-quanta-s6q.dtb
 share/dtb/arm/aspeed-bmc-supermicro-x11spi.dtb
+share/dtb/arm/aspeed-bmc-tyan-s7106.dtb
+share/dtb/arm/aspeed-bmc-tyan-s8036.dtb
+share/dtb/arm/aspeed-bmc-vegman-n110.dtb
+share/dtb/arm/aspeed-bmc-vegman-rx20.dtb
+share/dtb/arm/aspeed-bmc-vegman-sx20.dtb
 share/dtb/arm/at91-ariag25.dtb
 share/dtb/arm/at91-ariettag25.dtb
 share/dtb/arm/at91-cosino_mega2560.dtb
@@ -176,7 +193,9 @@ share/dtb/arm/at91-kizbox3-hs.dtb
 share/dtb/arm/at91-kizboxmini-base.dtb
 share/dtb/arm/at91-kizboxmini-mb.dtb
 share/dtb/arm/at91-kizboxmini-rd.dtb
+share/dtb/arm/at91-lmu5000.dtb
 share/dtb/arm/at91-nattis-2-natte-2.dtb
+share/dtb/arm/at91-q5xr5.dtb
 share/dtb/arm/at91-qil_a9260.dtb
 share/dtb/arm/at91-sam9_l9260.dtb
 share/dtb/arm/at91-sam9x60ek.dtb
@@ -185,10 +204,12 @@ share/dtb/arm/at91-sama5d27_wlsom1_ek.dtb
 share/dtb/arm/at91-sama5d2_icp.dtb
 share/dtb/arm/at91-sama5d2_ptc_ek.dtb
 share/dtb/arm/at91-sama5d2_xplained.dtb
+share/dtb/arm/at91-sama5d3_ksz9477_evb.dtb
 share/dtb/arm/at91-sama5d3_xplained.dtb
 share/dtb/arm/at91-sama5d4_ma5d4evk.dtb
 share/dtb/arm/at91-sama5d4_xplained.dtb
 share/dtb/arm/at91-sama5d4ek.dtb
+share/dtb/arm/at91-sama7g5ek.dtb
 share/dtb/arm/at91-smartkiz.dtb
 share/dtb/arm/at91-tse850-3.dtb
 share/dtb/arm/at91-vinco.dtb
@@ -214,6 +235,7 @@ share/dtb/arm/bcm21664-garnet.dtb
 share/dtb/arm/bcm23550-sparrow.dtb
 share/dtb/arm/bcm2711-rpi-4-b.dtb
 share/dtb/arm/bcm2711-rpi-400.dtb
+share/dtb/arm/bcm2711-rpi-cm4-io.dtb
 share/dtb/arm/bcm28155-ap.dtb
 share/dtb/arm/bcm2835-rpi-a-plus.dtb
 share/dtb/arm/bcm2835-rpi-a.dtb
@@ -228,8 +250,11 @@ share/dtb/arm/bcm2837-rpi-3-a-plus.dtb
 share/dtb/arm/bcm2837-rpi-3-b-plus.dtb
 share/dtb/arm/bcm2837-rpi-3-b.dtb
 share/dtb/arm/bcm2837-rpi-cm3-io3.dtb
+share/dtb/arm/bcm2837-rpi-zero-2-w.dtb
 share/dtb/arm/bcm4708-asus-rt-ac56u.dtb
 share/dtb/arm/bcm4708-asus-rt-ac68u.dtb
+share/dtb/arm/bcm4708-buffalo-wzr-1166dhp.dtb
+share/dtb/arm/bcm4708-buffalo-wzr-1166dhp2.dtb
 share/dtb/arm/bcm4708-buffalo-wzr-1750dhp.dtb
 share/dtb/arm/bcm4708-linksys-ea6300-v1.dtb
 share/dtb/arm/bcm4708-linksys-ea6500-v2.dtb
@@ -250,6 +275,7 @@ share/dtb/arm/bcm4709-linksys-ea9200.dtb
 share/dtb/arm/bcm4709-netgear-r7000.dtb
 share/dtb/arm/bcm4709-netgear-r8000.dtb
 share/dtb/arm/bcm4709-tplink-archer-c9-v1.dtb
+share/dtb/arm/bcm47094-asus-rt-ac88u.dtb
 share/dtb/arm/bcm47094-dlink-dir-885l.dtb
 share/dtb/arm/bcm47094-linksys-panamera.dtb
 share/dtb/arm/bcm47094-luxul-abr-4500.dtb
@@ -263,6 +289,7 @@ share/dtb/arm/bcm47094-phicomm-k3.dtb
 share/dtb/arm/bcm47189-luxul-xap-1440.dtb
 share/dtb/arm/bcm47189-luxul-xap-810.dtb
 share/dtb/arm/bcm47189-tenda-ac9.dtb
+share/dtb/arm/bcm53015-meraki-mr26.dtb
 share/dtb/arm/bcm53016-meraki-mr32.dtb
 share/dtb/arm/bcm53340-ubnt-unifi-switch8.dtb
 share/dtb/arm/bcm7445-bcm97445svmb.dtb
@@ -271,6 +298,7 @@ share/dtb/arm/bcm911360k.dtb
 share/dtb/arm/bcm94708.dtb
 share/dtb/arm/bcm94709.dtb
 share/dtb/arm/bcm947189acdbmr.dtb
+share/dtb/arm/bcm947622.dtb
 share/dtb/arm/bcm953012er.dtb
 share/dtb/arm/bcm953012hr.dtb
 share/dtb/arm/bcm953012k.dtb
@@ -281,9 +309,22 @@ share/dtb/arm/bcm958525er.dtb
 share/dtb/arm/bcm958525xmc.dtb
 share/dtb/arm/bcm958622hr.dtb
 share/dtb/arm/bcm958623hr.dtb
+share/dtb/arm/bcm958625-meraki-mx64-a0.dtb
+share/dtb/arm/bcm958625-meraki-mx64.dtb
+share/dtb/arm/bcm958625-meraki-mx64w-a0.dtb
+share/dtb/arm/bcm958625-meraki-mx64w.dtb
+share/dtb/arm/bcm958625-meraki-mx65.dtb
+share/dtb/arm/bcm958625-meraki-mx65w.dtb
 share/dtb/arm/bcm958625hr.dtb
 share/dtb/arm/bcm958625k.dtb
+share/dtb/arm/bcm963138.dtb
 share/dtb/arm/bcm963138dvt.dtb
+share/dtb/arm/bcm963148.dtb
+share/dtb/arm/bcm963178.dtb
+share/dtb/arm/bcm96756.dtb
+share/dtb/arm/bcm96846.dtb
+share/dtb/arm/bcm96855.dtb
+share/dtb/arm/bcm96878.dtb
 share/dtb/arm/bcm988312hr.dtb
 share/dtb/arm/berlin2-sony-nsz-gs7.dtb
 share/dtb/arm/berlin2cd-google-chromecast.dtb
@@ -311,6 +352,7 @@ share/dtb/arm/dra72-evm.dtb
 share/dtb/arm/dra76-evm.dtb
 share/dtb/arm/ecx-2000.dtb
 share/dtb/arm/emev2-kzm9d.dtb
+share/dtb/arm/en7523-evb.dtb
 share/dtb/arm/ep7211-edb7211.dtb
 share/dtb/arm/ethernut5.dtb
 share/dtb/arm/evk-pro3.dtb
@@ -343,6 +385,8 @@ share/dtb/arm/exynos5260-xyref5260.dtb
 share/dtb/arm/exynos5410-odroidxu.dtb
 share/dtb/arm/exynos5410-smdk5410.dtb
 share/dtb/arm/exynos5420-arndale-octa.dtb
+share/dtb/arm/exynos5420-chagall-wifi.dtb
+share/dtb/arm/exynos5420-klimt-wifi.dtb
 share/dtb/arm/exynos5420-peach-pit.dtb
 share/dtb/arm/exynos5420-smdk5420.dtb
 share/dtb/arm/exynos5422-odroidhc1.dtb
@@ -353,9 +397,11 @@ share/dtb/arm/exynos5800-peach-pi.dtb
 share/dtb/arm/gemini-dlink-dir-685.dtb
 share/dtb/arm/gemini-dlink-dns-313.dtb
 share/dtb/arm/gemini-nas4220b.dtb
+share/dtb/arm/gemini-ns2502.dtb
 share/dtb/arm/gemini-rut1xx.dtb
 share/dtb/arm/gemini-sl93512r.dtb
 share/dtb/arm/gemini-sq201.dtb
+share/dtb/arm/gemini-ssi1328.dtb
 share/dtb/arm/gemini-wbd111.dtb
 share/dtb/arm/gemini-wbd222.dtb
 share/dtb/arm/hi3519-demb.dtb
@@ -364,6 +410,7 @@ share/dtb/arm/highbank.dtb
 share/dtb/arm/hip01-ca9x2.dtb
 share/dtb/arm/hip04-d01.dtb
 share/dtb/arm/hisi-x5hd2-dkb.dtb
+share/dtb/arm/hpe-bmc-dl360gen10.dtb
 share/dtb/arm/imx1-ads.dtb
 share/dtb/arm/imx1-apf9328.dtb
 share/dtb/arm/imx23-evk.dtb
@@ -448,12 +495,15 @@ share/dtb/arm/imx6dl-b105v2.dtb
 share/dtb/arm/imx6dl-b125pv2.dtb
 share/dtb/arm/imx6dl-b125v2.dtb
 share/dtb/arm/imx6dl-b155v2.dtb
+share/dtb/arm/imx6dl-colibri-aster.dtb
 share/dtb/arm/imx6dl-colibri-eval-v3.dtb
-share/dtb/arm/imx6dl-colibri-v1_1-eval-v3.dtb
+share/dtb/arm/imx6dl-colibri-iris-v2.dtb
+share/dtb/arm/imx6dl-colibri-iris.dtb
 share/dtb/arm/imx6dl-cubox-i-emmc-som-v15.dtb
 share/dtb/arm/imx6dl-cubox-i-som-v15.dtb
 share/dtb/arm/imx6dl-cubox-i.dtb
 share/dtb/arm/imx6dl-dfi-fs700-m60.dtb
+share/dtb/arm/imx6dl-dhcom-picoitx.dtb
 share/dtb/arm/imx6dl-eckelmann-ci4x10.dtb
 share/dtb/arm/imx6dl-emcon-avari.dtb
 share/dtb/arm/imx6dl-gw51xx.dtb
@@ -481,6 +531,8 @@ share/dtb/arm/imx6dl-icore-rqs.dtb
 share/dtb/arm/imx6dl-icore.dtb
 share/dtb/arm/imx6dl-lanmcu.dtb
 share/dtb/arm/imx6dl-mamoj.dtb
+share/dtb/arm/imx6dl-mba6a.dtb
+share/dtb/arm/imx6dl-mba6b.dtb
 share/dtb/arm/imx6dl-nit6xlite.dtb
 share/dtb/arm/imx6dl-nitrogen6x.dtb
 share/dtb/arm/imx6dl-phytec-mira-rdk-nand.dtb
@@ -500,6 +552,9 @@ share/dtb/arm/imx6dl-sabreauto.dtb
 share/dtb/arm/imx6dl-sabrelite.dtb
 share/dtb/arm/imx6dl-sabresd.dtb
 share/dtb/arm/imx6dl-savageboard.dtb
+share/dtb/arm/imx6dl-skov-revc-lt2.dtb
+share/dtb/arm/imx6dl-skov-revc-lt6.dtb
+share/dtb/arm/imx6dl-solidsense.dtb
 share/dtb/arm/imx6dl-ts4900.dtb
 share/dtb/arm/imx6dl-ts7970.dtb
 share/dtb/arm/imx6dl-tx6dl-comtft.dtb
@@ -525,12 +580,14 @@ share/dtb/arm/imx6dl-yapp4-orion.dtb
 share/dtb/arm/imx6dl-yapp4-ursa.dtb
 share/dtb/arm/imx6q-apalis-eval.dtb
 share/dtb/arm/imx6q-apalis-ixora-v1.1.dtb
+share/dtb/arm/imx6q-apalis-ixora-v1.2.dtb
 share/dtb/arm/imx6q-apalis-ixora.dtb
 share/dtb/arm/imx6q-apf6dev.dtb
 share/dtb/arm/imx6q-arm2.dtb
 share/dtb/arm/imx6q-b450v3.dtb
 share/dtb/arm/imx6q-b650v3.dtb
 share/dtb/arm/imx6q-b850v3.dtb
+share/dtb/arm/imx6q-bosch-acc.dtb
 share/dtb/arm/imx6q-cm-fx6.dtb
 share/dtb/arm/imx6q-cubox-i-emmc-som-v15.dtb
 share/dtb/arm/imx6q-cubox-i-som-v15.dtb
@@ -574,6 +631,8 @@ share/dtb/arm/imx6q-icore.dtb
 share/dtb/arm/imx6q-kp-tpc.dtb
 share/dtb/arm/imx6q-logicpd.dtb
 share/dtb/arm/imx6q-marsboard.dtb
+share/dtb/arm/imx6q-mba6a.dtb
+share/dtb/arm/imx6q-mba6b.dtb
 share/dtb/arm/imx6q-mccmon6.dtb
 share/dtb/arm/imx6q-nitrogen6_max.dtb
 share/dtb/arm/imx6q-nitrogen6_som2.dtb
@@ -595,6 +654,10 @@ share/dtb/arm/imx6q-sabrelite.dtb
 share/dtb/arm/imx6q-sabresd.dtb
 share/dtb/arm/imx6q-savageboard.dtb
 share/dtb/arm/imx6q-sbc6x.dtb
+share/dtb/arm/imx6q-skov-revc-lt2.dtb
+share/dtb/arm/imx6q-skov-revc-lt6.dtb
+share/dtb/arm/imx6q-skov-reve-mi1010ait-1cp1.dtb
+share/dtb/arm/imx6q-solidsense.dtb
 share/dtb/arm/imx6q-tbs2910.dtb
 share/dtb/arm/imx6q-ts4900.dtb
 share/dtb/arm/imx6q-ts7970.dtb
@@ -614,7 +677,9 @@ share/dtb/arm/imx6q-vicut1.dtb
 share/dtb/arm/imx6q-wandboard-revb1.dtb
 share/dtb/arm/imx6q-wandboard-revd1.dtb
 share/dtb/arm/imx6q-wandboard.dtb
+share/dtb/arm/imx6q-yapp4-crux.dtb
 share/dtb/arm/imx6q-zii-rdu2.dtb
+share/dtb/arm/imx6qp-mba6b.dtb
 share/dtb/arm/imx6qp-nitrogen6_max.dtb
 share/dtb/arm/imx6qp-nitrogen6_som2.dtb
 share/dtb/arm/imx6qp-phytec-mira-rdk-nand.dtb
@@ -627,13 +692,17 @@ share/dtb/arm/imx6qp-tx6qp-8137-mb7.dtb
 share/dtb/arm/imx6qp-tx6qp-8137.dtb
 share/dtb/arm/imx6qp-vicutp.dtb
 share/dtb/arm/imx6qp-wandboard-revd1.dtb
+share/dtb/arm/imx6qp-yapp4-crux-plus.dtb
 share/dtb/arm/imx6qp-zii-rdu2.dtb
+share/dtb/arm/imx6s-dhcom-drc02.dtb
 share/dtb/arm/imx6sl-evk.dtb
 share/dtb/arm/imx6sl-tolino-shine2hd.dtb
 share/dtb/arm/imx6sl-tolino-shine3.dtb
+share/dtb/arm/imx6sl-tolino-vision5.dtb
 share/dtb/arm/imx6sl-warp.dtb
 share/dtb/arm/imx6sll-evk.dtb
 share/dtb/arm/imx6sll-kobo-clarahd.dtb
+share/dtb/arm/imx6sll-kobo-librah2o.dtb
 share/dtb/arm/imx6sx-nitrogen6sx.dtb
 share/dtb/arm/imx6sx-sabreauto.dtb
 share/dtb/arm/imx6sx-sdb-mqs.dtb
@@ -661,24 +730,47 @@ share/dtb/arm/imx6ul-pico-dwarf.dtb
 share/dtb/arm/imx6ul-pico-hobbit.dtb
 share/dtb/arm/imx6ul-pico-pi.dtb
 share/dtb/arm/imx6ul-prti6g.dtb
+share/dtb/arm/imx6ul-tqma6ul1-mba6ulx.dtb
+share/dtb/arm/imx6ul-tqma6ul2-mba6ulx.dtb
+share/dtb/arm/imx6ul-tqma6ul2l-mba6ulx.dtb
 share/dtb/arm/imx6ul-tx6ul-0010.dtb
 share/dtb/arm/imx6ul-tx6ul-0011.dtb
 share/dtb/arm/imx6ul-tx6ul-mainboard.dtb
 share/dtb/arm/imx6ull-14x14-evk.dtb
+share/dtb/arm/imx6ull-colibri-aster.dtb
+share/dtb/arm/imx6ull-colibri-emmc-aster.dtb
+share/dtb/arm/imx6ull-colibri-emmc-eval-v3.dtb
+share/dtb/arm/imx6ull-colibri-emmc-iris-v2.dtb
+share/dtb/arm/imx6ull-colibri-emmc-iris.dtb
 share/dtb/arm/imx6ull-colibri-eval-v3.dtb
+share/dtb/arm/imx6ull-colibri-iris-v2.dtb
+share/dtb/arm/imx6ull-colibri-iris.dtb
+share/dtb/arm/imx6ull-colibri-wifi-aster.dtb
 share/dtb/arm/imx6ull-colibri-wifi-eval-v3.dtb
+share/dtb/arm/imx6ull-colibri-wifi-iris-v2.dtb
+share/dtb/arm/imx6ull-colibri-wifi-iris.dtb
+share/dtb/arm/imx6ull-jozacp.dtb
 share/dtb/arm/imx6ull-kontron-n6411-s.dtb
 share/dtb/arm/imx6ull-myir-mys-6ulx-eval.dtb
 share/dtb/arm/imx6ull-opos6uldev.dtb
 share/dtb/arm/imx6ull-phytec-segin-ff-rdk-emmc.dtb
 share/dtb/arm/imx6ull-phytec-segin-ff-rdk-nand.dtb
 share/dtb/arm/imx6ull-phytec-segin-lc-rdk-nand.dtb
+share/dtb/arm/imx6ull-phytec-tauri-emmc.dtb
+share/dtb/arm/imx6ull-phytec-tauri-nand.dtb
+share/dtb/arm/imx6ull-tqma6ull2-mba6ulx.dtb
+share/dtb/arm/imx6ull-tqma6ull2l-mba6ulx.dtb
 share/dtb/arm/imx6ulz-14x14-evk.dtb
+share/dtb/arm/imx6ulz-bsh-smm-m2.dtb
 share/dtb/arm/imx7d-cl-som-imx7.dtb
 share/dtb/arm/imx7d-colibri-aster.dtb
 share/dtb/arm/imx7d-colibri-emmc-aster.dtb
 share/dtb/arm/imx7d-colibri-emmc-eval-v3.dtb
+share/dtb/arm/imx7d-colibri-emmc-iris-v2.dtb
+share/dtb/arm/imx7d-colibri-emmc-iris.dtb
 share/dtb/arm/imx7d-colibri-eval-v3.dtb
+share/dtb/arm/imx7d-colibri-iris-v2.dtb
+share/dtb/arm/imx7d-colibri-iris.dtb
 share/dtb/arm/imx7d-flex-concentrator-mfg.dtb
 share/dtb/arm/imx7d-flex-concentrator.dtb
 share/dtb/arm/imx7d-mba7.dtb
@@ -693,20 +785,38 @@ share/dtb/arm/imx7d-sbc-imx7.dtb
 share/dtb/arm/imx7d-sdb-reva.dtb
 share/dtb/arm/imx7d-sdb-sht11.dtb
 share/dtb/arm/imx7d-sdb.dtb
+share/dtb/arm/imx7d-smegw01.dtb
 share/dtb/arm/imx7d-zii-rmu2.dtb
 share/dtb/arm/imx7d-zii-rpu2.dtb
 share/dtb/arm/imx7s-colibri-aster.dtb
 share/dtb/arm/imx7s-colibri-eval-v3.dtb
+share/dtb/arm/imx7s-colibri-iris-v2.dtb
+share/dtb/arm/imx7s-colibri-iris.dtb
 share/dtb/arm/imx7s-mba7.dtb
 share/dtb/arm/imx7s-warp.dtb
 share/dtb/arm/imx7ulp-com.dtb
 share/dtb/arm/imx7ulp-evk.dtb
+share/dtb/arm/imxrt1050-evk.dtb
 share/dtb/arm/integratorap-im-pd1.dtb
 share/dtb/arm/integratorap.dtb
 share/dtb/arm/integratorcp.dtb
+share/dtb/arm/intel-ixp42x-adi-coyote.dtb
+share/dtb/arm/intel-ixp42x-arcom-vulcan.dtb
+share/dtb/arm/intel-ixp42x-dlink-dsm-g600.dtb
+share/dtb/arm/intel-ixp42x-freecom-fsg-3.dtb
+share/dtb/arm/intel-ixp42x-gateway-7001.dtb
+share/dtb/arm/intel-ixp42x-gateworks-gw2348.dtb
+share/dtb/arm/intel-ixp42x-goramo-multilink.dtb
+share/dtb/arm/intel-ixp42x-iomega-nas100d.dtb
+share/dtb/arm/intel-ixp42x-ixdp425.dtb
+share/dtb/arm/intel-ixp42x-ixdpg425.dtb
 share/dtb/arm/intel-ixp42x-linksys-nslu2.dtb
+share/dtb/arm/intel-ixp42x-linksys-wrv54g.dtb
+share/dtb/arm/intel-ixp42x-netgear-wg302v1.dtb
 share/dtb/arm/intel-ixp42x-welltech-epbx100.dtb
 share/dtb/arm/intel-ixp43x-gateworks-gw2358.dtb
+share/dtb/arm/intel-ixp43x-kixrp435.dtb
+share/dtb/arm/intel-ixp46x-ixdp465.dtb
 share/dtb/arm/keystone-k2e-evm.dtb
 share/dtb/arm/keystone-k2g-evm.dtb
 share/dtb/arm/keystone-k2g-ice.dtb
@@ -714,6 +824,7 @@ share/dtb/arm/keystone-k2hk-evm.dtb
 share/dtb/arm/keystone-k2l-evm.dtb
 share/dtb/arm/kirkwood-b3.dtb
 share/dtb/arm/kirkwood-blackarmor-nas220.dtb
+share/dtb/arm/kirkwood-c200-v1.dtb
 share/dtb/arm/kirkwood-cloudbox.dtb
 share/dtb/arm/kirkwood-d2net.dtb
 share/dtb/arm/kirkwood-db-88f6281.dtb
@@ -790,6 +901,10 @@ share/dtb/arm/kirkwood-ts219-6281.dtb
 share/dtb/arm/kirkwood-ts219-6282.dtb
 share/dtb/arm/kirkwood-ts419-6281.dtb
 share/dtb/arm/kirkwood-ts419-6282.dtb
+share/dtb/arm/lan966x-kontron-kswitch-d10-mmt-6g-2gs.dtb
+share/dtb/arm/lan966x-kontron-kswitch-d10-mmt-8g.dtb
+share/dtb/arm/lan966x-pcb8291.dtb
+share/dtb/arm/lan966x-pcb8309.dtb
 share/dtb/arm/logicpd-som-lv-35xx-devkit.dtb
 share/dtb/arm/logicpd-som-lv-37xx-devkit.dtb
 share/dtb/arm/logicpd-torpedo-35xx-devkit.dtb
@@ -801,6 +916,7 @@ share/dtb/arm/lpc4337-ciaa.dtb
 share/dtb/arm/lpc4350-hitex-eval.dtb
 share/dtb/arm/lpc4357-ea4357-devkit.dtb
 share/dtb/arm/lpc4357-myd-lpc4357.dtb
+share/dtb/arm/ls1021a-iot.dtb
 share/dtb/arm/ls1021a-moxa-uc-8410a.dtb
 share/dtb/arm/ls1021a-qds.dtb
 share/dtb/arm/ls1021a-tsn.dtb
@@ -820,13 +936,18 @@ share/dtb/arm/mpa1600.dtb
 share/dtb/arm/mps2-an385.dtb
 share/dtb/arm/mps2-an399.dtb
 share/dtb/arm/mstar-infinity-msc313-breadbee_crust.dtb
+share/dtb/arm/mstar-infinity2m-ssd202d-100ask-dongshanpione.dtb
+share/dtb/arm/mstar-infinity2m-ssd202d-miyoo-mini.dtb
 share/dtb/arm/mstar-infinity2m-ssd202d-ssd201htv2.dtb
 share/dtb/arm/mstar-infinity2m-ssd202d-unitv2.dtb
+share/dtb/arm/mstar-infinity2m-ssd202d-wirelesstag-ido-sbc2d06-v1b-22w.dtb
 share/dtb/arm/mstar-infinity3-msc313e-breadbee.dtb
 share/dtb/arm/mstar-mercury5-ssc8336n-midrived08.dtb
 share/dtb/arm/mt2701-evb.dtb
 share/dtb/arm/mt6580-evbp1.dtb
+share/dtb/arm/mt6582-prestigio-pmt5008-3g.dtb
 share/dtb/arm/mt6589-aquaris5.dtb
+share/dtb/arm/mt6589-fairphone-fp1.dtb
 share/dtb/arm/mt6592-evb.dtb
 share/dtb/arm/mt7623a-rfb-emmc.dtb
 share/dtb/arm/mt7623a-rfb-nand.dtb
@@ -849,6 +970,7 @@ share/dtb/arm/omap2420-n800.dtb
 share/dtb/arm/omap2420-n810-wimax.dtb
 share/dtb/arm/omap2420-n810.dtb
 share/dtb/arm/omap2430-sdp.dtb
+share/dtb/arm/omap3-beagle-ab4.dtb
 share/dtb/arm/omap3-beagle-xm-ab.dtb
 share/dtb/arm/omap3-beagle-xm.dtb
 share/dtb/arm/omap3-beagle.dtb
@@ -942,11 +1064,14 @@ share/dtb/arm/pxa300-raumfeld-speaker-m.dtb
 share/dtb/arm/pxa300-raumfeld-speaker-one.dtb
 share/dtb/arm/pxa300-raumfeld-speaker-s.dtb
 share/dtb/arm/pxa910-dkb.dtb
+share/dtb/arm/qcom-apq8016-sbc.dtb
+share/dtb/arm/qcom-apq8026-asus-sparrow.dtb
+share/dtb/arm/qcom-apq8026-lg-lenok.dtb
 share/dtb/arm/qcom-apq8060-dragonboard.dtb
 share/dtb/arm/qcom-apq8064-asus-nexus7-flo.dtb
 share/dtb/arm/qcom-apq8064-cm-qs600.dtb
 share/dtb/arm/qcom-apq8064-ifc6410.dtb
-share/dtb/arm/qcom-apq8064-sony-xperia-yuga.dtb
+share/dtb/arm/qcom-apq8064-sony-xperia-lagan-yuga.dtb
 share/dtb/arm/qcom-apq8074-dragonboard.dtb
 share/dtb/arm/qcom-apq8084-ifc6540.dtb
 share/dtb/arm/qcom-apq8084-mtp.dtb
@@ -961,17 +1086,20 @@ share/dtb/arm/qcom-ipq4019-ap.dk07.1-c2.dtb
 share/dtb/arm/qcom-ipq8064-ap148.dtb
 share/dtb/arm/qcom-ipq8064-rb3011.dtb
 share/dtb/arm/qcom-mdm9615-wp8548-mangoh-green.dtb
+share/dtb/arm/qcom-msm8226-samsung-s3ve3g.dtb
 share/dtb/arm/qcom-msm8660-surf.dtb
+share/dtb/arm/qcom-msm8916-samsung-serranove.dtb
 share/dtb/arm/qcom-msm8960-cdp.dtb
-share/dtb/arm/qcom-msm8974-fairphone-fp2.dtb
 share/dtb/arm/qcom-msm8974-lge-nexus5-hammerhead.dtb
-share/dtb/arm/qcom-msm8974-samsung-klte.dtb
-share/dtb/arm/qcom-msm8974-sony-xperia-amami.dtb
-share/dtb/arm/qcom-msm8974-sony-xperia-castor.dtb
-share/dtb/arm/qcom-msm8974-sony-xperia-honami.dtb
+share/dtb/arm/qcom-msm8974-sony-xperia-rhine-amami.dtb
+share/dtb/arm/qcom-msm8974-sony-xperia-rhine-honami.dtb
+share/dtb/arm/qcom-msm8974pro-fairphone-fp2.dtb
+share/dtb/arm/qcom-msm8974pro-samsung-klte.dtb
+share/dtb/arm/qcom-msm8974pro-sony-xperia-shinano-castor.dtb
 share/dtb/arm/qcom-sdx55-mtp.dtb
 share/dtb/arm/qcom-sdx55-t55.dtb
 share/dtb/arm/qcom-sdx55-telit-fn980-tlb.dtb
+share/dtb/arm/qcom-sdx65-mtp.dtb
 share/dtb/arm/r7s72100-genmai.dtb
 share/dtb/arm/r7s72100-gr-peach.dtb
 share/dtb/arm/r7s72100-rskrza1.dtb
@@ -1061,6 +1189,7 @@ share/dtb/arm/sama5d36ek.dtb
 share/dtb/arm/sama5d36ek_cmp.dtb
 share/dtb/arm/sd5203.dtb
 share/dtb/arm/sh73a0-kzm9g.dtb
+share/dtb/arm/socfpga_arria10_chameleonv3.dtb
 share/dtb/arm/socfpga_arria10_socdk_nand.dtb
 share/dtb/arm/socfpga_arria10_socdk_qspi.dtb
 share/dtb/arm/socfpga_arria10_socdk_sdmmc.dtb
@@ -1089,13 +1218,18 @@ share/dtb/arm/ste-hrefv60plus-tvk.dtb
 share/dtb/arm/ste-nomadik-nhk15.dtb
 share/dtb/arm/ste-nomadik-s8815.dtb
 share/dtb/arm/ste-snowball.dtb
+share/dtb/arm/ste-ux500-samsung-codina-tmo.dtb
+share/dtb/arm/ste-ux500-samsung-codina.dtb
+share/dtb/arm/ste-ux500-samsung-gavini.dtb
 share/dtb/arm/ste-ux500-samsung-golden.dtb
 share/dtb/arm/ste-ux500-samsung-janice.dtb
+share/dtb/arm/ste-ux500-samsung-kyle.dtb
 share/dtb/arm/ste-ux500-samsung-skomer.dtb
 share/dtb/arm/stih407-b2120.dtb
 share/dtb/arm/stih410-b2120.dtb
 share/dtb/arm/stih410-b2260.dtb
 share/dtb/arm/stih418-b2199.dtb
+share/dtb/arm/stih418-b2264.dtb
 share/dtb/arm/stm32429i-eval.dtb
 share/dtb/arm/stm32746g-eval.dtb
 share/dtb/arm/stm32f429-disco.dtb
@@ -1105,10 +1239,17 @@ share/dtb/arm/stm32f769-disco.dtb
 share/dtb/arm/stm32h743i-disco.dtb
 share/dtb/arm/stm32h743i-eval.dtb
 share/dtb/arm/stm32h750i-art-pi.dtb
+share/dtb/arm/stm32mp135f-dk.dtb
+share/dtb/arm/stm32mp151a-prtt1a.dtb
+share/dtb/arm/stm32mp151a-prtt1c.dtb
+share/dtb/arm/stm32mp151a-prtt1s.dtb
 share/dtb/arm/stm32mp153c-dhcom-drc02.dtb
+share/dtb/arm/stm32mp153c-dhcor-drc-compact.dtb
 share/dtb/arm/stm32mp157a-avenger96.dtb
 share/dtb/arm/stm32mp157a-dhcor-avenger96.dtb
+share/dtb/arm/stm32mp157a-dk1-scmi.dtb
 share/dtb/arm/stm32mp157a-dk1.dtb
+share/dtb/arm/stm32mp157a-icore-stm32mp1-ctouch2-of10.dtb
 share/dtb/arm/stm32mp157a-icore-stm32mp1-ctouch2.dtb
 share/dtb/arm/stm32mp157a-icore-stm32mp1-edimm2.2.dtb
 share/dtb/arm/stm32mp157a-iot-box.dtb
@@ -1117,8 +1258,12 @@ 
share/dtb/arm/stm32mp157a-microgea-stm32mp1-microdev2.0.dtb
 share/dtb/arm/stm32mp157a-stinger96.dtb
 share/dtb/arm/stm32mp157c-dhcom-pdk2.dtb
 share/dtb/arm/stm32mp157c-dhcom-picoitx.dtb
+share/dtb/arm/stm32mp157c-dk2-scmi.dtb
 share/dtb/arm/stm32mp157c-dk2.dtb
+share/dtb/arm/stm32mp157c-ed1-scmi.dtb
 share/dtb/arm/stm32mp157c-ed1.dtb
+share/dtb/arm/stm32mp157c-emsbc-argon.dtb
+share/dtb/arm/stm32mp157c-ev1-scmi.dtb
 share/dtb/arm/stm32mp157c-ev1.dtb
 share/dtb/arm/stm32mp157c-lxa-mc1.dtb
 share/dtb/arm/stm32mp157c-odyssey.dtb
@@ -1182,6 +1327,7 @@ share/dtb/arm/sun7i-a20-bananapi.dtb
 share/dtb/arm/sun7i-a20-bananapro.dtb
 share/dtb/arm/sun7i-a20-cubieboard2.dtb
 share/dtb/arm/sun7i-a20-cubietruck.dtb
+share/dtb/arm/sun7i-a20-haoyu-marsboard.dtb
 share/dtb/arm/sun7i-a20-hummingbird.dtb
 share/dtb/arm/sun7i-a20-i12-tvbox.dtb
 share/dtb/arm/sun7i-a20-icnova-swac.dtb
@@ -1268,16 +1414,20 @@ share/dtb/arm/sun8i-v40-bananapi-m2-berry.dtb
 share/dtb/arm/sun9i-a80-cubieboard4.dtb
 share/dtb/arm/sun9i-a80-optimus.dtb
 share/dtb/arm/suniv-f1c100s-licheepi-nano.dtb
+share/dtb/arm/sunplus-sp7021-demo-v3.dtb
+share/dtb/arm/tegra114-asus-tf701t.dtb
 share/dtb/arm/tegra114-dalmore.dtb
 share/dtb/arm/tegra114-roth.dtb
 share/dtb/arm/tegra114-tn7.dtb
 share/dtb/arm/tegra124-apalis-eval.dtb
 share/dtb/arm/tegra124-apalis-v1.2-eval.dtb
 share/dtb/arm/tegra124-jetson-tk1.dtb
+share/dtb/arm/tegra124-nyan-big-fhd.dtb
 share/dtb/arm/tegra124-nyan-big.dtb
 share/dtb/arm/tegra124-nyan-blaze.dtb
 share/dtb/arm/tegra124-venice2.dtb
 share/dtb/arm/tegra20-acer-a500-picasso.dtb
+share/dtb/arm/tegra20-asus-tf101.dtb
 share/dtb/arm/tegra20-colibri-eval-v3.dtb
 share/dtb/arm/tegra20-colibri-iris.dtb
 share/dtb/arm/tegra20-harmony.dtb
@@ -1293,11 +1443,16 @@ share/dtb/arm/tegra30-apalis-v1.1-eval.dtb
 share/dtb/arm/tegra30-asus-nexus7-grouper-E1565.dtb
 share/dtb/arm/tegra30-asus-nexus7-grouper-PM269.dtb
 share/dtb/arm/tegra30-asus-nexus7-tilapia-E1565.dtb
+share/dtb/arm/tegra30-asus-tf201.dtb
+share/dtb/arm/tegra30-asus-tf300t.dtb
+share/dtb/arm/tegra30-asus-tf300tg.dtb
+share/dtb/arm/tegra30-asus-tf700t.dtb
 share/dtb/arm/tegra30-beaver.dtb
 share/dtb/arm/tegra30-cardhu-a02.dtb
 share/dtb/arm/tegra30-cardhu-a04.dtb
 share/dtb/arm/tegra30-colibri-eval-v3.dtb
 share/dtb/arm/tegra30-ouya.dtb
+share/dtb/arm/tegra30-pegatron-chagall.dtb
 share/dtb/arm/tny_a9260.dtb
 share/dtb/arm/tny_a9263.dtb
 share/dtb/arm/tny_a9g20.dtb
@@ -1398,21 +1553,25 @@ share/dtb/arm64/allwinner/sun50i-h6-orangepi-lite2.dtb
 share/dtb/arm64/allwinner/sun50i-h6-orangepi-one-plus.dtb
 share/dtb/arm64/allwinner/sun50i-h6-pine-h64-model-b.dtb
 share/dtb/arm64/allwinner/sun50i-h6-pine-h64.dtb
+share/dtb/arm64/allwinner/sun50i-h6-tanix-tx6-mini.dtb
 share/dtb/arm64/allwinner/sun50i-h6-tanix-tx6.dtb
+share/dtb/arm64/allwinner/sun50i-h616-orangepi-zero2.dtb
+share/dtb/arm64/allwinner/sun50i-h616-x96-mate.dtb
 share/dtb/arm64/altera/
 share/dtb/arm64/altera/socfpga_stratix10_socdk.dtb
 share/dtb/arm64/altera/socfpga_stratix10_socdk_nand.dtb
+share/dtb/arm64/altera/socfpga_stratix10_swvp.dtb
 share/dtb/arm64/amazon/
 share/dtb/arm64/amazon/alpine-v2-evp.dtb
 share/dtb/arm64/amazon/alpine-v3-evp.dtb
 share/dtb/arm64/amd/
 share/dtb/arm64/amd/amd-overdrive-rev-b0.dtb
 share/dtb/arm64/amd/amd-overdrive-rev-b1.dtb
-share/dtb/arm64/amd/amd-overdrive.dtb
-share/dtb/arm64/amd/husky.dtb
 share/dtb/arm64/amlogic/
 share/dtb/arm64/amlogic/meson-a1-ad401.dtb
+share/dtb/arm64/amlogic/meson-axg-jethome-jethub-j100.dtb
 share/dtb/arm64/amlogic/meson-axg-s400.dtb
+share/dtb/arm64/amlogic/meson-g12a-radxa-zero.dtb
 share/dtb/arm64/amlogic/meson-g12a-sei510.dtb
 share/dtb/arm64/amlogic/meson-g12a-u200.dtb
 share/dtb/arm64/amlogic/meson-g12a-x96-max.dtb
@@ -1443,6 +1602,8 @@ share/dtb/arm64/amlogic/meson-gxl-s905d-p230.dtb
 share/dtb/arm64/amlogic/meson-gxl-s905d-p231.dtb
 share/dtb/arm64/amlogic/meson-gxl-s905d-phicomm-n1.dtb
 share/dtb/arm64/amlogic/meson-gxl-s905d-sml5442tw.dtb
+share/dtb/arm64/amlogic/meson-gxl-s905d-vero4k-plus.dtb
+share/dtb/arm64/amlogic/meson-gxl-s905w-jethome-jethub-j80.dtb
 share/dtb/arm64/amlogic/meson-gxl-s905w-p281.dtb
 share/dtb/arm64/amlogic/meson-gxl-s905w-tx3-mini.dtb
 share/dtb/arm64/amlogic/meson-gxl-s905x-hwacom-amazetv.dtb
@@ -1461,24 +1622,39 @@ share/dtb/arm64/amlogic/meson-gxm-rbox-pro.dtb
 share/dtb/arm64/amlogic/meson-gxm-s912-libretech-pc.dtb
 share/dtb/arm64/amlogic/meson-gxm-vega-s96.dtb
 share/dtb/arm64/amlogic/meson-gxm-wetek-core2.dtb
+share/dtb/arm64/amlogic/meson-s4-s805x2-aq222.dtb
+share/dtb/arm64/amlogic/meson-sm1-a95xf3-air-gbit.dtb
+share/dtb/arm64/amlogic/meson-sm1-a95xf3-air.dtb
 share/dtb/arm64/amlogic/meson-sm1-bananapi-m5.dtb
+share/dtb/arm64/amlogic/meson-sm1-h96-max.dtb
 share/dtb/arm64/amlogic/meson-sm1-khadas-vim3l.dtb
 share/dtb/arm64/amlogic/meson-sm1-odroid-c4.dtb
 share/dtb/arm64/amlogic/meson-sm1-odroid-hc4.dtb
 share/dtb/arm64/amlogic/meson-sm1-sei610.dtb
+share/dtb/arm64/amlogic/meson-sm1-x96-air-gbit.dtb
+share/dtb/arm64/amlogic/meson-sm1-x96-air.dtb
 share/dtb/arm64/apm/
 share/dtb/arm64/apm/apm-merlin.dtb
 share/dtb/arm64/apm/apm-mustang.dtb
 share/dtb/arm64/apple/
 share/dtb/arm64/apple/t8103-j274.dtb
+share/dtb/arm64/apple/t8103-j293.dtb
+share/dtb/arm64/apple/t8103-j313.dtb
+share/dtb/arm64/apple/t8103-j456.dtb
+share/dtb/arm64/apple/t8103-j457.dtb
 share/dtb/arm64/arm/
+share/dtb/arm64/arm/corstone1000-fvp.dtb
+share/dtb/arm64/arm/corstone1000-mps3.dtb
 share/dtb/arm64/arm/foundation-v8-gicv3-psci.dtb
 share/dtb/arm64/arm/foundation-v8-gicv3.dtb
 share/dtb/arm64/arm/foundation-v8-psci.dtb
 share/dtb/arm64/arm/foundation-v8.dtb
 share/dtb/arm64/arm/fvp-base-revc.dtb
+share/dtb/arm64/arm/juno-r1-scmi.dtb
 share/dtb/arm64/arm/juno-r1.dtb
+share/dtb/arm64/arm/juno-r2-scmi.dtb
 share/dtb/arm64/arm/juno-r2.dtb
+share/dtb/arm64/arm/juno-scmi.dtb
 share/dtb/arm64/arm/juno.dtb
 share/dtb/arm64/arm/rtsm_ve-aemv8a.dtb
 share/dtb/arm64/arm/vexpress-v2f-1xv7-ca53x2.dtb
@@ -1487,14 +1663,25 @@ share/dtb/arm64/bitmain/bm1880-sophon-edge.dtb
 share/dtb/arm64/broadcom/
 share/dtb/arm64/broadcom/bcm2711-rpi-4-b.dtb
 share/dtb/arm64/broadcom/bcm2711-rpi-400.dtb
+share/dtb/arm64/broadcom/bcm2711-rpi-cm4-io.dtb
 share/dtb/arm64/broadcom/bcm2837-rpi-3-a-plus.dtb
 share/dtb/arm64/broadcom/bcm2837-rpi-3-b-plus.dtb
 share/dtb/arm64/broadcom/bcm2837-rpi-3-b.dtb
 share/dtb/arm64/broadcom/bcm2837-rpi-cm3-io3.dtb
+share/dtb/arm64/broadcom/bcm2837-rpi-zero-2-w.dtb
 share/dtb/arm64/broadcom/bcm4908/
 share/dtb/arm64/broadcom/bcm4908/bcm4906-netgear-r8000p.dtb
 share/dtb/arm64/broadcom/bcm4908/bcm4906-tplink-archer-c2300-v1.dtb
 share/dtb/arm64/broadcom/bcm4908/bcm4908-asus-gt-ac5300.dtb
+share/dtb/arm64/broadcom/bcm4908/bcm4908-netgear-raxe500.dtb
+share/dtb/arm64/broadcom/bcmbca/
+share/dtb/arm64/broadcom/bcmbca/bcm4912-asus-gt-ax6000.dtb
+share/dtb/arm64/broadcom/bcmbca/bcm94912.dtb
+share/dtb/arm64/broadcom/bcmbca/bcm963146.dtb
+share/dtb/arm64/broadcom/bcmbca/bcm963158.dtb
+share/dtb/arm64/broadcom/bcmbca/bcm96813.dtb
+share/dtb/arm64/broadcom/bcmbca/bcm96856.dtb
+share/dtb/arm64/broadcom/bcmbca/bcm96858.dtb
 share/dtb/arm64/broadcom/northstar2/
 share/dtb/arm64/broadcom/northstar2/ns2-svk.dtb
 share/dtb/arm64/broadcom/northstar2/ns2-xmc.dtb
@@ -1509,6 +1696,9 @@ share/dtb/arm64/exynos/
 share/dtb/arm64/exynos/exynos5433-tm2.dtb
 share/dtb/arm64/exynos/exynos5433-tm2e.dtb
 share/dtb/arm64/exynos/exynos7-espresso.dtb
+share/dtb/arm64/exynos/exynos7885-jackpotlte.dtb
+share/dtb/arm64/exynos/exynos850-e850-96.dtb
+share/dtb/arm64/exynos/exynosautov9-sadk.dtb
 share/dtb/arm64/freescale/
 share/dtb/arm64/freescale/fsl-ls1012a-frdm.dtb
 share/dtb/arm64/freescale/fsl-ls1012a-frwy.dtb
@@ -1521,6 +1711,12 @@ 
share/dtb/arm64/freescale/fsl-ls1028a-kontron-sl28-var2.dtb
 share/dtb/arm64/freescale/fsl-ls1028a-kontron-sl28-var3-ads2.dtb
 share/dtb/arm64/freescale/fsl-ls1028a-kontron-sl28-var4.dtb
 share/dtb/arm64/freescale/fsl-ls1028a-kontron-sl28.dtb
+share/dtb/arm64/freescale/fsl-ls1028a-qds-13bb.dtb
+share/dtb/arm64/freescale/fsl-ls1028a-qds-65bb.dtb
+share/dtb/arm64/freescale/fsl-ls1028a-qds-7777.dtb
+share/dtb/arm64/freescale/fsl-ls1028a-qds-85bb.dtb
+share/dtb/arm64/freescale/fsl-ls1028a-qds-899b.dtb
+share/dtb/arm64/freescale/fsl-ls1028a-qds-9999.dtb
 share/dtb/arm64/freescale/fsl-ls1028a-qds.dtb
 share/dtb/arm64/freescale/fsl-ls1028a-rdb.dtb
 share/dtb/arm64/freescale/fsl-ls1043a-qds.dtb
@@ -1530,34 +1726,70 @@ share/dtb/arm64/freescale/fsl-ls1046a-qds.dtb
 share/dtb/arm64/freescale/fsl-ls1046a-rdb.dtb
 share/dtb/arm64/freescale/fsl-ls1088a-qds.dtb
 share/dtb/arm64/freescale/fsl-ls1088a-rdb.dtb
+share/dtb/arm64/freescale/fsl-ls1088a-ten64.dtb
 share/dtb/arm64/freescale/fsl-ls2080a-qds.dtb
 share/dtb/arm64/freescale/fsl-ls2080a-rdb.dtb
 share/dtb/arm64/freescale/fsl-ls2080a-simu.dtb
 share/dtb/arm64/freescale/fsl-ls2088a-qds.dtb
 share/dtb/arm64/freescale/fsl-ls2088a-rdb.dtb
+share/dtb/arm64/freescale/fsl-lx2160a-bluebox3-rev-a.dtb
+share/dtb/arm64/freescale/fsl-lx2160a-bluebox3.dtb
 share/dtb/arm64/freescale/fsl-lx2160a-clearfog-cx.dtb
 share/dtb/arm64/freescale/fsl-lx2160a-honeycomb.dtb
 share/dtb/arm64/freescale/fsl-lx2160a-qds.dtb
 share/dtb/arm64/freescale/fsl-lx2160a-rdb.dtb
 share/dtb/arm64/freescale/fsl-lx2162a-qds.dtb
 share/dtb/arm64/freescale/imx8mm-beacon-kit.dtb
+share/dtb/arm64/freescale/imx8mm-data-modul-edm-sbc.dtb
 share/dtb/arm64/freescale/imx8mm-ddr4-evk.dtb
+share/dtb/arm64/freescale/imx8mm-emcon-avari.dtb
 share/dtb/arm64/freescale/imx8mm-evk.dtb
 share/dtb/arm64/freescale/imx8mm-icore-mx8mm-ctouch2.dtb
 share/dtb/arm64/freescale/imx8mm-icore-mx8mm-edimm2.2.dtb
 share/dtb/arm64/freescale/imx8mm-kontron-n801x-s.dtb
+share/dtb/arm64/freescale/imx8mm-mx8menlo.dtb
 share/dtb/arm64/freescale/imx8mm-nitrogen-r2.dtb
+share/dtb/arm64/freescale/imx8mm-phyboard-polis-rdk.dtb
+share/dtb/arm64/freescale/imx8mm-prt8mm.dtb
+share/dtb/arm64/freescale/imx8mm-tqma8mqml-mba8mx.dtb
 share/dtb/arm64/freescale/imx8mm-var-som-symphony.dtb
 share/dtb/arm64/freescale/imx8mm-venice-gw71xx-0x.dtb
+share/dtb/arm64/freescale/imx8mm-venice-gw72xx-0x-imx219.dtb
+share/dtb/arm64/freescale/imx8mm-venice-gw72xx-0x-rs232-rts.dtb
+share/dtb/arm64/freescale/imx8mm-venice-gw72xx-0x-rs422.dtb
+share/dtb/arm64/freescale/imx8mm-venice-gw72xx-0x-rs485.dtb
 share/dtb/arm64/freescale/imx8mm-venice-gw72xx-0x.dtb
+share/dtb/arm64/freescale/imx8mm-venice-gw73xx-0x-imx219.dtb
+share/dtb/arm64/freescale/imx8mm-venice-gw73xx-0x-rs232-rts.dtb
+share/dtb/arm64/freescale/imx8mm-venice-gw73xx-0x-rs422.dtb
+share/dtb/arm64/freescale/imx8mm-venice-gw73xx-0x-rs485.dtb
 share/dtb/arm64/freescale/imx8mm-venice-gw73xx-0x.dtb
 share/dtb/arm64/freescale/imx8mm-venice-gw7901.dtb
+share/dtb/arm64/freescale/imx8mm-venice-gw7902.dtb
+share/dtb/arm64/freescale/imx8mm-venice-gw7903.dtb
+share/dtb/arm64/freescale/imx8mm-verdin-nonwifi-dahlia.dtb
+share/dtb/arm64/freescale/imx8mm-verdin-nonwifi-dev.dtb
+share/dtb/arm64/freescale/imx8mm-verdin-wifi-dahlia.dtb
+share/dtb/arm64/freescale/imx8mm-verdin-wifi-dev.dtb
 share/dtb/arm64/freescale/imx8mn-beacon-kit.dtb
+share/dtb/arm64/freescale/imx8mn-bsh-smm-s2.dtb
+share/dtb/arm64/freescale/imx8mn-bsh-smm-s2pro.dtb
+share/dtb/arm64/freescale/imx8mn-ddr3l-evk.dtb
 share/dtb/arm64/freescale/imx8mn-ddr4-evk.dtb
 share/dtb/arm64/freescale/imx8mn-evk.dtb
+share/dtb/arm64/freescale/imx8mn-tqma8mqnl-mba8mx.dtb
 share/dtb/arm64/freescale/imx8mn-var-som-symphony.dtb
+share/dtb/arm64/freescale/imx8mn-venice-gw7902.dtb
+share/dtb/arm64/freescale/imx8mp-dhcom-pdk2.dtb
 share/dtb/arm64/freescale/imx8mp-evk.dtb
+share/dtb/arm64/freescale/imx8mp-icore-mx8mp-edimm2.2.dtb
 share/dtb/arm64/freescale/imx8mp-phyboard-pollux-rdk.dtb
+share/dtb/arm64/freescale/imx8mp-tqma8mpql-mba8mpxl.dtb
+share/dtb/arm64/freescale/imx8mp-venice-gw74xx.dtb
+share/dtb/arm64/freescale/imx8mp-verdin-nonwifi-dahlia.dtb
+share/dtb/arm64/freescale/imx8mp-verdin-nonwifi-dev.dtb
+share/dtb/arm64/freescale/imx8mp-verdin-wifi-dahlia.dtb
+share/dtb/arm64/freescale/imx8mp-verdin-wifi-dev.dtb
 share/dtb/arm64/freescale/imx8mq-evk.dtb
 share/dtb/arm64/freescale/imx8mq-hummingboard-pulse.dtb
 share/dtb/arm64/freescale/imx8mq-kontron-pitx-imx8m.dtb
@@ -1565,16 +1797,22 @@ share/dtb/arm64/freescale/imx8mq-librem5-devkit.dtb
 share/dtb/arm64/freescale/imx8mq-librem5-r2.dtb
 share/dtb/arm64/freescale/imx8mq-librem5-r3.dtb
 share/dtb/arm64/freescale/imx8mq-librem5-r4.dtb
+share/dtb/arm64/freescale/imx8mq-mnt-reform2.dtb
 share/dtb/arm64/freescale/imx8mq-nitrogen.dtb
 share/dtb/arm64/freescale/imx8mq-phanbell.dtb
 share/dtb/arm64/freescale/imx8mq-pico-pi.dtb
 share/dtb/arm64/freescale/imx8mq-thor96.dtb
+share/dtb/arm64/freescale/imx8mq-tqma8mq-mba8mx.dtb
 share/dtb/arm64/freescale/imx8mq-zii-ultra-rmb3.dtb
 share/dtb/arm64/freescale/imx8mq-zii-ultra-zest.dtb
 share/dtb/arm64/freescale/imx8qm-mek.dtb
 share/dtb/arm64/freescale/imx8qxp-ai_ml.dtb
 share/dtb/arm64/freescale/imx8qxp-colibri-eval-v3.dtb
 share/dtb/arm64/freescale/imx8qxp-mek.dtb
+share/dtb/arm64/freescale/imx8ulp-evk.dtb
+share/dtb/arm64/freescale/imx93-11x11-evk.dtb
+share/dtb/arm64/freescale/s32g274a-evb.dtb
+share/dtb/arm64/freescale/s32g274a-rdb2.dtb
 share/dtb/arm64/freescale/s32v234-evb.dtb
 share/dtb/arm64/hisilicon/
 share/dtb/arm64/hisilicon/hi3660-hikey960.dtb
@@ -1586,6 +1824,7 @@ share/dtb/arm64/hisilicon/hip06-d03.dtb
 share/dtb/arm64/hisilicon/hip07-d05.dtb
 share/dtb/arm64/intel/
 share/dtb/arm64/intel/keembay-evm.dtb
+share/dtb/arm64/intel/socfpga_agilex_n6000.dtb
 share/dtb/arm64/intel/socfpga_agilex_socdk.dtb
 share/dtb/arm64/intel/socfpga_agilex_socdk_nand.dtb
 share/dtb/arm64/intel/socfpga_n5x_socdk.dtb
@@ -1593,6 +1832,7 @@ share/dtb/arm64/lg/
 share/dtb/arm64/lg/lg1312-ref.dtb
 share/dtb/arm64/lg/lg1313-ref.dtb
 share/dtb/arm64/marvell/
+share/dtb/arm64/marvell/ac5-98dx35xx-rd.dtb
 share/dtb/arm64/marvell/armada-3720-db.dtb
 share/dtb/arm64/marvell/armada-3720-espressobin-emmc.dtb
 share/dtb/arm64/marvell/armada-3720-espressobin-ultra.dtb
@@ -1602,14 +1842,20 @@ share/dtb/arm64/marvell/armada-3720-espressobin.dtb
 share/dtb/arm64/marvell/armada-3720-turris-mox.dtb
 share/dtb/arm64/marvell/armada-3720-uDPU.dtb
 share/dtb/arm64/marvell/armada-7040-db.dtb
+share/dtb/arm64/marvell/armada-7040-mochabin.dtb
 share/dtb/arm64/marvell/armada-8040-clearfog-gt-8k.dtb
 share/dtb/arm64/marvell/armada-8040-db.dtb
 share/dtb/arm64/marvell/armada-8040-mcbin-singleshot.dtb
 share/dtb/arm64/marvell/armada-8040-mcbin.dtb
 share/dtb/arm64/marvell/armada-8040-puzzle-m801.dtb
 share/dtb/arm64/marvell/armada-8080-db.dtb
+share/dtb/arm64/marvell/cn9130-crb-A.dtb
+share/dtb/arm64/marvell/cn9130-crb-B.dtb
+share/dtb/arm64/marvell/cn9130-db-B.dtb
 share/dtb/arm64/marvell/cn9130-db.dtb
+share/dtb/arm64/marvell/cn9131-db-B.dtb
 share/dtb/arm64/marvell/cn9131-db.dtb
+share/dtb/arm64/marvell/cn9132-db-B.dtb
 share/dtb/arm64/marvell/cn9132-db.dtb
 share/dtb/arm64/mediatek/
 share/dtb/arm64/mediatek/mt2712-evb.dtb
@@ -1620,6 +1866,8 @@ share/dtb/arm64/mediatek/mt6797-evb.dtb
 share/dtb/arm64/mediatek/mt6797-x20-dev.dtb
 share/dtb/arm64/mediatek/mt7622-bananapi-bpi-r64.dtb
 share/dtb/arm64/mediatek/mt7622-rfb1.dtb
+share/dtb/arm64/mediatek/mt7986a-rfb.dtb
+share/dtb/arm64/mediatek/mt7986b-rfb.dtb
 share/dtb/arm64/mediatek/mt8167-pumpkin.dtb
 share/dtb/arm64/mediatek/mt8173-elm-hana-rev7.dtb
 share/dtb/arm64/mediatek/mt8173-elm-hana.dtb
@@ -1627,15 +1875,19 @@ share/dtb/arm64/mediatek/mt8173-elm.dtb
 share/dtb/arm64/mediatek/mt8173-evb.dtb
 share/dtb/arm64/mediatek/mt8183-evb.dtb
 share/dtb/arm64/mediatek/mt8183-kukui-jacuzzi-burnet.dtb
+share/dtb/arm64/mediatek/mt8183-kukui-jacuzzi-cozmo.dtb
 share/dtb/arm64/mediatek/mt8183-kukui-jacuzzi-damu.dtb
 share/dtb/arm64/mediatek/mt8183-kukui-jacuzzi-fennel-sku1.dtb
 share/dtb/arm64/mediatek/mt8183-kukui-jacuzzi-fennel-sku6.dtb
+share/dtb/arm64/mediatek/mt8183-kukui-jacuzzi-fennel-sku7.dtb
+share/dtb/arm64/mediatek/mt8183-kukui-jacuzzi-fennel14-sku2.dtb
 share/dtb/arm64/mediatek/mt8183-kukui-jacuzzi-fennel14.dtb
 share/dtb/arm64/mediatek/mt8183-kukui-jacuzzi-juniper-sku16.dtb
 share/dtb/arm64/mediatek/mt8183-kukui-jacuzzi-kappa.dtb
 share/dtb/arm64/mediatek/mt8183-kukui-jacuzzi-kenzo.dtb
 share/dtb/arm64/mediatek/mt8183-kukui-jacuzzi-willow-sku0.dtb
 share/dtb/arm64/mediatek/mt8183-kukui-jacuzzi-willow-sku1.dtb
+share/dtb/arm64/mediatek/mt8183-kukui-kakadu-sku22.dtb
 share/dtb/arm64/mediatek/mt8183-kukui-kakadu.dtb
 share/dtb/arm64/mediatek/mt8183-kukui-kodama-sku16.dtb
 share/dtb/arm64/mediatek/mt8183-kukui-kodama-sku272.dtb
@@ -1644,7 +1896,14 @@ share/dtb/arm64/mediatek/mt8183-kukui-kodama-sku32.dtb
 share/dtb/arm64/mediatek/mt8183-kukui-krane-sku0.dtb
 share/dtb/arm64/mediatek/mt8183-kukui-krane-sku176.dtb
 share/dtb/arm64/mediatek/mt8183-pumpkin.dtb
+share/dtb/arm64/mediatek/mt8192-asurada-hayato-r1.dtb
+share/dtb/arm64/mediatek/mt8192-asurada-spherion-r0.dtb
 share/dtb/arm64/mediatek/mt8192-evb.dtb
+share/dtb/arm64/mediatek/mt8195-cherry-tomato-r1.dtb
+share/dtb/arm64/mediatek/mt8195-cherry-tomato-r2.dtb
+share/dtb/arm64/mediatek/mt8195-cherry-tomato-r3.dtb
+share/dtb/arm64/mediatek/mt8195-demo.dtb
+share/dtb/arm64/mediatek/mt8195-evb.dtb
 share/dtb/arm64/mediatek/mt8516-pumpkin.dtb
 share/dtb/arm64/microchip/
 share/dtb/arm64/microchip/sparx5_pcb125.dtb
@@ -1652,9 +1911,12 @@ share/dtb/arm64/microchip/sparx5_pcb134.dtb
 share/dtb/arm64/microchip/sparx5_pcb134_emmc.dtb
 share/dtb/arm64/microchip/sparx5_pcb135.dtb
 share/dtb/arm64/microchip/sparx5_pcb135_emmc.dtb
+share/dtb/arm64/nuvoton/
+share/dtb/arm64/nuvoton/nuvoton-npcm845-evb.dtb
 share/dtb/arm64/nvidia/
 share/dtb/arm64/nvidia/tegra132-norrin.dtb
 share/dtb/arm64/nvidia/tegra186-p2771-0000.dtb
+share/dtb/arm64/nvidia/tegra186-p3509-0000+p3636-0001.dtb
 share/dtb/arm64/nvidia/tegra194-p2972-0000.dtb
 share/dtb/arm64/nvidia/tegra194-p3509-0000+p3668-0000.dtb
 share/dtb/arm64/nvidia/tegra194-p3509-0000+p3668-0001.dtb
@@ -1664,6 +1926,7 @@ share/dtb/arm64/nvidia/tegra210-p2571.dtb
 share/dtb/arm64/nvidia/tegra210-p2894-0050-a08.dtb
 share/dtb/arm64/nvidia/tegra210-p3450-0000.dtb
 share/dtb/arm64/nvidia/tegra210-smaug.dtb
+share/dtb/arm64/nvidia/tegra234-p3737-0000+p3701-0000.dtb
 share/dtb/arm64/nvidia/tegra234-sim-vdk.dtb
 share/dtb/arm64/qcom/
 share/dtb/arm64/qcom/apq8016-sbc.dtb
@@ -1682,10 +1945,14 @@ share/dtb/arm64/qcom/msm8916-longcheer-l8910.dtb
 share/dtb/arm64/qcom/msm8916-mtp.dtb
 share/dtb/arm64/qcom/msm8916-samsung-a3u-eur.dtb
 share/dtb/arm64/qcom/msm8916-samsung-a5u-eur.dtb
-share/dtb/arm64/qcom/msm8992-bullhead-rev-101.dtb
+share/dtb/arm64/qcom/msm8916-samsung-j5.dtb
+share/dtb/arm64/qcom/msm8916-samsung-serranove.dtb
+share/dtb/arm64/qcom/msm8916-wingtech-wt88047.dtb
+share/dtb/arm64/qcom/msm8992-lg-bullhead-rev-10.dtb
+share/dtb/arm64/qcom/msm8992-lg-bullhead-rev-101.dtb
 share/dtb/arm64/qcom/msm8992-msft-lumia-octagon-talkman.dtb
 share/dtb/arm64/qcom/msm8992-xiaomi-libra.dtb
-share/dtb/arm64/qcom/msm8994-angler-rev-101.dtb
+share/dtb/arm64/qcom/msm8994-huawei-angler-rev-101.dtb
 share/dtb/arm64/qcom/msm8994-msft-lumia-octagon-cityman.dtb
 share/dtb/arm64/qcom/msm8994-sony-xperia-kitakami-ivy.dtb
 share/dtb/arm64/qcom/msm8994-sony-xperia-kitakami-karin.dtb
@@ -1693,24 +1960,42 @@ 
share/dtb/arm64/qcom/msm8994-sony-xperia-kitakami-satsuki.dtb
 share/dtb/arm64/qcom/msm8994-sony-xperia-kitakami-sumire.dtb
 share/dtb/arm64/qcom/msm8994-sony-xperia-kitakami-suzuran.dtb
 share/dtb/arm64/qcom/msm8996-mtp.dtb
+share/dtb/arm64/qcom/msm8996-sony-xperia-tone-dora.dtb
+share/dtb/arm64/qcom/msm8996-sony-xperia-tone-kagura.dtb
+share/dtb/arm64/qcom/msm8996-sony-xperia-tone-keyaki.dtb
+share/dtb/arm64/qcom/msm8996-xiaomi-gemini.dtb
+share/dtb/arm64/qcom/msm8996-xiaomi-natrium.dtb
+share/dtb/arm64/qcom/msm8996-xiaomi-scorpio.dtb
 share/dtb/arm64/qcom/msm8998-asus-novago-tp370ql.dtb
+share/dtb/arm64/qcom/msm8998-fxtec-pro1.dtb
 share/dtb/arm64/qcom/msm8998-hp-envy-x2.dtb
 share/dtb/arm64/qcom/msm8998-lenovo-miix-630.dtb
 share/dtb/arm64/qcom/msm8998-mtp.dtb
 share/dtb/arm64/qcom/msm8998-oneplus-cheeseburger.dtb
 share/dtb/arm64/qcom/msm8998-oneplus-dumpling.dtb
+share/dtb/arm64/qcom/msm8998-sony-xperia-yoshino-lilac.dtb
+share/dtb/arm64/qcom/msm8998-sony-xperia-yoshino-maple.dtb
+share/dtb/arm64/qcom/msm8998-sony-xperia-yoshino-poplar.dtb
 share/dtb/arm64/qcom/qcs404-evb-1000.dtb
 share/dtb/arm64/qcom/qcs404-evb-4000.dtb
 share/dtb/arm64/qcom/qrb5165-rb5.dtb
 share/dtb/arm64/qcom/sa8155p-adp.dtb
+share/dtb/arm64/qcom/sa8295p-adp.dtb
 share/dtb/arm64/qcom/sc7180-idp.dtb
 share/dtb/arm64/qcom/sc7180-trogdor-coachz-r1-lte.dtb
 share/dtb/arm64/qcom/sc7180-trogdor-coachz-r1.dtb
 share/dtb/arm64/qcom/sc7180-trogdor-coachz-r3-lte.dtb
 share/dtb/arm64/qcom/sc7180-trogdor-coachz-r3.dtb
+share/dtb/arm64/qcom/sc7180-trogdor-homestar-r2.dtb
+share/dtb/arm64/qcom/sc7180-trogdor-homestar-r3.dtb
+share/dtb/arm64/qcom/sc7180-trogdor-homestar-r4.dtb
+share/dtb/arm64/qcom/sc7180-trogdor-kingoftown-r0.dtb
+share/dtb/arm64/qcom/sc7180-trogdor-kingoftown-r1.dtb
 share/dtb/arm64/qcom/sc7180-trogdor-lazor-limozeen-nots-r4.dtb
-share/dtb/arm64/qcom/sc7180-trogdor-lazor-limozeen-nots.dtb
-share/dtb/arm64/qcom/sc7180-trogdor-lazor-limozeen.dtb
+share/dtb/arm64/qcom/sc7180-trogdor-lazor-limozeen-nots-r5.dtb
+share/dtb/arm64/qcom/sc7180-trogdor-lazor-limozeen-nots-r9.dtb
+share/dtb/arm64/qcom/sc7180-trogdor-lazor-limozeen-r4.dtb
+share/dtb/arm64/qcom/sc7180-trogdor-lazor-limozeen-r9.dtb
 share/dtb/arm64/qcom/sc7180-trogdor-lazor-r0.dtb
 share/dtb/arm64/qcom/sc7180-trogdor-lazor-r1-kb.dtb
 share/dtb/arm64/qcom/sc7180-trogdor-lazor-r1-lte.dtb
@@ -1718,30 +2003,69 @@ share/dtb/arm64/qcom/sc7180-trogdor-lazor-r1.dtb
 share/dtb/arm64/qcom/sc7180-trogdor-lazor-r3-kb.dtb
 share/dtb/arm64/qcom/sc7180-trogdor-lazor-r3-lte.dtb
 share/dtb/arm64/qcom/sc7180-trogdor-lazor-r3.dtb
+share/dtb/arm64/qcom/sc7180-trogdor-lazor-r9-kb.dtb
+share/dtb/arm64/qcom/sc7180-trogdor-lazor-r9-lte.dtb
+share/dtb/arm64/qcom/sc7180-trogdor-lazor-r9.dtb
+share/dtb/arm64/qcom/sc7180-trogdor-mrbland-rev0-auo.dtb
+share/dtb/arm64/qcom/sc7180-trogdor-mrbland-rev0-boe.dtb
+share/dtb/arm64/qcom/sc7180-trogdor-mrbland-rev1-auo.dtb
+share/dtb/arm64/qcom/sc7180-trogdor-mrbland-rev1-boe.dtb
+share/dtb/arm64/qcom/sc7180-trogdor-pazquel-lte-parade.dtb
+share/dtb/arm64/qcom/sc7180-trogdor-pazquel-lte-ti.dtb
+share/dtb/arm64/qcom/sc7180-trogdor-pazquel-parade.dtb
+share/dtb/arm64/qcom/sc7180-trogdor-pazquel-ti.dtb
 share/dtb/arm64/qcom/sc7180-trogdor-pompom-r1-lte.dtb
 share/dtb/arm64/qcom/sc7180-trogdor-pompom-r1.dtb
 share/dtb/arm64/qcom/sc7180-trogdor-pompom-r2-lte.dtb
 share/dtb/arm64/qcom/sc7180-trogdor-pompom-r2.dtb
 share/dtb/arm64/qcom/sc7180-trogdor-pompom-r3-lte.dtb
 share/dtb/arm64/qcom/sc7180-trogdor-pompom-r3.dtb
+share/dtb/arm64/qcom/sc7180-trogdor-quackingstick-r0-lte.dtb
+share/dtb/arm64/qcom/sc7180-trogdor-quackingstick-r0.dtb
 share/dtb/arm64/qcom/sc7180-trogdor-r1-lte.dtb
 share/dtb/arm64/qcom/sc7180-trogdor-r1.dtb
+share/dtb/arm64/qcom/sc7180-trogdor-wormdingler-rev0-boe.dtb
+share/dtb/arm64/qcom/sc7180-trogdor-wormdingler-rev0-inx.dtb
+share/dtb/arm64/qcom/sc7180-trogdor-wormdingler-rev1-boe-rt5682s.dtb
+share/dtb/arm64/qcom/sc7180-trogdor-wormdingler-rev1-boe.dtb
+share/dtb/arm64/qcom/sc7180-trogdor-wormdingler-rev1-inx-rt5682s.dtb
+share/dtb/arm64/qcom/sc7180-trogdor-wormdingler-rev1-inx.dtb
+share/dtb/arm64/qcom/sc7280-crd-r3.dtb
+share/dtb/arm64/qcom/sc7280-herobrine-crd.dtb
+share/dtb/arm64/qcom/sc7280-herobrine-herobrine-r1.dtb
+share/dtb/arm64/qcom/sc7280-herobrine-villager-r0.dtb
 share/dtb/arm64/qcom/sc7280-idp.dtb
+share/dtb/arm64/qcom/sc7280-idp2.dtb
+share/dtb/arm64/qcom/sc8280xp-crd.dtb
+share/dtb/arm64/qcom/sc8280xp-lenovo-thinkpad-x13s.dtb
+share/dtb/arm64/qcom/sda660-inforce-ifc6560.dtb
 share/dtb/arm64/qcom/sdm630-sony-xperia-ganges-kirin.dtb
 share/dtb/arm64/qcom/sdm630-sony-xperia-nile-discovery.dtb
 share/dtb/arm64/qcom/sdm630-sony-xperia-nile-pioneer.dtb
 share/dtb/arm64/qcom/sdm630-sony-xperia-nile-voyager.dtb
+share/dtb/arm64/qcom/sdm632-fairphone-fp3.dtb
 share/dtb/arm64/qcom/sdm636-sony-xperia-ganges-mermaid.dtb
 share/dtb/arm64/qcom/sdm660-xiaomi-lavender.dtb
 share/dtb/arm64/qcom/sdm845-cheza-r1.dtb
 share/dtb/arm64/qcom/sdm845-cheza-r2.dtb
 share/dtb/arm64/qcom/sdm845-cheza-r3.dtb
 share/dtb/arm64/qcom/sdm845-db845c.dtb
+share/dtb/arm64/qcom/sdm845-lg-judyln.dtb
+share/dtb/arm64/qcom/sdm845-lg-judyp.dtb
 share/dtb/arm64/qcom/sdm845-mtp.dtb
 share/dtb/arm64/qcom/sdm845-oneplus-enchilada.dtb
 share/dtb/arm64/qcom/sdm845-oneplus-fajita.dtb
+share/dtb/arm64/qcom/sdm845-shift-axolotl.dtb
+share/dtb/arm64/qcom/sdm845-sony-xperia-tama-akari.dtb
+share/dtb/arm64/qcom/sdm845-sony-xperia-tama-akatsuki.dtb
+share/dtb/arm64/qcom/sdm845-sony-xperia-tama-apollo.dtb
 share/dtb/arm64/qcom/sdm845-xiaomi-beryllium.dtb
+share/dtb/arm64/qcom/sdm845-xiaomi-polaris.dtb
 share/dtb/arm64/qcom/sdm850-lenovo-yoga-c630.dtb
+share/dtb/arm64/qcom/sdm850-samsung-w737.dtb
+share/dtb/arm64/qcom/sm6125-sony-xperia-seine-pdx201.dtb
+share/dtb/arm64/qcom/sm6350-sony-xperia-lena-pdx213.dtb
+share/dtb/arm64/qcom/sm7225-fairphone-fp4.dtb
 share/dtb/arm64/qcom/sm8150-hdk.dtb
 share/dtb/arm64/qcom/sm8150-microsoft-surface-duo.dtb
 share/dtb/arm64/qcom/sm8150-mtp.dtb
@@ -1752,7 +2076,12 @@ share/dtb/arm64/qcom/sm8250-mtp.dtb
 share/dtb/arm64/qcom/sm8250-sony-xperia-edo-pdx203.dtb
 share/dtb/arm64/qcom/sm8250-sony-xperia-edo-pdx206.dtb
 share/dtb/arm64/qcom/sm8350-hdk.dtb
+share/dtb/arm64/qcom/sm8350-microsoft-surface-duo2.dtb
 share/dtb/arm64/qcom/sm8350-mtp.dtb
+share/dtb/arm64/qcom/sm8350-sony-xperia-sagami-pdx214.dtb
+share/dtb/arm64/qcom/sm8350-sony-xperia-sagami-pdx215.dtb
+share/dtb/arm64/qcom/sm8450-hdk.dtb
+share/dtb/arm64/qcom/sm8450-qrd.dtb
 share/dtb/arm64/realtek/
 share/dtb/arm64/realtek/rtd1293-ds418j.dtb
 share/dtb/arm64/realtek/rtd1295-mele-v9.dtb
@@ -1764,6 +2093,7 @@ share/dtb/arm64/realtek/rtd1395-bpi-m4.dtb
 share/dtb/arm64/realtek/rtd1395-lionskin.dtb
 share/dtb/arm64/realtek/rtd1619-mjolnir.dtb
 share/dtb/arm64/renesas/
+share/dtb/arm64/renesas/draak-ebisu-panel-aa104xd12.dtb
 share/dtb/arm64/renesas/r8a774a1-beacon-rzg2m-kit.dtb
 share/dtb/arm64/renesas/r8a774a1-hihope-rzg2m-ex-idk-1110wr.dtb
 share/dtb/arm64/renesas/r8a774a1-hihope-rzg2m-ex-mipi-2.1.dtb
@@ -1814,7 +2144,21 @@ share/dtb/arm64/renesas/r8a77980-v3hsk.dtb
 share/dtb/arm64/renesas/r8a77990-ebisu.dtb
 share/dtb/arm64/renesas/r8a77995-draak.dtb
 share/dtb/arm64/renesas/r8a779a0-falcon.dtb
+share/dtb/arm64/renesas/r8a779f0-spider.dtb
+share/dtb/arm64/renesas/r8a779g0-white-hawk.dtb
+share/dtb/arm64/renesas/r8a779m1-salvator-xs.dtb
+share/dtb/arm64/renesas/r8a779m1-ulcb-kf.dtb
+share/dtb/arm64/renesas/r8a779m1-ulcb.dtb
+share/dtb/arm64/renesas/r8a779m3-salvator-xs.dtb
+share/dtb/arm64/renesas/r8a779m3-ulcb-kf.dtb
+share/dtb/arm64/renesas/r8a779m3-ulcb.dtb
+share/dtb/arm64/renesas/r8a779m5-salvator-xs.dtb
+share/dtb/arm64/renesas/r9a07g043u11-smarc.dtb
+share/dtb/arm64/renesas/r9a07g044c2-smarc.dtb
 share/dtb/arm64/renesas/r9a07g044l2-smarc.dtb
+share/dtb/arm64/renesas/r9a07g054l2-smarc.dtb
+share/dtb/arm64/renesas/r9a09g011-v2mevk2.dtb
+share/dtb/arm64/renesas/salvator-panel-aa104xd12.dtb
 share/dtb/arm64/rockchip/
 share/dtb/arm64/rockchip/px30-engicam-px30-core-ctouch2-of10.dtb
 share/dtb/arm64/rockchip/px30-engicam-px30-core-ctouch2.dtb
@@ -1822,12 +2166,14 @@ 
share/dtb/arm64/rockchip/px30-engicam-px30-core-edimm2.2.dtb
 share/dtb/arm64/rockchip/px30-evb.dtb
 share/dtb/arm64/rockchip/rk3308-evb.dtb
 share/dtb/arm64/rockchip/rk3308-roc-cc.dtb
+share/dtb/arm64/rockchip/rk3308-rock-pi-s.dtb
 share/dtb/arm64/rockchip/rk3318-a95x-z2.dtb
 share/dtb/arm64/rockchip/rk3326-odroid-go2.dtb
 share/dtb/arm64/rockchip/rk3328-a1.dtb
 share/dtb/arm64/rockchip/rk3328-evb.dtb
 share/dtb/arm64/rockchip/rk3328-nanopi-r2s.dtb
 share/dtb/arm64/rockchip/rk3328-roc-cc.dtb
+share/dtb/arm64/rockchip/rk3328-roc-pc.dtb
 share/dtb/arm64/rockchip/rk3328-rock-pi-e.dtb
 share/dtb/arm64/rockchip/rk3328-rock64.dtb
 share/dtb/arm64/rockchip/rk3368-evb-act8846.dtb
@@ -1841,6 +2187,7 @@ share/dtb/arm64/rockchip/rk3399-ficus.dtb
 share/dtb/arm64/rockchip/rk3399-firefly.dtb
 share/dtb/arm64/rockchip/rk3399-gru-bob.dtb
 share/dtb/arm64/rockchip/rk3399-gru-kevin.dtb
+share/dtb/arm64/rockchip/rk3399-gru-scarlet-dumo.dtb
 share/dtb/arm64/rockchip/rk3399-gru-scarlet-inx.dtb
 share/dtb/arm64/rockchip/rk3399-gru-scarlet-kd.dtb
 share/dtb/arm64/rockchip/rk3399-hugsun-x99.dtb
@@ -1858,8 +2205,11 @@ share/dtb/arm64/rockchip/rk3399-orangepi.dtb
 share/dtb/arm64/rockchip/rk3399-pinebook-pro.dtb
 share/dtb/arm64/rockchip/rk3399-puma-haikou.dtb
 share/dtb/arm64/rockchip/rk3399-roc-pc-mezzanine.dtb
+share/dtb/arm64/rockchip/rk3399-roc-pc-plus.dtb
 share/dtb/arm64/rockchip/rk3399-roc-pc.dtb
+share/dtb/arm64/rockchip/rk3399-rock-pi-4a-plus.dtb
 share/dtb/arm64/rockchip/rk3399-rock-pi-4a.dtb
+share/dtb/arm64/rockchip/rk3399-rock-pi-4b-plus.dtb
 share/dtb/arm64/rockchip/rk3399-rock-pi-4b.dtb
 share/dtb/arm64/rockchip/rk3399-rock-pi-4c.dtb
 share/dtb/arm64/rockchip/rk3399-rock960.dtb
@@ -1868,7 +2218,15 @@ share/dtb/arm64/rockchip/rk3399-rockpro64.dtb
 share/dtb/arm64/rockchip/rk3399-sapphire-excavator.dtb
 share/dtb/arm64/rockchip/rk3399-sapphire.dtb
 share/dtb/arm64/rockchip/rk3399pro-rock-pi-n10.dtb
+share/dtb/arm64/rockchip/rk3566-pinenote-v1.1.dtb
+share/dtb/arm64/rockchip/rk3566-pinenote-v1.2.dtb
+share/dtb/arm64/rockchip/rk3566-quartz64-a.dtb
+share/dtb/arm64/rockchip/rk3566-quartz64-b.dtb
+share/dtb/arm64/rockchip/rk3566-roc-pc.dtb
+share/dtb/arm64/rockchip/rk3566-soquartz-cm4.dtb
+share/dtb/arm64/rockchip/rk3568-bpi-r2-pro.dtb
 share/dtb/arm64/rockchip/rk3568-evb1-v10.dtb
+share/dtb/arm64/rockchip/rk3568-rock-3a.dtb
 share/dtb/arm64/socionext/
 share/dtb/arm64/socionext/uniphier-ld11-global.dtb
 share/dtb/arm64/socionext/uniphier-ld11-ref.dtb
@@ -1883,18 +2241,30 @@ share/dtb/arm64/sprd/sp9863a-1h10.dtb
 share/dtb/arm64/synaptics/
 share/dtb/arm64/synaptics/berlin4ct-dmp.dtb
 share/dtb/arm64/synaptics/berlin4ct-stb.dtb
+share/dtb/arm64/tesla/
+share/dtb/arm64/tesla/fsd-evb.dtb
 share/dtb/arm64/ti/
+share/dtb/arm64/ti/k3-am625-sk.dtb
 share/dtb/arm64/ti/k3-am642-evm.dtb
 share/dtb/arm64/ti/k3-am642-sk.dtb
+share/dtb/arm64/ti/k3-am6528-iot2050-basic-pg2.dtb
 share/dtb/arm64/ti/k3-am6528-iot2050-basic.dtb
 share/dtb/arm64/ti/k3-am654-base-board.dtb
+share/dtb/arm64/ti/k3-am6548-iot2050-advanced-pg2.dtb
 share/dtb/arm64/ti/k3-am6548-iot2050-advanced.dtb
 share/dtb/arm64/ti/k3-j7200-common-proc-board.dtb
 share/dtb/arm64/ti/k3-j721e-common-proc-board.dtb
+share/dtb/arm64/ti/k3-j721e-sk.dtb
+share/dtb/arm64/ti/k3-j721s2-common-proc-board.dtb
 share/dtb/arm64/toshiba/
 share/dtb/arm64/toshiba/tmpv7708-rm-mbrc.dtb
+share/dtb/arm64/toshiba/tmpv7708-visrobo-vrb.dtb
 share/dtb/arm64/xilinx/
 share/dtb/arm64/xilinx/avnet-ultra96-rev1.dtb
+share/dtb/arm64/xilinx/zynqmp-sck-kv-g-revA.dtb
+share/dtb/arm64/xilinx/zynqmp-sck-kv-g-revB.dtb
+share/dtb/arm64/xilinx/zynqmp-sm-k26-revA.dtb
+share/dtb/arm64/xilinx/zynqmp-smk-k26-revA.dtb
 share/dtb/arm64/xilinx/zynqmp-zc1232-revA.dtb
 share/dtb/arm64/xilinx/zynqmp-zc1254-revA.dtb
 share/dtb/arm64/xilinx/zynqmp-zc1275-revA.dtb
@@ -1905,6 +2275,7 @@ share/dtb/arm64/xilinx/zynqmp-zc1751-xm018-dc4.dtb
 share/dtb/arm64/xilinx/zynqmp-zc1751-xm019-dc5.dtb
 share/dtb/arm64/xilinx/zynqmp-zcu100-revC.dtb
 share/dtb/arm64/xilinx/zynqmp-zcu102-rev1.0.dtb
+share/dtb/arm64/xilinx/zynqmp-zcu102-rev1.1.dtb
 share/dtb/arm64/xilinx/zynqmp-zcu102-revA.dtb
 share/dtb/arm64/xilinx/zynqmp-zcu102-revB.dtb
 share/dtb/arm64/xilinx/zynqmp-zcu104-revA.dtb
@@ -1967,12 +2338,6 @@ share/dtb/mips/mscc/serval_pcb106.dtb
 share/dtb/mips/mti/
 share/dtb/mips/mti/malta.dtb
 share/dtb/mips/mti/sead3.dtb
-share/dtb/mips/netlogic/
-share/dtb/mips/netlogic/xlp_evp.dtb
-share/dtb/mips/netlogic/xlp_fvp.dtb
-share/dtb/mips/netlogic/xlp_gvp.dtb
-share/dtb/mips/netlogic/xlp_rvp.dtb
-share/dtb/mips/netlogic/xlp_svp.dtb
 share/dtb/mips/ni/
 share/dtb/mips/ni/169445.dtb
 share/dtb/mips/pic32/
@@ -1987,6 +2352,8 @@ share/dtb/mips/qca/ar9331_tl_mr3020.dtb
 share/dtb/mips/ralink/
 share/dtb/mips/ralink/gardena_smart_gateway_mt7688.dtb
 share/dtb/mips/ralink/mt7620a_eval.dtb
+share/dtb/mips/ralink/mt7621-gnubee-gb-pc1.dtb
+share/dtb/mips/ralink/mt7621-gnubee-gb-pc2.dtb
 share/dtb/mips/ralink/omega2p.dtb
 share/dtb/mips/ralink/rt2880_eval.dtb
 share/dtb/mips/ralink/rt3052_eval.dtb
@@ -2088,12 +2455,12 @@ share/dtb/powerpc/fsl/p4080ds.dtb
 share/dtb/powerpc/fsl/p5020ds.dtb
 share/dtb/powerpc/fsl/p5040ds.dtb
 share/dtb/powerpc/fsl/ppa8548.dtb
-share/dtb/powerpc/fsl/sbc8641d.dtb
 share/dtb/powerpc/fsl/t1023rdb.dtb
 share/dtb/powerpc/fsl/t1024qds.dtb
 share/dtb/powerpc/fsl/t1024rdb.dtb
 share/dtb/powerpc/fsl/t1040d4rdb.dtb
 share/dtb/powerpc/fsl/t1040qds.dtb
+share/dtb/powerpc/fsl/t1040rdb-rev-a.dtb
 share/dtb/powerpc/fsl/t1040rdb.dtb
 share/dtb/powerpc/fsl/t1042d4rdb.dtb
 share/dtb/powerpc/fsl/t1042qds.dtb
@@ -2169,8 +2536,6 @@ share/dtb/powerpc/ps3.dtb
 share/dtb/powerpc/rainier.dtb
 share/dtb/powerpc/redwood.dtb
 share/dtb/powerpc/sam440ep.dtb
-share/dtb/powerpc/sbc8548-altflash.dtb
-share/dtb/powerpc/sbc8548.dtb
 share/dtb/powerpc/sequoia.dtb
 share/dtb/powerpc/socrates.dtb
 share/dtb/powerpc/storcenter.dtb
@@ -2185,6 +2550,7 @@ share/dtb/powerpc/tqm8548.dtb
 share/dtb/powerpc/tqm8555.dtb
 share/dtb/powerpc/tqm8560.dtb
 share/dtb/powerpc/tqm8xx.dtb
+share/dtb/powerpc/turris1x.dtb
 share/dtb/powerpc/uc101.dtb
 share/dtb/powerpc/warp.dtb
 share/dtb/powerpc/wii.dtb
@@ -2204,7 +2570,10 @@ share/dtb/riscv/canaan/sipeed_maix_dock.dtb
 share/dtb/riscv/canaan/sipeed_maix_go.dtb
 share/dtb/riscv/canaan/sipeed_maixduino.dtb
 share/dtb/riscv/microchip/
-share/dtb/riscv/microchip/microchip-mpfs-icicle-kit.dtb
+share/dtb/riscv/microchip/mpfs-icicle-kit.dtb
+share/dtb/riscv/microchip/mpfs-polarberry.dtb
 share/dtb/riscv/sifive/
 share/dtb/riscv/sifive/hifive-unleashed-a00.dtb
 share/dtb/riscv/sifive/hifive-unmatched-a00.dtb
+share/dtb/riscv/starfive/
+share/dtb/riscv/starfive/jh7100-beaglev-starlight.dtb

Reply via email to