1 // SPDX-License-Identifier: GPL-2.0
3 // Copyright (c) 2020 BayLibre, SAS.
4 // Author: Jerome Brunet <jbrunet@baylibre.com>
6 #include <linux/bitfield.h>
8 #include <sound/pcm_params.h>
10 #include <sound/soc-dai.h>
14 #define AIU_I2S_SOURCE_DESC_MODE_8CH BIT(0)
15 #define AIU_I2S_SOURCE_DESC_MODE_24BIT BIT(5)
16 #define AIU_I2S_SOURCE_DESC_MODE_32BIT BIT(9)
17 #define AIU_I2S_SOURCE_DESC_MODE_SPLIT BIT(11)
18 #define AIU_RST_SOFT_I2S_FAST BIT(0)
20 #define AIU_I2S_DAC_CFG_MSB_FIRST BIT(2)
21 #define AIU_I2S_MISC_HOLD_EN BIT(2)
22 #define AIU_CLK_CTRL_I2S_DIV_EN BIT(0)
23 #define AIU_CLK_CTRL_I2S_DIV GENMASK(3, 2)
24 #define AIU_CLK_CTRL_AOCLK_INVERT BIT(6)
25 #define AIU_CLK_CTRL_LRCLK_INVERT BIT(7)
26 #define AIU_CLK_CTRL_LRCLK_SKEW GENMASK(9, 8)
27 #define AIU_CLK_CTRL_MORE_HDMI_AMCLK BIT(6)
28 #define AIU_CLK_CTRL_MORE_I2S_DIV GENMASK(5, 0)
29 #define AIU_CODEC_DAC_LRCLK_CTRL_DIV GENMASK(11, 0)
31 static void aiu_encoder_i2s_divider_enable(struct snd_soc_component *component,
34 snd_soc_component_update_bits(component, AIU_CLK_CTRL,
35 AIU_CLK_CTRL_I2S_DIV_EN,
36 enable ? AIU_CLK_CTRL_I2S_DIV_EN : 0);
39 static void aiu_encoder_i2s_hold(struct snd_soc_component *component,
42 snd_soc_component_update_bits(component, AIU_I2S_MISC,
44 enable ? AIU_I2S_MISC_HOLD_EN : 0);
47 static int aiu_encoder_i2s_trigger(struct snd_pcm_substream *substream, int cmd,
48 struct snd_soc_dai *dai)
50 struct snd_soc_component *component = dai->component;
53 case SNDRV_PCM_TRIGGER_START:
54 case SNDRV_PCM_TRIGGER_RESUME:
55 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
56 aiu_encoder_i2s_hold(component, false);
59 case SNDRV_PCM_TRIGGER_STOP:
60 case SNDRV_PCM_TRIGGER_SUSPEND:
61 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
62 aiu_encoder_i2s_hold(component, true);
70 static int aiu_encoder_i2s_setup_desc(struct snd_soc_component *component,
71 struct snd_pcm_hw_params *params)
73 /* Always operate in split (classic interleaved) mode */
74 unsigned int desc = AIU_I2S_SOURCE_DESC_MODE_SPLIT;
76 /* Reset required to update the pipeline */
77 snd_soc_component_write(component, AIU_RST_SOFT, AIU_RST_SOFT_I2S_FAST);
78 snd_soc_component_read(component, AIU_I2S_SYNC);
80 switch (params_physical_width(params)) {
81 case 16: /* Nothing to do */
85 desc |= (AIU_I2S_SOURCE_DESC_MODE_24BIT |
86 AIU_I2S_SOURCE_DESC_MODE_32BIT);
93 switch (params_channels(params)) {
94 case 2: /* Nothing to do */
97 desc |= AIU_I2S_SOURCE_DESC_MODE_8CH;
103 snd_soc_component_update_bits(component, AIU_I2S_SOURCE_DESC,
104 AIU_I2S_SOURCE_DESC_MODE_8CH |
105 AIU_I2S_SOURCE_DESC_MODE_24BIT |
106 AIU_I2S_SOURCE_DESC_MODE_32BIT |
107 AIU_I2S_SOURCE_DESC_MODE_SPLIT,
113 static int aiu_encoder_i2s_set_legacy_div(struct snd_soc_component *component,
114 struct snd_pcm_hw_params *params,
122 /* These are the only valid legacy dividers */
126 dev_err(component->dev, "Unsupported i2s divider: %u\n", bs);
130 snd_soc_component_update_bits(component, AIU_CLK_CTRL,
131 AIU_CLK_CTRL_I2S_DIV,
132 FIELD_PREP(AIU_CLK_CTRL_I2S_DIV,
135 snd_soc_component_update_bits(component, AIU_CLK_CTRL_MORE,
136 AIU_CLK_CTRL_MORE_I2S_DIV,
137 FIELD_PREP(AIU_CLK_CTRL_MORE_I2S_DIV,
143 static int aiu_encoder_i2s_set_more_div(struct snd_soc_component *component,
144 struct snd_pcm_hw_params *params,
148 * NOTE: this HW is odd.
149 * In most configuration, the i2s divider is 'mclk / blck'.
150 * However, in 16 bits - 8ch mode, this factor needs to be
151 * increased by 50% to get the correct output rate.
154 if (params_width(params) == 16 && params_channels(params) == 8) {
156 dev_err(component->dev,
157 "Cannot increase i2s divider by 50%%\n");
163 /* Use CLK_MORE for mclk to bclk divider */
164 snd_soc_component_update_bits(component, AIU_CLK_CTRL,
165 AIU_CLK_CTRL_I2S_DIV,
166 FIELD_PREP(AIU_CLK_CTRL_I2S_DIV, 0));
168 snd_soc_component_update_bits(component, AIU_CLK_CTRL_MORE,
169 AIU_CLK_CTRL_MORE_I2S_DIV,
170 FIELD_PREP(AIU_CLK_CTRL_MORE_I2S_DIV,
176 static int aiu_encoder_i2s_set_clocks(struct snd_soc_component *component,
177 struct snd_pcm_hw_params *params)
179 struct aiu *aiu = snd_soc_component_get_drvdata(component);
180 unsigned int srate = params_rate(params);
184 /* Get the oversampling factor */
185 fs = DIV_ROUND_CLOSEST(clk_get_rate(aiu->i2s.clks[MCLK].clk), srate);
190 /* Send data MSB first */
191 snd_soc_component_update_bits(component, AIU_I2S_DAC_CFG,
192 AIU_I2S_DAC_CFG_MSB_FIRST,
193 AIU_I2S_DAC_CFG_MSB_FIRST);
195 /* Set bclk to lrlck ratio */
196 snd_soc_component_update_bits(component, AIU_CODEC_DAC_LRCLK_CTRL,
197 AIU_CODEC_DAC_LRCLK_CTRL_DIV,
198 FIELD_PREP(AIU_CODEC_DAC_LRCLK_CTRL_DIV,
203 if (aiu->platform->has_clk_ctrl_more_i2s_div)
204 ret = aiu_encoder_i2s_set_more_div(component, params, bs);
206 ret = aiu_encoder_i2s_set_legacy_div(component, params, bs);
211 /* Make sure amclk is used for HDMI i2s as well */
212 snd_soc_component_update_bits(component, AIU_CLK_CTRL_MORE,
213 AIU_CLK_CTRL_MORE_HDMI_AMCLK,
214 AIU_CLK_CTRL_MORE_HDMI_AMCLK);
219 static int aiu_encoder_i2s_hw_params(struct snd_pcm_substream *substream,
220 struct snd_pcm_hw_params *params,
221 struct snd_soc_dai *dai)
223 struct snd_soc_component *component = dai->component;
226 /* Disable the clock while changing the settings */
227 aiu_encoder_i2s_divider_enable(component, false);
229 ret = aiu_encoder_i2s_setup_desc(component, params);
231 dev_err(dai->dev, "setting i2s desc failed\n");
235 ret = aiu_encoder_i2s_set_clocks(component, params);
237 dev_err(dai->dev, "setting i2s clocks failed\n");
241 aiu_encoder_i2s_divider_enable(component, true);
246 static int aiu_encoder_i2s_hw_free(struct snd_pcm_substream *substream,
247 struct snd_soc_dai *dai)
249 struct snd_soc_component *component = dai->component;
251 aiu_encoder_i2s_divider_enable(component, false);
256 static int aiu_encoder_i2s_set_fmt(struct snd_soc_dai *dai, unsigned int fmt)
258 struct snd_soc_component *component = dai->component;
259 unsigned int inv = fmt & SND_SOC_DAIFMT_INV_MASK;
260 unsigned int val = 0;
263 /* Only CPU Master / Codec Slave supported ATM */
264 if ((fmt & SND_SOC_DAIFMT_MASTER_MASK) != SND_SOC_DAIFMT_CBS_CFS)
267 if (inv == SND_SOC_DAIFMT_NB_IF ||
268 inv == SND_SOC_DAIFMT_IB_IF)
269 val |= AIU_CLK_CTRL_LRCLK_INVERT;
271 if (inv == SND_SOC_DAIFMT_IB_NF ||
272 inv == SND_SOC_DAIFMT_IB_IF)
273 val |= AIU_CLK_CTRL_AOCLK_INVERT;
276 switch (fmt & SND_SOC_DAIFMT_FORMAT_MASK) {
277 case SND_SOC_DAIFMT_I2S:
278 /* Invert sample clock for i2s */
279 val ^= AIU_CLK_CTRL_LRCLK_INVERT;
282 case SND_SOC_DAIFMT_LEFT_J:
289 val |= FIELD_PREP(AIU_CLK_CTRL_LRCLK_SKEW, skew);
290 snd_soc_component_update_bits(component, AIU_CLK_CTRL,
291 AIU_CLK_CTRL_LRCLK_INVERT |
292 AIU_CLK_CTRL_AOCLK_INVERT |
293 AIU_CLK_CTRL_LRCLK_SKEW,
299 static int aiu_encoder_i2s_set_sysclk(struct snd_soc_dai *dai, int clk_id,
300 unsigned int freq, int dir)
302 struct aiu *aiu = snd_soc_component_get_drvdata(dai->component);
305 if (WARN_ON(clk_id != 0))
308 if (dir == SND_SOC_CLOCK_IN)
311 ret = clk_set_rate(aiu->i2s.clks[MCLK].clk, freq);
313 dev_err(dai->dev, "Failed to set sysclk to %uHz", freq);
318 static const unsigned int hw_channels[] = {2, 8};
319 static const struct snd_pcm_hw_constraint_list hw_channel_constraints = {
321 .count = ARRAY_SIZE(hw_channels),
325 static int aiu_encoder_i2s_startup(struct snd_pcm_substream *substream,
326 struct snd_soc_dai *dai)
328 struct aiu *aiu = snd_soc_component_get_drvdata(dai->component);
331 /* Make sure the encoder gets either 2 or 8 channels */
332 ret = snd_pcm_hw_constraint_list(substream->runtime, 0,
333 SNDRV_PCM_HW_PARAM_CHANNELS,
334 &hw_channel_constraints);
336 dev_err(dai->dev, "adding channels constraints failed\n");
340 ret = clk_bulk_prepare_enable(aiu->i2s.clk_num, aiu->i2s.clks);
342 dev_err(dai->dev, "failed to enable i2s clocks\n");
347 static void aiu_encoder_i2s_shutdown(struct snd_pcm_substream *substream,
348 struct snd_soc_dai *dai)
350 struct aiu *aiu = snd_soc_component_get_drvdata(dai->component);
352 clk_bulk_disable_unprepare(aiu->i2s.clk_num, aiu->i2s.clks);
355 const struct snd_soc_dai_ops aiu_encoder_i2s_dai_ops = {
356 .trigger = aiu_encoder_i2s_trigger,
357 .hw_params = aiu_encoder_i2s_hw_params,
358 .hw_free = aiu_encoder_i2s_hw_free,
359 .set_fmt = aiu_encoder_i2s_set_fmt,
360 .set_sysclk = aiu_encoder_i2s_set_sysclk,
361 .startup = aiu_encoder_i2s_startup,
362 .shutdown = aiu_encoder_i2s_shutdown,