Graeme Gregory | 050f05e | 2007-05-14 11:02:51 +0200 | [diff] [blame] | 1 | /* |
| 2 | * s3c2443-ac97.c -- ALSA Soc Audio Layer |
| 3 | * |
| 4 | * (c) 2007 Wolfson Microelectronics PLC. |
| 5 | * Graeme Gregory graeme.gregory@wolfsonmicro.com or linux@wolfsonmicro.com |
| 6 | * |
| 7 | * Copyright (C) 2005, Sean Choi <sh428.choi@samsung.com> |
| 8 | * All rights reserved. |
| 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. |
Graeme Gregory | 050f05e | 2007-05-14 11:02:51 +0200 | [diff] [blame] | 13 | */ |
| 14 | |
| 15 | #include <linux/init.h> |
| 16 | #include <linux/module.h> |
| 17 | #include <linux/platform_device.h> |
| 18 | #include <linux/interrupt.h> |
Mark Brown | ccfdd6c | 2008-04-30 17:19:07 +0200 | [diff] [blame] | 19 | #include <linux/io.h> |
Graeme Gregory | 050f05e | 2007-05-14 11:02:51 +0200 | [diff] [blame] | 20 | #include <linux/wait.h> |
| 21 | #include <linux/delay.h> |
| 22 | #include <linux/clk.h> |
| 23 | |
Graeme Gregory | 050f05e | 2007-05-14 11:02:51 +0200 | [diff] [blame] | 24 | #include <sound/core.h> |
| 25 | #include <sound/pcm.h> |
| 26 | #include <sound/ac97_codec.h> |
| 27 | #include <sound/initval.h> |
| 28 | #include <sound/soc.h> |
| 29 | |
Russell King | a09e64f | 2008-08-05 16:14:15 +0100 | [diff] [blame] | 30 | #include <mach/hardware.h> |
Krzysztof Helt | 1700139 | 2007-10-19 08:23:00 +0200 | [diff] [blame] | 31 | #include <asm/plat-s3c/regs-ac97.h> |
Russell King | a09e64f | 2008-08-05 16:14:15 +0100 | [diff] [blame] | 32 | #include <mach/regs-gpio.h> |
| 33 | #include <mach/regs-clock.h> |
| 34 | #include <mach/audio.h> |
Graeme Gregory | 050f05e | 2007-05-14 11:02:51 +0200 | [diff] [blame] | 35 | #include <asm/dma.h> |
Russell King | a09e64f | 2008-08-05 16:14:15 +0100 | [diff] [blame] | 36 | #include <mach/dma.h> |
Graeme Gregory | 050f05e | 2007-05-14 11:02:51 +0200 | [diff] [blame] | 37 | |
| 38 | #include "s3c24xx-pcm.h" |
| 39 | #include "s3c24xx-ac97.h" |
| 40 | |
| 41 | struct s3c24xx_ac97_info { |
| 42 | void __iomem *regs; |
| 43 | struct clk *ac97_clk; |
| 44 | }; |
| 45 | static struct s3c24xx_ac97_info s3c24xx_ac97; |
| 46 | |
Mark Brown | ccfdd6c | 2008-04-30 17:19:07 +0200 | [diff] [blame] | 47 | static DECLARE_COMPLETION(ac97_completion); |
Graeme Gregory | 050f05e | 2007-05-14 11:02:51 +0200 | [diff] [blame] | 48 | static u32 codec_ready; |
| 49 | static DECLARE_MUTEX(ac97_mutex); |
| 50 | |
| 51 | static unsigned short s3c2443_ac97_read(struct snd_ac97 *ac97, |
| 52 | unsigned short reg) |
| 53 | { |
| 54 | u32 ac_glbctrl; |
| 55 | u32 ac_codec_cmd; |
| 56 | u32 stat, addr, data; |
| 57 | |
| 58 | down(&ac97_mutex); |
| 59 | |
| 60 | codec_ready = S3C_AC97_GLBSTAT_CODECREADY; |
| 61 | ac_codec_cmd = readl(s3c24xx_ac97.regs + S3C_AC97_CODEC_CMD); |
| 62 | ac_codec_cmd = S3C_AC97_CODEC_CMD_READ | AC_CMD_ADDR(reg); |
| 63 | writel(ac_codec_cmd, s3c24xx_ac97.regs + S3C_AC97_CODEC_CMD); |
| 64 | |
| 65 | udelay(50); |
| 66 | |
| 67 | ac_glbctrl = readl(s3c24xx_ac97.regs + S3C_AC97_GLBCTRL); |
| 68 | ac_glbctrl |= S3C_AC97_GLBCTRL_CODECREADYIE; |
| 69 | writel(ac_glbctrl, s3c24xx_ac97.regs + S3C_AC97_GLBCTRL); |
| 70 | |
| 71 | wait_for_completion(&ac97_completion); |
| 72 | |
| 73 | stat = readl(s3c24xx_ac97.regs + S3C_AC97_STAT); |
| 74 | addr = (stat >> 16) & 0x7f; |
| 75 | data = (stat & 0xffff); |
| 76 | |
| 77 | if (addr != reg) |
| 78 | printk(KERN_ERR "s3c24xx-ac97: req addr = %02x," |
| 79 | " rep addr = %02x\n", reg, addr); |
| 80 | |
| 81 | up(&ac97_mutex); |
| 82 | |
| 83 | return (unsigned short)data; |
| 84 | } |
| 85 | |
| 86 | static void s3c2443_ac97_write(struct snd_ac97 *ac97, unsigned short reg, |
| 87 | unsigned short val) |
| 88 | { |
| 89 | u32 ac_glbctrl; |
| 90 | u32 ac_codec_cmd; |
| 91 | |
| 92 | down(&ac97_mutex); |
| 93 | |
| 94 | codec_ready = S3C_AC97_GLBSTAT_CODECREADY; |
| 95 | ac_codec_cmd = readl(s3c24xx_ac97.regs + S3C_AC97_CODEC_CMD); |
| 96 | ac_codec_cmd = AC_CMD_ADDR(reg) | AC_CMD_DATA(val); |
| 97 | writel(ac_codec_cmd, s3c24xx_ac97.regs + S3C_AC97_CODEC_CMD); |
| 98 | |
| 99 | udelay(50); |
| 100 | |
| 101 | ac_glbctrl = readl(s3c24xx_ac97.regs + S3C_AC97_GLBCTRL); |
| 102 | ac_glbctrl |= S3C_AC97_GLBCTRL_CODECREADYIE; |
| 103 | writel(ac_glbctrl, s3c24xx_ac97.regs + S3C_AC97_GLBCTRL); |
| 104 | |
| 105 | wait_for_completion(&ac97_completion); |
| 106 | |
| 107 | ac_codec_cmd = readl(s3c24xx_ac97.regs + S3C_AC97_CODEC_CMD); |
| 108 | ac_codec_cmd |= S3C_AC97_CODEC_CMD_READ; |
| 109 | writel(ac_codec_cmd, s3c24xx_ac97.regs + S3C_AC97_CODEC_CMD); |
| 110 | |
| 111 | up(&ac97_mutex); |
| 112 | |
| 113 | } |
| 114 | |
| 115 | static void s3c2443_ac97_warm_reset(struct snd_ac97 *ac97) |
| 116 | { |
| 117 | u32 ac_glbctrl; |
| 118 | |
| 119 | ac_glbctrl = readl(s3c24xx_ac97.regs + S3C_AC97_GLBCTRL); |
| 120 | ac_glbctrl = S3C_AC97_GLBCTRL_WARMRESET; |
| 121 | writel(ac_glbctrl, s3c24xx_ac97.regs + S3C_AC97_GLBCTRL); |
| 122 | msleep(1); |
| 123 | |
| 124 | ac_glbctrl = 0; |
| 125 | writel(ac_glbctrl, s3c24xx_ac97.regs + S3C_AC97_GLBCTRL); |
| 126 | msleep(1); |
| 127 | } |
| 128 | |
| 129 | static void s3c2443_ac97_cold_reset(struct snd_ac97 *ac97) |
| 130 | { |
| 131 | u32 ac_glbctrl; |
| 132 | |
| 133 | ac_glbctrl = readl(s3c24xx_ac97.regs + S3C_AC97_GLBCTRL); |
| 134 | ac_glbctrl = S3C_AC97_GLBCTRL_COLDRESET; |
| 135 | writel(ac_glbctrl, s3c24xx_ac97.regs + S3C_AC97_GLBCTRL); |
| 136 | msleep(1); |
| 137 | |
| 138 | ac_glbctrl = 0; |
| 139 | writel(ac_glbctrl, s3c24xx_ac97.regs + S3C_AC97_GLBCTRL); |
| 140 | msleep(1); |
| 141 | |
| 142 | ac_glbctrl = readl(s3c24xx_ac97.regs + S3C_AC97_GLBCTRL); |
| 143 | ac_glbctrl = S3C_AC97_GLBCTRL_ACLINKON; |
| 144 | writel(ac_glbctrl, s3c24xx_ac97.regs + S3C_AC97_GLBCTRL); |
| 145 | msleep(1); |
| 146 | |
| 147 | ac_glbctrl |= S3C_AC97_GLBCTRL_TRANSFERDATAENABLE; |
| 148 | writel(ac_glbctrl, s3c24xx_ac97.regs + S3C_AC97_GLBCTRL); |
| 149 | msleep(1); |
| 150 | |
| 151 | ac_glbctrl |= S3C_AC97_GLBCTRL_PCMOUTTM_DMA | |
| 152 | S3C_AC97_GLBCTRL_PCMINTM_DMA | S3C_AC97_GLBCTRL_MICINTM_DMA; |
| 153 | writel(ac_glbctrl, s3c24xx_ac97.regs + S3C_AC97_GLBCTRL); |
| 154 | } |
| 155 | |
| 156 | static irqreturn_t s3c2443_ac97_irq(int irq, void *dev_id) |
| 157 | { |
| 158 | int status; |
| 159 | u32 ac_glbctrl; |
| 160 | |
| 161 | status = readl(s3c24xx_ac97.regs + S3C_AC97_GLBSTAT) & codec_ready; |
| 162 | |
| 163 | if (status) { |
| 164 | ac_glbctrl = readl(s3c24xx_ac97.regs + S3C_AC97_GLBCTRL); |
| 165 | ac_glbctrl &= ~S3C_AC97_GLBCTRL_CODECREADYIE; |
| 166 | writel(ac_glbctrl, s3c24xx_ac97.regs + S3C_AC97_GLBCTRL); |
| 167 | complete(&ac97_completion); |
| 168 | } |
| 169 | return IRQ_HANDLED; |
| 170 | } |
| 171 | |
| 172 | struct snd_ac97_bus_ops soc_ac97_ops = { |
| 173 | .read = s3c2443_ac97_read, |
| 174 | .write = s3c2443_ac97_write, |
| 175 | .warm_reset = s3c2443_ac97_warm_reset, |
| 176 | .reset = s3c2443_ac97_cold_reset, |
| 177 | }; |
| 178 | |
| 179 | static struct s3c2410_dma_client s3c2443_dma_client_out = { |
| 180 | .name = "AC97 PCM Stereo out" |
| 181 | }; |
| 182 | |
| 183 | static struct s3c2410_dma_client s3c2443_dma_client_in = { |
| 184 | .name = "AC97 PCM Stereo in" |
| 185 | }; |
| 186 | |
| 187 | static struct s3c2410_dma_client s3c2443_dma_client_micin = { |
| 188 | .name = "AC97 Mic Mono in" |
| 189 | }; |
| 190 | |
| 191 | static struct s3c24xx_pcm_dma_params s3c2443_ac97_pcm_stereo_out = { |
| 192 | .client = &s3c2443_dma_client_out, |
| 193 | .channel = DMACH_PCM_OUT, |
| 194 | .dma_addr = S3C2440_PA_AC97 + S3C_AC97_PCM_DATA, |
| 195 | .dma_size = 4, |
| 196 | }; |
| 197 | |
| 198 | static struct s3c24xx_pcm_dma_params s3c2443_ac97_pcm_stereo_in = { |
| 199 | .client = &s3c2443_dma_client_in, |
| 200 | .channel = DMACH_PCM_IN, |
| 201 | .dma_addr = S3C2440_PA_AC97 + S3C_AC97_PCM_DATA, |
| 202 | .dma_size = 4, |
| 203 | }; |
| 204 | |
| 205 | static struct s3c24xx_pcm_dma_params s3c2443_ac97_mic_mono_in = { |
| 206 | .client = &s3c2443_dma_client_micin, |
| 207 | .channel = DMACH_MIC_IN, |
| 208 | .dma_addr = S3C2440_PA_AC97 + S3C_AC97_MIC_DATA, |
| 209 | .dma_size = 4, |
| 210 | }; |
| 211 | |
Mark Brown | bdb9287 | 2008-06-11 13:47:10 +0100 | [diff] [blame] | 212 | static int s3c2443_ac97_probe(struct platform_device *pdev, |
Liam Girdwood | 1992a6f | 2008-07-07 16:08:24 +0100 | [diff] [blame] | 213 | struct snd_soc_dai *dai) |
Graeme Gregory | 050f05e | 2007-05-14 11:02:51 +0200 | [diff] [blame] | 214 | { |
| 215 | int ret; |
| 216 | u32 ac_glbctrl; |
| 217 | |
| 218 | s3c24xx_ac97.regs = ioremap(S3C2440_PA_AC97, 0x100); |
| 219 | if (s3c24xx_ac97.regs == NULL) |
| 220 | return -ENXIO; |
| 221 | |
| 222 | s3c24xx_ac97.ac97_clk = clk_get(&pdev->dev, "ac97"); |
| 223 | if (s3c24xx_ac97.ac97_clk == NULL) { |
| 224 | printk(KERN_ERR "s3c2443-ac97 failed to get ac97_clock\n"); |
| 225 | iounmap(s3c24xx_ac97.regs); |
| 226 | return -ENODEV; |
| 227 | } |
| 228 | clk_enable(s3c24xx_ac97.ac97_clk); |
| 229 | |
| 230 | s3c2410_gpio_cfgpin(S3C2410_GPE0, S3C2443_GPE0_AC_nRESET); |
| 231 | s3c2410_gpio_cfgpin(S3C2410_GPE1, S3C2443_GPE1_AC_SYNC); |
| 232 | s3c2410_gpio_cfgpin(S3C2410_GPE2, S3C2443_GPE2_AC_BITCLK); |
| 233 | s3c2410_gpio_cfgpin(S3C2410_GPE3, S3C2443_GPE3_AC_SDI); |
| 234 | s3c2410_gpio_cfgpin(S3C2410_GPE4, S3C2443_GPE4_AC_SDO); |
| 235 | |
| 236 | ac_glbctrl = readl(s3c24xx_ac97.regs + S3C_AC97_GLBCTRL); |
| 237 | ac_glbctrl = S3C_AC97_GLBCTRL_COLDRESET; |
| 238 | writel(ac_glbctrl, s3c24xx_ac97.regs + S3C_AC97_GLBCTRL); |
| 239 | msleep(1); |
| 240 | |
| 241 | ac_glbctrl = 0; |
| 242 | writel(ac_glbctrl, s3c24xx_ac97.regs + S3C_AC97_GLBCTRL); |
| 243 | msleep(1); |
| 244 | |
| 245 | ac_glbctrl = readl(s3c24xx_ac97.regs + S3C_AC97_GLBCTRL); |
| 246 | ac_glbctrl = S3C_AC97_GLBCTRL_ACLINKON; |
| 247 | writel(ac_glbctrl, s3c24xx_ac97.regs + S3C_AC97_GLBCTRL); |
| 248 | msleep(1); |
| 249 | |
| 250 | ac_glbctrl |= S3C_AC97_GLBCTRL_TRANSFERDATAENABLE; |
| 251 | writel(ac_glbctrl, s3c24xx_ac97.regs + S3C_AC97_GLBCTRL); |
| 252 | |
Ivan Kuten | 040956f | 2007-10-26 14:53:47 +0200 | [diff] [blame] | 253 | ret = request_irq(IRQ_S3C244x_AC97, s3c2443_ac97_irq, |
Graeme Gregory | 050f05e | 2007-05-14 11:02:51 +0200 | [diff] [blame] | 254 | IRQF_DISABLED, "AC97", NULL); |
| 255 | if (ret < 0) { |
| 256 | printk(KERN_ERR "s3c24xx-ac97: interrupt request failed.\n"); |
| 257 | clk_disable(s3c24xx_ac97.ac97_clk); |
| 258 | clk_put(s3c24xx_ac97.ac97_clk); |
| 259 | iounmap(s3c24xx_ac97.regs); |
| 260 | } |
| 261 | return ret; |
| 262 | } |
| 263 | |
Mark Brown | bdb9287 | 2008-06-11 13:47:10 +0100 | [diff] [blame] | 264 | static void s3c2443_ac97_remove(struct platform_device *pdev, |
Liam Girdwood | 1992a6f | 2008-07-07 16:08:24 +0100 | [diff] [blame] | 265 | struct snd_soc_dai *dai) |
Graeme Gregory | 050f05e | 2007-05-14 11:02:51 +0200 | [diff] [blame] | 266 | { |
Ivan Kuten | 040956f | 2007-10-26 14:53:47 +0200 | [diff] [blame] | 267 | free_irq(IRQ_S3C244x_AC97, NULL); |
Graeme Gregory | 050f05e | 2007-05-14 11:02:51 +0200 | [diff] [blame] | 268 | clk_disable(s3c24xx_ac97.ac97_clk); |
| 269 | clk_put(s3c24xx_ac97.ac97_clk); |
| 270 | iounmap(s3c24xx_ac97.regs); |
| 271 | } |
| 272 | |
| 273 | static int s3c2443_ac97_hw_params(struct snd_pcm_substream *substream, |
Mark Brown | dee89c4 | 2008-11-18 22:11:38 +0000 | [diff] [blame] | 274 | struct snd_pcm_hw_params *params, |
| 275 | struct snd_soc_dai *dai) |
Graeme Gregory | 050f05e | 2007-05-14 11:02:51 +0200 | [diff] [blame] | 276 | { |
| 277 | struct snd_soc_pcm_runtime *rtd = substream->private_data; |
Liam Girdwood | 1992a6f | 2008-07-07 16:08:24 +0100 | [diff] [blame] | 278 | struct snd_soc_dai *cpu_dai = rtd->dai->cpu_dai; |
Graeme Gregory | 050f05e | 2007-05-14 11:02:51 +0200 | [diff] [blame] | 279 | |
| 280 | if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) |
| 281 | cpu_dai->dma_data = &s3c2443_ac97_pcm_stereo_out; |
| 282 | else |
| 283 | cpu_dai->dma_data = &s3c2443_ac97_pcm_stereo_in; |
| 284 | |
| 285 | return 0; |
| 286 | } |
| 287 | |
| 288 | static int s3c2443_ac97_trigger(struct snd_pcm_substream *substream, int cmd) |
| 289 | { |
| 290 | u32 ac_glbctrl; |
| 291 | |
| 292 | ac_glbctrl = readl(s3c24xx_ac97.regs + S3C_AC97_GLBCTRL); |
Mark Brown | ccfdd6c | 2008-04-30 17:19:07 +0200 | [diff] [blame] | 293 | switch (cmd) { |
Graeme Gregory | 050f05e | 2007-05-14 11:02:51 +0200 | [diff] [blame] | 294 | case SNDRV_PCM_TRIGGER_START: |
| 295 | case SNDRV_PCM_TRIGGER_RESUME: |
| 296 | case SNDRV_PCM_TRIGGER_PAUSE_RELEASE: |
| 297 | if (substream->stream == SNDRV_PCM_STREAM_CAPTURE) |
| 298 | ac_glbctrl |= S3C_AC97_GLBCTRL_PCMINTM_DMA; |
| 299 | else |
| 300 | ac_glbctrl |= S3C_AC97_GLBCTRL_PCMOUTTM_DMA; |
| 301 | break; |
| 302 | case SNDRV_PCM_TRIGGER_STOP: |
| 303 | case SNDRV_PCM_TRIGGER_SUSPEND: |
| 304 | case SNDRV_PCM_TRIGGER_PAUSE_PUSH: |
| 305 | if (substream->stream == SNDRV_PCM_STREAM_CAPTURE) |
| 306 | ac_glbctrl &= ~S3C_AC97_GLBCTRL_PCMINTM_MASK; |
| 307 | else |
| 308 | ac_glbctrl &= ~S3C_AC97_GLBCTRL_PCMOUTTM_MASK; |
| 309 | break; |
| 310 | } |
| 311 | writel(ac_glbctrl, s3c24xx_ac97.regs + S3C_AC97_GLBCTRL); |
| 312 | |
| 313 | return 0; |
| 314 | } |
| 315 | |
| 316 | static int s3c2443_ac97_hw_mic_params(struct snd_pcm_substream *substream, |
Mark Brown | dee89c4 | 2008-11-18 22:11:38 +0000 | [diff] [blame] | 317 | struct snd_pcm_hw_params *params, |
| 318 | struct snd_soc_dai *dai) |
Graeme Gregory | 050f05e | 2007-05-14 11:02:51 +0200 | [diff] [blame] | 319 | { |
| 320 | struct snd_soc_pcm_runtime *rtd = substream->private_data; |
Liam Girdwood | 1992a6f | 2008-07-07 16:08:24 +0100 | [diff] [blame] | 321 | struct snd_soc_dai *cpu_dai = rtd->dai->cpu_dai; |
Graeme Gregory | 050f05e | 2007-05-14 11:02:51 +0200 | [diff] [blame] | 322 | |
| 323 | if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) |
| 324 | return -ENODEV; |
| 325 | else |
| 326 | cpu_dai->dma_data = &s3c2443_ac97_mic_mono_in; |
| 327 | |
| 328 | return 0; |
| 329 | } |
| 330 | |
| 331 | static int s3c2443_ac97_mic_trigger(struct snd_pcm_substream *substream, |
Mark Brown | dee89c4 | 2008-11-18 22:11:38 +0000 | [diff] [blame] | 332 | int cmd, struct snd_soc_dai *dai) |
Graeme Gregory | 050f05e | 2007-05-14 11:02:51 +0200 | [diff] [blame] | 333 | { |
| 334 | u32 ac_glbctrl; |
| 335 | |
| 336 | ac_glbctrl = readl(s3c24xx_ac97.regs + S3C_AC97_GLBCTRL); |
Mark Brown | ccfdd6c | 2008-04-30 17:19:07 +0200 | [diff] [blame] | 337 | switch (cmd) { |
Graeme Gregory | 050f05e | 2007-05-14 11:02:51 +0200 | [diff] [blame] | 338 | case SNDRV_PCM_TRIGGER_START: |
| 339 | case SNDRV_PCM_TRIGGER_RESUME: |
| 340 | case SNDRV_PCM_TRIGGER_PAUSE_RELEASE: |
| 341 | ac_glbctrl |= S3C_AC97_GLBCTRL_PCMINTM_DMA; |
| 342 | break; |
| 343 | case SNDRV_PCM_TRIGGER_STOP: |
| 344 | case SNDRV_PCM_TRIGGER_SUSPEND: |
| 345 | case SNDRV_PCM_TRIGGER_PAUSE_PUSH: |
| 346 | ac_glbctrl &= ~S3C_AC97_GLBCTRL_PCMINTM_MASK; |
| 347 | } |
| 348 | writel(ac_glbctrl, s3c24xx_ac97.regs + S3C_AC97_GLBCTRL); |
| 349 | |
| 350 | return 0; |
| 351 | } |
| 352 | |
| 353 | #define s3c2443_AC97_RATES (SNDRV_PCM_RATE_8000 | SNDRV_PCM_RATE_11025 |\ |
| 354 | SNDRV_PCM_RATE_16000 | SNDRV_PCM_RATE_22050 | \ |
| 355 | SNDRV_PCM_RATE_44100 | SNDRV_PCM_RATE_48000) |
| 356 | |
Liam Girdwood | 1992a6f | 2008-07-07 16:08:24 +0100 | [diff] [blame] | 357 | struct snd_soc_dai s3c2443_ac97_dai[] = { |
Graeme Gregory | 050f05e | 2007-05-14 11:02:51 +0200 | [diff] [blame] | 358 | { |
| 359 | .name = "s3c2443-ac97", |
| 360 | .id = 0, |
Mark Brown | 3ba9e10 | 2008-11-24 18:01:05 +0000 | [diff] [blame] | 361 | .ac97_control = 1, |
Graeme Gregory | 050f05e | 2007-05-14 11:02:51 +0200 | [diff] [blame] | 362 | .probe = s3c2443_ac97_probe, |
| 363 | .remove = s3c2443_ac97_remove, |
| 364 | .playback = { |
| 365 | .stream_name = "AC97 Playback", |
| 366 | .channels_min = 2, |
| 367 | .channels_max = 2, |
| 368 | .rates = s3c2443_AC97_RATES, |
| 369 | .formats = SNDRV_PCM_FMTBIT_S16_LE,}, |
| 370 | .capture = { |
| 371 | .stream_name = "AC97 Capture", |
| 372 | .channels_min = 2, |
| 373 | .channels_max = 2, |
| 374 | .rates = s3c2443_AC97_RATES, |
| 375 | .formats = SNDRV_PCM_FMTBIT_S16_LE,}, |
| 376 | .ops = { |
| 377 | .hw_params = s3c2443_ac97_hw_params, |
| 378 | .trigger = s3c2443_ac97_trigger}, |
| 379 | }, |
| 380 | { |
| 381 | .name = "pxa2xx-ac97-mic", |
| 382 | .id = 1, |
Mark Brown | 3ba9e10 | 2008-11-24 18:01:05 +0000 | [diff] [blame] | 383 | .ac97_control = 1, |
Graeme Gregory | 050f05e | 2007-05-14 11:02:51 +0200 | [diff] [blame] | 384 | .capture = { |
| 385 | .stream_name = "AC97 Mic Capture", |
| 386 | .channels_min = 1, |
| 387 | .channels_max = 1, |
| 388 | .rates = s3c2443_AC97_RATES, |
| 389 | .formats = SNDRV_PCM_FMTBIT_S16_LE,}, |
| 390 | .ops = { |
| 391 | .hw_params = s3c2443_ac97_hw_mic_params, |
| 392 | .trigger = s3c2443_ac97_mic_trigger,}, |
| 393 | }, |
| 394 | }; |
Graeme Gregory | 050f05e | 2007-05-14 11:02:51 +0200 | [diff] [blame] | 395 | EXPORT_SYMBOL_GPL(s3c2443_ac97_dai); |
| 396 | EXPORT_SYMBOL_GPL(soc_ac97_ops); |
| 397 | |
| 398 | MODULE_AUTHOR("Graeme Gregory"); |
| 399 | MODULE_DESCRIPTION("AC97 driver for the Samsung s3c2443 chip"); |
| 400 | MODULE_LICENSE("GPL"); |