Linux Audio

Check our new training course

Loading...
v4.17
 
 1/*
 2 * Author: Anthoine Bourgeois <anthoine.bourgeois@gmail.com>
 3 *
 4 * This program is free software; you can redistribute it and/or modify
 5 * it under the terms of the GNU General Public License version 2 as
 6 * published by the Free Software Foundation.
 7 */
 8/dts-v1/;
 9
10#include "omap3-devkit8000-common.dtsi"
11/ {
12	model = "TimLL OMAP3 Devkit8000";
13	compatible = "timll,omap3-devkit8000", "ti,omap3";
14
15	aliases {
16		display1 = &dvi0;
17		display2 = &tv0;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
18	};
19};
v5.14.15
 1// SPDX-License-Identifier: GPL-2.0-only
 2/*
 3 * Author: Anthoine Bourgeois <anthoine.bourgeois@gmail.com>
 
 
 
 
 4 */
 5/dts-v1/;
 6
 7#include "omap3-devkit8000-common.dtsi"
 8/ {
 9	model = "TimLL OMAP3 Devkit8000";
10	compatible = "timll,omap3-devkit8000", "ti,omap3430", "ti,omap3";
11
12	aliases {
13		display1 = &dvi0;
14		display2 = &tv0;
15	};
16};
17
18/* Unusable as clocksource because of unreliable oscillator */
19&counter32k {
20	status = "disabled";
21};
22
23/* Unusable as clockevent because if unreliable oscillator, allow to idle */
24&timer1_target {
25	/delete-property/ti,no-reset-on-init;
26	/delete-property/ti,no-idle;
27	timer@0 {
28		/delete-property/ti,timer-alwon;
29	};
30};
31
32/* Preferred always-on timer for clocksource */
33&timer12_target {
34	ti,no-reset-on-init;
35	ti,no-idle;
36	timer@0 {
37		/* Always clocked by secure_32k_fck */
38	};
39};
40
41/* Preferred timer for clockevent */
42&timer2_target {
43	ti,no-reset-on-init;
44	ti,no-idle;
45	timer@0 {
46		assigned-clocks = <&gpt2_fck>;
47		assigned-clock-parents = <&sys_ck>;
48	};
49};