2 * Copyright (c) by Jaroslav Kysela <perex@suse.cz>
3 * Routines for control of CS4231(A)/CS4232/InterWave & compatible chips
6 * - sometimes record brokes playback with WSS portion of
8 * - CS4231 (GUS MAX) - still trouble with occasional noises
9 * - broken initialization?
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
27 #include <sound/driver.h>
28 #include <linux/delay.h>
30 #include <linux/init.h>
31 #include <linux/interrupt.h>
32 #include <linux/slab.h>
33 #include <linux/ioport.h>
34 #include <sound/core.h>
35 #include <sound/cs4231.h>
36 #include <sound/pcm_params.h>
42 MODULE_AUTHOR("Jaroslav Kysela <perex@suse.cz>");
43 MODULE_DESCRIPTION("Routines for control of CS4231(A)/CS4232/InterWave & compatible chips");
44 MODULE_LICENSE("GPL");
47 #define SNDRV_DEBUG_MCE
54 static unsigned char freq_bits
[14] = {
55 /* 5510 */ 0x00 | CS4231_XTAL2
,
56 /* 6620 */ 0x0E | CS4231_XTAL2
,
57 /* 8000 */ 0x00 | CS4231_XTAL1
,
58 /* 9600 */ 0x0E | CS4231_XTAL1
,
59 /* 11025 */ 0x02 | CS4231_XTAL2
,
60 /* 16000 */ 0x02 | CS4231_XTAL1
,
61 /* 18900 */ 0x04 | CS4231_XTAL2
,
62 /* 22050 */ 0x06 | CS4231_XTAL2
,
63 /* 27042 */ 0x04 | CS4231_XTAL1
,
64 /* 32000 */ 0x06 | CS4231_XTAL1
,
65 /* 33075 */ 0x0C | CS4231_XTAL2
,
66 /* 37800 */ 0x08 | CS4231_XTAL2
,
67 /* 44100 */ 0x0A | CS4231_XTAL2
,
68 /* 48000 */ 0x0C | CS4231_XTAL1
71 static unsigned int rates
[14] = {
72 5510, 6620, 8000, 9600, 11025, 16000, 18900, 22050,
73 27042, 32000, 33075, 37800, 44100, 48000
76 static struct snd_pcm_hw_constraint_list hw_constraints_rates
= {
82 static int snd_cs4231_xrate(struct snd_pcm_runtime
*runtime
)
84 return snd_pcm_hw_constraint_list(runtime
, 0, SNDRV_PCM_HW_PARAM_RATE
, &hw_constraints_rates
);
87 static unsigned char snd_cs4231_original_image
[32] =
89 0x00, /* 00/00 - lic */
90 0x00, /* 01/01 - ric */
91 0x9f, /* 02/02 - la1ic */
92 0x9f, /* 03/03 - ra1ic */
93 0x9f, /* 04/04 - la2ic */
94 0x9f, /* 05/05 - ra2ic */
95 0xbf, /* 06/06 - loc */
96 0xbf, /* 07/07 - roc */
97 0x20, /* 08/08 - pdfr */
98 CS4231_AUTOCALIB
, /* 09/09 - ic */
99 0x00, /* 0a/10 - pc */
100 0x00, /* 0b/11 - ti */
101 CS4231_MODE2
, /* 0c/12 - mi */
102 0xfc, /* 0d/13 - lbc */
103 0x00, /* 0e/14 - pbru */
104 0x00, /* 0f/15 - pbrl */
105 0x80, /* 10/16 - afei */
106 0x01, /* 11/17 - afeii */
107 0x9f, /* 12/18 - llic */
108 0x9f, /* 13/19 - rlic */
109 0x00, /* 14/20 - tlb */
110 0x00, /* 15/21 - thb */
111 0x00, /* 16/22 - la3mic/reserved */
112 0x00, /* 17/23 - ra3mic/reserved */
113 0x00, /* 18/24 - afs */
114 0x00, /* 19/25 - lamoc/version */
115 0xcf, /* 1a/26 - mioc */
116 0x00, /* 1b/27 - ramoc/reserved */
117 0x20, /* 1c/28 - cdfr */
118 0x00, /* 1d/29 - res4 */
119 0x00, /* 1e/30 - cbru */
120 0x00, /* 1f/31 - cbrl */
124 * Basic I/O functions
127 static inline void cs4231_outb(struct snd_cs4231
*chip
, u8 offset
, u8 val
)
129 outb(val
, chip
->port
+ offset
);
132 static inline u8
cs4231_inb(struct snd_cs4231
*chip
, u8 offset
)
134 return inb(chip
->port
+ offset
);
137 static void snd_cs4231_outm(struct snd_cs4231
*chip
, unsigned char reg
,
138 unsigned char mask
, unsigned char value
)
144 timeout
> 0 && (cs4231_inb(chip
, CS4231P(REGSEL
)) & CS4231_INIT
);
147 #ifdef CONFIG_SND_DEBUG
148 if (cs4231_inb(chip
, CS4231P(REGSEL
)) & CS4231_INIT
)
149 snd_printk("outm: auto calibration time out - reg = 0x%x, value = 0x%x\n", reg
, value
);
151 if (chip
->calibrate_mute
) {
152 chip
->image
[reg
] &= mask
;
153 chip
->image
[reg
] |= value
;
155 cs4231_outb(chip
, CS4231P(REGSEL
), chip
->mce_bit
| reg
);
157 tmp
= (chip
->image
[reg
] & mask
) | value
;
158 cs4231_outb(chip
, CS4231P(REG
), tmp
);
159 chip
->image
[reg
] = tmp
;
164 static void snd_cs4231_dout(struct snd_cs4231
*chip
, unsigned char reg
, unsigned char value
)
169 timeout
> 0 && (cs4231_inb(chip
, CS4231P(REGSEL
)) & CS4231_INIT
);
172 cs4231_outb(chip
, CS4231P(REGSEL
), chip
->mce_bit
| reg
);
173 cs4231_outb(chip
, CS4231P(REG
), value
);
177 void snd_cs4231_out(struct snd_cs4231
*chip
, unsigned char reg
, unsigned char value
)
182 timeout
> 0 && (cs4231_inb(chip
, CS4231P(REGSEL
)) & CS4231_INIT
);
185 #ifdef CONFIG_SND_DEBUG
186 if (cs4231_inb(chip
, CS4231P(REGSEL
)) & CS4231_INIT
)
187 snd_printk("out: auto calibration time out - reg = 0x%x, value = 0x%x\n", reg
, value
);
189 cs4231_outb(chip
, CS4231P(REGSEL
), chip
->mce_bit
| reg
);
190 cs4231_outb(chip
, CS4231P(REG
), value
);
191 chip
->image
[reg
] = value
;
194 printk("codec out - reg 0x%x = 0x%x\n", chip
->mce_bit
| reg
, value
);
198 unsigned char snd_cs4231_in(struct snd_cs4231
*chip
, unsigned char reg
)
203 timeout
> 0 && (cs4231_inb(chip
, CS4231P(REGSEL
)) & CS4231_INIT
);
206 #ifdef CONFIG_SND_DEBUG
207 if (cs4231_inb(chip
, CS4231P(REGSEL
)) & CS4231_INIT
)
208 snd_printk("in: auto calibration time out - reg = 0x%x\n", reg
);
210 cs4231_outb(chip
, CS4231P(REGSEL
), chip
->mce_bit
| reg
);
212 return cs4231_inb(chip
, CS4231P(REG
));
215 void snd_cs4236_ext_out(struct snd_cs4231
*chip
, unsigned char reg
, unsigned char val
)
217 cs4231_outb(chip
, CS4231P(REGSEL
), chip
->mce_bit
| 0x17);
218 cs4231_outb(chip
, CS4231P(REG
), reg
| (chip
->image
[CS4236_EXT_REG
] & 0x01));
219 cs4231_outb(chip
, CS4231P(REG
), val
);
220 chip
->eimage
[CS4236_REG(reg
)] = val
;
222 printk("ext out : reg = 0x%x, val = 0x%x\n", reg
, val
);
226 unsigned char snd_cs4236_ext_in(struct snd_cs4231
*chip
, unsigned char reg
)
228 cs4231_outb(chip
, CS4231P(REGSEL
), chip
->mce_bit
| 0x17);
229 cs4231_outb(chip
, CS4231P(REG
), reg
| (chip
->image
[CS4236_EXT_REG
] & 0x01));
231 return cs4231_inb(chip
, CS4231P(REG
));
235 res
= cs4231_inb(chip
, CS4231P(REG
));
236 printk("ext in : reg = 0x%x, val = 0x%x\n", reg
, res
);
244 static void snd_cs4231_debug(struct snd_cs4231
*chip
)
246 printk("CS4231 REGS: INDEX = 0x%02x ", cs4231_inb(chip
, CS4231P(REGSEL
)));
247 printk(" STATUS = 0x%02x\n", cs4231_inb(chip
, CS4231P(STATUS
)));
248 printk(" 0x00: left input = 0x%02x ", snd_cs4231_in(chip
, 0x00));
249 printk(" 0x10: alt 1 (CFIG 2) = 0x%02x\n", snd_cs4231_in(chip
, 0x10));
250 printk(" 0x01: right input = 0x%02x ", snd_cs4231_in(chip
, 0x01));
251 printk(" 0x11: alt 2 (CFIG 3) = 0x%02x\n", snd_cs4231_in(chip
, 0x11));
252 printk(" 0x02: GF1 left input = 0x%02x ", snd_cs4231_in(chip
, 0x02));
253 printk(" 0x12: left line in = 0x%02x\n", snd_cs4231_in(chip
, 0x12));
254 printk(" 0x03: GF1 right input = 0x%02x ", snd_cs4231_in(chip
, 0x03));
255 printk(" 0x13: right line in = 0x%02x\n", snd_cs4231_in(chip
, 0x13));
256 printk(" 0x04: CD left input = 0x%02x ", snd_cs4231_in(chip
, 0x04));
257 printk(" 0x14: timer low = 0x%02x\n", snd_cs4231_in(chip
, 0x14));
258 printk(" 0x05: CD right input = 0x%02x ", snd_cs4231_in(chip
, 0x05));
259 printk(" 0x15: timer high = 0x%02x\n", snd_cs4231_in(chip
, 0x15));
260 printk(" 0x06: left output = 0x%02x ", snd_cs4231_in(chip
, 0x06));
261 printk(" 0x16: left MIC (PnP) = 0x%02x\n", snd_cs4231_in(chip
, 0x16));
262 printk(" 0x07: right output = 0x%02x ", snd_cs4231_in(chip
, 0x07));
263 printk(" 0x17: right MIC (PnP) = 0x%02x\n", snd_cs4231_in(chip
, 0x17));
264 printk(" 0x08: playback format = 0x%02x ", snd_cs4231_in(chip
, 0x08));
265 printk(" 0x18: IRQ status = 0x%02x\n", snd_cs4231_in(chip
, 0x18));
266 printk(" 0x09: iface (CFIG 1) = 0x%02x ", snd_cs4231_in(chip
, 0x09));
267 printk(" 0x19: left line out = 0x%02x\n", snd_cs4231_in(chip
, 0x19));
268 printk(" 0x0a: pin control = 0x%02x ", snd_cs4231_in(chip
, 0x0a));
269 printk(" 0x1a: mono control = 0x%02x\n", snd_cs4231_in(chip
, 0x1a));
270 printk(" 0x0b: init & status = 0x%02x ", snd_cs4231_in(chip
, 0x0b));
271 printk(" 0x1b: right line out = 0x%02x\n", snd_cs4231_in(chip
, 0x1b));
272 printk(" 0x0c: revision & mode = 0x%02x ", snd_cs4231_in(chip
, 0x0c));
273 printk(" 0x1c: record format = 0x%02x\n", snd_cs4231_in(chip
, 0x1c));
274 printk(" 0x0d: loopback = 0x%02x ", snd_cs4231_in(chip
, 0x0d));
275 printk(" 0x1d: var freq (PnP) = 0x%02x\n", snd_cs4231_in(chip
, 0x1d));
276 printk(" 0x0e: ply upr count = 0x%02x ", snd_cs4231_in(chip
, 0x0e));
277 printk(" 0x1e: ply lwr count = 0x%02x\n", snd_cs4231_in(chip
, 0x1e));
278 printk(" 0x0f: rec upr count = 0x%02x ", snd_cs4231_in(chip
, 0x0f));
279 printk(" 0x1f: rec lwr count = 0x%02x\n", snd_cs4231_in(chip
, 0x1f));
285 * CS4231 detection / MCE routines
288 static void snd_cs4231_busy_wait(struct snd_cs4231
*chip
)
292 /* huh.. looks like this sequence is proper for CS4231A chip (GUS MAX) */
293 for (timeout
= 5; timeout
> 0; timeout
--)
294 cs4231_inb(chip
, CS4231P(REGSEL
));
295 /* end of cleanup sequence */
297 timeout
> 0 && (cs4231_inb(chip
, CS4231P(REGSEL
)) & CS4231_INIT
);
302 void snd_cs4231_mce_up(struct snd_cs4231
*chip
)
307 for (timeout
= 250; timeout
> 0 && (cs4231_inb(chip
, CS4231P(REGSEL
)) & CS4231_INIT
); timeout
--)
309 #ifdef CONFIG_SND_DEBUG
310 if (cs4231_inb(chip
, CS4231P(REGSEL
)) & CS4231_INIT
)
311 snd_printk("mce_up - auto calibration time out (0)\n");
313 spin_lock_irqsave(&chip
->reg_lock
, flags
);
314 chip
->mce_bit
|= CS4231_MCE
;
315 timeout
= cs4231_inb(chip
, CS4231P(REGSEL
));
317 snd_printk("mce_up [0x%lx]: serious init problem - codec still busy\n", chip
->port
);
318 if (!(timeout
& CS4231_MCE
))
319 cs4231_outb(chip
, CS4231P(REGSEL
), chip
->mce_bit
| (timeout
& 0x1f));
320 spin_unlock_irqrestore(&chip
->reg_lock
, flags
);
323 void snd_cs4231_mce_down(struct snd_cs4231
*chip
)
328 snd_cs4231_busy_wait(chip
);
330 printk("(1) timeout = %i\n", timeout
);
332 #ifdef CONFIG_SND_DEBUG
333 if (cs4231_inb(chip
, CS4231P(REGSEL
)) & CS4231_INIT
)
334 snd_printk("mce_down [0x%lx] - auto calibration time out (0)\n", (long)CS4231P(REGSEL
));
336 spin_lock_irqsave(&chip
->reg_lock
, flags
);
337 chip
->mce_bit
&= ~CS4231_MCE
;
338 timeout
= cs4231_inb(chip
, CS4231P(REGSEL
));
339 cs4231_outb(chip
, CS4231P(REGSEL
), chip
->mce_bit
| (timeout
& 0x1f));
340 spin_unlock_irqrestore(&chip
->reg_lock
, flags
);
342 snd_printk("mce_down [0x%lx]: serious init problem - codec still busy\n", chip
->port
);
343 if ((timeout
& CS4231_MCE
) == 0 ||
344 !(chip
->hardware
& (CS4231_HW_CS4231_MASK
| CS4231_HW_CS4232_MASK
))) {
347 snd_cs4231_busy_wait(chip
);
349 /* calibration process */
351 for (timeout
= 500; timeout
> 0 && (snd_cs4231_in(chip
, CS4231_TEST_INIT
) & CS4231_CALIB_IN_PROGRESS
) == 0; timeout
--)
353 if ((snd_cs4231_in(chip
, CS4231_TEST_INIT
) & CS4231_CALIB_IN_PROGRESS
) == 0) {
354 snd_printd("cs4231_mce_down - auto calibration time out (1)\n");
358 printk("(2) timeout = %i, jiffies = %li\n", timeout
, jiffies
);
360 /* in 10 ms increments, check condition, up to 250 ms */
362 while (snd_cs4231_in(chip
, CS4231_TEST_INIT
) & CS4231_CALIB_IN_PROGRESS
) {
364 snd_printk("mce_down - auto calibration time out (2)\n");
370 printk("(3) jiffies = %li\n", jiffies
);
372 /* in 10 ms increments, check condition, up to 100 ms */
374 while (cs4231_inb(chip
, CS4231P(REGSEL
)) & CS4231_INIT
) {
376 snd_printk(KERN_ERR
"mce_down - auto calibration time out (3)\n");
382 printk("(4) jiffies = %li\n", jiffies
);
383 snd_printk("mce_down - exit = 0x%x\n", cs4231_inb(chip
, CS4231P(REGSEL
)));
387 static unsigned int snd_cs4231_get_count(unsigned char format
, unsigned int size
)
389 switch (format
& 0xe0) {
390 case CS4231_LINEAR_16
:
391 case CS4231_LINEAR_16_BIG
:
394 case CS4231_ADPCM_16
:
397 if (format
& CS4231_STEREO
)
402 static int snd_cs4231_trigger(struct snd_pcm_substream
*substream
,
405 struct snd_cs4231
*chip
= snd_pcm_substream_chip(substream
);
408 struct snd_pcm_substream
*s
;
412 printk("codec trigger!!! - what = %i, enable = %i, status = 0x%x\n", what
, enable
, cs4231_inb(chip
, CS4231P(STATUS
)));
416 case SNDRV_PCM_TRIGGER_START
:
417 case SNDRV_PCM_TRIGGER_RESUME
:
419 case SNDRV_PCM_TRIGGER_STOP
:
420 case SNDRV_PCM_TRIGGER_SUSPEND
:
427 snd_pcm_group_for_each_entry(s
, substream
) {
428 if (s
== chip
->playback_substream
) {
429 what
|= CS4231_PLAYBACK_ENABLE
;
430 snd_pcm_trigger_done(s
, substream
);
431 } else if (s
== chip
->capture_substream
) {
432 what
|= CS4231_RECORD_ENABLE
;
433 snd_pcm_trigger_done(s
, substream
);
436 spin_lock(&chip
->reg_lock
);
438 chip
->image
[CS4231_IFACE_CTRL
] |= what
;
440 chip
->trigger(chip
, what
, 1);
442 chip
->image
[CS4231_IFACE_CTRL
] &= ~what
;
444 chip
->trigger(chip
, what
, 0);
446 snd_cs4231_out(chip
, CS4231_IFACE_CTRL
, chip
->image
[CS4231_IFACE_CTRL
]);
447 spin_unlock(&chip
->reg_lock
);
449 snd_cs4231_debug(chip
);
458 static unsigned char snd_cs4231_get_rate(unsigned int rate
)
462 for (i
= 0; i
< 14; i
++)
463 if (rate
== rates
[i
])
466 return freq_bits
[13];
469 static unsigned char snd_cs4231_get_format(struct snd_cs4231
*chip
,
473 unsigned char rformat
;
475 rformat
= CS4231_LINEAR_8
;
477 case SNDRV_PCM_FORMAT_MU_LAW
: rformat
= CS4231_ULAW_8
; break;
478 case SNDRV_PCM_FORMAT_A_LAW
: rformat
= CS4231_ALAW_8
; break;
479 case SNDRV_PCM_FORMAT_S16_LE
: rformat
= CS4231_LINEAR_16
; break;
480 case SNDRV_PCM_FORMAT_S16_BE
: rformat
= CS4231_LINEAR_16_BIG
; break;
481 case SNDRV_PCM_FORMAT_IMA_ADPCM
: rformat
= CS4231_ADPCM_16
; break;
484 rformat
|= CS4231_STEREO
;
486 snd_printk("get_format: 0x%x (mode=0x%x)\n", format
, mode
);
491 static void snd_cs4231_calibrate_mute(struct snd_cs4231
*chip
, int mute
)
496 spin_lock_irqsave(&chip
->reg_lock
, flags
);
497 if (chip
->calibrate_mute
== mute
) {
498 spin_unlock_irqrestore(&chip
->reg_lock
, flags
);
502 snd_cs4231_dout(chip
, CS4231_LEFT_INPUT
, chip
->image
[CS4231_LEFT_INPUT
]);
503 snd_cs4231_dout(chip
, CS4231_RIGHT_INPUT
, chip
->image
[CS4231_RIGHT_INPUT
]);
504 snd_cs4231_dout(chip
, CS4231_LOOPBACK
, chip
->image
[CS4231_LOOPBACK
]);
506 snd_cs4231_dout(chip
, CS4231_AUX1_LEFT_INPUT
, mute
? 0x80 : chip
->image
[CS4231_AUX1_LEFT_INPUT
]);
507 snd_cs4231_dout(chip
, CS4231_AUX1_RIGHT_INPUT
, mute
? 0x80 : chip
->image
[CS4231_AUX1_RIGHT_INPUT
]);
508 snd_cs4231_dout(chip
, CS4231_AUX2_LEFT_INPUT
, mute
? 0x80 : chip
->image
[CS4231_AUX2_LEFT_INPUT
]);
509 snd_cs4231_dout(chip
, CS4231_AUX2_RIGHT_INPUT
, mute
? 0x80 : chip
->image
[CS4231_AUX2_RIGHT_INPUT
]);
510 snd_cs4231_dout(chip
, CS4231_LEFT_OUTPUT
, mute
? 0x80 : chip
->image
[CS4231_LEFT_OUTPUT
]);
511 snd_cs4231_dout(chip
, CS4231_RIGHT_OUTPUT
, mute
? 0x80 : chip
->image
[CS4231_RIGHT_OUTPUT
]);
512 snd_cs4231_dout(chip
, CS4231_LEFT_LINE_IN
, mute
? 0x80 : chip
->image
[CS4231_LEFT_LINE_IN
]);
513 snd_cs4231_dout(chip
, CS4231_RIGHT_LINE_IN
, mute
? 0x80 : chip
->image
[CS4231_RIGHT_LINE_IN
]);
514 snd_cs4231_dout(chip
, CS4231_MONO_CTRL
, mute
? 0xc0 : chip
->image
[CS4231_MONO_CTRL
]);
515 if (chip
->hardware
== CS4231_HW_INTERWAVE
) {
516 snd_cs4231_dout(chip
, CS4231_LEFT_MIC_INPUT
, mute
? 0x80 : chip
->image
[CS4231_LEFT_MIC_INPUT
]);
517 snd_cs4231_dout(chip
, CS4231_RIGHT_MIC_INPUT
, mute
? 0x80 : chip
->image
[CS4231_RIGHT_MIC_INPUT
]);
518 snd_cs4231_dout(chip
, CS4231_LINE_LEFT_OUTPUT
, mute
? 0x80 : chip
->image
[CS4231_LINE_LEFT_OUTPUT
]);
519 snd_cs4231_dout(chip
, CS4231_LINE_RIGHT_OUTPUT
, mute
? 0x80 : chip
->image
[CS4231_LINE_RIGHT_OUTPUT
]);
521 chip
->calibrate_mute
= mute
;
522 spin_unlock_irqrestore(&chip
->reg_lock
, flags
);
525 static void snd_cs4231_playback_format(struct snd_cs4231
*chip
,
526 struct snd_pcm_hw_params
*params
,
532 mutex_lock(&chip
->mce_mutex
);
533 snd_cs4231_calibrate_mute(chip
, 1);
534 if (chip
->hardware
== CS4231_HW_CS4231A
||
535 (chip
->hardware
& CS4231_HW_CS4232_MASK
)) {
536 spin_lock_irqsave(&chip
->reg_lock
, flags
);
537 if ((chip
->image
[CS4231_PLAYBK_FORMAT
] & 0x0f) == (pdfr
& 0x0f)) { /* rate is same? */
538 snd_cs4231_out(chip
, CS4231_ALT_FEATURE_1
, chip
->image
[CS4231_ALT_FEATURE_1
] | 0x10);
539 snd_cs4231_out(chip
, CS4231_PLAYBK_FORMAT
, chip
->image
[CS4231_PLAYBK_FORMAT
] = pdfr
);
540 snd_cs4231_out(chip
, CS4231_ALT_FEATURE_1
, chip
->image
[CS4231_ALT_FEATURE_1
] &= ~0x10);
541 udelay(100); /* Fixes audible clicks at least on GUS MAX */
544 spin_unlock_irqrestore(&chip
->reg_lock
, flags
);
547 snd_cs4231_mce_up(chip
);
548 spin_lock_irqsave(&chip
->reg_lock
, flags
);
549 if (chip
->hardware
!= CS4231_HW_INTERWAVE
&& !chip
->single_dma
) {
550 snd_cs4231_out(chip
, CS4231_PLAYBK_FORMAT
,
551 (chip
->image
[CS4231_IFACE_CTRL
] & CS4231_RECORD_ENABLE
) ?
552 (pdfr
& 0xf0) | (chip
->image
[CS4231_REC_FORMAT
] & 0x0f) :
555 snd_cs4231_out(chip
, CS4231_PLAYBK_FORMAT
, chip
->image
[CS4231_PLAYBK_FORMAT
] = pdfr
);
557 spin_unlock_irqrestore(&chip
->reg_lock
, flags
);
558 snd_cs4231_mce_down(chip
);
560 snd_cs4231_calibrate_mute(chip
, 0);
561 mutex_unlock(&chip
->mce_mutex
);
564 static void snd_cs4231_capture_format(struct snd_cs4231
*chip
,
565 struct snd_pcm_hw_params
*params
,
571 mutex_lock(&chip
->mce_mutex
);
572 snd_cs4231_calibrate_mute(chip
, 1);
573 if (chip
->hardware
== CS4231_HW_CS4231A
||
574 (chip
->hardware
& CS4231_HW_CS4232_MASK
)) {
575 spin_lock_irqsave(&chip
->reg_lock
, flags
);
576 if ((chip
->image
[CS4231_PLAYBK_FORMAT
] & 0x0f) == (cdfr
& 0x0f) || /* rate is same? */
577 (chip
->image
[CS4231_IFACE_CTRL
] & CS4231_PLAYBACK_ENABLE
)) {
578 snd_cs4231_out(chip
, CS4231_ALT_FEATURE_1
, chip
->image
[CS4231_ALT_FEATURE_1
] | 0x20);
579 snd_cs4231_out(chip
, CS4231_REC_FORMAT
, chip
->image
[CS4231_REC_FORMAT
] = cdfr
);
580 snd_cs4231_out(chip
, CS4231_ALT_FEATURE_1
, chip
->image
[CS4231_ALT_FEATURE_1
] &= ~0x20);
583 spin_unlock_irqrestore(&chip
->reg_lock
, flags
);
586 snd_cs4231_mce_up(chip
);
587 spin_lock_irqsave(&chip
->reg_lock
, flags
);
588 if (chip
->hardware
!= CS4231_HW_INTERWAVE
) {
589 if (!(chip
->image
[CS4231_IFACE_CTRL
] & CS4231_PLAYBACK_ENABLE
)) {
590 snd_cs4231_out(chip
, CS4231_PLAYBK_FORMAT
,
591 ((chip
->single_dma
? cdfr
: chip
->image
[CS4231_PLAYBK_FORMAT
]) & 0xf0) |
593 spin_unlock_irqrestore(&chip
->reg_lock
, flags
);
594 snd_cs4231_mce_down(chip
);
595 snd_cs4231_mce_up(chip
);
596 spin_lock_irqsave(&chip
->reg_lock
, flags
);
599 snd_cs4231_out(chip
, CS4231_REC_FORMAT
, cdfr
);
600 spin_unlock_irqrestore(&chip
->reg_lock
, flags
);
601 snd_cs4231_mce_down(chip
);
603 snd_cs4231_calibrate_mute(chip
, 0);
604 mutex_unlock(&chip
->mce_mutex
);
611 static unsigned long snd_cs4231_timer_resolution(struct snd_timer
* timer
)
613 struct snd_cs4231
*chip
= snd_timer_chip(timer
);
614 if (chip
->hardware
& CS4231_HW_CS4236B_MASK
)
617 return chip
->image
[CS4231_PLAYBK_FORMAT
] & 1 ? 9969 : 9920;
620 static int snd_cs4231_timer_start(struct snd_timer
* timer
)
624 struct snd_cs4231
*chip
= snd_timer_chip(timer
);
625 spin_lock_irqsave(&chip
->reg_lock
, flags
);
626 ticks
= timer
->sticks
;
627 if ((chip
->image
[CS4231_ALT_FEATURE_1
] & CS4231_TIMER_ENABLE
) == 0 ||
628 (unsigned char)(ticks
>> 8) != chip
->image
[CS4231_TIMER_HIGH
] ||
629 (unsigned char)ticks
!= chip
->image
[CS4231_TIMER_LOW
]) {
630 snd_cs4231_out(chip
, CS4231_TIMER_HIGH
, chip
->image
[CS4231_TIMER_HIGH
] = (unsigned char) (ticks
>> 8));
631 snd_cs4231_out(chip
, CS4231_TIMER_LOW
, chip
->image
[CS4231_TIMER_LOW
] = (unsigned char) ticks
);
632 snd_cs4231_out(chip
, CS4231_ALT_FEATURE_1
, chip
->image
[CS4231_ALT_FEATURE_1
] | CS4231_TIMER_ENABLE
);
634 spin_unlock_irqrestore(&chip
->reg_lock
, flags
);
638 static int snd_cs4231_timer_stop(struct snd_timer
* timer
)
641 struct snd_cs4231
*chip
= snd_timer_chip(timer
);
642 spin_lock_irqsave(&chip
->reg_lock
, flags
);
643 snd_cs4231_out(chip
, CS4231_ALT_FEATURE_1
, chip
->image
[CS4231_ALT_FEATURE_1
] &= ~CS4231_TIMER_ENABLE
);
644 spin_unlock_irqrestore(&chip
->reg_lock
, flags
);
648 static void snd_cs4231_init(struct snd_cs4231
*chip
)
652 snd_cs4231_mce_down(chip
);
654 #ifdef SNDRV_DEBUG_MCE
655 snd_printk("init: (1)\n");
657 snd_cs4231_mce_up(chip
);
658 spin_lock_irqsave(&chip
->reg_lock
, flags
);
659 chip
->image
[CS4231_IFACE_CTRL
] &= ~(CS4231_PLAYBACK_ENABLE
| CS4231_PLAYBACK_PIO
|
660 CS4231_RECORD_ENABLE
| CS4231_RECORD_PIO
|
662 chip
->image
[CS4231_IFACE_CTRL
] |= CS4231_AUTOCALIB
;
663 snd_cs4231_out(chip
, CS4231_IFACE_CTRL
, chip
->image
[CS4231_IFACE_CTRL
]);
664 spin_unlock_irqrestore(&chip
->reg_lock
, flags
);
665 snd_cs4231_mce_down(chip
);
667 #ifdef SNDRV_DEBUG_MCE
668 snd_printk("init: (2)\n");
671 snd_cs4231_mce_up(chip
);
672 spin_lock_irqsave(&chip
->reg_lock
, flags
);
673 snd_cs4231_out(chip
, CS4231_ALT_FEATURE_1
, chip
->image
[CS4231_ALT_FEATURE_1
]);
674 spin_unlock_irqrestore(&chip
->reg_lock
, flags
);
675 snd_cs4231_mce_down(chip
);
677 #ifdef SNDRV_DEBUG_MCE
678 snd_printk("init: (3) - afei = 0x%x\n", chip
->image
[CS4231_ALT_FEATURE_1
]);
681 spin_lock_irqsave(&chip
->reg_lock
, flags
);
682 snd_cs4231_out(chip
, CS4231_ALT_FEATURE_2
, chip
->image
[CS4231_ALT_FEATURE_2
]);
683 spin_unlock_irqrestore(&chip
->reg_lock
, flags
);
685 snd_cs4231_mce_up(chip
);
686 spin_lock_irqsave(&chip
->reg_lock
, flags
);
687 snd_cs4231_out(chip
, CS4231_PLAYBK_FORMAT
, chip
->image
[CS4231_PLAYBK_FORMAT
]);
688 spin_unlock_irqrestore(&chip
->reg_lock
, flags
);
689 snd_cs4231_mce_down(chip
);
691 #ifdef SNDRV_DEBUG_MCE
692 snd_printk("init: (4)\n");
695 snd_cs4231_mce_up(chip
);
696 spin_lock_irqsave(&chip
->reg_lock
, flags
);
697 snd_cs4231_out(chip
, CS4231_REC_FORMAT
, chip
->image
[CS4231_REC_FORMAT
]);
698 spin_unlock_irqrestore(&chip
->reg_lock
, flags
);
699 snd_cs4231_mce_down(chip
);
701 #ifdef SNDRV_DEBUG_MCE
702 snd_printk("init: (5)\n");
706 static int snd_cs4231_open(struct snd_cs4231
*chip
, unsigned int mode
)
710 mutex_lock(&chip
->open_mutex
);
711 if ((chip
->mode
& mode
) ||
712 ((chip
->mode
& CS4231_MODE_OPEN
) && chip
->single_dma
)) {
713 mutex_unlock(&chip
->open_mutex
);
716 if (chip
->mode
& CS4231_MODE_OPEN
) {
718 mutex_unlock(&chip
->open_mutex
);
721 /* ok. now enable and ack CODEC IRQ */
722 spin_lock_irqsave(&chip
->reg_lock
, flags
);
723 snd_cs4231_out(chip
, CS4231_IRQ_STATUS
, CS4231_PLAYBACK_IRQ
|
726 snd_cs4231_out(chip
, CS4231_IRQ_STATUS
, 0);
727 cs4231_outb(chip
, CS4231P(STATUS
), 0); /* clear IRQ */
728 cs4231_outb(chip
, CS4231P(STATUS
), 0); /* clear IRQ */
729 chip
->image
[CS4231_PIN_CTRL
] |= CS4231_IRQ_ENABLE
;
730 snd_cs4231_out(chip
, CS4231_PIN_CTRL
, chip
->image
[CS4231_PIN_CTRL
]);
731 snd_cs4231_out(chip
, CS4231_IRQ_STATUS
, CS4231_PLAYBACK_IRQ
|
734 snd_cs4231_out(chip
, CS4231_IRQ_STATUS
, 0);
735 spin_unlock_irqrestore(&chip
->reg_lock
, flags
);
738 mutex_unlock(&chip
->open_mutex
);
742 static void snd_cs4231_close(struct snd_cs4231
*chip
, unsigned int mode
)
746 mutex_lock(&chip
->open_mutex
);
748 if (chip
->mode
& CS4231_MODE_OPEN
) {
749 mutex_unlock(&chip
->open_mutex
);
752 snd_cs4231_calibrate_mute(chip
, 1);
755 spin_lock_irqsave(&chip
->reg_lock
, flags
);
756 snd_cs4231_out(chip
, CS4231_IRQ_STATUS
, 0);
757 cs4231_outb(chip
, CS4231P(STATUS
), 0); /* clear IRQ */
758 cs4231_outb(chip
, CS4231P(STATUS
), 0); /* clear IRQ */
759 chip
->image
[CS4231_PIN_CTRL
] &= ~CS4231_IRQ_ENABLE
;
760 snd_cs4231_out(chip
, CS4231_PIN_CTRL
, chip
->image
[CS4231_PIN_CTRL
]);
762 /* now disable record & playback */
764 if (chip
->image
[CS4231_IFACE_CTRL
] & (CS4231_PLAYBACK_ENABLE
| CS4231_PLAYBACK_PIO
|
765 CS4231_RECORD_ENABLE
| CS4231_RECORD_PIO
)) {
766 spin_unlock_irqrestore(&chip
->reg_lock
, flags
);
767 snd_cs4231_mce_up(chip
);
768 spin_lock_irqsave(&chip
->reg_lock
, flags
);
769 chip
->image
[CS4231_IFACE_CTRL
] &= ~(CS4231_PLAYBACK_ENABLE
| CS4231_PLAYBACK_PIO
|
770 CS4231_RECORD_ENABLE
| CS4231_RECORD_PIO
);
771 snd_cs4231_out(chip
, CS4231_IFACE_CTRL
, chip
->image
[CS4231_IFACE_CTRL
]);
772 spin_unlock_irqrestore(&chip
->reg_lock
, flags
);
773 snd_cs4231_mce_down(chip
);
774 spin_lock_irqsave(&chip
->reg_lock
, flags
);
777 /* clear IRQ again */
778 snd_cs4231_out(chip
, CS4231_IRQ_STATUS
, 0);
779 cs4231_outb(chip
, CS4231P(STATUS
), 0); /* clear IRQ */
780 cs4231_outb(chip
, CS4231P(STATUS
), 0); /* clear IRQ */
781 spin_unlock_irqrestore(&chip
->reg_lock
, flags
);
783 snd_cs4231_calibrate_mute(chip
, 0);
786 mutex_unlock(&chip
->open_mutex
);
793 static int snd_cs4231_timer_open(struct snd_timer
* timer
)
795 struct snd_cs4231
*chip
= snd_timer_chip(timer
);
796 snd_cs4231_open(chip
, CS4231_MODE_TIMER
);
800 static int snd_cs4231_timer_close(struct snd_timer
* timer
)
802 struct snd_cs4231
*chip
= snd_timer_chip(timer
);
803 snd_cs4231_close(chip
, CS4231_MODE_TIMER
);
807 static struct snd_timer_hardware snd_cs4231_timer_table
=
809 .flags
= SNDRV_TIMER_HW_AUTO
,
812 .open
= snd_cs4231_timer_open
,
813 .close
= snd_cs4231_timer_close
,
814 .c_resolution
= snd_cs4231_timer_resolution
,
815 .start
= snd_cs4231_timer_start
,
816 .stop
= snd_cs4231_timer_stop
,
820 * ok.. exported functions..
823 static int snd_cs4231_playback_hw_params(struct snd_pcm_substream
*substream
,
824 struct snd_pcm_hw_params
*hw_params
)
826 struct snd_cs4231
*chip
= snd_pcm_substream_chip(substream
);
827 unsigned char new_pdfr
;
830 if ((err
= snd_pcm_lib_malloc_pages(substream
, params_buffer_bytes(hw_params
))) < 0)
832 new_pdfr
= snd_cs4231_get_format(chip
, params_format(hw_params
), params_channels(hw_params
)) |
833 snd_cs4231_get_rate(params_rate(hw_params
));
834 chip
->set_playback_format(chip
, hw_params
, new_pdfr
);
838 static int snd_cs4231_playback_hw_free(struct snd_pcm_substream
*substream
)
840 return snd_pcm_lib_free_pages(substream
);
843 static int snd_cs4231_playback_prepare(struct snd_pcm_substream
*substream
)
845 struct snd_cs4231
*chip
= snd_pcm_substream_chip(substream
);
846 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
848 unsigned int size
= snd_pcm_lib_buffer_bytes(substream
);
849 unsigned int count
= snd_pcm_lib_period_bytes(substream
);
851 spin_lock_irqsave(&chip
->reg_lock
, flags
);
852 chip
->p_dma_size
= size
;
853 chip
->image
[CS4231_IFACE_CTRL
] &= ~(CS4231_PLAYBACK_ENABLE
| CS4231_PLAYBACK_PIO
);
854 snd_dma_program(chip
->dma1
, runtime
->dma_addr
, size
, DMA_MODE_WRITE
| DMA_AUTOINIT
);
855 count
= snd_cs4231_get_count(chip
->image
[CS4231_PLAYBK_FORMAT
], count
) - 1;
856 snd_cs4231_out(chip
, CS4231_PLY_LWR_CNT
, (unsigned char) count
);
857 snd_cs4231_out(chip
, CS4231_PLY_UPR_CNT
, (unsigned char) (count
>> 8));
858 spin_unlock_irqrestore(&chip
->reg_lock
, flags
);
860 snd_cs4231_debug(chip
);
865 static int snd_cs4231_capture_hw_params(struct snd_pcm_substream
*substream
,
866 struct snd_pcm_hw_params
*hw_params
)
868 struct snd_cs4231
*chip
= snd_pcm_substream_chip(substream
);
869 unsigned char new_cdfr
;
872 if ((err
= snd_pcm_lib_malloc_pages(substream
, params_buffer_bytes(hw_params
))) < 0)
874 new_cdfr
= snd_cs4231_get_format(chip
, params_format(hw_params
), params_channels(hw_params
)) |
875 snd_cs4231_get_rate(params_rate(hw_params
));
876 chip
->set_capture_format(chip
, hw_params
, new_cdfr
);
880 static int snd_cs4231_capture_hw_free(struct snd_pcm_substream
*substream
)
882 return snd_pcm_lib_free_pages(substream
);
885 static int snd_cs4231_capture_prepare(struct snd_pcm_substream
*substream
)
887 struct snd_cs4231
*chip
= snd_pcm_substream_chip(substream
);
888 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
890 unsigned int size
= snd_pcm_lib_buffer_bytes(substream
);
891 unsigned int count
= snd_pcm_lib_period_bytes(substream
);
893 spin_lock_irqsave(&chip
->reg_lock
, flags
);
894 chip
->c_dma_size
= size
;
895 chip
->image
[CS4231_IFACE_CTRL
] &= ~(CS4231_RECORD_ENABLE
| CS4231_RECORD_PIO
);
896 snd_dma_program(chip
->dma2
, runtime
->dma_addr
, size
, DMA_MODE_READ
| DMA_AUTOINIT
);
897 count
= snd_cs4231_get_count(chip
->image
[CS4231_REC_FORMAT
], count
) - 1;
898 if (chip
->single_dma
&& chip
->hardware
!= CS4231_HW_INTERWAVE
) {
899 snd_cs4231_out(chip
, CS4231_PLY_LWR_CNT
, (unsigned char) count
);
900 snd_cs4231_out(chip
, CS4231_PLY_UPR_CNT
, (unsigned char) (count
>> 8));
902 snd_cs4231_out(chip
, CS4231_REC_LWR_CNT
, (unsigned char) count
);
903 snd_cs4231_out(chip
, CS4231_REC_UPR_CNT
, (unsigned char) (count
>> 8));
905 spin_unlock_irqrestore(&chip
->reg_lock
, flags
);
909 static void snd_cs4231_overrange(struct snd_cs4231
*chip
)
914 spin_lock_irqsave(&chip
->reg_lock
, flags
);
915 res
= snd_cs4231_in(chip
, CS4231_TEST_INIT
);
916 spin_unlock_irqrestore(&chip
->reg_lock
, flags
);
917 if (res
& (0x08 | 0x02)) /* detect overrange only above 0dB; may be user selectable? */
918 chip
->capture_substream
->runtime
->overrange
++;
921 irqreturn_t
snd_cs4231_interrupt(int irq
, void *dev_id
)
923 struct snd_cs4231
*chip
= dev_id
;
924 unsigned char status
;
926 status
= snd_cs4231_in(chip
, CS4231_IRQ_STATUS
);
927 if (status
& CS4231_TIMER_IRQ
) {
929 snd_timer_interrupt(chip
->timer
, chip
->timer
->sticks
);
931 if (chip
->single_dma
&& chip
->hardware
!= CS4231_HW_INTERWAVE
) {
932 if (status
& CS4231_PLAYBACK_IRQ
) {
933 if (chip
->mode
& CS4231_MODE_PLAY
) {
934 if (chip
->playback_substream
)
935 snd_pcm_period_elapsed(chip
->playback_substream
);
937 if (chip
->mode
& CS4231_MODE_RECORD
) {
938 if (chip
->capture_substream
) {
939 snd_cs4231_overrange(chip
);
940 snd_pcm_period_elapsed(chip
->capture_substream
);
945 if (status
& CS4231_PLAYBACK_IRQ
) {
946 if (chip
->playback_substream
)
947 snd_pcm_period_elapsed(chip
->playback_substream
);
949 if (status
& CS4231_RECORD_IRQ
) {
950 if (chip
->capture_substream
) {
951 snd_cs4231_overrange(chip
);
952 snd_pcm_period_elapsed(chip
->capture_substream
);
957 spin_lock(&chip
->reg_lock
);
958 snd_cs4231_outm(chip
, CS4231_IRQ_STATUS
, ~CS4231_ALL_IRQS
| ~status
, 0);
959 spin_unlock(&chip
->reg_lock
);
963 static snd_pcm_uframes_t
snd_cs4231_playback_pointer(struct snd_pcm_substream
*substream
)
965 struct snd_cs4231
*chip
= snd_pcm_substream_chip(substream
);
968 if (!(chip
->image
[CS4231_IFACE_CTRL
] & CS4231_PLAYBACK_ENABLE
))
970 ptr
= snd_dma_pointer(chip
->dma1
, chip
->p_dma_size
);
971 return bytes_to_frames(substream
->runtime
, ptr
);
974 static snd_pcm_uframes_t
snd_cs4231_capture_pointer(struct snd_pcm_substream
*substream
)
976 struct snd_cs4231
*chip
= snd_pcm_substream_chip(substream
);
979 if (!(chip
->image
[CS4231_IFACE_CTRL
] & CS4231_RECORD_ENABLE
))
981 ptr
= snd_dma_pointer(chip
->dma2
, chip
->c_dma_size
);
982 return bytes_to_frames(substream
->runtime
, ptr
);
989 static int snd_cs4231_probe(struct snd_cs4231
*chip
)
997 snd_cs4231_debug(chip
);
1000 for (i
= 0; i
< 50; i
++) {
1002 if (cs4231_inb(chip
, CS4231P(REGSEL
)) & CS4231_INIT
)
1005 spin_lock_irqsave(&chip
->reg_lock
, flags
);
1006 snd_cs4231_out(chip
, CS4231_MISC_INFO
, CS4231_MODE2
);
1007 id
= snd_cs4231_in(chip
, CS4231_MISC_INFO
) & 0x0f;
1008 spin_unlock_irqrestore(&chip
->reg_lock
, flags
);
1010 break; /* this is valid value */
1013 snd_printdd("cs4231: port = 0x%lx, id = 0x%x\n", chip
->port
, id
);
1015 return -ENODEV
; /* no valid device found */
1017 if (((hw
= chip
->hardware
) & CS4231_HW_TYPE_MASK
) == CS4231_HW_DETECT
) {
1018 rev
= snd_cs4231_in(chip
, CS4231_VERSION
) & 0xe7;
1019 snd_printdd("CS4231: VERSION (I25) = 0x%x\n", rev
);
1021 unsigned char tmp
= snd_cs4231_in(chip
, 23);
1022 snd_cs4231_out(chip
, 23, ~tmp
);
1023 if (snd_cs4231_in(chip
, 23) != tmp
)
1024 chip
->hardware
= CS4231_HW_AD1845
;
1026 chip
->hardware
= CS4231_HW_CS4231
;
1027 } else if (rev
== 0xa0) {
1028 chip
->hardware
= CS4231_HW_CS4231A
;
1029 } else if (rev
== 0xa2) {
1030 chip
->hardware
= CS4231_HW_CS4232
;
1031 } else if (rev
== 0xb2) {
1032 chip
->hardware
= CS4231_HW_CS4232A
;
1033 } else if (rev
== 0x83) {
1034 chip
->hardware
= CS4231_HW_CS4236
;
1035 } else if (rev
== 0x03) {
1036 chip
->hardware
= CS4231_HW_CS4236B
;
1038 snd_printk("unknown CS chip with version 0x%x\n", rev
);
1039 return -ENODEV
; /* unknown CS4231 chip? */
1042 spin_lock_irqsave(&chip
->reg_lock
, flags
);
1043 cs4231_inb(chip
, CS4231P(STATUS
)); /* clear any pendings IRQ */
1044 cs4231_outb(chip
, CS4231P(STATUS
), 0);
1046 spin_unlock_irqrestore(&chip
->reg_lock
, flags
);
1048 chip
->image
[CS4231_MISC_INFO
] = CS4231_MODE2
;
1049 switch (chip
->hardware
) {
1050 case CS4231_HW_INTERWAVE
:
1051 chip
->image
[CS4231_MISC_INFO
] = CS4231_IW_MODE3
;
1053 case CS4231_HW_CS4235
:
1054 case CS4231_HW_CS4236B
:
1055 case CS4231_HW_CS4237B
:
1056 case CS4231_HW_CS4238B
:
1057 case CS4231_HW_CS4239
:
1058 if (hw
== CS4231_HW_DETECT3
)
1059 chip
->image
[CS4231_MISC_INFO
] = CS4231_4236_MODE3
;
1061 chip
->hardware
= CS4231_HW_CS4236
;
1065 chip
->image
[CS4231_IFACE_CTRL
] =
1066 (chip
->image
[CS4231_IFACE_CTRL
] & ~CS4231_SINGLE_DMA
) |
1067 (chip
->single_dma
? CS4231_SINGLE_DMA
: 0);
1068 chip
->image
[CS4231_ALT_FEATURE_1
] = 0x80;
1069 chip
->image
[CS4231_ALT_FEATURE_2
] = chip
->hardware
== CS4231_HW_INTERWAVE
? 0xc2 : 0x01;
1070 ptr
= (unsigned char *) &chip
->image
;
1071 snd_cs4231_mce_down(chip
);
1072 spin_lock_irqsave(&chip
->reg_lock
, flags
);
1073 for (i
= 0; i
< 32; i
++) /* ok.. fill all CS4231 registers */
1074 snd_cs4231_out(chip
, i
, *ptr
++);
1075 spin_unlock_irqrestore(&chip
->reg_lock
, flags
);
1076 snd_cs4231_mce_up(chip
);
1077 snd_cs4231_mce_down(chip
);
1081 /* ok.. try check hardware version for CS4236+ chips */
1082 if ((hw
& CS4231_HW_TYPE_MASK
) == CS4231_HW_DETECT
) {
1083 if (chip
->hardware
== CS4231_HW_CS4236B
) {
1084 rev
= snd_cs4236_ext_in(chip
, CS4236_VERSION
);
1085 snd_cs4236_ext_out(chip
, CS4236_VERSION
, 0xff);
1086 id
= snd_cs4236_ext_in(chip
, CS4236_VERSION
);
1087 snd_cs4236_ext_out(chip
, CS4236_VERSION
, rev
);
1088 snd_printdd("CS4231: ext version; rev = 0x%x, id = 0x%x\n", rev
, id
);
1089 if ((id
& 0x1f) == 0x1d) { /* CS4235 */
1090 chip
->hardware
= CS4231_HW_CS4235
;
1097 snd_printk("unknown CS4235 chip (enhanced version = 0x%x)\n", id
);
1099 } else if ((id
& 0x1f) == 0x0b) { /* CS4236/B */
1105 chip
->hardware
= CS4231_HW_CS4236B
;
1108 snd_printk("unknown CS4236 chip (enhanced version = 0x%x)\n", id
);
1110 } else if ((id
& 0x1f) == 0x08) { /* CS4237B */
1111 chip
->hardware
= CS4231_HW_CS4237B
;
1119 snd_printk("unknown CS4237B chip (enhanced version = 0x%x)\n", id
);
1121 } else if ((id
& 0x1f) == 0x09) { /* CS4238B */
1122 chip
->hardware
= CS4231_HW_CS4238B
;
1129 snd_printk("unknown CS4238B chip (enhanced version = 0x%x)\n", id
);
1131 } else if ((id
& 0x1f) == 0x1e) { /* CS4239 */
1132 chip
->hardware
= CS4231_HW_CS4239
;
1139 snd_printk("unknown CS4239 chip (enhanced version = 0x%x)\n", id
);
1142 snd_printk("unknown CS4236/CS423xB chip (enhanced version = 0x%x)\n", id
);
1146 return 0; /* all things are ok.. */
1153 static struct snd_pcm_hardware snd_cs4231_playback
=
1155 .info
= (SNDRV_PCM_INFO_MMAP
| SNDRV_PCM_INFO_INTERLEAVED
|
1156 SNDRV_PCM_INFO_MMAP_VALID
|
1157 SNDRV_PCM_INFO_RESUME
|
1158 SNDRV_PCM_INFO_SYNC_START
),
1159 .formats
= (SNDRV_PCM_FMTBIT_MU_LAW
| SNDRV_PCM_FMTBIT_A_LAW
| SNDRV_PCM_FMTBIT_IMA_ADPCM
|
1160 SNDRV_PCM_FMTBIT_U8
| SNDRV_PCM_FMTBIT_S16_LE
| SNDRV_PCM_FMTBIT_S16_BE
),
1161 .rates
= SNDRV_PCM_RATE_KNOT
| SNDRV_PCM_RATE_8000_48000
,
1166 .buffer_bytes_max
= (128*1024),
1167 .period_bytes_min
= 64,
1168 .period_bytes_max
= (128*1024),
1170 .periods_max
= 1024,
1174 static struct snd_pcm_hardware snd_cs4231_capture
=
1176 .info
= (SNDRV_PCM_INFO_MMAP
| SNDRV_PCM_INFO_INTERLEAVED
|
1177 SNDRV_PCM_INFO_MMAP_VALID
|
1178 SNDRV_PCM_INFO_RESUME
|
1179 SNDRV_PCM_INFO_SYNC_START
),
1180 .formats
= (SNDRV_PCM_FMTBIT_MU_LAW
| SNDRV_PCM_FMTBIT_A_LAW
| SNDRV_PCM_FMTBIT_IMA_ADPCM
|
1181 SNDRV_PCM_FMTBIT_U8
| SNDRV_PCM_FMTBIT_S16_LE
| SNDRV_PCM_FMTBIT_S16_BE
),
1182 .rates
= SNDRV_PCM_RATE_KNOT
| SNDRV_PCM_RATE_8000_48000
,
1187 .buffer_bytes_max
= (128*1024),
1188 .period_bytes_min
= 64,
1189 .period_bytes_max
= (128*1024),
1191 .periods_max
= 1024,
1199 static int snd_cs4231_playback_open(struct snd_pcm_substream
*substream
)
1201 struct snd_cs4231
*chip
= snd_pcm_substream_chip(substream
);
1202 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
1205 runtime
->hw
= snd_cs4231_playback
;
1207 /* hardware bug in InterWave chipset */
1208 if (chip
->hardware
== CS4231_HW_INTERWAVE
&& chip
->dma1
> 3)
1209 runtime
->hw
.formats
&= ~SNDRV_PCM_FMTBIT_MU_LAW
;
1211 /* hardware limitation of cheap chips */
1212 if (chip
->hardware
== CS4231_HW_CS4235
||
1213 chip
->hardware
== CS4231_HW_CS4239
)
1214 runtime
->hw
.formats
= SNDRV_PCM_FMTBIT_U8
| SNDRV_PCM_FMTBIT_S16_LE
;
1216 snd_pcm_limit_isa_dma_size(chip
->dma1
, &runtime
->hw
.buffer_bytes_max
);
1217 snd_pcm_limit_isa_dma_size(chip
->dma1
, &runtime
->hw
.period_bytes_max
);
1219 if (chip
->claim_dma
) {
1220 if ((err
= chip
->claim_dma(chip
, chip
->dma_private_data
, chip
->dma1
)) < 0)
1224 if ((err
= snd_cs4231_open(chip
, CS4231_MODE_PLAY
)) < 0) {
1225 if (chip
->release_dma
)
1226 chip
->release_dma(chip
, chip
->dma_private_data
, chip
->dma1
);
1227 snd_free_pages(runtime
->dma_area
, runtime
->dma_bytes
);
1230 chip
->playback_substream
= substream
;
1231 snd_pcm_set_sync(substream
);
1232 chip
->rate_constraint(runtime
);
1236 static int snd_cs4231_capture_open(struct snd_pcm_substream
*substream
)
1238 struct snd_cs4231
*chip
= snd_pcm_substream_chip(substream
);
1239 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
1242 runtime
->hw
= snd_cs4231_capture
;
1244 /* hardware limitation of cheap chips */
1245 if (chip
->hardware
== CS4231_HW_CS4235
||
1246 chip
->hardware
== CS4231_HW_CS4239
)
1247 runtime
->hw
.formats
= SNDRV_PCM_FMTBIT_U8
| SNDRV_PCM_FMTBIT_S16_LE
;
1249 snd_pcm_limit_isa_dma_size(chip
->dma2
, &runtime
->hw
.buffer_bytes_max
);
1250 snd_pcm_limit_isa_dma_size(chip
->dma2
, &runtime
->hw
.period_bytes_max
);
1252 if (chip
->claim_dma
) {
1253 if ((err
= chip
->claim_dma(chip
, chip
->dma_private_data
, chip
->dma2
)) < 0)
1257 if ((err
= snd_cs4231_open(chip
, CS4231_MODE_RECORD
)) < 0) {
1258 if (chip
->release_dma
)
1259 chip
->release_dma(chip
, chip
->dma_private_data
, chip
->dma2
);
1260 snd_free_pages(runtime
->dma_area
, runtime
->dma_bytes
);
1263 chip
->capture_substream
= substream
;
1264 snd_pcm_set_sync(substream
);
1265 chip
->rate_constraint(runtime
);
1269 static int snd_cs4231_playback_close(struct snd_pcm_substream
*substream
)
1271 struct snd_cs4231
*chip
= snd_pcm_substream_chip(substream
);
1273 chip
->playback_substream
= NULL
;
1274 snd_cs4231_close(chip
, CS4231_MODE_PLAY
);
1278 static int snd_cs4231_capture_close(struct snd_pcm_substream
*substream
)
1280 struct snd_cs4231
*chip
= snd_pcm_substream_chip(substream
);
1282 chip
->capture_substream
= NULL
;
1283 snd_cs4231_close(chip
, CS4231_MODE_RECORD
);
1289 /* lowlevel suspend callback for CS4231 */
1290 static void snd_cs4231_suspend(struct snd_cs4231
*chip
)
1293 unsigned long flags
;
1295 snd_pcm_suspend_all(chip
->pcm
);
1296 spin_lock_irqsave(&chip
->reg_lock
, flags
);
1297 for (reg
= 0; reg
< 32; reg
++)
1298 chip
->image
[reg
] = snd_cs4231_in(chip
, reg
);
1299 spin_unlock_irqrestore(&chip
->reg_lock
, flags
);
1302 /* lowlevel resume callback for CS4231 */
1303 static void snd_cs4231_resume(struct snd_cs4231
*chip
)
1306 unsigned long flags
;
1309 snd_cs4231_mce_up(chip
);
1310 spin_lock_irqsave(&chip
->reg_lock
, flags
);
1311 for (reg
= 0; reg
< 32; reg
++) {
1313 case CS4231_VERSION
:
1316 snd_cs4231_out(chip
, reg
, chip
->image
[reg
]);
1320 spin_unlock_irqrestore(&chip
->reg_lock
, flags
);
1322 snd_cs4231_mce_down(chip
);
1324 /* The following is a workaround to avoid freeze after resume on TP600E.
1325 This is the first half of copy of snd_cs4231_mce_down(), but doesn't
1326 include rescheduling. -- iwai
1328 snd_cs4231_busy_wait(chip
);
1329 spin_lock_irqsave(&chip
->reg_lock
, flags
);
1330 chip
->mce_bit
&= ~CS4231_MCE
;
1331 timeout
= cs4231_inb(chip
, CS4231P(REGSEL
));
1332 cs4231_outb(chip
, CS4231P(REGSEL
), chip
->mce_bit
| (timeout
& 0x1f));
1333 spin_unlock_irqrestore(&chip
->reg_lock
, flags
);
1334 if (timeout
== 0x80)
1335 snd_printk("down [0x%lx]: serious init problem - codec still busy\n", chip
->port
);
1336 if ((timeout
& CS4231_MCE
) == 0 ||
1337 !(chip
->hardware
& (CS4231_HW_CS4231_MASK
| CS4231_HW_CS4232_MASK
))) {
1340 snd_cs4231_busy_wait(chip
);
1343 #endif /* CONFIG_PM */
1345 static int snd_cs4231_free(struct snd_cs4231
*chip
)
1347 release_and_free_resource(chip
->res_port
);
1348 release_and_free_resource(chip
->res_cport
);
1349 if (chip
->irq
>= 0) {
1350 disable_irq(chip
->irq
);
1351 if (!(chip
->hwshare
& CS4231_HWSHARE_IRQ
))
1352 free_irq(chip
->irq
, (void *) chip
);
1354 if (!(chip
->hwshare
& CS4231_HWSHARE_DMA1
) && chip
->dma1
>= 0) {
1355 snd_dma_disable(chip
->dma1
);
1356 free_dma(chip
->dma1
);
1358 if (!(chip
->hwshare
& CS4231_HWSHARE_DMA2
) && chip
->dma2
>= 0 && chip
->dma2
!= chip
->dma1
) {
1359 snd_dma_disable(chip
->dma2
);
1360 free_dma(chip
->dma2
);
1363 snd_device_free(chip
->card
, chip
->timer
);
1368 static int snd_cs4231_dev_free(struct snd_device
*device
)
1370 struct snd_cs4231
*chip
= device
->device_data
;
1371 return snd_cs4231_free(chip
);
1374 const char *snd_cs4231_chip_id(struct snd_cs4231
*chip
)
1376 switch (chip
->hardware
) {
1377 case CS4231_HW_CS4231
: return "CS4231";
1378 case CS4231_HW_CS4231A
: return "CS4231A";
1379 case CS4231_HW_CS4232
: return "CS4232";
1380 case CS4231_HW_CS4232A
: return "CS4232A";
1381 case CS4231_HW_CS4235
: return "CS4235";
1382 case CS4231_HW_CS4236
: return "CS4236";
1383 case CS4231_HW_CS4236B
: return "CS4236B";
1384 case CS4231_HW_CS4237B
: return "CS4237B";
1385 case CS4231_HW_CS4238B
: return "CS4238B";
1386 case CS4231_HW_CS4239
: return "CS4239";
1387 case CS4231_HW_INTERWAVE
: return "AMD InterWave";
1388 case CS4231_HW_OPL3SA2
: return chip
->card
->shortname
;
1389 case CS4231_HW_AD1845
: return "AD1845";
1390 default: return "???";
1394 static int snd_cs4231_new(struct snd_card
*card
,
1395 unsigned short hardware
,
1396 unsigned short hwshare
,
1397 struct snd_cs4231
** rchip
)
1399 struct snd_cs4231
*chip
;
1402 chip
= kzalloc(sizeof(*chip
), GFP_KERNEL
);
1405 chip
->hardware
= hardware
;
1406 chip
->hwshare
= hwshare
;
1408 spin_lock_init(&chip
->reg_lock
);
1409 mutex_init(&chip
->mce_mutex
);
1410 mutex_init(&chip
->open_mutex
);
1412 chip
->rate_constraint
= snd_cs4231_xrate
;
1413 chip
->set_playback_format
= snd_cs4231_playback_format
;
1414 chip
->set_capture_format
= snd_cs4231_capture_format
;
1415 memcpy(&chip
->image
, &snd_cs4231_original_image
, sizeof(snd_cs4231_original_image
));
1421 int snd_cs4231_create(struct snd_card
*card
,
1423 unsigned long cport
,
1424 int irq
, int dma1
, int dma2
,
1425 unsigned short hardware
,
1426 unsigned short hwshare
,
1427 struct snd_cs4231
** rchip
)
1429 static struct snd_device_ops ops
= {
1430 .dev_free
= snd_cs4231_dev_free
,
1432 struct snd_cs4231
*chip
;
1435 err
= snd_cs4231_new(card
, hardware
, hwshare
, &chip
);
1443 if ((chip
->res_port
= request_region(port
, 4, "CS4231")) == NULL
) {
1444 snd_printk(KERN_ERR
"cs4231: can't grab port 0x%lx\n", port
);
1445 snd_cs4231_free(chip
);
1449 if ((long)cport
>= 0 && (chip
->res_cport
= request_region(cport
, 8, "CS4232 Control")) == NULL
) {
1450 snd_printk(KERN_ERR
"cs4231: can't grab control port 0x%lx\n", cport
);
1451 snd_cs4231_free(chip
);
1454 chip
->cport
= cport
;
1455 if (!(hwshare
& CS4231_HWSHARE_IRQ
) && request_irq(irq
, snd_cs4231_interrupt
, IRQF_DISABLED
, "CS4231", (void *) chip
)) {
1456 snd_printk(KERN_ERR
"cs4231: can't grab IRQ %d\n", irq
);
1457 snd_cs4231_free(chip
);
1461 if (!(hwshare
& CS4231_HWSHARE_DMA1
) && request_dma(dma1
, "CS4231 - 1")) {
1462 snd_printk(KERN_ERR
"cs4231: can't grab DMA1 %d\n", dma1
);
1463 snd_cs4231_free(chip
);
1467 if (!(hwshare
& CS4231_HWSHARE_DMA2
) && dma1
!= dma2
&& dma2
>= 0 && request_dma(dma2
, "CS4231 - 2")) {
1468 snd_printk(KERN_ERR
"cs4231: can't grab DMA2 %d\n", dma2
);
1469 snd_cs4231_free(chip
);
1472 if (dma1
== dma2
|| dma2
< 0) {
1473 chip
->single_dma
= 1;
1474 chip
->dma2
= chip
->dma1
;
1479 if (snd_cs4231_probe(chip
) < 0) {
1480 snd_cs4231_free(chip
);
1483 snd_cs4231_init(chip
);
1486 if (chip
->hardware
& CS4231_HW_CS4232_MASK
) {
1487 if (chip
->res_cport
== NULL
)
1488 snd_printk("CS4232 control port features are not accessible\n");
1492 /* Register device */
1493 if ((err
= snd_device_new(card
, SNDRV_DEV_LOWLEVEL
, chip
, &ops
)) < 0) {
1494 snd_cs4231_free(chip
);
1499 /* Power Management */
1500 chip
->suspend
= snd_cs4231_suspend
;
1501 chip
->resume
= snd_cs4231_resume
;
1508 static struct snd_pcm_ops snd_cs4231_playback_ops
= {
1509 .open
= snd_cs4231_playback_open
,
1510 .close
= snd_cs4231_playback_close
,
1511 .ioctl
= snd_pcm_lib_ioctl
,
1512 .hw_params
= snd_cs4231_playback_hw_params
,
1513 .hw_free
= snd_cs4231_playback_hw_free
,
1514 .prepare
= snd_cs4231_playback_prepare
,
1515 .trigger
= snd_cs4231_trigger
,
1516 .pointer
= snd_cs4231_playback_pointer
,
1519 static struct snd_pcm_ops snd_cs4231_capture_ops
= {
1520 .open
= snd_cs4231_capture_open
,
1521 .close
= snd_cs4231_capture_close
,
1522 .ioctl
= snd_pcm_lib_ioctl
,
1523 .hw_params
= snd_cs4231_capture_hw_params
,
1524 .hw_free
= snd_cs4231_capture_hw_free
,
1525 .prepare
= snd_cs4231_capture_prepare
,
1526 .trigger
= snd_cs4231_trigger
,
1527 .pointer
= snd_cs4231_capture_pointer
,
1530 int snd_cs4231_pcm(struct snd_cs4231
*chip
, int device
, struct snd_pcm
**rpcm
)
1532 struct snd_pcm
*pcm
;
1535 if ((err
= snd_pcm_new(chip
->card
, "CS4231", device
, 1, 1, &pcm
)) < 0)
1538 spin_lock_init(&chip
->reg_lock
);
1539 mutex_init(&chip
->mce_mutex
);
1540 mutex_init(&chip
->open_mutex
);
1542 snd_pcm_set_ops(pcm
, SNDRV_PCM_STREAM_PLAYBACK
, &snd_cs4231_playback_ops
);
1543 snd_pcm_set_ops(pcm
, SNDRV_PCM_STREAM_CAPTURE
, &snd_cs4231_capture_ops
);
1546 pcm
->private_data
= chip
;
1547 pcm
->info_flags
= 0;
1548 if (chip
->single_dma
)
1549 pcm
->info_flags
|= SNDRV_PCM_INFO_HALF_DUPLEX
;
1550 if (chip
->hardware
!= CS4231_HW_INTERWAVE
)
1551 pcm
->info_flags
|= SNDRV_PCM_INFO_JOINT_DUPLEX
;
1552 strcpy(pcm
->name
, snd_cs4231_chip_id(chip
));
1554 snd_pcm_lib_preallocate_pages_for_all(pcm
, SNDRV_DMA_TYPE_DEV
,
1556 64*1024, chip
->dma1
> 3 || chip
->dma2
> 3 ? 128*1024 : 64*1024);
1564 static void snd_cs4231_timer_free(struct snd_timer
*timer
)
1566 struct snd_cs4231
*chip
= timer
->private_data
;
1570 int snd_cs4231_timer(struct snd_cs4231
*chip
, int device
, struct snd_timer
**rtimer
)
1572 struct snd_timer
*timer
;
1573 struct snd_timer_id tid
;
1576 /* Timer initialization */
1577 tid
.dev_class
= SNDRV_TIMER_CLASS_CARD
;
1578 tid
.dev_sclass
= SNDRV_TIMER_SCLASS_NONE
;
1579 tid
.card
= chip
->card
->number
;
1580 tid
.device
= device
;
1582 if ((err
= snd_timer_new(chip
->card
, "CS4231", &tid
, &timer
)) < 0)
1584 strcpy(timer
->name
, snd_cs4231_chip_id(chip
));
1585 timer
->private_data
= chip
;
1586 timer
->private_free
= snd_cs4231_timer_free
;
1587 timer
->hw
= snd_cs4231_timer_table
;
1588 chip
->timer
= timer
;
1598 static int snd_cs4231_info_mux(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_info
*uinfo
)
1600 static char *texts
[4] = {
1601 "Line", "Aux", "Mic", "Mix"
1603 static char *opl3sa_texts
[4] = {
1604 "Line", "CD", "Mic", "Mix"
1606 static char *gusmax_texts
[4] = {
1607 "Line", "Synth", "Mic", "Mix"
1609 char **ptexts
= texts
;
1610 struct snd_cs4231
*chip
= snd_kcontrol_chip(kcontrol
);
1612 snd_assert(chip
->card
!= NULL
, return -EINVAL
);
1613 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_ENUMERATED
;
1615 uinfo
->value
.enumerated
.items
= 4;
1616 if (uinfo
->value
.enumerated
.item
> 3)
1617 uinfo
->value
.enumerated
.item
= 3;
1618 if (!strcmp(chip
->card
->driver
, "GUS MAX"))
1619 ptexts
= gusmax_texts
;
1620 switch (chip
->hardware
) {
1621 case CS4231_HW_INTERWAVE
: ptexts
= gusmax_texts
; break;
1622 case CS4231_HW_OPL3SA2
: ptexts
= opl3sa_texts
; break;
1624 strcpy(uinfo
->value
.enumerated
.name
, ptexts
[uinfo
->value
.enumerated
.item
]);
1628 static int snd_cs4231_get_mux(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
1630 struct snd_cs4231
*chip
= snd_kcontrol_chip(kcontrol
);
1631 unsigned long flags
;
1633 spin_lock_irqsave(&chip
->reg_lock
, flags
);
1634 ucontrol
->value
.enumerated
.item
[0] = (chip
->image
[CS4231_LEFT_INPUT
] & CS4231_MIXS_ALL
) >> 6;
1635 ucontrol
->value
.enumerated
.item
[1] = (chip
->image
[CS4231_RIGHT_INPUT
] & CS4231_MIXS_ALL
) >> 6;
1636 spin_unlock_irqrestore(&chip
->reg_lock
, flags
);
1640 static int snd_cs4231_put_mux(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
1642 struct snd_cs4231
*chip
= snd_kcontrol_chip(kcontrol
);
1643 unsigned long flags
;
1644 unsigned short left
, right
;
1647 if (ucontrol
->value
.enumerated
.item
[0] > 3 ||
1648 ucontrol
->value
.enumerated
.item
[1] > 3)
1650 left
= ucontrol
->value
.enumerated
.item
[0] << 6;
1651 right
= ucontrol
->value
.enumerated
.item
[1] << 6;
1652 spin_lock_irqsave(&chip
->reg_lock
, flags
);
1653 left
= (chip
->image
[CS4231_LEFT_INPUT
] & ~CS4231_MIXS_ALL
) | left
;
1654 right
= (chip
->image
[CS4231_RIGHT_INPUT
] & ~CS4231_MIXS_ALL
) | right
;
1655 change
= left
!= chip
->image
[CS4231_LEFT_INPUT
] ||
1656 right
!= chip
->image
[CS4231_RIGHT_INPUT
];
1657 snd_cs4231_out(chip
, CS4231_LEFT_INPUT
, left
);
1658 snd_cs4231_out(chip
, CS4231_RIGHT_INPUT
, right
);
1659 spin_unlock_irqrestore(&chip
->reg_lock
, flags
);
1663 int snd_cs4231_info_single(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_info
*uinfo
)
1665 int mask
= (kcontrol
->private_value
>> 16) & 0xff;
1667 uinfo
->type
= mask
== 1 ? SNDRV_CTL_ELEM_TYPE_BOOLEAN
: SNDRV_CTL_ELEM_TYPE_INTEGER
;
1669 uinfo
->value
.integer
.min
= 0;
1670 uinfo
->value
.integer
.max
= mask
;
1674 int snd_cs4231_get_single(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
1676 struct snd_cs4231
*chip
= snd_kcontrol_chip(kcontrol
);
1677 unsigned long flags
;
1678 int reg
= kcontrol
->private_value
& 0xff;
1679 int shift
= (kcontrol
->private_value
>> 8) & 0xff;
1680 int mask
= (kcontrol
->private_value
>> 16) & 0xff;
1681 int invert
= (kcontrol
->private_value
>> 24) & 0xff;
1683 spin_lock_irqsave(&chip
->reg_lock
, flags
);
1684 ucontrol
->value
.integer
.value
[0] = (chip
->image
[reg
] >> shift
) & mask
;
1685 spin_unlock_irqrestore(&chip
->reg_lock
, flags
);
1687 ucontrol
->value
.integer
.value
[0] = mask
- ucontrol
->value
.integer
.value
[0];
1691 int snd_cs4231_put_single(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
1693 struct snd_cs4231
*chip
= snd_kcontrol_chip(kcontrol
);
1694 unsigned long flags
;
1695 int reg
= kcontrol
->private_value
& 0xff;
1696 int shift
= (kcontrol
->private_value
>> 8) & 0xff;
1697 int mask
= (kcontrol
->private_value
>> 16) & 0xff;
1698 int invert
= (kcontrol
->private_value
>> 24) & 0xff;
1702 val
= (ucontrol
->value
.integer
.value
[0] & mask
);
1706 spin_lock_irqsave(&chip
->reg_lock
, flags
);
1707 val
= (chip
->image
[reg
] & ~(mask
<< shift
)) | val
;
1708 change
= val
!= chip
->image
[reg
];
1709 snd_cs4231_out(chip
, reg
, val
);
1710 spin_unlock_irqrestore(&chip
->reg_lock
, flags
);
1714 int snd_cs4231_info_double(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_info
*uinfo
)
1716 int mask
= (kcontrol
->private_value
>> 24) & 0xff;
1718 uinfo
->type
= mask
== 1 ? SNDRV_CTL_ELEM_TYPE_BOOLEAN
: SNDRV_CTL_ELEM_TYPE_INTEGER
;
1720 uinfo
->value
.integer
.min
= 0;
1721 uinfo
->value
.integer
.max
= mask
;
1725 int snd_cs4231_get_double(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
1727 struct snd_cs4231
*chip
= snd_kcontrol_chip(kcontrol
);
1728 unsigned long flags
;
1729 int left_reg
= kcontrol
->private_value
& 0xff;
1730 int right_reg
= (kcontrol
->private_value
>> 8) & 0xff;
1731 int shift_left
= (kcontrol
->private_value
>> 16) & 0x07;
1732 int shift_right
= (kcontrol
->private_value
>> 19) & 0x07;
1733 int mask
= (kcontrol
->private_value
>> 24) & 0xff;
1734 int invert
= (kcontrol
->private_value
>> 22) & 1;
1736 spin_lock_irqsave(&chip
->reg_lock
, flags
);
1737 ucontrol
->value
.integer
.value
[0] = (chip
->image
[left_reg
] >> shift_left
) & mask
;
1738 ucontrol
->value
.integer
.value
[1] = (chip
->image
[right_reg
] >> shift_right
) & mask
;
1739 spin_unlock_irqrestore(&chip
->reg_lock
, flags
);
1741 ucontrol
->value
.integer
.value
[0] = mask
- ucontrol
->value
.integer
.value
[0];
1742 ucontrol
->value
.integer
.value
[1] = mask
- ucontrol
->value
.integer
.value
[1];
1747 int snd_cs4231_put_double(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
1749 struct snd_cs4231
*chip
= snd_kcontrol_chip(kcontrol
);
1750 unsigned long flags
;
1751 int left_reg
= kcontrol
->private_value
& 0xff;
1752 int right_reg
= (kcontrol
->private_value
>> 8) & 0xff;
1753 int shift_left
= (kcontrol
->private_value
>> 16) & 0x07;
1754 int shift_right
= (kcontrol
->private_value
>> 19) & 0x07;
1755 int mask
= (kcontrol
->private_value
>> 24) & 0xff;
1756 int invert
= (kcontrol
->private_value
>> 22) & 1;
1758 unsigned short val1
, val2
;
1760 val1
= ucontrol
->value
.integer
.value
[0] & mask
;
1761 val2
= ucontrol
->value
.integer
.value
[1] & mask
;
1766 val1
<<= shift_left
;
1767 val2
<<= shift_right
;
1768 spin_lock_irqsave(&chip
->reg_lock
, flags
);
1769 val1
= (chip
->image
[left_reg
] & ~(mask
<< shift_left
)) | val1
;
1770 val2
= (chip
->image
[right_reg
] & ~(mask
<< shift_right
)) | val2
;
1771 change
= val1
!= chip
->image
[left_reg
] || val2
!= chip
->image
[right_reg
];
1772 snd_cs4231_out(chip
, left_reg
, val1
);
1773 snd_cs4231_out(chip
, right_reg
, val2
);
1774 spin_unlock_irqrestore(&chip
->reg_lock
, flags
);
1778 static struct snd_kcontrol_new snd_cs4231_controls
[] = {
1779 CS4231_DOUBLE("PCM Playback Switch", 0, CS4231_LEFT_OUTPUT
, CS4231_RIGHT_OUTPUT
, 7, 7, 1, 1),
1780 CS4231_DOUBLE("PCM Playback Volume", 0, CS4231_LEFT_OUTPUT
, CS4231_RIGHT_OUTPUT
, 0, 0, 63, 1),
1781 CS4231_DOUBLE("Line Playback Switch", 0, CS4231_LEFT_LINE_IN
, CS4231_RIGHT_LINE_IN
, 7, 7, 1, 1),
1782 CS4231_DOUBLE("Line Playback Volume", 0, CS4231_LEFT_LINE_IN
, CS4231_RIGHT_LINE_IN
, 0, 0, 31, 1),
1783 CS4231_DOUBLE("Aux Playback Switch", 0, CS4231_AUX1_LEFT_INPUT
, CS4231_AUX1_RIGHT_INPUT
, 7, 7, 1, 1),
1784 CS4231_DOUBLE("Aux Playback Volume", 0, CS4231_AUX1_LEFT_INPUT
, CS4231_AUX1_RIGHT_INPUT
, 0, 0, 31, 1),
1785 CS4231_DOUBLE("Aux Playback Switch", 1, CS4231_AUX2_LEFT_INPUT
, CS4231_AUX2_RIGHT_INPUT
, 7, 7, 1, 1),
1786 CS4231_DOUBLE("Aux Playback Volume", 1, CS4231_AUX2_LEFT_INPUT
, CS4231_AUX2_RIGHT_INPUT
, 0, 0, 31, 1),
1787 CS4231_SINGLE("Mono Playback Switch", 0, CS4231_MONO_CTRL
, 7, 1, 1),
1788 CS4231_SINGLE("Mono Playback Volume", 0, CS4231_MONO_CTRL
, 0, 15, 1),
1789 CS4231_SINGLE("Mono Output Playback Switch", 0, CS4231_MONO_CTRL
, 6, 1, 1),
1790 CS4231_SINGLE("Mono Output Playback Bypass", 0, CS4231_MONO_CTRL
, 5, 1, 0),
1791 CS4231_DOUBLE("Capture Volume", 0, CS4231_LEFT_INPUT
, CS4231_RIGHT_INPUT
, 0, 0, 15, 0),
1793 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
1794 .name
= "Capture Source",
1795 .info
= snd_cs4231_info_mux
,
1796 .get
= snd_cs4231_get_mux
,
1797 .put
= snd_cs4231_put_mux
,
1799 CS4231_DOUBLE("Mic Boost", 0, CS4231_LEFT_INPUT
, CS4231_RIGHT_INPUT
, 5, 5, 1, 0),
1800 CS4231_SINGLE("Loopback Capture Switch", 0, CS4231_LOOPBACK
, 0, 1, 0),
1801 CS4231_SINGLE("Loopback Capture Volume", 0, CS4231_LOOPBACK
, 2, 63, 1)
1804 int snd_cs4231_mixer(struct snd_cs4231
*chip
)
1806 struct snd_card
*card
;
1810 snd_assert(chip
!= NULL
&& chip
->pcm
!= NULL
, return -EINVAL
);
1814 strcpy(card
->mixername
, chip
->pcm
->name
);
1816 for (idx
= 0; idx
< ARRAY_SIZE(snd_cs4231_controls
); idx
++) {
1817 if ((err
= snd_ctl_add(card
, snd_ctl_new1(&snd_cs4231_controls
[idx
], chip
))) < 0)
1823 EXPORT_SYMBOL(snd_cs4231_out
);
1824 EXPORT_SYMBOL(snd_cs4231_in
);
1825 EXPORT_SYMBOL(snd_cs4236_ext_out
);
1826 EXPORT_SYMBOL(snd_cs4236_ext_in
);
1827 EXPORT_SYMBOL(snd_cs4231_mce_up
);
1828 EXPORT_SYMBOL(snd_cs4231_mce_down
);
1829 EXPORT_SYMBOL(snd_cs4231_interrupt
);
1830 EXPORT_SYMBOL(snd_cs4231_chip_id
);
1831 EXPORT_SYMBOL(snd_cs4231_create
);
1832 EXPORT_SYMBOL(snd_cs4231_pcm
);
1833 EXPORT_SYMBOL(snd_cs4231_mixer
);
1834 EXPORT_SYMBOL(snd_cs4231_timer
);
1835 EXPORT_SYMBOL(snd_cs4231_info_single
);
1836 EXPORT_SYMBOL(snd_cs4231_get_single
);
1837 EXPORT_SYMBOL(snd_cs4231_put_single
);
1838 EXPORT_SYMBOL(snd_cs4231_info_double
);
1839 EXPORT_SYMBOL(snd_cs4231_get_double
);
1840 EXPORT_SYMBOL(snd_cs4231_put_double
);
1846 static int __init
alsa_cs4231_init(void)
1851 static void __exit
alsa_cs4231_exit(void)
1855 module_init(alsa_cs4231_init
)
1856 module_exit(alsa_cs4231_exit
)