[ALSA] sun-cs4231: improved waiting after MCE down
[linux-2.6/mini2440.git] / sound / sparc / cs4231.c
blobab39860e240418ee8219279ecc3545f96165786e
1 /*
2 * Driver for CS4231 sound chips found on Sparcs.
3 * Copyright (C) 2002 David S. Miller <davem@redhat.com>
5 * Based entirely upon drivers/sbus/audio/cs4231.c which is:
6 * Copyright (C) 1996, 1997, 1998 Derrick J Brashear (shadow@andrew.cmu.edu)
7 * and also sound/isa/cs423x/cs4231_lib.c which is:
8 * Copyright (c) by Jaroslav Kysela <perex@perex.cz>
9 */
11 #include <linux/module.h>
12 #include <linux/kernel.h>
13 #include <linux/slab.h>
14 #include <linux/delay.h>
15 #include <linux/init.h>
16 #include <linux/interrupt.h>
17 #include <linux/moduleparam.h>
18 #include <linux/irq.h>
19 #include <linux/io.h>
22 #include <sound/driver.h>
23 #include <sound/core.h>
24 #include <sound/pcm.h>
25 #include <sound/info.h>
26 #include <sound/control.h>
27 #include <sound/timer.h>
28 #include <sound/initval.h>
29 #include <sound/pcm_params.h>
31 #ifdef CONFIG_SBUS
32 #define SBUS_SUPPORT
33 #include <asm/sbus.h>
34 #endif
36 #if defined(CONFIG_PCI) && defined(CONFIG_SPARC64)
37 #define EBUS_SUPPORT
38 #include <linux/pci.h>
39 #include <asm/ebus.h>
40 #endif
42 static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */
43 static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */
44 /* Enable this card */
45 static int enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_PNP;
47 module_param_array(index, int, NULL, 0444);
48 MODULE_PARM_DESC(index, "Index value for Sun CS4231 soundcard.");
49 module_param_array(id, charp, NULL, 0444);
50 MODULE_PARM_DESC(id, "ID string for Sun CS4231 soundcard.");
51 module_param_array(enable, bool, NULL, 0444);
52 MODULE_PARM_DESC(enable, "Enable Sun CS4231 soundcard.");
53 MODULE_AUTHOR("Jaroslav Kysela, Derrick J. Brashear and David S. Miller");
54 MODULE_DESCRIPTION("Sun CS4231");
55 MODULE_LICENSE("GPL");
56 MODULE_SUPPORTED_DEVICE("{{Sun,CS4231}}");
58 #ifdef SBUS_SUPPORT
59 struct sbus_dma_info {
60 spinlock_t lock; /* DMA access lock */
61 int dir;
62 void __iomem *regs;
64 #endif
66 struct snd_cs4231;
67 struct cs4231_dma_control {
68 void (*prepare)(struct cs4231_dma_control *dma_cont,
69 int dir);
70 void (*enable)(struct cs4231_dma_control *dma_cont, int on);
71 int (*request)(struct cs4231_dma_control *dma_cont,
72 dma_addr_t bus_addr, size_t len);
73 unsigned int (*address)(struct cs4231_dma_control *dma_cont);
74 void (*preallocate)(struct snd_cs4231 *chip,
75 struct snd_pcm *pcm);
76 #ifdef EBUS_SUPPORT
77 struct ebus_dma_info ebus_info;
78 #endif
79 #ifdef SBUS_SUPPORT
80 struct sbus_dma_info sbus_info;
81 #endif
84 struct snd_cs4231 {
85 spinlock_t lock; /* registers access lock */
86 void __iomem *port;
88 struct cs4231_dma_control p_dma;
89 struct cs4231_dma_control c_dma;
91 u32 flags;
92 #define CS4231_FLAG_EBUS 0x00000001
93 #define CS4231_FLAG_PLAYBACK 0x00000002
94 #define CS4231_FLAG_CAPTURE 0x00000004
96 struct snd_card *card;
97 struct snd_pcm *pcm;
98 struct snd_pcm_substream *playback_substream;
99 unsigned int p_periods_sent;
100 struct snd_pcm_substream *capture_substream;
101 unsigned int c_periods_sent;
102 struct snd_timer *timer;
104 unsigned short mode;
105 #define CS4231_MODE_NONE 0x0000
106 #define CS4231_MODE_PLAY 0x0001
107 #define CS4231_MODE_RECORD 0x0002
108 #define CS4231_MODE_TIMER 0x0004
109 #define CS4231_MODE_OPEN (CS4231_MODE_PLAY | CS4231_MODE_RECORD | \
110 CS4231_MODE_TIMER)
112 unsigned char image[32]; /* registers image */
113 int mce_bit;
114 int calibrate_mute;
115 struct mutex mce_mutex; /* mutex for mce register */
116 struct mutex open_mutex; /* mutex for ALSA open/close */
118 union {
119 #ifdef SBUS_SUPPORT
120 struct sbus_dev *sdev;
121 #endif
122 #ifdef EBUS_SUPPORT
123 struct pci_dev *pdev;
124 #endif
125 } dev_u;
126 unsigned int irq[2];
127 unsigned int regs_size;
128 struct snd_cs4231 *next;
131 static struct snd_cs4231 *cs4231_list;
133 /* Eventually we can use sound/isa/cs423x/cs4231_lib.c directly, but for
134 * now.... -DaveM
137 /* IO ports */
138 #include <sound/cs4231-regs.h>
140 /* XXX offsets are different than PC ISA chips... */
141 #define CS4231U(chip, x) ((chip)->port + ((c_d_c_CS4231##x) << 2))
143 /* SBUS DMA register defines. */
145 #define APCCSR 0x10UL /* APC DMA CSR */
146 #define APCCVA 0x20UL /* APC Capture DMA Address */
147 #define APCCC 0x24UL /* APC Capture Count */
148 #define APCCNVA 0x28UL /* APC Capture DMA Next Address */
149 #define APCCNC 0x2cUL /* APC Capture Next Count */
150 #define APCPVA 0x30UL /* APC Play DMA Address */
151 #define APCPC 0x34UL /* APC Play Count */
152 #define APCPNVA 0x38UL /* APC Play DMA Next Address */
153 #define APCPNC 0x3cUL /* APC Play Next Count */
155 /* Defines for SBUS DMA-routines */
157 #define APCVA 0x0UL /* APC DMA Address */
158 #define APCC 0x4UL /* APC Count */
159 #define APCNVA 0x8UL /* APC DMA Next Address */
160 #define APCNC 0xcUL /* APC Next Count */
161 #define APC_PLAY 0x30UL /* Play registers start at 0x30 */
162 #define APC_RECORD 0x20UL /* Record registers start at 0x20 */
164 /* APCCSR bits */
166 #define APC_INT_PENDING 0x800000 /* Interrupt Pending */
167 #define APC_PLAY_INT 0x400000 /* Playback interrupt */
168 #define APC_CAPT_INT 0x200000 /* Capture interrupt */
169 #define APC_GENL_INT 0x100000 /* General interrupt */
170 #define APC_XINT_ENA 0x80000 /* General ext int. enable */
171 #define APC_XINT_PLAY 0x40000 /* Playback ext intr */
172 #define APC_XINT_CAPT 0x20000 /* Capture ext intr */
173 #define APC_XINT_GENL 0x10000 /* Error ext intr */
174 #define APC_XINT_EMPT 0x8000 /* Pipe empty interrupt (0 write to pva) */
175 #define APC_XINT_PEMP 0x4000 /* Play pipe empty (pva and pnva not set) */
176 #define APC_XINT_PNVA 0x2000 /* Playback NVA dirty */
177 #define APC_XINT_PENA 0x1000 /* play pipe empty Int enable */
178 #define APC_XINT_COVF 0x800 /* Cap data dropped on floor */
179 #define APC_XINT_CNVA 0x400 /* Capture NVA dirty */
180 #define APC_XINT_CEMP 0x200 /* Capture pipe empty (cva and cnva not set) */
181 #define APC_XINT_CENA 0x100 /* Cap. pipe empty int enable */
182 #define APC_PPAUSE 0x80 /* Pause the play DMA */
183 #define APC_CPAUSE 0x40 /* Pause the capture DMA */
184 #define APC_CDC_RESET 0x20 /* CODEC RESET */
185 #define APC_PDMA_READY 0x08 /* Play DMA Go */
186 #define APC_CDMA_READY 0x04 /* Capture DMA Go */
187 #define APC_CHIP_RESET 0x01 /* Reset the chip */
189 /* EBUS DMA register offsets */
191 #define EBDMA_CSR 0x00UL /* Control/Status */
192 #define EBDMA_ADDR 0x04UL /* DMA Address */
193 #define EBDMA_COUNT 0x08UL /* DMA Count */
196 * Some variables
199 static unsigned char freq_bits[14] = {
200 /* 5510 */ 0x00 | CS4231_XTAL2,
201 /* 6620 */ 0x0E | CS4231_XTAL2,
202 /* 8000 */ 0x00 | CS4231_XTAL1,
203 /* 9600 */ 0x0E | CS4231_XTAL1,
204 /* 11025 */ 0x02 | CS4231_XTAL2,
205 /* 16000 */ 0x02 | CS4231_XTAL1,
206 /* 18900 */ 0x04 | CS4231_XTAL2,
207 /* 22050 */ 0x06 | CS4231_XTAL2,
208 /* 27042 */ 0x04 | CS4231_XTAL1,
209 /* 32000 */ 0x06 | CS4231_XTAL1,
210 /* 33075 */ 0x0C | CS4231_XTAL2,
211 /* 37800 */ 0x08 | CS4231_XTAL2,
212 /* 44100 */ 0x0A | CS4231_XTAL2,
213 /* 48000 */ 0x0C | CS4231_XTAL1
216 static unsigned int rates[14] = {
217 5510, 6620, 8000, 9600, 11025, 16000, 18900, 22050,
218 27042, 32000, 33075, 37800, 44100, 48000
221 static struct snd_pcm_hw_constraint_list hw_constraints_rates = {
222 .count = ARRAY_SIZE(rates),
223 .list = rates,
226 static int snd_cs4231_xrate(struct snd_pcm_runtime *runtime)
228 return snd_pcm_hw_constraint_list(runtime, 0,
229 SNDRV_PCM_HW_PARAM_RATE,
230 &hw_constraints_rates);
233 static unsigned char snd_cs4231_original_image[32] =
235 0x00, /* 00/00 - lic */
236 0x00, /* 01/01 - ric */
237 0x9f, /* 02/02 - la1ic */
238 0x9f, /* 03/03 - ra1ic */
239 0x9f, /* 04/04 - la2ic */
240 0x9f, /* 05/05 - ra2ic */
241 0xbf, /* 06/06 - loc */
242 0xbf, /* 07/07 - roc */
243 0x20, /* 08/08 - pdfr */
244 CS4231_AUTOCALIB, /* 09/09 - ic */
245 0x00, /* 0a/10 - pc */
246 0x00, /* 0b/11 - ti */
247 CS4231_MODE2, /* 0c/12 - mi */
248 0x00, /* 0d/13 - lbc */
249 0x00, /* 0e/14 - pbru */
250 0x00, /* 0f/15 - pbrl */
251 0x80, /* 10/16 - afei */
252 0x01, /* 11/17 - afeii */
253 0x9f, /* 12/18 - llic */
254 0x9f, /* 13/19 - rlic */
255 0x00, /* 14/20 - tlb */
256 0x00, /* 15/21 - thb */
257 0x00, /* 16/22 - la3mic/reserved */
258 0x00, /* 17/23 - ra3mic/reserved */
259 0x00, /* 18/24 - afs */
260 0x00, /* 19/25 - lamoc/version */
261 0x00, /* 1a/26 - mioc */
262 0x00, /* 1b/27 - ramoc/reserved */
263 0x20, /* 1c/28 - cdfr */
264 0x00, /* 1d/29 - res4 */
265 0x00, /* 1e/30 - cbru */
266 0x00, /* 1f/31 - cbrl */
269 static u8 __cs4231_readb(struct snd_cs4231 *cp, void __iomem *reg_addr)
271 #ifdef EBUS_SUPPORT
272 if (cp->flags & CS4231_FLAG_EBUS)
273 return readb(reg_addr);
274 else
275 #endif
276 #ifdef SBUS_SUPPORT
277 return sbus_readb(reg_addr);
278 #endif
281 static void __cs4231_writeb(struct snd_cs4231 *cp, u8 val,
282 void __iomem *reg_addr)
284 #ifdef EBUS_SUPPORT
285 if (cp->flags & CS4231_FLAG_EBUS)
286 return writeb(val, reg_addr);
287 else
288 #endif
289 #ifdef SBUS_SUPPORT
290 return sbus_writeb(val, reg_addr);
291 #endif
295 * Basic I/O functions
298 static void snd_cs4231_ready(struct snd_cs4231 *chip)
300 int timeout;
302 for (timeout = 250; timeout > 0; timeout--) {
303 int val = __cs4231_readb(chip, CS4231U(chip, REGSEL));
304 if ((val & CS4231_INIT) == 0)
305 break;
306 udelay(100);
310 static void snd_cs4231_dout(struct snd_cs4231 *chip, unsigned char reg,
311 unsigned char value)
313 snd_cs4231_ready(chip);
314 #ifdef CONFIG_SND_DEBUG
315 if (__cs4231_readb(chip, CS4231U(chip, REGSEL)) & CS4231_INIT)
316 snd_printdd("out: auto calibration time out - reg = 0x%x, "
317 "value = 0x%x\n",
318 reg, value);
319 #endif
320 __cs4231_writeb(chip, chip->mce_bit | reg, CS4231U(chip, REGSEL));
321 wmb();
322 __cs4231_writeb(chip, value, CS4231U(chip, REG));
323 mb();
326 static inline void snd_cs4231_outm(struct snd_cs4231 *chip, unsigned char reg,
327 unsigned char mask, unsigned char value)
329 unsigned char tmp = (chip->image[reg] & mask) | value;
331 chip->image[reg] = tmp;
332 if (!chip->calibrate_mute)
333 snd_cs4231_dout(chip, reg, tmp);
336 static void snd_cs4231_out(struct snd_cs4231 *chip, unsigned char reg,
337 unsigned char value)
339 snd_cs4231_dout(chip, reg, value);
340 chip->image[reg] = value;
341 mb();
344 static unsigned char snd_cs4231_in(struct snd_cs4231 *chip, unsigned char reg)
346 snd_cs4231_ready(chip);
347 #ifdef CONFIG_SND_DEBUG
348 if (__cs4231_readb(chip, CS4231U(chip, REGSEL)) & CS4231_INIT)
349 snd_printdd("in: auto calibration time out - reg = 0x%x\n",
350 reg);
351 #endif
352 __cs4231_writeb(chip, chip->mce_bit | reg, CS4231U(chip, REGSEL));
353 mb();
354 return __cs4231_readb(chip, CS4231U(chip, REG));
358 * CS4231 detection / MCE routines
361 static void snd_cs4231_busy_wait(struct snd_cs4231 *chip)
363 int timeout;
365 /* looks like this sequence is proper for CS4231A chip (GUS MAX) */
366 for (timeout = 5; timeout > 0; timeout--)
367 __cs4231_readb(chip, CS4231U(chip, REGSEL));
369 /* end of cleanup sequence */
370 for (timeout = 500; timeout > 0; timeout--) {
371 int val = __cs4231_readb(chip, CS4231U(chip, REGSEL));
372 if ((val & CS4231_INIT) == 0)
373 break;
374 msleep(1);
378 static void snd_cs4231_mce_up(struct snd_cs4231 *chip)
380 unsigned long flags;
381 int timeout;
383 spin_lock_irqsave(&chip->lock, flags);
384 snd_cs4231_ready(chip);
385 #ifdef CONFIG_SND_DEBUG
386 if (__cs4231_readb(chip, CS4231U(chip, REGSEL)) & CS4231_INIT)
387 snd_printdd("mce_up - auto calibration time out (0)\n");
388 #endif
389 chip->mce_bit |= CS4231_MCE;
390 timeout = __cs4231_readb(chip, CS4231U(chip, REGSEL));
391 if (timeout == 0x80)
392 snd_printdd("mce_up [%p]: serious init problem - "
393 "codec still busy\n",
394 chip->port);
395 if (!(timeout & CS4231_MCE))
396 __cs4231_writeb(chip, chip->mce_bit | (timeout & 0x1f),
397 CS4231U(chip, REGSEL));
398 spin_unlock_irqrestore(&chip->lock, flags);
401 static void snd_cs4231_mce_down(struct snd_cs4231 *chip)
403 unsigned long flags;
404 int timeout;
406 spin_lock_irqsave(&chip->lock, flags);
407 snd_cs4231_busy_wait(chip);
408 #ifdef CONFIG_SND_DEBUG
409 if (__cs4231_readb(chip, CS4231U(chip, REGSEL)) & CS4231_INIT)
410 snd_printdd("mce_down [%p] - auto calibration time out (0)\n",
411 CS4231U(chip, REGSEL));
412 #endif
413 chip->mce_bit &= ~CS4231_MCE;
414 timeout = __cs4231_readb(chip, CS4231U(chip, REGSEL));
415 __cs4231_writeb(chip, chip->mce_bit | (timeout & 0x1f),
416 CS4231U(chip, REGSEL));
417 if (timeout == 0x80)
418 snd_printdd("mce_down [%p]: serious init problem - "
419 "codec still busy\n",
420 chip->port);
421 if ((timeout & CS4231_MCE) == 0) {
422 spin_unlock_irqrestore(&chip->lock, flags);
423 return;
427 * Wait for (possible -- during init auto-calibration may not be set)
428 * calibration process to start. Needs upto 5 sample periods on AD1848
429 * which at the slowest possible rate of 5.5125 kHz means 907 us.
431 msleep(1);
433 /* check condition up to 250ms */
434 timeout = msecs_to_jiffies(250);
435 while (snd_cs4231_in(chip, CS4231_TEST_INIT) &
436 CS4231_CALIB_IN_PROGRESS) {
438 spin_unlock_irqrestore(&chip->lock, flags);
439 if (timeout <= 0) {
440 snd_printk("mce_down - "
441 "auto calibration time out (2)\n");
442 return;
444 timeout = schedule_timeout(timeout);
445 spin_lock_irqsave(&chip->lock, flags);
448 /* check condition up to 100ms */
449 timeout = msecs_to_jiffies(100);
450 while (__cs4231_readb(chip, CS4231U(chip, REGSEL)) & CS4231_INIT) {
451 spin_unlock_irqrestore(&chip->lock, flags);
452 if (timeout <= 0) {
453 snd_printk("mce_down - "
454 "auto calibration time out (3)\n");
455 return;
457 timeout = schedule_timeout(timeout);
458 spin_lock_irqsave(&chip->lock, flags);
460 spin_unlock_irqrestore(&chip->lock, flags);
463 static void snd_cs4231_advance_dma(struct cs4231_dma_control *dma_cont,
464 struct snd_pcm_substream *substream,
465 unsigned int *periods_sent)
467 struct snd_pcm_runtime *runtime = substream->runtime;
469 while (1) {
470 unsigned int period_size = snd_pcm_lib_period_bytes(substream);
471 unsigned int offset = period_size * (*periods_sent);
473 BUG_ON(period_size >= (1 << 24));
475 if (dma_cont->request(dma_cont,
476 runtime->dma_addr + offset, period_size))
477 return;
478 (*periods_sent) = ((*periods_sent) + 1) % runtime->periods;
482 static void cs4231_dma_trigger(struct snd_pcm_substream *substream,
483 unsigned int what, int on)
485 struct snd_cs4231 *chip = snd_pcm_substream_chip(substream);
486 struct cs4231_dma_control *dma_cont;
488 if (what & CS4231_PLAYBACK_ENABLE) {
489 dma_cont = &chip->p_dma;
490 if (on) {
491 dma_cont->prepare(dma_cont, 0);
492 dma_cont->enable(dma_cont, 1);
493 snd_cs4231_advance_dma(dma_cont,
494 chip->playback_substream,
495 &chip->p_periods_sent);
496 } else {
497 dma_cont->enable(dma_cont, 0);
500 if (what & CS4231_RECORD_ENABLE) {
501 dma_cont = &chip->c_dma;
502 if (on) {
503 dma_cont->prepare(dma_cont, 1);
504 dma_cont->enable(dma_cont, 1);
505 snd_cs4231_advance_dma(dma_cont,
506 chip->capture_substream,
507 &chip->c_periods_sent);
508 } else {
509 dma_cont->enable(dma_cont, 0);
514 static int snd_cs4231_trigger(struct snd_pcm_substream *substream, int cmd)
516 struct snd_cs4231 *chip = snd_pcm_substream_chip(substream);
517 int result = 0;
519 switch (cmd) {
520 case SNDRV_PCM_TRIGGER_START:
521 case SNDRV_PCM_TRIGGER_STOP:
523 unsigned int what = 0;
524 struct snd_pcm_substream *s;
525 unsigned long flags;
527 snd_pcm_group_for_each_entry(s, substream) {
528 if (s == chip->playback_substream) {
529 what |= CS4231_PLAYBACK_ENABLE;
530 snd_pcm_trigger_done(s, substream);
531 } else if (s == chip->capture_substream) {
532 what |= CS4231_RECORD_ENABLE;
533 snd_pcm_trigger_done(s, substream);
537 spin_lock_irqsave(&chip->lock, flags);
538 if (cmd == SNDRV_PCM_TRIGGER_START) {
539 cs4231_dma_trigger(substream, what, 1);
540 chip->image[CS4231_IFACE_CTRL] |= what;
541 } else {
542 cs4231_dma_trigger(substream, what, 0);
543 chip->image[CS4231_IFACE_CTRL] &= ~what;
545 snd_cs4231_out(chip, CS4231_IFACE_CTRL,
546 chip->image[CS4231_IFACE_CTRL]);
547 spin_unlock_irqrestore(&chip->lock, flags);
548 break;
550 default:
551 result = -EINVAL;
552 break;
555 return result;
559 * CODEC I/O
562 static unsigned char snd_cs4231_get_rate(unsigned int rate)
564 int i;
566 for (i = 0; i < 14; i++)
567 if (rate == rates[i])
568 return freq_bits[i];
570 return freq_bits[13];
573 static unsigned char snd_cs4231_get_format(struct snd_cs4231 *chip, int format,
574 int channels)
576 unsigned char rformat;
578 rformat = CS4231_LINEAR_8;
579 switch (format) {
580 case SNDRV_PCM_FORMAT_MU_LAW:
581 rformat = CS4231_ULAW_8;
582 break;
583 case SNDRV_PCM_FORMAT_A_LAW:
584 rformat = CS4231_ALAW_8;
585 break;
586 case SNDRV_PCM_FORMAT_S16_LE:
587 rformat = CS4231_LINEAR_16;
588 break;
589 case SNDRV_PCM_FORMAT_S16_BE:
590 rformat = CS4231_LINEAR_16_BIG;
591 break;
592 case SNDRV_PCM_FORMAT_IMA_ADPCM:
593 rformat = CS4231_ADPCM_16;
594 break;
596 if (channels > 1)
597 rformat |= CS4231_STEREO;
598 return rformat;
601 static void snd_cs4231_calibrate_mute(struct snd_cs4231 *chip, int mute)
603 unsigned long flags;
605 mute = mute ? 1 : 0;
606 spin_lock_irqsave(&chip->lock, flags);
607 if (chip->calibrate_mute == mute) {
608 spin_unlock_irqrestore(&chip->lock, flags);
609 return;
611 if (!mute) {
612 snd_cs4231_dout(chip, CS4231_LEFT_INPUT,
613 chip->image[CS4231_LEFT_INPUT]);
614 snd_cs4231_dout(chip, CS4231_RIGHT_INPUT,
615 chip->image[CS4231_RIGHT_INPUT]);
616 snd_cs4231_dout(chip, CS4231_LOOPBACK,
617 chip->image[CS4231_LOOPBACK]);
619 snd_cs4231_dout(chip, CS4231_AUX1_LEFT_INPUT,
620 mute ? 0x80 : chip->image[CS4231_AUX1_LEFT_INPUT]);
621 snd_cs4231_dout(chip, CS4231_AUX1_RIGHT_INPUT,
622 mute ? 0x80 : chip->image[CS4231_AUX1_RIGHT_INPUT]);
623 snd_cs4231_dout(chip, CS4231_AUX2_LEFT_INPUT,
624 mute ? 0x80 : chip->image[CS4231_AUX2_LEFT_INPUT]);
625 snd_cs4231_dout(chip, CS4231_AUX2_RIGHT_INPUT,
626 mute ? 0x80 : chip->image[CS4231_AUX2_RIGHT_INPUT]);
627 snd_cs4231_dout(chip, CS4231_LEFT_OUTPUT,
628 mute ? 0x80 : chip->image[CS4231_LEFT_OUTPUT]);
629 snd_cs4231_dout(chip, CS4231_RIGHT_OUTPUT,
630 mute ? 0x80 : chip->image[CS4231_RIGHT_OUTPUT]);
631 snd_cs4231_dout(chip, CS4231_LEFT_LINE_IN,
632 mute ? 0x80 : chip->image[CS4231_LEFT_LINE_IN]);
633 snd_cs4231_dout(chip, CS4231_RIGHT_LINE_IN,
634 mute ? 0x80 : chip->image[CS4231_RIGHT_LINE_IN]);
635 snd_cs4231_dout(chip, CS4231_MONO_CTRL,
636 mute ? 0xc0 : chip->image[CS4231_MONO_CTRL]);
637 chip->calibrate_mute = mute;
638 spin_unlock_irqrestore(&chip->lock, flags);
641 static void snd_cs4231_playback_format(struct snd_cs4231 *chip,
642 struct snd_pcm_hw_params *params,
643 unsigned char pdfr)
645 unsigned long flags;
647 mutex_lock(&chip->mce_mutex);
648 snd_cs4231_calibrate_mute(chip, 1);
650 snd_cs4231_mce_up(chip);
652 spin_lock_irqsave(&chip->lock, flags);
653 snd_cs4231_out(chip, CS4231_PLAYBK_FORMAT,
654 (chip->image[CS4231_IFACE_CTRL] & CS4231_RECORD_ENABLE) ?
655 (pdfr & 0xf0) | (chip->image[CS4231_REC_FORMAT] & 0x0f) :
656 pdfr);
657 spin_unlock_irqrestore(&chip->lock, flags);
659 snd_cs4231_mce_down(chip);
661 snd_cs4231_calibrate_mute(chip, 0);
662 mutex_unlock(&chip->mce_mutex);
665 static void snd_cs4231_capture_format(struct snd_cs4231 *chip,
666 struct snd_pcm_hw_params *params,
667 unsigned char cdfr)
669 unsigned long flags;
671 mutex_lock(&chip->mce_mutex);
672 snd_cs4231_calibrate_mute(chip, 1);
674 snd_cs4231_mce_up(chip);
676 spin_lock_irqsave(&chip->lock, flags);
677 if (!(chip->image[CS4231_IFACE_CTRL] & CS4231_PLAYBACK_ENABLE)) {
678 snd_cs4231_out(chip, CS4231_PLAYBK_FORMAT,
679 ((chip->image[CS4231_PLAYBK_FORMAT]) & 0xf0) |
680 (cdfr & 0x0f));
681 spin_unlock_irqrestore(&chip->lock, flags);
682 snd_cs4231_mce_down(chip);
683 snd_cs4231_mce_up(chip);
684 spin_lock_irqsave(&chip->lock, flags);
686 snd_cs4231_out(chip, CS4231_REC_FORMAT, cdfr);
687 spin_unlock_irqrestore(&chip->lock, flags);
689 snd_cs4231_mce_down(chip);
691 snd_cs4231_calibrate_mute(chip, 0);
692 mutex_unlock(&chip->mce_mutex);
696 * Timer interface
699 static unsigned long snd_cs4231_timer_resolution(struct snd_timer *timer)
701 struct snd_cs4231 *chip = snd_timer_chip(timer);
703 return chip->image[CS4231_PLAYBK_FORMAT] & 1 ? 9969 : 9920;
706 static int snd_cs4231_timer_start(struct snd_timer *timer)
708 unsigned long flags;
709 unsigned int ticks;
710 struct snd_cs4231 *chip = snd_timer_chip(timer);
712 spin_lock_irqsave(&chip->lock, flags);
713 ticks = timer->sticks;
714 if ((chip->image[CS4231_ALT_FEATURE_1] & CS4231_TIMER_ENABLE) == 0 ||
715 (unsigned char)(ticks >> 8) != chip->image[CS4231_TIMER_HIGH] ||
716 (unsigned char)ticks != chip->image[CS4231_TIMER_LOW]) {
717 snd_cs4231_out(chip, CS4231_TIMER_HIGH,
718 chip->image[CS4231_TIMER_HIGH] =
719 (unsigned char) (ticks >> 8));
720 snd_cs4231_out(chip, CS4231_TIMER_LOW,
721 chip->image[CS4231_TIMER_LOW] =
722 (unsigned char) ticks);
723 snd_cs4231_out(chip, CS4231_ALT_FEATURE_1,
724 chip->image[CS4231_ALT_FEATURE_1] |
725 CS4231_TIMER_ENABLE);
727 spin_unlock_irqrestore(&chip->lock, flags);
729 return 0;
732 static int snd_cs4231_timer_stop(struct snd_timer *timer)
734 unsigned long flags;
735 struct snd_cs4231 *chip = snd_timer_chip(timer);
737 spin_lock_irqsave(&chip->lock, flags);
738 chip->image[CS4231_ALT_FEATURE_1] &= ~CS4231_TIMER_ENABLE;
739 snd_cs4231_out(chip, CS4231_ALT_FEATURE_1,
740 chip->image[CS4231_ALT_FEATURE_1]);
741 spin_unlock_irqrestore(&chip->lock, flags);
743 return 0;
746 static void __init snd_cs4231_init(struct snd_cs4231 *chip)
748 unsigned long flags;
750 snd_cs4231_mce_down(chip);
752 #ifdef SNDRV_DEBUG_MCE
753 snd_printdd("init: (1)\n");
754 #endif
755 snd_cs4231_mce_up(chip);
756 spin_lock_irqsave(&chip->lock, flags);
757 chip->image[CS4231_IFACE_CTRL] &= ~(CS4231_PLAYBACK_ENABLE |
758 CS4231_PLAYBACK_PIO |
759 CS4231_RECORD_ENABLE |
760 CS4231_RECORD_PIO |
761 CS4231_CALIB_MODE);
762 chip->image[CS4231_IFACE_CTRL] |= CS4231_AUTOCALIB;
763 snd_cs4231_out(chip, CS4231_IFACE_CTRL, chip->image[CS4231_IFACE_CTRL]);
764 spin_unlock_irqrestore(&chip->lock, flags);
765 snd_cs4231_mce_down(chip);
767 #ifdef SNDRV_DEBUG_MCE
768 snd_printdd("init: (2)\n");
769 #endif
771 snd_cs4231_mce_up(chip);
772 spin_lock_irqsave(&chip->lock, flags);
773 snd_cs4231_out(chip, CS4231_ALT_FEATURE_1,
774 chip->image[CS4231_ALT_FEATURE_1]);
775 spin_unlock_irqrestore(&chip->lock, flags);
776 snd_cs4231_mce_down(chip);
778 #ifdef SNDRV_DEBUG_MCE
779 snd_printdd("init: (3) - afei = 0x%x\n",
780 chip->image[CS4231_ALT_FEATURE_1]);
781 #endif
783 spin_lock_irqsave(&chip->lock, flags);
784 snd_cs4231_out(chip, CS4231_ALT_FEATURE_2,
785 chip->image[CS4231_ALT_FEATURE_2]);
786 spin_unlock_irqrestore(&chip->lock, flags);
788 snd_cs4231_mce_up(chip);
789 spin_lock_irqsave(&chip->lock, flags);
790 snd_cs4231_out(chip, CS4231_PLAYBK_FORMAT,
791 chip->image[CS4231_PLAYBK_FORMAT]);
792 spin_unlock_irqrestore(&chip->lock, flags);
793 snd_cs4231_mce_down(chip);
795 #ifdef SNDRV_DEBUG_MCE
796 snd_printdd("init: (4)\n");
797 #endif
799 snd_cs4231_mce_up(chip);
800 spin_lock_irqsave(&chip->lock, flags);
801 snd_cs4231_out(chip, CS4231_REC_FORMAT, chip->image[CS4231_REC_FORMAT]);
802 spin_unlock_irqrestore(&chip->lock, flags);
803 snd_cs4231_mce_down(chip);
805 #ifdef SNDRV_DEBUG_MCE
806 snd_printdd("init: (5)\n");
807 #endif
810 static int snd_cs4231_open(struct snd_cs4231 *chip, unsigned int mode)
812 unsigned long flags;
814 mutex_lock(&chip->open_mutex);
815 if ((chip->mode & mode)) {
816 mutex_unlock(&chip->open_mutex);
817 return -EAGAIN;
819 if (chip->mode & CS4231_MODE_OPEN) {
820 chip->mode |= mode;
821 mutex_unlock(&chip->open_mutex);
822 return 0;
824 /* ok. now enable and ack CODEC IRQ */
825 spin_lock_irqsave(&chip->lock, flags);
826 snd_cs4231_out(chip, CS4231_IRQ_STATUS, CS4231_PLAYBACK_IRQ |
827 CS4231_RECORD_IRQ |
828 CS4231_TIMER_IRQ);
829 snd_cs4231_out(chip, CS4231_IRQ_STATUS, 0);
830 __cs4231_writeb(chip, 0, CS4231U(chip, STATUS)); /* clear IRQ */
831 __cs4231_writeb(chip, 0, CS4231U(chip, STATUS)); /* clear IRQ */
833 snd_cs4231_out(chip, CS4231_IRQ_STATUS, CS4231_PLAYBACK_IRQ |
834 CS4231_RECORD_IRQ |
835 CS4231_TIMER_IRQ);
836 snd_cs4231_out(chip, CS4231_IRQ_STATUS, 0);
838 spin_unlock_irqrestore(&chip->lock, flags);
840 chip->mode = mode;
841 mutex_unlock(&chip->open_mutex);
842 return 0;
845 static void snd_cs4231_close(struct snd_cs4231 *chip, unsigned int mode)
847 unsigned long flags;
849 mutex_lock(&chip->open_mutex);
850 chip->mode &= ~mode;
851 if (chip->mode & CS4231_MODE_OPEN) {
852 mutex_unlock(&chip->open_mutex);
853 return;
855 snd_cs4231_calibrate_mute(chip, 1);
857 /* disable IRQ */
858 spin_lock_irqsave(&chip->lock, flags);
859 snd_cs4231_out(chip, CS4231_IRQ_STATUS, 0);
860 __cs4231_writeb(chip, 0, CS4231U(chip, STATUS)); /* clear IRQ */
861 __cs4231_writeb(chip, 0, CS4231U(chip, STATUS)); /* clear IRQ */
863 /* now disable record & playback */
865 if (chip->image[CS4231_IFACE_CTRL] &
866 (CS4231_PLAYBACK_ENABLE | CS4231_PLAYBACK_PIO |
867 CS4231_RECORD_ENABLE | CS4231_RECORD_PIO)) {
868 spin_unlock_irqrestore(&chip->lock, flags);
869 snd_cs4231_mce_up(chip);
870 spin_lock_irqsave(&chip->lock, flags);
871 chip->image[CS4231_IFACE_CTRL] &=
872 ~(CS4231_PLAYBACK_ENABLE | CS4231_PLAYBACK_PIO |
873 CS4231_RECORD_ENABLE | CS4231_RECORD_PIO);
874 snd_cs4231_out(chip, CS4231_IFACE_CTRL,
875 chip->image[CS4231_IFACE_CTRL]);
876 spin_unlock_irqrestore(&chip->lock, flags);
877 snd_cs4231_mce_down(chip);
878 spin_lock_irqsave(&chip->lock, flags);
881 /* clear IRQ again */
882 snd_cs4231_out(chip, CS4231_IRQ_STATUS, 0);
883 __cs4231_writeb(chip, 0, CS4231U(chip, STATUS)); /* clear IRQ */
884 __cs4231_writeb(chip, 0, CS4231U(chip, STATUS)); /* clear IRQ */
885 spin_unlock_irqrestore(&chip->lock, flags);
887 snd_cs4231_calibrate_mute(chip, 0);
889 chip->mode = 0;
890 mutex_unlock(&chip->open_mutex);
894 * timer open/close
897 static int snd_cs4231_timer_open(struct snd_timer *timer)
899 struct snd_cs4231 *chip = snd_timer_chip(timer);
900 snd_cs4231_open(chip, CS4231_MODE_TIMER);
901 return 0;
904 static int snd_cs4231_timer_close(struct snd_timer *timer)
906 struct snd_cs4231 *chip = snd_timer_chip(timer);
907 snd_cs4231_close(chip, CS4231_MODE_TIMER);
908 return 0;
911 static struct snd_timer_hardware snd_cs4231_timer_table = {
912 .flags = SNDRV_TIMER_HW_AUTO,
913 .resolution = 9945,
914 .ticks = 65535,
915 .open = snd_cs4231_timer_open,
916 .close = snd_cs4231_timer_close,
917 .c_resolution = snd_cs4231_timer_resolution,
918 .start = snd_cs4231_timer_start,
919 .stop = snd_cs4231_timer_stop,
923 * ok.. exported functions..
926 static int snd_cs4231_playback_hw_params(struct snd_pcm_substream *substream,
927 struct snd_pcm_hw_params *hw_params)
929 struct snd_cs4231 *chip = snd_pcm_substream_chip(substream);
930 unsigned char new_pdfr;
931 int err;
933 err = snd_pcm_lib_malloc_pages(substream,
934 params_buffer_bytes(hw_params));
935 if (err < 0)
936 return err;
937 new_pdfr = snd_cs4231_get_format(chip, params_format(hw_params),
938 params_channels(hw_params)) |
939 snd_cs4231_get_rate(params_rate(hw_params));
940 snd_cs4231_playback_format(chip, hw_params, new_pdfr);
942 return 0;
945 static int snd_cs4231_playback_prepare(struct snd_pcm_substream *substream)
947 struct snd_cs4231 *chip = snd_pcm_substream_chip(substream);
948 struct snd_pcm_runtime *runtime = substream->runtime;
949 unsigned long flags;
951 spin_lock_irqsave(&chip->lock, flags);
953 chip->image[CS4231_IFACE_CTRL] &= ~(CS4231_PLAYBACK_ENABLE |
954 CS4231_PLAYBACK_PIO);
956 BUG_ON(runtime->period_size > 0xffff + 1);
958 chip->p_periods_sent = 0;
959 spin_unlock_irqrestore(&chip->lock, flags);
961 return 0;
964 static int snd_cs4231_capture_hw_params(struct snd_pcm_substream *substream,
965 struct snd_pcm_hw_params *hw_params)
967 struct snd_cs4231 *chip = snd_pcm_substream_chip(substream);
968 unsigned char new_cdfr;
969 int err;
971 err = snd_pcm_lib_malloc_pages(substream,
972 params_buffer_bytes(hw_params));
973 if (err < 0)
974 return err;
975 new_cdfr = snd_cs4231_get_format(chip, params_format(hw_params),
976 params_channels(hw_params)) |
977 snd_cs4231_get_rate(params_rate(hw_params));
978 snd_cs4231_capture_format(chip, hw_params, new_cdfr);
980 return 0;
983 static int snd_cs4231_capture_prepare(struct snd_pcm_substream *substream)
985 struct snd_cs4231 *chip = snd_pcm_substream_chip(substream);
986 unsigned long flags;
988 spin_lock_irqsave(&chip->lock, flags);
989 chip->image[CS4231_IFACE_CTRL] &= ~(CS4231_RECORD_ENABLE |
990 CS4231_RECORD_PIO);
993 chip->c_periods_sent = 0;
994 spin_unlock_irqrestore(&chip->lock, flags);
996 return 0;
999 static void snd_cs4231_overrange(struct snd_cs4231 *chip)
1001 unsigned long flags;
1002 unsigned char res;
1004 spin_lock_irqsave(&chip->lock, flags);
1005 res = snd_cs4231_in(chip, CS4231_TEST_INIT);
1006 spin_unlock_irqrestore(&chip->lock, flags);
1008 /* detect overrange only above 0dB; may be user selectable? */
1009 if (res & (0x08 | 0x02))
1010 chip->capture_substream->runtime->overrange++;
1013 static void snd_cs4231_play_callback(struct snd_cs4231 *chip)
1015 if (chip->image[CS4231_IFACE_CTRL] & CS4231_PLAYBACK_ENABLE) {
1016 snd_pcm_period_elapsed(chip->playback_substream);
1017 snd_cs4231_advance_dma(&chip->p_dma, chip->playback_substream,
1018 &chip->p_periods_sent);
1022 static void snd_cs4231_capture_callback(struct snd_cs4231 *chip)
1024 if (chip->image[CS4231_IFACE_CTRL] & CS4231_RECORD_ENABLE) {
1025 snd_pcm_period_elapsed(chip->capture_substream);
1026 snd_cs4231_advance_dma(&chip->c_dma, chip->capture_substream,
1027 &chip->c_periods_sent);
1031 static snd_pcm_uframes_t snd_cs4231_playback_pointer(
1032 struct snd_pcm_substream *substream)
1034 struct snd_cs4231 *chip = snd_pcm_substream_chip(substream);
1035 struct cs4231_dma_control *dma_cont = &chip->p_dma;
1036 size_t ptr;
1038 if (!(chip->image[CS4231_IFACE_CTRL] & CS4231_PLAYBACK_ENABLE))
1039 return 0;
1040 ptr = dma_cont->address(dma_cont);
1041 if (ptr != 0)
1042 ptr -= substream->runtime->dma_addr;
1044 return bytes_to_frames(substream->runtime, ptr);
1047 static snd_pcm_uframes_t snd_cs4231_capture_pointer(
1048 struct snd_pcm_substream *substream)
1050 struct snd_cs4231 *chip = snd_pcm_substream_chip(substream);
1051 struct cs4231_dma_control *dma_cont = &chip->c_dma;
1052 size_t ptr;
1054 if (!(chip->image[CS4231_IFACE_CTRL] & CS4231_RECORD_ENABLE))
1055 return 0;
1056 ptr = dma_cont->address(dma_cont);
1057 if (ptr != 0)
1058 ptr -= substream->runtime->dma_addr;
1060 return bytes_to_frames(substream->runtime, ptr);
1063 static int __init snd_cs4231_probe(struct snd_cs4231 *chip)
1065 unsigned long flags;
1066 int i;
1067 int id = 0;
1068 int vers = 0;
1069 unsigned char *ptr;
1071 for (i = 0; i < 50; i++) {
1072 mb();
1073 if (__cs4231_readb(chip, CS4231U(chip, REGSEL)) & CS4231_INIT)
1074 msleep(2);
1075 else {
1076 spin_lock_irqsave(&chip->lock, flags);
1077 snd_cs4231_out(chip, CS4231_MISC_INFO, CS4231_MODE2);
1078 id = snd_cs4231_in(chip, CS4231_MISC_INFO) & 0x0f;
1079 vers = snd_cs4231_in(chip, CS4231_VERSION);
1080 spin_unlock_irqrestore(&chip->lock, flags);
1081 if (id == 0x0a)
1082 break; /* this is valid value */
1085 snd_printdd("cs4231: port = %p, id = 0x%x\n", chip->port, id);
1086 if (id != 0x0a)
1087 return -ENODEV; /* no valid device found */
1089 spin_lock_irqsave(&chip->lock, flags);
1091 /* clear any pendings IRQ */
1092 __cs4231_readb(chip, CS4231U(chip, STATUS));
1093 __cs4231_writeb(chip, 0, CS4231U(chip, STATUS));
1094 mb();
1096 spin_unlock_irqrestore(&chip->lock, flags);
1098 chip->image[CS4231_MISC_INFO] = CS4231_MODE2;
1099 chip->image[CS4231_IFACE_CTRL] =
1100 chip->image[CS4231_IFACE_CTRL] & ~CS4231_SINGLE_DMA;
1101 chip->image[CS4231_ALT_FEATURE_1] = 0x80;
1102 chip->image[CS4231_ALT_FEATURE_2] = 0x01;
1103 if (vers & 0x20)
1104 chip->image[CS4231_ALT_FEATURE_2] |= 0x02;
1106 ptr = (unsigned char *) &chip->image;
1108 snd_cs4231_mce_down(chip);
1110 spin_lock_irqsave(&chip->lock, flags);
1112 for (i = 0; i < 32; i++) /* ok.. fill all CS4231 registers */
1113 snd_cs4231_out(chip, i, *ptr++);
1115 spin_unlock_irqrestore(&chip->lock, flags);
1117 snd_cs4231_mce_up(chip);
1119 snd_cs4231_mce_down(chip);
1121 mdelay(2);
1123 return 0; /* all things are ok.. */
1126 static struct snd_pcm_hardware snd_cs4231_playback = {
1127 .info = SNDRV_PCM_INFO_MMAP |
1128 SNDRV_PCM_INFO_INTERLEAVED |
1129 SNDRV_PCM_INFO_MMAP_VALID |
1130 SNDRV_PCM_INFO_SYNC_START,
1131 .formats = SNDRV_PCM_FMTBIT_MU_LAW |
1132 SNDRV_PCM_FMTBIT_A_LAW |
1133 SNDRV_PCM_FMTBIT_IMA_ADPCM |
1134 SNDRV_PCM_FMTBIT_U8 |
1135 SNDRV_PCM_FMTBIT_S16_LE |
1136 SNDRV_PCM_FMTBIT_S16_BE,
1137 .rates = SNDRV_PCM_RATE_KNOT |
1138 SNDRV_PCM_RATE_8000_48000,
1139 .rate_min = 5510,
1140 .rate_max = 48000,
1141 .channels_min = 1,
1142 .channels_max = 2,
1143 .buffer_bytes_max = 32 * 1024,
1144 .period_bytes_min = 64,
1145 .period_bytes_max = 32 * 1024,
1146 .periods_min = 1,
1147 .periods_max = 1024,
1150 static struct snd_pcm_hardware snd_cs4231_capture = {
1151 .info = SNDRV_PCM_INFO_MMAP |
1152 SNDRV_PCM_INFO_INTERLEAVED |
1153 SNDRV_PCM_INFO_MMAP_VALID |
1154 SNDRV_PCM_INFO_SYNC_START,
1155 .formats = SNDRV_PCM_FMTBIT_MU_LAW |
1156 SNDRV_PCM_FMTBIT_A_LAW |
1157 SNDRV_PCM_FMTBIT_IMA_ADPCM |
1158 SNDRV_PCM_FMTBIT_U8 |
1159 SNDRV_PCM_FMTBIT_S16_LE |
1160 SNDRV_PCM_FMTBIT_S16_BE,
1161 .rates = SNDRV_PCM_RATE_KNOT |
1162 SNDRV_PCM_RATE_8000_48000,
1163 .rate_min = 5510,
1164 .rate_max = 48000,
1165 .channels_min = 1,
1166 .channels_max = 2,
1167 .buffer_bytes_max = 32 * 1024,
1168 .period_bytes_min = 64,
1169 .period_bytes_max = 32 * 1024,
1170 .periods_min = 1,
1171 .periods_max = 1024,
1174 static int snd_cs4231_playback_open(struct snd_pcm_substream *substream)
1176 struct snd_cs4231 *chip = snd_pcm_substream_chip(substream);
1177 struct snd_pcm_runtime *runtime = substream->runtime;
1178 int err;
1180 runtime->hw = snd_cs4231_playback;
1182 err = snd_cs4231_open(chip, CS4231_MODE_PLAY);
1183 if (err < 0) {
1184 snd_free_pages(runtime->dma_area, runtime->dma_bytes);
1185 return err;
1187 chip->playback_substream = substream;
1188 chip->p_periods_sent = 0;
1189 snd_pcm_set_sync(substream);
1190 snd_cs4231_xrate(runtime);
1192 return 0;
1195 static int snd_cs4231_capture_open(struct snd_pcm_substream *substream)
1197 struct snd_cs4231 *chip = snd_pcm_substream_chip(substream);
1198 struct snd_pcm_runtime *runtime = substream->runtime;
1199 int err;
1201 runtime->hw = snd_cs4231_capture;
1203 err = snd_cs4231_open(chip, CS4231_MODE_RECORD);
1204 if (err < 0) {
1205 snd_free_pages(runtime->dma_area, runtime->dma_bytes);
1206 return err;
1208 chip->capture_substream = substream;
1209 chip->c_periods_sent = 0;
1210 snd_pcm_set_sync(substream);
1211 snd_cs4231_xrate(runtime);
1213 return 0;
1216 static int snd_cs4231_playback_close(struct snd_pcm_substream *substream)
1218 struct snd_cs4231 *chip = snd_pcm_substream_chip(substream);
1220 snd_cs4231_close(chip, CS4231_MODE_PLAY);
1221 chip->playback_substream = NULL;
1223 return 0;
1226 static int snd_cs4231_capture_close(struct snd_pcm_substream *substream)
1228 struct snd_cs4231 *chip = snd_pcm_substream_chip(substream);
1230 snd_cs4231_close(chip, CS4231_MODE_RECORD);
1231 chip->capture_substream = NULL;
1233 return 0;
1236 /* XXX We can do some power-management, in particular on EBUS using
1237 * XXX the audio AUXIO register...
1240 static struct snd_pcm_ops snd_cs4231_playback_ops = {
1241 .open = snd_cs4231_playback_open,
1242 .close = snd_cs4231_playback_close,
1243 .ioctl = snd_pcm_lib_ioctl,
1244 .hw_params = snd_cs4231_playback_hw_params,
1245 .hw_free = snd_pcm_lib_free_pages,
1246 .prepare = snd_cs4231_playback_prepare,
1247 .trigger = snd_cs4231_trigger,
1248 .pointer = snd_cs4231_playback_pointer,
1251 static struct snd_pcm_ops snd_cs4231_capture_ops = {
1252 .open = snd_cs4231_capture_open,
1253 .close = snd_cs4231_capture_close,
1254 .ioctl = snd_pcm_lib_ioctl,
1255 .hw_params = snd_cs4231_capture_hw_params,
1256 .hw_free = snd_pcm_lib_free_pages,
1257 .prepare = snd_cs4231_capture_prepare,
1258 .trigger = snd_cs4231_trigger,
1259 .pointer = snd_cs4231_capture_pointer,
1262 static int __init snd_cs4231_pcm(struct snd_card *card)
1264 struct snd_cs4231 *chip = card->private_data;
1265 struct snd_pcm *pcm;
1266 int err;
1268 err = snd_pcm_new(card, "CS4231", 0, 1, 1, &pcm);
1269 if (err < 0)
1270 return err;
1272 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK,
1273 &snd_cs4231_playback_ops);
1274 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE,
1275 &snd_cs4231_capture_ops);
1277 /* global setup */
1278 pcm->private_data = chip;
1279 pcm->info_flags = SNDRV_PCM_INFO_JOINT_DUPLEX;
1280 strcpy(pcm->name, "CS4231");
1282 chip->p_dma.preallocate(chip, pcm);
1284 chip->pcm = pcm;
1286 return 0;
1289 static int __init snd_cs4231_timer(struct snd_card *card)
1291 struct snd_cs4231 *chip = card->private_data;
1292 struct snd_timer *timer;
1293 struct snd_timer_id tid;
1294 int err;
1296 /* Timer initialization */
1297 tid.dev_class = SNDRV_TIMER_CLASS_CARD;
1298 tid.dev_sclass = SNDRV_TIMER_SCLASS_NONE;
1299 tid.card = card->number;
1300 tid.device = 0;
1301 tid.subdevice = 0;
1302 err = snd_timer_new(card, "CS4231", &tid, &timer);
1303 if (err < 0)
1304 return err;
1305 strcpy(timer->name, "CS4231");
1306 timer->private_data = chip;
1307 timer->hw = snd_cs4231_timer_table;
1308 chip->timer = timer;
1310 return 0;
1314 * MIXER part
1317 static int snd_cs4231_info_mux(struct snd_kcontrol *kcontrol,
1318 struct snd_ctl_elem_info *uinfo)
1320 static char *texts[4] = {
1321 "Line", "CD", "Mic", "Mix"
1324 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
1325 uinfo->count = 2;
1326 uinfo->value.enumerated.items = 4;
1327 if (uinfo->value.enumerated.item > 3)
1328 uinfo->value.enumerated.item = 3;
1329 strcpy(uinfo->value.enumerated.name,
1330 texts[uinfo->value.enumerated.item]);
1332 return 0;
1335 static int snd_cs4231_get_mux(struct snd_kcontrol *kcontrol,
1336 struct snd_ctl_elem_value *ucontrol)
1338 struct snd_cs4231 *chip = snd_kcontrol_chip(kcontrol);
1339 unsigned long flags;
1341 spin_lock_irqsave(&chip->lock, flags);
1342 ucontrol->value.enumerated.item[0] =
1343 (chip->image[CS4231_LEFT_INPUT] & CS4231_MIXS_ALL) >> 6;
1344 ucontrol->value.enumerated.item[1] =
1345 (chip->image[CS4231_RIGHT_INPUT] & CS4231_MIXS_ALL) >> 6;
1346 spin_unlock_irqrestore(&chip->lock, flags);
1348 return 0;
1351 static int snd_cs4231_put_mux(struct snd_kcontrol *kcontrol,
1352 struct snd_ctl_elem_value *ucontrol)
1354 struct snd_cs4231 *chip = snd_kcontrol_chip(kcontrol);
1355 unsigned long flags;
1356 unsigned short left, right;
1357 int change;
1359 if (ucontrol->value.enumerated.item[0] > 3 ||
1360 ucontrol->value.enumerated.item[1] > 3)
1361 return -EINVAL;
1362 left = ucontrol->value.enumerated.item[0] << 6;
1363 right = ucontrol->value.enumerated.item[1] << 6;
1365 spin_lock_irqsave(&chip->lock, flags);
1367 left = (chip->image[CS4231_LEFT_INPUT] & ~CS4231_MIXS_ALL) | left;
1368 right = (chip->image[CS4231_RIGHT_INPUT] & ~CS4231_MIXS_ALL) | right;
1369 change = left != chip->image[CS4231_LEFT_INPUT] ||
1370 right != chip->image[CS4231_RIGHT_INPUT];
1371 snd_cs4231_out(chip, CS4231_LEFT_INPUT, left);
1372 snd_cs4231_out(chip, CS4231_RIGHT_INPUT, right);
1374 spin_unlock_irqrestore(&chip->lock, flags);
1376 return change;
1379 static int snd_cs4231_info_single(struct snd_kcontrol *kcontrol,
1380 struct snd_ctl_elem_info *uinfo)
1382 int mask = (kcontrol->private_value >> 16) & 0xff;
1384 uinfo->type = (mask == 1) ?
1385 SNDRV_CTL_ELEM_TYPE_BOOLEAN : SNDRV_CTL_ELEM_TYPE_INTEGER;
1386 uinfo->count = 1;
1387 uinfo->value.integer.min = 0;
1388 uinfo->value.integer.max = mask;
1390 return 0;
1393 static int snd_cs4231_get_single(struct snd_kcontrol *kcontrol,
1394 struct snd_ctl_elem_value *ucontrol)
1396 struct snd_cs4231 *chip = snd_kcontrol_chip(kcontrol);
1397 unsigned long flags;
1398 int reg = kcontrol->private_value & 0xff;
1399 int shift = (kcontrol->private_value >> 8) & 0xff;
1400 int mask = (kcontrol->private_value >> 16) & 0xff;
1401 int invert = (kcontrol->private_value >> 24) & 0xff;
1403 spin_lock_irqsave(&chip->lock, flags);
1405 ucontrol->value.integer.value[0] = (chip->image[reg] >> shift) & mask;
1407 spin_unlock_irqrestore(&chip->lock, flags);
1409 if (invert)
1410 ucontrol->value.integer.value[0] =
1411 (mask - ucontrol->value.integer.value[0]);
1413 return 0;
1416 static int snd_cs4231_put_single(struct snd_kcontrol *kcontrol,
1417 struct snd_ctl_elem_value *ucontrol)
1419 struct snd_cs4231 *chip = snd_kcontrol_chip(kcontrol);
1420 unsigned long flags;
1421 int reg = kcontrol->private_value & 0xff;
1422 int shift = (kcontrol->private_value >> 8) & 0xff;
1423 int mask = (kcontrol->private_value >> 16) & 0xff;
1424 int invert = (kcontrol->private_value >> 24) & 0xff;
1425 int change;
1426 unsigned short val;
1428 val = (ucontrol->value.integer.value[0] & mask);
1429 if (invert)
1430 val = mask - val;
1431 val <<= shift;
1433 spin_lock_irqsave(&chip->lock, flags);
1435 val = (chip->image[reg] & ~(mask << shift)) | val;
1436 change = val != chip->image[reg];
1437 snd_cs4231_out(chip, reg, val);
1439 spin_unlock_irqrestore(&chip->lock, flags);
1441 return change;
1444 static int snd_cs4231_info_double(struct snd_kcontrol *kcontrol,
1445 struct snd_ctl_elem_info *uinfo)
1447 int mask = (kcontrol->private_value >> 24) & 0xff;
1449 uinfo->type = mask == 1 ?
1450 SNDRV_CTL_ELEM_TYPE_BOOLEAN : SNDRV_CTL_ELEM_TYPE_INTEGER;
1451 uinfo->count = 2;
1452 uinfo->value.integer.min = 0;
1453 uinfo->value.integer.max = mask;
1455 return 0;
1458 static int snd_cs4231_get_double(struct snd_kcontrol *kcontrol,
1459 struct snd_ctl_elem_value *ucontrol)
1461 struct snd_cs4231 *chip = snd_kcontrol_chip(kcontrol);
1462 unsigned long flags;
1463 int left_reg = kcontrol->private_value & 0xff;
1464 int right_reg = (kcontrol->private_value >> 8) & 0xff;
1465 int shift_left = (kcontrol->private_value >> 16) & 0x07;
1466 int shift_right = (kcontrol->private_value >> 19) & 0x07;
1467 int mask = (kcontrol->private_value >> 24) & 0xff;
1468 int invert = (kcontrol->private_value >> 22) & 1;
1470 spin_lock_irqsave(&chip->lock, flags);
1472 ucontrol->value.integer.value[0] =
1473 (chip->image[left_reg] >> shift_left) & mask;
1474 ucontrol->value.integer.value[1] =
1475 (chip->image[right_reg] >> shift_right) & mask;
1477 spin_unlock_irqrestore(&chip->lock, flags);
1479 if (invert) {
1480 ucontrol->value.integer.value[0] =
1481 (mask - ucontrol->value.integer.value[0]);
1482 ucontrol->value.integer.value[1] =
1483 (mask - ucontrol->value.integer.value[1]);
1486 return 0;
1489 static int snd_cs4231_put_double(struct snd_kcontrol *kcontrol,
1490 struct snd_ctl_elem_value *ucontrol)
1492 struct snd_cs4231 *chip = snd_kcontrol_chip(kcontrol);
1493 unsigned long flags;
1494 int left_reg = kcontrol->private_value & 0xff;
1495 int right_reg = (kcontrol->private_value >> 8) & 0xff;
1496 int shift_left = (kcontrol->private_value >> 16) & 0x07;
1497 int shift_right = (kcontrol->private_value >> 19) & 0x07;
1498 int mask = (kcontrol->private_value >> 24) & 0xff;
1499 int invert = (kcontrol->private_value >> 22) & 1;
1500 int change;
1501 unsigned short val1, val2;
1503 val1 = ucontrol->value.integer.value[0] & mask;
1504 val2 = ucontrol->value.integer.value[1] & mask;
1505 if (invert) {
1506 val1 = mask - val1;
1507 val2 = mask - val2;
1509 val1 <<= shift_left;
1510 val2 <<= shift_right;
1512 spin_lock_irqsave(&chip->lock, flags);
1514 val1 = (chip->image[left_reg] & ~(mask << shift_left)) | val1;
1515 val2 = (chip->image[right_reg] & ~(mask << shift_right)) | val2;
1516 change = val1 != chip->image[left_reg];
1517 change |= val2 != chip->image[right_reg];
1518 snd_cs4231_out(chip, left_reg, val1);
1519 snd_cs4231_out(chip, right_reg, val2);
1521 spin_unlock_irqrestore(&chip->lock, flags);
1523 return change;
1526 #define CS4231_SINGLE(xname, xindex, reg, shift, mask, invert) \
1527 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = (xname), .index = (xindex), \
1528 .info = snd_cs4231_info_single, \
1529 .get = snd_cs4231_get_single, .put = snd_cs4231_put_single, \
1530 .private_value = (reg) | ((shift) << 8) | ((mask) << 16) | ((invert) << 24) }
1532 #define CS4231_DOUBLE(xname, xindex, left_reg, right_reg, shift_left, \
1533 shift_right, mask, invert) \
1534 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = (xname), .index = (xindex), \
1535 .info = snd_cs4231_info_double, \
1536 .get = snd_cs4231_get_double, .put = snd_cs4231_put_double, \
1537 .private_value = (left_reg) | ((right_reg) << 8) | ((shift_left) << 16) | \
1538 ((shift_right) << 19) | ((mask) << 24) | ((invert) << 22) }
1540 static struct snd_kcontrol_new snd_cs4231_controls[] __initdata = {
1541 CS4231_DOUBLE("PCM Playback Switch", 0, CS4231_LEFT_OUTPUT,
1542 CS4231_RIGHT_OUTPUT, 7, 7, 1, 1),
1543 CS4231_DOUBLE("PCM Playback Volume", 0, CS4231_LEFT_OUTPUT,
1544 CS4231_RIGHT_OUTPUT, 0, 0, 63, 1),
1545 CS4231_DOUBLE("Line Playback Switch", 0, CS4231_LEFT_LINE_IN,
1546 CS4231_RIGHT_LINE_IN, 7, 7, 1, 1),
1547 CS4231_DOUBLE("Line Playback Volume", 0, CS4231_LEFT_LINE_IN,
1548 CS4231_RIGHT_LINE_IN, 0, 0, 31, 1),
1549 CS4231_DOUBLE("Aux Playback Switch", 0, CS4231_AUX1_LEFT_INPUT,
1550 CS4231_AUX1_RIGHT_INPUT, 7, 7, 1, 1),
1551 CS4231_DOUBLE("Aux Playback Volume", 0, CS4231_AUX1_LEFT_INPUT,
1552 CS4231_AUX1_RIGHT_INPUT, 0, 0, 31, 1),
1553 CS4231_DOUBLE("Aux Playback Switch", 1, CS4231_AUX2_LEFT_INPUT,
1554 CS4231_AUX2_RIGHT_INPUT, 7, 7, 1, 1),
1555 CS4231_DOUBLE("Aux Playback Volume", 1, CS4231_AUX2_LEFT_INPUT,
1556 CS4231_AUX2_RIGHT_INPUT, 0, 0, 31, 1),
1557 CS4231_SINGLE("Mono Playback Switch", 0, CS4231_MONO_CTRL, 7, 1, 1),
1558 CS4231_SINGLE("Mono Playback Volume", 0, CS4231_MONO_CTRL, 0, 15, 1),
1559 CS4231_SINGLE("Mono Output Playback Switch", 0, CS4231_MONO_CTRL, 6, 1, 1),
1560 CS4231_SINGLE("Mono Output Playback Bypass", 0, CS4231_MONO_CTRL, 5, 1, 0),
1561 CS4231_DOUBLE("Capture Volume", 0, CS4231_LEFT_INPUT, CS4231_RIGHT_INPUT, 0, 0,
1562 15, 0),
1564 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1565 .name = "Capture Source",
1566 .info = snd_cs4231_info_mux,
1567 .get = snd_cs4231_get_mux,
1568 .put = snd_cs4231_put_mux,
1570 CS4231_DOUBLE("Mic Boost", 0, CS4231_LEFT_INPUT, CS4231_RIGHT_INPUT, 5, 5,
1571 1, 0),
1572 CS4231_SINGLE("Loopback Capture Switch", 0, CS4231_LOOPBACK, 0, 1, 0),
1573 CS4231_SINGLE("Loopback Capture Volume", 0, CS4231_LOOPBACK, 2, 63, 1),
1574 /* SPARC specific uses of XCTL{0,1} general purpose outputs. */
1575 CS4231_SINGLE("Line Out Switch", 0, CS4231_PIN_CTRL, 6, 1, 1),
1576 CS4231_SINGLE("Headphone Out Switch", 0, CS4231_PIN_CTRL, 7, 1, 1)
1579 static int __init snd_cs4231_mixer(struct snd_card *card)
1581 struct snd_cs4231 *chip = card->private_data;
1582 int err, idx;
1584 snd_assert(chip != NULL && chip->pcm != NULL, return -EINVAL);
1586 strcpy(card->mixername, chip->pcm->name);
1588 for (idx = 0; idx < ARRAY_SIZE(snd_cs4231_controls); idx++) {
1589 err = snd_ctl_add(card,
1590 snd_ctl_new1(&snd_cs4231_controls[idx], chip));
1591 if (err < 0)
1592 return err;
1594 return 0;
1597 static int dev;
1599 static int __init cs4231_attach_begin(struct snd_card **rcard)
1601 struct snd_card *card;
1602 struct snd_cs4231 *chip;
1604 *rcard = NULL;
1606 if (dev >= SNDRV_CARDS)
1607 return -ENODEV;
1609 if (!enable[dev]) {
1610 dev++;
1611 return -ENOENT;
1614 card = snd_card_new(index[dev], id[dev], THIS_MODULE,
1615 sizeof(struct snd_cs4231));
1616 if (card == NULL)
1617 return -ENOMEM;
1619 strcpy(card->driver, "CS4231");
1620 strcpy(card->shortname, "Sun CS4231");
1622 chip = card->private_data;
1623 chip->card = card;
1625 *rcard = card;
1626 return 0;
1629 static int __init cs4231_attach_finish(struct snd_card *card)
1631 struct snd_cs4231 *chip = card->private_data;
1632 int err;
1634 err = snd_cs4231_pcm(card);
1635 if (err < 0)
1636 goto out_err;
1638 err = snd_cs4231_mixer(card);
1639 if (err < 0)
1640 goto out_err;
1642 err = snd_cs4231_timer(card);
1643 if (err < 0)
1644 goto out_err;
1646 err = snd_card_register(card);
1647 if (err < 0)
1648 goto out_err;
1650 chip->next = cs4231_list;
1651 cs4231_list = chip;
1653 dev++;
1654 return 0;
1656 out_err:
1657 snd_card_free(card);
1658 return err;
1661 #ifdef SBUS_SUPPORT
1663 static irqreturn_t snd_cs4231_sbus_interrupt(int irq, void *dev_id)
1665 unsigned long flags;
1666 unsigned char status;
1667 u32 csr;
1668 struct snd_cs4231 *chip = dev_id;
1670 /*This is IRQ is not raised by the cs4231*/
1671 if (!(__cs4231_readb(chip, CS4231U(chip, STATUS)) & CS4231_GLOBALIRQ))
1672 return IRQ_NONE;
1674 /* ACK the APC interrupt. */
1675 csr = sbus_readl(chip->port + APCCSR);
1677 sbus_writel(csr, chip->port + APCCSR);
1679 if ((csr & APC_PDMA_READY) &&
1680 (csr & APC_PLAY_INT) &&
1681 (csr & APC_XINT_PNVA) &&
1682 !(csr & APC_XINT_EMPT))
1683 snd_cs4231_play_callback(chip);
1685 if ((csr & APC_CDMA_READY) &&
1686 (csr & APC_CAPT_INT) &&
1687 (csr & APC_XINT_CNVA) &&
1688 !(csr & APC_XINT_EMPT))
1689 snd_cs4231_capture_callback(chip);
1691 status = snd_cs4231_in(chip, CS4231_IRQ_STATUS);
1693 if (status & CS4231_TIMER_IRQ) {
1694 if (chip->timer)
1695 snd_timer_interrupt(chip->timer, chip->timer->sticks);
1698 if ((status & CS4231_RECORD_IRQ) && (csr & APC_CDMA_READY))
1699 snd_cs4231_overrange(chip);
1701 /* ACK the CS4231 interrupt. */
1702 spin_lock_irqsave(&chip->lock, flags);
1703 snd_cs4231_outm(chip, CS4231_IRQ_STATUS, ~CS4231_ALL_IRQS | ~status, 0);
1704 spin_unlock_irqrestore(&chip->lock, flags);
1706 return IRQ_HANDLED;
1710 * SBUS DMA routines
1713 static int sbus_dma_request(struct cs4231_dma_control *dma_cont,
1714 dma_addr_t bus_addr, size_t len)
1716 unsigned long flags;
1717 u32 test, csr;
1718 int err;
1719 struct sbus_dma_info *base = &dma_cont->sbus_info;
1721 if (len >= (1 << 24))
1722 return -EINVAL;
1723 spin_lock_irqsave(&base->lock, flags);
1724 csr = sbus_readl(base->regs + APCCSR);
1725 err = -EINVAL;
1726 test = APC_CDMA_READY;
1727 if (base->dir == APC_PLAY)
1728 test = APC_PDMA_READY;
1729 if (!(csr & test))
1730 goto out;
1731 err = -EBUSY;
1732 test = APC_XINT_CNVA;
1733 if (base->dir == APC_PLAY)
1734 test = APC_XINT_PNVA;
1735 if (!(csr & test))
1736 goto out;
1737 err = 0;
1738 sbus_writel(bus_addr, base->regs + base->dir + APCNVA);
1739 sbus_writel(len, base->regs + base->dir + APCNC);
1740 out:
1741 spin_unlock_irqrestore(&base->lock, flags);
1742 return err;
1745 static void sbus_dma_prepare(struct cs4231_dma_control *dma_cont, int d)
1747 unsigned long flags;
1748 u32 csr, test;
1749 struct sbus_dma_info *base = &dma_cont->sbus_info;
1751 spin_lock_irqsave(&base->lock, flags);
1752 csr = sbus_readl(base->regs + APCCSR);
1753 test = APC_GENL_INT | APC_PLAY_INT | APC_XINT_ENA |
1754 APC_XINT_PLAY | APC_XINT_PEMP | APC_XINT_GENL |
1755 APC_XINT_PENA;
1756 if (base->dir == APC_RECORD)
1757 test = APC_GENL_INT | APC_CAPT_INT | APC_XINT_ENA |
1758 APC_XINT_CAPT | APC_XINT_CEMP | APC_XINT_GENL;
1759 csr |= test;
1760 sbus_writel(csr, base->regs + APCCSR);
1761 spin_unlock_irqrestore(&base->lock, flags);
1764 static void sbus_dma_enable(struct cs4231_dma_control *dma_cont, int on)
1766 unsigned long flags;
1767 u32 csr, shift;
1768 struct sbus_dma_info *base = &dma_cont->sbus_info;
1770 spin_lock_irqsave(&base->lock, flags);
1771 if (!on) {
1772 sbus_writel(0, base->regs + base->dir + APCNC);
1773 sbus_writel(0, base->regs + base->dir + APCNVA);
1774 if (base->dir == APC_PLAY) {
1775 sbus_writel(0, base->regs + base->dir + APCC);
1776 sbus_writel(0, base->regs + base->dir + APCVA);
1779 udelay(1200);
1781 csr = sbus_readl(base->regs + APCCSR);
1782 shift = 0;
1783 if (base->dir == APC_PLAY)
1784 shift = 1;
1785 if (on)
1786 csr &= ~(APC_CPAUSE << shift);
1787 else
1788 csr |= (APC_CPAUSE << shift);
1789 sbus_writel(csr, base->regs + APCCSR);
1790 if (on)
1791 csr |= (APC_CDMA_READY << shift);
1792 else
1793 csr &= ~(APC_CDMA_READY << shift);
1794 sbus_writel(csr, base->regs + APCCSR);
1796 spin_unlock_irqrestore(&base->lock, flags);
1799 static unsigned int sbus_dma_addr(struct cs4231_dma_control *dma_cont)
1801 struct sbus_dma_info *base = &dma_cont->sbus_info;
1803 return sbus_readl(base->regs + base->dir + APCVA);
1806 static void sbus_dma_preallocate(struct snd_cs4231 *chip, struct snd_pcm *pcm)
1808 snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_SBUS,
1809 snd_dma_sbus_data(chip->dev_u.sdev),
1810 64 * 1024, 128 * 1024);
1814 * Init and exit routines
1817 static int snd_cs4231_sbus_free(struct snd_cs4231 *chip)
1819 if (chip->irq[0])
1820 free_irq(chip->irq[0], chip);
1822 if (chip->port)
1823 sbus_iounmap(chip->port, chip->regs_size);
1825 return 0;
1828 static int snd_cs4231_sbus_dev_free(struct snd_device *device)
1830 struct snd_cs4231 *cp = device->device_data;
1832 return snd_cs4231_sbus_free(cp);
1835 static struct snd_device_ops snd_cs4231_sbus_dev_ops = {
1836 .dev_free = snd_cs4231_sbus_dev_free,
1839 static int __init snd_cs4231_sbus_create(struct snd_card *card,
1840 struct sbus_dev *sdev,
1841 int dev)
1843 struct snd_cs4231 *chip = card->private_data;
1844 int err;
1846 spin_lock_init(&chip->lock);
1847 spin_lock_init(&chip->c_dma.sbus_info.lock);
1848 spin_lock_init(&chip->p_dma.sbus_info.lock);
1849 mutex_init(&chip->mce_mutex);
1850 mutex_init(&chip->open_mutex);
1851 chip->dev_u.sdev = sdev;
1852 chip->regs_size = sdev->reg_addrs[0].reg_size;
1853 memcpy(&chip->image, &snd_cs4231_original_image,
1854 sizeof(snd_cs4231_original_image));
1856 chip->port = sbus_ioremap(&sdev->resource[0], 0,
1857 chip->regs_size, "cs4231");
1858 if (!chip->port) {
1859 snd_printdd("cs4231-%d: Unable to map chip registers.\n", dev);
1860 return -EIO;
1863 chip->c_dma.sbus_info.regs = chip->port;
1864 chip->p_dma.sbus_info.regs = chip->port;
1865 chip->c_dma.sbus_info.dir = APC_RECORD;
1866 chip->p_dma.sbus_info.dir = APC_PLAY;
1868 chip->p_dma.prepare = sbus_dma_prepare;
1869 chip->p_dma.enable = sbus_dma_enable;
1870 chip->p_dma.request = sbus_dma_request;
1871 chip->p_dma.address = sbus_dma_addr;
1872 chip->p_dma.preallocate = sbus_dma_preallocate;
1874 chip->c_dma.prepare = sbus_dma_prepare;
1875 chip->c_dma.enable = sbus_dma_enable;
1876 chip->c_dma.request = sbus_dma_request;
1877 chip->c_dma.address = sbus_dma_addr;
1878 chip->c_dma.preallocate = sbus_dma_preallocate;
1880 if (request_irq(sdev->irqs[0], snd_cs4231_sbus_interrupt,
1881 IRQF_SHARED, "cs4231", chip)) {
1882 snd_printdd("cs4231-%d: Unable to grab SBUS IRQ %d\n",
1883 dev, sdev->irqs[0]);
1884 snd_cs4231_sbus_free(chip);
1885 return -EBUSY;
1887 chip->irq[0] = sdev->irqs[0];
1889 if (snd_cs4231_probe(chip) < 0) {
1890 snd_cs4231_sbus_free(chip);
1891 return -ENODEV;
1893 snd_cs4231_init(chip);
1895 if ((err = snd_device_new(card, SNDRV_DEV_LOWLEVEL,
1896 chip, &snd_cs4231_sbus_dev_ops)) < 0) {
1897 snd_cs4231_sbus_free(chip);
1898 return err;
1901 return 0;
1904 static int __init cs4231_sbus_attach(struct sbus_dev *sdev)
1906 struct resource *rp = &sdev->resource[0];
1907 struct snd_card *card;
1908 int err;
1910 err = cs4231_attach_begin(&card);
1911 if (err)
1912 return err;
1914 sprintf(card->longname, "%s at 0x%02lx:0x%016Lx, irq %d",
1915 card->shortname,
1916 rp->flags & 0xffL,
1917 (unsigned long long)rp->start,
1918 sdev->irqs[0]);
1920 err = snd_cs4231_sbus_create(card, sdev, dev);
1921 if (err < 0) {
1922 snd_card_free(card);
1923 return err;
1926 return cs4231_attach_finish(card);
1928 #endif
1930 #ifdef EBUS_SUPPORT
1932 static void snd_cs4231_ebus_play_callback(struct ebus_dma_info *p, int event,
1933 void *cookie)
1935 struct snd_cs4231 *chip = cookie;
1937 snd_cs4231_play_callback(chip);
1940 static void snd_cs4231_ebus_capture_callback(struct ebus_dma_info *p,
1941 int event, void *cookie)
1943 struct snd_cs4231 *chip = cookie;
1945 snd_cs4231_capture_callback(chip);
1949 * EBUS DMA wrappers
1952 static int _ebus_dma_request(struct cs4231_dma_control *dma_cont,
1953 dma_addr_t bus_addr, size_t len)
1955 return ebus_dma_request(&dma_cont->ebus_info, bus_addr, len);
1958 static void _ebus_dma_enable(struct cs4231_dma_control *dma_cont, int on)
1960 ebus_dma_enable(&dma_cont->ebus_info, on);
1963 static void _ebus_dma_prepare(struct cs4231_dma_control *dma_cont, int dir)
1965 ebus_dma_prepare(&dma_cont->ebus_info, dir);
1968 static unsigned int _ebus_dma_addr(struct cs4231_dma_control *dma_cont)
1970 return ebus_dma_addr(&dma_cont->ebus_info);
1973 static void _ebus_dma_preallocate(struct snd_cs4231 *chip, struct snd_pcm *pcm)
1975 snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV,
1976 snd_dma_pci_data(chip->dev_u.pdev),
1977 64*1024, 128*1024);
1981 * Init and exit routines
1984 static int snd_cs4231_ebus_free(struct snd_cs4231 *chip)
1986 if (chip->c_dma.ebus_info.regs) {
1987 ebus_dma_unregister(&chip->c_dma.ebus_info);
1988 iounmap(chip->c_dma.ebus_info.regs);
1990 if (chip->p_dma.ebus_info.regs) {
1991 ebus_dma_unregister(&chip->p_dma.ebus_info);
1992 iounmap(chip->p_dma.ebus_info.regs);
1995 if (chip->port)
1996 iounmap(chip->port);
1998 return 0;
2001 static int snd_cs4231_ebus_dev_free(struct snd_device *device)
2003 struct snd_cs4231 *cp = device->device_data;
2005 return snd_cs4231_ebus_free(cp);
2008 static struct snd_device_ops snd_cs4231_ebus_dev_ops = {
2009 .dev_free = snd_cs4231_ebus_dev_free,
2012 static int __init snd_cs4231_ebus_create(struct snd_card *card,
2013 struct linux_ebus_device *edev,
2014 int dev)
2016 struct snd_cs4231 *chip = card->private_data;
2017 int err;
2019 spin_lock_init(&chip->lock);
2020 spin_lock_init(&chip->c_dma.ebus_info.lock);
2021 spin_lock_init(&chip->p_dma.ebus_info.lock);
2022 mutex_init(&chip->mce_mutex);
2023 mutex_init(&chip->open_mutex);
2024 chip->flags |= CS4231_FLAG_EBUS;
2025 chip->dev_u.pdev = edev->bus->self;
2026 memcpy(&chip->image, &snd_cs4231_original_image,
2027 sizeof(snd_cs4231_original_image));
2028 strcpy(chip->c_dma.ebus_info.name, "cs4231(capture)");
2029 chip->c_dma.ebus_info.flags = EBUS_DMA_FLAG_USE_EBDMA_HANDLER;
2030 chip->c_dma.ebus_info.callback = snd_cs4231_ebus_capture_callback;
2031 chip->c_dma.ebus_info.client_cookie = chip;
2032 chip->c_dma.ebus_info.irq = edev->irqs[0];
2033 strcpy(chip->p_dma.ebus_info.name, "cs4231(play)");
2034 chip->p_dma.ebus_info.flags = EBUS_DMA_FLAG_USE_EBDMA_HANDLER;
2035 chip->p_dma.ebus_info.callback = snd_cs4231_ebus_play_callback;
2036 chip->p_dma.ebus_info.client_cookie = chip;
2037 chip->p_dma.ebus_info.irq = edev->irqs[1];
2039 chip->p_dma.prepare = _ebus_dma_prepare;
2040 chip->p_dma.enable = _ebus_dma_enable;
2041 chip->p_dma.request = _ebus_dma_request;
2042 chip->p_dma.address = _ebus_dma_addr;
2043 chip->p_dma.preallocate = _ebus_dma_preallocate;
2045 chip->c_dma.prepare = _ebus_dma_prepare;
2046 chip->c_dma.enable = _ebus_dma_enable;
2047 chip->c_dma.request = _ebus_dma_request;
2048 chip->c_dma.address = _ebus_dma_addr;
2049 chip->c_dma.preallocate = _ebus_dma_preallocate;
2051 chip->port = ioremap(edev->resource[0].start, 0x10);
2052 chip->p_dma.ebus_info.regs = ioremap(edev->resource[1].start, 0x10);
2053 chip->c_dma.ebus_info.regs = ioremap(edev->resource[2].start, 0x10);
2054 if (!chip->port || !chip->p_dma.ebus_info.regs ||
2055 !chip->c_dma.ebus_info.regs) {
2056 snd_cs4231_ebus_free(chip);
2057 snd_printdd("cs4231-%d: Unable to map chip registers.\n", dev);
2058 return -EIO;
2061 if (ebus_dma_register(&chip->c_dma.ebus_info)) {
2062 snd_cs4231_ebus_free(chip);
2063 snd_printdd("cs4231-%d: Unable to register EBUS capture DMA\n",
2064 dev);
2065 return -EBUSY;
2067 if (ebus_dma_irq_enable(&chip->c_dma.ebus_info, 1)) {
2068 snd_cs4231_ebus_free(chip);
2069 snd_printdd("cs4231-%d: Unable to enable EBUS capture IRQ\n",
2070 dev);
2071 return -EBUSY;
2074 if (ebus_dma_register(&chip->p_dma.ebus_info)) {
2075 snd_cs4231_ebus_free(chip);
2076 snd_printdd("cs4231-%d: Unable to register EBUS play DMA\n",
2077 dev);
2078 return -EBUSY;
2080 if (ebus_dma_irq_enable(&chip->p_dma.ebus_info, 1)) {
2081 snd_cs4231_ebus_free(chip);
2082 snd_printdd("cs4231-%d: Unable to enable EBUS play IRQ\n", dev);
2083 return -EBUSY;
2086 if (snd_cs4231_probe(chip) < 0) {
2087 snd_cs4231_ebus_free(chip);
2088 return -ENODEV;
2090 snd_cs4231_init(chip);
2092 if ((err = snd_device_new(card, SNDRV_DEV_LOWLEVEL,
2093 chip, &snd_cs4231_ebus_dev_ops)) < 0) {
2094 snd_cs4231_ebus_free(chip);
2095 return err;
2098 return 0;
2101 static int __init cs4231_ebus_attach(struct linux_ebus_device *edev)
2103 struct snd_card *card;
2104 int err;
2106 err = cs4231_attach_begin(&card);
2107 if (err)
2108 return err;
2110 sprintf(card->longname, "%s at 0x%lx, irq %d",
2111 card->shortname,
2112 edev->resource[0].start,
2113 edev->irqs[0]);
2115 err = snd_cs4231_ebus_create(card, edev, dev);
2116 if (err < 0) {
2117 snd_card_free(card);
2118 return err;
2121 return cs4231_attach_finish(card);
2123 #endif
2125 static int __init cs4231_init(void)
2127 #ifdef SBUS_SUPPORT
2128 struct sbus_bus *sbus;
2129 struct sbus_dev *sdev;
2130 #endif
2131 #ifdef EBUS_SUPPORT
2132 struct linux_ebus *ebus;
2133 struct linux_ebus_device *edev;
2134 #endif
2135 int found;
2137 found = 0;
2139 #ifdef SBUS_SUPPORT
2140 for_all_sbusdev(sdev, sbus) {
2141 if (!strcmp(sdev->prom_name, "SUNW,CS4231")) {
2142 if (cs4231_sbus_attach(sdev) == 0)
2143 found++;
2146 #endif
2147 #ifdef EBUS_SUPPORT
2148 for_each_ebus(ebus) {
2149 for_each_ebusdev(edev, ebus) {
2150 int match = 0;
2152 if (!strcmp(edev->prom_node->name, "SUNW,CS4231")) {
2153 match = 1;
2154 } else if (!strcmp(edev->prom_node->name, "audio")) {
2155 const char *compat;
2157 compat = of_get_property(edev->prom_node,
2158 "compatible", NULL);
2159 if (compat && !strcmp(compat, "SUNW,CS4231"))
2160 match = 1;
2163 if (match &&
2164 cs4231_ebus_attach(edev) == 0)
2165 found++;
2168 #endif
2171 return (found > 0) ? 0 : -EIO;
2174 static void __exit cs4231_exit(void)
2176 struct snd_cs4231 *p = cs4231_list;
2178 while (p != NULL) {
2179 struct snd_cs4231 *next = p->next;
2181 snd_card_free(p->card);
2183 p = next;
2186 cs4231_list = NULL;
2189 module_init(cs4231_init);
2190 module_exit(cs4231_exit);