2 * Copyright (C) 2015 Andrea Venturi
3 * Andrea Venturi <be17068@iperbole.bo.it>
5 * Copyright (C) 2016 Maxime Ripard
6 * Maxime Ripard <maxime.ripard@free-electrons.com>
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; either version 2 of
11 * the License, or (at your option) any later version.
14 #include <linux/clk.h>
15 #include <linux/dmaengine.h>
16 #include <linux/module.h>
17 #include <linux/of_device.h>
18 #include <linux/platform_device.h>
19 #include <linux/pm_runtime.h>
20 #include <linux/regmap.h>
21 #include <linux/reset.h>
23 #include <sound/dmaengine_pcm.h>
24 #include <sound/pcm_params.h>
25 #include <sound/soc.h>
26 #include <sound/soc-dai.h>
28 #define SUN4I_I2S_CTRL_REG 0x00
29 #define SUN4I_I2S_CTRL_SDO_EN_MASK GENMASK(11, 8)
30 #define SUN4I_I2S_CTRL_SDO_EN(sdo) BIT(8 + (sdo))
31 #define SUN4I_I2S_CTRL_MODE_MASK BIT(5)
32 #define SUN4I_I2S_CTRL_MODE_SLAVE (1 << 5)
33 #define SUN4I_I2S_CTRL_MODE_MASTER (0 << 5)
34 #define SUN4I_I2S_CTRL_TX_EN BIT(2)
35 #define SUN4I_I2S_CTRL_RX_EN BIT(1)
36 #define SUN4I_I2S_CTRL_GL_EN BIT(0)
38 #define SUN4I_I2S_FMT0_REG 0x04
39 #define SUN4I_I2S_FMT0_LRCLK_POLARITY_MASK BIT(7)
40 #define SUN4I_I2S_FMT0_LRCLK_POLARITY_INVERTED (1 << 7)
41 #define SUN4I_I2S_FMT0_LRCLK_POLARITY_NORMAL (0 << 7)
42 #define SUN4I_I2S_FMT0_BCLK_POLARITY_MASK BIT(6)
43 #define SUN4I_I2S_FMT0_BCLK_POLARITY_INVERTED (1 << 6)
44 #define SUN4I_I2S_FMT0_BCLK_POLARITY_NORMAL (0 << 6)
45 #define SUN4I_I2S_FMT0_SR_MASK GENMASK(5, 4)
46 #define SUN4I_I2S_FMT0_SR(sr) ((sr) << 4)
47 #define SUN4I_I2S_FMT0_WSS_MASK GENMASK(3, 2)
48 #define SUN4I_I2S_FMT0_WSS(wss) ((wss) << 2)
49 #define SUN4I_I2S_FMT0_FMT_MASK GENMASK(1, 0)
50 #define SUN4I_I2S_FMT0_FMT_RIGHT_J (2 << 0)
51 #define SUN4I_I2S_FMT0_FMT_LEFT_J (1 << 0)
52 #define SUN4I_I2S_FMT0_FMT_I2S (0 << 0)
54 #define SUN4I_I2S_FMT1_REG 0x08
55 #define SUN4I_I2S_FIFO_TX_REG 0x0c
56 #define SUN4I_I2S_FIFO_RX_REG 0x10
58 #define SUN4I_I2S_FIFO_CTRL_REG 0x14
59 #define SUN4I_I2S_FIFO_CTRL_FLUSH_TX BIT(25)
60 #define SUN4I_I2S_FIFO_CTRL_FLUSH_RX BIT(24)
61 #define SUN4I_I2S_FIFO_CTRL_TX_MODE_MASK BIT(2)
62 #define SUN4I_I2S_FIFO_CTRL_TX_MODE(mode) ((mode) << 2)
63 #define SUN4I_I2S_FIFO_CTRL_RX_MODE_MASK GENMASK(1, 0)
64 #define SUN4I_I2S_FIFO_CTRL_RX_MODE(mode) (mode)
66 #define SUN4I_I2S_FIFO_STA_REG 0x18
68 #define SUN4I_I2S_DMA_INT_CTRL_REG 0x1c
69 #define SUN4I_I2S_DMA_INT_CTRL_TX_DRQ_EN BIT(7)
70 #define SUN4I_I2S_DMA_INT_CTRL_RX_DRQ_EN BIT(3)
72 #define SUN4I_I2S_INT_STA_REG 0x20
74 #define SUN4I_I2S_CLK_DIV_REG 0x24
75 #define SUN4I_I2S_CLK_DIV_MCLK_EN BIT(7)
76 #define SUN4I_I2S_CLK_DIV_BCLK_MASK GENMASK(6, 4)
77 #define SUN4I_I2S_CLK_DIV_BCLK(bclk) ((bclk) << 4)
78 #define SUN4I_I2S_CLK_DIV_MCLK_MASK GENMASK(3, 0)
79 #define SUN4I_I2S_CLK_DIV_MCLK(mclk) ((mclk) << 0)
81 #define SUN4I_I2S_RX_CNT_REG 0x28
82 #define SUN4I_I2S_TX_CNT_REG 0x2c
84 #define SUN4I_I2S_TX_CHAN_SEL_REG 0x30
85 #define SUN4I_I2S_TX_CHAN_SEL(num_chan) (((num_chan) - 1) << 0)
87 #define SUN4I_I2S_TX_CHAN_MAP_REG 0x34
88 #define SUN4I_I2S_TX_CHAN_MAP(chan, sample) ((sample) << (chan << 2))
90 #define SUN4I_I2S_RX_CHAN_SEL_REG 0x38
91 #define SUN4I_I2S_RX_CHAN_MAP_REG 0x3c
96 struct regmap
*regmap
;
97 struct reset_control
*rst
;
99 struct snd_dmaengine_dai_dma_data playback_dma_data
;
102 struct sun4i_i2s_clk_div
{
107 static const struct sun4i_i2s_clk_div sun4i_i2s_bclk_div
[] = {
108 { .div
= 2, .val
= 0 },
109 { .div
= 4, .val
= 1 },
110 { .div
= 6, .val
= 2 },
111 { .div
= 8, .val
= 3 },
112 { .div
= 12, .val
= 4 },
113 { .div
= 16, .val
= 5 },
116 static const struct sun4i_i2s_clk_div sun4i_i2s_mclk_div
[] = {
117 { .div
= 1, .val
= 0 },
118 { .div
= 2, .val
= 1 },
119 { .div
= 4, .val
= 2 },
120 { .div
= 6, .val
= 3 },
121 { .div
= 8, .val
= 4 },
122 { .div
= 12, .val
= 5 },
123 { .div
= 16, .val
= 6 },
124 { .div
= 24, .val
= 7 },
127 static int sun4i_i2s_get_bclk_div(struct sun4i_i2s
*i2s
,
128 unsigned int oversample_rate
,
129 unsigned int word_size
)
131 int div
= oversample_rate
/ word_size
/ 2;
134 for (i
= 0; i
< ARRAY_SIZE(sun4i_i2s_bclk_div
); i
++) {
135 const struct sun4i_i2s_clk_div
*bdiv
= &sun4i_i2s_bclk_div
[i
];
137 if (bdiv
->div
== div
)
144 static int sun4i_i2s_get_mclk_div(struct sun4i_i2s
*i2s
,
145 unsigned int oversample_rate
,
146 unsigned int module_rate
,
147 unsigned int sampling_rate
)
149 int div
= module_rate
/ sampling_rate
/ oversample_rate
;
152 for (i
= 0; i
< ARRAY_SIZE(sun4i_i2s_mclk_div
); i
++) {
153 const struct sun4i_i2s_clk_div
*mdiv
= &sun4i_i2s_mclk_div
[i
];
155 if (mdiv
->div
== div
)
162 static int sun4i_i2s_oversample_rates
[] = { 128, 192, 256, 384, 512, 768 };
164 static int sun4i_i2s_set_clk_rate(struct sun4i_i2s
*i2s
,
166 unsigned int word_size
)
168 unsigned int clk_rate
;
169 int bclk_div
, mclk_div
;
198 ret
= clk_set_rate(i2s
->mod_clk
, clk_rate
);
202 /* Always favor the highest oversampling rate */
203 for (i
= (ARRAY_SIZE(sun4i_i2s_oversample_rates
) - 1); i
>= 0; i
--) {
204 unsigned int oversample_rate
= sun4i_i2s_oversample_rates
[i
];
206 bclk_div
= sun4i_i2s_get_bclk_div(i2s
, oversample_rate
,
208 mclk_div
= sun4i_i2s_get_mclk_div(i2s
, oversample_rate
,
212 if ((bclk_div
>= 0) && (mclk_div
>= 0))
216 if ((bclk_div
< 0) || (mclk_div
< 0))
219 regmap_write(i2s
->regmap
, SUN4I_I2S_CLK_DIV_REG
,
220 SUN4I_I2S_CLK_DIV_BCLK(bclk_div
) |
221 SUN4I_I2S_CLK_DIV_MCLK(mclk_div
) |
222 SUN4I_I2S_CLK_DIV_MCLK_EN
);
227 static int sun4i_i2s_hw_params(struct snd_pcm_substream
*substream
,
228 struct snd_pcm_hw_params
*params
,
229 struct snd_soc_dai
*dai
)
231 struct sun4i_i2s
*i2s
= snd_soc_dai_get_drvdata(dai
);
235 if (params_channels(params
) != 2)
238 switch (params_physical_width(params
)) {
240 width
= DMA_SLAVE_BUSWIDTH_2_BYTES
;
245 i2s
->playback_dma_data
.addr_width
= width
;
247 switch (params_width(params
)) {
257 regmap_update_bits(i2s
->regmap
, SUN4I_I2S_FMT0_REG
,
258 SUN4I_I2S_FMT0_WSS_MASK
| SUN4I_I2S_FMT0_SR_MASK
,
259 SUN4I_I2S_FMT0_WSS(wss
) | SUN4I_I2S_FMT0_SR(sr
));
261 return sun4i_i2s_set_clk_rate(i2s
, params_rate(params
),
262 params_width(params
));
265 static int sun4i_i2s_set_fmt(struct snd_soc_dai
*dai
, unsigned int fmt
)
267 struct sun4i_i2s
*i2s
= snd_soc_dai_get_drvdata(dai
);
271 switch (fmt
& SND_SOC_DAIFMT_FORMAT_MASK
) {
272 case SND_SOC_DAIFMT_I2S
:
273 val
= SUN4I_I2S_FMT0_FMT_I2S
;
275 case SND_SOC_DAIFMT_LEFT_J
:
276 val
= SUN4I_I2S_FMT0_FMT_LEFT_J
;
278 case SND_SOC_DAIFMT_RIGHT_J
:
279 val
= SUN4I_I2S_FMT0_FMT_RIGHT_J
;
285 regmap_update_bits(i2s
->regmap
, SUN4I_I2S_FMT0_REG
,
286 SUN4I_I2S_FMT0_FMT_MASK
,
289 /* DAI clock polarity */
290 switch (fmt
& SND_SOC_DAIFMT_INV_MASK
) {
291 case SND_SOC_DAIFMT_IB_IF
:
292 /* Invert both clocks */
293 val
= SUN4I_I2S_FMT0_BCLK_POLARITY_INVERTED
|
294 SUN4I_I2S_FMT0_LRCLK_POLARITY_INVERTED
;
296 case SND_SOC_DAIFMT_IB_NF
:
297 /* Invert bit clock */
298 val
= SUN4I_I2S_FMT0_BCLK_POLARITY_INVERTED
|
299 SUN4I_I2S_FMT0_LRCLK_POLARITY_NORMAL
;
301 case SND_SOC_DAIFMT_NB_IF
:
302 /* Invert frame clock */
303 val
= SUN4I_I2S_FMT0_LRCLK_POLARITY_INVERTED
|
304 SUN4I_I2S_FMT0_BCLK_POLARITY_NORMAL
;
306 case SND_SOC_DAIFMT_NB_NF
:
307 /* Nothing to do for both normal cases */
308 val
= SUN4I_I2S_FMT0_BCLK_POLARITY_NORMAL
|
309 SUN4I_I2S_FMT0_LRCLK_POLARITY_NORMAL
;
315 regmap_update_bits(i2s
->regmap
, SUN4I_I2S_FMT0_REG
,
316 SUN4I_I2S_FMT0_BCLK_POLARITY_MASK
|
317 SUN4I_I2S_FMT0_LRCLK_POLARITY_MASK
,
320 /* DAI clock master masks */
321 switch (fmt
& SND_SOC_DAIFMT_MASTER_MASK
) {
322 case SND_SOC_DAIFMT_CBS_CFS
:
323 /* BCLK and LRCLK master */
324 val
= SUN4I_I2S_CTRL_MODE_MASTER
;
326 case SND_SOC_DAIFMT_CBM_CFM
:
327 /* BCLK and LRCLK slave */
328 val
= SUN4I_I2S_CTRL_MODE_SLAVE
;
334 regmap_update_bits(i2s
->regmap
, SUN4I_I2S_CTRL_REG
,
335 SUN4I_I2S_CTRL_MODE_MASK
,
338 /* Set significant bits in our FIFOs */
339 regmap_update_bits(i2s
->regmap
, SUN4I_I2S_FIFO_CTRL_REG
,
340 SUN4I_I2S_FIFO_CTRL_TX_MODE_MASK
|
341 SUN4I_I2S_FIFO_CTRL_RX_MODE_MASK
,
342 SUN4I_I2S_FIFO_CTRL_TX_MODE(1) |
343 SUN4I_I2S_FIFO_CTRL_RX_MODE(1));
347 static void sun4i_i2s_start_playback(struct sun4i_i2s
*i2s
)
350 regmap_update_bits(i2s
->regmap
, SUN4I_I2S_FIFO_CTRL_REG
,
351 SUN4I_I2S_FIFO_CTRL_FLUSH_TX
,
352 SUN4I_I2S_FIFO_CTRL_FLUSH_TX
);
354 /* Clear TX counter */
355 regmap_write(i2s
->regmap
, SUN4I_I2S_TX_CNT_REG
, 0);
357 /* Enable TX Block */
358 regmap_update_bits(i2s
->regmap
, SUN4I_I2S_CTRL_REG
,
359 SUN4I_I2S_CTRL_TX_EN
,
360 SUN4I_I2S_CTRL_TX_EN
);
363 regmap_update_bits(i2s
->regmap
, SUN4I_I2S_DMA_INT_CTRL_REG
,
364 SUN4I_I2S_DMA_INT_CTRL_TX_DRQ_EN
,
365 SUN4I_I2S_DMA_INT_CTRL_TX_DRQ_EN
);
369 static void sun4i_i2s_stop_playback(struct sun4i_i2s
*i2s
)
371 /* Disable TX Block */
372 regmap_update_bits(i2s
->regmap
, SUN4I_I2S_CTRL_REG
,
373 SUN4I_I2S_CTRL_TX_EN
,
377 regmap_update_bits(i2s
->regmap
, SUN4I_I2S_DMA_INT_CTRL_REG
,
378 SUN4I_I2S_DMA_INT_CTRL_TX_DRQ_EN
,
382 static int sun4i_i2s_trigger(struct snd_pcm_substream
*substream
, int cmd
,
383 struct snd_soc_dai
*dai
)
385 struct sun4i_i2s
*i2s
= snd_soc_dai_get_drvdata(dai
);
388 case SNDRV_PCM_TRIGGER_START
:
389 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE
:
390 case SNDRV_PCM_TRIGGER_RESUME
:
391 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
)
392 sun4i_i2s_start_playback(i2s
);
397 case SNDRV_PCM_TRIGGER_STOP
:
398 case SNDRV_PCM_TRIGGER_PAUSE_PUSH
:
399 case SNDRV_PCM_TRIGGER_SUSPEND
:
400 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
)
401 sun4i_i2s_stop_playback(i2s
);
413 static int sun4i_i2s_startup(struct snd_pcm_substream
*substream
,
414 struct snd_soc_dai
*dai
)
416 struct sun4i_i2s
*i2s
= snd_soc_dai_get_drvdata(dai
);
418 /* Enable the whole hardware block */
419 regmap_write(i2s
->regmap
, SUN4I_I2S_CTRL_REG
,
420 SUN4I_I2S_CTRL_GL_EN
);
422 /* Enable the first output line */
423 regmap_update_bits(i2s
->regmap
, SUN4I_I2S_CTRL_REG
,
424 SUN4I_I2S_CTRL_SDO_EN_MASK
,
425 SUN4I_I2S_CTRL_SDO_EN(0));
427 /* Enable the first two channels */
428 regmap_write(i2s
->regmap
, SUN4I_I2S_TX_CHAN_SEL_REG
,
429 SUN4I_I2S_TX_CHAN_SEL(2));
431 /* Map them to the two first samples coming in */
432 regmap_write(i2s
->regmap
, SUN4I_I2S_TX_CHAN_MAP_REG
,
433 SUN4I_I2S_TX_CHAN_MAP(0, 0) | SUN4I_I2S_TX_CHAN_MAP(1, 1));
435 return clk_prepare_enable(i2s
->mod_clk
);
438 static void sun4i_i2s_shutdown(struct snd_pcm_substream
*substream
,
439 struct snd_soc_dai
*dai
)
441 struct sun4i_i2s
*i2s
= snd_soc_dai_get_drvdata(dai
);
443 clk_disable_unprepare(i2s
->mod_clk
);
445 /* Disable our output lines */
446 regmap_update_bits(i2s
->regmap
, SUN4I_I2S_CTRL_REG
,
447 SUN4I_I2S_CTRL_SDO_EN_MASK
, 0);
449 /* Disable the whole hardware block */
450 regmap_write(i2s
->regmap
, SUN4I_I2S_CTRL_REG
, 0);
453 static const struct snd_soc_dai_ops sun4i_i2s_dai_ops
= {
454 .hw_params
= sun4i_i2s_hw_params
,
455 .set_fmt
= sun4i_i2s_set_fmt
,
456 .shutdown
= sun4i_i2s_shutdown
,
457 .startup
= sun4i_i2s_startup
,
458 .trigger
= sun4i_i2s_trigger
,
461 static int sun4i_i2s_dai_probe(struct snd_soc_dai
*dai
)
463 struct sun4i_i2s
*i2s
= snd_soc_dai_get_drvdata(dai
);
465 snd_soc_dai_init_dma_data(dai
, &i2s
->playback_dma_data
, NULL
);
467 snd_soc_dai_set_drvdata(dai
, i2s
);
472 static struct snd_soc_dai_driver sun4i_i2s_dai
= {
473 .probe
= sun4i_i2s_dai_probe
,
475 .stream_name
= "Playback",
478 .rates
= SNDRV_PCM_RATE_8000_192000
,
479 .formats
= SNDRV_PCM_FMTBIT_S16_LE
,
481 .ops
= &sun4i_i2s_dai_ops
,
482 .symmetric_rates
= 1,
485 static const struct snd_soc_component_driver sun4i_i2s_component
= {
489 static bool sun4i_i2s_rd_reg(struct device
*dev
, unsigned int reg
)
492 case SUN4I_I2S_FIFO_TX_REG
:
500 static bool sun4i_i2s_wr_reg(struct device
*dev
, unsigned int reg
)
503 case SUN4I_I2S_FIFO_RX_REG
:
504 case SUN4I_I2S_FIFO_STA_REG
:
512 static bool sun4i_i2s_volatile_reg(struct device
*dev
, unsigned int reg
)
515 case SUN4I_I2S_FIFO_RX_REG
:
516 case SUN4I_I2S_INT_STA_REG
:
517 case SUN4I_I2S_RX_CNT_REG
:
518 case SUN4I_I2S_TX_CNT_REG
:
526 static const struct reg_default sun4i_i2s_reg_defaults
[] = {
527 { SUN4I_I2S_CTRL_REG
, 0x00000000 },
528 { SUN4I_I2S_FMT0_REG
, 0x0000000c },
529 { SUN4I_I2S_FMT1_REG
, 0x00004020 },
530 { SUN4I_I2S_FIFO_CTRL_REG
, 0x000400f0 },
531 { SUN4I_I2S_DMA_INT_CTRL_REG
, 0x00000000 },
532 { SUN4I_I2S_CLK_DIV_REG
, 0x00000000 },
533 { SUN4I_I2S_TX_CHAN_SEL_REG
, 0x00000001 },
534 { SUN4I_I2S_TX_CHAN_MAP_REG
, 0x76543210 },
535 { SUN4I_I2S_RX_CHAN_SEL_REG
, 0x00000001 },
536 { SUN4I_I2S_RX_CHAN_MAP_REG
, 0x00003210 },
539 static const struct regmap_config sun4i_i2s_regmap_config
= {
543 .max_register
= SUN4I_I2S_RX_CHAN_MAP_REG
,
545 .cache_type
= REGCACHE_FLAT
,
546 .reg_defaults
= sun4i_i2s_reg_defaults
,
547 .num_reg_defaults
= ARRAY_SIZE(sun4i_i2s_reg_defaults
),
548 .writeable_reg
= sun4i_i2s_wr_reg
,
549 .readable_reg
= sun4i_i2s_rd_reg
,
550 .volatile_reg
= sun4i_i2s_volatile_reg
,
553 static int sun4i_i2s_runtime_resume(struct device
*dev
)
555 struct sun4i_i2s
*i2s
= dev_get_drvdata(dev
);
558 ret
= clk_prepare_enable(i2s
->bus_clk
);
560 dev_err(dev
, "Failed to enable bus clock\n");
564 regcache_cache_only(i2s
->regmap
, false);
565 regcache_mark_dirty(i2s
->regmap
);
567 ret
= regcache_sync(i2s
->regmap
);
569 dev_err(dev
, "Failed to sync regmap cache\n");
570 goto err_disable_clk
;
576 clk_disable_unprepare(i2s
->bus_clk
);
580 static int sun4i_i2s_runtime_suspend(struct device
*dev
)
582 struct sun4i_i2s
*i2s
= dev_get_drvdata(dev
);
584 regcache_cache_only(i2s
->regmap
, true);
586 clk_disable_unprepare(i2s
->bus_clk
);
591 struct sun4i_i2s_quirks
{
595 static const struct sun4i_i2s_quirks sun4i_a10_i2s_quirks
= {
599 static const struct sun4i_i2s_quirks sun6i_a31_i2s_quirks
= {
603 static int sun4i_i2s_probe(struct platform_device
*pdev
)
605 struct sun4i_i2s
*i2s
;
606 const struct sun4i_i2s_quirks
*quirks
;
607 struct resource
*res
;
611 i2s
= devm_kzalloc(&pdev
->dev
, sizeof(*i2s
), GFP_KERNEL
);
614 platform_set_drvdata(pdev
, i2s
);
616 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
617 regs
= devm_ioremap_resource(&pdev
->dev
, res
);
619 return PTR_ERR(regs
);
621 irq
= platform_get_irq(pdev
, 0);
623 dev_err(&pdev
->dev
, "Can't retrieve our interrupt\n");
627 quirks
= of_device_get_match_data(&pdev
->dev
);
629 dev_err(&pdev
->dev
, "Failed to determine the quirks to use\n");
633 i2s
->bus_clk
= devm_clk_get(&pdev
->dev
, "apb");
634 if (IS_ERR(i2s
->bus_clk
)) {
635 dev_err(&pdev
->dev
, "Can't get our bus clock\n");
636 return PTR_ERR(i2s
->bus_clk
);
639 i2s
->regmap
= devm_regmap_init_mmio(&pdev
->dev
, regs
,
640 &sun4i_i2s_regmap_config
);
641 if (IS_ERR(i2s
->regmap
)) {
642 dev_err(&pdev
->dev
, "Regmap initialisation failed\n");
643 return PTR_ERR(i2s
->regmap
);
646 i2s
->mod_clk
= devm_clk_get(&pdev
->dev
, "mod");
647 if (IS_ERR(i2s
->mod_clk
)) {
648 dev_err(&pdev
->dev
, "Can't get our mod clock\n");
649 return PTR_ERR(i2s
->mod_clk
);
652 if (quirks
->has_reset
) {
653 i2s
->rst
= devm_reset_control_get(&pdev
->dev
, NULL
);
654 if (IS_ERR(i2s
->rst
)) {
655 dev_err(&pdev
->dev
, "Failed to get reset control\n");
656 return PTR_ERR(i2s
->rst
);
660 if (!IS_ERR(i2s
->rst
)) {
661 ret
= reset_control_deassert(i2s
->rst
);
664 "Failed to deassert the reset control\n");
669 i2s
->playback_dma_data
.addr
= res
->start
+ SUN4I_I2S_FIFO_TX_REG
;
670 i2s
->playback_dma_data
.maxburst
= 4;
672 pm_runtime_enable(&pdev
->dev
);
673 if (!pm_runtime_enabled(&pdev
->dev
)) {
674 ret
= sun4i_i2s_runtime_resume(&pdev
->dev
);
679 ret
= devm_snd_soc_register_component(&pdev
->dev
,
680 &sun4i_i2s_component
,
683 dev_err(&pdev
->dev
, "Could not register DAI\n");
687 ret
= snd_dmaengine_pcm_register(&pdev
->dev
, NULL
, 0);
689 dev_err(&pdev
->dev
, "Could not register PCM\n");
696 if (!pm_runtime_status_suspended(&pdev
->dev
))
697 sun4i_i2s_runtime_suspend(&pdev
->dev
);
699 pm_runtime_disable(&pdev
->dev
);
700 if (!IS_ERR(i2s
->rst
))
701 reset_control_assert(i2s
->rst
);
706 static int sun4i_i2s_remove(struct platform_device
*pdev
)
708 struct sun4i_i2s
*i2s
= dev_get_drvdata(&pdev
->dev
);
710 snd_dmaengine_pcm_unregister(&pdev
->dev
);
712 pm_runtime_disable(&pdev
->dev
);
713 if (!pm_runtime_status_suspended(&pdev
->dev
))
714 sun4i_i2s_runtime_suspend(&pdev
->dev
);
716 if (!IS_ERR(i2s
->rst
))
717 reset_control_assert(i2s
->rst
);
722 static const struct of_device_id sun4i_i2s_match
[] = {
724 .compatible
= "allwinner,sun4i-a10-i2s",
725 .data
= &sun4i_a10_i2s_quirks
,
728 .compatible
= "allwinner,sun6i-a31-i2s",
729 .data
= &sun6i_a31_i2s_quirks
,
733 MODULE_DEVICE_TABLE(of
, sun4i_i2s_match
);
735 static const struct dev_pm_ops sun4i_i2s_pm_ops
= {
736 .runtime_resume
= sun4i_i2s_runtime_resume
,
737 .runtime_suspend
= sun4i_i2s_runtime_suspend
,
740 static struct platform_driver sun4i_i2s_driver
= {
741 .probe
= sun4i_i2s_probe
,
742 .remove
= sun4i_i2s_remove
,
745 .of_match_table
= sun4i_i2s_match
,
746 .pm
= &sun4i_i2s_pm_ops
,
749 module_platform_driver(sun4i_i2s_driver
);
751 MODULE_AUTHOR("Andrea Venturi <be17068@iperbole.bo.it>");
752 MODULE_AUTHOR("Maxime Ripard <maxime.ripard@free-electrons.com>");
753 MODULE_DESCRIPTION("Allwinner A10 I2S driver");
754 MODULE_LICENSE("GPL");