2 * tegra30_i2s.c - Tegra30 I2S driver
4 * Author: Stephen Warren <swarren@nvidia.com>
5 * Copyright (c) 2010-2012, NVIDIA CORPORATION. All rights reserved.
7 * Based on code copyright/by:
9 * Copyright (c) 2009-2010, NVIDIA Corporation.
10 * Scott Peterson <speterson@nvidia.com>
12 * Copyright (C) 2010 Google, Inc.
13 * Iliyan Malchev <malchev@google.com>
15 * This program is free software; you can redistribute it and/or modify it
16 * under the terms and conditions of the GNU General Public License,
17 * version 2, as published by the Free Software Foundation.
19 * This program is distributed in the hope it will be useful, but WITHOUT
20 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
21 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
24 * You should have received a copy of the GNU General Public License
25 * along with this program. If not, see <http://www.gnu.org/licenses/>.
28 #include <linux/clk.h>
29 #include <linux/device.h>
31 #include <linux/module.h>
33 #include <linux/of_device.h>
34 #include <linux/platform_device.h>
35 #include <linux/pm_runtime.h>
36 #include <linux/regmap.h>
37 #include <linux/slab.h>
38 #include <sound/core.h>
39 #include <sound/pcm.h>
40 #include <sound/pcm_params.h>
41 #include <sound/soc.h>
42 #include <sound/dmaengine_pcm.h>
44 #include "tegra30_ahub.h"
45 #include "tegra30_i2s.h"
47 #define DRV_NAME "tegra30-i2s"
49 static int tegra30_i2s_runtime_suspend(struct device
*dev
)
51 struct tegra30_i2s
*i2s
= dev_get_drvdata(dev
);
53 regcache_cache_only(i2s
->regmap
, true);
55 clk_disable_unprepare(i2s
->clk_i2s
);
60 static int tegra30_i2s_runtime_resume(struct device
*dev
)
62 struct tegra30_i2s
*i2s
= dev_get_drvdata(dev
);
65 ret
= clk_prepare_enable(i2s
->clk_i2s
);
67 dev_err(dev
, "clk_enable failed: %d\n", ret
);
71 regcache_cache_only(i2s
->regmap
, false);
76 static int tegra30_i2s_set_fmt(struct snd_soc_dai
*dai
,
79 struct tegra30_i2s
*i2s
= snd_soc_dai_get_drvdata(dai
);
80 unsigned int mask
= 0, val
= 0;
82 switch (fmt
& SND_SOC_DAIFMT_INV_MASK
) {
83 case SND_SOC_DAIFMT_NB_NF
:
89 mask
|= TEGRA30_I2S_CTRL_MASTER_ENABLE
;
90 switch (fmt
& SND_SOC_DAIFMT_MASTER_MASK
) {
91 case SND_SOC_DAIFMT_CBS_CFS
:
92 val
|= TEGRA30_I2S_CTRL_MASTER_ENABLE
;
94 case SND_SOC_DAIFMT_CBM_CFM
:
100 mask
|= TEGRA30_I2S_CTRL_FRAME_FORMAT_MASK
|
101 TEGRA30_I2S_CTRL_LRCK_MASK
;
102 switch (fmt
& SND_SOC_DAIFMT_FORMAT_MASK
) {
103 case SND_SOC_DAIFMT_DSP_A
:
104 val
|= TEGRA30_I2S_CTRL_FRAME_FORMAT_FSYNC
;
105 val
|= TEGRA30_I2S_CTRL_LRCK_L_LOW
;
107 case SND_SOC_DAIFMT_DSP_B
:
108 val
|= TEGRA30_I2S_CTRL_FRAME_FORMAT_FSYNC
;
109 val
|= TEGRA30_I2S_CTRL_LRCK_R_LOW
;
111 case SND_SOC_DAIFMT_I2S
:
112 val
|= TEGRA30_I2S_CTRL_FRAME_FORMAT_LRCK
;
113 val
|= TEGRA30_I2S_CTRL_LRCK_L_LOW
;
115 case SND_SOC_DAIFMT_RIGHT_J
:
116 val
|= TEGRA30_I2S_CTRL_FRAME_FORMAT_LRCK
;
117 val
|= TEGRA30_I2S_CTRL_LRCK_L_LOW
;
119 case SND_SOC_DAIFMT_LEFT_J
:
120 val
|= TEGRA30_I2S_CTRL_FRAME_FORMAT_LRCK
;
121 val
|= TEGRA30_I2S_CTRL_LRCK_L_LOW
;
127 pm_runtime_get_sync(dai
->dev
);
128 regmap_update_bits(i2s
->regmap
, TEGRA30_I2S_CTRL
, mask
, val
);
129 pm_runtime_put(dai
->dev
);
134 static int tegra30_i2s_hw_params(struct snd_pcm_substream
*substream
,
135 struct snd_pcm_hw_params
*params
,
136 struct snd_soc_dai
*dai
)
138 struct device
*dev
= dai
->dev
;
139 struct tegra30_i2s
*i2s
= snd_soc_dai_get_drvdata(dai
);
140 unsigned int mask
, val
, reg
;
141 int ret
, sample_size
, srate
, i2sclock
, bitcnt
;
142 struct tegra30_ahub_cif_conf cif_conf
;
144 if (params_channels(params
) != 2)
147 mask
= TEGRA30_I2S_CTRL_BIT_SIZE_MASK
;
148 switch (params_format(params
)) {
149 case SNDRV_PCM_FORMAT_S16_LE
:
150 val
= TEGRA30_I2S_CTRL_BIT_SIZE_16
;
157 regmap_update_bits(i2s
->regmap
, TEGRA30_I2S_CTRL
, mask
, val
);
159 srate
= params_rate(params
);
161 /* Final "* 2" required by Tegra hardware */
162 i2sclock
= srate
* params_channels(params
) * sample_size
* 2;
164 bitcnt
= (i2sclock
/ (2 * srate
)) - 1;
165 if (bitcnt
< 0 || bitcnt
> TEGRA30_I2S_TIMING_CHANNEL_BIT_COUNT_MASK_US
)
168 ret
= clk_set_rate(i2s
->clk_i2s
, i2sclock
);
170 dev_err(dev
, "Can't set I2S clock rate: %d\n", ret
);
174 val
= bitcnt
<< TEGRA30_I2S_TIMING_CHANNEL_BIT_COUNT_SHIFT
;
176 if (i2sclock
% (2 * srate
))
177 val
|= TEGRA30_I2S_TIMING_NON_SYM_ENABLE
;
179 regmap_write(i2s
->regmap
, TEGRA30_I2S_TIMING
, val
);
181 cif_conf
.threshold
= 0;
182 cif_conf
.audio_channels
= 2;
183 cif_conf
.client_channels
= 2;
184 cif_conf
.audio_bits
= TEGRA30_AUDIOCIF_BITS_16
;
185 cif_conf
.client_bits
= TEGRA30_AUDIOCIF_BITS_16
;
187 cif_conf
.stereo_conv
= 0;
188 cif_conf
.replicate
= 0;
189 cif_conf
.truncate
= 0;
190 cif_conf
.mono_conv
= 0;
192 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
) {
193 cif_conf
.direction
= TEGRA30_AUDIOCIF_DIRECTION_RX
;
194 reg
= TEGRA30_I2S_CIF_RX_CTRL
;
196 cif_conf
.direction
= TEGRA30_AUDIOCIF_DIRECTION_TX
;
197 reg
= TEGRA30_I2S_CIF_TX_CTRL
;
200 i2s
->soc_data
->set_audio_cif(i2s
->regmap
, reg
, &cif_conf
);
202 val
= (1 << TEGRA30_I2S_OFFSET_RX_DATA_OFFSET_SHIFT
) |
203 (1 << TEGRA30_I2S_OFFSET_TX_DATA_OFFSET_SHIFT
);
204 regmap_write(i2s
->regmap
, TEGRA30_I2S_OFFSET
, val
);
209 static void tegra30_i2s_start_playback(struct tegra30_i2s
*i2s
)
211 tegra30_ahub_enable_tx_fifo(i2s
->playback_fifo_cif
);
212 regmap_update_bits(i2s
->regmap
, TEGRA30_I2S_CTRL
,
213 TEGRA30_I2S_CTRL_XFER_EN_TX
,
214 TEGRA30_I2S_CTRL_XFER_EN_TX
);
217 static void tegra30_i2s_stop_playback(struct tegra30_i2s
*i2s
)
219 tegra30_ahub_disable_tx_fifo(i2s
->playback_fifo_cif
);
220 regmap_update_bits(i2s
->regmap
, TEGRA30_I2S_CTRL
,
221 TEGRA30_I2S_CTRL_XFER_EN_TX
, 0);
224 static void tegra30_i2s_start_capture(struct tegra30_i2s
*i2s
)
226 tegra30_ahub_enable_rx_fifo(i2s
->capture_fifo_cif
);
227 regmap_update_bits(i2s
->regmap
, TEGRA30_I2S_CTRL
,
228 TEGRA30_I2S_CTRL_XFER_EN_RX
,
229 TEGRA30_I2S_CTRL_XFER_EN_RX
);
232 static void tegra30_i2s_stop_capture(struct tegra30_i2s
*i2s
)
234 tegra30_ahub_disable_rx_fifo(i2s
->capture_fifo_cif
);
235 regmap_update_bits(i2s
->regmap
, TEGRA30_I2S_CTRL
,
236 TEGRA30_I2S_CTRL_XFER_EN_RX
, 0);
239 static int tegra30_i2s_trigger(struct snd_pcm_substream
*substream
, int cmd
,
240 struct snd_soc_dai
*dai
)
242 struct tegra30_i2s
*i2s
= snd_soc_dai_get_drvdata(dai
);
245 case SNDRV_PCM_TRIGGER_START
:
246 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE
:
247 case SNDRV_PCM_TRIGGER_RESUME
:
248 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
)
249 tegra30_i2s_start_playback(i2s
);
251 tegra30_i2s_start_capture(i2s
);
253 case SNDRV_PCM_TRIGGER_STOP
:
254 case SNDRV_PCM_TRIGGER_PAUSE_PUSH
:
255 case SNDRV_PCM_TRIGGER_SUSPEND
:
256 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
)
257 tegra30_i2s_stop_playback(i2s
);
259 tegra30_i2s_stop_capture(i2s
);
268 static int tegra30_i2s_probe(struct snd_soc_dai
*dai
)
270 struct tegra30_i2s
*i2s
= snd_soc_dai_get_drvdata(dai
);
272 dai
->capture_dma_data
= &i2s
->capture_dma_data
;
273 dai
->playback_dma_data
= &i2s
->playback_dma_data
;
278 static struct snd_soc_dai_ops tegra30_i2s_dai_ops
= {
279 .set_fmt
= tegra30_i2s_set_fmt
,
280 .hw_params
= tegra30_i2s_hw_params
,
281 .trigger
= tegra30_i2s_trigger
,
284 static const struct snd_soc_dai_driver tegra30_i2s_dai_template
= {
285 .probe
= tegra30_i2s_probe
,
287 .stream_name
= "Playback",
290 .rates
= SNDRV_PCM_RATE_8000_96000
,
291 .formats
= SNDRV_PCM_FMTBIT_S16_LE
,
294 .stream_name
= "Capture",
297 .rates
= SNDRV_PCM_RATE_8000_96000
,
298 .formats
= SNDRV_PCM_FMTBIT_S16_LE
,
300 .ops
= &tegra30_i2s_dai_ops
,
301 .symmetric_rates
= 1,
304 static const struct snd_soc_component_driver tegra30_i2s_component
= {
308 static bool tegra30_i2s_wr_rd_reg(struct device
*dev
, unsigned int reg
)
311 case TEGRA30_I2S_CTRL
:
312 case TEGRA30_I2S_TIMING
:
313 case TEGRA30_I2S_OFFSET
:
314 case TEGRA30_I2S_CH_CTRL
:
315 case TEGRA30_I2S_SLOT_CTRL
:
316 case TEGRA30_I2S_CIF_RX_CTRL
:
317 case TEGRA30_I2S_CIF_TX_CTRL
:
318 case TEGRA30_I2S_FLOWCTL
:
319 case TEGRA30_I2S_TX_STEP
:
320 case TEGRA30_I2S_FLOW_STATUS
:
321 case TEGRA30_I2S_FLOW_TOTAL
:
322 case TEGRA30_I2S_FLOW_OVER
:
323 case TEGRA30_I2S_FLOW_UNDER
:
324 case TEGRA30_I2S_LCOEF_1_4_0
:
325 case TEGRA30_I2S_LCOEF_1_4_1
:
326 case TEGRA30_I2S_LCOEF_1_4_2
:
327 case TEGRA30_I2S_LCOEF_1_4_3
:
328 case TEGRA30_I2S_LCOEF_1_4_4
:
329 case TEGRA30_I2S_LCOEF_1_4_5
:
330 case TEGRA30_I2S_LCOEF_2_4_0
:
331 case TEGRA30_I2S_LCOEF_2_4_1
:
332 case TEGRA30_I2S_LCOEF_2_4_2
:
339 static bool tegra30_i2s_volatile_reg(struct device
*dev
, unsigned int reg
)
342 case TEGRA30_I2S_FLOW_STATUS
:
343 case TEGRA30_I2S_FLOW_TOTAL
:
344 case TEGRA30_I2S_FLOW_OVER
:
345 case TEGRA30_I2S_FLOW_UNDER
:
352 static const struct regmap_config tegra30_i2s_regmap_config
= {
356 .max_register
= TEGRA30_I2S_LCOEF_2_4_2
,
357 .writeable_reg
= tegra30_i2s_wr_rd_reg
,
358 .readable_reg
= tegra30_i2s_wr_rd_reg
,
359 .volatile_reg
= tegra30_i2s_volatile_reg
,
360 .cache_type
= REGCACHE_FLAT
,
363 static const struct tegra30_i2s_soc_data tegra30_i2s_config
= {
364 .set_audio_cif
= tegra30_ahub_set_cif
,
367 static const struct tegra30_i2s_soc_data tegra124_i2s_config
= {
368 .set_audio_cif
= tegra124_ahub_set_cif
,
371 static const struct of_device_id tegra30_i2s_of_match
[] = {
372 { .compatible
= "nvidia,tegra124-i2s", .data
= &tegra124_i2s_config
},
373 { .compatible
= "nvidia,tegra30-i2s", .data
= &tegra30_i2s_config
},
377 static int tegra30_i2s_platform_probe(struct platform_device
*pdev
)
379 struct tegra30_i2s
*i2s
;
380 const struct of_device_id
*match
;
382 struct resource
*mem
, *memregion
;
386 i2s
= devm_kzalloc(&pdev
->dev
, sizeof(struct tegra30_i2s
), GFP_KERNEL
);
388 dev_err(&pdev
->dev
, "Can't allocate tegra30_i2s\n");
392 dev_set_drvdata(&pdev
->dev
, i2s
);
394 match
= of_match_device(tegra30_i2s_of_match
, &pdev
->dev
);
396 dev_err(&pdev
->dev
, "Error: No device match found\n");
400 i2s
->soc_data
= (struct tegra30_i2s_soc_data
*)match
->data
;
402 i2s
->dai
= tegra30_i2s_dai_template
;
403 i2s
->dai
.name
= dev_name(&pdev
->dev
);
405 ret
= of_property_read_u32_array(pdev
->dev
.of_node
,
406 "nvidia,ahub-cif-ids", cif_ids
,
407 ARRAY_SIZE(cif_ids
));
411 i2s
->playback_i2s_cif
= cif_ids
[0];
412 i2s
->capture_i2s_cif
= cif_ids
[1];
414 i2s
->clk_i2s
= clk_get(&pdev
->dev
, NULL
);
415 if (IS_ERR(i2s
->clk_i2s
)) {
416 dev_err(&pdev
->dev
, "Can't retrieve i2s clock\n");
417 ret
= PTR_ERR(i2s
->clk_i2s
);
421 mem
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
423 dev_err(&pdev
->dev
, "No memory resource\n");
428 memregion
= devm_request_mem_region(&pdev
->dev
, mem
->start
,
429 resource_size(mem
), DRV_NAME
);
431 dev_err(&pdev
->dev
, "Memory region already claimed\n");
436 regs
= devm_ioremap(&pdev
->dev
, mem
->start
, resource_size(mem
));
438 dev_err(&pdev
->dev
, "ioremap failed\n");
443 i2s
->regmap
= devm_regmap_init_mmio(&pdev
->dev
, regs
,
444 &tegra30_i2s_regmap_config
);
445 if (IS_ERR(i2s
->regmap
)) {
446 dev_err(&pdev
->dev
, "regmap init failed\n");
447 ret
= PTR_ERR(i2s
->regmap
);
450 regcache_cache_only(i2s
->regmap
, true);
452 pm_runtime_enable(&pdev
->dev
);
453 if (!pm_runtime_enabled(&pdev
->dev
)) {
454 ret
= tegra30_i2s_runtime_resume(&pdev
->dev
);
459 i2s
->playback_dma_data
.addr_width
= DMA_SLAVE_BUSWIDTH_4_BYTES
;
460 i2s
->playback_dma_data
.maxburst
= 4;
461 ret
= tegra30_ahub_allocate_tx_fifo(&i2s
->playback_fifo_cif
,
462 i2s
->playback_dma_chan
,
463 sizeof(i2s
->playback_dma_chan
),
464 &i2s
->playback_dma_data
.addr
);
466 dev_err(&pdev
->dev
, "Could not alloc TX FIFO: %d\n", ret
);
469 ret
= tegra30_ahub_set_rx_cif_source(i2s
->playback_i2s_cif
,
470 i2s
->playback_fifo_cif
);
472 dev_err(&pdev
->dev
, "Could not route TX FIFO: %d\n", ret
);
473 goto err_free_tx_fifo
;
476 i2s
->capture_dma_data
.addr_width
= DMA_SLAVE_BUSWIDTH_4_BYTES
;
477 i2s
->capture_dma_data
.maxburst
= 4;
478 ret
= tegra30_ahub_allocate_rx_fifo(&i2s
->capture_fifo_cif
,
479 i2s
->capture_dma_chan
,
480 sizeof(i2s
->capture_dma_chan
),
481 &i2s
->capture_dma_data
.addr
);
483 dev_err(&pdev
->dev
, "Could not alloc RX FIFO: %d\n", ret
);
484 goto err_unroute_tx_fifo
;
486 ret
= tegra30_ahub_set_rx_cif_source(i2s
->capture_fifo_cif
,
487 i2s
->capture_i2s_cif
);
489 dev_err(&pdev
->dev
, "Could not route TX FIFO: %d\n", ret
);
490 goto err_free_rx_fifo
;
493 ret
= snd_soc_register_component(&pdev
->dev
, &tegra30_i2s_component
,
496 dev_err(&pdev
->dev
, "Could not register DAI: %d\n", ret
);
498 goto err_unroute_rx_fifo
;
501 ret
= tegra_pcm_platform_register_with_chan_names(&pdev
->dev
,
502 &i2s
->dma_config
, i2s
->playback_dma_chan
,
503 i2s
->capture_dma_chan
);
505 dev_err(&pdev
->dev
, "Could not register PCM: %d\n", ret
);
506 goto err_unregister_component
;
511 err_unregister_component
:
512 snd_soc_unregister_component(&pdev
->dev
);
514 tegra30_ahub_unset_rx_cif_source(i2s
->capture_fifo_cif
);
516 tegra30_ahub_free_rx_fifo(i2s
->capture_fifo_cif
);
518 tegra30_ahub_unset_rx_cif_source(i2s
->playback_i2s_cif
);
520 tegra30_ahub_free_tx_fifo(i2s
->playback_fifo_cif
);
522 if (!pm_runtime_status_suspended(&pdev
->dev
))
523 tegra30_i2s_runtime_suspend(&pdev
->dev
);
525 pm_runtime_disable(&pdev
->dev
);
527 clk_put(i2s
->clk_i2s
);
532 static int tegra30_i2s_platform_remove(struct platform_device
*pdev
)
534 struct tegra30_i2s
*i2s
= dev_get_drvdata(&pdev
->dev
);
536 pm_runtime_disable(&pdev
->dev
);
537 if (!pm_runtime_status_suspended(&pdev
->dev
))
538 tegra30_i2s_runtime_suspend(&pdev
->dev
);
540 tegra_pcm_platform_unregister(&pdev
->dev
);
541 snd_soc_unregister_component(&pdev
->dev
);
543 tegra30_ahub_unset_rx_cif_source(i2s
->capture_fifo_cif
);
544 tegra30_ahub_free_rx_fifo(i2s
->capture_fifo_cif
);
546 tegra30_ahub_unset_rx_cif_source(i2s
->playback_i2s_cif
);
547 tegra30_ahub_free_tx_fifo(i2s
->playback_fifo_cif
);
549 clk_put(i2s
->clk_i2s
);
554 #ifdef CONFIG_PM_SLEEP
555 static int tegra30_i2s_suspend(struct device
*dev
)
557 struct tegra30_i2s
*i2s
= dev_get_drvdata(dev
);
559 regcache_mark_dirty(i2s
->regmap
);
564 static int tegra30_i2s_resume(struct device
*dev
)
566 struct tegra30_i2s
*i2s
= dev_get_drvdata(dev
);
569 ret
= pm_runtime_get_sync(dev
);
572 ret
= regcache_sync(i2s
->regmap
);
579 static const struct dev_pm_ops tegra30_i2s_pm_ops
= {
580 SET_RUNTIME_PM_OPS(tegra30_i2s_runtime_suspend
,
581 tegra30_i2s_runtime_resume
, NULL
)
582 SET_SYSTEM_SLEEP_PM_OPS(tegra30_i2s_suspend
, tegra30_i2s_resume
)
585 static struct platform_driver tegra30_i2s_driver
= {
588 .of_match_table
= tegra30_i2s_of_match
,
589 .pm
= &tegra30_i2s_pm_ops
,
591 .probe
= tegra30_i2s_platform_probe
,
592 .remove
= tegra30_i2s_platform_remove
,
594 module_platform_driver(tegra30_i2s_driver
);
596 MODULE_AUTHOR("Stephen Warren <swarren@nvidia.com>");
597 MODULE_DESCRIPTION("Tegra30 I2S ASoC driver");
598 MODULE_LICENSE("GPL");
599 MODULE_ALIAS("platform:" DRV_NAME
);
600 MODULE_DEVICE_TABLE(of
, tegra30_i2s_of_match
);