ARM: dts: kirkwood: add node labels
[deliverable/linux.git] / arch / arm / boot / dts / kirkwood-t5325.dts
1 /*
2 * Device Tree file for HP t5325 Thin Client"
3 *
4 * Copyright (C) 2014
5 *
6 * Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
7 * Andrew Lunn <andrew@lunn.ch>
8 *
9 * This file is licensed under the terms of the GNU General Public
10 * License version 2. This program is licensed "as is" without any
11 * warranty of any kind, whether express or implied.
12 */
13
14 /dts-v1/;
15
16 #include "kirkwood.dtsi"
17 #include "kirkwood-6281.dtsi"
18
19 / {
20 model = "HP t5325 Thin Client";
21 compatible = "hp,t5325", "marvell,kirkwood-88f6281", "marvell,kirkwood";
22
23 memory {
24 device_type = "memory";
25 reg = <0x00000000 0x20000000>;
26 };
27
28 chosen {
29 bootargs = "console=ttyS0,115200n8";
30 };
31
32 mbus {
33 pcie-controller {
34 status = "okay";
35
36 pcie@1,0 {
37 status = "okay";
38 };
39 };
40 };
41
42 ocp@f1000000 {
43 pinctrl: pinctrl@10000 {
44 pinctrl-0 = <&pmx_i2s &pmx_sysrst>;
45 pinctrl-names = "default";
46
47 pmx_button_power: pmx-button_power {
48 marvell,pins = "mpp45";
49 marvell,function = "gpio";
50 };
51
52 pmx_power_off: pmx-power-off {
53 marvell,pins = "mpp48";
54 marvell,function = "gpio";
55 };
56
57 pmx_led: pmx-led {
58 marvell,pins = "mpp21";
59 marvell,function = "gpio";
60 };
61
62 pmx_usb_sata_power_enable: pmx-usb-sata-power-enable {
63 marvell,pins = "mpp44";
64 marvell,function = "gpio";
65 };
66
67 /*
68 * Redefined from kirkwood-6281.dtsi, because
69 * we don't use SPI CS on MPP0, but on MPP7.
70 */
71 pmx_spi: pmx-spi {
72 marvell,pins = "mpp1", "mpp2", "mpp3", "mpp7";
73 marvell,function = "spi";
74 };
75
76 pmx_sysrst: pmx-sysrst {
77 marvell,pins = "mpp6";
78 marvell,function = "sysrst";
79 };
80
81 pmx_i2s: pmx-i2s {
82 marvell,pins = "mpp39", "mpp40", "mpp41", "mpp42",
83 "mpp43";
84 marvell,function = "audio";
85 };
86 };
87
88 spi@10600 {
89 pinctrl-0 = <&pmx_spi>;
90 pinctrl-names = "default";
91 status = "okay";
92
93 flash@0 {
94 #address-cells = <1>;
95 #size-cells = <1>;
96 compatible = "st,m25p80";
97 spi-max-frequency = <86000000>;
98 reg = <0>;
99 mode = <0>;
100
101 partition@0 {
102 reg = <0x0 0x80000>;
103 label = "u-boot";
104 };
105
106 partition@1 {
107 reg = <0x80000 0x40000>;
108 label = "SSD firmware";
109 };
110
111 partition@2 {
112 reg = <0xc0000 0x10000>;
113 label = "u-boot env";
114 };
115
116 partition@3 {
117 reg = <0xd0000 0x10000>;
118 label = "permanent u-boot env";
119 };
120
121 partition@4 {
122 reg = <0xd0000 0x10000>;
123 label = "permanent u-boot env";
124 };
125 };
126 };
127
128 i2c@11000 {
129 status = "okay";
130
131 alc5621: alc5621@1a {
132 compatible = "realtek,alc5621";
133 reg = <0x1a>;
134 };
135 };
136
137 serial@12000 {
138 status = "okay";
139 };
140
141 sata@80000 {
142 status = "okay";
143 nr-ports = <2>;
144 };
145
146 audio: audio-controller@a0000 {
147 status = "okay";
148 };
149 };
150
151 regulators {
152 compatible = "simple-bus";
153 #address-cells = <1>;
154 #size-cells = <0>;
155 pinctrl-0 = <&pmx_usb_sata_power_enable>;
156 pinctrl-names = "default";
157
158 usb_power: regulator@1 {
159 compatible = "regulator-fixed";
160 reg = <1>;
161 regulator-name = "USB-SATA Power";
162 regulator-min-microvolt = <5000000>;
163 regulator-max-microvolt = <5000000>;
164 enable-active-high;
165 regulator-always-on;
166 regulator-boot-on;
167 gpio = <&gpio1 12 GPIO_ACTIVE_HIGH>;
168 };
169 };
170
171 gpio_keys {
172 compatible = "gpio-keys";
173 #address-cells = <1>;
174 #size-cells = <0>;
175 pinctrl-0 = <&pmx_button_power>;
176 pinctrl-names = "default";
177
178 button@1 {
179 label = "Power Button";
180 linux,code = <KEY_POWER>;
181 gpios = <&gpio1 13 GPIO_ACTIVE_HIGH>;
182 };
183 };
184
185 gpio_poweroff {
186 compatible = "gpio-poweroff";
187 pinctrl-0 = <&pmx_power_off>;
188 pinctrl-names = "default";
189 gpios = <&gpio1 17 GPIO_ACTIVE_HIGH>;
190 };
191
192 };
193
194 &mdio {
195 status = "okay";
196
197 ethphy0: ethernet-phy {
198 device_type = "ethernet-phy";
199 reg = <8>;
200 };
201 };
202
203 &eth0 {
204 status = "okay";
205 ethernet0-port@0 {
206 phy-handle = <&ethphy0>;
207 };
208 };
This page took 0.036254 seconds and 5 git commands to generate.