projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f55532a
)
ASoC: fsl_ssi: Real hardware channels max number is 32
author
Arnaud Mouiche
<
[email protected]
>
Tue, 3 May 2016 12:13:55 +0000
(14:13 +0200)
committer
Mark Brown
<
[email protected]
>
Fri, 13 May 2016 11:15:31 +0000
(12:15 +0100)
The max number of slots in TDM mode is 32:
- Frame Rate Divider Control is a 5bit value
- Time slot mask registers control 32 slots.
Signed-off-by: Arnaud Mouiche <
[email protected]
>
Reviewed-by: Fabio Estevam <
[email protected]
>
Tested-by: Caleb Crome <
[email protected]
>
Signed-off-by: Mark Brown <
[email protected]
>
sound/soc/fsl/fsl_ssi.c
patch
|
blob
|
history
diff --git
a/sound/soc/fsl/fsl_ssi.c
b/sound/soc/fsl/fsl_ssi.c
index ed8de1035cda159d0d186f2cded0fb7a97fbceb4..8d5f3c192de220e5adb3837a7cd55f80af762d2f 100644
(file)
--- a/
sound/soc/fsl/fsl_ssi.c
+++ b/
sound/soc/fsl/fsl_ssi.c
@@
-1158,14
+1158,14
@@
static struct snd_soc_dai_driver fsl_ssi_dai_template = {
.playback = {
.stream_name = "CPU-Playback",
.channels_min = 1,
- .channels_max = 2,
+ .channels_max =
3
2,
.rates = FSLSSI_I2S_RATES,
.formats = FSLSSI_I2S_FORMATS,
},
.capture = {
.stream_name = "CPU-Capture",
.channels_min = 1,
- .channels_max = 2,
+ .channels_max =
3
2,
.rates = FSLSSI_I2S_RATES,
.formats = FSLSSI_I2S_FORMATS,
},