Oliver Schinagl | 01ed663 | 2013-10-08 10:22:32 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2013 Oliver Schinagl |
| 3 | * |
| 4 | * Oliver Schinagl <oliver@schinagl.nl> |
| 5 | * |
Maxime Ripard | a6f19d5 | 2014-09-02 19:25:26 +0200 | [diff] [blame] | 6 | * This file is dual-licensed: you can use it either under the terms |
| 7 | * of the GPL or the X11 license, at your option. Note that this dual |
| 8 | * licensing only applies to this file, and not this project as a |
| 9 | * whole. |
Oliver Schinagl | 01ed663 | 2013-10-08 10:22:32 +0200 | [diff] [blame] | 10 | * |
Maxime Ripard | a6f19d5 | 2014-09-02 19:25:26 +0200 | [diff] [blame] | 11 | * a) This file is free software; you can redistribute it and/or |
| 12 | * modify it under the terms of the GNU General Public License as |
| 13 | * published by the Free Software Foundation; either version 2 of the |
| 14 | * License, or (at your option) any later version. |
| 15 | * |
| 16 | * This file is distributed in the hope that it will be useful, |
| 17 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 18 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 19 | * GNU General Public License for more details. |
| 20 | * |
Maxime Ripard | a6f19d5 | 2014-09-02 19:25:26 +0200 | [diff] [blame] | 21 | * Or, alternatively, |
| 22 | * |
| 23 | * b) Permission is hereby granted, free of charge, to any person |
| 24 | * obtaining a copy of this software and associated documentation |
| 25 | * files (the "Software"), to deal in the Software without |
| 26 | * restriction, including without limitation the rights to use, |
| 27 | * copy, modify, merge, publish, distribute, sublicense, and/or |
| 28 | * sell copies of the Software, and to permit persons to whom the |
| 29 | * Software is furnished to do so, subject to the following |
| 30 | * conditions: |
| 31 | * |
| 32 | * The above copyright notice and this permission notice shall be |
| 33 | * included in all copies or substantial portions of the Software. |
| 34 | * |
| 35 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, |
| 36 | * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES |
| 37 | * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND |
| 38 | * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT |
| 39 | * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, |
| 40 | * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING |
| 41 | * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR |
| 42 | * OTHER DEALINGS IN THE SOFTWARE. |
Oliver Schinagl | 01ed663 | 2013-10-08 10:22:32 +0200 | [diff] [blame] | 43 | */ |
| 44 | |
| 45 | /dts-v1/; |
Maxime Ripard | 7145570 | 2014-12-16 22:59:54 +0100 | [diff] [blame] | 46 | #include "sun7i-a20.dtsi" |
| 47 | #include "sunxi-common-regulators.dtsi" |
Oliver Schinagl | 01ed663 | 2013-10-08 10:22:32 +0200 | [diff] [blame] | 48 | |
Maxime Ripard | bca1292 | 2014-12-16 22:59:55 +0100 | [diff] [blame] | 49 | #include <dt-bindings/gpio/gpio.h> |
Maxime Ripard | a6bac9e | 2014-12-16 22:59:59 +0100 | [diff] [blame] | 50 | #include <dt-bindings/interrupt-controller/irq.h> |
Maxime Ripard | bca1292 | 2014-12-16 22:59:55 +0100 | [diff] [blame] | 51 | |
Oliver Schinagl | 01ed663 | 2013-10-08 10:22:32 +0200 | [diff] [blame] | 52 | / { |
| 53 | model = "Cubietech Cubietruck"; |
| 54 | compatible = "cubietech,cubietruck", "allwinner,sun7i-a20"; |
| 55 | |
Maxime Ripard | 59ebbe8 | 2015-03-15 20:47:31 +0100 | [diff] [blame] | 56 | aliases { |
| 57 | serial0 = &uart0; |
| 58 | }; |
| 59 | |
| 60 | chosen { |
| 61 | stdout-path = "serial0:115200n8"; |
| 62 | }; |
| 63 | |
Oliver Schinagl | 01ed663 | 2013-10-08 10:22:32 +0200 | [diff] [blame] | 64 | leds { |
| 65 | compatible = "gpio-leds"; |
| 66 | pinctrl-names = "default"; |
| 67 | pinctrl-0 = <&led_pins_cubietruck>; |
| 68 | |
| 69 | blue { |
| 70 | label = "cubietruck:blue:usr"; |
Maxime Ripard | bca1292 | 2014-12-16 22:59:55 +0100 | [diff] [blame] | 71 | gpios = <&pio 7 21 GPIO_ACTIVE_HIGH>; |
Oliver Schinagl | 01ed663 | 2013-10-08 10:22:32 +0200 | [diff] [blame] | 72 | }; |
| 73 | |
| 74 | orange { |
| 75 | label = "cubietruck:orange:usr"; |
Maxime Ripard | bca1292 | 2014-12-16 22:59:55 +0100 | [diff] [blame] | 76 | gpios = <&pio 7 20 GPIO_ACTIVE_HIGH>; |
Oliver Schinagl | 01ed663 | 2013-10-08 10:22:32 +0200 | [diff] [blame] | 77 | }; |
| 78 | |
| 79 | white { |
| 80 | label = "cubietruck:white:usr"; |
Maxime Ripard | bca1292 | 2014-12-16 22:59:55 +0100 | [diff] [blame] | 81 | gpios = <&pio 7 11 GPIO_ACTIVE_HIGH>; |
Oliver Schinagl | 01ed663 | 2013-10-08 10:22:32 +0200 | [diff] [blame] | 82 | }; |
| 83 | |
| 84 | green { |
| 85 | label = "cubietruck:green:usr"; |
Maxime Ripard | bca1292 | 2014-12-16 22:59:55 +0100 | [diff] [blame] | 86 | gpios = <&pio 7 7 GPIO_ACTIVE_HIGH>; |
Oliver Schinagl | 01ed663 | 2013-10-08 10:22:32 +0200 | [diff] [blame] | 87 | }; |
| 88 | }; |
Hans de Goede | 902febf | 2014-03-01 20:26:22 +0100 | [diff] [blame] | 89 | |
Hans de Goede | 60018d0 | 2015-07-31 17:41:52 +0200 | [diff] [blame] | 90 | mmc3_pwrseq: mmc3_pwrseq { |
| 91 | compatible = "mmc-pwrseq-simple"; |
Chen-Yu Tsai | 3906c0a | 2014-05-02 17:57:29 +0200 | [diff] [blame] | 92 | pinctrl-names = "default"; |
Hans de Goede | 60018d0 | 2015-07-31 17:41:52 +0200 | [diff] [blame] | 93 | pinctrl-0 = <&mmc3_pwrseq_pin_cubietruck>; |
| 94 | reset-gpios = <&pio 7 9 GPIO_ACTIVE_LOW>; /* PH9 WIFI_EN */ |
Chen-Yu Tsai | 3906c0a | 2014-05-02 17:57:29 +0200 | [diff] [blame] | 95 | }; |
Christopher Spinrath | b52e345 | 2016-04-25 01:02:58 +0200 | [diff] [blame] | 96 | |
| 97 | sound { |
| 98 | compatible = "simple-audio-card"; |
| 99 | simple-audio-card,name = "On-board SPDIF"; |
| 100 | |
| 101 | simple-audio-card,cpu { |
| 102 | sound-dai = <&spdif>; |
| 103 | }; |
| 104 | |
| 105 | simple-audio-card,codec { |
| 106 | sound-dai = <&spdif_out>; |
| 107 | }; |
| 108 | }; |
| 109 | |
| 110 | spdif_out: spdif-out { |
| 111 | #sound-dai-cells = <0>; |
| 112 | compatible = "linux,spdif-dit"; |
| 113 | }; |
Oliver Schinagl | 01ed663 | 2013-10-08 10:22:32 +0200 | [diff] [blame] | 114 | }; |
Chen-Yu Tsai | 0d4e2934 | 2015-01-12 12:34:05 +0800 | [diff] [blame] | 115 | |
Maxime Ripard | 712a9fa | 2015-01-31 12:11:54 +0100 | [diff] [blame] | 116 | &ahci { |
| 117 | target-supply = <®_ahci_5v>; |
| 118 | status = "okay"; |
| 119 | }; |
Chen-Yu Tsai | 0d4e2934 | 2015-01-12 12:34:05 +0800 | [diff] [blame] | 120 | |
Emilio López | faef4af | 2014-08-18 01:10:05 -0300 | [diff] [blame] | 121 | &codec { |
| 122 | status = "okay"; |
| 123 | }; |
| 124 | |
Chen-Yu Tsai | 0d4e2934 | 2015-01-12 12:34:05 +0800 | [diff] [blame] | 125 | &cpu0 { |
| 126 | cpu-supply = <®_dcdc2>; |
| 127 | }; |
| 128 | |
Maxime Ripard | 712a9fa | 2015-01-31 12:11:54 +0100 | [diff] [blame] | 129 | &ehci0 { |
| 130 | status = "okay"; |
| 131 | }; |
| 132 | |
| 133 | &ehci1 { |
| 134 | status = "okay"; |
| 135 | }; |
| 136 | |
| 137 | &gmac { |
| 138 | pinctrl-names = "default"; |
| 139 | pinctrl-0 = <&gmac_pins_rgmii_a>; |
| 140 | phy = <&phy1>; |
| 141 | phy-mode = "rgmii"; |
| 142 | status = "okay"; |
| 143 | |
| 144 | phy1: ethernet-phy@1 { |
| 145 | reg = <1>; |
| 146 | }; |
| 147 | }; |
| 148 | |
| 149 | &i2c0 { |
| 150 | pinctrl-names = "default"; |
| 151 | pinctrl-0 = <&i2c0_pins_a>; |
| 152 | status = "okay"; |
| 153 | |
| 154 | axp209: pmic@34 { |
| 155 | reg = <0x34>; |
| 156 | interrupt-parent = <&nmi_intc>; |
| 157 | interrupts = <0 IRQ_TYPE_LEVEL_LOW>; |
| 158 | }; |
| 159 | }; |
| 160 | |
| 161 | &i2c1 { |
| 162 | pinctrl-names = "default"; |
| 163 | pinctrl-0 = <&i2c1_pins_a>; |
| 164 | status = "okay"; |
| 165 | }; |
| 166 | |
| 167 | &i2c2 { |
| 168 | pinctrl-names = "default"; |
| 169 | pinctrl-0 = <&i2c2_pins_a>; |
| 170 | status = "okay"; |
| 171 | }; |
| 172 | |
| 173 | &ir0 { |
| 174 | pinctrl-names = "default"; |
Marcus Cooper | 469a22e | 2015-05-02 13:36:20 +0200 | [diff] [blame] | 175 | pinctrl-0 = <&ir0_rx_pins_a>; |
Maxime Ripard | 712a9fa | 2015-01-31 12:11:54 +0100 | [diff] [blame] | 176 | status = "okay"; |
| 177 | }; |
| 178 | |
| 179 | &mmc0 { |
| 180 | pinctrl-names = "default"; |
Chen-Yu Tsai | cf43966 | 2017-04-19 13:09:17 +0800 | [diff] [blame] | 181 | pinctrl-0 = <&mmc0_pins_a>; |
Maxime Ripard | 712a9fa | 2015-01-31 12:11:54 +0100 | [diff] [blame] | 182 | vmmc-supply = <®_vcc3v3>; |
| 183 | bus-width = <4>; |
| 184 | cd-gpios = <&pio 7 1 GPIO_ACTIVE_HIGH>; /* PH1 */ |
| 185 | cd-inverted; |
| 186 | status = "okay"; |
| 187 | }; |
| 188 | |
| 189 | &mmc3 { |
| 190 | pinctrl-names = "default"; |
| 191 | pinctrl-0 = <&mmc3_pins_a>; |
Hans de Goede | 60018d0 | 2015-07-31 17:41:52 +0200 | [diff] [blame] | 192 | vmmc-supply = <®_vcc3v3>; |
| 193 | mmc-pwrseq = <&mmc3_pwrseq>; |
Maxime Ripard | 712a9fa | 2015-01-31 12:11:54 +0100 | [diff] [blame] | 194 | bus-width = <4>; |
| 195 | non-removable; |
| 196 | status = "okay"; |
Hans de Goede | 7862eb1 | 2015-03-10 16:27:10 +0100 | [diff] [blame] | 197 | |
Fabio Estevam | e5b558a | 2017-05-21 18:16:55 -0300 | [diff] [blame] | 198 | brcmf: wifi@1 { |
Hans de Goede | 7862eb1 | 2015-03-10 16:27:10 +0100 | [diff] [blame] | 199 | reg = <1>; |
| 200 | compatible = "brcm,bcm4329-fmac"; |
| 201 | interrupt-parent = <&pio>; |
Maxime Ripard | b03e081 | 2015-06-17 11:44:24 +0200 | [diff] [blame] | 202 | interrupts = <7 10 IRQ_TYPE_LEVEL_LOW>; /* PH10 / EINT10 */ |
Hans de Goede | 7862eb1 | 2015-03-10 16:27:10 +0100 | [diff] [blame] | 203 | interrupt-names = "host-wake"; |
| 204 | }; |
Maxime Ripard | 712a9fa | 2015-01-31 12:11:54 +0100 | [diff] [blame] | 205 | }; |
| 206 | |
| 207 | &mmc3_pins_a { |
| 208 | /* AP6210 requires pull-up */ |
Maxime Ripard | 1edcd36 | 2016-09-23 14:28:10 +0300 | [diff] [blame] | 209 | bias-pull-up; |
Maxime Ripard | 712a9fa | 2015-01-31 12:11:54 +0100 | [diff] [blame] | 210 | }; |
| 211 | |
| 212 | &ohci0 { |
| 213 | status = "okay"; |
| 214 | }; |
| 215 | |
| 216 | &ohci1 { |
| 217 | status = "okay"; |
| 218 | }; |
| 219 | |
Roman Byshko | d3c23ba | 2014-10-21 00:31:04 +0200 | [diff] [blame] | 220 | &otg_sram { |
| 221 | status = "okay"; |
| 222 | }; |
| 223 | |
Maxime Ripard | 712a9fa | 2015-01-31 12:11:54 +0100 | [diff] [blame] | 224 | &pio { |
Maxime Ripard | 712a9fa | 2015-01-31 12:11:54 +0100 | [diff] [blame] | 225 | ahci_pwr_pin_cubietruck: ahci_pwr_pin@1 { |
Maxime Ripard | 1edcd36 | 2016-09-23 14:28:10 +0300 | [diff] [blame] | 226 | pins = "PH12"; |
| 227 | function = "gpio_out"; |
Maxime Ripard | 712a9fa | 2015-01-31 12:11:54 +0100 | [diff] [blame] | 228 | }; |
| 229 | |
| 230 | led_pins_cubietruck: led_pins@0 { |
Maxime Ripard | 1edcd36 | 2016-09-23 14:28:10 +0300 | [diff] [blame] | 231 | pins = "PH7", "PH11", "PH20", "PH21"; |
| 232 | function = "gpio_out"; |
Maxime Ripard | 712a9fa | 2015-01-31 12:11:54 +0100 | [diff] [blame] | 233 | }; |
| 234 | |
Hans de Goede | 60018d0 | 2015-07-31 17:41:52 +0200 | [diff] [blame] | 235 | mmc3_pwrseq_pin_cubietruck: mmc3_pwrseq_pin@0 { |
Maxime Ripard | 1edcd36 | 2016-09-23 14:28:10 +0300 | [diff] [blame] | 236 | pins = "PH9"; |
| 237 | function = "gpio_out"; |
Hans de Goede | 60018d0 | 2015-07-31 17:41:52 +0200 | [diff] [blame] | 238 | }; |
| 239 | |
Maxime Ripard | 712a9fa | 2015-01-31 12:11:54 +0100 | [diff] [blame] | 240 | usb0_vbus_pin_a: usb0_vbus_pin@0 { |
Maxime Ripard | 1edcd36 | 2016-09-23 14:28:10 +0300 | [diff] [blame] | 241 | pins = "PH17"; |
| 242 | function = "gpio_out"; |
Maxime Ripard | 712a9fa | 2015-01-31 12:11:54 +0100 | [diff] [blame] | 243 | }; |
Roman Byshko | d3c23ba | 2014-10-21 00:31:04 +0200 | [diff] [blame] | 244 | |
| 245 | usb0_id_detect_pin: usb0_id_detect_pin@0 { |
Maxime Ripard | 1edcd36 | 2016-09-23 14:28:10 +0300 | [diff] [blame] | 246 | pins = "PH19"; |
| 247 | function = "gpio_in"; |
Roman Byshko | d3c23ba | 2014-10-21 00:31:04 +0200 | [diff] [blame] | 248 | }; |
| 249 | |
| 250 | usb0_vbus_detect_pin: usb0_vbus_detect_pin@0 { |
Maxime Ripard | 1edcd36 | 2016-09-23 14:28:10 +0300 | [diff] [blame] | 251 | pins = "PH22"; |
| 252 | function = "gpio_in"; |
Roman Byshko | d3c23ba | 2014-10-21 00:31:04 +0200 | [diff] [blame] | 253 | }; |
Maxime Ripard | 712a9fa | 2015-01-31 12:11:54 +0100 | [diff] [blame] | 254 | }; |
| 255 | |
| 256 | &pwm { |
| 257 | pinctrl-names = "default"; |
| 258 | pinctrl-0 = <&pwm0_pins_a>, <&pwm1_pins_a>; |
| 259 | status = "okay"; |
| 260 | }; |
| 261 | |
| 262 | ®_ahci_5v { |
| 263 | pinctrl-0 = <&ahci_pwr_pin_cubietruck>; |
| 264 | gpio = <&pio 7 12 GPIO_ACTIVE_HIGH>; |
| 265 | status = "okay"; |
| 266 | }; |
| 267 | |
| 268 | #include "axp209.dtsi" |
| 269 | |
Alexander Syring | 47a6b0e | 2017-04-03 11:12:45 +0200 | [diff] [blame] | 270 | &ac_power_supply { |
| 271 | status = "okay"; |
| 272 | }; |
| 273 | |
Alexander Syring | 9b80703 | 2017-07-05 10:30:20 +0200 | [diff] [blame] | 274 | &battery_power_supply { |
| 275 | status = "okay"; |
| 276 | }; |
| 277 | |
Chen-Yu Tsai | 0d4e2934 | 2015-01-12 12:34:05 +0800 | [diff] [blame] | 278 | ®_dcdc2 { |
| 279 | regulator-always-on; |
| 280 | regulator-min-microvolt = <1000000>; |
| 281 | regulator-max-microvolt = <1450000>; |
| 282 | regulator-name = "vdd-cpu"; |
| 283 | }; |
| 284 | |
| 285 | ®_dcdc3 { |
| 286 | regulator-always-on; |
| 287 | regulator-min-microvolt = <1000000>; |
| 288 | regulator-max-microvolt = <1400000>; |
| 289 | regulator-name = "vdd-int-dll"; |
| 290 | }; |
| 291 | |
| 292 | ®_ldo1 { |
| 293 | regulator-name = "vdd-rtc"; |
| 294 | }; |
| 295 | |
| 296 | ®_ldo2 { |
| 297 | regulator-always-on; |
| 298 | regulator-min-microvolt = <3000000>; |
| 299 | regulator-max-microvolt = <3000000>; |
| 300 | regulator-name = "avcc"; |
| 301 | }; |
Maxime Ripard | 712a9fa | 2015-01-31 12:11:54 +0100 | [diff] [blame] | 302 | |
| 303 | ®_usb0_vbus { |
| 304 | pinctrl-0 = <&usb0_vbus_pin_a>; |
| 305 | gpio = <&pio 7 17 GPIO_ACTIVE_HIGH>; |
| 306 | status = "okay"; |
| 307 | }; |
| 308 | |
| 309 | ®_usb1_vbus { |
| 310 | status = "okay"; |
| 311 | }; |
| 312 | |
| 313 | ®_usb2_vbus { |
| 314 | status = "okay"; |
| 315 | }; |
| 316 | |
Christopher Spinrath | b52e345 | 2016-04-25 01:02:58 +0200 | [diff] [blame] | 317 | &spdif { |
| 318 | pinctrl-names = "default"; |
| 319 | pinctrl-0 = <&spdif_tx_pins_a>; |
| 320 | status = "okay"; |
| 321 | }; |
| 322 | |
Maxime Ripard | 712a9fa | 2015-01-31 12:11:54 +0100 | [diff] [blame] | 323 | &uart0 { |
| 324 | pinctrl-names = "default"; |
| 325 | pinctrl-0 = <&uart0_pins_a>; |
| 326 | status = "okay"; |
| 327 | }; |
| 328 | |
Roman Byshko | d3c23ba | 2014-10-21 00:31:04 +0200 | [diff] [blame] | 329 | &usb_otg { |
| 330 | dr_mode = "otg"; |
| 331 | status = "okay"; |
| 332 | }; |
| 333 | |
Alexander Syring | 47a6b0e | 2017-04-03 11:12:45 +0200 | [diff] [blame] | 334 | &usb_power_supply { |
| 335 | status = "okay"; |
| 336 | }; |
| 337 | |
Maxime Ripard | 712a9fa | 2015-01-31 12:11:54 +0100 | [diff] [blame] | 338 | &usbphy { |
Roman Byshko | d3c23ba | 2014-10-21 00:31:04 +0200 | [diff] [blame] | 339 | pinctrl-names = "default"; |
| 340 | pinctrl-0 = <&usb0_id_detect_pin>, <&usb0_vbus_detect_pin>; |
| 341 | usb0_id_det-gpios = <&pio 7 19 GPIO_ACTIVE_HIGH>; /* PH19 */ |
| 342 | usb0_vbus_det-gpios = <&pio 7 22 GPIO_ACTIVE_HIGH>; /* PH22 */ |
Chen-Yu Tsai | 3c04928 | 2017-05-25 15:31:38 +0800 | [diff] [blame] | 343 | usb0_vbus_power-supply = <&usb_power_supply>; |
Maxime Ripard | 712a9fa | 2015-01-31 12:11:54 +0100 | [diff] [blame] | 344 | usb0_vbus-supply = <®_usb0_vbus>; |
| 345 | usb1_vbus-supply = <®_usb1_vbus>; |
| 346 | usb2_vbus-supply = <®_usb2_vbus>; |
| 347 | status = "okay"; |
| 348 | }; |