ath79: consistently use "info" label for default-mac partition

The tp-link safeloader devices typically contain a partition
"default-mac" which stores the MAC addresses. It is followed by other
partitions containing device info, like

  {"default-mac", 0x610000, 0x00020},
  {"pin", 0x610100, 0x00020},
  {"product-info", 0x611100, 0x01000},

In DTS, we typically assign a 0x10000 sized partition for these,
which is mostly labelled "mac" or "info". In rarer cases, the
partitions have been enclosed in a larger "tplink" or "config"
partition.

However, when comparing different devices, the implementation appears
relatively arbitrary at the moment.
Thus, this PR aims at harmonizing these partitions by always using
the name "info" for the DTS partition containing "default-mac".
"info" is preferred over "mac" as we never just have "default-mac"
alone, but always some other device-info partitions as well.

While at it, this also establishes a similar partitioning for the
few devices where the "info" partitions are part of a bigger
unspecific "config" partition or similar.

Besides the harmonization itself, this also allows to merge a few
cases in 11-ath10k-caldata.

Signed-off-by: Adrian Schmutzler <freifunk@adrianschmutzler.de>
This commit is contained in:
Adrian Schmutzler 2020-09-12 20:54:04 +02:00
parent cb9bb908de
commit a99614a44f
19 changed files with 78 additions and 56 deletions

View File

@ -100,7 +100,7 @@
status = "okay";
mtd-cal-data = <&art 0x1000>;
mtd-mac-address = <&info 0x08>;
mtd-mac-address = <&info 0x8>;
};
&eth0 {

View File

@ -126,9 +126,15 @@
reg = <0x020000 0x730000>;
};
tplink: partition@750000 {
info: partition@750000 {
label = "info";
reg = <0x750000 0x010000>;
read-only;
};
partition@760000 {
label = "tplink";
reg = <0x750000 0x0a0000>;
reg = <0x760000 0x090000>;
read-only;
};
@ -146,7 +152,7 @@
phy-handle = <&swphy4>;
mtd-mac-address = <&tplink 0x8>;
mtd-mac-address = <&info 0x8>;
mtd-mac-address-increment = <1>;
};
@ -158,7 +164,7 @@
status = "okay";
mtd-cal-data = <&art 0x1000>;
mtd-mac-address = <&tplink 0x8>;
mtd-mac-address = <&info 0x8>;
};
&pcie0 {

View File

@ -125,9 +125,21 @@
compatible = "tplink,firmware";
};
config: partition@3b0000 {
partition@3b0000 {
label = "partition-table";
reg = <0x3b0000 0x010000>;
read-only;
};
info: partition@3c0000 {
label = "info";
reg = <0x3c0000 0x010000>;
read-only;
};
partition@3d0000 {
label = "config";
reg = <0x3b0000 0x040000>;
reg = <0x3d0000 0x020000>;
read-only;
};
@ -145,7 +157,7 @@
phy-handle = <&swphy4>;
mtd-mac-address = <&config 0x10008>;
mtd-mac-address = <&info 0x8>;
};
&eth1 {
@ -156,5 +168,5 @@
status = "okay";
mtd-cal-data = <&art 0x1000>;
mtd-mac-address = <&config 0x10008>;
mtd-mac-address = <&info 0x8>;
};

View File

@ -100,7 +100,7 @@
phy-handle = <&phy4>;
pll-data = <0x9e000000 0x80000101 0x80001313>;
mtd-mac-address = <&config 0x10008>;
mtd-mac-address = <&info 0x8>;
gmac-config {
device = <&gmac>;
@ -144,9 +144,21 @@
reg = <0x020000 0xd70000>;
};
config: partition@d90000 {
partition@d90000 {
label = "partition-table";
reg = <0xd90000 0x010000>;
read-only;
};
info: partition@da0000 {
label = "info";
reg = <0xda0000 0x020000>;
read-only;
};
partition@dc0000 {
label = "config";
reg = <0xd90000 0x260000>;
reg = <0xdc0000 0x230000>;
read-only;
};
@ -167,5 +179,5 @@
status = "okay";
mtd-cal-data = <&art 0x1000>;
mtd-mac-address = <&config 0x10008>;
mtd-mac-address = <&info 0x8>;
};

View File

@ -28,8 +28,8 @@
read-only;
};
mac: partition@10000 {
label = "mac";
info: partition@10000 {
label = "info";
reg = <0x010000 0x010000>;
read-only;
};

View File

@ -52,8 +52,8 @@
read-only;
};
mac: partition@10000 {
label = "mac";
info: partition@10000 {
label = "info";
reg = <0x010000 0x010000>;
read-only;
};

View File

@ -58,8 +58,8 @@
read-only;
};
mac: partition@30000 {
label = "mac";
info: partition@30000 {
label = "info";
reg = <0x030000 0x010000>;
read-only;
};

View File

@ -130,7 +130,7 @@
phy-handle = <&swphy0>;
mtd-mac-address = <&mac 0x8>;
mtd-mac-address = <&info 0x8>;
mtd-mac-address-increment = <1>;
gmac-config {
@ -144,12 +144,12 @@
&eth1 {
status = "okay";
mtd-mac-address = <&mac 0x8>;
mtd-mac-address = <&info 0x8>;
};
&wmac {
status = "okay";
mtd-cal-data = <&art 0x1000>;
mtd-mac-address = <&mac 0x8>;
mtd-mac-address = <&info 0x8>;
};

View File

@ -40,8 +40,8 @@
read-only;
};
mac: partition@10000 {
label = "mac";
info: partition@10000 {
label = "info";
reg = <0x010000 0x010000>;
read-only;
};

View File

@ -40,8 +40,8 @@
read-only;
};
mac: partition@1fb00 {
label = "mac";
info: partition@1fb00 {
label = "info";
reg = <0x01fb00 0x000500>;
read-only;
};

View File

@ -35,8 +35,8 @@
read-only;
};
mac: partition@1fb00 {
label = "mac";
info: partition@1fb00 {
label = "info";
reg = <0x01fb00 0x000500>;
read-only;
};

View File

@ -76,19 +76,19 @@
phy-handle = <&swphy4>;
mtd-mac-address = <&mac 0x8>;
mtd-mac-address = <&info 0x8>;
mtd-mac-address-increment = <1>;
};
&eth1 {
status = "okay";
mtd-mac-address = <&mac 0x8>;
mtd-mac-address = <&info 0x8>;
};
&wmac {
status = "okay";
mtd-cal-data = <&art 0x1000>;
mtd-mac-address = <&mac 0x8>;
mtd-mac-address = <&info 0x8>;
};

View File

@ -96,8 +96,8 @@
read-only;
};
mac: partition@20000 {
label = "mac";
info: partition@20000 {
label = "info";
reg = <0x020000 0x010000>;
read-only;
};

View File

@ -96,8 +96,8 @@
read-only;
};
mac: partition@20000 {
label = "mac";
info: partition@20000 {
label = "info";
reg = <0x020000 0x010000>;
read-only;
};

View File

@ -42,12 +42,12 @@
phy-mode = "sgmii";
phy-handle = <&phy0>;
mtd-mac-address = <&mac 0x8>;
mtd-mac-address = <&info 0x8>;
};
&wmac {
status = "okay";
mtd-cal-data = <&art 0x1000>;
mtd-mac-address = <&mac 0x8>;
mtd-mac-address = <&info 0x8>;
};

View File

@ -9,8 +9,8 @@
};
&partitions {
mac: partition@630000 {
label = "mac";
info: partition@630000 {
label = "info";
reg = <0x630000 0x010000>;
read-only;
};

View File

@ -15,8 +15,8 @@
read-only;
};
mac: partition@7e0000 {
label = "mac";
info: partition@7e0000 {
label = "info";
reg = <0x7e0000 0x010000>;
read-only;
};

View File

@ -35,9 +35,9 @@
};
&eth0 {
mtd-mac-address = <&mac 0x8>;
mtd-mac-address = <&info 0x8>;
};
&wmac {
mtd-mac-address = <&mac 0x8>;
mtd-mac-address = <&info 0x8>;
};

View File

@ -98,7 +98,8 @@ case "$FIRMWARE" in
tplink,archer-c2-v3|\
tplink,archer-c7-v4|\
tplink,archer-c7-v5|\
tplink,archer-c25-v1)
tplink,archer-c25-v1|\
tplink,tl-wr902ac-v1)
caldata_extract "art" 0x5000 0x844
ath10k_patch_mac $(macaddr_add $(mtd_get_mac_binary info 0x8) -1)
;;
@ -118,7 +119,7 @@ case "$FIRMWARE" in
;;
tplink,re350k-v1)
caldata_extract "art" 0x5000 0x844
ath10k_patch_mac $(macaddr_add $(mtd_get_mac_binary config 0x10008) +2)
ath10k_patch_mac $(macaddr_add $(mtd_get_mac_binary info 0x8) +2)
;;
tplink,re355-v1|\
tplink,re450-v1)
@ -134,10 +135,6 @@ case "$FIRMWARE" in
caldata_extract "art" 0x5000 0x844
ath10k_patch_mac $(macaddr_add $(mtd_get_mac_binary u-boot 0x0fc00) +1)
;;
tplink,tl-wr902ac-v1)
caldata_extract "art" 0x5000 0x844
ath10k_patch_mac $(macaddr_add $(mtd_get_mac_binary tplink 0x8) -1)
;;
esac
;;
"ath10k/cal-pci-0000:01:00.0.bin")
@ -195,18 +192,13 @@ case "$FIRMWARE" in
tplink,archer-c6-v2|\
tplink,archer-c6-v2-us)
caldata_extract "art" 0x5000 0x2f20
ath10k_patch_mac $(macaddr_add $(mtd_get_mac_binary mac 0x8) -1)
ath10k_patch_mac $(macaddr_add $(mtd_get_mac_binary info 0x8) -1)
ln -sf /lib/firmware/ath10k/pre-cal-pci-0000\:00\:00.0.bin \
/lib/firmware/ath10k/QCA9888/hw2.0/board.bin
;;
tplink,eap225-wall-v2|\
tplink,tl-wpa8630p-v2-eu|\
tplink,tl-wpa8630p-v2-int)
caldata_extract "art" 0x5000 0x2f20
ath10k_patch_mac $(macaddr_add $(mtd_get_mac_binary mac 0x8) +1)
ln -sf /lib/firmware/ath10k/pre-cal-pci-0000\:00\:00.0.bin \
/lib/firmware/ath10k/QCA9888/hw2.0/board.bin
;;
tplink,eap225-wall-v2)
caldata_extract "art" 0x5000 0x2f20
ath10k_patch_mac $(macaddr_add $(mtd_get_mac_binary info 0x8) +1)
ln -sf /lib/firmware/ath10k/pre-cal-pci-0000\:00\:00.0.bin \