blob: fe6c0246db1ab4749bf453b7e312dbd6ca5667ae [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";
Sebastian Hesselbarthab833612014-04-30 14:56:30 +02007 stdout-path = &uart0;
Simon Guinotecee1e42012-10-17 12:09:04 +02008 };
9
10 ocp@f1000000 {
Sebastian Hesselbartha9483962014-04-30 14:56:32 +020011 pinctrl: pin-controller@10000 {
Simon Guinot4ea931e2013-01-08 15:36:18 +010012 pmx_ns2_sata0: pmx-ns2-sata0 {
13 marvell,pins = "mpp21";
14 marvell,function = "sata0";
15 };
16 pmx_ns2_sata1: pmx-ns2-sata1 {
17 marvell,pins = "mpp20";
18 marvell,function = "sata1";
19 };
20 };
21
Simon Guinotecee1e42012-10-17 12:09:04 +020022 serial@12000 {
Simon Guinotecee1e42012-10-17 12:09:04 +020023 status = "okay";
24 };
25
26 spi@10600 {
27 status = "okay";
28
29 flash@0 {
30 #address-cells = <1>;
31 #size-cells = <1>;
Andrew Lunndcdf9cf2014-03-22 13:46:00 +010032 compatible = "mxicy,mx25l4005a";
Simon Guinotecee1e42012-10-17 12:09:04 +020033 reg = <0>;
34 spi-max-frequency = <20000000>;
35 mode = <0>;
36
37 partition@0 {
38 reg = <0x0 0x80000>;
39 label = "u-boot";
40 };
41 };
42 };
43
44 i2c@11000 {
45 status = "okay";
46
47 eeprom@50 {
Andrew Lunn0d606c02014-03-22 13:45:58 +010048 compatible = "atmel,24c04";
Simon Guinotecee1e42012-10-17 12:09:04 +020049 pagesize = <16>;
50 reg = <0x50>;
51 };
52 };
53 };
54
55 gpio_keys {
56 compatible = "gpio-keys";
57 #address-cells = <1>;
58 #size-cells = <0>;
59
60 button@1 {
61 label = "Power push button";
Andrew Lunn23301192013-12-04 16:51:38 +010062 linux,code = <KEY_POWER>;
Andrew Lunn3a31f2d72013-12-04 16:51:39 +010063 gpios = <&gpio1 0 GPIO_ACTIVE_HIGH>;
Simon Guinotecee1e42012-10-17 12:09:04 +020064 };
65 };
66
67 gpio-leds {
68 compatible = "gpio-leds";
69
70 red-fail {
71 label = "ns2:red:fail";
Andrew Lunn3a31f2d72013-12-04 16:51:39 +010072 gpios = <&gpio0 12 GPIO_ACTIVE_HIGH>;
Simon Guinotecee1e42012-10-17 12:09:04 +020073 };
74 };
Andrew Lunn102c9542012-12-28 15:14:10 +010075
76 gpio_poweroff {
77 compatible = "gpio-poweroff";
Andrew Lunn3a31f2d72013-12-04 16:51:39 +010078 gpios = <&gpio0 31 GPIO_ACTIVE_HIGH>;
Andrew Lunn102c9542012-12-28 15:14:10 +010079 };
80
Simon Guinotecee1e42012-10-17 12:09:04 +020081};
Sebastian Hesselbarth876e2332013-07-07 22:34:56 +020082
83&mdio {
84 status = "okay";
85
86 ethphy0: ethernet-phy {
Sebastian Hesselbarth876e2332013-07-07 22:34:56 +020087 /* overwrite reg property in board file */
88 };
89};
90
91&eth0 {
92 status = "okay";
93 ethernet0-port@0 {
94 phy-handle = <&ethphy0>;
95 };
96};