Skip to content

Commit

Permalink
ath79: elecom,wab: use nvmem
Browse files Browse the repository at this point in the history
Userspace handling is deprecated.

Signed-off-by: Rosen Penev <[email protected]>
Link: openwrt/openwrt#16247
Signed-off-by: Hauke Mehrtens <[email protected]>
  • Loading branch information
neheb authored and hauke committed Aug 29, 2024
1 parent 9bbaa6f commit 70e41d0
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 17 deletions.
17 changes: 13 additions & 4 deletions target/linux/ath79/dts/qca955x_elecom_wab.dtsi
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@

/ {
aliases {
label-mac-device = &eth0;
led-boot = &led_status;
led-failsafe = &led_status;
led-upgrade = &led_status;
Expand Down Expand Up @@ -107,6 +108,9 @@
phy-mode = "rgmii-rxid";
pll-data = <0xae000000 0x80000101 0x80001313>;

nvmem-cells = <&macaddr_uboot_ethaddr 0>;
nvmem-cell-names = "mac-address";

gmac-config {
device = <&gmac>;

Expand Down Expand Up @@ -144,8 +148,8 @@
wifi@0,0 {
compatible = "qcom,ath10k";
reg = <0x0000 0 0 0 0>;
nvmem-cells = <&cal_art_5000>;
nvmem-cell-names = "calibration";
nvmem-cells = <&cal_art_5000>, <&macaddr_uboot_ethaddr 1>;
nvmem-cell-names = "calibration", "mac-address";
};
};

Expand All @@ -169,9 +173,14 @@
};

partition@40000 {
compatible = "u-boot,env";
label = "u-boot-env";
reg = <0x40000 0x10000>;
read-only;

macaddr_uboot_ethaddr: ethaddr {
#nvmem-cell-cells = <1>;
};
};

partition@50000 {
Expand Down Expand Up @@ -252,6 +261,6 @@
&wmac {
status = "okay";

nvmem-cells = <&cal_art_1000>;
nvmem-cell-names = "calibration";
nvmem-cells = <&cal_art_1000>, <&macaddr_uboot_ethaddr 0>;
nvmem-cell-names = "calibration", "mac-address";
};
3 changes: 0 additions & 3 deletions target/linux/ath79/generic/base-files/etc/board.d/02_network
Original file line number Diff line number Diff line change
Expand Up @@ -712,9 +712,6 @@ ath79_setup_macs()
lan_mac=$(mtd_get_mac_ascii devdata "lanmac")
wan_mac=$(mtd_get_mac_ascii devdata "wanmac")
;;
elecom,wab-i1750-ps|\
elecom,wab-s1167-ps|\
elecom,wab-s600-ps|\
engenius,ecb1200|\
engenius,ecb1750)
lan_mac=$(mtd_get_mac_ascii u-boot-env ethaddr)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,16 +42,6 @@ case "$board" in
[ "$PHYNBR" -eq 1 ] && \
mtd_get_mac_ascii bdcfg "wlanmac" > /sys${DEVPATH}/macaddress
;;
elecom,wab-i1750-ps|\
elecom,wab-s1167-ps|\
elecom,wab-s600-ps)
# set the 5G MAC address (= ethaddr + 1)
[ "$PHYNBR" -eq 0 ] && \
macaddr_add "$(mtd_get_mac_ascii u-boot-env ethaddr)" 1 > /sys${DEVPATH}/macaddress
# set the 2.4G MAC address (= ethaddr)
[ "$PHYNBR" -eq 1 ] && \
mtd_get_mac_ascii u-boot-env "ethaddr" > /sys${DEVPATH}/macaddress
;;
engenius,ecb1200|\
engenius,ecb1750)
[ "$PHYNBR" -eq 0 ] && \
Expand Down

0 comments on commit 70e41d0

Please sign in to comment.