summaryrefslogtreecommitdiffstats
path: root/target/linux/ramips/dts/mt7621_ampedwireless_ally.dtsi
blob: 7736b06e43875791870873b45044e149c6660495 (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
// SPDX-License-Identifier: GPL-2.0-or-later OR MIT

#include "mt7621.dtsi"

#include <dt-bindings/gpio/gpio.h>
#include <dt-bindings/input/input.h>

/ {
	aliases {
		led-boot = &led_status_amber;
		led-failsafe = &led_status_amber;
		led-running = &led_status_green;
		led-upgrade = &led_status_red;
	};

	keys {
		compatible = "gpio-keys";

		led_switch {
			label = "led_switch";
			gpios = <&gpio 13 GPIO_ACTIVE_HIGH>;
			linux,code = <KEY_LIGHTS_TOGGLE>;
			linux,input-type = <EV_SW>;
		};

		reset {
			label = "reset";
			gpios = <&gpio 16 GPIO_ACTIVE_LOW>;
			linux,code = <KEY_RESTART>;
		};

		wps {
			label = "wps";
			gpios = <&gpio 18 GPIO_ACTIVE_HIGH>;
			linux,code = <KEY_WPS_BUTTON>;
		};
	};

	leds {
		compatible = "gpio-leds";

		led_status_green: status_green {
			label = "green:status";
			gpios = <&gpio 7 GPIO_ACTIVE_HIGH>;
		};

		led_status_red: status_red {
			label = "red:status";
			gpios = <&gpio 12 GPIO_ACTIVE_HIGH>;
		};

		led_status_amber: status_amber {
			label = "amber:status";
			gpios = <&gpio 14 GPIO_ACTIVE_HIGH>;
		};
	};
};

&pcie {
	status = "okay";
};

&pcie0 {
	wifi@0,0 {
		compatible = "pci14c3,7615";
		reg = <0x0000 0 0 0 0>;
		mediatek,mtd-eeprom = <&factory 0x0000>;
		ieee80211-freq-limit = <2400000 2500000>;
	};
};

&pcie1 {
	wifi@0,0 {
		compatible = "pci14c3,7615";
		reg = <0x0000 0 0 0 0>;
		mediatek,mtd-eeprom = <&factory 0x8000>;
		ieee80211-freq-limit = <5000000 6000000>;
	};
};

&state_default {
	gpio {
		groups = "uart2", "uart3", "jtag", "wdt";
		function = "gpio";
	};
};

&nand {
	status = "okay";

	partitions {
		compatible = "fixed-partitions";
		#address-cells = <1>;
		#size-cells = <1>;

		partition@0 {
			label = "u-boot";
			reg = <0x0 0x80000>;
			read-only;
		};

		partition@80000 {
			label = "u-boot-env";
			reg = <0x80000 0x80000>;
		};

		factory: partition@100000 {
			label = "factory";
			reg = <0x100000 0x40000>;
			read-only;
		};

		/*
		 * uboot expects to find kernels at 0x140000 & 0x2140000,
		 * referred to as Uimage & Uimage1 in factory FW, respectively.
		 * U-boot variable 'bootImage' controls which is booted;
		 * 0 for the first, 1 for the 2nd.
		 * There's a 3rd partition, Uimage2 (0x4140000), which
		 * I expected to be a recovery image, but is actually blank.
		 *
		 * A kernel is considered suitable for handing control over
		 * if its linux magic number exists & uImage CRC are correct.
		 * If either of those conditions fail, 'bootImage' value
		 * is toggled in uboot env & a restart performed in the hope that the
		 * alternate kernel is okay.
		 *
		 * Note uboot's tftp flash install writes the transferred
		 * image to the active kernel partition.
		 */

		partition@140000 {
			label = "kernel";
			reg = <0x140000 0x400000>;
		};

		partition@540000 {
			label = "ubi";
			reg = <0x540000 0x1c00000>;
		};

		partition@2140000 {
			label = "oem";
			reg = <0x2140000 0x2000000>;
		};

		partition@4140000 {
			label = "backup";
			reg = <0x4140000 0x2000000>;
		};

		partition@6140000 {
			label = "chime";
			reg = <0x6140000 0xa00000>;
		};

		partition@6b40000 {
			label = "data";
			reg = <0x6b40000 0xa00000>;
		};

		partition@7540000 {
			label = "reserved";
			reg = <0x7540000 0x840000>;
			read-only;
		};

		partition@7d80000 {
			label = "nvram";
			reg = <0x7d80000 0x100000>;
			read-only;
		};

		partition@7e80000 {
			label = "hwconfig";
			reg = <0x7e80000 0x100000>;
			read-only;
		};
	};
};