aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/apm821xx/dts/meraki-mx60.dts
blob: 3620005e4d250bdd76bef574ccc9b5947ff1fbf0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
/*
 * Device Tree Source for Meraki MX60/MX60W (Buckminster)
 *
 * Copyright (C) 2016 Chris Blake <chrisrblake93@gmail.com>
 *
 * Based on Cisco Meraki DTS extracted from release wired-12-217818
 *
 * This file is licensed under the terms of the GNU General Public
 * License version 2.  This program is licensed "as is" without
 * any warranty of any kind, whether express or implied.
 */

/dts-v1/;

#include "apm82181.dtsi"

/ {
	model = "Meraki MX60/MX60W Security Appliance";
	compatible = "meraki,mx60", "meraki,buckminster", "apm,bluestone";

	aliases {
		serial0 = &UART1;
		led-boot = &status;
		led-failsafe = &failsafe;
		led-running = &status;
		led-upgrade = &status;
	};

	chosen {
		stdout-path = "/plb/opb/serial@ef600400";
	};
};

&CRYPTO {
	status = "okay";
};

&PKA {
	status = "okay";
};

&TRNG {
	status = "okay";
};

&USBOTG0 {
	status = "okay";
	dr_mode = "host";
};

&EBC0 {
	/* Buckminster has 1GiB of NAND */
	ndfc@1,0 {
		status = "okay";
		nand {
			partition@0 {
				label = "u-boot";
				reg = <0x00000000 0x00100000>;
				read-only;
			};

			partition@100000 {
				label = "u-boot-env";
				reg = <0x00100000 0x00100000>;
				read-only;
			};

			partition@200000 {
				label = "oops";
				reg = <0x00200000 0x00040000>;
			};

			partition@240000 {
				label = "ubi";
				reg = <0x00240000 0x3fdc0000>;
			};
		};
	};
};

&UART1 {
	status = "okay";
};

&GPIO0 {
	status = "okay";
};

&IIC0 {
	status = "okay";
};

&EMAC0 {
	status = "okay";
	phy-handle = <&phy0>;

	mdio {
		#address-cells = <1>;
		#size-cells = <0>;
		phy0: ethernet-phy@0 {
			compatible = "ethernet-phy-id004d.d034";
			reg = <0>;
			qca,mib-poll-interval = <500>;

			qca,ar8327-initvals = <
				0x0010 0x40000000
				0x0624 0x007f7f7f
				0x0004 0x07a00000	/* PAD0_MODE */
				0x000c 0x01000000	/* PAD6_MODE */
				0x007c 0x0000007e	/* PORT0_STATUS */
			>;
		};
	};
};

&POB0 {
	leds {
		compatible = "gpio-leds";

		status: power-green {
			label = "mx60:green:power";
			gpios = <&GPIO0 18 GPIO_ACTIVE_LOW>;
		};

		failsafe: power-orange {
			label = "mx60:orange:power";
			gpios = <&GPIO0 19 GPIO_ACTIVE_LOW>;
		};

		wan-green {
			label = "mx60:green:wan";
			gpios = <&GPIO0 17 GPIO_ACTIVE_LOW>;
		};

		wan-orange {
			label = "mx60:orange:wan";
			gpios = <&GPIO0 15 GPIO_ACTIVE_LOW>;
		};

		lan1 {
			label = "mx60:green:lan1";
			gpios = <&GPIO0 20 GPIO_ACTIVE_LOW>;
		};

		lan2 {
			label = "mx60:green:lan2";
			gpios = <&GPIO0 21 GPIO_ACTIVE_LOW>;
		};

		lan3 {
			label = "mx60:green:lan3";
			gpios = <&GPIO0 22 GPIO_ACTIVE_LOW>;
		};

		lan4 {
			label = "mx60:green:lan4";
			gpios = <&GPIO0 23 GPIO_ACTIVE_LOW>;
		};
	};

	keys {
		compatible = "gpio-keys";

		reset {
			label = "Reset button";
			linux,code = <KEY_RESTART>;
			gpios = <&GPIO0 16 GPIO_ACTIVE_LOW>;
			interrupt-parent = <&UIC1>;
			interrupts = <0x15 IRQ_TYPE_EDGE_FALLING>;
			debounce-interval = <60>;
		};
	};
};

&PCIE0 {
	/* Leave this enabled as u-boot on the MX60 will disable it for us */
	status = "okay";
};

&MSI {
	status = "okay";
};