aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/ipq806x/files/arch/arm/boot/dts/qcom-ipq8064-d7800.dts
diff options
context:
space:
mode:
authorChristian Lamparter <chunkeey@gmail.com>2021-12-28 00:30:13 +0100
committerChristian Lamparter <chunkeey@gmail.com>2022-02-05 00:41:36 +0100
commit20470580cd271de1e6017c88261b577ed4773476 (patch)
treedc9f849a262c32bb7b9bfdfa03cae3d98cd637bc /target/linux/ipq806x/files/arch/arm/boot/dts/qcom-ipq8064-d7800.dts
parenta1693a8c2cdc74a5bf33cabaadc2174f2f088dbf (diff)
downloadupstream-20470580cd271de1e6017c88261b577ed4773476.tar.gz
upstream-20470580cd271de1e6017c88261b577ed4773476.tar.bz2
upstream-20470580cd271de1e6017c88261b577ed4773476.zip
ipq806x: utilize nvmem-cells for pre-calibration data
converts extraction entries from 11-ath10k-caldata into nvmem-cells in the individual board's device-tree file. The patch also moves previously existing referenced nvmem-cells data nodes which were placed at the end back into the partitions node. As well as removing some duplicated properties from qcom-ipq8065-xr500.dts's art (the included nighthawk.dtsi defines those already). Signed-off-by: Christian Lamparter <chunkeey@gmail.com>
Diffstat (limited to 'target/linux/ipq806x/files/arch/arm/boot/dts/qcom-ipq8064-d7800.dts')
-rw-r--r--target/linux/ipq806x/files/arch/arm/boot/dts/qcom-ipq8064-d7800.dts43
1 files changed, 24 insertions, 19 deletions
diff --git a/target/linux/ipq806x/files/arch/arm/boot/dts/qcom-ipq8064-d7800.dts b/target/linux/ipq806x/files/arch/arm/boot/dts/qcom-ipq8064-d7800.dts
index 16a6ca0076..b8314a6bd0 100644
--- a/target/linux/ipq806x/files/arch/arm/boot/dts/qcom-ipq8064-d7800.dts
+++ b/target/linux/ipq806x/files/arch/arm/boot/dts/qcom-ipq8064-d7800.dts
@@ -193,8 +193,8 @@
compatible = "pci168c,0040";
reg = <0x00010000 0 0 0 0>;
- nvmem-cells = <&macaddr_art_6>;
- nvmem-cell-names = "mac-address";
+ nvmem-cells = <&macaddr_art_6>, <&precal_art_1000>;
+ nvmem-cell-names = "mac-address", "pre-calibration";
mac-address-increment = <(1)>;
};
};
@@ -217,8 +217,8 @@
compatible = "pci168c,0040";
reg = <0x00010000 0 0 0 0>;
- nvmem-cells = <&macaddr_art_6>;
- nvmem-cell-names = "mac-address";
+ nvmem-cells = <&macaddr_art_6>, <&precal_art_5000>;
+ nvmem-cell-names = "mac-address", "pre-calibration";
mac-address-increment = <(2)>;
};
};
@@ -274,10 +274,29 @@
read-only;
};
- art: art@1200000 {
+ art@1200000 {
label = "art";
reg = <0x1200000 0x0140000>;
read-only;
+ compatible = "nvmem-cells";
+ #address-cells = <1>;
+ #size-cells = <1>;
+
+ macaddr_art_0: macaddr@0 {
+ reg = <0x0 0x6>;
+ };
+
+ macaddr_art_6: macaddr@6 {
+ reg = <0x6 0x6>;
+ };
+
+ precal_art_1000: precal@1000 {
+ reg = <0x1000 0x2f20>;
+ };
+
+ precal_art_5000: precal@5000 {
+ reg = <0x5000 0x2f20>;
+ };
};
artbak: art@1340000 {
@@ -369,17 +388,3 @@
&adm_dma {
status = "okay";
};
-
-&art {
- compatible = "nvmem-cells";
- #address-cells = <1>;
- #size-cells = <1>;
-
- macaddr_art_0: macaddr@0 {
- reg = <0x0 0x6>;
- };
-
- macaddr_art_6: macaddr@6 {
- reg = <0x6 0x6>;
- };
-};