blob: 843eb478b3e41d7358b6d45fad24796d7b9c1e68 [file] [log] [blame]
Ezequiel Garcia0ab61292013-07-26 10:18:02 -03001#include "kirkwood.dtsi"
2#include "kirkwood-6281.dtsi"
Simon Guinotecee1e42012-10-17 12:09:04 +02003
4/ {
5 chosen {
6 bootargs = "console=ttyS0,115200n8";
7 };
8
9 ocp@f1000000 {
Simon Guinot4ea931e2013-01-08 15:36:18 +010010 pinctrl: pinctrl@10000 {
Simon Guinot4ea931e2013-01-08 15:36:18 +010011 pmx_ns2_sata0: pmx-ns2-sata0 {
12 marvell,pins = "mpp21";
13 marvell,function = "sata0";
14 };
15 pmx_ns2_sata1: pmx-ns2-sata1 {
16 marvell,pins = "mpp20";
17 marvell,function = "sata1";
18 };
19 };
20
Simon Guinotecee1e42012-10-17 12:09:04 +020021 serial@12000 {
Thomas Petazzonief519a42013-05-24 11:44:48 +020022 pinctrl-0 = <&pmx_uart0>;
23 pinctrl-names = "default";
Simon Guinotecee1e42012-10-17 12:09:04 +020024 status = "okay";
25 };
26
27 spi@10600 {
Thomas Petazzonief519a42013-05-24 11:44:48 +020028 pinctrl-0 = <&pmx_spi>;
29 pinctrl-names = "default";
Simon Guinotecee1e42012-10-17 12:09:04 +020030 status = "okay";
31
32 flash@0 {
33 #address-cells = <1>;
34 #size-cells = <1>;
35 compatible = "mx25l4005a";
36 reg = <0>;
37 spi-max-frequency = <20000000>;
38 mode = <0>;
39
40 partition@0 {
41 reg = <0x0 0x80000>;
42 label = "u-boot";
43 };
44 };
45 };
46
47 i2c@11000 {
Thomas Petazzonief519a42013-05-24 11:44:48 +020048 pinctrl-0 = <&pmx_twsi0>;
49 pinctrl-names = "default";
Simon Guinotecee1e42012-10-17 12:09:04 +020050 status = "okay";
51
52 eeprom@50 {
Andrew Lunn0d606c02014-03-22 13:45:58 +010053 compatible = "atmel,24c04";
Simon Guinotecee1e42012-10-17 12:09:04 +020054 pagesize = <16>;
55 reg = <0x50>;
56 };
57 };
58 };
59
60 gpio_keys {
61 compatible = "gpio-keys";
62 #address-cells = <1>;
63 #size-cells = <0>;
64
65 button@1 {
66 label = "Power push button";
Andrew Lunn23301192013-12-04 16:51:38 +010067 linux,code = <KEY_POWER>;
Andrew Lunn3a31f2d72013-12-04 16:51:39 +010068 gpios = <&gpio1 0 GPIO_ACTIVE_HIGH>;
Simon Guinotecee1e42012-10-17 12:09:04 +020069 };
70 };
71
72 gpio-leds {
73 compatible = "gpio-leds";
74
75 red-fail {
76 label = "ns2:red:fail";
Andrew Lunn3a31f2d72013-12-04 16:51:39 +010077 gpios = <&gpio0 12 GPIO_ACTIVE_HIGH>;
Simon Guinotecee1e42012-10-17 12:09:04 +020078 };
79 };
Andrew Lunn102c9542012-12-28 15:14:10 +010080
81 gpio_poweroff {
82 compatible = "gpio-poweroff";
Andrew Lunn3a31f2d72013-12-04 16:51:39 +010083 gpios = <&gpio0 31 GPIO_ACTIVE_HIGH>;
Andrew Lunn102c9542012-12-28 15:14:10 +010084 };
85
Simon Guinotecee1e42012-10-17 12:09:04 +020086};
Sebastian Hesselbarth876e2332013-07-07 22:34:56 +020087
88&mdio {
89 status = "okay";
90
91 ethphy0: ethernet-phy {
Sebastian Hesselbarth876e2332013-07-07 22:34:56 +020092 /* overwrite reg property in board file */
93 };
94};
95
96&eth0 {
97 status = "okay";
98 ethernet0-port@0 {
99 phy-handle = <&ethphy0>;
100 };
101};