ramips: convert mtd-mac-address to nvmem implementation
[openwrt/staging/wigyori.git] / target / linux / ramips / dts / rt5350_planex_mzk-dp150n.dts
1 #include "rt5350.dtsi"
2
3 #include <dt-bindings/gpio/gpio.h>
4 #include <dt-bindings/input/input.h>
5
6 / {
7 compatible = "planex,mzk-dp150n", "ralink,rt5350-soc";
8 model = "Planex MZK-DP150N";
9
10 aliases {
11 led-boot = &led_power;
12 led-failsafe = &led_power;
13 led-running = &led_power;
14 led-upgrade = &led_power;
15 };
16
17 leds {
18 compatible = "gpio-leds";
19
20 led_power: power {
21 label = "green:power";
22 gpios = <&gpio0 9 GPIO_ACTIVE_LOW>;
23 };
24 };
25
26 keys {
27 compatible = "gpio-keys-polled";
28 poll-interval = <20>;
29
30 reset {
31 label = "reset";
32 gpios = <&gpio0 10 GPIO_ACTIVE_LOW>;
33 linux,code = <KEY_RESTART>;
34 };
35 };
36 };
37
38 &spi0 {
39 status = "okay";
40
41 flash@0 {
42 compatible = "jedec,spi-nor";
43 reg = <0>;
44 spi-max-frequency = <10000000>;
45
46 partitions {
47 compatible = "fixed-partitions";
48 #address-cells = <1>;
49 #size-cells = <1>;
50
51 partition@0 {
52 label = "uboot";
53 reg = <0x0 0x30000>;
54 read-only;
55 };
56
57 partition@30000 {
58 label = "uboot-env";
59 reg = <0x30000 0x10000>;
60 read-only;
61 };
62
63 factory: partition@40000 {
64 label = "factory";
65 reg = <0x40000 0x10000>;
66 read-only;
67 };
68
69 partition@50000 {
70 compatible = "denx,uimage";
71 label = "firmware";
72 reg = <0x50000 0x3b0000>;
73 };
74 };
75 };
76 };
77
78 &spi1 {
79 spidev@0 {
80 compatible = "linux,spidev";
81 spi-max-frequency = <10000000>;
82 reg = <0>;
83 };
84 };
85
86 &state_default {
87 gpio {
88 groups = "jtag", "uartf", "led";
89 function = "gpio";
90 };
91 };
92
93 &ethernet {
94 nvmem-cells = <&macaddr_factory_4>;
95 nvmem-cell-names = "mac-address";
96 };
97
98 &esw {
99 mediatek,portmap = <0x17>;
100 };
101
102 &wmac {
103 ralink,mtd-eeprom = <&factory 0x0>;
104 ralink,led-polarity = <1>;
105 };
106
107 &factory {
108 compatible = "nvmem-cells";
109 #address-cells = <1>;
110 #size-cells = <1>;
111
112 macaddr_factory_4: macaddr@4 {
113 reg = <0x4 0x6>;
114 };
115 };