diff options
author | Tomasz Maciej Nowak <tmn505@gmail.com> | 2022-06-07 15:58:29 +0200 |
---|---|---|
committer | Christian Lamparter <chunkeey@gmail.com> | 2022-06-24 17:10:24 +0200 |
commit | b52719b71a3337e5ae840c7a50fe41ebdc070f4e (patch) | |
tree | 6c376de48a264f21a79ba447c8daa6fdbc52a7ed /target/linux/ath79/dts/ar7161_jjplus_ja76pf2.dts | |
parent | 5897c52e78e3cd3846db083d48dd9d6b47ff3a08 (diff) | |
download | upstream-b52719b71a3337e5ae840c7a50fe41ebdc070f4e.tar.gz upstream-b52719b71a3337e5ae840c7a50fe41ebdc070f4e.tar.bz2 upstream-b52719b71a3337e5ae840c7a50fe41ebdc070f4e.zip |
ath79: ja76pf2: use nvmem cells to specify MAC addresses
The bootloader on this board hid the partition containig MAC addresses
and prevented adding this space to FIS directory, therefore those had to
be stored in RedBoot configuration as aliases to be able to assigne them
to proper interfaces. Now that fixed partition size are used instead of
redboot-fis parser, the partition containig MAC addresses could be
specified, and with marking it as nvmem cell, we can assign them without
userspace involvement.
Signed-off-by: Tomasz Maciej Nowak <tmn505@gmail.com>
Diffstat (limited to 'target/linux/ath79/dts/ar7161_jjplus_ja76pf2.dts')
-rw-r--r-- | target/linux/ath79/dts/ar7161_jjplus_ja76pf2.dts | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/target/linux/ath79/dts/ar7161_jjplus_ja76pf2.dts b/target/linux/ath79/dts/ar7161_jjplus_ja76pf2.dts index b528c1b69e..dca226d262 100644 --- a/target/linux/ath79/dts/ar7161_jjplus_ja76pf2.dts +++ b/target/linux/ath79/dts/ar7161_jjplus_ja76pf2.dts @@ -101,12 +101,16 @@ ð0 { status = "okay"; + nvmem-cells = <&macaddr_lan>; + nvmem-cell-names = "mac-address"; phy-handle = <&phy0>; }; ð1 { status = "okay"; + nvmem-cells = <&macaddr_wan>; + nvmem-cell-names = "mac-address"; phy-handle = <&phy4>; }; @@ -161,6 +165,17 @@ label = "Atheros Board Data"; reg = <0xff0000 0x10000>; read-only; + compatible = "nvmem-cells"; + #address-cells = <1>; + #size-cells = <1>; + + macaddr_wan: macaddr@1000 { + reg = <0x1000 0x6>; + }; + + macaddr_lan: macaddr@1006 { + reg = <0x1006 0x6>; + }; }; }; }; |