ath79: TP-Link EAP245 v3: convert radios to nvmem-cells
[openwrt/openwrt.git] / target / linux / ath79 / dts / ar9331_embeddedwireless_dorin.dts
index dcd7f33f9d5d3ad60baba67697be98a302141ae7..de6b709b5cb65a09d12a4b1f934eae9b76d324ae 100644 (file)
@@ -1,41 +1,37 @@
 // SPDX-License-Identifier: GPL-2.0-or-later OR MIT
-/dts-v1/;
+
+#include "ar9331.dtsi"
 
 #include <dt-bindings/gpio/gpio.h>
 #include <dt-bindings/input/input.h>
 
-#include "ar9331.dtsi"
-
 / {
        model = "Embedded Wireless Dorin";
        compatible = "embeddedwireless,dorin", "qca,ar9331";
 
        aliases {
-               led-boot = &status;
-               led-failsafe = &status;
-               led-running = &status;
-               led-upgrade = &status;
-               serial0 = &uart;
+               led-boot = &led_status;
+               led-failsafe = &led_status;
+               led-running = &led_status;
+               led-upgrade = &led_status;
        };
 
        leds {
                compatible = "gpio-leds";
 
-               status: status {
-                       label = "dorin:green:status";
+               led_status: status {
+                       label = "green:status";
                        gpios = <&gpio 21 GPIO_ACTIVE_LOW>;
-                       default-state = "off";
                };
        };
 
        keys {
-               compatible = "gpio-keys-polled";
-               poll-interval = <100>;
+               compatible = "gpio-keys";
 
                wps {
                        label = "wps";
                        linux,code = <KEY_WPS_BUTTON>;
-                       gpios = <&gpio 11 GPIO_ACTIVE_LOW>;
+                       gpios = <&gpio 11 GPIO_ACTIVE_HIGH>;
                };
 
                reset {
        };
 };
 
-&uart {
-       status = "okay";
-};
-
-&gpio {
-       status = "okay";
-};
-
 &usb {
        dr_mode = "host";
        status = "okay";
 };
 
 &spi {
-       num-chipselects = <1>;
        status = "okay";
 
        flash@0 {
                compatible = "jedec,spi-nor";
-               spi-max-frequency = <104000000>;
+               spi-max-frequency = <50000000>;
                reg = <0>;
 
                partitions {
                        };
 
                        partition@2 {
+                               compatible = "denx,uimage";
                                label = "firmware";
                                reg = <0x050000 0xfa0000>;
                        };
 
                        art: partition@3 {
-                               label = "ART";
+                               label = "art";
                                reg = <0xff0000 0x010000>;
                                read-only;
                        };
 &eth1 {
        status = "okay";
 
-       mtd-mac-address = <&art 0x1002>;
-       mtd-mac-address-increment = <0x40>;
+       nvmem-cells = <&macaddr_art_1002>;
+       nvmem-cell-names = "mac-address";
+       mac-address-increment-byte = <3>;
+       mac-address-increment = <0x40>;
 };
 
 &mdio1 {
 
 &wmac {
        status = "okay";
+
        mtd-cal-data = <&art 0x1000>;
-       mtd-mac-address = <&art 0x1002>;
+};
+
+&art {
+       compatible = "nvmem-cells";
+       #address-cells = <1>;
+       #size-cells = <1>;
+
+       macaddr_art_1002: macaddr@1002 {
+               reg = <0x1002 0x6>;
+       };
 };