Merge branch 'develop-3.10' of ssh://10.10.10.29/rk/kernel into develop-3.10
[firefly-linux-kernel-4.4.55.git] / sound / soc / rockchip / rk_spdif.c
1 /*$_FOR_ROCKCHIP_RBOX_$*/
2 /*$_rbox_$_modify_$_huangzhibao for spdif output*/
3
4 /* sound/soc/rockchip/rk_spdif.c
5  *
6  * ALSA SoC Audio Layer - rockchip S/PDIF Controller driver
7  *
8  * Copyright (c) 2010 rockchip Electronics Co. Ltd
9  *              http://www.rockchip.com/
10  *
11  * This program is free software; you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License version 2 as
13  * published by the Free Software Foundation.
14  */
15
16 #include <linux/init.h>
17 #include <linux/module.h>
18 #include <linux/interrupt.h>
19 #include <linux/device.h>
20 #include <linux/delay.h>
21 #include <linux/clk.h>
22 #include <linux/version.h>
23 #include <linux/of.h>
24 #include <linux/of_gpio.h>
25 #include <linux/clk.h>
26 #include <linux/io.h>
27 #include <linux/platform_device.h>
28 #include <linux/pm_runtime.h>
29 #include <linux/regmap.h>
30 #include <linux/slab.h>
31
32 #include <linux/rockchip/iomap.h>
33 #include <linux/rockchip/grf.h>
34
35 #include <asm/dma.h>
36 #include <sound/core.h>
37 #include <sound/pcm.h>
38 #include <sound/pcm_params.h>
39 #include <sound/initval.h>
40 #include <sound/soc.h>
41 #include <sound/dmaengine_pcm.h>
42 #include <linux/spinlock.h>
43 #include "rk_pcm.h"
44
45 #undef  DEBUG_SPDIF
46 #define DEBUG_SPDIF 1
47
48 #if DEBUG_SPDIF
49 #define RK_SPDIF_DBG(x...) pr_info("rk_spdif:"x)
50 #else
51 #define RK_SPDIF_DBG(x...) do { } while (0)
52 #endif
53
54 /* Registers */
55 #define CFGR                  0x00
56 #define SDBLR                 0x04
57 #define DMACR                 0x08
58 #define INTCR                 0x0C
59 #define INTSR                 0x10
60 #define XFER                  0x18
61 #define SMPDR                 0x20
62
63 #define SPDIF_CHNSR00_ADDR    0xC0
64 #define SPDIF_CHNSR01_ADDR    0xC4
65 #define SPDIF_CHNSR02_ADDR    0xC8
66 #define SPDIF_CHNSR03_ADDR    0xCC
67 #define SPDIF_CHNSR04_ADDR    0xD0
68 #define SPDIF_CHNSR05_ADDR    0xD4
69 #define SPDIF_CHNSR06_ADDR    0xD8
70 #define SPDIF_CHNSR07_ADDR    0xDC
71 #define SPDIF_CHNSR08_ADDR    0xE0
72 #define SPDIF_CHNSR09_ADDR    0xE4
73 #define SPDIF_CHNSR10_ADDR    0xE8
74 #define SPDIF_CHNSR11_ADDR    0xEC
75
76 #define SPDIF_BURST_INFO       0x100
77 #define SPDIF_REPETTION       0x104
78
79 #define DATA_OUTBUF           0x20
80
81 #define SPDIF_CHANNEL_SEL_8CH   ((0x2<<16)|(0x0<<0))
82 #define SPDIF_CHANNEL_SEL_2CH   ((0x2<<16)|(0x2<<0))
83
84 /* burst_info bit0:6 AC-3:0x01, DTS-I -II -III:11,12,13 */
85 #define burst_info_DATA_TYPE_AC3     0x01
86 #define burst_info_DATA_TYPE_EAC3    0x15
87 #define BURST_INFO_DATA_TYPE_DTS_I   0x0b
88
89 #define CFGR_MASK                   0x0ffffff
90 #define CFGR_VALID_DATA_16bit       (00)
91 #define CFGR_VALID_DATA_20bit       (01)
92 #define CFGR_VALID_DATA_24bit       (10)
93 #define CFGR_VALID_DATA_MASK        (11)
94
95 #define CFGR_HALFWORD_TX_ENABLE     (0x1<<2)
96 #define CFGR_HALFWORD_TX_DISABLE    (0x0<<2)
97 #define CFGR_HALFWORD_TX_MASK       (0x1<<2)
98
99 #define CFGR_CLK_RATE_MASK          (0xFF<<16)
100
101 #define CFGR_JUSTIFIED_RIGHT        (0<<3)
102 #define CFGR_JUSTIFIED_LEFT         (1<<3)
103 #define CFGR_JUSTIFIED_MASK         (1<<3)
104
105 /* CSE:channel status enable */
106 /* The bit should be set to 1 when the channel conveys non-linear PCM */
107 #define CFGR_CSE_DISABLE            (0<<6)
108 #define CFGR_CSE_ENABLE             (1<<6)
109 #define CFGR_CSE_MASK               (1<<6)
110
111 #define CFGR_MCLK_CLR               (1<<7)
112
113 #define CFGR_LINEAR_PCM             (0<<8)
114 #define CFGR_NON_LINEAR_PCM         (1<<8)
115 #define CFGR_LINEAR_MASK            (1<<8)
116
117 /* support 7.1 amplifier,new */
118 #define CFGR_PRE_CHANGE_ENALBLE     (1<<9)
119 #define CFGR_PRE_CHANGE_DISABLE     (0<<9)
120 #define CFGR_PRE_CHANGE_MASK        (1<<9)
121
122 #define XFER_TRAN_STOP              (0)
123 #define XFER_TRAN_START             (1)
124 #define XFER_MASK                   (1)
125
126 #define DMACR_TRAN_DMA_DISABLE      (0<<5)
127 #define DMACR_TRAN_DMA_ENABLE       (1<<5)
128 #define DMACR_TRAN_DMA_CTL_MASK     (1<<5)
129
130 #define DMACR_TRAN_DATA_LEVEL       0x10
131 #define DMACR_TRAN_DATA_LEVEL_MASK  0x1F
132 #define DMACR_TRAN_DMA_MASK         0x3F
133
134 /* Sample Date Buffer empty interrupt enable, new */
135 #define INTCR_SDBEIE_DISABLE        (0<<4)
136 #define INTCR_SDBEIE_ENABLE         (1<<4)
137 #define INTCR_SDBEIE_MASK           (1<<4)
138
139 struct rockchip_spdif_info {
140         spinlock_t      lock;/*lock parmeter setting.*/
141         void __iomem    *regs;
142         unsigned long   clk_rate;
143         struct clk      *hclk;
144         struct clk      *clk;
145         struct snd_dmaengine_dai_dma_data       dma_playback;
146 };
147
148 static inline struct rockchip_spdif_info *to_info(struct snd_soc_dai *cpu_dai)
149 {
150         return snd_soc_dai_get_drvdata(cpu_dai);
151 }
152
153 static void spdif_snd_txctrl(struct rockchip_spdif_info *spdif, int on)
154 {
155         void __iomem *regs = spdif->regs;
156         u32 opr, xfer;
157
158         RK_SPDIF_DBG("Entered %s\n", __func__);
159
160         xfer = readl(regs + XFER) & XFER_MASK;
161         opr = readl(regs + DMACR) & DMACR_TRAN_DMA_MASK
162                 & (~DMACR_TRAN_DMA_CTL_MASK);
163
164         if (on) {
165                 xfer |= XFER_TRAN_START;
166                 opr |= DMACR_TRAN_DMA_ENABLE;
167                 writel(xfer, regs + XFER);
168                 writel(opr, regs + DMACR);
169                 RK_SPDIF_DBG("on xfer=0x%x,opr=0x%x\n", readl(
170                         regs + XFER), readl(regs + DMACR));
171         } else {
172                 xfer &= ~XFER_TRAN_START;
173                 opr &= ~DMACR_TRAN_DMA_ENABLE;
174                 writel(xfer, regs + XFER);
175                 writel(opr, regs + DMACR);
176                 writel(1<<7, regs + CFGR);
177                 RK_SPDIF_DBG("off xfer=0x%x,opr=0x%x\n", readl(
178                         regs + XFER), readl(regs + DMACR));
179         }
180 }
181
182 static int spdif_set_syclk(struct snd_soc_dai *
183         cpu_dai, int clk_id, unsigned int freq, int dir)
184 {
185         struct rockchip_spdif_info *spdif = to_info(cpu_dai);
186
187         RK_SPDIF_DBG("Entered %s sysclk=%d\n", __func__, freq);
188
189         spdif->clk_rate = freq;
190
191         return 0;
192 }
193
194 static int spdif_trigger(struct snd_pcm_substream *
195                 substream, int cmd, struct snd_soc_dai *dai)
196 {
197         struct snd_soc_pcm_runtime *rtd = substream->private_data;
198         struct rockchip_spdif_info *spdif = to_info(rtd->cpu_dai);
199         unsigned long flags;
200
201         RK_SPDIF_DBG("Entered %s\n", __func__);
202
203         switch (cmd) {
204         case SNDRV_PCM_TRIGGER_START:
205         case SNDRV_PCM_TRIGGER_RESUME:
206         case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
207                 spin_lock_irqsave(&spdif->lock, flags);
208                 spdif_snd_txctrl(spdif, 1);
209                 spin_unlock_irqrestore(&spdif->lock, flags);
210                 break;
211         case SNDRV_PCM_TRIGGER_STOP:
212         case SNDRV_PCM_TRIGGER_SUSPEND:
213         case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
214                 spin_lock_irqsave(&spdif->lock, flags);
215                 spdif_snd_txctrl(spdif, 0);
216                 spin_unlock_irqrestore(&spdif->lock, flags);
217                 break;
218         default:
219                 return -EINVAL;
220         }
221
222         return 0;
223 }
224
225 static int spdif_hw_params(struct snd_pcm_substream *
226                 substream, struct snd_pcm_hw_params *params,
227                 struct snd_soc_dai *dai)
228 {
229         struct rockchip_spdif_info *spdif = to_info(dai);
230         void __iomem *regs = spdif->regs;
231         unsigned long flags;
232         int cfgr, dmac, intcr, chnsr_byte[5] = {0};
233         int data_type, err_flag, data_len, data_info;
234         int bs_num, repetition, burst_info;
235
236         RK_SPDIF_DBG("Entered %s\n", __func__);
237
238         if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
239                 dai->playback_dma_data = &spdif->dma_playback;
240         } else {
241                 pr_err("spdif:Capture is not supported\n");
242                 return -EINVAL;
243         }
244
245         spin_lock_irqsave(&spdif->lock, flags);
246
247         cfgr = readl(regs + CFGR) & CFGR_VALID_DATA_MASK;
248
249         cfgr &= ~CFGR_VALID_DATA_MASK;
250         switch (params_format(params)) {
251         case SNDRV_PCM_FORMAT_S16_LE:
252                 cfgr |= CFGR_VALID_DATA_16bit;
253                 break;
254         case SNDRV_PCM_FORMAT_S20_3LE:
255                 cfgr |= CFGR_VALID_DATA_20bit;
256                 break;
257         case SNDRV_PCM_FORMAT_S24_LE:
258                 cfgr |= CFGR_VALID_DATA_24bit;
259                 break;
260         default:
261                 goto err;
262         }
263
264         cfgr &= ~CFGR_HALFWORD_TX_MASK;
265         cfgr |= CFGR_HALFWORD_TX_ENABLE;
266
267         /* set most MCLK:192kHz */
268         cfgr &= ~CFGR_CLK_RATE_MASK;
269         cfgr |= (1<<16);
270
271         cfgr &= ~CFGR_JUSTIFIED_MASK;
272         cfgr |= CFGR_JUSTIFIED_RIGHT;
273
274         cfgr &= ~CFGR_CSE_MASK;
275         cfgr |= CFGR_CSE_DISABLE;
276
277         cfgr &= ~CFGR_LINEAR_MASK;
278         cfgr |= CFGR_LINEAR_PCM;
279
280         /* stream type*/
281         if (!snd_pcm_format_linear(params_format(params)))
282                 cfgr |= CFGR_NON_LINEAR_PCM;
283
284         cfgr &= ~CFGR_PRE_CHANGE_MASK;
285         cfgr |= CFGR_PRE_CHANGE_ENALBLE;
286
287         writel(cfgr, regs + CFGR);
288
289         intcr = readl(regs + INTCR) & INTCR_SDBEIE_MASK;
290         intcr |= INTCR_SDBEIE_ENABLE;
291         writel(intcr, regs + INTCR);
292
293         dmac = readl(regs + DMACR) & DMACR_TRAN_DMA_MASK &
294                 (~DMACR_TRAN_DATA_LEVEL_MASK);
295         dmac |= 0x10;
296         writel(dmac, regs + DMACR);
297
298         /*
299         * channel byte 0:
300         * Bit 1
301         * 1 Main data field represents linear PCM samples.
302         * 0 Main data field used for purposes other purposes.
303         */
304         chnsr_byte[0] = (0x0) | (0x0 << 1) |
305                 (0x0 << 2) | (0x0 << 3) |
306                 (0x00 << 6);
307         chnsr_byte[1] = (0x0);
308         chnsr_byte[2] = (0x0) | (0x0 << 4) | (0x0 << 6);
309         chnsr_byte[3] = (0x00) | (0x00);
310         chnsr_byte[4] = (0x0 << 4) | (0x01 << 1 | 0x0);
311
312         /* set stream type */
313         if (!snd_pcm_format_linear(params_format(params))) {
314                 chnsr_byte[0] |= (0x1<<1);
315                 chnsr_byte[4] = (0x0<<4)|(0x00<<1|0x0);
316         }
317         writel((chnsr_byte[4] << 16)
318                         | (chnsr_byte[4]),
319                         regs + SPDIF_CHNSR02_ADDR);
320         writel((chnsr_byte[3] << 24) | (chnsr_byte[2] << 16) |
321                 (chnsr_byte[3] << 8) | (chnsr_byte[2]),
322                 regs + SPDIF_CHNSR01_ADDR);
323         writel((chnsr_byte[1] << 24) | (chnsr_byte[0] << 16) |
324                 (chnsr_byte[1] << 8) | (chnsr_byte[0]),
325                 regs + SPDIF_CHNSR00_ADDR);
326
327         /* set non-linear params */
328         if (!snd_pcm_format_linear(params_format(params))) {
329                 switch (params_format(params)) {
330                 case SNDRV_NON_LINEAR_PCM_FORMAT_AC3:
331                         /* bit0:6 AC-3:0x01, DTS-I -II -III:11,12,13 */
332                         data_type = burst_info_DATA_TYPE_AC3;
333                         /*
334                         * repetition:AC-3:1536
335                         * DTS-I -II -III:512,1024,2048 EAC3:6144
336                         */
337                         repetition = 1536;
338                         break;
339                 case SNDRV_NON_LINEAR_PCM_FORMAT_DTS_I:
340                         data_type = BURST_INFO_DATA_TYPE_DTS_I;
341                         repetition = 512;
342                         break;
343                 case SNDRV_NON_LINEAR_PCM_FORMAT_EAC3:
344                         data_type = burst_info_DATA_TYPE_EAC3;
345                         repetition = 6144;
346                         break;
347                 default:
348                         return -EINVAL;
349                 }
350                 err_flag = 0x0;
351                 data_len = params_period_size(params) * 2 * 16;
352                 data_info = 0;
353                 bs_num = 0x0;
354                 burst_info = (data_len << 16) | (bs_num << 13) |
355                         (data_info << 8) | (err_flag << 7) | data_type;
356                 writel(burst_info, regs + SPDIF_BURST_INFO);
357                 writel(repetition, regs + SPDIF_REPETTION);
358         }
359         spin_unlock_irqrestore(&spdif->lock, flags);
360
361         return 0;
362 err:
363         spin_unlock_irqrestore(&spdif->lock, flags);
364         return -EINVAL;
365 }
366
367 #ifdef CONFIG_PM
368 static int spdif_suspend(struct snd_soc_dai *cpu_dai)
369 {
370         RK_SPDIF_DBG("spdif:Entered %s\n", __func__);
371
372         return 0;
373 }
374
375 static int spdif_resume(struct snd_soc_dai *cpu_dai)
376 {
377         RK_SPDIF_DBG("spdif:Entered %s\n", __func__);
378
379         return 0;
380 }
381 #else
382 #define spdif_suspend NULL
383 #define spdif_resume NULL
384 #endif
385
386 static struct snd_soc_dai_ops spdif_dai_ops = {
387         .set_sysclk     = spdif_set_syclk,
388         .trigger        = spdif_trigger,
389         .hw_params      = spdif_hw_params,
390 };
391
392 struct snd_soc_dai_driver rockchip_spdif_dai = {
393         .name = "rockchip-spdif",
394         .playback = {
395                 .stream_name = "SPDIF Playback",
396                 .channels_min = 2,
397                 .channels_max = 2,
398                 .rates = (SNDRV_PCM_RATE_32000 |
399                                 SNDRV_PCM_RATE_44100 |
400                                 SNDRV_PCM_RATE_48000 |
401                                 SNDRV_PCM_RATE_96000),
402                 .formats = SNDRV_PCM_FMTBIT_S16_LE|
403                 SNDRV_PCM_FMTBIT_S20_3LE|
404                 SNDRV_PCM_FMTBIT_S24_LE, },
405         .ops = &spdif_dai_ops,
406         .suspend = spdif_suspend,
407         .resume = spdif_resume,
408 };
409
410 static const struct snd_soc_component_driver rockchip_spdif_component = {
411         .name = "rockchip-spdif",
412 };
413
414 static int spdif_probe(struct platform_device *pdev)
415 {
416         /*struct device_node *spdif_np = pdev->dev.of_node;*/
417         struct resource *memregion;
418         struct resource *mem_res;
419         struct rockchip_spdif_info *spdif;
420         int ret;
421
422         RK_SPDIF_DBG("Entered %s\n", __func__);
423
424         spdif = devm_kzalloc(&pdev->dev, sizeof(
425                 struct rockchip_spdif_info), GFP_KERNEL);
426         if (!spdif) {
427                 dev_err(&pdev->dev, "Can't allocate spdif info\n");
428                 return -ENOMEM;
429         }
430         platform_set_drvdata(pdev, spdif);
431
432         spin_lock_init(&spdif->lock);
433
434         /* get spdif register regoin. */
435         mem_res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
436         if (!mem_res) {
437                 dev_err(&pdev->dev, "No memory resource\n");
438                 ret = -ENOENT;
439                 goto err_;
440         }
441         memregion = devm_request_mem_region(&pdev->
442                         dev, mem_res->start,
443                         resource_size(mem_res), "rockchip-spdif");
444         if (!memregion) {
445                 dev_err(&pdev->dev, "Memory region already claimed\n");
446                 ret = -EBUSY;
447                 goto err_;
448         }
449         spdif->regs = devm_ioremap(&pdev->dev, memregion->
450                         start, resource_size(memregion));
451         if (!spdif->regs) {
452                 dev_err(&pdev->dev, "ioremap failed\n");
453                 ret = -ENOMEM;
454                 goto err_;
455         }
456
457         /* get spdif clock and init. */
458         spdif->hclk = devm_clk_get(&pdev->dev, "spdif_hclk");
459         if (IS_ERR(spdif->hclk)) {
460                 dev_err(&pdev->dev, "Can't retrieve spdif hclock\n");
461                 spdif->hclk = NULL;
462         }
463         clk_prepare_enable(spdif->hclk);
464
465         /* get spdif clock and init. */
466         spdif->clk = devm_clk_get(&pdev->dev, "spdif_mclk");
467         if (IS_ERR(spdif->clk)) {
468                 dev_err(&pdev->dev, "Can't retrieve spdif clock\n");
469                 ret = -ENOMEM;
470                 goto err_;
471         }
472         clk_set_rate(spdif->clk, 12288000);
473         clk_set_rate(spdif->clk, 11289600);
474         clk_prepare_enable(spdif->clk);
475
476         spdif->dma_playback.addr = mem_res->start + DATA_OUTBUF;
477         spdif->dma_playback.addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES;
478         spdif->dma_playback.maxburst = 4;
479
480         /* set dev name to driver->name for sound card register */
481         dev_set_name(&pdev->dev, "%s", pdev->dev.driver->name);
482
483         ret = snd_soc_register_component(&pdev->
484                 dev, &rockchip_spdif_component, &rockchip_spdif_dai, 1);
485         if (ret) {
486                 dev_err(&pdev->dev, "Could not register DAI: %d\n", ret);
487                 ret = -ENOMEM;
488                 goto err_;
489         }
490
491         ret = rockchip_pcm_platform_register(&pdev->dev);
492         if (ret) {
493                 dev_err(&pdev->dev, "Could not register PCM: %d\n", ret);
494                 goto err_;
495         }
496
497         RK_SPDIF_DBG("spdif:spdif probe ok!\n");
498
499         return 0;
500
501 err_:
502         platform_set_drvdata(pdev, NULL);
503
504         return ret;
505 }
506
507 static int spdif_remove(struct platform_device *pdev)
508 {
509         RK_SPDIF_DBG("Entered %s\n", __func__);
510
511         rockchip_pcm_platform_unregister(&pdev->dev);
512         snd_soc_unregister_component(&pdev->dev);
513
514         return 0;
515 }
516
517 #ifdef CONFIG_OF
518 static const struct of_device_id exynos_spdif_match[] = {
519         { .compatible = "rockchip-spdif"},
520         {},
521 };
522 MODULE_DEVICE_TABLE(of, exynos_spdif_match);
523 #endif
524
525 static struct platform_driver rockchip_spdif_driver = {
526         .probe  = spdif_probe,
527         .remove = spdif_remove,
528         .driver = {
529                 .name   = "rockchip-spdif",
530                 .owner  = THIS_MODULE,
531                 .of_match_table = of_match_ptr(exynos_spdif_match),
532         },
533 };
534 module_platform_driver(rockchip_spdif_driver);
535
536 MODULE_AUTHOR("Seungwhan Youn, <sw.youn@rockchip.com>");
537 MODULE_DESCRIPTION("rockchip S/PDIF Controller Driver");
538 MODULE_LICENSE("GPL");
539 MODULE_ALIAS("platform:rockchip-spdif");