blob: 1c2d13d3e5979f96e77ffef6324a5e0b4aaf7829 [file] [log] [blame]
Arnaud Ebalard2344a292013-07-04 23:16:46 +02001/*
2 * Device Tree file for NETGEAR ReadyNAS 102
3 *
4 * Copyright (C) 2013, Arnaud EBALARD <arno@natisbad.org>
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 */
11
12/dts-v1/;
13
Arnaud Ebalardb8f18162013-11-29 21:27:38 +010014#include <dt-bindings/input/input.h>
15#include <dt-bindings/gpio/gpio.h>
Jason Cooper3d0ed752013-08-06 15:28:38 +000016#include "armada-370.dtsi"
Arnaud Ebalard2344a292013-07-04 23:16:46 +020017
18/ {
19 model = "NETGEAR ReadyNAS 102";
20 compatible = "netgear,readynas-102", "marvell,armada370", "marvell,armada-370-xp";
21
22 chosen {
23 bootargs = "console=ttyS0,115200 earlyprintk";
24 };
25
26 memory {
27 device_type = "memory";
28 reg = <0x00000000 0x20000000>; /* 512 MB */
29 };
30
31 soc {
Arnaud Ebalardb643f852013-10-01 00:19:16 +020032 ranges = <MBUS_ID(0xf0, 0x01) 0 0xd0000000 0x100000
33 MBUS_ID(0x01, 0xe0) 0 0xfff00000 0x100000>;
34
35 pcie-controller {
36 status = "okay";
37
38 /* Connected to Marvell SATA controller */
39 pcie@1,0 {
40 /* Port 0, Lane 0 */
41 status = "okay";
42 };
43
44 /* Connected to FL1009 USB 3.0 controller */
45 pcie@2,0 {
46 /* Port 1, Lane 0 */
47 status = "okay";
48 };
49 };
50
Arnaud Ebalard2344a292013-07-04 23:16:46 +020051 internal-regs {
52 serial@12000 {
53 clock-frequency = <200000000>;
54 status = "okay";
55 };
56
57 sata@a0000 {
58 nr-ports = <2>;
59 status = "okay";
60 };
61
62 pinctrl {
63 power_led_pin: power-led-pin {
64 marvell,pins = "mpp57";
65 marvell,function = "gpio";
66 };
Arnaud Ebalardece19e22013-11-29 21:27:58 +010067
Arnaud Ebalard2344a292013-07-04 23:16:46 +020068 sata1_led_pin: sata1-led-pin {
69 marvell,pins = "mpp15";
70 marvell,function = "gpio";
71 };
72
73 sata2_led_pin: sata2-led-pin {
74 marvell,pins = "mpp14";
75 marvell,function = "gpio";
76 };
77
78 backup_led_pin: backup-led-pin {
79 marvell,pins = "mpp56";
80 marvell,function = "gpio";
81 };
Arnaud Ebalard2832cf22013-09-29 23:41:43 +020082
Arnaud Ebalardb8f18162013-11-29 21:27:38 +010083 backup_button_pin: backup-button-pin {
84 marvell,pins = "mpp58";
85 marvell,function = "gpio";
86 };
87
88 power_button_pin: power-button-pin {
89 marvell,pins = "mpp62";
90 marvell,function = "gpio";
91 };
92
93 reset_button_pin: reset-button-pin {
94 marvell,pins = "mpp6";
95 marvell,function = "gpio";
96 };
97
Arnaud Ebalard2832cf22013-09-29 23:41:43 +020098 poweroff: poweroff {
99 marvell,pins = "mpp8";
100 marvell,function = "gpio";
101 };
Arnaud Ebalard2344a292013-07-04 23:16:46 +0200102 };
103
104 mdio {
Arnaud Ebalardb8f18162013-11-29 21:27:38 +0100105 phy0: ethernet-phy@0 { /* Marvell 88E1318 */
Arnaud Ebalard2344a292013-07-04 23:16:46 +0200106 reg = <0>;
107 };
108 };
109
110 ethernet@74000 {
111 status = "okay";
112 phy = <&phy0>;
113 phy-mode = "rgmii-id";
114 };
115
116 usb@50000 {
117 status = "okay";
118 };
119
120 i2c@11000 {
121 compatible = "marvell,mv64xxx-i2c";
122 clock-frequency = <100000>;
123 status = "okay";
124
125 g762: g762@3e {
126 compatible = "gmt,g762";
127 reg = <0x3e>;
128 clocks = <&g762_clk>; /* input clock */
129 fan_gear_mode = <0>;
130 fan_startv = <1>;
131 pwm_polarity = <0>;
132 };
133 };
Arnaud Ebalard2344a292013-07-04 23:16:46 +0200134 };
135 };
136
137 clocks {
Arnaud Ebalardb8f18162013-11-29 21:27:38 +0100138 g762_clk: g762-oscillator {
Arnaud Ebalard2344a292013-07-04 23:16:46 +0200139 compatible = "fixed-clock";
140 #clock-cells = <0>;
141 clock-frequency = <8192>;
142 };
143 };
144
Arnaud Ebalardb8f18162013-11-29 21:27:38 +0100145 gpio-leds {
Arnaud Ebalard2344a292013-07-04 23:16:46 +0200146 compatible = "gpio-leds";
Arnaud Ebalardb8f18162013-11-29 21:27:38 +0100147 pinctrl-0 = <&power_led_pin
148 &sata1_led_pin
149 &sata2_led_pin
150 &backup_led_pin>;
Arnaud Ebalard2344a292013-07-04 23:16:46 +0200151 pinctrl-names = "default";
152
Arnaud Ebalardb8f18162013-11-29 21:27:38 +0100153 blue-power-led {
Arnaud Ebalard2344a292013-07-04 23:16:46 +0200154 label = "rn102:blue:pwr";
Arnaud Ebalardb8f18162013-11-29 21:27:38 +0100155 gpios = <&gpio1 25 GPIO_ACTIVE_LOW>;
Jason Cooperdcdf14c2013-10-14 17:37:55 +0000156 default-state = "keep";
Arnaud Ebalard2344a292013-07-04 23:16:46 +0200157 };
158
Arnaud Ebalardb8f18162013-11-29 21:27:38 +0100159 green-sata1-led {
Arnaud Ebalard2344a292013-07-04 23:16:46 +0200160 label = "rn102:green:sata1";
Arnaud Ebalardb8f18162013-11-29 21:27:38 +0100161 gpios = <&gpio0 15 GPIO_ACTIVE_LOW>;
Arnaud Ebalard2344a292013-07-04 23:16:46 +0200162 default-state = "on";
163 };
164
Arnaud Ebalardb8f18162013-11-29 21:27:38 +0100165 green-sata2-led {
Arnaud Ebalard2344a292013-07-04 23:16:46 +0200166 label = "rn102:green:sata2";
Arnaud Ebalardb8f18162013-11-29 21:27:38 +0100167 gpios = <&gpio0 14 GPIO_ACTIVE_LOW>;
Arnaud Ebalard2344a292013-07-04 23:16:46 +0200168 default-state = "on";
169 };
170
Arnaud Ebalardb8f18162013-11-29 21:27:38 +0100171 green-backup-led {
Arnaud Ebalard2344a292013-07-04 23:16:46 +0200172 label = "rn102:green:backup";
Arnaud Ebalardb8f18162013-11-29 21:27:38 +0100173 gpios = <&gpio1 24 GPIO_ACTIVE_LOW>;
Arnaud Ebalard2344a292013-07-04 23:16:46 +0200174 default-state = "on";
175 };
176 };
177
Arnaud Ebalardb8f18162013-11-29 21:27:38 +0100178 gpio-keys {
Arnaud Ebalard2344a292013-07-04 23:16:46 +0200179 compatible = "gpio-keys";
Arnaud Ebalardb8f18162013-11-29 21:27:38 +0100180 pinctrl-0 = <&power_button_pin
181 &reset_button_pin
182 &backup_button_pin>;
183 pinctrl-names = "default";
Arnaud Ebalard2344a292013-07-04 23:16:46 +0200184
Arnaud Ebalardb8f18162013-11-29 21:27:38 +0100185 power-button {
Arnaud Ebalard2344a292013-07-04 23:16:46 +0200186 label = "Power Button";
Arnaud Ebalardb8f18162013-11-29 21:27:38 +0100187 linux,code = <KEY_POWER>;
188 gpios = <&gpio1 30 GPIO_ACTIVE_HIGH>;
Arnaud Ebalard2344a292013-07-04 23:16:46 +0200189 };
190
Arnaud Ebalardb8f18162013-11-29 21:27:38 +0100191 reset-button {
Arnaud Ebalard2344a292013-07-04 23:16:46 +0200192 label = "Reset Button";
Arnaud Ebalardb8f18162013-11-29 21:27:38 +0100193 linux,code = <KEY_RESTART>;
194 gpios = <&gpio0 6 GPIO_ACTIVE_LOW>;
Arnaud Ebalard2344a292013-07-04 23:16:46 +0200195 };
196
Arnaud Ebalardb8f18162013-11-29 21:27:38 +0100197 backup-button {
Arnaud Ebalard2344a292013-07-04 23:16:46 +0200198 label = "Backup Button";
Arnaud Ebalardb8f18162013-11-29 21:27:38 +0100199 linux,code = <KEY_COPY>;
200 gpios = <&gpio1 26 GPIO_ACTIVE_LOW>;
Arnaud Ebalard2344a292013-07-04 23:16:46 +0200201 };
202 };
203
Arnaud Ebalardb8f18162013-11-29 21:27:38 +0100204 gpio-poweroff {
Arnaud Ebalard2832cf22013-09-29 23:41:43 +0200205 compatible = "gpio-poweroff";
206 pinctrl-0 = <&poweroff>;
207 pinctrl-names = "default";
Arnaud Ebalardb8f18162013-11-29 21:27:38 +0100208 gpios = <&gpio0 8 GPIO_ACTIVE_LOW>;
Arnaud Ebalard2832cf22013-09-29 23:41:43 +0200209 };
Arnaud Ebalard2344a292013-07-04 23:16:46 +0200210};