| b.liu | e958203 | 2025-04-17 19:18:16 +0800 | [diff] [blame] | 1 | #include "rt3050.dtsi" |
| 2 | |
| 3 | #include <dt-bindings/gpio/gpio.h> |
| 4 | #include <dt-bindings/input/input.h> |
| 5 | |
| 6 | / { |
| 7 | compatible = "dlink,dcs-930", "ralink,rt3050-soc"; |
| 8 | model = "D-Link DCS-930"; |
| 9 | |
| 10 | aliases { |
| 11 | led-boot = &led_status; |
| 12 | led-failsafe = &led_status; |
| 13 | led-running = &led_status; |
| 14 | led-upgrade = &led_status; |
| 15 | }; |
| 16 | |
| 17 | flash@1f000000 { |
| 18 | compatible = "cfi-flash"; |
| 19 | reg = <0x1f000000 0x400000>; |
| 20 | bank-width = <2>; |
| 21 | device-width = <2>; |
| 22 | |
| 23 | partitions { |
| 24 | compatible = "fixed-partitions"; |
| 25 | #address-cells = <1>; |
| 26 | #size-cells = <1>; |
| 27 | |
| 28 | partition@0 { |
| 29 | label = "u-boot"; |
| 30 | reg = <0x0 0x30000>; |
| 31 | read-only; |
| 32 | }; |
| 33 | |
| 34 | partition@30000 { |
| 35 | label = "u-boot-env"; |
| 36 | reg = <0x30000 0x10000>; |
| 37 | read-only; |
| 38 | }; |
| 39 | |
| 40 | factory: partition@40000 { |
| 41 | label = "factory"; |
| 42 | reg = <0x40000 0x10000>; |
| 43 | read-only; |
| 44 | }; |
| 45 | |
| 46 | partition@50000 { |
| 47 | compatible = "denx,uimage"; |
| 48 | label = "firmware"; |
| 49 | reg = <0x50000 0x3b0000>; |
| 50 | }; |
| 51 | }; |
| 52 | }; |
| 53 | |
| 54 | leds { |
| 55 | compatible = "gpio-leds"; |
| 56 | |
| 57 | wifi { |
| 58 | label = "red:alert"; |
| 59 | gpios = <&gpio0 8 GPIO_ACTIVE_LOW>; |
| 60 | }; |
| 61 | |
| 62 | led_status: status { |
| 63 | label = "green:status"; |
| 64 | gpios = <&gpio0 9 GPIO_ACTIVE_LOW>; |
| 65 | }; |
| 66 | |
| 67 | wps { |
| 68 | label = "blue:wps"; |
| 69 | gpios = <&gpio0 13 GPIO_ACTIVE_LOW>; |
| 70 | }; |
| 71 | }; |
| 72 | |
| 73 | keys { |
| 74 | compatible = "gpio-keys-polled"; |
| 75 | poll-interval = <20>; |
| 76 | |
| 77 | wps { |
| 78 | label = "wps"; |
| 79 | gpios = <&gpio0 0 GPIO_ACTIVE_LOW>; |
| 80 | linux,code = <BTN_1>; |
| 81 | }; |
| 82 | |
| 83 | reset { |
| 84 | label = "reset"; |
| 85 | gpios = <&gpio0 10 GPIO_ACTIVE_LOW>; |
| 86 | linux,code = <KEY_RESTART>; |
| 87 | }; |
| 88 | }; |
| 89 | }; |
| 90 | |
| 91 | &state_default { |
| 92 | gpio { |
| 93 | groups = "i2c", "spi", "jtag", "mdio", "rgmii", "uartf"; |
| 94 | function = "gpio"; |
| 95 | }; |
| 96 | }; |
| 97 | |
| 98 | ðernet { |
| 99 | mtd-mac-address = <&factory 0x4>; |
| 100 | }; |
| 101 | |
| 102 | &esw { |
| 103 | mediatek,portmap = <0x2f>; |
| 104 | }; |
| 105 | |
| 106 | &wmac { |
| 107 | ralink,mtd-eeprom = <&factory 0x0>; |
| 108 | }; |
| 109 | |
| 110 | &otg { |
| 111 | status = "okay"; |
| 112 | }; |