1 // SPDX-License-Identifier: GPL-2.0-only
3 * tegra20_i2s.c - Tegra20 I2S driver
5 * Author: Stephen Warren <swarren@nvidia.com>
6 * Copyright (C) 2010,2012 - NVIDIA, Inc.
8 * Based on code copyright/by:
10 * Copyright (c) 2009-2010, NVIDIA Corporation.
11 * Scott Peterson <speterson@nvidia.com>
13 * Copyright (C) 2010 Google, Inc.
14 * Iliyan Malchev <malchev@google.com>
17 #include <linux/clk.h>
18 #include <linux/device.h>
20 #include <linux/module.h>
22 #include <linux/platform_device.h>
23 #include <linux/pm_runtime.h>
24 #include <linux/regmap.h>
25 #include <linux/reset.h>
26 #include <linux/slab.h>
27 #include <sound/core.h>
28 #include <sound/pcm.h>
29 #include <sound/pcm_params.h>
30 #include <sound/soc.h>
31 #include <sound/dmaengine_pcm.h>
33 #include "tegra20_i2s.h"
35 #define DRV_NAME "tegra20-i2s"
37 static __maybe_unused int tegra20_i2s_runtime_suspend(struct device *dev)
39 struct tegra20_i2s *i2s = dev_get_drvdata(dev);
41 regcache_cache_only(i2s->regmap, true);
43 clk_disable_unprepare(i2s->clk_i2s);
48 static __maybe_unused int tegra20_i2s_runtime_resume(struct device *dev)
50 struct tegra20_i2s *i2s = dev_get_drvdata(dev);
53 ret = reset_control_assert(i2s->reset);
57 ret = clk_prepare_enable(i2s->clk_i2s);
59 dev_err(dev, "clk_enable failed: %d\n", ret);
63 usleep_range(10, 100);
65 ret = reset_control_deassert(i2s->reset);
69 regcache_cache_only(i2s->regmap, false);
70 regcache_mark_dirty(i2s->regmap);
72 ret = regcache_sync(i2s->regmap);
79 clk_disable_unprepare(i2s->clk_i2s);
84 static int tegra20_i2s_set_fmt(struct snd_soc_dai *dai,
87 struct tegra20_i2s *i2s = snd_soc_dai_get_drvdata(dai);
88 unsigned int mask = 0, val = 0;
90 switch (fmt & SND_SOC_DAIFMT_INV_MASK) {
91 case SND_SOC_DAIFMT_NB_NF:
97 mask |= TEGRA20_I2S_CTRL_MASTER_ENABLE;
98 switch (fmt & SND_SOC_DAIFMT_CLOCK_PROVIDER_MASK) {
99 case SND_SOC_DAIFMT_BP_FP:
100 val |= TEGRA20_I2S_CTRL_MASTER_ENABLE;
102 case SND_SOC_DAIFMT_BC_FC:
108 mask |= TEGRA20_I2S_CTRL_BIT_FORMAT_MASK |
109 TEGRA20_I2S_CTRL_LRCK_MASK;
110 switch (fmt & SND_SOC_DAIFMT_FORMAT_MASK) {
111 case SND_SOC_DAIFMT_DSP_A:
112 val |= TEGRA20_I2S_CTRL_BIT_FORMAT_DSP;
113 val |= TEGRA20_I2S_CTRL_LRCK_L_LOW;
115 case SND_SOC_DAIFMT_DSP_B:
116 val |= TEGRA20_I2S_CTRL_BIT_FORMAT_DSP;
117 val |= TEGRA20_I2S_CTRL_LRCK_R_LOW;
119 case SND_SOC_DAIFMT_I2S:
120 val |= TEGRA20_I2S_CTRL_BIT_FORMAT_I2S;
121 val |= TEGRA20_I2S_CTRL_LRCK_L_LOW;
123 case SND_SOC_DAIFMT_RIGHT_J:
124 val |= TEGRA20_I2S_CTRL_BIT_FORMAT_RJM;
125 val |= TEGRA20_I2S_CTRL_LRCK_L_LOW;
127 case SND_SOC_DAIFMT_LEFT_J:
128 val |= TEGRA20_I2S_CTRL_BIT_FORMAT_LJM;
129 val |= TEGRA20_I2S_CTRL_LRCK_L_LOW;
135 regmap_update_bits(i2s->regmap, TEGRA20_I2S_CTRL, mask, val);
140 static int tegra20_i2s_hw_params(struct snd_pcm_substream *substream,
141 struct snd_pcm_hw_params *params,
142 struct snd_soc_dai *dai)
144 struct device *dev = dai->dev;
145 struct tegra20_i2s *i2s = snd_soc_dai_get_drvdata(dai);
146 unsigned int mask, val;
147 int ret, sample_size, srate, i2sclock, bitcnt;
149 mask = TEGRA20_I2S_CTRL_BIT_SIZE_MASK;
150 switch (params_format(params)) {
151 case SNDRV_PCM_FORMAT_S16_LE:
152 val = TEGRA20_I2S_CTRL_BIT_SIZE_16;
155 case SNDRV_PCM_FORMAT_S24_LE:
156 val = TEGRA20_I2S_CTRL_BIT_SIZE_24;
159 case SNDRV_PCM_FORMAT_S32_LE:
160 val = TEGRA20_I2S_CTRL_BIT_SIZE_32;
167 mask |= TEGRA20_I2S_CTRL_FIFO_FORMAT_MASK;
168 val |= TEGRA20_I2S_CTRL_FIFO_FORMAT_PACKED;
170 regmap_update_bits(i2s->regmap, TEGRA20_I2S_CTRL, mask, val);
172 srate = params_rate(params);
174 /* Final "* 2" required by Tegra hardware */
175 i2sclock = srate * params_channels(params) * sample_size * 2;
177 ret = clk_set_rate(i2s->clk_i2s, i2sclock);
179 dev_err(dev, "Can't set I2S clock rate: %d\n", ret);
183 bitcnt = (i2sclock / (2 * srate)) - 1;
184 if (bitcnt < 0 || bitcnt > TEGRA20_I2S_TIMING_CHANNEL_BIT_COUNT_MASK_US)
186 val = bitcnt << TEGRA20_I2S_TIMING_CHANNEL_BIT_COUNT_SHIFT;
188 if (i2sclock % (2 * srate))
189 val |= TEGRA20_I2S_TIMING_NON_SYM_ENABLE;
191 regmap_write(i2s->regmap, TEGRA20_I2S_TIMING, val);
193 regmap_write(i2s->regmap, TEGRA20_I2S_FIFO_SCR,
194 TEGRA20_I2S_FIFO_SCR_FIFO2_ATN_LVL_FOUR_SLOTS |
195 TEGRA20_I2S_FIFO_SCR_FIFO1_ATN_LVL_FOUR_SLOTS);
200 static void tegra20_i2s_start_playback(struct tegra20_i2s *i2s)
202 regmap_update_bits(i2s->regmap, TEGRA20_I2S_CTRL,
203 TEGRA20_I2S_CTRL_FIFO1_ENABLE,
204 TEGRA20_I2S_CTRL_FIFO1_ENABLE);
207 static void tegra20_i2s_stop_playback(struct tegra20_i2s *i2s)
209 regmap_update_bits(i2s->regmap, TEGRA20_I2S_CTRL,
210 TEGRA20_I2S_CTRL_FIFO1_ENABLE, 0);
213 static void tegra20_i2s_start_capture(struct tegra20_i2s *i2s)
215 regmap_update_bits(i2s->regmap, TEGRA20_I2S_CTRL,
216 TEGRA20_I2S_CTRL_FIFO2_ENABLE,
217 TEGRA20_I2S_CTRL_FIFO2_ENABLE);
220 static void tegra20_i2s_stop_capture(struct tegra20_i2s *i2s)
222 regmap_update_bits(i2s->regmap, TEGRA20_I2S_CTRL,
223 TEGRA20_I2S_CTRL_FIFO2_ENABLE, 0);
226 static int tegra20_i2s_trigger(struct snd_pcm_substream *substream, int cmd,
227 struct snd_soc_dai *dai)
229 struct tegra20_i2s *i2s = snd_soc_dai_get_drvdata(dai);
232 case SNDRV_PCM_TRIGGER_START:
233 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
234 case SNDRV_PCM_TRIGGER_RESUME:
235 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
236 tegra20_i2s_start_playback(i2s);
238 tegra20_i2s_start_capture(i2s);
240 case SNDRV_PCM_TRIGGER_STOP:
241 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
242 case SNDRV_PCM_TRIGGER_SUSPEND:
243 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
244 tegra20_i2s_stop_playback(i2s);
246 tegra20_i2s_stop_capture(i2s);
255 static int tegra20_i2s_probe(struct snd_soc_dai *dai)
257 struct tegra20_i2s *i2s = snd_soc_dai_get_drvdata(dai);
259 dai->capture_dma_data = &i2s->capture_dma_data;
260 dai->playback_dma_data = &i2s->playback_dma_data;
265 static const unsigned int tegra20_i2s_rates[] = {
266 8000, 11025, 16000, 22050, 32000, 44100, 48000, 64000, 88200, 96000
269 static int tegra20_i2s_filter_rates(struct snd_pcm_hw_params *params,
270 struct snd_pcm_hw_rule *rule)
272 struct snd_interval *r = hw_param_interval(params, rule->var);
273 struct snd_soc_dai *dai = rule->private;
274 struct tegra20_i2s *i2s = dev_get_drvdata(dai->dev);
275 struct clk *parent = clk_get_parent(i2s->clk_i2s);
276 long i, parent_rate, valid_rates = 0;
278 parent_rate = clk_get_rate(parent);
279 if (parent_rate <= 0) {
280 dev_err(dai->dev, "Can't get parent clock rate: %ld\n",
282 return parent_rate ?: -EINVAL;
285 for (i = 0; i < ARRAY_SIZE(tegra20_i2s_rates); i++) {
286 if (parent_rate % (tegra20_i2s_rates[i] * 128) == 0)
287 valid_rates |= BIT(i);
291 * At least one rate must be valid, otherwise the parent clock isn't
292 * audio PLL. Nothing should be filtered in this case.
295 valid_rates = BIT(ARRAY_SIZE(tegra20_i2s_rates)) - 1;
297 return snd_interval_list(r, ARRAY_SIZE(tegra20_i2s_rates),
298 tegra20_i2s_rates, valid_rates);
301 static int tegra20_i2s_startup(struct snd_pcm_substream *substream,
302 struct snd_soc_dai *dai)
304 if (!device_property_read_bool(dai->dev, "nvidia,fixed-parent-rate"))
307 return snd_pcm_hw_rule_add(substream->runtime, 0,
308 SNDRV_PCM_HW_PARAM_RATE,
309 tegra20_i2s_filter_rates, dai,
310 SNDRV_PCM_HW_PARAM_RATE, -1);
313 static const struct snd_soc_dai_ops tegra20_i2s_dai_ops = {
314 .set_fmt = tegra20_i2s_set_fmt,
315 .hw_params = tegra20_i2s_hw_params,
316 .trigger = tegra20_i2s_trigger,
317 .startup = tegra20_i2s_startup,
320 static const struct snd_soc_dai_driver tegra20_i2s_dai_template = {
321 .probe = tegra20_i2s_probe,
323 .stream_name = "Playback",
326 .rates = SNDRV_PCM_RATE_8000_96000,
327 .formats = SNDRV_PCM_FMTBIT_S16_LE,
330 .stream_name = "Capture",
333 .rates = SNDRV_PCM_RATE_8000_96000,
334 .formats = SNDRV_PCM_FMTBIT_S16_LE,
336 .ops = &tegra20_i2s_dai_ops,
340 static const struct snd_soc_component_driver tegra20_i2s_component = {
342 .legacy_dai_naming = 1,
345 static bool tegra20_i2s_wr_rd_reg(struct device *dev, unsigned int reg)
348 case TEGRA20_I2S_CTRL:
349 case TEGRA20_I2S_STATUS:
350 case TEGRA20_I2S_TIMING:
351 case TEGRA20_I2S_FIFO_SCR:
352 case TEGRA20_I2S_PCM_CTRL:
353 case TEGRA20_I2S_NW_CTRL:
354 case TEGRA20_I2S_TDM_CTRL:
355 case TEGRA20_I2S_TDM_TX_RX_CTRL:
356 case TEGRA20_I2S_FIFO1:
357 case TEGRA20_I2S_FIFO2:
364 static bool tegra20_i2s_volatile_reg(struct device *dev, unsigned int reg)
367 case TEGRA20_I2S_STATUS:
368 case TEGRA20_I2S_FIFO_SCR:
369 case TEGRA20_I2S_FIFO1:
370 case TEGRA20_I2S_FIFO2:
377 static bool tegra20_i2s_precious_reg(struct device *dev, unsigned int reg)
380 case TEGRA20_I2S_FIFO1:
381 case TEGRA20_I2S_FIFO2:
388 static const struct regmap_config tegra20_i2s_regmap_config = {
392 .max_register = TEGRA20_I2S_FIFO2,
393 .writeable_reg = tegra20_i2s_wr_rd_reg,
394 .readable_reg = tegra20_i2s_wr_rd_reg,
395 .volatile_reg = tegra20_i2s_volatile_reg,
396 .precious_reg = tegra20_i2s_precious_reg,
397 .cache_type = REGCACHE_FLAT,
400 static int tegra20_i2s_platform_probe(struct platform_device *pdev)
402 struct tegra20_i2s *i2s;
403 struct resource *mem;
407 i2s = devm_kzalloc(&pdev->dev, sizeof(struct tegra20_i2s), GFP_KERNEL);
412 dev_set_drvdata(&pdev->dev, i2s);
414 i2s->dai = tegra20_i2s_dai_template;
415 i2s->dai.name = dev_name(&pdev->dev);
417 i2s->reset = devm_reset_control_get_exclusive(&pdev->dev, "i2s");
418 if (IS_ERR(i2s->reset)) {
419 dev_err(&pdev->dev, "Can't retrieve i2s reset\n");
420 return PTR_ERR(i2s->reset);
423 i2s->clk_i2s = devm_clk_get(&pdev->dev, NULL);
424 if (IS_ERR(i2s->clk_i2s)) {
425 dev_err(&pdev->dev, "Can't retrieve i2s clock\n");
426 ret = PTR_ERR(i2s->clk_i2s);
430 regs = devm_platform_get_and_ioremap_resource(pdev, 0, &mem);
436 i2s->regmap = devm_regmap_init_mmio(&pdev->dev, regs,
437 &tegra20_i2s_regmap_config);
438 if (IS_ERR(i2s->regmap)) {
439 dev_err(&pdev->dev, "regmap init failed\n");
440 ret = PTR_ERR(i2s->regmap);
444 i2s->capture_dma_data.addr = mem->start + TEGRA20_I2S_FIFO2;
445 i2s->capture_dma_data.addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES;
446 i2s->capture_dma_data.maxburst = 4;
448 i2s->playback_dma_data.addr = mem->start + TEGRA20_I2S_FIFO1;
449 i2s->playback_dma_data.addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES;
450 i2s->playback_dma_data.maxburst = 4;
452 pm_runtime_enable(&pdev->dev);
454 ret = snd_soc_register_component(&pdev->dev, &tegra20_i2s_component,
457 dev_err(&pdev->dev, "Could not register DAI: %d\n", ret);
462 ret = tegra_pcm_platform_register(&pdev->dev);
464 dev_err(&pdev->dev, "Could not register PCM: %d\n", ret);
465 goto err_unregister_component;
470 err_unregister_component:
471 snd_soc_unregister_component(&pdev->dev);
473 pm_runtime_disable(&pdev->dev);
478 static int tegra20_i2s_platform_remove(struct platform_device *pdev)
480 tegra_pcm_platform_unregister(&pdev->dev);
481 snd_soc_unregister_component(&pdev->dev);
482 pm_runtime_disable(&pdev->dev);
487 static const struct of_device_id tegra20_i2s_of_match[] = {
488 { .compatible = "nvidia,tegra20-i2s", },
492 static const struct dev_pm_ops tegra20_i2s_pm_ops = {
493 SET_RUNTIME_PM_OPS(tegra20_i2s_runtime_suspend,
494 tegra20_i2s_runtime_resume, NULL)
495 SET_SYSTEM_SLEEP_PM_OPS(pm_runtime_force_suspend,
496 pm_runtime_force_resume)
499 static struct platform_driver tegra20_i2s_driver = {
502 .of_match_table = tegra20_i2s_of_match,
503 .pm = &tegra20_i2s_pm_ops,
505 .probe = tegra20_i2s_platform_probe,
506 .remove = tegra20_i2s_platform_remove,
508 module_platform_driver(tegra20_i2s_driver);
510 MODULE_AUTHOR("Stephen Warren <swarren@nvidia.com>");
511 MODULE_DESCRIPTION("Tegra20 I2S ASoC driver");
512 MODULE_LICENSE("GPL");
513 MODULE_ALIAS("platform:" DRV_NAME);
514 MODULE_DEVICE_TABLE(of, tegra20_i2s_of_match);