Mika Westerberg | aa7e1b8 | 2010-10-14 17:49:06 +0300 | [diff] [blame] | 1 | /* |
| 2 | * ASoC driver for Cirrus Logic EP93xx AC97 controller. |
| 3 | * |
| 4 | * Copyright (c) 2010 Mika Westerberg |
| 5 | * |
| 6 | * Based on s3c-ac97 ASoC driver by Jaswinder Singh. |
| 7 | * |
| 8 | * This program is free software; you can redistribute it and/or modify |
| 9 | * it under the terms of the GNU General Public License version 2 as |
| 10 | * published by the Free Software Foundation. |
| 11 | */ |
| 12 | |
| 13 | #include <linux/delay.h> |
Thierry Reding | b25b5aa | 2013-01-21 11:09:26 +0100 | [diff] [blame] | 14 | #include <linux/err.h> |
Mika Westerberg | aa7e1b8 | 2010-10-14 17:49:06 +0300 | [diff] [blame] | 15 | #include <linux/io.h> |
| 16 | #include <linux/init.h> |
| 17 | #include <linux/module.h> |
| 18 | #include <linux/platform_device.h> |
| 19 | #include <linux/slab.h> |
| 20 | |
| 21 | #include <sound/core.h> |
| 22 | #include <sound/ac97_codec.h> |
| 23 | #include <sound/soc.h> |
| 24 | |
Arnd Bergmann | a3b2924 | 2012-08-24 15:12:11 +0200 | [diff] [blame] | 25 | #include <linux/platform_data/dma-ep93xx.h> |
Mika Westerberg | aa7e1b8 | 2010-10-14 17:49:06 +0300 | [diff] [blame] | 26 | |
| 27 | /* |
| 28 | * Per channel (1-4) registers. |
| 29 | */ |
| 30 | #define AC97CH(n) (((n) - 1) * 0x20) |
| 31 | |
| 32 | #define AC97DR(n) (AC97CH(n) + 0x0000) |
| 33 | |
| 34 | #define AC97RXCR(n) (AC97CH(n) + 0x0004) |
| 35 | #define AC97RXCR_REN BIT(0) |
| 36 | #define AC97RXCR_RX3 BIT(3) |
| 37 | #define AC97RXCR_RX4 BIT(4) |
| 38 | #define AC97RXCR_CM BIT(15) |
| 39 | |
| 40 | #define AC97TXCR(n) (AC97CH(n) + 0x0008) |
| 41 | #define AC97TXCR_TEN BIT(0) |
| 42 | #define AC97TXCR_TX3 BIT(3) |
| 43 | #define AC97TXCR_TX4 BIT(4) |
| 44 | #define AC97TXCR_CM BIT(15) |
| 45 | |
| 46 | #define AC97SR(n) (AC97CH(n) + 0x000c) |
| 47 | #define AC97SR_TXFE BIT(1) |
| 48 | #define AC97SR_TXUE BIT(6) |
| 49 | |
| 50 | #define AC97RISR(n) (AC97CH(n) + 0x0010) |
| 51 | #define AC97ISR(n) (AC97CH(n) + 0x0014) |
| 52 | #define AC97IE(n) (AC97CH(n) + 0x0018) |
| 53 | |
| 54 | /* |
| 55 | * Global AC97 controller registers. |
| 56 | */ |
| 57 | #define AC97S1DATA 0x0080 |
| 58 | #define AC97S2DATA 0x0084 |
| 59 | #define AC97S12DATA 0x0088 |
| 60 | |
| 61 | #define AC97RGIS 0x008c |
| 62 | #define AC97GIS 0x0090 |
| 63 | #define AC97IM 0x0094 |
| 64 | /* |
| 65 | * Common bits for RGIS, GIS and IM registers. |
| 66 | */ |
| 67 | #define AC97_SLOT2RXVALID BIT(1) |
| 68 | #define AC97_CODECREADY BIT(5) |
| 69 | #define AC97_SLOT2TXCOMPLETE BIT(6) |
| 70 | |
| 71 | #define AC97EOI 0x0098 |
| 72 | #define AC97EOI_WINT BIT(0) |
| 73 | #define AC97EOI_CODECREADY BIT(1) |
| 74 | |
| 75 | #define AC97GCR 0x009c |
| 76 | #define AC97GCR_AC97IFE BIT(0) |
| 77 | |
| 78 | #define AC97RESET 0x00a0 |
| 79 | #define AC97RESET_TIMEDRESET BIT(0) |
| 80 | |
| 81 | #define AC97SYNC 0x00a4 |
| 82 | #define AC97SYNC_TIMEDSYNC BIT(0) |
| 83 | |
| 84 | #define AC97_TIMEOUT msecs_to_jiffies(5) |
| 85 | |
| 86 | /** |
| 87 | * struct ep93xx_ac97_info - EP93xx AC97 controller info structure |
| 88 | * @lock: mutex serializing access to the bus (slot 1 & 2 ops) |
| 89 | * @dev: pointer to the platform device dev structure |
Mika Westerberg | aa7e1b8 | 2010-10-14 17:49:06 +0300 | [diff] [blame] | 90 | * @regs: mapped AC97 controller registers |
Mika Westerberg | aa7e1b8 | 2010-10-14 17:49:06 +0300 | [diff] [blame] | 91 | * @done: bus ops wait here for an interrupt |
| 92 | */ |
| 93 | struct ep93xx_ac97_info { |
| 94 | struct mutex lock; |
| 95 | struct device *dev; |
Mika Westerberg | aa7e1b8 | 2010-10-14 17:49:06 +0300 | [diff] [blame] | 96 | void __iomem *regs; |
Mika Westerberg | aa7e1b8 | 2010-10-14 17:49:06 +0300 | [diff] [blame] | 97 | struct completion done; |
| 98 | }; |
| 99 | |
| 100 | /* currently ALSA only supports a single AC97 device */ |
| 101 | static struct ep93xx_ac97_info *ep93xx_ac97_info; |
| 102 | |
Lars-Peter Clausen | 453807f | 2013-03-22 14:12:10 +0100 | [diff] [blame] | 103 | static struct ep93xx_dma_data ep93xx_ac97_pcm_out = { |
Mika Westerberg | aa7e1b8 | 2010-10-14 17:49:06 +0300 | [diff] [blame] | 104 | .name = "ac97-pcm-out", |
H Hartley Sweeten | 83e2e4e | 2013-07-19 09:53:25 -0700 | [diff] [blame] | 105 | .port = EP93XX_DMA_AAC1, |
Lars-Peter Clausen | 453807f | 2013-03-22 14:12:10 +0100 | [diff] [blame] | 106 | .direction = DMA_MEM_TO_DEV, |
Mika Westerberg | aa7e1b8 | 2010-10-14 17:49:06 +0300 | [diff] [blame] | 107 | }; |
| 108 | |
Lars-Peter Clausen | 453807f | 2013-03-22 14:12:10 +0100 | [diff] [blame] | 109 | static struct ep93xx_dma_data ep93xx_ac97_pcm_in = { |
Mika Westerberg | aa7e1b8 | 2010-10-14 17:49:06 +0300 | [diff] [blame] | 110 | .name = "ac97-pcm-in", |
H Hartley Sweeten | 83e2e4e | 2013-07-19 09:53:25 -0700 | [diff] [blame] | 111 | .port = EP93XX_DMA_AAC1, |
Lars-Peter Clausen | 453807f | 2013-03-22 14:12:10 +0100 | [diff] [blame] | 112 | .direction = DMA_DEV_TO_MEM, |
Mika Westerberg | aa7e1b8 | 2010-10-14 17:49:06 +0300 | [diff] [blame] | 113 | }; |
| 114 | |
| 115 | static inline unsigned ep93xx_ac97_read_reg(struct ep93xx_ac97_info *info, |
| 116 | unsigned reg) |
| 117 | { |
| 118 | return __raw_readl(info->regs + reg); |
| 119 | } |
| 120 | |
| 121 | static inline void ep93xx_ac97_write_reg(struct ep93xx_ac97_info *info, |
| 122 | unsigned reg, unsigned val) |
| 123 | { |
| 124 | __raw_writel(val, info->regs + reg); |
| 125 | } |
| 126 | |
| 127 | static unsigned short ep93xx_ac97_read(struct snd_ac97 *ac97, |
| 128 | unsigned short reg) |
| 129 | { |
| 130 | struct ep93xx_ac97_info *info = ep93xx_ac97_info; |
| 131 | unsigned short val; |
| 132 | |
| 133 | mutex_lock(&info->lock); |
| 134 | |
| 135 | ep93xx_ac97_write_reg(info, AC97S1DATA, reg); |
| 136 | ep93xx_ac97_write_reg(info, AC97IM, AC97_SLOT2RXVALID); |
| 137 | if (!wait_for_completion_timeout(&info->done, AC97_TIMEOUT)) { |
| 138 | dev_warn(info->dev, "timeout reading register %x\n", reg); |
| 139 | mutex_unlock(&info->lock); |
| 140 | return -ETIMEDOUT; |
| 141 | } |
| 142 | val = (unsigned short)ep93xx_ac97_read_reg(info, AC97S2DATA); |
| 143 | |
| 144 | mutex_unlock(&info->lock); |
| 145 | return val; |
| 146 | } |
| 147 | |
| 148 | static void ep93xx_ac97_write(struct snd_ac97 *ac97, |
| 149 | unsigned short reg, |
| 150 | unsigned short val) |
| 151 | { |
| 152 | struct ep93xx_ac97_info *info = ep93xx_ac97_info; |
| 153 | |
| 154 | mutex_lock(&info->lock); |
| 155 | |
| 156 | /* |
| 157 | * Writes to the codec need to be done so that slot 2 is filled in |
| 158 | * before slot 1. |
| 159 | */ |
| 160 | ep93xx_ac97_write_reg(info, AC97S2DATA, val); |
| 161 | ep93xx_ac97_write_reg(info, AC97S1DATA, reg); |
| 162 | |
| 163 | ep93xx_ac97_write_reg(info, AC97IM, AC97_SLOT2TXCOMPLETE); |
| 164 | if (!wait_for_completion_timeout(&info->done, AC97_TIMEOUT)) |
| 165 | dev_warn(info->dev, "timeout writing register %x\n", reg); |
| 166 | |
| 167 | mutex_unlock(&info->lock); |
| 168 | } |
| 169 | |
| 170 | static void ep93xx_ac97_warm_reset(struct snd_ac97 *ac97) |
| 171 | { |
| 172 | struct ep93xx_ac97_info *info = ep93xx_ac97_info; |
| 173 | |
| 174 | mutex_lock(&info->lock); |
| 175 | |
| 176 | /* |
| 177 | * We are assuming that before this functions gets called, the codec |
| 178 | * BIT_CLK is stopped by forcing the codec into powerdown mode. We can |
| 179 | * control the SYNC signal directly via AC97SYNC register. Using |
| 180 | * TIMEDSYNC the controller will keep the SYNC high > 1us. |
| 181 | */ |
| 182 | ep93xx_ac97_write_reg(info, AC97SYNC, AC97SYNC_TIMEDSYNC); |
| 183 | ep93xx_ac97_write_reg(info, AC97IM, AC97_CODECREADY); |
| 184 | if (!wait_for_completion_timeout(&info->done, AC97_TIMEOUT)) |
| 185 | dev_warn(info->dev, "codec warm reset timeout\n"); |
| 186 | |
| 187 | mutex_unlock(&info->lock); |
| 188 | } |
| 189 | |
| 190 | static void ep93xx_ac97_cold_reset(struct snd_ac97 *ac97) |
| 191 | { |
| 192 | struct ep93xx_ac97_info *info = ep93xx_ac97_info; |
| 193 | |
| 194 | mutex_lock(&info->lock); |
| 195 | |
| 196 | /* |
| 197 | * For doing cold reset, we disable the AC97 controller interface, clear |
| 198 | * WINT and CODECREADY bits, and finally enable the interface again. |
| 199 | */ |
| 200 | ep93xx_ac97_write_reg(info, AC97GCR, 0); |
| 201 | ep93xx_ac97_write_reg(info, AC97EOI, AC97EOI_CODECREADY | AC97EOI_WINT); |
| 202 | ep93xx_ac97_write_reg(info, AC97GCR, AC97GCR_AC97IFE); |
| 203 | |
| 204 | /* |
| 205 | * Now, assert the reset and wait for the codec to become ready. |
| 206 | */ |
| 207 | ep93xx_ac97_write_reg(info, AC97RESET, AC97RESET_TIMEDRESET); |
| 208 | ep93xx_ac97_write_reg(info, AC97IM, AC97_CODECREADY); |
| 209 | if (!wait_for_completion_timeout(&info->done, AC97_TIMEOUT)) |
| 210 | dev_warn(info->dev, "codec cold reset timeout\n"); |
| 211 | |
| 212 | /* |
| 213 | * Give the codec some time to come fully out from the reset. This way |
| 214 | * we ensure that the subsequent reads/writes will work. |
| 215 | */ |
| 216 | usleep_range(15000, 20000); |
| 217 | |
| 218 | mutex_unlock(&info->lock); |
| 219 | } |
| 220 | |
| 221 | static irqreturn_t ep93xx_ac97_interrupt(int irq, void *dev_id) |
| 222 | { |
| 223 | struct ep93xx_ac97_info *info = dev_id; |
| 224 | unsigned status, mask; |
| 225 | |
| 226 | /* |
| 227 | * Just mask out the interrupt and wake up the waiting thread. |
| 228 | * Interrupts are cleared via reading/writing to slot 1 & 2 registers by |
| 229 | * the waiting thread. |
| 230 | */ |
| 231 | status = ep93xx_ac97_read_reg(info, AC97GIS); |
| 232 | mask = ep93xx_ac97_read_reg(info, AC97IM); |
| 233 | mask &= ~status; |
| 234 | ep93xx_ac97_write_reg(info, AC97IM, mask); |
| 235 | |
| 236 | complete(&info->done); |
| 237 | return IRQ_HANDLED; |
| 238 | } |
| 239 | |
Mark Brown | b047e1c | 2013-06-26 12:45:59 +0100 | [diff] [blame] | 240 | static struct snd_ac97_bus_ops ep93xx_ac97_ops = { |
Mika Westerberg | aa7e1b8 | 2010-10-14 17:49:06 +0300 | [diff] [blame] | 241 | .read = ep93xx_ac97_read, |
| 242 | .write = ep93xx_ac97_write, |
| 243 | .reset = ep93xx_ac97_cold_reset, |
| 244 | .warm_reset = ep93xx_ac97_warm_reset, |
| 245 | }; |
Mika Westerberg | aa7e1b8 | 2010-10-14 17:49:06 +0300 | [diff] [blame] | 246 | |
| 247 | static int ep93xx_ac97_trigger(struct snd_pcm_substream *substream, |
| 248 | int cmd, struct snd_soc_dai *dai) |
| 249 | { |
| 250 | struct ep93xx_ac97_info *info = snd_soc_dai_get_drvdata(dai); |
| 251 | unsigned v = 0; |
| 252 | |
Mika Westerberg | aa7e1b8 | 2010-10-14 17:49:06 +0300 | [diff] [blame] | 253 | switch (cmd) { |
| 254 | case SNDRV_PCM_TRIGGER_START: |
| 255 | case SNDRV_PCM_TRIGGER_RESUME: |
| 256 | case SNDRV_PCM_TRIGGER_PAUSE_RELEASE: |
| 257 | if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) { |
| 258 | /* |
| 259 | * Enable compact mode, TX slots 3 & 4, and the TX FIFO |
| 260 | * itself. |
| 261 | */ |
| 262 | v |= AC97TXCR_CM; |
| 263 | v |= AC97TXCR_TX3 | AC97TXCR_TX4; |
| 264 | v |= AC97TXCR_TEN; |
| 265 | ep93xx_ac97_write_reg(info, AC97TXCR(1), v); |
| 266 | } else { |
| 267 | /* |
| 268 | * Enable compact mode, RX slots 3 & 4, and the RX FIFO |
| 269 | * itself. |
| 270 | */ |
| 271 | v |= AC97RXCR_CM; |
| 272 | v |= AC97RXCR_RX3 | AC97RXCR_RX4; |
| 273 | v |= AC97RXCR_REN; |
| 274 | ep93xx_ac97_write_reg(info, AC97RXCR(1), v); |
| 275 | } |
| 276 | break; |
| 277 | |
| 278 | case SNDRV_PCM_TRIGGER_STOP: |
| 279 | case SNDRV_PCM_TRIGGER_SUSPEND: |
| 280 | case SNDRV_PCM_TRIGGER_PAUSE_PUSH: |
| 281 | if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) { |
| 282 | /* |
| 283 | * As per Cirrus EP93xx errata described below: |
| 284 | * |
| 285 | * http://www.cirrus.com/en/pubs/errata/ER667E2B.pdf |
| 286 | * |
| 287 | * we will wait for the TX FIFO to be empty before |
| 288 | * clearing the TEN bit. |
| 289 | */ |
| 290 | unsigned long timeout = jiffies + AC97_TIMEOUT; |
| 291 | |
| 292 | do { |
| 293 | v = ep93xx_ac97_read_reg(info, AC97SR(1)); |
| 294 | if (time_after(jiffies, timeout)) { |
| 295 | dev_warn(info->dev, "TX timeout\n"); |
| 296 | break; |
| 297 | } |
| 298 | } while (!(v & (AC97SR_TXFE | AC97SR_TXUE))); |
| 299 | |
| 300 | /* disable the TX FIFO */ |
| 301 | ep93xx_ac97_write_reg(info, AC97TXCR(1), 0); |
| 302 | } else { |
| 303 | /* disable the RX FIFO */ |
| 304 | ep93xx_ac97_write_reg(info, AC97RXCR(1), 0); |
| 305 | } |
| 306 | break; |
| 307 | |
| 308 | default: |
| 309 | dev_warn(info->dev, "unknown command %d\n", cmd); |
| 310 | return -EINVAL; |
| 311 | } |
| 312 | |
| 313 | return 0; |
| 314 | } |
| 315 | |
Lars-Peter Clausen | 785d81e | 2013-04-20 19:29:04 +0200 | [diff] [blame] | 316 | static int ep93xx_ac97_dai_probe(struct snd_soc_dai *dai) |
Mika Westerberg | aa7e1b8 | 2010-10-14 17:49:06 +0300 | [diff] [blame] | 317 | { |
Lars-Peter Clausen | 785d81e | 2013-04-20 19:29:04 +0200 | [diff] [blame] | 318 | dai->playback_dma_data = &ep93xx_ac97_pcm_out; |
| 319 | dai->capture_dma_data = &ep93xx_ac97_pcm_in; |
Mika Westerberg | aa7e1b8 | 2010-10-14 17:49:06 +0300 | [diff] [blame] | 320 | |
Mika Westerberg | aa7e1b8 | 2010-10-14 17:49:06 +0300 | [diff] [blame] | 321 | return 0; |
| 322 | } |
| 323 | |
Lars-Peter Clausen | 85e7652 | 2011-11-23 11:40:40 +0100 | [diff] [blame] | 324 | static const struct snd_soc_dai_ops ep93xx_ac97_dai_ops = { |
Mika Westerberg | aa7e1b8 | 2010-10-14 17:49:06 +0300 | [diff] [blame] | 325 | .trigger = ep93xx_ac97_trigger, |
| 326 | }; |
| 327 | |
Axel Lin | 1c6927f | 2011-10-03 11:33:05 +0800 | [diff] [blame] | 328 | static struct snd_soc_dai_driver ep93xx_ac97_dai = { |
Mika Westerberg | aa7e1b8 | 2010-10-14 17:49:06 +0300 | [diff] [blame] | 329 | .name = "ep93xx-ac97", |
| 330 | .id = 0, |
| 331 | .ac97_control = 1, |
Lars-Peter Clausen | 785d81e | 2013-04-20 19:29:04 +0200 | [diff] [blame] | 332 | .probe = ep93xx_ac97_dai_probe, |
Mika Westerberg | aa7e1b8 | 2010-10-14 17:49:06 +0300 | [diff] [blame] | 333 | .playback = { |
| 334 | .stream_name = "AC97 Playback", |
| 335 | .channels_min = 2, |
| 336 | .channels_max = 2, |
| 337 | .rates = SNDRV_PCM_RATE_8000_48000, |
| 338 | .formats = SNDRV_PCM_FMTBIT_S16_LE, |
| 339 | }, |
| 340 | .capture = { |
| 341 | .stream_name = "AC97 Capture", |
| 342 | .channels_min = 2, |
| 343 | .channels_max = 2, |
| 344 | .rates = SNDRV_PCM_RATE_8000_48000, |
| 345 | .formats = SNDRV_PCM_FMTBIT_S16_LE, |
| 346 | }, |
| 347 | .ops = &ep93xx_ac97_dai_ops, |
| 348 | }; |
| 349 | |
Kuninori Morimoto | 426c340 | 2013-03-21 03:30:32 -0700 | [diff] [blame] | 350 | static const struct snd_soc_component_driver ep93xx_ac97_component = { |
| 351 | .name = "ep93xx-ac97", |
| 352 | }; |
| 353 | |
Bill Pemberton | 145e287 | 2012-12-07 09:26:23 -0500 | [diff] [blame] | 354 | static int ep93xx_ac97_probe(struct platform_device *pdev) |
Mika Westerberg | aa7e1b8 | 2010-10-14 17:49:06 +0300 | [diff] [blame] | 355 | { |
| 356 | struct ep93xx_ac97_info *info; |
H Hartley Sweeten | e7cff0a | 2012-03-26 16:00:08 -0700 | [diff] [blame] | 357 | struct resource *res; |
| 358 | unsigned int irq; |
Mika Westerberg | aa7e1b8 | 2010-10-14 17:49:06 +0300 | [diff] [blame] | 359 | int ret; |
| 360 | |
H Hartley Sweeten | e7cff0a | 2012-03-26 16:00:08 -0700 | [diff] [blame] | 361 | info = devm_kzalloc(&pdev->dev, sizeof(*info), GFP_KERNEL); |
Mika Westerberg | aa7e1b8 | 2010-10-14 17:49:06 +0300 | [diff] [blame] | 362 | if (!info) |
| 363 | return -ENOMEM; |
| 364 | |
H Hartley Sweeten | e7cff0a | 2012-03-26 16:00:08 -0700 | [diff] [blame] | 365 | res = platform_get_resource(pdev, IORESOURCE_MEM, 0); |
| 366 | if (!res) |
| 367 | return -ENODEV; |
| 368 | |
Thierry Reding | b25b5aa | 2013-01-21 11:09:26 +0100 | [diff] [blame] | 369 | info->regs = devm_ioremap_resource(&pdev->dev, res); |
| 370 | if (IS_ERR(info->regs)) |
| 371 | return PTR_ERR(info->regs); |
H Hartley Sweeten | e7cff0a | 2012-03-26 16:00:08 -0700 | [diff] [blame] | 372 | |
| 373 | irq = platform_get_irq(pdev, 0); |
| 374 | if (!irq) |
| 375 | return -ENODEV; |
| 376 | |
| 377 | ret = devm_request_irq(&pdev->dev, irq, ep93xx_ac97_interrupt, |
| 378 | IRQF_TRIGGER_HIGH, pdev->name, info); |
| 379 | if (ret) |
| 380 | goto fail; |
| 381 | |
Mika Westerberg | aa7e1b8 | 2010-10-14 17:49:06 +0300 | [diff] [blame] | 382 | dev_set_drvdata(&pdev->dev, info); |
| 383 | |
| 384 | mutex_init(&info->lock); |
| 385 | init_completion(&info->done); |
| 386 | info->dev = &pdev->dev; |
| 387 | |
Mika Westerberg | aa7e1b8 | 2010-10-14 17:49:06 +0300 | [diff] [blame] | 388 | ep93xx_ac97_info = info; |
| 389 | platform_set_drvdata(pdev, info); |
| 390 | |
Mark Brown | b047e1c | 2013-06-26 12:45:59 +0100 | [diff] [blame] | 391 | ret = snd_soc_set_ac97_ops(&ep93xx_ac97_ops); |
| 392 | if (ret) |
| 393 | goto fail; |
| 394 | |
Kuninori Morimoto | 426c340 | 2013-03-21 03:30:32 -0700 | [diff] [blame] | 395 | ret = snd_soc_register_component(&pdev->dev, &ep93xx_ac97_component, |
| 396 | &ep93xx_ac97_dai, 1); |
Mika Westerberg | aa7e1b8 | 2010-10-14 17:49:06 +0300 | [diff] [blame] | 397 | if (ret) |
H Hartley Sweeten | e7cff0a | 2012-03-26 16:00:08 -0700 | [diff] [blame] | 398 | goto fail; |
Mika Westerberg | aa7e1b8 | 2010-10-14 17:49:06 +0300 | [diff] [blame] | 399 | |
| 400 | return 0; |
| 401 | |
H Hartley Sweeten | e7cff0a | 2012-03-26 16:00:08 -0700 | [diff] [blame] | 402 | fail: |
H Hartley Sweeten | e7cff0a | 2012-03-26 16:00:08 -0700 | [diff] [blame] | 403 | ep93xx_ac97_info = NULL; |
Mark Brown | b047e1c | 2013-06-26 12:45:59 +0100 | [diff] [blame] | 404 | snd_soc_set_ac97_ops(NULL); |
Mika Westerberg | aa7e1b8 | 2010-10-14 17:49:06 +0300 | [diff] [blame] | 405 | return ret; |
| 406 | } |
| 407 | |
Bill Pemberton | 145e287 | 2012-12-07 09:26:23 -0500 | [diff] [blame] | 408 | static int ep93xx_ac97_remove(struct platform_device *pdev) |
Mika Westerberg | aa7e1b8 | 2010-10-14 17:49:06 +0300 | [diff] [blame] | 409 | { |
| 410 | struct ep93xx_ac97_info *info = platform_get_drvdata(pdev); |
| 411 | |
Kuninori Morimoto | 426c340 | 2013-03-21 03:30:32 -0700 | [diff] [blame] | 412 | snd_soc_unregister_component(&pdev->dev); |
Mika Westerberg | aa7e1b8 | 2010-10-14 17:49:06 +0300 | [diff] [blame] | 413 | |
| 414 | /* disable the AC97 controller */ |
| 415 | ep93xx_ac97_write_reg(info, AC97GCR, 0); |
| 416 | |
H Hartley Sweeten | e7cff0a | 2012-03-26 16:00:08 -0700 | [diff] [blame] | 417 | ep93xx_ac97_info = NULL; |
Mika Westerberg | aa7e1b8 | 2010-10-14 17:49:06 +0300 | [diff] [blame] | 418 | |
Mark Brown | b047e1c | 2013-06-26 12:45:59 +0100 | [diff] [blame] | 419 | snd_soc_set_ac97_ops(NULL); |
Mika Westerberg | aa7e1b8 | 2010-10-14 17:49:06 +0300 | [diff] [blame] | 420 | |
| 421 | return 0; |
| 422 | } |
| 423 | |
| 424 | static struct platform_driver ep93xx_ac97_driver = { |
| 425 | .probe = ep93xx_ac97_probe, |
Bill Pemberton | 145e287 | 2012-12-07 09:26:23 -0500 | [diff] [blame] | 426 | .remove = ep93xx_ac97_remove, |
Mika Westerberg | aa7e1b8 | 2010-10-14 17:49:06 +0300 | [diff] [blame] | 427 | .driver = { |
| 428 | .name = "ep93xx-ac97", |
| 429 | .owner = THIS_MODULE, |
| 430 | }, |
| 431 | }; |
| 432 | |
Axel Lin | ee18f63 | 2011-11-24 12:07:55 +0800 | [diff] [blame] | 433 | module_platform_driver(ep93xx_ac97_driver); |
Mika Westerberg | aa7e1b8 | 2010-10-14 17:49:06 +0300 | [diff] [blame] | 434 | |
| 435 | MODULE_DESCRIPTION("EP93xx AC97 ASoC Driver"); |
| 436 | MODULE_AUTHOR("Mika Westerberg <mika.westerberg@iki.fi>"); |
| 437 | MODULE_LICENSE("GPL"); |
| 438 | MODULE_ALIAS("platform:ep93xx-ac97"); |