2 * sound/soc/samsung/idma.c
4 * Copyright (c) 2011 Samsung Electronics Co., Ltd.
5 * http://www.samsung.com
7 * I2S0's Internal DMA driver
9 * This program is free software; you can redistribute it and/or modify it
10 * under the terms of the GNU General Public License as published by the
11 * Free Software Foundation; either version 2 of the License, or (at your
12 * option) any later version.
14 #include <linux/interrupt.h>
15 #include <linux/platform_device.h>
16 #include <linux/dma-mapping.h>
17 #include <linux/slab.h>
18 #include <linux/module.h>
19 #include <sound/pcm.h>
20 #include <sound/pcm_params.h>
21 #include <sound/soc.h>
28 #define ST_RUNNING (1<<0)
29 #define ST_OPENED (1<<1)
31 static const struct snd_pcm_hardware idma_hardware
= {
32 .info
= SNDRV_PCM_INFO_INTERLEAVED
|
33 SNDRV_PCM_INFO_BLOCK_TRANSFER
|
35 SNDRV_PCM_INFO_MMAP_VALID
|
36 SNDRV_PCM_INFO_PAUSE
|
37 SNDRV_PCM_INFO_RESUME
,
38 .formats
= SNDRV_PCM_FMTBIT_S16_LE
|
39 SNDRV_PCM_FMTBIT_U16_LE
|
40 SNDRV_PCM_FMTBIT_S24_LE
|
41 SNDRV_PCM_FMTBIT_U24_LE
|
46 .buffer_bytes_max
= MAX_IDMA_BUFFER
,
47 .period_bytes_min
= 128,
48 .period_bytes_max
= MAX_IDMA_PERIOD
,
62 void (*cb
)(void *dt
, int bytes_xfer
);
65 static struct idma_info
{
68 dma_addr_t lp_tx_addr
;
73 static void idma_getpos(dma_addr_t
*src
)
75 *src
= idma
.lp_tx_addr
+
76 (readl(idma
.regs
+ I2STRNCNT
) & 0xffffff) * 4;
79 static int idma_enqueue(struct snd_pcm_substream
*substream
)
81 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
82 struct idma_ctrl
*prtd
= substream
->runtime
->private_data
;
85 spin_lock(&prtd
->lock
);
86 prtd
->token
= (void *) substream
;
87 spin_unlock(&prtd
->lock
);
89 /* Internal DMA Level0 Interrupt Address */
90 val
= idma
.lp_tx_addr
+ prtd
->periodsz
;
91 writel(val
, idma
.regs
+ I2SLVL0ADDR
);
93 /* Start address0 of I2S internal DMA operation. */
94 val
= idma
.lp_tx_addr
;
95 writel(val
, idma
.regs
+ I2SSTR0
);
98 * Transfer block size for I2S internal DMA.
99 * Should decide transfer size before start dma operation
101 val
= readl(idma
.regs
+ I2SSIZE
);
102 val
&= ~(I2SSIZE_TRNMSK
<< I2SSIZE_SHIFT
);
103 val
|= (((runtime
->dma_bytes
>> 2) &
104 I2SSIZE_TRNMSK
) << I2SSIZE_SHIFT
);
105 writel(val
, idma
.regs
+ I2SSIZE
);
107 val
= readl(idma
.regs
+ I2SAHB
);
108 val
|= AHB_INTENLVL0
;
109 writel(val
, idma
.regs
+ I2SAHB
);
114 static void idma_setcallbk(struct snd_pcm_substream
*substream
,
115 void (*cb
)(void *, int))
117 struct idma_ctrl
*prtd
= substream
->runtime
->private_data
;
119 spin_lock(&prtd
->lock
);
121 spin_unlock(&prtd
->lock
);
124 static void idma_control(int op
)
126 u32 val
= readl(idma
.regs
+ I2SAHB
);
128 spin_lock(&idma
.lock
);
132 val
|= (AHB_INTENLVL0
| AHB_DMAEN
);
135 val
&= ~(AHB_INTENLVL0
| AHB_DMAEN
);
138 spin_unlock(&idma
.lock
);
142 writel(val
, idma
.regs
+ I2SAHB
);
143 spin_unlock(&idma
.lock
);
146 static void idma_done(void *id
, int bytes_xfer
)
148 struct snd_pcm_substream
*substream
= id
;
149 struct idma_ctrl
*prtd
= substream
->runtime
->private_data
;
151 if (prtd
&& (prtd
->state
& ST_RUNNING
))
152 snd_pcm_period_elapsed(substream
);
155 static int idma_hw_params(struct snd_pcm_substream
*substream
,
156 struct snd_pcm_hw_params
*params
)
158 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
159 struct idma_ctrl
*prtd
= substream
->runtime
->private_data
;
160 u32 mod
= readl(idma
.regs
+ I2SMOD
);
161 u32 ahb
= readl(idma
.regs
+ I2SAHB
);
163 ahb
|= (AHB_DMARLD
| AHB_INTMASK
);
165 writel(ahb
, idma
.regs
+ I2SAHB
);
166 writel(mod
, idma
.regs
+ I2SMOD
);
168 snd_pcm_set_runtime_buffer(substream
, &substream
->dma_buffer
);
169 runtime
->dma_bytes
= params_buffer_bytes(params
);
171 prtd
->start
= prtd
->pos
= runtime
->dma_addr
;
172 prtd
->period
= params_periods(params
);
173 prtd
->periodsz
= params_period_bytes(params
);
174 prtd
->end
= runtime
->dma_addr
+ runtime
->dma_bytes
;
176 idma_setcallbk(substream
, idma_done
);
181 static int idma_hw_free(struct snd_pcm_substream
*substream
)
183 snd_pcm_set_runtime_buffer(substream
, NULL
);
188 static int idma_prepare(struct snd_pcm_substream
*substream
)
190 struct idma_ctrl
*prtd
= substream
->runtime
->private_data
;
192 prtd
->pos
= prtd
->start
;
194 /* flush the DMA channel */
195 idma_control(LPAM_DMA_STOP
);
196 idma_enqueue(substream
);
201 static int idma_trigger(struct snd_pcm_substream
*substream
, int cmd
)
203 struct idma_ctrl
*prtd
= substream
->runtime
->private_data
;
206 spin_lock(&prtd
->lock
);
209 case SNDRV_PCM_TRIGGER_RESUME
:
210 case SNDRV_PCM_TRIGGER_START
:
211 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE
:
212 prtd
->state
|= ST_RUNNING
;
213 idma_control(LPAM_DMA_START
);
216 case SNDRV_PCM_TRIGGER_SUSPEND
:
217 case SNDRV_PCM_TRIGGER_STOP
:
218 case SNDRV_PCM_TRIGGER_PAUSE_PUSH
:
219 prtd
->state
&= ~ST_RUNNING
;
220 idma_control(LPAM_DMA_STOP
);
228 spin_unlock(&prtd
->lock
);
233 static snd_pcm_uframes_t
234 idma_pointer(struct snd_pcm_substream
*substream
)
236 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
237 struct idma_ctrl
*prtd
= runtime
->private_data
;
241 spin_lock(&prtd
->lock
);
244 res
= src
- prtd
->start
;
246 spin_unlock(&prtd
->lock
);
248 return bytes_to_frames(substream
->runtime
, res
);
251 static int idma_mmap(struct snd_pcm_substream
*substream
,
252 struct vm_area_struct
*vma
)
254 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
255 unsigned long size
, offset
;
258 /* From snd_pcm_lib_mmap_iomem */
259 vma
->vm_page_prot
= pgprot_noncached(vma
->vm_page_prot
);
260 size
= vma
->vm_end
- vma
->vm_start
;
261 offset
= vma
->vm_pgoff
<< PAGE_SHIFT
;
262 ret
= io_remap_pfn_range(vma
, vma
->vm_start
,
263 (runtime
->dma_addr
+ offset
) >> PAGE_SHIFT
,
264 size
, vma
->vm_page_prot
);
269 static irqreturn_t
iis_irq(int irqno
, void *dev_id
)
271 struct idma_ctrl
*prtd
= (struct idma_ctrl
*)dev_id
;
272 u32 iiscon
, iisahb
, val
, addr
;
274 iisahb
= readl(idma
.regs
+ I2SAHB
);
275 iiscon
= readl(idma
.regs
+ I2SCON
);
277 val
= (iisahb
& AHB_LVL0INT
) ? AHB_CLRLVL0INT
: 0;
281 writel(iisahb
, idma
.regs
+ I2SAHB
);
283 addr
= readl(idma
.regs
+ I2SLVL0ADDR
) - idma
.lp_tx_addr
;
284 addr
+= prtd
->periodsz
;
285 addr
%= (prtd
->end
- prtd
->start
);
286 addr
+= idma
.lp_tx_addr
;
288 writel(addr
, idma
.regs
+ I2SLVL0ADDR
);
291 prtd
->cb(prtd
->token
, prtd
->period
);
297 static int idma_open(struct snd_pcm_substream
*substream
)
299 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
300 struct idma_ctrl
*prtd
;
303 snd_soc_set_runtime_hwparams(substream
, &idma_hardware
);
305 prtd
= kzalloc(sizeof(struct idma_ctrl
), GFP_KERNEL
);
309 ret
= request_irq(idma_irq
, iis_irq
, 0, "i2s", prtd
);
311 pr_err("fail to claim i2s irq , ret = %d\n", ret
);
316 spin_lock_init(&prtd
->lock
);
318 runtime
->private_data
= prtd
;
323 static int idma_close(struct snd_pcm_substream
*substream
)
325 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
326 struct idma_ctrl
*prtd
= runtime
->private_data
;
328 free_irq(idma_irq
, prtd
);
331 pr_err("idma_close called with prtd == NULL\n");
338 static struct snd_pcm_ops idma_ops
= {
341 .ioctl
= snd_pcm_lib_ioctl
,
342 .trigger
= idma_trigger
,
343 .pointer
= idma_pointer
,
345 .hw_params
= idma_hw_params
,
346 .hw_free
= idma_hw_free
,
347 .prepare
= idma_prepare
,
350 static void idma_free(struct snd_pcm
*pcm
)
352 struct snd_pcm_substream
*substream
;
353 struct snd_dma_buffer
*buf
;
355 substream
= pcm
->streams
[SNDRV_PCM_STREAM_PLAYBACK
].substream
;
359 buf
= &substream
->dma_buffer
;
369 static int preallocate_idma_buffer(struct snd_pcm
*pcm
, int stream
)
371 struct snd_pcm_substream
*substream
= pcm
->streams
[stream
].substream
;
372 struct snd_dma_buffer
*buf
= &substream
->dma_buffer
;
374 buf
->dev
.dev
= pcm
->card
->dev
;
375 buf
->private_data
= NULL
;
377 /* Assign PCM buffer pointers */
378 buf
->dev
.type
= SNDRV_DMA_TYPE_CONTINUOUS
;
379 buf
->addr
= idma
.lp_tx_addr
;
380 buf
->bytes
= idma_hardware
.buffer_bytes_max
;
381 buf
->area
= (unsigned char *)ioremap(buf
->addr
, buf
->bytes
);
386 static int idma_new(struct snd_soc_pcm_runtime
*rtd
)
388 struct snd_card
*card
= rtd
->card
->snd_card
;
389 struct snd_pcm
*pcm
= rtd
->pcm
;
392 ret
= dma_coerce_mask_and_coherent(card
->dev
, DMA_BIT_MASK(32));
396 if (pcm
->streams
[SNDRV_PCM_STREAM_PLAYBACK
].substream
) {
397 ret
= preallocate_idma_buffer(pcm
,
398 SNDRV_PCM_STREAM_PLAYBACK
);
404 void idma_reg_addr_init(void __iomem
*regs
, dma_addr_t addr
)
406 spin_lock_init(&idma
.lock
);
408 idma
.lp_tx_addr
= addr
;
410 EXPORT_SYMBOL_GPL(idma_reg_addr_init
);
412 static struct snd_soc_platform_driver asoc_idma_platform
= {
415 .pcm_free
= idma_free
,
418 static int asoc_idma_platform_probe(struct platform_device
*pdev
)
420 idma_irq
= platform_get_irq(pdev
, 0);
424 return snd_soc_register_platform(&pdev
->dev
, &asoc_idma_platform
);
427 static int asoc_idma_platform_remove(struct platform_device
*pdev
)
429 snd_soc_unregister_platform(&pdev
->dev
);
433 static struct platform_driver asoc_idma_driver
= {
435 .name
= "samsung-idma",
436 .owner
= THIS_MODULE
,
439 .probe
= asoc_idma_platform_probe
,
440 .remove
= asoc_idma_platform_remove
,
443 module_platform_driver(asoc_idma_driver
);
445 MODULE_AUTHOR("Jaswinder Singh, <jassisinghbrar@gmail.com>");
446 MODULE_DESCRIPTION("Samsung ASoC IDMA Driver");
447 MODULE_LICENSE("GPL");