Linux Audio

Check our new training course

Loading...
v4.17
 
  1/*
  2 * Copyright (c) 2013 Heiko Stuebner <heiko@sntech.de>
  3 *
  4 * This file is dual-licensed: you can use it either under the terms
  5 * of the GPL or the X11 license, at your option. Note that this dual
  6 * licensing only applies to this file, and not this project as a
  7 * whole.
  8 *
  9 *  a) This file is free software; you can redistribute it and/or
 10 *     modify it under the terms of the GNU General Public License as
 11 *     published by the Free Software Foundation; either version 2 of the
 12 *     License, or (at your option) any later version.
 13 *
 14 *     This file is distributed in the hope that it will be useful,
 15 *     but WITHOUT ANY WARRANTY; without even the implied warranty of
 16 *     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 17 *     GNU General Public License for more details.
 18 *
 19 * Or, alternatively,
 20 *
 21 *  b) Permission is hereby granted, free of charge, to any person
 22 *     obtaining a copy of this software and associated documentation
 23 *     files (the "Software"), to deal in the Software without
 24 *     restriction, including without limitation the rights to use,
 25 *     copy, modify, merge, publish, distribute, sublicense, and/or
 26 *     sell copies of the Software, and to permit persons to whom the
 27 *     Software is furnished to do so, subject to the following
 28 *     conditions:
 29 *
 30 *     The above copyright notice and this permission notice shall be
 31 *     included in all copies or substantial portions of the Software.
 32 *
 33 *     THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 34 *     EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
 35 *     OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 36 *     NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
 37 *     HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
 38 *     WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
 39 *     FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
 40 *     OTHER DEALINGS IN THE SOFTWARE.
 41 */
 42
 43/dts-v1/;
 44#include <dt-bindings/input/input.h>
 45#include "rk3188.dtsi"
 46
 47/ {
 48	model = "Radxa Rock";
 49	compatible = "radxa,rock", "rockchip,rk3188";
 50
 
 
 
 
 51	memory@60000000 {
 52		device_type = "memory";
 53		reg = <0x60000000 0x80000000>;
 54	};
 55
 56	gpio-keys {
 57		compatible = "gpio-keys";
 58		autorepeat;
 59
 60		power {
 61			gpios = <&gpio0 RK_PA4 GPIO_ACTIVE_LOW>;
 62			linux,code = <KEY_POWER>;
 63			label = "GPIO Key Power";
 64			linux,input-type = <1>;
 65			wakeup-source;
 66			debounce-interval = <100>;
 67		};
 68	};
 69
 70	gpio-leds {
 71		compatible = "gpio-leds";
 72
 73		green {
 74			label = "rock:green:user1";
 75			gpios = <&gpio0 RK_PB4 GPIO_ACTIVE_LOW>;
 76			default-state = "off";
 77		};
 78
 79		blue {
 80			label = "rock:blue:user2";
 81			gpios = <&gpio0 RK_PB6 GPIO_ACTIVE_LOW>;
 82			default-state = "off";
 83		};
 84
 85		sleep {
 86			label = "rock:red:power";
 87			gpios = <&gpio0 RK_PB7 GPIO_ACTIVE_HIGH>;
 88			default-state = "off";
 89		};
 90	};
 91
 92	sound {
 93		compatible = "simple-audio-card";
 94		simple-audio-card,name = "SPDIF";
 95
 96		simple-audio-card,dai-link@1 {  /* S/PDIF - S/PDIF */
 97			cpu { sound-dai = <&spdif>; };
 98			codec { sound-dai = <&spdif_out>; };
 99		};
100	};
101
102	spdif_out: spdif-out {
103		compatible = "linux,spdif-dit";
104		#sound-dai-cells = <0>;
105	};
106
107	ir_recv: gpio-ir-receiver {
108		compatible = "gpio-ir-receiver";
109		gpios = <&gpio0 RK_PB2 GPIO_ACTIVE_LOW>;
110		pinctrl-names = "default";
111		pinctrl-0 = <&ir_recv_pin>;
112	};
113
114	vcc_otg: usb-otg-regulator {
115		compatible = "regulator-fixed";
116		enable-active-high;
117		gpio = <&gpio2 RK_PD7 GPIO_ACTIVE_HIGH>;
118		pinctrl-names = "default";
119		pinctrl-0 = <&otg_vbus_drv>;
120		regulator-name = "otg-vbus";
121		regulator-min-microvolt = <5000000>;
122		regulator-max-microvolt = <5000000>;
123		regulator-always-on;
124		regulator-boot-on;
125	};
126
127	vcc_sd0: sdmmc-regulator {
128		compatible = "regulator-fixed";
129		regulator-name = "sdmmc-supply";
130		regulator-min-microvolt = <3300000>;
131		regulator-max-microvolt = <3300000>;
132		gpio = <&gpio3 RK_PA1 GPIO_ACTIVE_LOW>;
 
 
133		startup-delay-us = <100000>;
134		vin-supply = <&vcc_io>;
135	};
136
137	vcc_host: usb-host-regulator {
138		compatible = "regulator-fixed";
139		enable-active-high;
140		gpio = <&gpio0 RK_PA3 GPIO_ACTIVE_HIGH>;
141		pinctrl-names = "default";
142		pinctrl-0 = <&host_vbus_drv>;
143		regulator-name = "host-pwr";
144		regulator-min-microvolt = <5000000>;
145		regulator-max-microvolt = <5000000>;
146		regulator-always-on;
147		regulator-boot-on;
148	};
149
150	vsys: vsys-regulator {
151		compatible = "regulator-fixed";
152		regulator-name = "vsys";
153		regulator-min-microvolt = <5000000>;
154		regulator-max-microvolt = <5000000>;
155		regulator-boot-on;
156	};
157};
158
159&emac {
160	status = "okay";
161
162	pinctrl-names = "default";
163	pinctrl-0 = <&emac_xfer>, <&emac_mdio>, <&phy_int>;
164
165	phy = <&phy0>;
166	phy-supply = <&vcc_rmii>;
167
168	phy0: ethernet-phy@0 {
169		reg = <0>;
170		interrupt-parent = <&gpio3>;
171		interrupts = <RK_PD2 IRQ_TYPE_LEVEL_LOW>;
172	};
173};
174
175&cpu0 {
176	cpu0-supply = <&vdd_arm>;
 
 
 
 
 
 
 
 
 
 
 
 
177};
178
179&gpu {
180	status = "okay";
181};
182
183&i2c1 {
184	status = "okay";
185	clock-frequency = <400000>;
186
187	rtc@51 {
188		compatible = "haoyu,hym8563";
189		reg = <0x51>;
190		interrupt-parent = <&gpio0>;
191		interrupts = <RK_PB5 IRQ_TYPE_EDGE_FALLING>;
192		pinctrl-names = "default";
193		pinctrl-0 = <&rtc_int>;
194		#clock-cells = <0>;
195		clock-output-names = "xin32k";
196	};
197
198	act8846: act8846@5a {
199		compatible = "active-semi,act8846";
200		reg = <0x5a>;
201		status = "okay";
202		system-power-controller;
203
204		pinctrl-names = "default";
205		pinctrl-0 = <&act8846_dvs0_ctl>;
206
207		vp1-supply = <&vsys>;
208		vp2-supply = <&vsys>;
209		vp3-supply = <&vsys>;
210		vp4-supply = <&vsys>;
211		inl1-supply = <&vcc_io>;
212		inl2-supply = <&vsys>;
213		inl3-supply = <&vsys>;
214
215		regulators {
216			vcc_ddr: REG1 {
217				regulator-name = "VCC_DDR";
218				regulator-min-microvolt = <1200000>;
219				regulator-max-microvolt = <1200000>;
220				regulator-always-on;
221			};
222
223			vdd_log: REG2 {
224				regulator-name = "VDD_LOG";
225				regulator-min-microvolt = <1000000>;
226				regulator-max-microvolt = <1000000>;
227				regulator-always-on;
228			};
229
230			vdd_arm: REG3 {
231				regulator-name = "VDD_ARM";
232				regulator-min-microvolt = <875000>;
233				regulator-max-microvolt = <1350000>;
234				regulator-always-on;
235			};
236
237			vcc_io: REG4 {
238				regulator-name = "VCC_IO";
239				regulator-min-microvolt = <3300000>;
240				regulator-max-microvolt = <3300000>;
241				regulator-always-on;
242			};
243
244			vdd_10: REG5 {
245				regulator-name = "VDD_10";
246				regulator-min-microvolt = <1000000>;
247				regulator-max-microvolt = <1000000>;
248				regulator-always-on;
249			};
250
251			vdd_hdmi: REG6 {
252				regulator-name = "VDD_HDMI";
253				regulator-min-microvolt = <2500000>;
254				regulator-max-microvolt = <2500000>;
255				regulator-always-on;
256			};
257
258			vcc18: REG7 {
259				regulator-name = "VCC_18";
260				regulator-min-microvolt = <1800000>;
261				regulator-max-microvolt = <1800000>;
262				regulator-always-on;
263			};
264
265			vcca_33: REG8 {
266				regulator-name = "VCCA_33";
267				regulator-min-microvolt = <3300000>;
268				regulator-max-microvolt = <3300000>;
269				regulator-always-on;
270			};
271
272			vcc_rmii: REG9 {
273				regulator-name = "VCC_RMII";
274				regulator-min-microvolt = <3300000>;
275				regulator-max-microvolt = <3300000>;
276			};
277
278			vccio_wl: REG10 {
279				regulator-name = "VCCIO_WL";
280				regulator-min-microvolt = <3300000>;
281				regulator-max-microvolt = <3300000>;
282				regulator-always-on;
283			};
284
285			vcc_18: REG11 {
286				regulator-name = "VCC18_IO";
287				regulator-min-microvolt = <1800000>;
288				regulator-max-microvolt = <1800000>;
289				regulator-always-on;
290			};
291
292			vcc28: REG12 {
293				regulator-name = "VCC_28";
294				regulator-min-microvolt = <2800000>;
295				regulator-max-microvolt = <2800000>;
296				regulator-always-on;
297			};
298		};
299	};
300};
301
302&mmc0 {
303	status = "okay";
304	pinctrl-names = "default";
305	pinctrl-0 = <&sd0_clk>, <&sd0_cmd>, <&sd0_cd>, <&sd0_bus4>;
306	vmmc-supply = <&vcc_sd0>;
307
308	bus-width = <4>;
309	cap-mmc-highspeed;
310	cap-sd-highspeed;
311	disable-wp;
312};
313
314&pwm1 {
315	status = "okay";
316};
317
318&pwm2 {
319	status = "okay";
320};
321
322&pwm3 {
323	status = "okay";
324};
325
326&pinctrl {
327	pcfg_output_low: pcfg-output-low {
328		output-low;
329	};
330
331	act8846 {
332		act8846_dvs0_ctl: act8846-dvs0-ctl {
333			rockchip,pins = <RK_GPIO3 27 RK_FUNC_GPIO &pcfg_output_low>;
334		};
335	};
336
337	hym8563 {
338		rtc_int: rtc-int {
339			rockchip,pins = <RK_GPIO0 0 RK_FUNC_GPIO &pcfg_pull_up>;
340		};
341	};
342
343	lan8720a  {
344		phy_int: phy-int {
345			rockchip,pins = <RK_GPIO3 26 RK_FUNC_GPIO &pcfg_pull_up>;
346		};
347	};
348
349	ir-receiver {
350		ir_recv_pin: ir-recv-pin {
351			rockchip,pins = <RK_GPIO0 10 RK_FUNC_GPIO &pcfg_pull_none>;
 
 
 
 
 
 
352		};
353	};
354
355	usb {
356		host_vbus_drv: host-vbus-drv {
357			rockchip,pins = <0 3 RK_FUNC_GPIO &pcfg_pull_none>;
358		};
359		otg_vbus_drv: otg-vbus-drv {
360			rockchip,pins = <2 31 RK_FUNC_GPIO &pcfg_pull_none>;
361		};
362	};
363};
364
365&spdif {
366	status = "okay";
367};
368
369&uart0 {
370	status = "okay";
371};
372
373&uart1 {
374	status = "okay";
375};
376
377&uart2 {
378	status = "okay";
379};
380
381&uart3 {
382	status = "okay";
383};
384
385&usbphy {
386	status = "okay";
387};
388
389&usb_host {
390	status = "okay";
391};
392
393&usb_otg {
394	status = "okay";
395};
396
397&wdt {
398	status = "okay";
399};
v5.14.15
  1// SPDX-License-Identifier: (GPL-2.0+ OR MIT)
  2/*
  3 * Copyright (c) 2013 Heiko Stuebner <heiko@sntech.de>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
  4 */
  5
  6/dts-v1/;
  7#include <dt-bindings/input/input.h>
  8#include "rk3188.dtsi"
  9
 10/ {
 11	model = "Radxa Rock";
 12	compatible = "radxa,rock", "rockchip,rk3188";
 13
 14	aliases {
 15		mmc0 = &mmc0;
 16	};
 17
 18	memory@60000000 {
 19		device_type = "memory";
 20		reg = <0x60000000 0x80000000>;
 21	};
 22
 23	gpio-keys {
 24		compatible = "gpio-keys";
 25		autorepeat;
 26
 27		power {
 28			gpios = <&gpio0 RK_PA4 GPIO_ACTIVE_LOW>;
 29			linux,code = <KEY_POWER>;
 30			label = "GPIO Key Power";
 31			linux,input-type = <1>;
 32			wakeup-source;
 33			debounce-interval = <100>;
 34		};
 35	};
 36
 37	gpio-leds {
 38		compatible = "gpio-leds";
 39
 40		green_led: led-0 {
 41			label = "rock:green:user1";
 42			gpios = <&gpio0 RK_PB4 GPIO_ACTIVE_LOW>;
 43			default-state = "off";
 44		};
 45
 46		blue_led: led-1 {
 47			label = "rock:blue:user2";
 48			gpios = <&gpio0 RK_PB6 GPIO_ACTIVE_LOW>;
 49			default-state = "off";
 50		};
 51
 52		sleep_led: led-2 {
 53			label = "rock:red:power";
 54			gpios = <&gpio0 RK_PB7 GPIO_ACTIVE_HIGH>;
 55			default-state = "off";
 56		};
 57	};
 58
 59	sound {
 60		compatible = "simple-audio-card";
 61		simple-audio-card,name = "SPDIF";
 62
 63		simple-audio-card,dai-link@1 {  /* S/PDIF - S/PDIF */
 64			cpu { sound-dai = <&spdif>; };
 65			codec { sound-dai = <&spdif_out>; };
 66		};
 67	};
 68
 69	spdif_out: spdif-out {
 70		compatible = "linux,spdif-dit";
 71		#sound-dai-cells = <0>;
 72	};
 73
 74	ir_recv: gpio-ir-receiver {
 75		compatible = "gpio-ir-receiver";
 76		gpios = <&gpio0 RK_PB2 GPIO_ACTIVE_LOW>;
 77		pinctrl-names = "default";
 78		pinctrl-0 = <&ir_recv_pin>;
 79	};
 80
 81	vcc_otg: usb-otg-regulator {
 82		compatible = "regulator-fixed";
 83		enable-active-high;
 84		gpio = <&gpio2 RK_PD7 GPIO_ACTIVE_HIGH>;
 85		pinctrl-names = "default";
 86		pinctrl-0 = <&otg_vbus_drv>;
 87		regulator-name = "otg-vbus";
 88		regulator-min-microvolt = <5000000>;
 89		regulator-max-microvolt = <5000000>;
 90		regulator-always-on;
 91		regulator-boot-on;
 92	};
 93
 94	vcc_sd0: sdmmc-regulator {
 95		compatible = "regulator-fixed";
 96		regulator-name = "sdmmc-supply";
 97		regulator-min-microvolt = <3300000>;
 98		regulator-max-microvolt = <3300000>;
 99		gpio = <&gpio3 RK_PA1 GPIO_ACTIVE_LOW>;
100		pinctrl-names = "default";
101		pinctrl-0 = <&sdmmc_pwr>;
102		startup-delay-us = <100000>;
103		vin-supply = <&vcc_io>;
104	};
105
106	vcc_host: usb-host-regulator {
107		compatible = "regulator-fixed";
108		enable-active-high;
109		gpio = <&gpio0 RK_PA3 GPIO_ACTIVE_HIGH>;
110		pinctrl-names = "default";
111		pinctrl-0 = <&host_vbus_drv>;
112		regulator-name = "host-pwr";
113		regulator-min-microvolt = <5000000>;
114		regulator-max-microvolt = <5000000>;
115		regulator-always-on;
116		regulator-boot-on;
117	};
118
119	vsys: vsys-regulator {
120		compatible = "regulator-fixed";
121		regulator-name = "vsys";
122		regulator-min-microvolt = <5000000>;
123		regulator-max-microvolt = <5000000>;
124		regulator-boot-on;
125	};
126};
127
128&emac {
129	status = "okay";
130
131	pinctrl-names = "default";
132	pinctrl-0 = <&emac_xfer>, <&emac_mdio>, <&phy_int>;
133
134	phy = <&phy0>;
135	phy-supply = <&vcc_rmii>;
136
137	phy0: ethernet-phy@0 {
138		reg = <0>;
139		interrupt-parent = <&gpio3>;
140		interrupts = <RK_PD2 IRQ_TYPE_LEVEL_LOW>;
141	};
142};
143
144&cpu0 {
145	cpu-supply = <&vdd_arm>;
146};
147
148&cpu1 {
149	cpu-supply = <&vdd_arm>;
150};
151
152&cpu2 {
153	cpu-supply = <&vdd_arm>;
154};
155
156&cpu3 {
157	cpu-supply = <&vdd_arm>;
158};
159
160&gpu {
161	status = "okay";
162};
163
164&i2c1 {
165	status = "okay";
166	clock-frequency = <400000>;
167
168	rtc@51 {
169		compatible = "haoyu,hym8563";
170		reg = <0x51>;
171		interrupt-parent = <&gpio0>;
172		interrupts = <RK_PB5 IRQ_TYPE_EDGE_FALLING>;
173		pinctrl-names = "default";
174		pinctrl-0 = <&rtc_int>;
175		#clock-cells = <0>;
176		clock-output-names = "xin32k";
177	};
178
179	act8846: act8846@5a {
180		compatible = "active-semi,act8846";
181		reg = <0x5a>;
182		status = "okay";
183		system-power-controller;
184
185		pinctrl-names = "default";
186		pinctrl-0 = <&act8846_dvs0_ctl>;
187
188		vp1-supply = <&vsys>;
189		vp2-supply = <&vsys>;
190		vp3-supply = <&vsys>;
191		vp4-supply = <&vsys>;
192		inl1-supply = <&vcc_io>;
193		inl2-supply = <&vsys>;
194		inl3-supply = <&vsys>;
195
196		regulators {
197			vcc_ddr: REG1 {
198				regulator-name = "VCC_DDR";
199				regulator-min-microvolt = <1200000>;
200				regulator-max-microvolt = <1200000>;
201				regulator-always-on;
202			};
203
204			vdd_log: REG2 {
205				regulator-name = "VDD_LOG";
206				regulator-min-microvolt = <1000000>;
207				regulator-max-microvolt = <1000000>;
208				regulator-always-on;
209			};
210
211			vdd_arm: REG3 {
212				regulator-name = "VDD_ARM";
213				regulator-min-microvolt = <875000>;
214				regulator-max-microvolt = <1350000>;
215				regulator-always-on;
216			};
217
218			vcc_io: REG4 {
219				regulator-name = "VCC_IO";
220				regulator-min-microvolt = <3300000>;
221				regulator-max-microvolt = <3300000>;
222				regulator-always-on;
223			};
224
225			vdd_10: REG5 {
226				regulator-name = "VDD_10";
227				regulator-min-microvolt = <1000000>;
228				regulator-max-microvolt = <1000000>;
229				regulator-always-on;
230			};
231
232			vdd_hdmi: REG6 {
233				regulator-name = "VDD_HDMI";
234				regulator-min-microvolt = <2500000>;
235				regulator-max-microvolt = <2500000>;
236				regulator-always-on;
237			};
238
239			vcc18: REG7 {
240				regulator-name = "VCC_18";
241				regulator-min-microvolt = <1800000>;
242				regulator-max-microvolt = <1800000>;
243				regulator-always-on;
244			};
245
246			vcca_33: REG8 {
247				regulator-name = "VCCA_33";
248				regulator-min-microvolt = <3300000>;
249				regulator-max-microvolt = <3300000>;
250				regulator-always-on;
251			};
252
253			vcc_rmii: REG9 {
254				regulator-name = "VCC_RMII";
255				regulator-min-microvolt = <3300000>;
256				regulator-max-microvolt = <3300000>;
257			};
258
259			vccio_wl: REG10 {
260				regulator-name = "VCCIO_WL";
261				regulator-min-microvolt = <3300000>;
262				regulator-max-microvolt = <3300000>;
263				regulator-always-on;
264			};
265
266			vcc_18: REG11 {
267				regulator-name = "VCC18_IO";
268				regulator-min-microvolt = <1800000>;
269				regulator-max-microvolt = <1800000>;
270				regulator-always-on;
271			};
272
273			vcc28: REG12 {
274				regulator-name = "VCC_28";
275				regulator-min-microvolt = <2800000>;
276				regulator-max-microvolt = <2800000>;
277				regulator-always-on;
278			};
279		};
280	};
281};
282
283&mmc0 {
284	status = "okay";
285	pinctrl-names = "default";
286	pinctrl-0 = <&sd0_clk>, <&sd0_cmd>, <&sd0_cd>, <&sd0_bus4>;
287	vmmc-supply = <&vcc_sd0>;
288
289	bus-width = <4>;
290	cap-mmc-highspeed;
291	cap-sd-highspeed;
292	disable-wp;
293};
294
295&pwm1 {
296	status = "okay";
297};
298
299&pwm2 {
300	status = "okay";
301};
302
303&pwm3 {
304	status = "okay";
305};
306
307&pinctrl {
308	pcfg_output_low: pcfg-output-low {
309		output-low;
310	};
311
312	act8846 {
313		act8846_dvs0_ctl: act8846-dvs0-ctl {
314			rockchip,pins = <3 RK_PD3 RK_FUNC_GPIO &pcfg_output_low>;
315		};
316	};
317
318	hym8563 {
319		rtc_int: rtc-int {
320			rockchip,pins = <0 RK_PA0 RK_FUNC_GPIO &pcfg_pull_up>;
321		};
322	};
323
324	lan8720a  {
325		phy_int: phy-int {
326			rockchip,pins = <3 RK_PD2 RK_FUNC_GPIO &pcfg_pull_up>;
327		};
328	};
329
330	ir-receiver {
331		ir_recv_pin: ir-recv-pin {
332			rockchip,pins = <0 RK_PB2 RK_FUNC_GPIO &pcfg_pull_none>;
333		};
334	};
335
336	sd0 {
337		sdmmc_pwr: sdmmc-pwr {
338			rockchip,pins = <3 RK_PA1 RK_FUNC_GPIO &pcfg_pull_none>;
339		};
340	};
341
342	usb {
343		host_vbus_drv: host-vbus-drv {
344			rockchip,pins = <0 RK_PA3 RK_FUNC_GPIO &pcfg_pull_none>;
345		};
346		otg_vbus_drv: otg-vbus-drv {
347			rockchip,pins = <2 RK_PD7 RK_FUNC_GPIO &pcfg_pull_none>;
348		};
349	};
350};
351
352&spdif {
353	status = "okay";
354};
355
356&uart0 {
357	status = "okay";
358};
359
360&uart1 {
361	status = "okay";
362};
363
364&uart2 {
365	status = "okay";
366};
367
368&uart3 {
369	status = "okay";
370};
371
372&usbphy {
373	status = "okay";
374};
375
376&usb_host {
377	status = "okay";
378};
379
380&usb_otg {
381	status = "okay";
382};
383
384&wdt {
385	status = "okay";
386};