[openwrt/openwrt] ipq806x: dts: correct PCIe device node name
LEDE Commits
lede-commits at lists.infradead.org
Tue Oct 14 01:28:06 PDT 2025
ansuel pushed a commit to openwrt/openwrt.git, branch main:
https://git.openwrt.org/41fe3aabadcd30fcdc60f028a25ca7b07d27812d
commit 41fe3aabadcd30fcdc60f028a25ca7b07d27812d
Author: Shiji Yang <yangshiji66 at outlook.com>
AuthorDate: Sun Jun 1 14:52:22 2025 +0800
ipq806x: dts: correct PCIe device node name
According to the dtc source code, the PCIe device node unitname
needs to follow the following naming rules:
```
reg = fdt32_to_cpu(cells[0]);
dev = (reg & 0xf800) >> 11;
func = (reg & 0x700) >> 8;
snprintf(unitname, sizeof(unitname), "%x,%x", dev, func);
```
These devices' reg cell[0] is equal to 0x10000, hence the correct
node unitname should be "0,0". This patch fixes the following dtc
warnings on 6.12 kernel:
qcom-ipq8065-tr4400-v2.dts:482.11-487.4: Warning (pci_device_reg): /soc/pcie at 1b500000/pcie at 0/wifi at 1,0: PCI unit address format error, expected "0,0"
qcom-ipq8065-tr4400-v2.dts:499.11-504.4: Warning (pci_device_reg): /soc/pcie at 1b700000/pcie at 0/wifi at 1,0: PCI unit address format error, expected "0,0"
qcom-ipq8065-rt4230w-rev6.dts:584.11-589.4: Warning (pci_device_reg): /soc/pcie at 1b500000/pcie at 0/wifi at 1,0: PCI unit address format error, expected "0,0"
qcom-ipq8065-rt4230w-rev6.dts:601.11-606.4: Warning (pci_device_reg): /soc/pcie at 1b700000/pcie at 0/wifi at 1,0: PCI unit address format error, expected "0,0"
qcom-ipq8064-g10.dts:291.11-295.4: Warning (pci_device_reg): /soc/pcie at 1b500000/pcie at 0/wifi at 1,0: PCI unit address format error, expected "0,0"
qcom-ipq8064-g10.dts:303.11-307.4: Warning (pci_device_reg): /soc/pcie at 1b700000/pcie at 0/wifi at 1,0: PCI unit address format error, expected "0,0"
qcom-ipq8064-wxr-2533dhp.dts:525.11-530.4: Warning (pci_device_reg): /soc/pcie at 1b500000/pcie at 0/wifi at 1,0: PCI unit address format error, expected "0,0"
qcom-ipq8064-wxr-2533dhp.dts:539.11-544.4: Warning (pci_device_reg): /soc/pcie at 1b700000/pcie at 0/wifi at 1,0: PCI unit address format error, expected "0,0"
qcom-ipq8068-ecw5410.dts:235.11-239.4: Warning (pci_device_reg): /soc/pcie at 1b500000/pcie at 0/wifi at 1,0: PCI unit address format error, expected "0,0"
qcom-ipq8068-ecw5410.dts:251.11-255.4: Warning (pci_device_reg): /soc/pcie at 1b700000/pcie at 0/wifi at 1,0: PCI unit address format error, expected "0,0"
qcom-ipq8068-ap3935.dts:261.11-264.4: Warning (pci_device_reg): /soc/pcie at 1b500000/pcie at 0/wifi at 1,0: PCI unit address format error, expected "0,0"
qcom-ipq8068-ap3935.dts:275.11-278.4: Warning (pci_device_reg): /soc/pcie at 1b700000/pcie at 0/wifi at 1,0: PCI unit address format error, expected "0,0"
qcom-ipq8064-fap-421e.dts:347.11-352.4: Warning (pci_device_reg): /soc/pcie at 1b500000/pcie at 0/wifi at 1,0: PCI unit address format error, expected "0,0"
qcom-ipq8064-fap-421e.dts:362.11-367.4: Warning (pci_device_reg): /soc/pcie at 1b700000/pcie at 0/wifi at 1,0: PCI unit address format error, expected "0,0"
qcom-ipq8068-cryptid-common.dtsi:78.18-81.4: Warning (pci_device_reg): /soc/pcie at 1b500000/pcie at 0/wifi at 1,0: PCI unit address format error, expected "0,0"
qcom-ipq8068-cryptid-common.dtsi:89.18-92.4: Warning (pci_device_reg): /soc/pcie at 1b700000/pcie at 0/wifi at 1,0: PCI unit address format error, expected "0,0"
qcom-ipq8068-cryptid-common.dtsi:100.18-103.4: Warning (pci_device_reg): /soc/pcie at 1b900000/pcie at 0/wifi at 1,0: PCI unit address format error, expected "0,0"
qcom-ipq8064-wg2600hp.dts:464.11-469.4: Warning (pci_device_reg): /soc/pcie at 1b500000/pcie at 0/wifi at 1,0: PCI unit address format error, expected "0,0"
qcom-ipq8064-wg2600hp.dts:478.11-483.4: Warning (pci_device_reg): /soc/pcie at 1b700000/pcie at 0/wifi at 1,0: PCI unit address format error, expected "0,0"
qcom-ipq8062-wg2600hp3.dts:404.11-410.4: Warning (pci_device_reg): /soc/pcie at 1b500000/pcie at 0/wifi at 1,0: PCI unit address format error, expected "0,0"
qcom-ipq8062-wg2600hp3.dts:419.11-426.4: Warning (pci_device_reg): /soc/pcie at 1b700000/pcie at 0/wifi at 1,0: PCI unit address format error, expected "0,0"
qcom-ipq8064-d7800.dts:210.11-215.4: Warning (pci_device_reg): /soc/pcie at 1b500000/pcie at 0/wifi at 1,0: PCI unit address format error, expected "0,0"
qcom-ipq8064-d7800.dts:227.11-232.4: Warning (pci_device_reg): /soc/pcie at 1b700000/pcie at 0/wifi at 1,0: PCI unit address format error, expected "0,0"
qcom-ipq8064-r7500v2.dts:213.11-218.4: Warning (pci_device_reg): /soc/pcie at 1b500000/pcie at 0/wifi at 1,0: PCI unit address format error, expected "0,0"
qcom-ipq8064-r7500v2.dts:230.11-235.4: Warning (pci_device_reg): /soc/pcie at 1b700000/pcie at 0/wifi at 1,0: PCI unit address format error, expected "0,0"
qcom-ipq8065-nighthawk.dtsi:546.18-549.4: Warning (pci_device_reg): /soc/pcie at 1b500000/pcie at 0/wifi at 1,0: PCI unit address format error, expected "0,0"
qcom-ipq8065-nighthawk.dtsi:559.18-562.4: Warning (pci_device_reg): /soc/pcie at 1b700000/pcie at 0/wifi at 1,0: PCI unit address format error, expected "0,0"
qcom-ipq8065-ac400i.dts:202.11-206.4: Warning (pci_device_reg): /soc/pcie at 1b500000/pcie at 0/wifi at 1,0: PCI unit address format error, expected "0,0"
qcom-ipq8065-ac400i.dts:218.11-222.4: Warning (pci_device_reg): /soc/pcie at 1b700000/pcie at 0/wifi at 1,0: PCI unit address format error, expected "0,0"
qcom-ipq8064-ad7200-c2600.dtsi:319.11-324.4: Warning (pci_device_reg): /soc/pcie at 1b500000/pcie at 0/wifi at 1,0: PCI unit address format error, expected "0,0"
qcom-ipq8064-ad7200-c2600.dtsi:333.11-338.4: Warning (pci_device_reg): /soc/pcie at 1b700000/pcie at 0/wifi at 1,0: PCI unit address format error, expected "0,0"
qcom-ipq8064-vr2600v.dts:347.11-352.4: Warning (pci_device_reg): /soc/pcie at 1b500000/pcie at 0/wifi at 1,0: PCI unit address format error, expected "0,0"
qcom-ipq8064-vr2600v.dts:361.11-366.4: Warning (pci_device_reg): /soc/pcie at 1b700000/pcie at 0/wifi at 1,0: PCI unit address format error, expected "0,0"
Signed-off-by: Shiji Yang <yangshiji66 at outlook.com>
Link: https://github.com/openwrt/openwrt/pull/18989
Signed-off-by: Christian Marangi <ansuelsmth at gmail.com>
---
.../files-6.12/arch/arm/boot/dts/qcom/qcom-ipq8062-wg2600hp3.dts | 4 ++--
.../arch/arm/boot/dts/qcom/qcom-ipq8064-ad7200-c2600.dtsi | 4 ++--
.../files-6.12/arch/arm/boot/dts/qcom/qcom-ipq8064-d7800.dts | 4 ++--
.../files-6.12/arch/arm/boot/dts/qcom/qcom-ipq8064-fap-421e.dts | 4 ++--
.../ipq806x/files-6.12/arch/arm/boot/dts/qcom/qcom-ipq8064-g10.dts | 4 ++--
.../files-6.12/arch/arm/boot/dts/qcom/qcom-ipq8064-r7500v2.dts | 4 ++--
.../files-6.12/arch/arm/boot/dts/qcom/qcom-ipq8064-vr2600v.dts | 4 ++--
.../files-6.12/arch/arm/boot/dts/qcom/qcom-ipq8064-wg2600hp.dts | 4 ++--
.../files-6.12/arch/arm/boot/dts/qcom/qcom-ipq8064-wxr-2533dhp.dts | 4 ++--
.../files-6.12/arch/arm/boot/dts/qcom/qcom-ipq8065-ac400i.dts | 4 ++--
.../files-6.12/arch/arm/boot/dts/qcom/qcom-ipq8065-nighthawk.dtsi | 4 ++--
.../files-6.12/arch/arm/boot/dts/qcom/qcom-ipq8065-rt4230w-rev6.dts | 4 ++--
.../files-6.12/arch/arm/boot/dts/qcom/qcom-ipq8065-tr4400-v2.dts | 4 ++--
.../files-6.12/arch/arm/boot/dts/qcom/qcom-ipq8068-ap3935.dts | 4 ++--
.../arch/arm/boot/dts/qcom/qcom-ipq8068-cryptid-common.dtsi | 6 +++---
.../files-6.12/arch/arm/boot/dts/qcom/qcom-ipq8068-ecw5410.dts | 4 ++--
.../files-6.12/arch/arm/boot/dts/qcom/qcom-ipq8068-ss-w2-ac2600.dts | 4 ++--
17 files changed, 35 insertions(+), 35 deletions(-)
diff --git a/target/linux/ipq806x/files-6.12/arch/arm/boot/dts/qcom/qcom-ipq8062-wg2600hp3.dts b/target/linux/ipq806x/files-6.12/arch/arm/boot/dts/qcom/qcom-ipq8062-wg2600hp3.dts
index b208c7ca53..602c3b115e 100644
--- a/target/linux/ipq806x/files-6.12/arch/arm/boot/dts/qcom/qcom-ipq8062-wg2600hp3.dts
+++ b/target/linux/ipq806x/files-6.12/arch/arm/boot/dts/qcom/qcom-ipq8062-wg2600hp3.dts
@@ -401,7 +401,7 @@
};
&pcie_bridge0 {
- wifi at 1,0 {
+ wifi at 0,0 {
compatible = "qcom,ath10k";
reg = <0x00010000 0 0 0 0>;
nvmem-cells = <&macaddr_PRODUCTDATA_12>, <&precal_ART_1000>;
@@ -416,7 +416,7 @@
};
&pcie_bridge1 {
- wifi at 1,0 {
+ wifi at 0,0 {
compatible = "qcom,ath10k";
reg = <0x00010000 0 0 0 0>;
ieee80211-freq-limit = <2400000 2483000>;
diff --git a/target/linux/ipq806x/files-6.12/arch/arm/boot/dts/qcom/qcom-ipq8064-ad7200-c2600.dtsi b/target/linux/ipq806x/files-6.12/arch/arm/boot/dts/qcom/qcom-ipq8064-ad7200-c2600.dtsi
index d28a07f003..c54ec40428 100644
--- a/target/linux/ipq806x/files-6.12/arch/arm/boot/dts/qcom/qcom-ipq8064-ad7200-c2600.dtsi
+++ b/target/linux/ipq806x/files-6.12/arch/arm/boot/dts/qcom/qcom-ipq8064-ad7200-c2600.dtsi
@@ -316,7 +316,7 @@
};
&pcie_bridge0 {
- wifi at 1,0 {
+ wifi at 0,0 {
compatible = "qcom,ath10k";
reg = <0x00010000 0 0 0 0>;
nvmem-cells = <&macaddr_defaultmac_8 (-1)>, <&precal_radio_1000>;
@@ -330,7 +330,7 @@
};
&pcie_bridge1 {
- wifi at 1,0 {
+ wifi at 0,0 {
compatible = "qcom,ath10k";
reg = <0x00010000 0 0 0 0>;
nvmem-cells = <&macaddr_defaultmac_8 0>, <&precal_radio_5000>;
diff --git a/target/linux/ipq806x/files-6.12/arch/arm/boot/dts/qcom/qcom-ipq8064-d7800.dts b/target/linux/ipq806x/files-6.12/arch/arm/boot/dts/qcom/qcom-ipq8064-d7800.dts
index d4d78674a6..98cba96580 100644
--- a/target/linux/ipq806x/files-6.12/arch/arm/boot/dts/qcom/qcom-ipq8064-d7800.dts
+++ b/target/linux/ipq806x/files-6.12/arch/arm/boot/dts/qcom/qcom-ipq8064-d7800.dts
@@ -207,7 +207,7 @@
};
&pcie_bridge0 {
- wifi at 1,0 {
+ wifi at 0,0 {
compatible = "qcom,ath10k";
reg = <0x00010000 0 0 0 0>;
nvmem-cells = <&macaddr_art_6 1>, <&precal_art_1000>;
@@ -224,7 +224,7 @@
};
&pcie_bridge1 {
- wifi at 1,0 {
+ wifi at 0,0 {
compatible = "qcom,ath10k";
reg = <0x00010000 0 0 0 0>;
nvmem-cells = <&macaddr_art_6 2>, <&precal_art_5000>;
diff --git a/target/linux/ipq806x/files-6.12/arch/arm/boot/dts/qcom/qcom-ipq8064-fap-421e.dts b/target/linux/ipq806x/files-6.12/arch/arm/boot/dts/qcom/qcom-ipq8064-fap-421e.dts
index 8e74567f54..371fdbacb2 100644
--- a/target/linux/ipq806x/files-6.12/arch/arm/boot/dts/qcom/qcom-ipq8064-fap-421e.dts
+++ b/target/linux/ipq806x/files-6.12/arch/arm/boot/dts/qcom/qcom-ipq8064-fap-421e.dts
@@ -344,7 +344,7 @@
};
&pcie_bridge0 {
- wifi at 1,0 {
+ wifi at 0,0 {
compatible = "qcom,ath10k";
reg = <0x00010000 0 0 0 0>;
nvmem-cells = <&macaddr_appsbl_7ff80 8>;
@@ -359,7 +359,7 @@
};
&pcie_bridge1 {
- wifi at 1,0 {
+ wifi at 0,0 {
compatible = "qcom,ath10k";
reg = <0x00010000 0 0 0 0>;
nvmem-cells = <&macaddr_appsbl_7ff80 16>;
diff --git a/target/linux/ipq806x/files-6.12/arch/arm/boot/dts/qcom/qcom-ipq8064-g10.dts b/target/linux/ipq806x/files-6.12/arch/arm/boot/dts/qcom/qcom-ipq8064-g10.dts
index 1cecb301b4..2e901d5a20 100644
--- a/target/linux/ipq806x/files-6.12/arch/arm/boot/dts/qcom/qcom-ipq8064-g10.dts
+++ b/target/linux/ipq806x/files-6.12/arch/arm/boot/dts/qcom/qcom-ipq8064-g10.dts
@@ -288,7 +288,7 @@
};
&pcie_bridge0 {
- wifi at 1,0 {
+ wifi at 0,0 {
compatible = "qcom,ath10k";
reg = <0x00010000 0 0 0 0>;
qcom,ath10k-calibration-variant = "ASRock-G10";
@@ -300,7 +300,7 @@
};
&pcie_bridge1 {
- wifi at 1,0 {
+ wifi at 0,0 {
compatible = "qcom,ath10k";
reg = <0x00010000 0 0 0 0>;
qcom,ath10k-calibration-variant = "ASRock-G10";
diff --git a/target/linux/ipq806x/files-6.12/arch/arm/boot/dts/qcom/qcom-ipq8064-r7500v2.dts b/target/linux/ipq806x/files-6.12/arch/arm/boot/dts/qcom/qcom-ipq8064-r7500v2.dts
index 6b79488d7f..dd8d0b3cf1 100644
--- a/target/linux/ipq806x/files-6.12/arch/arm/boot/dts/qcom/qcom-ipq8064-r7500v2.dts
+++ b/target/linux/ipq806x/files-6.12/arch/arm/boot/dts/qcom/qcom-ipq8064-r7500v2.dts
@@ -210,7 +210,7 @@
};
&pcie_bridge0 {
- wifi at 1,0 {
+ wifi at 0,0 {
compatible = "qcom,ath10k";
reg = <0x00010000 0 0 0 0>;
nvmem-cells = <&macaddr_art_6 1>, <&precal_art_1000>;
@@ -227,7 +227,7 @@
};
&pcie_bridge1 {
- wifi at 1,0 {
+ wifi at 0,0 {
compatible = "qcom,ath10k";
reg = <0x00010000 0 0 0 0>;
nvmem-cells = <&macaddr_art_6 2>, <&precal_art_5000>;
diff --git a/target/linux/ipq806x/files-6.12/arch/arm/boot/dts/qcom/qcom-ipq8064-vr2600v.dts b/target/linux/ipq806x/files-6.12/arch/arm/boot/dts/qcom/qcom-ipq8064-vr2600v.dts
index 32c0ee0d7b..132ccbe1c2 100644
--- a/target/linux/ipq806x/files-6.12/arch/arm/boot/dts/qcom/qcom-ipq8064-vr2600v.dts
+++ b/target/linux/ipq806x/files-6.12/arch/arm/boot/dts/qcom/qcom-ipq8064-vr2600v.dts
@@ -344,7 +344,7 @@
};
&pcie_bridge0 {
- wifi at 1,0 {
+ wifi at 0,0 {
compatible = "qcom,ath10k";
reg = <0x00010000 0 0 0 0>;
nvmem-cells = <&macaddr_defaultmac_0 (-1)>, <&precal_ART_1000>;
@@ -358,7 +358,7 @@
};
&pcie_bridge1 {
- wifi at 1,0 {
+ wifi at 0,0 {
compatible = "qcom,ath10k";
reg = <0x00010000 0 0 0 0>;
nvmem-cells = <&macaddr_defaultmac_0 0>, <&precal_ART_5000>;
diff --git a/target/linux/ipq806x/files-6.12/arch/arm/boot/dts/qcom/qcom-ipq8064-wg2600hp.dts b/target/linux/ipq806x/files-6.12/arch/arm/boot/dts/qcom/qcom-ipq8064-wg2600hp.dts
index 3230ddc926..9e1f105776 100644
--- a/target/linux/ipq806x/files-6.12/arch/arm/boot/dts/qcom/qcom-ipq8064-wg2600hp.dts
+++ b/target/linux/ipq806x/files-6.12/arch/arm/boot/dts/qcom/qcom-ipq8064-wg2600hp.dts
@@ -461,7 +461,7 @@ switch at 10 {
};
&pcie_bridge0 {
- wifi at 1,0 {
+ wifi at 0,0 {
compatible = "qcom,ath10k";
reg = <0x00010000 0 0 0 0>;
nvmem-cells = <&macaddr_PRODUCTDATA_12>, <&precal_ART_1000>;
@@ -475,7 +475,7 @@ switch at 10 {
};
&pcie_bridge1 {
- wifi at 1,0 {
+ wifi at 0,0 {
compatible = "qcom,ath10k";
reg = <0x00010000 0 0 0 0>;
nvmem-cells = <&macaddr_PRODUCTDATA_c>, <&precal_ART_5000>;
diff --git a/target/linux/ipq806x/files-6.12/arch/arm/boot/dts/qcom/qcom-ipq8064-wxr-2533dhp.dts b/target/linux/ipq806x/files-6.12/arch/arm/boot/dts/qcom/qcom-ipq8064-wxr-2533dhp.dts
index 84e7e55c26..8c31dbcafa 100644
--- a/target/linux/ipq806x/files-6.12/arch/arm/boot/dts/qcom/qcom-ipq8064-wxr-2533dhp.dts
+++ b/target/linux/ipq806x/files-6.12/arch/arm/boot/dts/qcom/qcom-ipq8064-wxr-2533dhp.dts
@@ -522,7 +522,7 @@
};
&pcie_bridge0 {
- wifi at 1,0 {
+ wifi at 0,0 {
compatible = "qcom,ath10k";
reg = <0x00010000 0 0 0 0>;
nvmem-cells = <&macaddr_ART_1e>, <&precal_ART_1000>;
@@ -536,7 +536,7 @@
};
&pcie_bridge1 {
- wifi at 1,0 {
+ wifi at 0,0 {
compatible = "qcom,ath10k";
reg = <0x00010000 0 0 0 0>;
nvmem-cells = <&macaddr_ART_18>, <&precal_ART_5000>;
diff --git a/target/linux/ipq806x/files-6.12/arch/arm/boot/dts/qcom/qcom-ipq8065-ac400i.dts b/target/linux/ipq806x/files-6.12/arch/arm/boot/dts/qcom/qcom-ipq8065-ac400i.dts
index bd4312cfa3..c6876480aa 100644
--- a/target/linux/ipq806x/files-6.12/arch/arm/boot/dts/qcom/qcom-ipq8065-ac400i.dts
+++ b/target/linux/ipq806x/files-6.12/arch/arm/boot/dts/qcom/qcom-ipq8065-ac400i.dts
@@ -199,7 +199,7 @@
};
&pcie_bridge0 {
- wifi at 1,0 {
+ wifi at 0,0 {
compatible = "qcom,ath10k";
reg = <0x00010000 0 0 0 0>;
qcom,ath10k-calibration-variant = "Nokia-AC400i";
@@ -215,7 +215,7 @@
};
&pcie_bridge1 {
- wifi at 1,0 {
+ wifi at 0,0 {
compatible = "qcom,ath10k";
reg = <0x00010000 0 0 0 0>;
qcom,ath10k-calibration-variant = "Nokia-AC400i";
diff --git a/target/linux/ipq806x/files-6.12/arch/arm/boot/dts/qcom/qcom-ipq8065-nighthawk.dtsi b/target/linux/ipq806x/files-6.12/arch/arm/boot/dts/qcom/qcom-ipq8065-nighthawk.dtsi
index b4ffdcc792..4f1b49f63c 100644
--- a/target/linux/ipq806x/files-6.12/arch/arm/boot/dts/qcom/qcom-ipq8065-nighthawk.dtsi
+++ b/target/linux/ipq806x/files-6.12/arch/arm/boot/dts/qcom/qcom-ipq8065-nighthawk.dtsi
@@ -543,7 +543,7 @@
};
&pcie_bridge0 {
- wifi0: wifi at 1,0 {
+ wifi0: wifi at 0,0 {
compatible = "qcom,ath10k";
reg = <0x00010000 0 0 0 0>;
};
@@ -556,7 +556,7 @@
};
&pcie_bridge1 {
- wifi1: wifi at 1,0 {
+ wifi1: wifi at 0,0 {
compatible = "qcom,ath10k";
reg = <0x00010000 0 0 0 0>;
};
diff --git a/target/linux/ipq806x/files-6.12/arch/arm/boot/dts/qcom/qcom-ipq8065-rt4230w-rev6.dts b/target/linux/ipq806x/files-6.12/arch/arm/boot/dts/qcom/qcom-ipq8065-rt4230w-rev6.dts
index e4ee3d2f3b..500f2f15f8 100644
--- a/target/linux/ipq806x/files-6.12/arch/arm/boot/dts/qcom/qcom-ipq8065-rt4230w-rev6.dts
+++ b/target/linux/ipq806x/files-6.12/arch/arm/boot/dts/qcom/qcom-ipq8065-rt4230w-rev6.dts
@@ -581,7 +581,7 @@
};
&pcie_bridge0 {
- wifi at 1,0 {
+ wifi at 0,0 {
compatible = "qcom,ath10k";
reg = <0x00010000 0 0 0 0>;
nvmem-cells = <&precal_ART_1000>;
@@ -598,7 +598,7 @@
};
&pcie_bridge1 {
- wifi at 1,0 {
+ wifi at 0,0 {
compatible = "qcom,ath10k";
reg = <0x00010000 0 0 0 0>;
nvmem-cells = <&precal_ART_5000>;
diff --git a/target/linux/ipq806x/files-6.12/arch/arm/boot/dts/qcom/qcom-ipq8065-tr4400-v2.dts b/target/linux/ipq806x/files-6.12/arch/arm/boot/dts/qcom/qcom-ipq8065-tr4400-v2.dts
index 22b5381b48..37c8dc29dd 100644
--- a/target/linux/ipq806x/files-6.12/arch/arm/boot/dts/qcom/qcom-ipq8065-tr4400-v2.dts
+++ b/target/linux/ipq806x/files-6.12/arch/arm/boot/dts/qcom/qcom-ipq8065-tr4400-v2.dts
@@ -479,7 +479,7 @@
};
&pcie_bridge0 {
- wifi at 1,0 {
+ wifi at 0,0 {
compatible = "qcom,ath10k";
reg = <0x00010000 0 0 0 0>;
nvmem-cells = <&precal_ART_1000>, <&macaddr_fw_env_12>;
@@ -496,7 +496,7 @@
};
&pcie_bridge1 {
- wifi at 1,0 {
+ wifi at 0,0 {
compatible = "qcom,ath10k";
reg = <0x00010000 0 0 0 0>;
nvmem-cells = <&precal_ART_5000>, <&macaddr_fw_env_c>;
diff --git a/target/linux/ipq806x/files-6.12/arch/arm/boot/dts/qcom/qcom-ipq8068-ap3935.dts b/target/linux/ipq806x/files-6.12/arch/arm/boot/dts/qcom/qcom-ipq8068-ap3935.dts
index 74054fedc8..b1b3b661f1 100644
--- a/target/linux/ipq806x/files-6.12/arch/arm/boot/dts/qcom/qcom-ipq8068-ap3935.dts
+++ b/target/linux/ipq806x/files-6.12/arch/arm/boot/dts/qcom/qcom-ipq8068-ap3935.dts
@@ -258,7 +258,7 @@
};
&pcie_bridge0 {
- wifi at 1,0 {
+ wifi at 0,0 {
compatible = "qcom,ath10k";
reg = <0x00010000 0 0 0 0>;
};
@@ -272,7 +272,7 @@
};
&pcie_bridge1 {
- wifi at 1,0 {
+ wifi at 0,0 {
compatible = "qcom,ath10k";
reg = <0x00010000 0 0 0 0>;
};
diff --git a/target/linux/ipq806x/files-6.12/arch/arm/boot/dts/qcom/qcom-ipq8068-cryptid-common.dtsi b/target/linux/ipq806x/files-6.12/arch/arm/boot/dts/qcom/qcom-ipq8068-cryptid-common.dtsi
index 231d688c35..c38ded86ee 100644
--- a/target/linux/ipq806x/files-6.12/arch/arm/boot/dts/qcom/qcom-ipq8068-cryptid-common.dtsi
+++ b/target/linux/ipq806x/files-6.12/arch/arm/boot/dts/qcom/qcom-ipq8068-cryptid-common.dtsi
@@ -75,7 +75,7 @@
};
&pcie_bridge0 {
- wifi0: wifi at 1,0 {
+ wifi0: wifi at 0,0 {
compatible = "qcom,ath10k";
reg = <0x00010000 0 0 0 0>;
};
@@ -86,7 +86,7 @@
};
&pcie_bridge1 {
- wifi1: wifi at 1,0 {
+ wifi1: wifi at 0,0 {
compatible = "qcom,ath10k";
reg = <0x00010000 0 0 0 0>;
};
@@ -97,7 +97,7 @@
};
&pcie_bridge2 {
- wifi2: wifi at 1,0 {
+ wifi2: wifi at 0,0 {
compatible = "qcom,ath10k";
reg = <0x00010000 0 0 0 0>;
};
diff --git a/target/linux/ipq806x/files-6.12/arch/arm/boot/dts/qcom/qcom-ipq8068-ecw5410.dts b/target/linux/ipq806x/files-6.12/arch/arm/boot/dts/qcom/qcom-ipq8068-ecw5410.dts
index eae96da736..2bf793c41c 100644
--- a/target/linux/ipq806x/files-6.12/arch/arm/boot/dts/qcom/qcom-ipq8068-ecw5410.dts
+++ b/target/linux/ipq806x/files-6.12/arch/arm/boot/dts/qcom/qcom-ipq8068-ecw5410.dts
@@ -232,7 +232,7 @@
};
&pcie_bridge0 {
- wifi at 1,0 {
+ wifi at 0,0 {
compatible = "qcom,ath10k";
reg = <0x00010000 0 0 0 0>;
qcom,ath10k-calibration-variant = "Edgecore-ECW5410-L";
@@ -248,7 +248,7 @@
};
&pcie_bridge1 {
- wifi at 1,0 {
+ wifi at 0,0 {
compatible = "qcom,ath10k";
reg = <0x00010000 0 0 0 0>;
qcom,ath10k-calibration-variant = "Edgecore-ECW5410-L";
diff --git a/target/linux/ipq806x/files-6.12/arch/arm/boot/dts/qcom/qcom-ipq8068-ss-w2-ac2600.dts b/target/linux/ipq806x/files-6.12/arch/arm/boot/dts/qcom/qcom-ipq8068-ss-w2-ac2600.dts
index 28f7c4540f..6d43b80ad4 100644
--- a/target/linux/ipq806x/files-6.12/arch/arm/boot/dts/qcom/qcom-ipq8068-ss-w2-ac2600.dts
+++ b/target/linux/ipq806x/files-6.12/arch/arm/boot/dts/qcom/qcom-ipq8068-ss-w2-ac2600.dts
@@ -203,7 +203,7 @@
};
&pcie_bridge1 {
- wifi at 1,0 {
+ wifi at 0,0 {
compatible = "qcom,ath10k";
reg = <0x00010000 0 0 0 0>;
qcom,ath10k-calibration-variant = "IgniteNet-SS-W2-AC2600";
@@ -217,7 +217,7 @@
};
&pcie_bridge2 {
- wifi at 1,0 {
+ wifi at 0,0 {
compatible = "qcom,ath10k";
reg = <0x00010000 0 0 0 0>;
qcom,ath10k-calibration-variant = "IgniteNet-SS-W2-AC2600";
More information about the lede-commits
mailing list