1// SPDX-License-Identifier: (GPL-2.0+ OR MIT)
2/*
3 * Copyright (c) 2019 BayLibre SAS. All rights reserved.
4 * Copyright (c) 2020 Christian Hewitt <christianshewitt@gmail.com>
5 *
6 * AC200/AC202 = S905D3
7 * AC213/AC214 = S905X3
8 *
9 */
10
11#include "meson-sm1.dtsi"
12#include <dt-bindings/gpio/gpio.h>
13#include <dt-bindings/gpio/meson-g12a-gpio.h>
14#include <dt-bindings/input/input.h>
15
16/ {
17	aliases {
18		serial0 = &uart_AO;
19		ethernet0 = &ethmac;
20	};
21
22	chosen {
23		stdout-path = "serial0:115200n8";
24	};
25
26	emmc_pwrseq: emmc-pwrseq {
27		compatible = "mmc-pwrseq-emmc";
28		reset-gpios = <&gpio BOOT_12 GPIO_ACTIVE_LOW>;
29	};
30
31	cvbs-connector {
32		compatible = "composite-video-connector";
33
34		port {
35			cvbs_connector_in: endpoint {
36				remote-endpoint = <&cvbs_vdac_out>;
37			};
38		};
39	};
40
41	hdmi-connector {
42		compatible = "hdmi-connector";
43		type = "a";
44
45		port {
46			hdmi_connector_in: endpoint {
47				remote-endpoint = <&hdmi_tx_tmds_out>;
48			};
49		};
50	};
51
52	memory@0 {
53		device_type = "memory";
54		reg = <0x0 0x0 0x0 0x40000000>;
55	};
56
57	ao_5v: regulator-ao-5v {
58		compatible = "regulator-fixed";
59		regulator-name = "AO_5V";
60		regulator-min-microvolt = <5000000>;
61		regulator-max-microvolt = <5000000>;
62		vin-supply = <&dc_in>;
63		regulator-always-on;
64	};
65
66	dc_in: regulator-dc-in {
67		compatible = "regulator-fixed";
68		regulator-name = "DC_IN";
69		regulator-min-microvolt = <5000000>;
70		regulator-max-microvolt = <5000000>;
71		regulator-always-on;
72	};
73
74	emmc_1v8: regulator-emmc-1v8 {
75		compatible = "regulator-fixed";
76		regulator-name = "EMMC_1V8";
77		regulator-min-microvolt = <1800000>;
78		regulator-max-microvolt = <1800000>;
79		vin-supply = <&vddao_3v3>;
80		regulator-always-on;
81	};
82
83	vddao_3v3: regulator-vddao-3v3 {
84		compatible = "regulator-fixed";
85		regulator-name = "VDDAO_3V3";
86		regulator-min-microvolt = <3300000>;
87		regulator-max-microvolt = <3300000>;
88		vin-supply = <&dc_in>;
89		regulator-always-on;
90	};
91
92	vddcpu: regulator-vddcpu {
93		compatible = "pwm-regulator";
94
95		regulator-name = "VDDCPU";
96		regulator-min-microvolt = <690000>;
97		regulator-max-microvolt = <1050000>;
98
99		vin-supply = <&dc_in>;
100
101		pwms = <&pwm_AO_cd 1 1500 0>;
102		pwm-dutycycle-range = <100 0>;
103
104		regulator-boot-on;
105		regulator-always-on;
106	};
107
108	vddio_ao1v8: regulator-vddio-ao1v8 {
109		compatible = "regulator-fixed";
110		regulator-name = "VDDIO_AO1V8";
111		regulator-min-microvolt = <1800000>;
112		regulator-max-microvolt = <1800000>;
113		vin-supply = <&vddao_3v3>;
114		regulator-always-on;
115	};
116
117	sdio_pwrseq: sdio-pwrseq {
118		compatible = "mmc-pwrseq-simple";
119		reset-gpios = <&gpio GPIOX_6 GPIO_ACTIVE_LOW>;
120		clocks = <&wifi32k>;
121		clock-names = "ext_clock";
122	};
123
124	wifi32k: wifi32k {
125		compatible = "pwm-clock";
126		#clock-cells = <0>;
127		clock-frequency = <32768>;
128		pwms = <&pwm_ef 0 30518 0>; /* PWM_E at 32.768KHz */
129	};
130};
131
132&cec_AO {
133	pinctrl-0 = <&cec_ao_a_h_pins>;
134	pinctrl-names = "default";
135	status = "disabled";
136	hdmi-phandle = <&hdmi_tx>;
137};
138
139&cecb_AO {
140	pinctrl-0 = <&cec_ao_b_h_pins>;
141	pinctrl-names = "default";
142	status = "okay";
143	hdmi-phandle = <&hdmi_tx>;
144};
145
146&cpu0 {
147	cpu-supply = <&vddcpu>;
148	operating-points-v2 = <&cpu_opp_table>;
149	clocks = <&clkc CLKID_CPU_CLK>;
150	clock-latency = <50000>;
151};
152
153&cpu1 {
154	cpu-supply = <&vddcpu>;
155	operating-points-v2 = <&cpu_opp_table>;
156	clocks = <&clkc CLKID_CPU1_CLK>;
157	clock-latency = <50000>;
158};
159
160&cpu2 {
161	cpu-supply = <&vddcpu>;
162	operating-points-v2 = <&cpu_opp_table>;
163	clocks = <&clkc CLKID_CPU2_CLK>;
164	clock-latency = <50000>;
165};
166
167&cpu3 {
168	cpu-supply = <&vddcpu>;
169	operating-points-v2 = <&cpu_opp_table>;
170	clocks = <&clkc CLKID_CPU3_CLK>;
171	clock-latency = <50000>;
172};
173
174&cvbs_vdac_port {
175	cvbs_vdac_out: endpoint {
176		remote-endpoint = <&cvbs_connector_in>;
177	};
178};
179
180&hdmi_tx {
181	status = "okay";
182	pinctrl-0 = <&hdmitx_hpd_pins>, <&hdmitx_ddc_pins>;
183	pinctrl-names = "default";
184};
185
186&hdmi_tx_tmds_port {
187	hdmi_tx_tmds_out: endpoint {
188		remote-endpoint = <&hdmi_connector_in>;
189	};
190};
191
192&ir {
193	status = "okay";
194	pinctrl-0 = <&remote_input_ao_pins>;
195	pinctrl-names = "default";
196};
197
198&pwm_AO_ab {
199	status = "okay";
200	pinctrl-0 = <&pwm_ao_a_pins>;
201	pinctrl-names = "default";
202};
203
204&pwm_AO_cd {
205	pinctrl-0 = <&pwm_ao_d_e_pins>;
206	pinctrl-names = "default";
207	status = "okay";
208};
209
210&pwm_ef {
211	status = "okay";
212	pinctrl-0 = <&pwm_e_pins>;
213	pinctrl-names = "default";
214};
215
216&saradc {
217	status = "okay";
218	vref-supply = <&vddio_ao1v8>;
219};
220
221/* SDIO */
222&sd_emmc_a {
223	status = "okay";
224	pinctrl-0 = <&sdio_pins>;
225	pinctrl-1 = <&sdio_clk_gate_pins>;
226	pinctrl-names = "default", "clk-gate";
227	#address-cells = <1>;
228	#size-cells = <0>;
229
230	bus-width = <4>;
231	cap-sd-highspeed;
232	sd-uhs-sdr104;
233	max-frequency = <200000000>;
234
235	non-removable;
236	disable-wp;
237
238	/* WiFi firmware requires power to be kept while in suspend */
239	keep-power-in-suspend;
240
241	mmc-pwrseq = <&sdio_pwrseq>;
242
243	vmmc-supply = <&vddao_3v3>;
244	vqmmc-supply = <&vddio_ao1v8>;
245};
246
247/* SD Card */
248&sd_emmc_b {
249	status = "okay";
250	pinctrl-0 = <&sdcard_c_pins>;
251	pinctrl-1 = <&sdcard_clk_gate_c_pins>;
252	pinctrl-names = "default", "clk-gate";
253
254	bus-width = <4>;
255	cap-sd-highspeed;
256	/* CRC errors are observed at 50MHz */
257	max-frequency = <35000000>;
258	disable-wp;
259
260	cd-gpios = <&gpio GPIOC_6 GPIO_ACTIVE_LOW>;
261	vmmc-supply = <&vddao_3v3>;
262	vqmmc-supply = <&vddao_3v3>;
263};
264
265/* eMMC */
266&sd_emmc_c {
267	status = "okay";
268	pinctrl-0 = <&emmc_ctrl_pins>, <&emmc_data_8b_pins>, <&emmc_ds_pins>;
269	pinctrl-1 = <&emmc_clk_gate_pins>;
270	pinctrl-names = "default", "clk-gate";
271
272	bus-width = <8>;
273	cap-mmc-highspeed;
274	mmc-ddr-1_8v;
275	mmc-hs200-1_8v;
276	max-frequency = <200000000>;
277	non-removable;
278	disable-wp;
279
280	mmc-pwrseq = <&emmc_pwrseq>;
281	vmmc-supply = <&vddao_3v3>;
282	vqmmc-supply = <&emmc_1v8>;
283};
284
285&uart_AO {
286	status = "okay";
287	pinctrl-0 = <&uart_ao_a_pins>;
288	pinctrl-names = "default";
289};
290
291&usb {
292	status = "okay";
293	dr_mode = "otg";
294};
295