1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- From 5cbee5828219c4f7b33e96b5d8ce5e467b2857c8 Mon Sep 17 00:00:00 2001
- From: =?UTF-8?q?Rafa=C5=82=20Mi=C5=82ecki?= <[email protected]>
- Date: Fri, 1 Sep 2023 12:55:49 +0200
- Subject: [PATCH] ARM: dts: BCM5301X: Set MACs for D-Link DIR-885L
- MIME-Version: 1.0
- Content-Type: text/plain; charset=UTF-8
- Content-Transfer-Encoding: 8bit
- Specify NVRAM access and use its "et2macaddr" NVMEM cell.
- Signed-off-by: Rafał Miłecki <[email protected]>
- Link: https://lore.kernel.org/r/[email protected]
- Signed-off-by: Florian Fainelli <[email protected]>
- ---
- .../dts/broadcom/bcm47094-dlink-dir-885l.dts | 16 ++++++++++++++++
- 1 file changed, 16 insertions(+)
- --- a/arch/arm/boot/dts/bcm47094-dlink-dir-885l.dts
- +++ b/arch/arm/boot/dts/bcm47094-dlink-dir-885l.dts
- @@ -25,6 +25,15 @@
- <0x88000000 0x08000000>;
- };
-
- + nvram@1e3f0000 {
- + compatible = "brcm,nvram";
- + reg = <0x1e3f0000 0x10000>;
- +
- + et2macaddr: et2macaddr {
- + #nvmem-cell-cells = <1>;
- + };
- + };
- +
- nand_controller: nand-controller@18028000 {
- nand@0 {
- partitions {
- @@ -112,6 +121,11 @@
- vcc-gpio = <&chipcommon 18 GPIO_ACTIVE_HIGH>;
- };
-
- +&gmac0 {
- + nvmem-cells = <&et2macaddr 0>;
- + nvmem-cell-names = "mac-address";
- +};
- +
- &spi_nor {
- status = "okay";
- };
- @@ -142,6 +156,8 @@
-
- port@4 {
- label = "wan";
- + nvmem-cells = <&et2macaddr 3>;
- + nvmem-cell-names = "mac-address";
- };
-
- port@8 {
|