DMA-API: sound: fix dma mask handling in a lot of drivers
[linux-2.6.git] / sound / soc / samsung / idma.c
blobe4f318fc2f82bb048f5047a6773f1a2c8be40902
1 /*
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>
23 #include "i2s.h"
24 #include "idma.h"
25 #include "dma.h"
26 #include "i2s-regs.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 |
34 SNDRV_PCM_INFO_MMAP |
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 |
42 SNDRV_PCM_FMTBIT_U8 |
43 SNDRV_PCM_FMTBIT_S8,
44 .channels_min = 2,
45 .channels_max = 2,
46 .buffer_bytes_max = MAX_IDMA_BUFFER,
47 .period_bytes_min = 128,
48 .period_bytes_max = MAX_IDMA_PERIOD,
49 .periods_min = 1,
50 .periods_max = 2,
53 struct idma_ctrl {
54 spinlock_t lock;
55 int state;
56 dma_addr_t start;
57 dma_addr_t pos;
58 dma_addr_t end;
59 dma_addr_t period;
60 dma_addr_t periodsz;
61 void *token;
62 void (*cb)(void *dt, int bytes_xfer);
65 static struct idma_info {
66 spinlock_t lock;
67 void __iomem *regs;
68 dma_addr_t lp_tx_addr;
69 } idma;
71 static int idma_irq;
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;
83 u32 val;
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);
111 return 0;
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);
120 prtd->cb = cb;
121 spin_unlock(&prtd->lock);
124 static void idma_control(int op)
126 u32 val = readl(idma.regs + I2SAHB);
128 spin_lock(&idma.lock);
130 switch (op) {
131 case LPAM_DMA_START:
132 val |= (AHB_INTENLVL0 | AHB_DMAEN);
133 break;
134 case LPAM_DMA_STOP:
135 val &= ~(AHB_INTENLVL0 | AHB_DMAEN);
136 break;
137 default:
138 spin_unlock(&idma.lock);
139 return;
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);
164 mod |= MOD_TXS_IDMA;
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);
178 return 0;
181 static int idma_hw_free(struct snd_pcm_substream *substream)
183 snd_pcm_set_runtime_buffer(substream, NULL);
185 return 0;
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);
198 return 0;
201 static int idma_trigger(struct snd_pcm_substream *substream, int cmd)
203 struct idma_ctrl *prtd = substream->runtime->private_data;
204 int ret = 0;
206 spin_lock(&prtd->lock);
208 switch (cmd) {
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);
214 break;
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);
221 break;
223 default:
224 ret = -EINVAL;
225 break;
228 spin_unlock(&prtd->lock);
230 return ret;
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;
238 dma_addr_t src;
239 unsigned long res;
241 spin_lock(&prtd->lock);
243 idma_getpos(&src);
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;
256 int ret;
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);
266 return ret;
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;
279 if (val) {
280 iisahb |= val;
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);
290 if (prtd->cb)
291 prtd->cb(prtd->token, prtd->period);
294 return IRQ_HANDLED;
297 static int idma_open(struct snd_pcm_substream *substream)
299 struct snd_pcm_runtime *runtime = substream->runtime;
300 struct idma_ctrl *prtd;
301 int ret;
303 snd_soc_set_runtime_hwparams(substream, &idma_hardware);
305 prtd = kzalloc(sizeof(struct idma_ctrl), GFP_KERNEL);
306 if (prtd == NULL)
307 return -ENOMEM;
309 ret = request_irq(idma_irq, iis_irq, 0, "i2s", prtd);
310 if (ret < 0) {
311 pr_err("fail to claim i2s irq , ret = %d\n", ret);
312 kfree(prtd);
313 return ret;
316 spin_lock_init(&prtd->lock);
318 runtime->private_data = prtd;
320 return 0;
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);
330 if (!prtd)
331 pr_err("idma_close called with prtd == NULL\n");
333 kfree(prtd);
335 return 0;
338 static struct snd_pcm_ops idma_ops = {
339 .open = idma_open,
340 .close = idma_close,
341 .ioctl = snd_pcm_lib_ioctl,
342 .trigger = idma_trigger,
343 .pointer = idma_pointer,
344 .mmap = idma_mmap,
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;
356 if (!substream)
357 return;
359 buf = &substream->dma_buffer;
360 if (!buf->area)
361 return;
363 iounmap(buf->area);
365 buf->area = NULL;
366 buf->addr = 0;
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);
383 return 0;
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;
390 int ret;
392 ret = dma_coerce_mask_and_coherent(card->dev, DMA_BIT_MASK(32));
393 if (ret)
394 return ret;
396 if (pcm->streams[SNDRV_PCM_STREAM_PLAYBACK].substream) {
397 ret = preallocate_idma_buffer(pcm,
398 SNDRV_PCM_STREAM_PLAYBACK);
401 return ret;
404 void idma_reg_addr_init(void __iomem *regs, dma_addr_t addr)
406 spin_lock_init(&idma.lock);
407 idma.regs = regs;
408 idma.lp_tx_addr = addr;
410 EXPORT_SYMBOL_GPL(idma_reg_addr_init);
412 static struct snd_soc_platform_driver asoc_idma_platform = {
413 .ops = &idma_ops,
414 .pcm_new = idma_new,
415 .pcm_free = idma_free,
418 static int asoc_idma_platform_probe(struct platform_device *pdev)
420 idma_irq = platform_get_irq(pdev, 0);
421 if (idma_irq < 0)
422 return idma_irq;
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);
430 return 0;
433 static struct platform_driver asoc_idma_driver = {
434 .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");