Sascha Hauer | 8380222 | 2009-11-25 16:41:04 +0100 | [diff] [blame] | 1 | /* |
| 2 | * imx-pcm-dma-mx2.c -- ALSA Soc Audio Layer |
| 3 | * |
| 4 | * Copyright 2009 Sascha Hauer <s.hauer@pengutronix.de> |
| 5 | * |
| 6 | * This code is based on code copyrighted by Freescale, |
| 7 | * Liam Girdwood, Javier Martin and probably others. |
| 8 | * |
| 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. |
| 13 | */ |
Sascha Hauer | 8380222 | 2009-11-25 16:41:04 +0100 | [diff] [blame] | 14 | #include <linux/platform_device.h> |
Sascha Hauer | bf974a0 | 2010-11-04 17:05:43 +0100 | [diff] [blame] | 15 | #include <linux/dmaengine.h> |
Viresh Kumar | 258aea7 | 2012-02-01 16:12:19 +0530 | [diff] [blame] | 16 | #include <linux/types.h> |
Sascha Hauer | 8380222 | 2009-11-25 16:41:04 +0100 | [diff] [blame] | 17 | |
| 18 | #include <sound/core.h> |
Sascha Hauer | 8380222 | 2009-11-25 16:41:04 +0100 | [diff] [blame] | 19 | #include <sound/pcm.h> |
Sascha Hauer | 8380222 | 2009-11-25 16:41:04 +0100 | [diff] [blame] | 20 | #include <sound/soc.h> |
Lars-Peter Clausen | c307e8e | 2012-02-22 10:49:09 +0100 | [diff] [blame] | 21 | #include <sound/dmaengine_pcm.h> |
Sascha Hauer | 8380222 | 2009-11-25 16:41:04 +0100 | [diff] [blame] | 22 | |
Shawn Guo | 4762fba | 2012-03-05 22:30:55 +0800 | [diff] [blame] | 23 | #include "imx-pcm.h" |
Sascha Hauer | 8380222 | 2009-11-25 16:41:04 +0100 | [diff] [blame] | 24 | |
Sascha Hauer | bf974a0 | 2010-11-04 17:05:43 +0100 | [diff] [blame] | 25 | static bool filter(struct dma_chan *chan, void *param) |
Sascha Hauer | 8380222 | 2009-11-25 16:41:04 +0100 | [diff] [blame] | 26 | { |
Lars-Peter Clausen | a8909c9 | 2013-04-03 11:06:04 +0200 | [diff] [blame] | 27 | struct snd_dmaengine_dai_dma_data *dma_data = param; |
| 28 | |
Sascha Hauer | bf974a0 | 2010-11-04 17:05:43 +0100 | [diff] [blame] | 29 | if (!imx_dma_is_general_purpose(chan)) |
| 30 | return false; |
| 31 | |
Lars-Peter Clausen | a8909c9 | 2013-04-03 11:06:04 +0200 | [diff] [blame] | 32 | chan->private = dma_data->filter_data; |
Sascha Hauer | bf974a0 | 2010-11-04 17:05:43 +0100 | [diff] [blame] | 33 | |
Lars-Peter Clausen | c307e8e | 2012-02-22 10:49:09 +0100 | [diff] [blame] | 34 | return true; |
Lars-Peter Clausen | 4564d10 | 2012-02-22 10:49:06 +0100 | [diff] [blame] | 35 | } |
| 36 | |
Lars-Peter Clausen | adaa322 | 2013-04-15 19:19:59 +0200 | [diff] [blame] | 37 | static const struct snd_pcm_hardware imx_pcm_hardware = { |
Sascha Hauer | 8380222 | 2009-11-25 16:41:04 +0100 | [diff] [blame] | 38 | .info = SNDRV_PCM_INFO_INTERLEAVED | |
| 39 | SNDRV_PCM_INFO_BLOCK_TRANSFER | |
| 40 | SNDRV_PCM_INFO_MMAP | |
| 41 | SNDRV_PCM_INFO_MMAP_VALID | |
| 42 | SNDRV_PCM_INFO_PAUSE | |
| 43 | SNDRV_PCM_INFO_RESUME, |
| 44 | .formats = SNDRV_PCM_FMTBIT_S16_LE, |
| 45 | .rate_min = 8000, |
| 46 | .channels_min = 2, |
| 47 | .channels_max = 2, |
| 48 | .buffer_bytes_max = IMX_SSI_DMABUF_SIZE, |
| 49 | .period_bytes_min = 128, |
Sascha Hauer | bf974a0 | 2010-11-04 17:05:43 +0100 | [diff] [blame] | 50 | .period_bytes_max = 65535, /* Limited by SDMA engine */ |
Sascha Hauer | 8380222 | 2009-11-25 16:41:04 +0100 | [diff] [blame] | 51 | .periods_min = 2, |
| 52 | .periods_max = 255, |
| 53 | .fifo_size = 0, |
| 54 | }; |
| 55 | |
Lars-Peter Clausen | adaa322 | 2013-04-15 19:19:59 +0200 | [diff] [blame] | 56 | static const struct snd_dmaengine_pcm_config imx_dmaengine_pcm_config = { |
| 57 | .pcm_hardware = &imx_pcm_hardware, |
| 58 | .prepare_slave_config = snd_dmaengine_pcm_prepare_slave_config, |
| 59 | .compat_filter_fn = filter, |
| 60 | .prealloc_buffer_size = IMX_SSI_DMABUF_SIZE, |
Sascha Hauer | 8380222 | 2009-11-25 16:41:04 +0100 | [diff] [blame] | 61 | }; |
| 62 | |
Shawn Guo | 1927661 | 2013-01-28 14:25:43 +0800 | [diff] [blame] | 63 | int imx_pcm_dma_init(struct platform_device *pdev) |
Sascha Hauer | 8380222 | 2009-11-25 16:41:04 +0100 | [diff] [blame] | 64 | { |
Lars-Peter Clausen | adaa322 | 2013-04-15 19:19:59 +0200 | [diff] [blame] | 65 | return snd_dmaengine_pcm_register(&pdev->dev, &imx_dmaengine_pcm_config, |
| 66 | SND_DMAENGINE_PCM_FLAG_NO_RESIDUE | |
| 67 | SND_DMAENGINE_PCM_FLAG_NO_DT | |
| 68 | SND_DMAENGINE_PCM_FLAG_COMPAT); |
| 69 | } |
| 70 | |
| 71 | void imx_pcm_dma_exit(struct platform_device *pdev) |
| 72 | { |
| 73 | snd_dmaengine_pcm_unregister(&pdev->dev); |
Sascha Hauer | 8380222 | 2009-11-25 16:41:04 +0100 | [diff] [blame] | 74 | } |