ASoC: add N cpus to M codecs dai link support
authorMark Brown <broonie@kernel.org>
Tue, 13 Jun 2023 16:16:51 +0000 (17:16 +0100)
committerMark Brown <broonie@kernel.org>
Tue, 13 Jun 2023 16:16:51 +0000 (17:16 +0100)
commite8181a895b05b264883288c4043ff83f893b56b0
treebfa78edcc216eee862f39267efaf24dc01d3a527
parent1012bfdd2f1f5a239d83b316177ff645b65c26d7
parent0281b02e1913a9443ce891dcc13613829e4dc3c5
ASoC: add N cpus to M codecs dai link support

Merge series from Bard Liao <yung-chuan.liao@linux.intel.com>:

Currently, ASoC supports dailinks with the following mappings:
1 cpu DAI to N codec DAIs
N cpu DAIs to N codec DAIs
But the mapping between N cpu DAIs and M codec DAIs is not supported.
The reason is that we didn't have a mechanism to map cpu and codec DAIs

This series suggests a new snd_soc_dai_link_codec_ch_map struct in
struct snd_soc_dai_link{} which provides codec DAI to cpu DAI mapping
information used to implement N cpu DAIs to M codec DAIs support.

And add the codec_ch_maps to SOF SoundWire machine driver.