Lines Matching +full:codec +full:- +full:1
2 Creating codec to codec dai link for ALSA dapm
5 Mostly the flow of audio is always from CPU to codec so your system
9 --------- ---------
11 CPU -------> codec
13 --------- ---------
18 ---------
20 codec-2
22 ---------
24 dai-2
26 ---------- ---------
27 | | dai-1 | |
28 CPU -------> codec-1
30 ---------- ---------
32 dai-3
34 ---------
36 codec-3
38 ---------
40 Suppose codec-2 is a bluetooth chip and codec-3 is connected to
42 codec-2 will receive the audio data and the user wants to play that
43 audio through codec-3 without involving the CPU.This
44 aforementioned case is the ideal case when codec to codec
64 .name = "CPU-DSP",
65 .stream_name = "CPU-DSP",
66 .cpu_dai_name = "samsung-i2s.0",
67 .codec_name = "codec-2,
68 .codec_dai_name = "codec-2-dai_name",
69 .platform_name = "samsung-i2s.0",
72 .ignore_suspend = 1,
76 .name = "DSP-CODEC",
77 .stream_name = "DSP-CODEC",
78 .cpu_dai_name = "wm0010-sdi2",
79 .codec_name = "codec-3,
80 .codec_dai_name = "codec-3-dai_name",
83 .ignore_suspend = 1,
90 dai_link is a codec to codec connection.
93 and codec_dai capture widget for playback path and vice-versa is
99 In order to trigger this dai_link widget, a thin codec driver for
103 Make sure to name your corresponding cpu and codec playback and capture
107 A dai_link in a "simple-audio-card" will automatically be detected as
108 codec to codec when all DAIs on the link belong to codec components.
112 mostly useful for communication with simple fixed-function codecs, such