ath79: TP-Link EAP245 v3: convert radios to nvmem-cells
[openwrt/openwrt.git] / target / linux / ath79 / dts / ar7241_ubnt_unifi.dts
index ed6142ef43b31289c78b1a4611a3bd2bcd5e8966..3c50e89d0175ef7445a5e2855d0a394b21fac221 100644 (file)
@@ -1,67 +1,37 @@
 // SPDX-License-Identifier: GPL-2.0-or-later OR MIT
-/dts-v1/;
 
-#include <dt-bindings/gpio/gpio.h>
-#include <dt-bindings/input/input.h>
-
-#include "ar7241.dtsi"
+#include "ar7241_ubnt_unifi.dtsi"
 
 / {
        compatible = "ubnt,unifi", "qca,ar7241";
        model = "Ubiquiti UniFi AP";
 
        aliases {
-               led-status = &dome_green;
-       };
-
-       extosc: ref {
-               compatible = "fixed-clock";
-               #clock-cells = <0>;
-               clock-frequency = <40000000>;
-       };
-
-       keys {
-               compatible = "gpio-keys-polled";
-               #address-cells = <1>;
-               #size-cells = <0>;
-
-               poll-interval = <20>;
-               reset {
-                       linux,code = <KEY_RESTART>;
-                       gpios = <&gpio 12 GPIO_ACTIVE_LOW>;
-                       debounce-interval = <60>;
-               };
+               led-boot = &led_dome_green;
+               led-failsafe = &led_dome_green;
+               led-running = &led_dome_green;
+               led-upgrade = &led_dome_green;
        };
 
        leds {
                compatible = "gpio-leds";
-               dome_green: dome-green {
-                       label = "ubnt:green:dome";
+
+               led_dome_green: dome_green {
+                       label = "green:dome";
                        gpios = <&gpio 0 GPIO_ACTIVE_HIGH>;
                };
 
-               dome-orange {
-                       label = "ubnt:orange:dome";
+               dome_orange {
+                       label = "orange:dome";
                        gpios = <&gpio 1 GPIO_ACTIVE_HIGH>;
                };
        };
 };
 
-&uart {
-       status = "okay";
-};
-
-&pll {
-       clocks = <&extosc>;
-};
-
 &spi {
        status = "okay";
-       num-cs = <1>;
 
        flash@0 {
-               #address-cells = <1>;
-               #size-cells = <1>;
                compatible = "jedec,spi-nor";
                reg = <0>;
                spi-max-frequency = <25000000>;
                                read-only;
                        };
 
-                       partition@1 {
+                       partition@40000 {
                                label = "u-boot-env";
                                reg = <0x040000 0x010000>;
+                               read-only;
                        };
 
-                       partition@2 {
+                       partition@50000 {
+                               compatible = "denx,uimage";
                                label = "firmware";
                                reg = <0x050000 0x750000>;
                        };
 
-                       partition@3 {
+                       partition@7a0000 {
                                label = "board_config";
                                reg = <0x7a0000 0x010000>;
                                read-only;
                        };
 
-                       partition@4 {
+                       partition@7b0000 {
                                label = "cfg";
                                reg = <0x7b0000 0x040000>;
                                read-only;
                        };
 
-                       art: partition@5 {
+                       art: partition@7f0000 {
                                label = "art";
                                reg = <0x7f0000 0x010000>;
                                read-only;
        };
 };
 
-&pcie {
-       status = "okay";
-
-       wifi@0 {
-               reg = <0x0000 0 0 0 0>;
-               qca,no-eeprom;
-       };
-};
-
 &eth0 {
-       status = "okay";
-
-       mtd-mac-address = <&art 0x0>;
+       nvmem-cells = <&macaddr_art_0>;
+       nvmem-cell-names = "mac-address";
 };
 
 &eth1 {
-       status = "okay";
-
        compatible = "syscon", "simple-mfd";
 };
+
+&art {
+       compatible = "nvmem-cells";
+       #address-cells = <1>;
+       #size-cells = <1>;
+
+       macaddr_art_0: macaddr@0 {
+               reg = <0x0 0x6>;
+       };
+};