aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/lantiq/files-4.14/arch/mips/boot/dts/H201L.dts
blob: 46cae21a58bc18aaf13cc9f4eb7032d7c709f848 (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
/dts-v1/;

#include "ar9.dtsi"

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

/ {
	compatible = "zte,h201l", "lantiq,xway", "lantiq,ar9";
	model = "ZTE H210L";

	chosen {
		bootargs = "console=ttyLTQ0,115200";
	};

	aliases {
		led-boot = &power_green;
		led-failsafe = &power_green;
		led-running = &power_green;
		led-upgrade = &power_green;

		led-dsl = &dsl;
		led-internet = &online;
		led-usb = &led_usb;
		led-wifi = &wifi;
	};

	memory@0 {
		reg = <0x0 0x2000000>;
	};

	gpio-keys-polled {
		compatible = "gpio-keys-polled";
		#address-cells = <1>;
		#size-cells = <0>;
		poll-interval = <100>;

		reset {
			label = "reset";
			gpios = <&gpio 53 GPIO_ACTIVE_LOW>;
			linux,code = <KEY_RESTART>;
		};
		wps {
			label = "wps";
			gpios = <&gpio 54 GPIO_ACTIVE_LOW>;
			linux,code = <KEY_WPS_BUTTON>;
		};
		rfkill {
			label = "rfkill";
			gpios = <&gpio 55 GPIO_ACTIVE_LOW>;
			linux,code = <KEY_RFKILL>;
		};
	};

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

		power_green: power {
			label = "h201l:green:power";
			gpios = <&gpio 19 GPIO_ACTIVE_LOW>;
			default-state = "keep";
		};
		online: online {
			label = "h201l:green:internet";
			gpios = <&gpio 37 GPIO_ACTIVE_LOW>;
		};
		dsl: dsl {
			label = "h201l:green:dsl";
			gpios = <&gpio 4 GPIO_ACTIVE_LOW>;
		};
		phone {
			label = "h201l:green:phone";
			gpios = <&gpio 39 GPIO_ACTIVE_LOW>;
		};
		wps {
			label = "h201l:green:wps";
			gpios = <&gpio 22 GPIO_ACTIVE_LOW>;
		};
		wifi: wifi {
			label = "h201l:green:wlan";
			gpios = <&gpio 6 GPIO_ACTIVE_LOW>;
		};
		led_usb: usb {
			label = "h201l:green:usb";
			gpios = <&gpio 14 GPIO_ACTIVE_LOW>;
		};
	};

	gpio_export {
		compatible = "gpio-export";
		#size-cells = <0>;

		switch {
			gpio-export,name = "switch";
			gpio-export,output = <1>;
			gpios = <&gpio 38 GPIO_ACTIVE_HIGH>;
		};
		usb {
			gpio-export,name = "usb";
			gpio-export,output = <1>;
			gpios = <&gpio 28 GPIO_ACTIVE_HIGH>;
		};
		wifi {
			gpio-export,name = "wifi";
			gpio-export,output = <1>;
			gpios = <&gpio 7 GPIO_ACTIVE_HIGH>;
		};
	};

	usb_vbus: regulator-usb-vbus {
		compatible = "regulator-fixed";

		regulator-name = "USB_VBUS";

		regulator-min-microvolt = <5000000>;
		regulator-max-microvolt = <5000000>;

		gpio = <&gpio 36 GPIO_ACTIVE_HIGH>;
		enable-active-high;
	};
};

&gpio {
	pinctrl-names = "default";
	pinctrl-0 = <&state_default>;

	state_default: pinmux {
	};
};

&gsw {
	phy-mode = "rgmii";
};

&localbus {
	nor@0 {
		compatible = "lantiq,nor";
		bank-width = <2>;
		reg = <0 0x0 0x2000000>;
		#address-cells = <1>;
		#size-cells = <1>;

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

			partition@0 {
				label = "uboot";
				reg = <0x00000 0x20000>;
				read-only;
			};

			partition@20000 {
				label = "uboot_env";
				reg = <0x20000 0x10000>;
				read-only;
			};

			partition@30000 {
				label = "firmware";
				reg = <0x30000 0x7d0000>;
			};
		};
	};
};

&usb_phy0 {
	status = "okay";
};


&usb0 {
	status = "okay";
	vbus-supply = <&usb_vbus>;
};