1 // SPDX-License-Identifier: GPL-2.0-only
3 * ASoC driver for Cirrus Logic EP93xx AC97 controller.
5 * Copyright (c) 2010 Mika Westerberg
7 * Based on s3c-ac97 ASoC driver by Jaswinder Singh.
10 #include <linux/delay.h>
11 #include <linux/err.h>
13 #include <linux/init.h>
14 #include <linux/module.h>
15 #include <linux/platform_device.h>
16 #include <linux/slab.h>
18 #include <sound/core.h>
19 #include <sound/dmaengine_pcm.h>
20 #include <sound/ac97_codec.h>
21 #include <sound/soc.h>
23 #include <linux/platform_data/dma-ep93xx.h>
24 #include <linux/soc/cirrus/ep93xx.h>
26 #include "ep93xx-pcm.h"
29 * Per channel (1-4) registers.
31 #define AC97CH(n) (((n) - 1) * 0x20)
33 #define AC97DR(n) (AC97CH(n) + 0x0000)
35 #define AC97RXCR(n) (AC97CH(n) + 0x0004)
36 #define AC97RXCR_REN BIT(0)
37 #define AC97RXCR_RX3 BIT(3)
38 #define AC97RXCR_RX4 BIT(4)
39 #define AC97RXCR_CM BIT(15)
41 #define AC97TXCR(n) (AC97CH(n) + 0x0008)
42 #define AC97TXCR_TEN BIT(0)
43 #define AC97TXCR_TX3 BIT(3)
44 #define AC97TXCR_TX4 BIT(4)
45 #define AC97TXCR_CM BIT(15)
47 #define AC97SR(n) (AC97CH(n) + 0x000c)
48 #define AC97SR_TXFE BIT(1)
49 #define AC97SR_TXUE BIT(6)
51 #define AC97RISR(n) (AC97CH(n) + 0x0010)
52 #define AC97ISR(n) (AC97CH(n) + 0x0014)
53 #define AC97IE(n) (AC97CH(n) + 0x0018)
56 * Global AC97 controller registers.
58 #define AC97S1DATA 0x0080
59 #define AC97S2DATA 0x0084
60 #define AC97S12DATA 0x0088
62 #define AC97RGIS 0x008c
63 #define AC97GIS 0x0090
66 * Common bits for RGIS, GIS and IM registers.
68 #define AC97_SLOT2RXVALID BIT(1)
69 #define AC97_CODECREADY BIT(5)
70 #define AC97_SLOT2TXCOMPLETE BIT(6)
72 #define AC97EOI 0x0098
73 #define AC97EOI_WINT BIT(0)
74 #define AC97EOI_CODECREADY BIT(1)
76 #define AC97GCR 0x009c
77 #define AC97GCR_AC97IFE BIT(0)
79 #define AC97RESET 0x00a0
80 #define AC97RESET_TIMEDRESET BIT(0)
82 #define AC97SYNC 0x00a4
83 #define AC97SYNC_TIMEDSYNC BIT(0)
85 #define AC97_TIMEOUT msecs_to_jiffies(5)
88 * struct ep93xx_ac97_info - EP93xx AC97 controller info structure
89 * @lock: mutex serializing access to the bus (slot 1 & 2 ops)
90 * @dev: pointer to the platform device dev structure
91 * @regs: mapped AC97 controller registers
92 * @done: bus ops wait here for an interrupt
94 struct ep93xx_ac97_info
{
98 struct completion done
;
99 struct snd_dmaengine_dai_dma_data dma_params_rx
;
100 struct snd_dmaengine_dai_dma_data dma_params_tx
;
103 /* currently ALSA only supports a single AC97 device */
104 static struct ep93xx_ac97_info
*ep93xx_ac97_info
;
106 static struct ep93xx_dma_data ep93xx_ac97_pcm_out
= {
107 .name
= "ac97-pcm-out",
108 .port
= EP93XX_DMA_AAC1
,
109 .direction
= DMA_MEM_TO_DEV
,
112 static struct ep93xx_dma_data ep93xx_ac97_pcm_in
= {
113 .name
= "ac97-pcm-in",
114 .port
= EP93XX_DMA_AAC1
,
115 .direction
= DMA_DEV_TO_MEM
,
118 static inline unsigned ep93xx_ac97_read_reg(struct ep93xx_ac97_info
*info
,
121 return __raw_readl(info
->regs
+ reg
);
124 static inline void ep93xx_ac97_write_reg(struct ep93xx_ac97_info
*info
,
125 unsigned reg
, unsigned val
)
127 __raw_writel(val
, info
->regs
+ reg
);
130 static unsigned short ep93xx_ac97_read(struct snd_ac97
*ac97
,
133 struct ep93xx_ac97_info
*info
= ep93xx_ac97_info
;
136 mutex_lock(&info
->lock
);
138 ep93xx_ac97_write_reg(info
, AC97S1DATA
, reg
);
139 ep93xx_ac97_write_reg(info
, AC97IM
, AC97_SLOT2RXVALID
);
140 if (!wait_for_completion_timeout(&info
->done
, AC97_TIMEOUT
)) {
141 dev_warn(info
->dev
, "timeout reading register %x\n", reg
);
142 mutex_unlock(&info
->lock
);
145 val
= (unsigned short)ep93xx_ac97_read_reg(info
, AC97S2DATA
);
147 mutex_unlock(&info
->lock
);
151 static void ep93xx_ac97_write(struct snd_ac97
*ac97
,
155 struct ep93xx_ac97_info
*info
= ep93xx_ac97_info
;
157 mutex_lock(&info
->lock
);
160 * Writes to the codec need to be done so that slot 2 is filled in
163 ep93xx_ac97_write_reg(info
, AC97S2DATA
, val
);
164 ep93xx_ac97_write_reg(info
, AC97S1DATA
, reg
);
166 ep93xx_ac97_write_reg(info
, AC97IM
, AC97_SLOT2TXCOMPLETE
);
167 if (!wait_for_completion_timeout(&info
->done
, AC97_TIMEOUT
))
168 dev_warn(info
->dev
, "timeout writing register %x\n", reg
);
170 mutex_unlock(&info
->lock
);
173 static void ep93xx_ac97_warm_reset(struct snd_ac97
*ac97
)
175 struct ep93xx_ac97_info
*info
= ep93xx_ac97_info
;
177 mutex_lock(&info
->lock
);
180 * We are assuming that before this functions gets called, the codec
181 * BIT_CLK is stopped by forcing the codec into powerdown mode. We can
182 * control the SYNC signal directly via AC97SYNC register. Using
183 * TIMEDSYNC the controller will keep the SYNC high > 1us.
185 ep93xx_ac97_write_reg(info
, AC97SYNC
, AC97SYNC_TIMEDSYNC
);
186 ep93xx_ac97_write_reg(info
, AC97IM
, AC97_CODECREADY
);
187 if (!wait_for_completion_timeout(&info
->done
, AC97_TIMEOUT
))
188 dev_warn(info
->dev
, "codec warm reset timeout\n");
190 mutex_unlock(&info
->lock
);
193 static void ep93xx_ac97_cold_reset(struct snd_ac97
*ac97
)
195 struct ep93xx_ac97_info
*info
= ep93xx_ac97_info
;
197 mutex_lock(&info
->lock
);
200 * For doing cold reset, we disable the AC97 controller interface, clear
201 * WINT and CODECREADY bits, and finally enable the interface again.
203 ep93xx_ac97_write_reg(info
, AC97GCR
, 0);
204 ep93xx_ac97_write_reg(info
, AC97EOI
, AC97EOI_CODECREADY
| AC97EOI_WINT
);
205 ep93xx_ac97_write_reg(info
, AC97GCR
, AC97GCR_AC97IFE
);
208 * Now, assert the reset and wait for the codec to become ready.
210 ep93xx_ac97_write_reg(info
, AC97RESET
, AC97RESET_TIMEDRESET
);
211 ep93xx_ac97_write_reg(info
, AC97IM
, AC97_CODECREADY
);
212 if (!wait_for_completion_timeout(&info
->done
, AC97_TIMEOUT
))
213 dev_warn(info
->dev
, "codec cold reset timeout\n");
216 * Give the codec some time to come fully out from the reset. This way
217 * we ensure that the subsequent reads/writes will work.
219 usleep_range(15000, 20000);
221 mutex_unlock(&info
->lock
);
224 static irqreturn_t
ep93xx_ac97_interrupt(int irq
, void *dev_id
)
226 struct ep93xx_ac97_info
*info
= dev_id
;
227 unsigned status
, mask
;
230 * Just mask out the interrupt and wake up the waiting thread.
231 * Interrupts are cleared via reading/writing to slot 1 & 2 registers by
232 * the waiting thread.
234 status
= ep93xx_ac97_read_reg(info
, AC97GIS
);
235 mask
= ep93xx_ac97_read_reg(info
, AC97IM
);
237 ep93xx_ac97_write_reg(info
, AC97IM
, mask
);
239 complete(&info
->done
);
243 static struct snd_ac97_bus_ops ep93xx_ac97_ops
= {
244 .read
= ep93xx_ac97_read
,
245 .write
= ep93xx_ac97_write
,
246 .reset
= ep93xx_ac97_cold_reset
,
247 .warm_reset
= ep93xx_ac97_warm_reset
,
250 static int ep93xx_ac97_trigger(struct snd_pcm_substream
*substream
,
251 int cmd
, struct snd_soc_dai
*dai
)
253 struct ep93xx_ac97_info
*info
= snd_soc_dai_get_drvdata(dai
);
257 case SNDRV_PCM_TRIGGER_START
:
258 case SNDRV_PCM_TRIGGER_RESUME
:
259 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE
:
260 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
) {
262 * Enable compact mode, TX slots 3 & 4, and the TX FIFO
266 v
|= AC97TXCR_TX3
| AC97TXCR_TX4
;
268 ep93xx_ac97_write_reg(info
, AC97TXCR(1), v
);
271 * Enable compact mode, RX slots 3 & 4, and the RX FIFO
275 v
|= AC97RXCR_RX3
| AC97RXCR_RX4
;
277 ep93xx_ac97_write_reg(info
, AC97RXCR(1), v
);
281 case SNDRV_PCM_TRIGGER_STOP
:
282 case SNDRV_PCM_TRIGGER_SUSPEND
:
283 case SNDRV_PCM_TRIGGER_PAUSE_PUSH
:
284 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
) {
286 * As per Cirrus EP93xx errata described below:
288 * http://www.cirrus.com/en/pubs/errata/ER667E2B.pdf
290 * we will wait for the TX FIFO to be empty before
291 * clearing the TEN bit.
293 unsigned long timeout
= jiffies
+ AC97_TIMEOUT
;
296 v
= ep93xx_ac97_read_reg(info
, AC97SR(1));
297 if (time_after(jiffies
, timeout
)) {
298 dev_warn(info
->dev
, "TX timeout\n");
301 } while (!(v
& (AC97SR_TXFE
| AC97SR_TXUE
)));
303 /* disable the TX FIFO */
304 ep93xx_ac97_write_reg(info
, AC97TXCR(1), 0);
306 /* disable the RX FIFO */
307 ep93xx_ac97_write_reg(info
, AC97RXCR(1), 0);
312 dev_warn(info
->dev
, "unknown command %d\n", cmd
);
319 static int ep93xx_ac97_dai_probe(struct snd_soc_dai
*dai
)
321 struct ep93xx_ac97_info
*info
= snd_soc_dai_get_drvdata(dai
);
323 info
->dma_params_tx
.filter_data
= &ep93xx_ac97_pcm_out
;
324 info
->dma_params_rx
.filter_data
= &ep93xx_ac97_pcm_in
;
326 dai
->playback_dma_data
= &info
->dma_params_tx
;
327 dai
->capture_dma_data
= &info
->dma_params_rx
;
332 static const struct snd_soc_dai_ops ep93xx_ac97_dai_ops
= {
333 .trigger
= ep93xx_ac97_trigger
,
336 static struct snd_soc_dai_driver ep93xx_ac97_dai
= {
337 .name
= "ep93xx-ac97",
339 .probe
= ep93xx_ac97_dai_probe
,
341 .stream_name
= "AC97 Playback",
344 .rates
= SNDRV_PCM_RATE_8000_48000
,
345 .formats
= SNDRV_PCM_FMTBIT_S16_LE
,
348 .stream_name
= "AC97 Capture",
351 .rates
= SNDRV_PCM_RATE_8000_48000
,
352 .formats
= SNDRV_PCM_FMTBIT_S16_LE
,
354 .ops
= &ep93xx_ac97_dai_ops
,
357 static const struct snd_soc_component_driver ep93xx_ac97_component
= {
358 .name
= "ep93xx-ac97",
361 static int ep93xx_ac97_probe(struct platform_device
*pdev
)
363 struct ep93xx_ac97_info
*info
;
367 info
= devm_kzalloc(&pdev
->dev
, sizeof(*info
), GFP_KERNEL
);
371 info
->regs
= devm_platform_ioremap_resource(pdev
, 0);
372 if (IS_ERR(info
->regs
))
373 return PTR_ERR(info
->regs
);
375 irq
= platform_get_irq(pdev
, 0);
377 return irq
< 0 ? irq
: -ENODEV
;
379 ret
= devm_request_irq(&pdev
->dev
, irq
, ep93xx_ac97_interrupt
,
380 IRQF_TRIGGER_HIGH
, pdev
->name
, info
);
384 dev_set_drvdata(&pdev
->dev
, info
);
386 mutex_init(&info
->lock
);
387 init_completion(&info
->done
);
388 info
->dev
= &pdev
->dev
;
390 ep93xx_ac97_info
= info
;
391 platform_set_drvdata(pdev
, info
);
393 ret
= snd_soc_set_ac97_ops(&ep93xx_ac97_ops
);
397 ret
= snd_soc_register_component(&pdev
->dev
, &ep93xx_ac97_component
,
398 &ep93xx_ac97_dai
, 1);
402 ret
= devm_ep93xx_pcm_platform_register(&pdev
->dev
);
404 goto fail_unregister
;
409 snd_soc_unregister_component(&pdev
->dev
);
411 ep93xx_ac97_info
= NULL
;
412 snd_soc_set_ac97_ops(NULL
);
416 static int ep93xx_ac97_remove(struct platform_device
*pdev
)
418 struct ep93xx_ac97_info
*info
= platform_get_drvdata(pdev
);
420 snd_soc_unregister_component(&pdev
->dev
);
422 /* disable the AC97 controller */
423 ep93xx_ac97_write_reg(info
, AC97GCR
, 0);
425 ep93xx_ac97_info
= NULL
;
427 snd_soc_set_ac97_ops(NULL
);
432 static struct platform_driver ep93xx_ac97_driver
= {
433 .probe
= ep93xx_ac97_probe
,
434 .remove
= ep93xx_ac97_remove
,
436 .name
= "ep93xx-ac97",
440 module_platform_driver(ep93xx_ac97_driver
);
442 MODULE_DESCRIPTION("EP93xx AC97 ASoC Driver");
443 MODULE_AUTHOR("Mika Westerberg <mika.westerberg@iki.fi>");
444 MODULE_LICENSE("GPL");
445 MODULE_ALIAS("platform:ep93xx-ac97");