Ezequiel Garcia | 0ab6129 | 2013-07-26 10:18:02 -0300 | [diff] [blame] | 1 | #include "kirkwood.dtsi" |
| 2 | #include "kirkwood-6281.dtsi" |
Michael Walle | 4aff38a | 2012-07-17 07:25:55 +0200 | [diff] [blame] | 3 | |
| 4 | / { |
| 5 | chosen { |
| 6 | bootargs = "console=ttyS0,115200n8 earlyprintk"; |
Sebastian Hesselbarth | ab83361 | 2014-04-30 14:56:30 +0200 | [diff] [blame] | 7 | stdout-path = &uart0; |
Michael Walle | 4aff38a | 2012-07-17 07:25:55 +0200 | [diff] [blame] | 8 | }; |
| 9 | |
| 10 | ocp@f1000000 { |
Sebastian Hesselbarth | a948396 | 2014-04-30 14:56:32 +0200 | [diff] [blame] | 11 | pinctrl: pin-controller@10000 { |
Andrew Lunn | 8d72b4a | 2012-11-17 17:00:53 +0100 | [diff] [blame] | 12 | pmx_power_hdd: pmx-power-hdd { |
| 13 | marvell,pins = "mpp10"; |
| 14 | marvell,function = "gpo"; |
| 15 | }; |
| 16 | pmx_usb_vbus: pmx-usb-vbus { |
| 17 | marvell,pins = "mpp11"; |
| 18 | marvell,function = "gpio"; |
| 19 | }; |
| 20 | pmx_fan_high: pmx-fan-high { |
| 21 | marvell,pins = "mpp18"; |
| 22 | marvell,function = "gpo"; |
| 23 | }; |
| 24 | pmx_fan_low: pmx-fan-low { |
| 25 | marvell,pins = "mpp19"; |
| 26 | marvell,function = "gpo"; |
| 27 | }; |
| 28 | pmx_led_function_blue: pmx-led-function-blue { |
| 29 | marvell,pins = "mpp36"; |
| 30 | marvell,function = "gpio"; |
| 31 | }; |
| 32 | pmx_led_alarm: pmx-led-alarm { |
| 33 | marvell,pins = "mpp37"; |
| 34 | marvell,function = "gpio"; |
| 35 | }; |
| 36 | pmx_led_info: pmx-led-info { |
| 37 | marvell,pins = "mpp38"; |
| 38 | marvell,function = "gpio"; |
| 39 | }; |
| 40 | pmx_led_power: pmx-led-power { |
| 41 | marvell,pins = "mpp39"; |
| 42 | marvell,function = "gpio"; |
| 43 | }; |
| 44 | pmx_fan_lock: pmx-fan-lock { |
| 45 | marvell,pins = "mpp40"; |
| 46 | marvell,function = "gpio"; |
| 47 | }; |
| 48 | pmx_button_function: pmx-button-function { |
| 49 | marvell,pins = "mpp41"; |
| 50 | marvell,function = "gpio"; |
| 51 | }; |
| 52 | pmx_power_switch: pmx-power-switch { |
| 53 | marvell,pins = "mpp42"; |
| 54 | marvell,function = "gpio"; |
| 55 | }; |
| 56 | pmx_power_auto_switch: pmx-power-auto-switch { |
| 57 | marvell,pins = "mpp43"; |
| 58 | marvell,function = "gpio"; |
| 59 | }; |
| 60 | pmx_led_function_red: pmx-led-function_red { |
| 61 | marvell,pins = "mpp48"; |
| 62 | marvell,function = "gpio"; |
| 63 | }; |
| 64 | |
| 65 | }; |
Michael Walle | 4aff38a | 2012-07-17 07:25:55 +0200 | [diff] [blame] | 66 | sata@80000 { |
| 67 | status = "okay"; |
| 68 | nr-ports = <1>; |
| 69 | }; |
| 70 | |
| 71 | spi@10600 { |
| 72 | status = "okay"; |
| 73 | |
| 74 | m25p40@0 { |
| 75 | #address-cells = <1>; |
| 76 | #size-cells = <1>; |
| 77 | compatible = "m25p40"; |
| 78 | reg = <0>; |
| 79 | spi-max-frequency = <25000000>; |
| 80 | mode = <0>; |
| 81 | |
| 82 | partition@0 { |
| 83 | reg = <0x0 0x60000>; |
| 84 | label = "uboot"; |
| 85 | read-only; |
| 86 | }; |
| 87 | |
| 88 | partition@60000 { |
| 89 | reg = <0x60000 0x10000>; |
| 90 | label = "dtb"; |
| 91 | read-only; |
| 92 | }; |
| 93 | |
| 94 | partition@70000 { |
| 95 | reg = <0x70000 0x10000>; |
| 96 | label = "uboot_env"; |
| 97 | }; |
| 98 | }; |
| 99 | }; |
| 100 | }; |
| 101 | |
| 102 | gpio_keys { |
| 103 | compatible = "gpio-keys"; |
| 104 | #address-cells = <1>; |
| 105 | #size-cells = <0>; |
Thomas Petazzoni | e5e68b7 | 2013-05-24 11:44:50 +0200 | [diff] [blame] | 106 | pinctrl-0 = <&pmx_button_function &pmx_power_switch |
| 107 | &pmx_power_auto_switch>; |
| 108 | pinctrl-names = "default"; |
| 109 | |
Michael Walle | 4aff38a | 2012-07-17 07:25:55 +0200 | [diff] [blame] | 110 | button@1 { |
| 111 | label = "Function Button"; |
Andrew Lunn | 2330119 | 2013-12-04 16:51:38 +0100 | [diff] [blame] | 112 | linux,code = <KEY_OPTION>; |
Andrew Lunn | 3a31f2d7 | 2013-12-04 16:51:39 +0100 | [diff] [blame] | 113 | gpios = <&gpio1 9 GPIO_ACTIVE_LOW>; |
Michael Walle | 4aff38a | 2012-07-17 07:25:55 +0200 | [diff] [blame] | 114 | }; |
| 115 | button@2 { |
| 116 | label = "Power-on Switch"; |
Andrew Lunn | 2330119 | 2013-12-04 16:51:38 +0100 | [diff] [blame] | 117 | linux,code = <KEY_RESERVED>; |
Michael Walle | 1243163 | 2012-09-27 23:54:37 +0200 | [diff] [blame] | 118 | linux,input-type = <5>; |
Andrew Lunn | 3a31f2d7 | 2013-12-04 16:51:39 +0100 | [diff] [blame] | 119 | gpios = <&gpio1 10 GPIO_ACTIVE_LOW>; |
Michael Walle | 4aff38a | 2012-07-17 07:25:55 +0200 | [diff] [blame] | 120 | }; |
| 121 | button@3 { |
| 122 | label = "Power-auto Switch"; |
Andrew Lunn | 2330119 | 2013-12-04 16:51:38 +0100 | [diff] [blame] | 123 | linux,code = <KEY_ESC>; |
Michael Walle | 1243163 | 2012-09-27 23:54:37 +0200 | [diff] [blame] | 124 | linux,input-type = <5>; |
Andrew Lunn | 3a31f2d7 | 2013-12-04 16:51:39 +0100 | [diff] [blame] | 125 | gpios = <&gpio1 11 GPIO_ACTIVE_LOW>; |
Michael Walle | 4aff38a | 2012-07-17 07:25:55 +0200 | [diff] [blame] | 126 | }; |
| 127 | }; |
| 128 | |
| 129 | gpio_leds { |
| 130 | compatible = "gpio-leds"; |
Thomas Petazzoni | e5e68b7 | 2013-05-24 11:44:50 +0200 | [diff] [blame] | 131 | pinctrl-0 = <&pmx_led_function_red &pmx_led_alarm |
| 132 | &pmx_led_info &pmx_led_power |
| 133 | &pmx_led_function_blue>; |
| 134 | pinctrl-names = "default"; |
Michael Walle | 4aff38a | 2012-07-17 07:25:55 +0200 | [diff] [blame] | 135 | |
| 136 | led@1 { |
Michael Walle | a54841e | 2012-09-24 22:49:02 +0200 | [diff] [blame] | 137 | label = "lsxl:blue:func"; |
Andrew Lunn | 3a31f2d7 | 2013-12-04 16:51:39 +0100 | [diff] [blame] | 138 | gpios = <&gpio1 4 GPIO_ACTIVE_LOW>; |
Michael Walle | 4aff38a | 2012-07-17 07:25:55 +0200 | [diff] [blame] | 139 | }; |
| 140 | |
| 141 | led@2 { |
Michael Walle | a54841e | 2012-09-24 22:49:02 +0200 | [diff] [blame] | 142 | label = "lsxl:red:alarm"; |
Andrew Lunn | 3a31f2d7 | 2013-12-04 16:51:39 +0100 | [diff] [blame] | 143 | gpios = <&gpio1 5 GPIO_ACTIVE_LOW>; |
Michael Walle | 4aff38a | 2012-07-17 07:25:55 +0200 | [diff] [blame] | 144 | }; |
| 145 | |
| 146 | led@3 { |
Michael Walle | a54841e | 2012-09-24 22:49:02 +0200 | [diff] [blame] | 147 | label = "lsxl:amber:info"; |
Andrew Lunn | 3a31f2d7 | 2013-12-04 16:51:39 +0100 | [diff] [blame] | 148 | gpios = <&gpio1 6 GPIO_ACTIVE_LOW>; |
Michael Walle | 4aff38a | 2012-07-17 07:25:55 +0200 | [diff] [blame] | 149 | }; |
| 150 | |
| 151 | led@4 { |
Michael Walle | a54841e | 2012-09-24 22:49:02 +0200 | [diff] [blame] | 152 | label = "lsxl:blue:power"; |
Andrew Lunn | 3a31f2d7 | 2013-12-04 16:51:39 +0100 | [diff] [blame] | 153 | gpios = <&gpio1 7 GPIO_ACTIVE_LOW>; |
Jason Cooper | dcdf14c | 2013-10-14 17:37:55 +0000 | [diff] [blame] | 154 | default-state = "keep"; |
Michael Walle | 4aff38a | 2012-07-17 07:25:55 +0200 | [diff] [blame] | 155 | }; |
| 156 | |
| 157 | led@5 { |
Michael Walle | a54841e | 2012-09-24 22:49:02 +0200 | [diff] [blame] | 158 | label = "lsxl:red:func"; |
Andrew Lunn | 3a31f2d7 | 2013-12-04 16:51:39 +0100 | [diff] [blame] | 159 | gpios = <&gpio1 16 GPIO_ACTIVE_LOW>; |
Michael Walle | 4aff38a | 2012-07-17 07:25:55 +0200 | [diff] [blame] | 160 | }; |
| 161 | }; |
Michael Walle | b046f56 | 2012-10-21 01:34:54 +0200 | [diff] [blame] | 162 | |
| 163 | gpio_fan { |
| 164 | compatible = "gpio-fan"; |
Thomas Petazzoni | e5e68b7 | 2013-05-24 11:44:50 +0200 | [diff] [blame] | 165 | pinctrl-0 = <&pmx_fan_low &pmx_fan_high &pmx_fan_lock>; |
| 166 | pinctrl-names = "default"; |
Andrew Lunn | 3a31f2d7 | 2013-12-04 16:51:39 +0100 | [diff] [blame] | 167 | gpios = <&gpio0 19 GPIO_ACTIVE_LOW |
| 168 | &gpio0 18 GPIO_ACTIVE_LOW>; |
Michael Walle | b046f56 | 2012-10-21 01:34:54 +0200 | [diff] [blame] | 169 | gpio-fan,speed-map = <0 3 |
| 170 | 1500 2 |
| 171 | 3250 1 |
| 172 | 5000 0>; |
Andrew Lunn | 3a31f2d7 | 2013-12-04 16:51:39 +0100 | [diff] [blame] | 173 | alarm-gpios = <&gpio1 8 GPIO_ACTIVE_HIGH>; |
Michael Walle | b046f56 | 2012-10-21 01:34:54 +0200 | [diff] [blame] | 174 | }; |
Andrew Lunn | 423b895 | 2012-11-17 15:46:14 +0100 | [diff] [blame] | 175 | |
Andrew Lunn | 391a16c | 2012-12-28 13:25:12 +0100 | [diff] [blame] | 176 | restart_poweroff { |
| 177 | compatible = "restart-poweroff"; |
| 178 | }; |
| 179 | |
Andrew Lunn | 423b895 | 2012-11-17 15:46:14 +0100 | [diff] [blame] | 180 | regulators { |
| 181 | compatible = "simple-bus"; |
| 182 | #address-cells = <1>; |
| 183 | #size-cells = <0>; |
Thomas Petazzoni | e5e68b7 | 2013-05-24 11:44:50 +0200 | [diff] [blame] | 184 | pinctrl-0 = <&pmx_power_hdd &pmx_usb_vbus>; |
| 185 | pinctrl-names = "default"; |
Andrew Lunn | 423b895 | 2012-11-17 15:46:14 +0100 | [diff] [blame] | 186 | |
| 187 | usb_power: regulator@1 { |
| 188 | compatible = "regulator-fixed"; |
| 189 | reg = <1>; |
| 190 | regulator-name = "USB Power"; |
| 191 | regulator-min-microvolt = <5000000>; |
| 192 | regulator-max-microvolt = <5000000>; |
| 193 | enable-active-high; |
| 194 | regulator-always-on; |
| 195 | regulator-boot-on; |
| 196 | gpio = <&gpio0 11 0>; |
| 197 | }; |
| 198 | hdd_power: regulator@2 { |
| 199 | compatible = "regulator-fixed"; |
| 200 | reg = <2>; |
| 201 | regulator-name = "HDD Power"; |
| 202 | regulator-min-microvolt = <5000000>; |
| 203 | regulator-max-microvolt = <5000000>; |
| 204 | enable-active-high; |
| 205 | regulator-always-on; |
| 206 | regulator-boot-on; |
| 207 | gpio = <&gpio0 10 0>; |
| 208 | }; |
| 209 | }; |
Michael Walle | 4aff38a | 2012-07-17 07:25:55 +0200 | [diff] [blame] | 210 | }; |
Sebastian Hesselbarth | 876e233 | 2013-07-07 22:34:56 +0200 | [diff] [blame] | 211 | |
| 212 | &mdio { |
| 213 | status = "okay"; |
| 214 | |
| 215 | ethphy0: ethernet-phy@0 { |
Sebastian Hesselbarth | 876e233 | 2013-07-07 22:34:56 +0200 | [diff] [blame] | 216 | reg = <0>; |
| 217 | }; |
| 218 | |
| 219 | ethphy1: ethernet-phy@8 { |
Sebastian Hesselbarth | 876e233 | 2013-07-07 22:34:56 +0200 | [diff] [blame] | 220 | reg = <8>; |
| 221 | }; |
| 222 | }; |
| 223 | |
| 224 | ð0 { |
| 225 | status = "okay"; |
| 226 | ethernet0-port@0 { |
| 227 | phy-handle = <ðphy0>; |
| 228 | }; |
| 229 | }; |
| 230 | |
| 231 | ð1 { |
| 232 | status = "okay"; |
| 233 | ethernet1-port@0 { |
| 234 | phy-handle = <ðphy1>; |
| 235 | }; |
| 236 | }; |