2 * Driver for Atmel AC97C
4 * Copyright (C) 2005-2009 Atmel Corporation
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License version 2 as published by
8 * the Free Software Foundation.
10 #include <linux/clk.h>
11 #include <linux/delay.h>
12 #include <linux/bitmap.h>
13 #include <linux/device.h>
14 #include <linux/atmel_pdc.h>
15 #include <linux/gpio/consumer.h>
16 #include <linux/init.h>
17 #include <linux/interrupt.h>
18 #include <linux/module.h>
19 #include <linux/platform_device.h>
20 #include <linux/mutex.h>
21 #include <linux/types.h>
24 #include <linux/of_device.h>
26 #include <sound/core.h>
27 #include <sound/initval.h>
28 #include <sound/pcm.h>
29 #include <sound/pcm_params.h>
30 #include <sound/ac97_codec.h>
31 #include <sound/memalloc.h>
35 /* Serialize access to opened variable */
36 static DEFINE_MUTEX(opened_mutex
);
40 struct platform_device
*pdev
;
42 struct snd_pcm_substream
*playback_substream
;
43 struct snd_pcm_substream
*capture_substream
;
44 struct snd_card
*card
;
46 struct snd_ac97
*ac97
;
47 struct snd_ac97_bus
*ac97_bus
;
50 unsigned int cur_rate
;
51 int playback_period
, capture_period
;
52 /* Serialize access to opened variable */
57 struct gpio_desc
*reset_pin
;
60 #define get_chip(card) ((struct atmel_ac97c *)(card)->private_data)
62 #define ac97c_writel(chip, reg, val) \
63 __raw_writel((val), (chip)->regs + AC97C_##reg)
64 #define ac97c_readl(chip, reg) \
65 __raw_readl((chip)->regs + AC97C_##reg)
67 static const struct snd_pcm_hardware atmel_ac97c_hw
= {
68 .info
= (SNDRV_PCM_INFO_MMAP
69 | SNDRV_PCM_INFO_MMAP_VALID
70 | SNDRV_PCM_INFO_INTERLEAVED
71 | SNDRV_PCM_INFO_BLOCK_TRANSFER
72 | SNDRV_PCM_INFO_JOINT_DUPLEX
73 | SNDRV_PCM_INFO_RESUME
74 | SNDRV_PCM_INFO_PAUSE
),
75 .formats
= (SNDRV_PCM_FMTBIT_S16_BE
76 | SNDRV_PCM_FMTBIT_S16_LE
),
77 .rates
= (SNDRV_PCM_RATE_CONTINUOUS
),
82 .buffer_bytes_max
= 2 * 2 * 64 * 2048,
83 .period_bytes_min
= 4096,
84 .period_bytes_max
= 4096,
89 static int atmel_ac97c_playback_open(struct snd_pcm_substream
*substream
)
91 struct atmel_ac97c
*chip
= snd_pcm_substream_chip(substream
);
92 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
94 mutex_lock(&opened_mutex
);
96 runtime
->hw
= atmel_ac97c_hw
;
98 runtime
->hw
.rate_min
= chip
->cur_rate
;
99 runtime
->hw
.rate_max
= chip
->cur_rate
;
101 if (chip
->cur_format
)
102 runtime
->hw
.formats
= pcm_format_to_bits(chip
->cur_format
);
103 mutex_unlock(&opened_mutex
);
104 chip
->playback_substream
= substream
;
108 static int atmel_ac97c_capture_open(struct snd_pcm_substream
*substream
)
110 struct atmel_ac97c
*chip
= snd_pcm_substream_chip(substream
);
111 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
113 mutex_lock(&opened_mutex
);
115 runtime
->hw
= atmel_ac97c_hw
;
116 if (chip
->cur_rate
) {
117 runtime
->hw
.rate_min
= chip
->cur_rate
;
118 runtime
->hw
.rate_max
= chip
->cur_rate
;
120 if (chip
->cur_format
)
121 runtime
->hw
.formats
= pcm_format_to_bits(chip
->cur_format
);
122 mutex_unlock(&opened_mutex
);
123 chip
->capture_substream
= substream
;
127 static int atmel_ac97c_playback_close(struct snd_pcm_substream
*substream
)
129 struct atmel_ac97c
*chip
= snd_pcm_substream_chip(substream
);
131 mutex_lock(&opened_mutex
);
135 chip
->cur_format
= 0;
137 mutex_unlock(&opened_mutex
);
139 chip
->playback_substream
= NULL
;
144 static int atmel_ac97c_capture_close(struct snd_pcm_substream
*substream
)
146 struct atmel_ac97c
*chip
= snd_pcm_substream_chip(substream
);
148 mutex_lock(&opened_mutex
);
152 chip
->cur_format
= 0;
154 mutex_unlock(&opened_mutex
);
156 chip
->capture_substream
= NULL
;
161 static int atmel_ac97c_playback_hw_params(struct snd_pcm_substream
*substream
,
162 struct snd_pcm_hw_params
*hw_params
)
164 struct atmel_ac97c
*chip
= snd_pcm_substream_chip(substream
);
167 retval
= snd_pcm_lib_malloc_pages(substream
,
168 params_buffer_bytes(hw_params
));
172 /* Set restrictions to params. */
173 mutex_lock(&opened_mutex
);
174 chip
->cur_rate
= params_rate(hw_params
);
175 chip
->cur_format
= params_format(hw_params
);
176 mutex_unlock(&opened_mutex
);
181 static int atmel_ac97c_capture_hw_params(struct snd_pcm_substream
*substream
,
182 struct snd_pcm_hw_params
*hw_params
)
184 struct atmel_ac97c
*chip
= snd_pcm_substream_chip(substream
);
187 retval
= snd_pcm_lib_malloc_pages(substream
,
188 params_buffer_bytes(hw_params
));
192 /* Set restrictions to params. */
193 mutex_lock(&opened_mutex
);
194 chip
->cur_rate
= params_rate(hw_params
);
195 chip
->cur_format
= params_format(hw_params
);
196 mutex_unlock(&opened_mutex
);
201 static int atmel_ac97c_playback_prepare(struct snd_pcm_substream
*substream
)
203 struct atmel_ac97c
*chip
= snd_pcm_substream_chip(substream
);
204 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
205 int block_size
= frames_to_bytes(runtime
, runtime
->period_size
);
206 unsigned long word
= ac97c_readl(chip
, OCA
);
209 chip
->playback_period
= 0;
210 word
&= ~(AC97C_CH_MASK(PCM_LEFT
) | AC97C_CH_MASK(PCM_RIGHT
));
212 /* assign channels to AC97C channel A */
213 switch (runtime
->channels
) {
215 word
|= AC97C_CH_ASSIGN(PCM_LEFT
, A
);
218 word
|= AC97C_CH_ASSIGN(PCM_LEFT
, A
)
219 | AC97C_CH_ASSIGN(PCM_RIGHT
, A
);
222 /* TODO: support more than two channels */
225 ac97c_writel(chip
, OCA
, word
);
227 /* configure sample format and size */
228 word
= ac97c_readl(chip
, CAMR
);
229 if (chip
->opened
<= 1)
230 word
= AC97C_CMR_DMAEN
| AC97C_CMR_SIZE_16
;
232 word
|= AC97C_CMR_DMAEN
| AC97C_CMR_SIZE_16
;
234 switch (runtime
->format
) {
235 case SNDRV_PCM_FORMAT_S16_LE
:
237 case SNDRV_PCM_FORMAT_S16_BE
: /* fall through */
238 word
&= ~(AC97C_CMR_CEM_LITTLE
);
241 word
= ac97c_readl(chip
, OCA
);
242 word
&= ~(AC97C_CH_MASK(PCM_LEFT
) | AC97C_CH_MASK(PCM_RIGHT
));
243 ac97c_writel(chip
, OCA
, word
);
247 /* Enable underrun interrupt on channel A */
248 word
|= AC97C_CSR_UNRUN
;
250 ac97c_writel(chip
, CAMR
, word
);
252 /* Enable channel A event interrupt */
253 word
= ac97c_readl(chip
, IMR
);
254 word
|= AC97C_SR_CAEVT
;
255 ac97c_writel(chip
, IER
, word
);
257 /* set variable rate if needed */
258 if (runtime
->rate
!= 48000) {
259 word
= ac97c_readl(chip
, MR
);
260 word
|= AC97C_MR_VRA
;
261 ac97c_writel(chip
, MR
, word
);
263 word
= ac97c_readl(chip
, MR
);
264 word
&= ~(AC97C_MR_VRA
);
265 ac97c_writel(chip
, MR
, word
);
268 retval
= snd_ac97_set_rate(chip
->ac97
, AC97_PCM_FRONT_DAC_RATE
,
271 dev_dbg(&chip
->pdev
->dev
, "could not set rate %d Hz\n",
274 /* Initialize and start the PDC */
275 writel(runtime
->dma_addr
, chip
->regs
+ ATMEL_PDC_TPR
);
276 writel(block_size
/ 2, chip
->regs
+ ATMEL_PDC_TCR
);
277 writel(runtime
->dma_addr
+ block_size
, chip
->regs
+ ATMEL_PDC_TNPR
);
278 writel(block_size
/ 2, chip
->regs
+ ATMEL_PDC_TNCR
);
283 static int atmel_ac97c_capture_prepare(struct snd_pcm_substream
*substream
)
285 struct atmel_ac97c
*chip
= snd_pcm_substream_chip(substream
);
286 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
287 int block_size
= frames_to_bytes(runtime
, runtime
->period_size
);
288 unsigned long word
= ac97c_readl(chip
, ICA
);
291 chip
->capture_period
= 0;
292 word
&= ~(AC97C_CH_MASK(PCM_LEFT
) | AC97C_CH_MASK(PCM_RIGHT
));
294 /* assign channels to AC97C channel A */
295 switch (runtime
->channels
) {
297 word
|= AC97C_CH_ASSIGN(PCM_LEFT
, A
);
300 word
|= AC97C_CH_ASSIGN(PCM_LEFT
, A
)
301 | AC97C_CH_ASSIGN(PCM_RIGHT
, A
);
304 /* TODO: support more than two channels */
307 ac97c_writel(chip
, ICA
, word
);
309 /* configure sample format and size */
310 word
= ac97c_readl(chip
, CAMR
);
311 if (chip
->opened
<= 1)
312 word
= AC97C_CMR_DMAEN
| AC97C_CMR_SIZE_16
;
314 word
|= AC97C_CMR_DMAEN
| AC97C_CMR_SIZE_16
;
316 switch (runtime
->format
) {
317 case SNDRV_PCM_FORMAT_S16_LE
:
319 case SNDRV_PCM_FORMAT_S16_BE
: /* fall through */
320 word
&= ~(AC97C_CMR_CEM_LITTLE
);
323 word
= ac97c_readl(chip
, ICA
);
324 word
&= ~(AC97C_CH_MASK(PCM_LEFT
) | AC97C_CH_MASK(PCM_RIGHT
));
325 ac97c_writel(chip
, ICA
, word
);
329 /* Enable overrun interrupt on channel A */
330 word
|= AC97C_CSR_OVRUN
;
332 ac97c_writel(chip
, CAMR
, word
);
334 /* Enable channel A event interrupt */
335 word
= ac97c_readl(chip
, IMR
);
336 word
|= AC97C_SR_CAEVT
;
337 ac97c_writel(chip
, IER
, word
);
339 /* set variable rate if needed */
340 if (runtime
->rate
!= 48000) {
341 word
= ac97c_readl(chip
, MR
);
342 word
|= AC97C_MR_VRA
;
343 ac97c_writel(chip
, MR
, word
);
345 word
= ac97c_readl(chip
, MR
);
346 word
&= ~(AC97C_MR_VRA
);
347 ac97c_writel(chip
, MR
, word
);
350 retval
= snd_ac97_set_rate(chip
->ac97
, AC97_PCM_LR_ADC_RATE
,
353 dev_dbg(&chip
->pdev
->dev
, "could not set rate %d Hz\n",
356 /* Initialize and start the PDC */
357 writel(runtime
->dma_addr
, chip
->regs
+ ATMEL_PDC_RPR
);
358 writel(block_size
/ 2, chip
->regs
+ ATMEL_PDC_RCR
);
359 writel(runtime
->dma_addr
+ block_size
, chip
->regs
+ ATMEL_PDC_RNPR
);
360 writel(block_size
/ 2, chip
->regs
+ ATMEL_PDC_RNCR
);
366 atmel_ac97c_playback_trigger(struct snd_pcm_substream
*substream
, int cmd
)
368 struct atmel_ac97c
*chip
= snd_pcm_substream_chip(substream
);
369 unsigned long camr
, ptcr
= 0;
371 camr
= ac97c_readl(chip
, CAMR
);
374 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE
: /* fall through */
375 case SNDRV_PCM_TRIGGER_RESUME
: /* fall through */
376 case SNDRV_PCM_TRIGGER_START
:
377 ptcr
= ATMEL_PDC_TXTEN
;
378 camr
|= AC97C_CMR_CENA
| AC97C_CSR_ENDTX
;
380 case SNDRV_PCM_TRIGGER_PAUSE_PUSH
: /* fall through */
381 case SNDRV_PCM_TRIGGER_SUSPEND
: /* fall through */
382 case SNDRV_PCM_TRIGGER_STOP
:
383 ptcr
|= ATMEL_PDC_TXTDIS
;
384 if (chip
->opened
<= 1)
385 camr
&= ~AC97C_CMR_CENA
;
391 ac97c_writel(chip
, CAMR
, camr
);
392 writel(ptcr
, chip
->regs
+ ATMEL_PDC_PTCR
);
397 atmel_ac97c_capture_trigger(struct snd_pcm_substream
*substream
, int cmd
)
399 struct atmel_ac97c
*chip
= snd_pcm_substream_chip(substream
);
400 unsigned long camr
, ptcr
= 0;
402 camr
= ac97c_readl(chip
, CAMR
);
403 ptcr
= readl(chip
->regs
+ ATMEL_PDC_PTSR
);
406 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE
: /* fall through */
407 case SNDRV_PCM_TRIGGER_RESUME
: /* fall through */
408 case SNDRV_PCM_TRIGGER_START
:
409 ptcr
= ATMEL_PDC_RXTEN
;
410 camr
|= AC97C_CMR_CENA
| AC97C_CSR_ENDRX
;
412 case SNDRV_PCM_TRIGGER_PAUSE_PUSH
: /* fall through */
413 case SNDRV_PCM_TRIGGER_SUSPEND
: /* fall through */
414 case SNDRV_PCM_TRIGGER_STOP
:
415 ptcr
|= ATMEL_PDC_RXTDIS
;
416 if (chip
->opened
<= 1)
417 camr
&= ~AC97C_CMR_CENA
;
423 ac97c_writel(chip
, CAMR
, camr
);
424 writel(ptcr
, chip
->regs
+ ATMEL_PDC_PTCR
);
428 static snd_pcm_uframes_t
429 atmel_ac97c_playback_pointer(struct snd_pcm_substream
*substream
)
431 struct atmel_ac97c
*chip
= snd_pcm_substream_chip(substream
);
432 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
433 snd_pcm_uframes_t frames
;
436 bytes
= readl(chip
->regs
+ ATMEL_PDC_TPR
);
437 bytes
-= runtime
->dma_addr
;
439 frames
= bytes_to_frames(runtime
, bytes
);
440 if (frames
>= runtime
->buffer_size
)
441 frames
-= runtime
->buffer_size
;
445 static snd_pcm_uframes_t
446 atmel_ac97c_capture_pointer(struct snd_pcm_substream
*substream
)
448 struct atmel_ac97c
*chip
= snd_pcm_substream_chip(substream
);
449 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
450 snd_pcm_uframes_t frames
;
453 bytes
= readl(chip
->regs
+ ATMEL_PDC_RPR
);
454 bytes
-= runtime
->dma_addr
;
456 frames
= bytes_to_frames(runtime
, bytes
);
457 if (frames
>= runtime
->buffer_size
)
458 frames
-= runtime
->buffer_size
;
462 static const struct snd_pcm_ops atmel_ac97_playback_ops
= {
463 .open
= atmel_ac97c_playback_open
,
464 .close
= atmel_ac97c_playback_close
,
465 .ioctl
= snd_pcm_lib_ioctl
,
466 .hw_params
= atmel_ac97c_playback_hw_params
,
467 .hw_free
= snd_pcm_lib_free_pages
,
468 .prepare
= atmel_ac97c_playback_prepare
,
469 .trigger
= atmel_ac97c_playback_trigger
,
470 .pointer
= atmel_ac97c_playback_pointer
,
473 static const struct snd_pcm_ops atmel_ac97_capture_ops
= {
474 .open
= atmel_ac97c_capture_open
,
475 .close
= atmel_ac97c_capture_close
,
476 .ioctl
= snd_pcm_lib_ioctl
,
477 .hw_params
= atmel_ac97c_capture_hw_params
,
478 .hw_free
= snd_pcm_lib_free_pages
,
479 .prepare
= atmel_ac97c_capture_prepare
,
480 .trigger
= atmel_ac97c_capture_trigger
,
481 .pointer
= atmel_ac97c_capture_pointer
,
484 static irqreturn_t
atmel_ac97c_interrupt(int irq
, void *dev
)
486 struct atmel_ac97c
*chip
= (struct atmel_ac97c
*)dev
;
487 irqreturn_t retval
= IRQ_NONE
;
488 u32 sr
= ac97c_readl(chip
, SR
);
489 u32 casr
= ac97c_readl(chip
, CASR
);
490 u32 cosr
= ac97c_readl(chip
, COSR
);
491 u32 camr
= ac97c_readl(chip
, CAMR
);
493 if (sr
& AC97C_SR_CAEVT
) {
494 struct snd_pcm_runtime
*runtime
;
495 int offset
, next_period
, block_size
;
496 dev_dbg(&chip
->pdev
->dev
, "channel A event%s%s%s%s%s%s\n",
497 casr
& AC97C_CSR_OVRUN
? " OVRUN" : "",
498 casr
& AC97C_CSR_RXRDY
? " RXRDY" : "",
499 casr
& AC97C_CSR_UNRUN
? " UNRUN" : "",
500 casr
& AC97C_CSR_TXEMPTY
? " TXEMPTY" : "",
501 casr
& AC97C_CSR_TXRDY
? " TXRDY" : "",
502 !casr
? " NONE" : "");
503 if ((casr
& camr
) & AC97C_CSR_ENDTX
) {
504 runtime
= chip
->playback_substream
->runtime
;
505 block_size
= frames_to_bytes(runtime
, runtime
->period_size
);
506 chip
->playback_period
++;
508 if (chip
->playback_period
== runtime
->periods
)
509 chip
->playback_period
= 0;
510 next_period
= chip
->playback_period
+ 1;
511 if (next_period
== runtime
->periods
)
514 offset
= block_size
* next_period
;
516 writel(runtime
->dma_addr
+ offset
, chip
->regs
+ ATMEL_PDC_TNPR
);
517 writel(block_size
/ 2, chip
->regs
+ ATMEL_PDC_TNCR
);
519 snd_pcm_period_elapsed(chip
->playback_substream
);
521 if ((casr
& camr
) & AC97C_CSR_ENDRX
) {
522 runtime
= chip
->capture_substream
->runtime
;
523 block_size
= frames_to_bytes(runtime
, runtime
->period_size
);
524 chip
->capture_period
++;
526 if (chip
->capture_period
== runtime
->periods
)
527 chip
->capture_period
= 0;
528 next_period
= chip
->capture_period
+ 1;
529 if (next_period
== runtime
->periods
)
532 offset
= block_size
* next_period
;
534 writel(runtime
->dma_addr
+ offset
, chip
->regs
+ ATMEL_PDC_RNPR
);
535 writel(block_size
/ 2, chip
->regs
+ ATMEL_PDC_RNCR
);
536 snd_pcm_period_elapsed(chip
->capture_substream
);
538 retval
= IRQ_HANDLED
;
541 if (sr
& AC97C_SR_COEVT
) {
542 dev_info(&chip
->pdev
->dev
, "codec channel event%s%s%s%s%s\n",
543 cosr
& AC97C_CSR_OVRUN
? " OVRUN" : "",
544 cosr
& AC97C_CSR_RXRDY
? " RXRDY" : "",
545 cosr
& AC97C_CSR_TXEMPTY
? " TXEMPTY" : "",
546 cosr
& AC97C_CSR_TXRDY
? " TXRDY" : "",
547 !cosr
? " NONE" : "");
548 retval
= IRQ_HANDLED
;
551 if (retval
== IRQ_NONE
) {
552 dev_err(&chip
->pdev
->dev
, "spurious interrupt sr 0x%08x "
553 "casr 0x%08x cosr 0x%08x\n", sr
, casr
, cosr
);
559 static const struct ac97_pcm at91_ac97_pcm_defs
[] = {
564 .slots
= ((1 << AC97_SLOT_PCM_LEFT
)
565 | (1 << AC97_SLOT_PCM_RIGHT
)),
573 .slots
= ((1 << AC97_SLOT_PCM_LEFT
)
574 | (1 << AC97_SLOT_PCM_RIGHT
)),
582 .slots
= (1<<AC97_SLOT_MIC
),
587 static int atmel_ac97c_pcm_new(struct atmel_ac97c
*chip
)
590 struct snd_pcm_hardware hw
= atmel_ac97c_hw
;
593 retval
= snd_ac97_pcm_assign(chip
->ac97_bus
,
594 ARRAY_SIZE(at91_ac97_pcm_defs
),
599 retval
= snd_pcm_new(chip
->card
, chip
->card
->shortname
, 0, 1, 1, &pcm
);
603 snd_pcm_set_ops(pcm
, SNDRV_PCM_STREAM_CAPTURE
, &atmel_ac97_capture_ops
);
604 snd_pcm_set_ops(pcm
, SNDRV_PCM_STREAM_PLAYBACK
, &atmel_ac97_playback_ops
);
606 retval
= snd_pcm_lib_preallocate_pages_for_all(pcm
, SNDRV_DMA_TYPE_DEV
,
607 &chip
->pdev
->dev
, hw
.periods_min
* hw
.period_bytes_min
,
608 hw
.buffer_bytes_max
);
612 pcm
->private_data
= chip
;
614 strcpy(pcm
->name
, chip
->card
->shortname
);
620 static int atmel_ac97c_mixer_new(struct atmel_ac97c
*chip
)
622 struct snd_ac97_template
template;
623 memset(&template, 0, sizeof(template));
624 template.private_data
= chip
;
625 return snd_ac97_mixer(chip
->ac97_bus
, &template, &chip
->ac97
);
628 static void atmel_ac97c_write(struct snd_ac97
*ac97
, unsigned short reg
,
631 struct atmel_ac97c
*chip
= get_chip(ac97
);
635 word
= (reg
& 0x7f) << 16 | val
;
638 if (ac97c_readl(chip
, COSR
) & AC97C_CSR_TXRDY
) {
639 ac97c_writel(chip
, COTHR
, word
);
645 dev_dbg(&chip
->pdev
->dev
, "codec write timeout\n");
648 static unsigned short atmel_ac97c_read(struct snd_ac97
*ac97
,
651 struct atmel_ac97c
*chip
= get_chip(ac97
);
656 word
= (0x80 | (reg
& 0x7f)) << 16;
658 if ((ac97c_readl(chip
, COSR
) & AC97C_CSR_RXRDY
) != 0)
659 ac97c_readl(chip
, CORHR
);
665 if ((ac97c_readl(chip
, COSR
) & AC97C_CSR_TXRDY
) != 0) {
666 ac97c_writel(chip
, COTHR
, word
);
678 if ((ac97c_readl(chip
, COSR
) & AC97C_CSR_RXRDY
) != 0) {
679 unsigned short val
= ac97c_readl(chip
, CORHR
);
690 dev_dbg(&chip
->pdev
->dev
, "codec read timeout\n");
694 static void atmel_ac97c_reset(struct atmel_ac97c
*chip
)
696 ac97c_writel(chip
, MR
, 0);
697 ac97c_writel(chip
, MR
, AC97C_MR_ENA
);
698 ac97c_writel(chip
, CAMR
, 0);
699 ac97c_writel(chip
, COMR
, 0);
701 if (!IS_ERR(chip
->reset_pin
)) {
702 gpiod_set_value(chip
->reset_pin
, 0);
703 /* AC97 v2.2 specifications says minimum 1 us. */
705 gpiod_set_value(chip
->reset_pin
, 1);
707 ac97c_writel(chip
, MR
, AC97C_MR_WRST
| AC97C_MR_ENA
);
709 ac97c_writel(chip
, MR
, AC97C_MR_ENA
);
713 static const struct of_device_id atmel_ac97c_dt_ids
[] = {
714 { .compatible
= "atmel,at91sam9263-ac97c", },
717 MODULE_DEVICE_TABLE(of
, atmel_ac97c_dt_ids
);
719 static int atmel_ac97c_probe(struct platform_device
*pdev
)
721 struct device
*dev
= &pdev
->dev
;
722 struct snd_card
*card
;
723 struct atmel_ac97c
*chip
;
724 struct resource
*regs
;
726 static struct snd_ac97_bus_ops ops
= {
727 .write
= atmel_ac97c_write
,
728 .read
= atmel_ac97c_read
,
733 regs
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
735 dev_dbg(&pdev
->dev
, "no memory resource\n");
739 irq
= platform_get_irq(pdev
, 0);
741 dev_dbg(&pdev
->dev
, "could not get irq: %d\n", irq
);
745 pclk
= clk_get(&pdev
->dev
, "ac97_clk");
747 dev_dbg(&pdev
->dev
, "no peripheral clock\n");
748 return PTR_ERR(pclk
);
750 retval
= clk_prepare_enable(pclk
);
752 goto err_prepare_enable
;
754 retval
= snd_card_new(&pdev
->dev
, SNDRV_DEFAULT_IDX1
,
755 SNDRV_DEFAULT_STR1
, THIS_MODULE
,
756 sizeof(struct atmel_ac97c
), &card
);
758 dev_dbg(&pdev
->dev
, "could not create sound card device\n");
759 goto err_snd_card_new
;
762 chip
= get_chip(card
);
764 retval
= request_irq(irq
, atmel_ac97c_interrupt
, 0, "AC97C", chip
);
766 dev_dbg(&pdev
->dev
, "unable to request irq %d\n", irq
);
767 goto err_request_irq
;
771 spin_lock_init(&chip
->lock
);
773 strcpy(card
->driver
, "Atmel AC97C");
774 strcpy(card
->shortname
, "Atmel AC97C");
775 sprintf(card
->longname
, "Atmel AC97 controller");
780 chip
->regs
= ioremap(regs
->start
, resource_size(regs
));
783 dev_dbg(&pdev
->dev
, "could not remap register memory\n");
788 chip
->reset_pin
= devm_gpiod_get_index(dev
, "ac97", 2, GPIOD_OUT_HIGH
);
789 if (IS_ERR(chip
->reset_pin
))
790 dev_dbg(dev
, "reset pin not available\n");
792 atmel_ac97c_reset(chip
);
794 /* Enable overrun interrupt from codec channel */
795 ac97c_writel(chip
, COMR
, AC97C_CSR_OVRUN
);
796 ac97c_writel(chip
, IER
, ac97c_readl(chip
, IMR
) | AC97C_SR_COEVT
);
798 retval
= snd_ac97_bus(card
, 0, &ops
, chip
, &chip
->ac97_bus
);
800 dev_dbg(&pdev
->dev
, "could not register on ac97 bus\n");
804 retval
= atmel_ac97c_mixer_new(chip
);
806 dev_dbg(&pdev
->dev
, "could not register ac97 mixer\n");
810 retval
= atmel_ac97c_pcm_new(chip
);
812 dev_dbg(&pdev
->dev
, "could not register ac97 pcm device\n");
816 retval
= snd_card_register(card
);
818 dev_dbg(&pdev
->dev
, "could not register sound card\n");
822 platform_set_drvdata(pdev
, card
);
824 dev_info(&pdev
->dev
, "Atmel AC97 controller at 0x%p, irq = %d\n",
836 clk_disable_unprepare(pclk
);
842 #ifdef CONFIG_PM_SLEEP
843 static int atmel_ac97c_suspend(struct device
*pdev
)
845 struct snd_card
*card
= dev_get_drvdata(pdev
);
846 struct atmel_ac97c
*chip
= card
->private_data
;
848 clk_disable_unprepare(chip
->pclk
);
852 static int atmel_ac97c_resume(struct device
*pdev
)
854 struct snd_card
*card
= dev_get_drvdata(pdev
);
855 struct atmel_ac97c
*chip
= card
->private_data
;
856 int ret
= clk_prepare_enable(chip
->pclk
);
861 static SIMPLE_DEV_PM_OPS(atmel_ac97c_pm
, atmel_ac97c_suspend
, atmel_ac97c_resume
);
862 #define ATMEL_AC97C_PM_OPS &atmel_ac97c_pm
864 #define ATMEL_AC97C_PM_OPS NULL
867 static int atmel_ac97c_remove(struct platform_device
*pdev
)
869 struct snd_card
*card
= platform_get_drvdata(pdev
);
870 struct atmel_ac97c
*chip
= get_chip(card
);
872 ac97c_writel(chip
, CAMR
, 0);
873 ac97c_writel(chip
, COMR
, 0);
874 ac97c_writel(chip
, MR
, 0);
876 clk_disable_unprepare(chip
->pclk
);
879 free_irq(chip
->irq
, chip
);
886 static struct platform_driver atmel_ac97c_driver
= {
887 .probe
= atmel_ac97c_probe
,
888 .remove
= atmel_ac97c_remove
,
890 .name
= "atmel_ac97c",
891 .pm
= ATMEL_AC97C_PM_OPS
,
892 .of_match_table
= atmel_ac97c_dt_ids
,
895 module_platform_driver(atmel_ac97c_driver
);
897 MODULE_LICENSE("GPL");
898 MODULE_DESCRIPTION("Driver for Atmel AC97 controller");
899 MODULE_AUTHOR("Hans-Christian Egtvedt <egtvedt@samfundet.no>");