mirror of
https://github.com/Ysurac/openmptcprouter.git
synced 2025-02-15 04:42:02 +00:00
96 lines
2.3 KiB
Diff
96 lines
2.3 KiB
Diff
From 6aec34c8eabdf8bef90e9ce66a088972ee25617e Mon Sep 17 00:00:00 2001
|
|
From: Phil Elwell <phil@raspberrypi.com>
|
|
Date: Wed, 3 Jan 2024 14:43:43 +0000
|
|
Subject: [PATCH 0809/1002] ASoC: dwc: Defer bclk_ratio handling to hw_params
|
|
|
|
bclk_ratio is only a factor in clock producer mode, and needs to
|
|
override the default value of num_channels * sample_size.
|
|
Move the bclk_ratio handling into the hw_params method, only latching
|
|
the value in set_bclk_ratio, to address both of those matters.
|
|
|
|
See: https://github.com/raspberrypi/linux/issues/5817
|
|
|
|
Signed-off-by: Phil Elwell <phil@raspberrypi.com>
|
|
---
|
|
sound/soc/dwc/dwc-i2s.c | 38 +++++++++++++++++++++-----------------
|
|
sound/soc/dwc/local.h | 1 +
|
|
2 files changed, 22 insertions(+), 17 deletions(-)
|
|
|
|
diff --git a/sound/soc/dwc/dwc-i2s.c b/sound/soc/dwc/dwc-i2s.c
|
|
index 11cd83b945e8..fcb1ccc61d41 100644
|
|
--- a/sound/soc/dwc/dwc-i2s.c
|
|
+++ b/sound/soc/dwc/dwc-i2s.c
|
|
@@ -314,6 +314,25 @@ static int dw_i2s_hw_params(struct snd_pcm_substream *substream,
|
|
if (dev->tdm_slots)
|
|
config->data_width = 32;
|
|
|
|
+ if ((dev->capability & DW_I2S_MASTER) && dev->bclk_ratio) {
|
|
+ switch (dev->bclk_ratio) {
|
|
+ case 32:
|
|
+ dev->ccr = 0x00;
|
|
+ break;
|
|
+
|
|
+ case 48:
|
|
+ dev->ccr = 0x08;
|
|
+ break;
|
|
+
|
|
+ case 64:
|
|
+ dev->ccr = 0x10;
|
|
+ break;
|
|
+
|
|
+ default:
|
|
+ return -EINVAL;
|
|
+ }
|
|
+ }
|
|
+
|
|
config->chan_nr = params_channels(params);
|
|
|
|
switch (config->chan_nr) {
|
|
@@ -537,23 +556,7 @@ static int dw_i2s_set_bclk_ratio(struct snd_soc_dai *cpu_dai,
|
|
|
|
dev_dbg(dev->dev, "%s(%d)\n", __func__, ratio);
|
|
|
|
- switch (ratio) {
|
|
- case 32:
|
|
- dev->ccr = 0x00;
|
|
- break;
|
|
-
|
|
- case 48:
|
|
- dev->ccr = 0x08;
|
|
- break;
|
|
-
|
|
- case 64:
|
|
- dev->ccr = 0x10;
|
|
- break;
|
|
- default:
|
|
- return -EINVAL;
|
|
- }
|
|
-
|
|
- i2s_write_reg(dev->i2s_base, CCR, dev->ccr);
|
|
+ dev->bclk_ratio = ratio;
|
|
|
|
return 0;
|
|
}
|
|
@@ -1068,6 +1071,7 @@ static int dw_i2s_probe(struct platform_device *pdev)
|
|
}
|
|
}
|
|
|
|
+ dev->bclk_ratio = 0;
|
|
dev->i2s_reg_comp1 = I2S_COMP_PARAM_1;
|
|
dev->i2s_reg_comp2 = I2S_COMP_PARAM_2;
|
|
if (pdata) {
|
|
diff --git a/sound/soc/dwc/local.h b/sound/soc/dwc/local.h
|
|
index 6b08979b0123..9f21eb68bd6c 100644
|
|
--- a/sound/soc/dwc/local.h
|
|
+++ b/sound/soc/dwc/local.h
|
|
@@ -128,6 +128,7 @@ struct dw_i2s_dev {
|
|
unsigned int quirks;
|
|
unsigned int i2s_reg_comp1;
|
|
unsigned int i2s_reg_comp2;
|
|
+ unsigned int bclk_ratio;
|
|
struct device *dev;
|
|
u32 ccr;
|
|
u32 xfer_resolution;
|
|
--
|
|
2.44.0
|
|
|