diff options
| -rw-r--r-- | sound/soc/Kconfig | 1 | ||||
| -rw-r--r-- | sound/soc/Makefile | 1 | ||||
| -rw-r--r-- | sound/soc/ep93xx/Kconfig | 9 | ||||
| -rw-r--r-- | sound/soc/ep93xx/Makefile | 8 | ||||
| -rw-r--r-- | sound/soc/ep93xx/ep93xx-i2s.c | 487 | ||||
| -rw-r--r-- | sound/soc/ep93xx/ep93xx-i2s.h | 18 | ||||
| -rw-r--r-- | sound/soc/ep93xx/ep93xx-pcm.c | 319 | ||||
| -rw-r--r-- | sound/soc/ep93xx/ep93xx-pcm.h | 22 |
8 files changed, 865 insertions, 0 deletions
diff --git a/sound/soc/Kconfig b/sound/soc/Kconfig index 5e68ac880832..d35f848db6b5 100644 --- a/sound/soc/Kconfig +++ b/sound/soc/Kconfig | |||
| @@ -28,6 +28,7 @@ source "sound/soc/atmel/Kconfig" | |||
| 28 | source "sound/soc/au1x/Kconfig" | 28 | source "sound/soc/au1x/Kconfig" |
| 29 | source "sound/soc/blackfin/Kconfig" | 29 | source "sound/soc/blackfin/Kconfig" |
| 30 | source "sound/soc/davinci/Kconfig" | 30 | source "sound/soc/davinci/Kconfig" |
| 31 | source "sound/soc/ep93xx/Kconfig" | ||
| 31 | source "sound/soc/fsl/Kconfig" | 32 | source "sound/soc/fsl/Kconfig" |
| 32 | source "sound/soc/imx/Kconfig" | 33 | source "sound/soc/imx/Kconfig" |
| 33 | source "sound/soc/nuc900/Kconfig" | 34 | source "sound/soc/nuc900/Kconfig" |
diff --git a/sound/soc/Makefile b/sound/soc/Makefile index 05d5d340968e..97661b747b91 100644 --- a/sound/soc/Makefile +++ b/sound/soc/Makefile | |||
| @@ -6,6 +6,7 @@ obj-$(CONFIG_SND_SOC) += atmel/ | |||
| 6 | obj-$(CONFIG_SND_SOC) += au1x/ | 6 | obj-$(CONFIG_SND_SOC) += au1x/ |
| 7 | obj-$(CONFIG_SND_SOC) += blackfin/ | 7 | obj-$(CONFIG_SND_SOC) += blackfin/ |
| 8 | obj-$(CONFIG_SND_SOC) += davinci/ | 8 | obj-$(CONFIG_SND_SOC) += davinci/ |
| 9 | obj-$(CONFIG_SND_SOC) += ep93xx/ | ||
| 9 | obj-$(CONFIG_SND_SOC) += fsl/ | 10 | obj-$(CONFIG_SND_SOC) += fsl/ |
| 10 | obj-$(CONFIG_SND_SOC) += imx/ | 11 | obj-$(CONFIG_SND_SOC) += imx/ |
| 11 | obj-$(CONFIG_SND_SOC) += nuc900/ | 12 | obj-$(CONFIG_SND_SOC) += nuc900/ |
diff --git a/sound/soc/ep93xx/Kconfig b/sound/soc/ep93xx/Kconfig new file mode 100644 index 000000000000..ba66ac8e1419 --- /dev/null +++ b/sound/soc/ep93xx/Kconfig | |||
| @@ -0,0 +1,9 @@ | |||
| 1 | config SND_EP93XX_SOC | ||
| 2 | tristate "SoC Audio support for the Cirrus Logic EP93xx series" | ||
| 3 | depends on ARCH_EP93XX && SND_SOC | ||
| 4 | help | ||
| 5 | Say Y or M if you want to add support for codecs attached to | ||
| 6 | the EP93xx I2S interface. | ||
| 7 | |||
| 8 | config SND_EP93XX_SOC_I2S | ||
| 9 | tristate | ||
diff --git a/sound/soc/ep93xx/Makefile b/sound/soc/ep93xx/Makefile new file mode 100644 index 000000000000..0239da36cea3 --- /dev/null +++ b/sound/soc/ep93xx/Makefile | |||
| @@ -0,0 +1,8 @@ | |||
| 1 | # EP93xx Platform Support | ||
| 2 | snd-soc-ep93xx-objs := ep93xx-pcm.o | ||
| 3 | snd-soc-ep93xx-i2s-objs := ep93xx-i2s.o | ||
| 4 | |||
| 5 | obj-$(CONFIG_SND_EP93XX_SOC) += snd-soc-ep93xx.o | ||
| 6 | obj-$(CONFIG_SND_EP93XX_SOC_I2S) += snd-soc-ep93xx-i2s.o | ||
| 7 | |||
| 8 | # EP93XX Machine Support | ||
diff --git a/sound/soc/ep93xx/ep93xx-i2s.c b/sound/soc/ep93xx/ep93xx-i2s.c new file mode 100644 index 000000000000..00b946632184 --- /dev/null +++ b/sound/soc/ep93xx/ep93xx-i2s.c | |||
| @@ -0,0 +1,487 @@ | |||
| 1 | /* | ||
| 2 | * linux/sound/soc/ep93xx-i2s.c | ||
| 3 | * EP93xx I2S driver | ||
| 4 | * | ||
| 5 | * Copyright (C) 2010 Ryan Mallon <ryan@bluewatersys.com> | ||
| 6 | * | ||
| 7 | * Based on the original driver by: | ||
| 8 | * Copyright (C) 2007 Chase Douglas <chasedouglas@gmail> | ||
| 9 | * Copyright (C) 2006 Lennert Buytenhek <buytenh@wantstofly.org> | ||
| 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 | |||
| 17 | #include <linux/module.h> | ||
| 18 | #include <linux/init.h> | ||
| 19 | #include <linux/slab.h> | ||
| 20 | #include <linux/clk.h> | ||
| 21 | #include <linux/io.h> | ||
| 22 | |||
| 23 | #include <sound/core.h> | ||
| 24 | #include <sound/pcm.h> | ||
| 25 | #include <sound/pcm_params.h> | ||
| 26 | #include <sound/initval.h> | ||
| 27 | #include <sound/soc.h> | ||
| 28 | |||
| 29 | #include <mach/hardware.h> | ||
| 30 | #include <mach/ep93xx-regs.h> | ||
| 31 | #include <mach/dma.h> | ||
| 32 | |||
| 33 | #include "ep93xx-pcm.h" | ||
| 34 | #include "ep93xx-i2s.h" | ||
| 35 | |||
| 36 | #define EP93XX_I2S_TXCLKCFG 0x00 | ||
| 37 | #define EP93XX_I2S_RXCLKCFG 0x04 | ||
| 38 | #define EP93XX_I2S_GLCTRL 0x0C | ||
| 39 | |||
| 40 | #define EP93XX_I2S_TXLINCTRLDATA 0x28 | ||
| 41 | #define EP93XX_I2S_TXCTRL 0x2C | ||
| 42 | #define EP93XX_I2S_TXWRDLEN 0x30 | ||
| 43 | #define EP93XX_I2S_TX0EN 0x34 | ||
| 44 | |||
| 45 | #define EP93XX_I2S_RXLINCTRLDATA 0x58 | ||
| 46 | #define EP93XX_I2S_RXCTRL 0x5C | ||
| 47 | #define EP93XX_I2S_RXWRDLEN 0x60 | ||
| 48 | #define EP93XX_I2S_RX0EN 0x64 | ||
| 49 | |||
| 50 | #define EP93XX_I2S_WRDLEN_16 (0 << 0) | ||
| 51 | #define EP93XX_I2S_WRDLEN_24 (1 << 0) | ||
| 52 | #define EP93XX_I2S_WRDLEN_32 (2 << 0) | ||
| 53 | |||
| 54 | #define EP93XX_I2S_LINCTRLDATA_R_JUST (1 << 2) /* Right justify */ | ||
| 55 | |||
| 56 | #define EP93XX_I2S_CLKCFG_LRS (1 << 0) /* lrclk polarity */ | ||
| 57 | #define EP93XX_I2S_CLKCFG_CKP (1 << 1) /* Bit clock polarity */ | ||
| 58 | #define EP93XX_I2S_CLKCFG_REL (1 << 2) /* First bit transition */ | ||
| 59 | #define EP93XX_I2S_CLKCFG_MASTER (1 << 3) /* Master mode */ | ||
| 60 | #define EP93XX_I2S_CLKCFG_NBCG (1 << 4) /* Not bit clock gating */ | ||
| 61 | |||
| 62 | struct ep93xx_i2s_info { | ||
| 63 | struct clk *mclk; | ||
| 64 | struct clk *sclk; | ||
| 65 | struct clk *lrclk; | ||
| 66 | struct ep93xx_pcm_dma_params *dma_params; | ||
| 67 | struct resource *mem; | ||
| 68 | void __iomem *regs; | ||
| 69 | }; | ||
| 70 | |||
| 71 | struct ep93xx_pcm_dma_params ep93xx_i2s_dma_params[] = { | ||
| 72 | [SNDRV_PCM_STREAM_PLAYBACK] = { | ||
| 73 | .name = "i2s-pcm-out", | ||
| 74 | .dma_port = EP93XX_DMA_M2P_PORT_I2S1, | ||
| 75 | }, | ||
| 76 | [SNDRV_PCM_STREAM_CAPTURE] = { | ||
| 77 | .name = "i2s-pcm-in", | ||
| 78 | .dma_port = EP93XX_DMA_M2P_PORT_I2S1, | ||
| 79 | }, | ||
| 80 | }; | ||
| 81 | |||
| 82 | static inline void ep93xx_i2s_write_reg(struct ep93xx_i2s_info *info, | ||
| 83 | unsigned reg, unsigned val) | ||
| 84 | { | ||
| 85 | __raw_writel(val, info->regs + reg); | ||
| 86 | } | ||
| 87 | |||
| 88 | static inline unsigned ep93xx_i2s_read_reg(struct ep93xx_i2s_info *info, | ||
| 89 | unsigned reg) | ||
| 90 | { | ||
| 91 | return __raw_readl(info->regs + reg); | ||
| 92 | } | ||
| 93 | |||
| 94 | static void ep93xx_i2s_enable(struct ep93xx_i2s_info *info, int stream) | ||
| 95 | { | ||
| 96 | unsigned base_reg; | ||
| 97 | int i; | ||
| 98 | |||
| 99 | if ((ep93xx_i2s_read_reg(info, EP93XX_I2S_TX0EN) & 0x1) == 0 && | ||
| 100 | (ep93xx_i2s_read_reg(info, EP93XX_I2S_RX0EN) & 0x1) == 0) { | ||
| 101 | /* Enable clocks */ | ||
| 102 | clk_enable(info->mclk); | ||
| 103 | clk_enable(info->sclk); | ||
| 104 | clk_enable(info->lrclk); | ||
| 105 | |||
| 106 | /* Enable i2s */ | ||
| 107 | ep93xx_i2s_write_reg(info, EP93XX_I2S_GLCTRL, 1); | ||
| 108 | } | ||
| 109 | |||
| 110 | /* Enable fifos */ | ||
| 111 | if (stream == SNDRV_PCM_STREAM_PLAYBACK) | ||
| 112 | base_reg = EP93XX_I2S_TX0EN; | ||
| 113 | else | ||
| 114 | base_reg = EP93XX_I2S_RX0EN; | ||
| 115 | for (i = 0; i < 3; i++) | ||
| 116 | ep93xx_i2s_write_reg(info, base_reg + (i * 4), 1); | ||
| 117 | } | ||
| 118 | |||
| 119 | static void ep93xx_i2s_disable(struct ep93xx_i2s_info *info, int stream) | ||
| 120 | { | ||
| 121 | unsigned base_reg; | ||
| 122 | int i; | ||
| 123 | |||
| 124 | /* Disable fifos */ | ||
| 125 | if (stream == SNDRV_PCM_STREAM_PLAYBACK) | ||
| 126 | base_reg = EP93XX_I2S_TX0EN; | ||
| 127 | else | ||
| 128 | base_reg = EP93XX_I2S_RX0EN; | ||
| 129 | for (i = 0; i < 3; i++) | ||
| 130 | ep93xx_i2s_write_reg(info, base_reg + (i * 4), 0); | ||
| 131 | |||
| 132 | if ((ep93xx_i2s_read_reg(info, EP93XX_I2S_TX0EN) & 0x1) == 0 && | ||
| 133 | (ep93xx_i2s_read_reg(info, EP93XX_I2S_RX0EN) & 0x1) == 0) { | ||
| 134 | /* Disable i2s */ | ||
| 135 | ep93xx_i2s_write_reg(info, EP93XX_I2S_GLCTRL, 0); | ||
| 136 | |||
| 137 | /* Disable clocks */ | ||
| 138 | clk_disable(info->lrclk); | ||
| 139 | clk_disable(info->sclk); | ||
| 140 | clk_disable(info->mclk); | ||
| 141 | } | ||
| 142 | } | ||
| 143 | |||
| 144 | static int ep93xx_i2s_startup(struct snd_pcm_substream *substream, | ||
| 145 | struct snd_soc_dai *dai) | ||
| 146 | { | ||
| 147 | struct snd_soc_pcm_runtime *rtd = substream->private_data; | ||
| 148 | struct snd_soc_dai *cpu_dai = rtd->dai->cpu_dai; | ||
| 149 | struct ep93xx_i2s_info *info = rtd->dai->cpu_dai->private_data; | ||
| 150 | |||
| 151 | snd_soc_dai_set_dma_data(cpu_dai, substream, | ||
| 152 | &info->dma_params[substream->stream]); | ||
| 153 | return 0; | ||
| 154 | } | ||
| 155 | |||
| 156 | static void ep93xx_i2s_shutdown(struct snd_pcm_substream *substream, | ||
| 157 | struct snd_soc_dai *dai) | ||
| 158 | { | ||
| 159 | struct snd_soc_pcm_runtime *rtd = substream->private_data; | ||
| 160 | struct ep93xx_i2s_info *info = rtd->dai->cpu_dai->private_data; | ||
| 161 | |||
| 162 | ep93xx_i2s_disable(info, substream->stream); | ||
| 163 | } | ||
| 164 | |||
| 165 | static int ep93xx_i2s_set_dai_fmt(struct snd_soc_dai *cpu_dai, | ||
| 166 | unsigned int fmt) | ||
| 167 | { | ||
| 168 | struct ep93xx_i2s_info *info = cpu_dai->private_data; | ||
| 169 | unsigned int clk_cfg, lin_ctrl; | ||
| 170 | |||
| 171 | clk_cfg = ep93xx_i2s_read_reg(info, EP93XX_I2S_RXCLKCFG); | ||
| 172 | lin_ctrl = ep93xx_i2s_read_reg(info, EP93XX_I2S_RXLINCTRLDATA); | ||
| 173 | |||
| 174 | switch (fmt & SND_SOC_DAIFMT_FORMAT_MASK) { | ||
| 175 | case SND_SOC_DAIFMT_I2S: | ||
| 176 | clk_cfg |= EP93XX_I2S_CLKCFG_REL; | ||
| 177 | lin_ctrl &= ~EP93XX_I2S_LINCTRLDATA_R_JUST; | ||
| 178 | break; | ||
| 179 | |||
| 180 | case SND_SOC_DAIFMT_LEFT_J: | ||
| 181 | clk_cfg &= ~EP93XX_I2S_CLKCFG_REL; | ||
| 182 | lin_ctrl &= ~EP93XX_I2S_LINCTRLDATA_R_JUST; | ||
| 183 | break; | ||
| 184 | |||
| 185 | case SND_SOC_DAIFMT_RIGHT_J: | ||
| 186 | clk_cfg &= ~EP93XX_I2S_CLKCFG_REL; | ||
| 187 | lin_ctrl |= EP93XX_I2S_LINCTRLDATA_R_JUST; | ||
| 188 | break; | ||
| 189 | |||
| 190 | default: | ||
| 191 | return -EINVAL; | ||
| 192 | } | ||
| 193 | |||
| 194 | switch (fmt & SND_SOC_DAIFMT_MASTER_MASK) { | ||
| 195 | case SND_SOC_DAIFMT_CBS_CFS: | ||
| 196 | /* CPU is master */ | ||
| 197 | clk_cfg |= EP93XX_I2S_CLKCFG_MASTER; | ||
| 198 | break; | ||
| 199 | |||
| 200 | case SND_SOC_DAIFMT_CBM_CFM: | ||
| 201 | /* Codec is master */ | ||
| 202 | clk_cfg &= ~EP93XX_I2S_CLKCFG_MASTER; | ||
| 203 | break; | ||
| 204 | |||
| 205 | default: | ||
| 206 | return -EINVAL; | ||
| 207 | } | ||
| 208 | |||
| 209 | switch (fmt & SND_SOC_DAIFMT_INV_MASK) { | ||
| 210 | case SND_SOC_DAIFMT_NB_NF: | ||
| 211 | /* Negative bit clock, lrclk low on left word */ | ||
| 212 | clk_cfg &= ~(EP93XX_I2S_CLKCFG_CKP | EP93XX_I2S_CLKCFG_REL); | ||
| 213 | break; | ||
| 214 | |||
| 215 | case SND_SOC_DAIFMT_NB_IF: | ||
| 216 | /* Negative bit clock, lrclk low on right word */ | ||
| 217 | clk_cfg &= ~EP93XX_I2S_CLKCFG_CKP; | ||
| 218 | clk_cfg |= EP93XX_I2S_CLKCFG_REL; | ||
| 219 | break; | ||
| 220 | |||
| 221 | case SND_SOC_DAIFMT_IB_NF: | ||
| 222 | /* Positive bit clock, lrclk low on left word */ | ||
| 223 | clk_cfg |= EP93XX_I2S_CLKCFG_CKP; | ||
| 224 | clk_cfg &= ~EP93XX_I2S_CLKCFG_REL; | ||
| 225 | break; | ||
| 226 | |||
| 227 | case SND_SOC_DAIFMT_IB_IF: | ||
| 228 | /* Positive bit clock, lrclk low on right word */ | ||
| 229 | clk_cfg |= EP93XX_I2S_CLKCFG_CKP | EP93XX_I2S_CLKCFG_REL; | ||
| 230 | break; | ||
| 231 | } | ||
| 232 | |||
| 233 | /* Write new register values */ | ||
| 234 | ep93xx_i2s_write_reg(info, EP93XX_I2S_RXCLKCFG, clk_cfg); | ||
| 235 | ep93xx_i2s_write_reg(info, EP93XX_I2S_TXCLKCFG, clk_cfg); | ||
| 236 | ep93xx_i2s_write_reg(info, EP93XX_I2S_RXLINCTRLDATA, lin_ctrl); | ||
| 237 | ep93xx_i2s_write_reg(info, EP93XX_I2S_TXLINCTRLDATA, lin_ctrl); | ||
| 238 | return 0; | ||
| 239 | } | ||
| 240 | |||
| 241 | static int ep93xx_i2s_hw_params(struct snd_pcm_substream *substream, | ||
| 242 | struct snd_pcm_hw_params *params, | ||
| 243 | struct snd_soc_dai *dai) | ||
| 244 | { | ||
| 245 | struct snd_soc_pcm_runtime *rtd = substream->private_data; | ||
| 246 | struct snd_soc_dai *cpu_dai = rtd->dai->cpu_dai; | ||
| 247 | struct ep93xx_i2s_info *info = cpu_dai->private_data; | ||
| 248 | unsigned word_len, div, sdiv, lrdiv; | ||
| 249 | int found = 0, err; | ||
| 250 | |||
| 251 | switch (params_format(params)) { | ||
| 252 | case SNDRV_PCM_FORMAT_S16_LE: | ||
| 253 | word_len = EP93XX_I2S_WRDLEN_16; | ||
| 254 | break; | ||
| 255 | |||
| 256 | case SNDRV_PCM_FORMAT_S24_LE: | ||
| 257 | word_len = EP93XX_I2S_WRDLEN_24; | ||
| 258 | break; | ||
| 259 | |||
| 260 | case SNDRV_PCM_FORMAT_S32_LE: | ||
| 261 | word_len = EP93XX_I2S_WRDLEN_32; | ||
| 262 | break; | ||
| 263 | |||
| 264 | default: | ||
| 265 | return -EINVAL; | ||
| 266 | } | ||
| 267 | |||
| 268 | if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) | ||
| 269 | ep93xx_i2s_write_reg(info, EP93XX_I2S_TXWRDLEN, word_len); | ||
| 270 | else | ||
| 271 | ep93xx_i2s_write_reg(info, EP93XX_I2S_RXWRDLEN, word_len); | ||
| 272 | |||
| 273 | /* | ||
| 274 | * Calculate the sdiv (bit clock) and lrdiv (left/right clock) values. | ||
| 275 | * If the lrclk is pulse length is larger than the word size, then the | ||
| 276 | * bit clock will be gated for the unused bits. | ||
| 277 | */ | ||
| 278 | div = (clk_get_rate(info->mclk) / params_rate(params)) * | ||
| 279 | params_channels(params); | ||
| 280 | for (sdiv = 2; sdiv <= 4; sdiv += 2) | ||
| 281 | for (lrdiv = 32; lrdiv <= 128; lrdiv <<= 1) | ||
| 282 | if (sdiv * lrdiv == div) { | ||
| 283 | found = 1; | ||
| 284 | goto out; | ||
| 285 | } | ||
| 286 | out: | ||
| 287 | if (!found) | ||
| 288 | return -EINVAL; | ||
| 289 | |||
| 290 | err = clk_set_rate(info->sclk, clk_get_rate(info->mclk) / sdiv); | ||
| 291 | if (err) | ||
| 292 | return err; | ||
| 293 | |||
| 294 | err = clk_set_rate(info->lrclk, clk_get_rate(info->sclk) / lrdiv); | ||
| 295 | if (err) | ||
| 296 | return err; | ||
| 297 | |||
| 298 | ep93xx_i2s_enable(info, substream->stream); | ||
| 299 | return 0; | ||
| 300 | } | ||
| 301 | |||
| 302 | static int ep93xx_i2s_set_sysclk(struct snd_soc_dai *cpu_dai, int clk_id, | ||
| 303 | unsigned int freq, int dir) | ||
| 304 | { | ||
| 305 | struct ep93xx_i2s_info *info = cpu_dai->private_data; | ||
| 306 | |||
| 307 | if (dir == SND_SOC_CLOCK_IN || clk_id != 0) | ||
| 308 | return -EINVAL; | ||
| 309 | |||
| 310 | return clk_set_rate(info->mclk, freq); | ||
| 311 | } | ||
| 312 | |||
| 313 | #ifdef CONFIG_PM | ||
| 314 | static int ep93xx_i2s_suspend(struct snd_soc_dai *dai) | ||
| 315 | { | ||
| 316 | struct ep93xx_i2s_info *info = dai->private_data; | ||
| 317 | |||
| 318 | if (!dai->active) | ||
| 319 | return; | ||
| 320 | |||
| 321 | ep93xx_i2s_disable(info, SNDRV_PCM_STREAM_PLAYBACK); | ||
| 322 | ep93xx_i2s_disable(info, SNDRV_PCM_STREAM_CAPTURE); | ||
| 323 | } | ||
| 324 | |||
| 325 | static int ep93xx_i2s_resume(struct snd_soc_dai *dai) | ||
| 326 | { | ||
| 327 | struct ep93xx_i2s_info *info = dai->private_data; | ||
| 328 | |||
| 329 | if (!dai->active) | ||
| 330 | return; | ||
| 331 | |||
| 332 | ep93xx_i2s_enable(info, SNDRV_PCM_STREAM_PLAYBACK); | ||
| 333 | ep93xx_i2s_enable(info, SNDRV_PCM_STREAM_CAPTURE); | ||
| 334 | } | ||
| 335 | #else | ||
| 336 | #define ep93xx_i2s_suspend NULL | ||
| 337 | #define ep93xx_i2s_resume NULL | ||
| 338 | #endif | ||
| 339 | |||
| 340 | static struct snd_soc_dai_ops ep93xx_i2s_dai_ops = { | ||
| 341 | .startup = ep93xx_i2s_startup, | ||
| 342 | .shutdown = ep93xx_i2s_shutdown, | ||
| 343 | .hw_params = ep93xx_i2s_hw_params, | ||
| 344 | .set_sysclk = ep93xx_i2s_set_sysclk, | ||
| 345 | .set_fmt = ep93xx_i2s_set_dai_fmt, | ||
| 346 | }; | ||
| 347 | |||
| 348 | #define EP93XX_I2S_FORMATS (SNDRV_PCM_FMTBIT_S16_LE | \ | ||
| 349 | SNDRV_PCM_FMTBIT_S24_LE | \ | ||
| 350 | SNDRV_PCM_FMTBIT_S32_LE) | ||
| 351 | |||
| 352 | struct snd_soc_dai ep93xx_i2s_dai = { | ||
| 353 | .name = "ep93xx-i2s", | ||
| 354 | .id = 0, | ||
| 355 | .symmetric_rates= 1, | ||
| 356 | .suspend = ep93xx_i2s_suspend, | ||
| 357 | .resume = ep93xx_i2s_resume, | ||
| 358 | .playback = { | ||
| 359 | .channels_min = 2, | ||
| 360 | .channels_max = 2, | ||
| 361 | .rates = SNDRV_PCM_RATE_8000_48000, | ||
| 362 | .formats = EP93XX_I2S_FORMATS, | ||
| 363 | }, | ||
| 364 | .capture = { | ||
| 365 | .channels_min = 2, | ||
| 366 | .channels_max = 2, | ||
| 367 | .rates = SNDRV_PCM_RATE_8000_48000, | ||
| 368 | .formats = EP93XX_I2S_FORMATS, | ||
| 369 | }, | ||
| 370 | .ops = &ep93xx_i2s_dai_ops, | ||
| 371 | }; | ||
| 372 | EXPORT_SYMBOL_GPL(ep93xx_i2s_dai); | ||
| 373 | |||
| 374 | static int ep93xx_i2s_probe(struct platform_device *pdev) | ||
| 375 | { | ||
| 376 | struct ep93xx_i2s_info *info; | ||
| 377 | struct resource *res; | ||
| 378 | int err; | ||
| 379 | |||
| 380 | info = kzalloc(sizeof(struct ep93xx_i2s_info), GFP_KERNEL); | ||
| 381 | if (!info) { | ||
| 382 | err = -ENOMEM; | ||
| 383 | goto fail; | ||
| 384 | } | ||
| 385 | |||
| 386 | ep93xx_i2s_dai.dev = &pdev->dev; | ||
| 387 | ep93xx_i2s_dai.private_data = info; | ||
| 388 | info->dma_params = ep93xx_i2s_dma_params; | ||
| 389 | |||
| 390 | res = platform_get_resource(pdev, IORESOURCE_MEM, 0); | ||
| 391 | if (!res) { | ||
| 392 | err = -ENODEV; | ||
| 393 | goto fail; | ||
| 394 | } | ||
| 395 | |||
| 396 | info->mem = request_mem_region(res->start, resource_size(res), | ||
| 397 | pdev->name); | ||
| 398 | if (!info->mem) { | ||
| 399 | err = -EBUSY; | ||
| 400 | goto fail; | ||
| 401 | } | ||
| 402 | |||
| 403 | info->regs = ioremap(info->mem->start, resource_size(info->mem)); | ||
| 404 | if (!info->regs) { | ||
| 405 | err = -ENXIO; | ||
| 406 | goto fail_release_mem; | ||
| 407 | } | ||
| 408 | |||
| 409 | info->mclk = clk_get(&pdev->dev, "mclk"); | ||
| 410 | if (IS_ERR(info->mclk)) { | ||
| 411 | err = PTR_ERR(info->mclk); | ||
| 412 | goto fail_unmap_mem; | ||
| 413 | } | ||
| 414 | |||
| 415 | info->sclk = clk_get(&pdev->dev, "sclk"); | ||
| 416 | if (IS_ERR(info->sclk)) { | ||
| 417 | err = PTR_ERR(info->sclk); | ||
| 418 | goto fail_put_mclk; | ||
| 419 | } | ||
| 420 | |||
| 421 | info->lrclk = clk_get(&pdev->dev, "lrclk"); | ||
| 422 | if (IS_ERR(info->lrclk)) { | ||
| 423 | err = PTR_ERR(info->lrclk); | ||
| 424 | goto fail_put_sclk; | ||
| 425 | } | ||
| 426 | |||
| 427 | err = snd_soc_register_dai(&ep93xx_i2s_dai); | ||
| 428 | if (err) | ||
| 429 | goto fail_put_lrclk; | ||
| 430 | |||
| 431 | return 0; | ||
| 432 | |||
| 433 | fail_put_lrclk: | ||
| 434 | clk_put(info->lrclk); | ||
| 435 | fail_put_sclk: | ||
| 436 | clk_put(info->sclk); | ||
| 437 | fail_put_mclk: | ||
| 438 | clk_put(info->mclk); | ||
| 439 | fail_unmap_mem: | ||
| 440 | iounmap(info->regs); | ||
| 441 | fail_release_mem: | ||
| 442 | release_mem_region(info->mem->start, resource_size(info->mem)); | ||
| 443 | kfree(info); | ||
| 444 | fail: | ||
| 445 | return err; | ||
| 446 | } | ||
| 447 | |||
| 448 | static int __devexit ep93xx_i2s_remove(struct platform_device *pdev) | ||
| 449 | { | ||
| 450 | struct ep93xx_i2s_info *info = ep93xx_i2s_dai.private_data; | ||
| 451 | |||
| 452 | snd_soc_unregister_dai(&ep93xx_i2s_dai); | ||
| 453 | clk_put(info->lrclk); | ||
| 454 | clk_put(info->sclk); | ||
| 455 | clk_put(info->mclk); | ||
| 456 | iounmap(info->regs); | ||
| 457 | release_mem_region(info->mem->start, resource_size(info->mem)); | ||
| 458 | kfree(info); | ||
| 459 | return 0; | ||
| 460 | } | ||
| 461 | |||
| 462 | static struct platform_driver ep93xx_i2s_driver = { | ||
| 463 | .probe = ep93xx_i2s_probe, | ||
| 464 | .remove = __devexit_p(ep93xx_i2s_remove), | ||
| 465 | .driver = { | ||
| 466 | .name = "ep93xx-i2s", | ||
| 467 | .owner = THIS_MODULE, | ||
| 468 | }, | ||
| 469 | }; | ||
| 470 | |||
| 471 | static int __init ep93xx_i2s_init(void) | ||
| 472 | { | ||
| 473 | return platform_driver_register(&ep93xx_i2s_driver); | ||
| 474 | } | ||
| 475 | |||
| 476 | static void __exit ep93xx_i2s_exit(void) | ||
| 477 | { | ||
| 478 | platform_driver_unregister(&ep93xx_i2s_driver); | ||
| 479 | } | ||
| 480 | |||
| 481 | module_init(ep93xx_i2s_init); | ||
| 482 | module_exit(ep93xx_i2s_exit); | ||
| 483 | |||
| 484 | MODULE_ALIAS("platform:ep93xx-i2s"); | ||
| 485 | MODULE_AUTHOR("Ryan Mallon <ryan@bluewatersys.com>"); | ||
| 486 | MODULE_DESCRIPTION("EP93XX I2S driver"); | ||
| 487 | MODULE_LICENSE("GPL"); | ||
diff --git a/sound/soc/ep93xx/ep93xx-i2s.h b/sound/soc/ep93xx/ep93xx-i2s.h new file mode 100644 index 000000000000..3bd4ebfaa1de --- /dev/null +++ b/sound/soc/ep93xx/ep93xx-i2s.h | |||
| @@ -0,0 +1,18 @@ | |||
| 1 | /* | ||
| 2 | * linux/sound/soc/ep93xx-i2s.h | ||
| 3 | * EP93xx I2S driver | ||
| 4 | * | ||
| 5 | * Copyright (C) 2010 Ryan Mallon <ryan@bluewatersys.com> | ||
| 6 | * | ||
| 7 | * This program is free software; you can redistribute it and/or modify | ||
| 8 | * it under the terms of the GNU General Public License version 2 as | ||
| 9 | * published by the Free Software Foundation. | ||
| 10 | * | ||
| 11 | */ | ||
| 12 | |||
| 13 | #ifndef _EP93XX_SND_SOC_I2S_H | ||
| 14 | #define _EP93XX_SND_SOC_I2S_H | ||
| 15 | |||
| 16 | extern struct snd_soc_dai ep93xx_i2s_dai; | ||
| 17 | |||
| 18 | #endif /* _EP93XX_SND_SOC_I2S_H */ | ||
diff --git a/sound/soc/ep93xx/ep93xx-pcm.c b/sound/soc/ep93xx/ep93xx-pcm.c new file mode 100644 index 000000000000..4ba938400791 --- /dev/null +++ b/sound/soc/ep93xx/ep93xx-pcm.c | |||
| @@ -0,0 +1,319 @@ | |||
| 1 | /* | ||
| 2 | * linux/sound/arm/ep93xx-pcm.c - EP93xx ALSA PCM interface | ||
| 3 | * | ||
| 4 | * Copyright (C) 2006 Lennert Buytenhek <buytenh@wantstofly.org> | ||
| 5 | * Copyright (C) 2006 Applied Data Systems | ||
| 6 | * | ||
| 7 | * Rewritten for the SoC audio subsystem (Based on PXA2xx code): | ||
| 8 | * Copyright (c) 2008 Ryan Mallon <ryan@bluewatersys.com> | ||
| 9 | * | ||
| 10 | * This program is free software; you can redistribute it and/or modify | ||
| 11 | * it under the terms of the GNU General Public License version 2 as | ||
| 12 | * published by the Free Software Foundation. | ||
| 13 | */ | ||
| 14 | |||
| 15 | #include <linux/module.h> | ||
| 16 | #include <linux/init.h> | ||
| 17 | #include <linux/device.h> | ||
| 18 | #include <linux/slab.h> | ||
| 19 | #include <linux/dma-mapping.h> | ||
| 20 | |||
| 21 | #include <sound/core.h> | ||
| 22 | #include <sound/pcm.h> | ||
| 23 | #include <sound/pcm_params.h> | ||
| 24 | #include <sound/soc.h> | ||
| 25 | |||
| 26 | #include <mach/dma.h> | ||
| 27 | #include <mach/hardware.h> | ||
| 28 | #include <mach/ep93xx-regs.h> | ||
| 29 | |||
| 30 | #include "ep93xx-pcm.h" | ||
| 31 | |||
| 32 | static const struct snd_pcm_hardware ep93xx_pcm_hardware = { | ||
| 33 | .info = (SNDRV_PCM_INFO_MMAP | | ||
| 34 | SNDRV_PCM_INFO_MMAP_VALID | | ||
| 35 | SNDRV_PCM_INFO_INTERLEAVED | | ||
| 36 | SNDRV_PCM_INFO_BLOCK_TRANSFER), | ||
| 37 | |||
| 38 | .rates = SNDRV_PCM_RATE_8000_48000, | ||
| 39 | .rate_min = SNDRV_PCM_RATE_8000, | ||
| 40 | .rate_max = SNDRV_PCM_RATE_48000, | ||
| 41 | |||
| 42 | .formats = (SNDRV_PCM_FMTBIT_S16_LE | | ||
| 43 | SNDRV_PCM_FMTBIT_S24_LE | | ||
| 44 | SNDRV_PCM_FMTBIT_S32_LE), | ||
| 45 | |||
| 46 | .buffer_bytes_max = 131072, | ||
| 47 | .period_bytes_min = 32, | ||
| 48 | .period_bytes_max = 32768, | ||
| 49 | .periods_min = 1, | ||
| 50 | .periods_max = 32, | ||
| 51 | .fifo_size = 32, | ||
| 52 | }; | ||
| 53 | |||
| 54 | struct ep93xx_runtime_data | ||
| 55 | { | ||
| 56 | struct ep93xx_dma_m2p_client cl; | ||
| 57 | struct ep93xx_pcm_dma_params *params; | ||
| 58 | int pointer_bytes; | ||
| 59 | struct tasklet_struct period_tasklet; | ||
| 60 | int periods; | ||
| 61 | struct ep93xx_dma_buffer buf[32]; | ||
| 62 | }; | ||
| 63 | |||
| 64 | static void ep93xx_pcm_period_elapsed(unsigned long data) | ||
| 65 | { | ||
| 66 | struct snd_pcm_substream *substream = (struct snd_pcm_substream *)data; | ||
| 67 | snd_pcm_period_elapsed(substream); | ||
| 68 | } | ||
| 69 | |||
| 70 | static void ep93xx_pcm_buffer_started(void *cookie, | ||
| 71 | struct ep93xx_dma_buffer *buf) | ||
| 72 | { | ||
| 73 | } | ||
| 74 | |||
| 75 | static void ep93xx_pcm_buffer_finished(void *cookie, | ||
| 76 | struct ep93xx_dma_buffer *buf, | ||
| 77 | int bytes, int error) | ||
| 78 | { | ||
| 79 | struct snd_pcm_substream *substream = cookie; | ||
| 80 | struct ep93xx_runtime_data *rtd = substream->runtime->private_data; | ||
| 81 | |||
| 82 | if (buf == rtd->buf + rtd->periods - 1) | ||
| 83 | rtd->pointer_bytes = 0; | ||
| 84 | else | ||
| 85 | rtd->pointer_bytes += buf->size; | ||
| 86 | |||
| 87 | if (!error) { | ||
| 88 | ep93xx_dma_m2p_submit_recursive(&rtd->cl, buf); | ||
| 89 | tasklet_schedule(&rtd->period_tasklet); | ||
| 90 | } else { | ||
| 91 | snd_pcm_stop(substream, SNDRV_PCM_STATE_XRUN); | ||
| 92 | } | ||
| 93 | } | ||
| 94 | |||
| 95 | static int ep93xx_pcm_open(struct snd_pcm_substream *substream) | ||
| 96 | { | ||
| 97 | struct snd_soc_pcm_runtime *soc_rtd = substream->private_data; | ||
| 98 | struct snd_soc_dai *cpu_dai = soc_rtd->dai->cpu_dai; | ||
| 99 | struct ep93xx_pcm_dma_params *dma_params; | ||
| 100 | struct ep93xx_runtime_data *rtd; | ||
| 101 | int ret; | ||
| 102 | |||
| 103 | dma_params = snd_soc_dai_get_dma_data(cpu_dai, substream); | ||
| 104 | snd_soc_set_runtime_hwparams(substream, &ep93xx_pcm_hardware); | ||
| 105 | |||
| 106 | rtd = kmalloc(sizeof(*rtd), GFP_KERNEL); | ||
| 107 | if (!rtd) | ||
| 108 | return -ENOMEM; | ||
| 109 | |||
| 110 | memset(&rtd->period_tasklet, 0, sizeof(rtd->period_tasklet)); | ||
| 111 | rtd->period_tasklet.func = ep93xx_pcm_period_elapsed; | ||
| 112 | rtd->period_tasklet.data = (unsigned long)substream; | ||
| 113 | |||
| 114 | rtd->cl.name = dma_params->name; | ||
| 115 | rtd->cl.flags = dma_params->dma_port | EP93XX_DMA_M2P_IGNORE_ERROR | | ||
| 116 | ((substream->stream == SNDRV_PCM_STREAM_PLAYBACK) ? | ||
| 117 | EP93XX_DMA_M2P_TX : EP93XX_DMA_M2P_RX); | ||
| 118 | rtd->cl.cookie = substream; | ||
| 119 | rtd->cl.buffer_started = ep93xx_pcm_buffer_started; | ||
| 120 | rtd->cl.buffer_finished = ep93xx_pcm_buffer_finished; | ||
| 121 | ret = ep93xx_dma_m2p_client_register(&rtd->cl); | ||
| 122 | if (ret < 0) { | ||
| 123 | kfree(rtd); | ||
| 124 | return ret; | ||
| 125 | } | ||
| 126 | |||
| 127 | substream->runtime->private_data = rtd; | ||
| 128 | return 0; | ||
| 129 | } | ||
| 130 | |||
| 131 | static int ep93xx_pcm_close(struct snd_pcm_substream *substream) | ||
| 132 | { | ||
| 133 | struct ep93xx_runtime_data *rtd = substream->runtime->private_data; | ||
| 134 | |||
| 135 | ep93xx_dma_m2p_client_unregister(&rtd->cl); | ||
| 136 | kfree(rtd); | ||
| 137 | return 0; | ||
| 138 | } | ||
| 139 | |||
| 140 | static int ep93xx_pcm_hw_params(struct snd_pcm_substream *substream, | ||
| 141 | struct snd_pcm_hw_params *params) | ||
| 142 | { | ||
| 143 | struct snd_pcm_runtime *runtime = substream->runtime; | ||
| 144 | struct ep93xx_runtime_data *rtd = runtime->private_data; | ||
| 145 | size_t totsize = params_buffer_bytes(params); | ||
| 146 | size_t period = params_period_bytes(params); | ||
| 147 | int i; | ||
| 148 | |||
| 149 | snd_pcm_set_runtime_buffer(substream, &substream->dma_buffer); | ||
| 150 | runtime->dma_bytes = totsize; | ||
| 151 | |||
| 152 | rtd->periods = (totsize + period - 1) / period; | ||
| 153 | for (i = 0; i < rtd->periods; i++) { | ||
| 154 | rtd->buf[i].bus_addr = runtime->dma_addr + (i * period); | ||
| 155 | rtd->buf[i].size = period; | ||
| 156 | if ((i + 1) * period > totsize) | ||
| 157 | rtd->buf[i].size = totsize - (i * period); | ||
| 158 | } | ||
| 159 | |||
| 160 | return 0; | ||
| 161 | } | ||
| 162 | |||
| 163 | static int ep93xx_pcm_hw_free(struct snd_pcm_substream *substream) | ||
| 164 | { | ||
| 165 | snd_pcm_set_runtime_buffer(substream, NULL); | ||
| 166 | return 0; | ||
| 167 | } | ||
| 168 | |||
| 169 | static int ep93xx_pcm_trigger(struct snd_pcm_substream *substream, int cmd) | ||
| 170 | { | ||
| 171 | struct ep93xx_runtime_data *rtd = substream->runtime->private_data; | ||
| 172 | int ret; | ||
| 173 | int i; | ||
| 174 | |||
| 175 | ret = 0; | ||
| 176 | switch (cmd) { | ||
| 177 | case SNDRV_PCM_TRIGGER_START: | ||
| 178 | case SNDRV_PCM_TRIGGER_RESUME: | ||
| 179 | case SNDRV_PCM_TRIGGER_PAUSE_RELEASE: | ||
| 180 | rtd->pointer_bytes = 0; | ||
| 181 | for (i = 0; i < rtd->periods; i++) | ||
| 182 | ep93xx_dma_m2p_submit(&rtd->cl, rtd->buf + i); | ||
| 183 | break; | ||
| 184 | |||
| 185 | case SNDRV_PCM_TRIGGER_STOP: | ||
| 186 | case SNDRV_PCM_TRIGGER_SUSPEND: | ||
| 187 | case SNDRV_PCM_TRIGGER_PAUSE_PUSH: | ||
| 188 | ep93xx_dma_m2p_flush(&rtd->cl); | ||
| 189 | break; | ||
| 190 | |||
| 191 | default: | ||
| 192 | ret = -EINVAL; | ||
| 193 | break; | ||
| 194 | } | ||
| 195 | |||
| 196 | return ret; | ||
| 197 | } | ||
| 198 | |||
| 199 | static snd_pcm_uframes_t ep93xx_pcm_pointer(struct snd_pcm_substream *substream) | ||
| 200 | { | ||
| 201 | struct snd_pcm_runtime *runtime = substream->runtime; | ||
| 202 | struct ep93xx_runtime_data *rtd = substream->runtime->private_data; | ||
| 203 | |||
| 204 | /* FIXME: implement this with sub-period granularity */ | ||
| 205 | return bytes_to_frames(runtime, rtd->pointer_bytes); | ||
| 206 | } | ||
| 207 | |||
| 208 | static int ep93xx_pcm_mmap(struct snd_pcm_substream *substream, | ||
| 209 | struct vm_area_struct *vma) | ||
| 210 | { | ||
| 211 | struct snd_pcm_runtime *runtime = substream->runtime; | ||
| 212 | |||
| 213 | return dma_mmap_writecombine(substream->pcm->card->dev, vma, | ||
| 214 | runtime->dma_area, | ||
| 215 | runtime->dma_addr, | ||
| 216 | runtime->dma_bytes); | ||
| 217 | } | ||
| 218 | |||
| 219 | static struct snd_pcm_ops ep93xx_pcm_ops = { | ||
| 220 | .open = ep93xx_pcm_open, | ||
| 221 | .close = ep93xx_pcm_close, | ||
| 222 | .ioctl = snd_pcm_lib_ioctl, | ||
| 223 | .hw_params = ep93xx_pcm_hw_params, | ||
| 224 | .hw_free = ep93xx_pcm_hw_free, | ||
| 225 | .trigger = ep93xx_pcm_trigger, | ||
| 226 | .pointer = ep93xx_pcm_pointer, | ||
| 227 | .mmap = ep93xx_pcm_mmap, | ||
| 228 | }; | ||
| 229 | |||
| 230 | static int ep93xx_pcm_preallocate_dma_buffer(struct snd_pcm *pcm, int stream) | ||
| 231 | { | ||
| 232 | struct snd_pcm_substream *substream = pcm->streams[stream].substream; | ||
| 233 | struct snd_dma_buffer *buf = &substream->dma_buffer; | ||
| 234 | size_t size = ep93xx_pcm_hardware.buffer_bytes_max; | ||
| 235 | |||
| 236 | buf->dev.type = SNDRV_DMA_TYPE_DEV; | ||
| 237 | buf->dev.dev = pcm->card->dev; | ||
| 238 | buf->private_data = NULL; | ||
| 239 | buf->area = dma_alloc_writecombine(pcm->card->dev, size, | ||
| 240 | &buf->addr, GFP_KERNEL); | ||
| 241 | buf->bytes = size; | ||
| 242 | |||
| 243 | return (buf->area == NULL) ? -ENOMEM : 0; | ||
| 244 | } | ||
| 245 | |||
| 246 | static void ep93xx_pcm_free_dma_buffers(struct snd_pcm *pcm) | ||
| 247 | { | ||
| 248 | struct snd_pcm_substream *substream; | ||
| 249 | struct snd_dma_buffer *buf; | ||
| 250 | int stream; | ||
| 251 | |||
| 252 | for (stream = 0; stream < 2; stream++) { | ||
| 253 | substream = pcm->streams[stream].substream; | ||
| 254 | if (!substream) | ||
| 255 | continue; | ||
| 256 | |||
| 257 | buf = &substream->dma_buffer; | ||
| 258 | if (!buf->area) | ||
| 259 | continue; | ||
| 260 | |||
| 261 | dma_free_writecombine(pcm->card->dev, buf->bytes, buf->area, | ||
| 262 | buf->addr); | ||
| 263 | buf->area = NULL; | ||
| 264 | } | ||
| 265 | } | ||
| 266 | |||
| 267 | static u64 ep93xx_pcm_dmamask = 0xffffffff; | ||
| 268 | |||
| 269 | static int ep93xx_pcm_new(struct snd_card *card, struct snd_soc_dai *dai, | ||
| 270 | struct snd_pcm *pcm) | ||
| 271 | { | ||
| 272 | int ret = 0; | ||
| 273 | |||
| 274 | if (!card->dev->dma_mask) | ||
| 275 | card->dev->dma_mask = &ep93xx_pcm_dmamask; | ||
| 276 | if (!card->dev->coherent_dma_mask) | ||
| 277 | card->dev->coherent_dma_mask = 0xffffffff; | ||
| 278 | |||
| 279 | if (dai->playback.channels_min) { | ||
| 280 | ret = ep93xx_pcm_preallocate_dma_buffer(pcm, | ||
| 281 | SNDRV_PCM_STREAM_PLAYBACK); | ||
| 282 | if (ret) | ||
| 283 | return ret; | ||
| 284 | } | ||
| 285 | |||
| 286 | if (dai->capture.channels_min) { | ||
| 287 | ret = ep93xx_pcm_preallocate_dma_buffer(pcm, | ||
| 288 | SNDRV_PCM_STREAM_CAPTURE); | ||
| 289 | if (ret) | ||
| 290 | return ret; | ||
| 291 | } | ||
| 292 | |||
| 293 | return 0; | ||
| 294 | } | ||
| 295 | |||
| 296 | struct snd_soc_platform ep93xx_soc_platform = { | ||
| 297 | .name = "ep93xx-audio", | ||
| 298 | .pcm_ops = &ep93xx_pcm_ops, | ||
| 299 | .pcm_new = &ep93xx_pcm_new, | ||
| 300 | .pcm_free = &ep93xx_pcm_free_dma_buffers, | ||
| 301 | }; | ||
| 302 | EXPORT_SYMBOL_GPL(ep93xx_soc_platform); | ||
| 303 | |||
| 304 | static int __init ep93xx_soc_platform_init(void) | ||
| 305 | { | ||
| 306 | return snd_soc_register_platform(&ep93xx_soc_platform); | ||
| 307 | } | ||
| 308 | |||
| 309 | static void __exit ep93xx_soc_platform_exit(void) | ||
| 310 | { | ||
| 311 | snd_soc_unregister_platform(&ep93xx_soc_platform); | ||
| 312 | } | ||
| 313 | |||
| 314 | module_init(ep93xx_soc_platform_init); | ||
| 315 | module_exit(ep93xx_soc_platform_exit); | ||
| 316 | |||
| 317 | MODULE_AUTHOR("Ryan Mallon <ryan@bluewatersys.com>"); | ||
| 318 | MODULE_DESCRIPTION("EP93xx ALSA PCM interface"); | ||
| 319 | MODULE_LICENSE("GPL"); | ||
diff --git a/sound/soc/ep93xx/ep93xx-pcm.h b/sound/soc/ep93xx/ep93xx-pcm.h new file mode 100644 index 000000000000..4ffdd3f62fe9 --- /dev/null +++ b/sound/soc/ep93xx/ep93xx-pcm.h | |||
| @@ -0,0 +1,22 @@ | |||
| 1 | /* | ||
| 2 | * sound/soc/ep93xx/ep93xx-pcm.h - EP93xx ALSA PCM interface | ||
| 3 | * | ||
| 4 | * Copyright (C) 2006 Lennert Buytenhek <buytenh@wantstofly.org> | ||
| 5 | * Copyright (C) 2006 Applied Data Systems | ||
| 6 | * | ||
| 7 | * This program is free software; you can redistribute it and/or modify | ||
| 8 | * it under the terms of the GNU General Public License version 2 as | ||
| 9 | * published by the Free Software Foundation. | ||
| 10 | */ | ||
| 11 | |||
| 12 | #ifndef _EP93XX_SND_SOC_PCM_H | ||
| 13 | #define _EP93XX_SND_SOC_PCM_H | ||
| 14 | |||
| 15 | struct ep93xx_pcm_dma_params { | ||
| 16 | char *name; | ||
| 17 | int dma_port; | ||
| 18 | }; | ||
| 19 | |||
| 20 | extern struct snd_soc_platform ep93xx_soc_platform; | ||
| 21 | |||
| 22 | #endif /* _EP93XX_SND_SOC_PCM_H */ | ||
