hc
2023-11-22 f743a7adbd6e230d66a6206fa115b59fec2d88eb
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
// SPDX-License-Identifier: (GPL-2.0+ OR MIT)
/*
 * Device Tree file for Freescale LS1012A Freedom Board.
 *
 * Copyright 2016 Freescale Semiconductor, Inc.
 *
 */
/dts-v1/;
 
#include "fsl-ls1012a.dtsi"
 
/ {
   model = "LS1012A Freedom Board";
   compatible = "fsl,ls1012a-frdm", "fsl,ls1012a";
 
   sys_mclk: clock-mclk {
       compatible = "fixed-clock";
       #clock-cells = <0>;
       clock-frequency = <25000000>;
   };
 
   reg_1p8v: regulator-1p8v {
       compatible = "regulator-fixed";
       regulator-name = "1P8V";
       regulator-min-microvolt = <1800000>;
       regulator-max-microvolt = <1800000>;
       regulator-always-on;
   };
 
   sound {
       compatible = "simple-audio-card";
       simple-audio-card,format = "i2s";
       simple-audio-card,widgets =
           "Microphone", "Microphone Jack",
           "Headphone", "Headphone Jack",
           "Speaker", "Speaker Ext",
           "Line", "Line In Jack";
       simple-audio-card,routing =
           "MIC_IN", "Microphone Jack",
           "Microphone Jack", "Mic Bias",
           "LINE_IN", "Line In Jack",
           "Headphone Jack", "HP_OUT",
           "Speaker Ext", "LINE_OUT";
 
       simple-audio-card,cpu {
           sound-dai = <&sai2>;
           frame-master;
           bitclock-master;
       };
 
       simple-audio-card,codec {
           sound-dai = <&codec>;
           frame-master;
           bitclock-master;
           system-clock-frequency = <25000000>;
       };
   };
};
 
&duart0 {
   status = "okay";
};
 
&i2c0 {
   status = "okay";
 
   codec: sgtl5000@a {
       #sound-dai-cells = <0>;
       compatible = "fsl,sgtl5000";
       reg = <0xa>;
       VDDA-supply = <&reg_1p8v>;
       VDDIO-supply = <&reg_1p8v>;
       clocks = <&sys_mclk>;
   };
};
 
&sai2 {
   status = "okay";
};
 
&sata {
   status = "okay";
};