Merge branch 'pm-opp'
[cascardo/linux.git] / arch / arm / boot / dts / armada-370-mirabox.dts
1 /*
2  * Device Tree file for Globalscale Mirabox
3  *
4  * Gregory CLEMENT <gregory.clement@free-electrons.com>
5  *
6  * This file is licensed under the terms of the GNU General Public
7  * License version 2.  This program is licensed "as is" without any
8  * warranty of any kind, whether express or implied.
9  */
10
11 /dts-v1/;
12 #include <dt-bindings/gpio/gpio.h>
13 #include "armada-370.dtsi"
14
15 / {
16         model = "Globalscale Mirabox";
17         compatible = "globalscale,mirabox", "marvell,armada370", "marvell,armada-370-xp";
18
19         chosen {
20                 bootargs = "console=ttyS0,115200 earlyprintk";
21         };
22
23         memory {
24                 device_type = "memory";
25                 reg = <0x00000000 0x20000000>; /* 512 MB */
26         };
27
28         soc {
29                 ranges = <MBUS_ID(0xf0, 0x01) 0 0xd0000000 0x100000
30                           MBUS_ID(0x01, 0xe0) 0 0xfff00000 0x100000>;
31
32                 pcie-controller {
33                         status = "okay";
34
35                         /* Internal mini-PCIe connector */
36                         pcie@1,0 {
37                                 /* Port 0, Lane 0 */
38                                 status = "okay";
39                         };
40
41                         /* Connected on the PCB to a USB 3.0 XHCI controller */
42                         pcie@2,0 {
43                                 /* Port 1, Lane 0 */
44                                 status = "okay";
45                         };
46                 };
47
48                 internal-regs {
49                         serial@12000 {
50                                 status = "okay";
51                         };
52                         timer@20300 {
53                                 clock-frequency = <600000000>;
54                                 status = "okay";
55                         };
56
57                         gpio_leds {
58                                 compatible = "gpio-leds";
59                                 pinctrl-names = "default";
60                                 pinctrl-0 = <&pwr_led_pin &stat_led_pins>;
61
62                                 green_pwr_led {
63                                         label = "mirabox:green:pwr";
64                                         gpios = <&gpio1 31 GPIO_ACTIVE_LOW>;
65                                         default-state = "keep";
66                                 };
67
68                                 blue_stat_led {
69                                         label = "mirabox:blue:stat";
70                                         gpios = <&gpio2 0 GPIO_ACTIVE_LOW>;
71                                         default-state = "off";
72                                 };
73
74                                 green_stat_led {
75                                         label = "mirabox:green:stat";
76                                         gpios = <&gpio2 1 GPIO_ACTIVE_LOW>;
77                                         default-state = "off";
78                                 };
79                         };
80
81                         mdio {
82                                 pinctrl-0 = <&mdio_pins>;
83                                 pinctrl-names = "default";
84                                 phy0: ethernet-phy@0 {
85                                         reg = <0>;
86                                 };
87
88                                 phy1: ethernet-phy@1 {
89                                         reg = <1>;
90                                 };
91                         };
92                         ethernet@70000 {
93                                 pinctrl-0 = <&ge0_rgmii_pins>;
94                                 pinctrl-names = "default";
95                                 status = "okay";
96                                 phy = <&phy0>;
97                                 phy-mode = "rgmii-id";
98                         };
99                         ethernet@74000 {
100                                 pinctrl-0 = <&ge1_rgmii_pins>;
101                                 pinctrl-names = "default";
102                                 status = "okay";
103                                 phy = <&phy1>;
104                                 phy-mode = "rgmii-id";
105                         };
106
107                         mvsdio@d4000 {
108                                 pinctrl-0 = <&sdio_pins3>;
109                                 pinctrl-names = "default";
110                                 status = "okay";
111                                 /*
112                                  * No CD or WP GPIOs: SDIO interface used for
113                                  * Wifi/Bluetooth chip
114                                  */
115                                  broken-cd;
116                         };
117
118                         usb@50000 {
119                                 status = "okay";
120                         };
121
122                         usb@51000 {
123                                 status = "okay";
124                         };
125
126                         i2c@11000 {
127                                 status = "okay";
128                                 clock-frequency = <100000>;
129                                 pca9505: pca9505@25 {
130                                         compatible = "nxp,pca9505";
131                                         gpio-controller;
132                                         #gpio-cells = <2>;
133                                         reg = <0x25>;
134                                 };
135                         };
136
137                         nand@d0000 {
138                                 status = "okay";
139                                 num-cs = <1>;
140                                 marvell,nand-keep-config;
141                                 marvell,nand-enable-arbiter;
142                                 nand-on-flash-bbt;
143
144                                 partition@0 {
145                                         label = "U-Boot";
146                                         reg = <0 0x400000>;
147                                 };
148                                 partition@400000 {
149                                         label = "Linux";
150                                         reg = <0x400000 0x400000>;
151                                 };
152                                 partition@800000 {
153                                         label = "Filesystem";
154                                         reg = <0x800000 0x3f800000>;
155                                 };
156                         };
157                 };
158         };
159 };
160
161 &pinctrl {
162         pwr_led_pin: pwr-led-pin {
163                 marvell,pins = "mpp63";
164                 marvell,function = "gpo";
165         };
166
167         stat_led_pins: stat-led-pins {
168                 marvell,pins = "mpp64", "mpp65";
169                 marvell,function = "gpio";
170         };
171 };
172