blob: 0e06fd3cee4dc40113e94420f767d4ffba7301c7 [file] [log] [blame]
Simon Guinot98d4f2ac2013-04-09 00:41:28 +02001/dts-v1/;
2
Ezequiel Garcia0ab61292013-07-26 10:18:02 -03003#include "kirkwood.dtsi"
4#include "kirkwood-6281.dtsi"
Simon Guinot98d4f2ac2013-04-09 00:41:28 +02005
6/ {
7 model = "LaCie CloudBox";
8 compatible = "lacie,cloudbox", "marvell,kirkwood-88f6702", "marvell,kirkwood";
9
10 memory {
11 device_type = "memory";
12 reg = <0x00000000 0x10000000>;
13 };
14
15 chosen {
16 bootargs = "console=ttyS0,115200n8";
17 };
18
19 ocp@f1000000 {
20 pinctrl: pinctrl@10000 {
Simon Guinot98d4f2ac2013-04-09 00:41:28 +020021 pmx_cloudbox_sata0: pmx-cloudbox-sata0 {
22 marvell,pins = "mpp15";
23 marvell,function = "sata0";
24 };
25 };
26
27 serial@12000 {
Thomas Petazzoni2dd432e2013-05-24 11:44:38 +020028 pinctrl-0 = <&pmx_uart0>;
29 pinctrl-names = "default";
Simon Guinot98d4f2ac2013-04-09 00:41:28 +020030 clock-frequency = <166666667>;
31 status = "okay";
32 };
33
34 sata@80000 {
Thomas Petazzoni2dd432e2013-05-24 11:44:38 +020035 pinctrl-0 = <&pmx_cloudbox_sata0>;
36 pinctrl-names = "default";
Simon Guinot98d4f2ac2013-04-09 00:41:28 +020037 status = "okay";
38 nr-ports = <1>;
39 };
40
41 spi@10600 {
Thomas Petazzoni2dd432e2013-05-24 11:44:38 +020042 pinctrl-0 = <&pmx_spi>;
43 pinctrl-names = "default";
Simon Guinot98d4f2ac2013-04-09 00:41:28 +020044 status = "okay";
45
46 flash@0 {
47 #address-cells = <1>;
48 #size-cells = <1>;
49 compatible = "mx25l4005a";
50 reg = <0>;
51 spi-max-frequency = <20000000>;
52 mode = <0>;
53
54 partition@0 {
55 reg = <0x0 0x80000>;
56 label = "u-boot";
57 };
58 };
59 };
60 };
61
62 gpio_keys {
63 compatible = "gpio-keys";
64 #address-cells = <1>;
65 #size-cells = <0>;
66
67 button@1 {
68 label = "Power push button";
Andrew Lunn23301192013-12-04 16:51:38 +010069 linux,code = <KEY_POWER>;
Andrew Lunn3a31f2d72013-12-04 16:51:39 +010070 gpios = <&gpio0 16 GPIO_ACTIVE_LOW>;
Simon Guinot98d4f2ac2013-04-09 00:41:28 +020071 };
72 };
73
74 gpio-leds {
75 compatible = "gpio-leds";
76
77 red-fail {
78 label = "cloudbox:red:fail";
Andrew Lunn3a31f2d72013-12-04 16:51:39 +010079 gpios = <&gpio0 14 GPIO_ACTIVE_HIGH>;
Simon Guinot98d4f2ac2013-04-09 00:41:28 +020080 };
81 blue-sata {
82 label = "cloudbox:blue:sata";
Andrew Lunn3a31f2d72013-12-04 16:51:39 +010083 gpios = <&gpio0 15 GPIO_ACTIVE_HIGH>;
Simon Guinot98d4f2ac2013-04-09 00:41:28 +020084 };
85 };
86
87 gpio_poweroff {
88 compatible = "gpio-poweroff";
Andrew Lunn3a31f2d72013-12-04 16:51:39 +010089 gpios = <&gpio0 17 GPIO_ACTIVE_HIGH>;
Simon Guinot98d4f2ac2013-04-09 00:41:28 +020090 };
91};
Sebastian Hesselbarth876e2332013-07-07 22:34:56 +020092
93&mdio {
94 status = "okay";
95
96 ethphy0: ethernet-phy@0 {
Sebastian Hesselbarth876e2332013-07-07 22:34:56 +020097 reg = <0>;
98 };
99};
100
101&eth0 {
102 status = "okay";
103 ethernet0-port@0 {
104 phy-handle = <&ethphy0>;
105 };
106};