Skip to content

Commit 0e3dc8e

Browse files
morimotobroonie
authored andcommitted
ASoC: doc: remove dpcm_xxx flags
dpcm_xxx flags are no longer needed. Let's remove it. Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> Link: https://patch.msgid.link/874j569vgw.wl-kuninori.morimoto.gx@renesas.com Signed-off-by: Mark Brown <broonie@kernel.org>
1 parent c7ae655 commit 0e3dc8e

1 file changed

Lines changed: 3 additions & 8 deletions

File tree

Documentation/sound/soc/dpcm.rst

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -157,15 +157,13 @@ FE DAI links are defined as follows :-
157157
.codec_dai_name = "snd-soc-dummy-dai",
158158
.dynamic = 1,
159159
.trigger = {SND_SOC_DPCM_TRIGGER_POST, SND_SOC_DPCM_TRIGGER_POST},
160-
.dpcm_playback = 1,
161160
},
162161
.....< other FE and BE DAI links here >
163162
};
164163

165164
This FE DAI link is pretty similar to a regular DAI link except that we also
166-
set the DAI link to a DPCM FE with the ``dynamic = 1``. The supported FE stream
167-
directions should also be set with the ``dpcm_playback`` and ``dpcm_capture``
168-
flags. There is also an option to specify the ordering of the trigger call for
165+
set the DAI link to a DPCM FE with the ``dynamic = 1``.
166+
There is also an option to specify the ordering of the trigger call for
169167
each FE. This allows the ASoC core to trigger the DSP before or after the other
170168
components (as some DSPs have strong requirements for the ordering DAI/DSP
171169
start and stop sequences).
@@ -189,15 +187,12 @@ The BE DAIs are configured as follows :-
189187
.ignore_pmdown_time = 1,
190188
.be_hw_params_fixup = hswult_ssp0_fixup,
191189
.ops = &haswell_ops,
192-
.dpcm_playback = 1,
193-
.dpcm_capture = 1,
194190
},
195191
.....< other BE DAI links here >
196192
};
197193

198194
This BE DAI link connects DAI0 to the codec (in this case RT5460 AIF1). It sets
199-
the ``no_pcm`` flag to mark it has a BE and sets flags for supported stream
200-
directions using ``dpcm_playback`` and ``dpcm_capture`` above.
195+
the ``no_pcm`` flag to mark it has a BE.
201196

202197
The BE has also flags set for ignoring suspend and PM down time. This allows
203198
the BE to work in a hostless mode where the host CPU is not transferring data

0 commit comments

Comments
 (0)