blob: 913b731d2236a566bc93a7884fa2ab44131f69be [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Jaroslav Kyselac1017a42007-10-15 09:50:19 +02002 * Copyright (c) by Jaroslav Kysela <perex@perex.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 * Routines for control of CS4231(A)/CS4232/InterWave & compatible chips
4 *
5 * Bugs:
Krzysztof Helt9295aea2008-07-31 21:00:17 +02006 * - sometimes record brokes playback with WSS portion of
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * Yamaha OPL3-SA3 chip
8 * - CS4231 (GUS MAX) - still trouble with occasional noises
Krzysztof Helt7779f752008-07-31 21:03:41 +02009 * - broken initialization?
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 *
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.
15 *
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.
20 *
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
24 *
25 */
26
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <linux/delay.h>
28#include <linux/pm.h>
29#include <linux/init.h>
30#include <linux/interrupt.h>
31#include <linux/slab.h>
32#include <linux/ioport.h>
Paul Gortmakerda155d52011-07-15 12:38:28 -040033#include <linux/module.h>
Takashi Iwai6cbbfe12015-01-28 16:49:33 +010034#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <sound/core.h>
Krzysztof Helt61ef19d2008-07-31 21:02:42 +020036#include <sound/wss.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <sound/pcm_params.h>
Krzysztof Helt5664daa2008-07-31 21:08:32 +020038#include <sound/tlv.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#include <asm/dma.h>
41#include <asm/irq.h>
42
Jaroslav Kyselac1017a42007-10-15 09:50:19 +020043MODULE_AUTHOR("Jaroslav Kysela <perex@perex.cz>");
Linus Torvalds1da177e2005-04-16 15:20:36 -070044MODULE_DESCRIPTION("Routines for control of CS4231(A)/CS4232/InterWave & compatible chips");
45MODULE_LICENSE("GPL");
46
47#if 0
48#define SNDRV_DEBUG_MCE
49#endif
50
51/*
52 * Some variables
53 */
54
55static unsigned char freq_bits[14] = {
56 /* 5510 */ 0x00 | CS4231_XTAL2,
57 /* 6620 */ 0x0E | CS4231_XTAL2,
58 /* 8000 */ 0x00 | CS4231_XTAL1,
59 /* 9600 */ 0x0E | CS4231_XTAL1,
60 /* 11025 */ 0x02 | CS4231_XTAL2,
61 /* 16000 */ 0x02 | CS4231_XTAL1,
62 /* 18900 */ 0x04 | CS4231_XTAL2,
63 /* 22050 */ 0x06 | CS4231_XTAL2,
64 /* 27042 */ 0x04 | CS4231_XTAL1,
65 /* 32000 */ 0x06 | CS4231_XTAL1,
66 /* 33075 */ 0x0C | CS4231_XTAL2,
67 /* 37800 */ 0x08 | CS4231_XTAL2,
68 /* 44100 */ 0x0A | CS4231_XTAL2,
69 /* 48000 */ 0x0C | CS4231_XTAL1
70};
71
72static unsigned int rates[14] = {
73 5510, 6620, 8000, 9600, 11025, 16000, 18900, 22050,
74 27042, 32000, 33075, 37800, 44100, 48000
75};
76
Takashi Iwaiba2375a2005-11-17 14:30:42 +010077static struct snd_pcm_hw_constraint_list hw_constraints_rates = {
Krzysztof Helt6c041b52007-09-06 15:03:59 +020078 .count = ARRAY_SIZE(rates),
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 .list = rates,
80 .mask = 0,
81};
82
Krzysztof Helt7779f752008-07-31 21:03:41 +020083static int snd_wss_xrate(struct snd_pcm_runtime *runtime)
Linus Torvalds1da177e2005-04-16 15:20:36 -070084{
Krzysztof Helt7779f752008-07-31 21:03:41 +020085 return snd_pcm_hw_constraint_list(runtime, 0, SNDRV_PCM_HW_PARAM_RATE,
86 &hw_constraints_rates);
Linus Torvalds1da177e2005-04-16 15:20:36 -070087}
88
Krzysztof Helt7779f752008-07-31 21:03:41 +020089static unsigned char snd_wss_original_image[32] =
Linus Torvalds1da177e2005-04-16 15:20:36 -070090{
91 0x00, /* 00/00 - lic */
92 0x00, /* 01/01 - ric */
93 0x9f, /* 02/02 - la1ic */
94 0x9f, /* 03/03 - ra1ic */
95 0x9f, /* 04/04 - la2ic */
96 0x9f, /* 05/05 - ra2ic */
97 0xbf, /* 06/06 - loc */
98 0xbf, /* 07/07 - roc */
99 0x20, /* 08/08 - pdfr */
100 CS4231_AUTOCALIB, /* 09/09 - ic */
101 0x00, /* 0a/10 - pc */
102 0x00, /* 0b/11 - ti */
103 CS4231_MODE2, /* 0c/12 - mi */
104 0xfc, /* 0d/13 - lbc */
105 0x00, /* 0e/14 - pbru */
106 0x00, /* 0f/15 - pbrl */
107 0x80, /* 10/16 - afei */
108 0x01, /* 11/17 - afeii */
109 0x9f, /* 12/18 - llic */
110 0x9f, /* 13/19 - rlic */
111 0x00, /* 14/20 - tlb */
112 0x00, /* 15/21 - thb */
113 0x00, /* 16/22 - la3mic/reserved */
114 0x00, /* 17/23 - ra3mic/reserved */
115 0x00, /* 18/24 - afs */
116 0x00, /* 19/25 - lamoc/version */
117 0xcf, /* 1a/26 - mioc */
118 0x00, /* 1b/27 - ramoc/reserved */
119 0x20, /* 1c/28 - cdfr */
120 0x00, /* 1d/29 - res4 */
121 0x00, /* 1e/30 - cbru */
122 0x00, /* 1f/31 - cbrl */
123};
124
Krzysztof Heltabf1f5a2008-06-09 23:07:28 +0200125static unsigned char snd_opti93x_original_image[32] =
126{
127 0x00, /* 00/00 - l_mixout_outctrl */
128 0x00, /* 01/01 - r_mixout_outctrl */
129 0x88, /* 02/02 - l_cd_inctrl */
130 0x88, /* 03/03 - r_cd_inctrl */
131 0x88, /* 04/04 - l_a1/fm_inctrl */
132 0x88, /* 05/05 - r_a1/fm_inctrl */
133 0x80, /* 06/06 - l_dac_inctrl */
134 0x80, /* 07/07 - r_dac_inctrl */
135 0x00, /* 08/08 - ply_dataform_reg */
136 0x00, /* 09/09 - if_conf */
137 0x00, /* 0a/10 - pin_ctrl */
138 0x00, /* 0b/11 - err_init_reg */
139 0x0a, /* 0c/12 - id_reg */
140 0x00, /* 0d/13 - reserved */
141 0x00, /* 0e/14 - ply_upcount_reg */
142 0x00, /* 0f/15 - ply_lowcount_reg */
143 0x88, /* 10/16 - reserved/l_a1_inctrl */
144 0x88, /* 11/17 - reserved/r_a1_inctrl */
145 0x88, /* 12/18 - l_line_inctrl */
146 0x88, /* 13/19 - r_line_inctrl */
147 0x88, /* 14/20 - l_mic_inctrl */
148 0x88, /* 15/21 - r_mic_inctrl */
149 0x80, /* 16/22 - l_out_outctrl */
150 0x80, /* 17/23 - r_out_outctrl */
151 0x00, /* 18/24 - reserved */
152 0x00, /* 19/25 - reserved */
153 0x00, /* 1a/26 - reserved */
154 0x00, /* 1b/27 - reserved */
155 0x00, /* 1c/28 - cap_dataform_reg */
156 0x00, /* 1d/29 - reserved */
157 0x00, /* 1e/30 - cap_upcount_reg */
158 0x00 /* 1f/31 - cap_lowcount_reg */
159};
160
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161/*
162 * Basic I/O functions
163 */
164
Krzysztof Helt7779f752008-07-31 21:03:41 +0200165static inline void wss_outb(struct snd_wss *chip, u8 offset, u8 val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 outb(val, chip->port + offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168}
169
Krzysztof Helt7779f752008-07-31 21:03:41 +0200170static inline u8 wss_inb(struct snd_wss *chip, u8 offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 return inb(chip->port + offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173}
174
Krzysztof Helt7779f752008-07-31 21:03:41 +0200175static void snd_wss_wait(struct snd_wss *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176{
177 int timeout;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178
179 for (timeout = 250;
Krzysztof Helt7779f752008-07-31 21:03:41 +0200180 timeout > 0 && (wss_inb(chip, CS4231P(REGSEL)) & CS4231_INIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 timeout--)
Krzysztof Helt9295aea2008-07-31 21:00:17 +0200182 udelay(100);
Krzysztof Helt6c041b52007-09-06 15:03:59 +0200183}
184
Krzysztof Helt7779f752008-07-31 21:03:41 +0200185static void snd_wss_dout(struct snd_wss *chip, unsigned char reg,
186 unsigned char value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187{
188 int timeout;
189
190 for (timeout = 250;
Krzysztof Helt7779f752008-07-31 21:03:41 +0200191 timeout > 0 && (wss_inb(chip, CS4231P(REGSEL)) & CS4231_INIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 timeout--)
Krzysztof Helt9295aea2008-07-31 21:00:17 +0200193 udelay(10);
Krzysztof Helt7779f752008-07-31 21:03:41 +0200194 wss_outb(chip, CS4231P(REGSEL), chip->mce_bit | reg);
195 wss_outb(chip, CS4231P(REG), value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 mb();
197}
198
Krzysztof Helt7779f752008-07-31 21:03:41 +0200199void snd_wss_out(struct snd_wss *chip, unsigned char reg, unsigned char value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200{
Krzysztof Helt7779f752008-07-31 21:03:41 +0200201 snd_wss_wait(chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202#ifdef CONFIG_SND_DEBUG
Krzysztof Helt7779f752008-07-31 21:03:41 +0200203 if (wss_inb(chip, CS4231P(REGSEL)) & CS4231_INIT)
Takashi Iwai76d498e2009-02-05 15:45:05 +0100204 snd_printk(KERN_DEBUG "out: auto calibration time out "
205 "- reg = 0x%x, value = 0x%x\n", reg, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206#endif
Krzysztof Helt7779f752008-07-31 21:03:41 +0200207 wss_outb(chip, CS4231P(REGSEL), chip->mce_bit | reg);
208 wss_outb(chip, CS4231P(REG), value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 chip->image[reg] = value;
210 mb();
Krzysztof Helt6c041b52007-09-06 15:03:59 +0200211 snd_printdd("codec out - reg 0x%x = 0x%x\n",
212 chip->mce_bit | reg, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213}
Krzysztof Helt7779f752008-07-31 21:03:41 +0200214EXPORT_SYMBOL(snd_wss_out);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215
Krzysztof Helt7779f752008-07-31 21:03:41 +0200216unsigned char snd_wss_in(struct snd_wss *chip, unsigned char reg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217{
Krzysztof Helt7779f752008-07-31 21:03:41 +0200218 snd_wss_wait(chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219#ifdef CONFIG_SND_DEBUG
Krzysztof Helt7779f752008-07-31 21:03:41 +0200220 if (wss_inb(chip, CS4231P(REGSEL)) & CS4231_INIT)
Takashi Iwai76d498e2009-02-05 15:45:05 +0100221 snd_printk(KERN_DEBUG "in: auto calibration time out "
222 "- reg = 0x%x\n", reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223#endif
Krzysztof Helt7779f752008-07-31 21:03:41 +0200224 wss_outb(chip, CS4231P(REGSEL), chip->mce_bit | reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 mb();
Krzysztof Helt7779f752008-07-31 21:03:41 +0200226 return wss_inb(chip, CS4231P(REG));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227}
Krzysztof Helt7779f752008-07-31 21:03:41 +0200228EXPORT_SYMBOL(snd_wss_in);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229
Krzysztof Helt7779f752008-07-31 21:03:41 +0200230void snd_cs4236_ext_out(struct snd_wss *chip, unsigned char reg,
231 unsigned char val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232{
Krzysztof Helt7779f752008-07-31 21:03:41 +0200233 wss_outb(chip, CS4231P(REGSEL), chip->mce_bit | 0x17);
234 wss_outb(chip, CS4231P(REG),
235 reg | (chip->image[CS4236_EXT_REG] & 0x01));
236 wss_outb(chip, CS4231P(REG), val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 chip->eimage[CS4236_REG(reg)] = val;
238#if 0
Takashi Iwai76d498e2009-02-05 15:45:05 +0100239 printk(KERN_DEBUG "ext out : reg = 0x%x, val = 0x%x\n", reg, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240#endif
241}
Krzysztof Helt7779f752008-07-31 21:03:41 +0200242EXPORT_SYMBOL(snd_cs4236_ext_out);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243
Krzysztof Helt7779f752008-07-31 21:03:41 +0200244unsigned char snd_cs4236_ext_in(struct snd_wss *chip, unsigned char reg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245{
Krzysztof Helt7779f752008-07-31 21:03:41 +0200246 wss_outb(chip, CS4231P(REGSEL), chip->mce_bit | 0x17);
247 wss_outb(chip, CS4231P(REG),
248 reg | (chip->image[CS4236_EXT_REG] & 0x01));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249#if 1
Krzysztof Helt7779f752008-07-31 21:03:41 +0200250 return wss_inb(chip, CS4231P(REG));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251#else
252 {
253 unsigned char res;
Krzysztof Helt7779f752008-07-31 21:03:41 +0200254 res = wss_inb(chip, CS4231P(REG));
Takashi Iwai76d498e2009-02-05 15:45:05 +0100255 printk(KERN_DEBUG "ext in : reg = 0x%x, val = 0x%x\n",
256 reg, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 return res;
258 }
259#endif
260}
Krzysztof Helt7779f752008-07-31 21:03:41 +0200261EXPORT_SYMBOL(snd_cs4236_ext_in);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262
263#if 0
264
Krzysztof Helt7779f752008-07-31 21:03:41 +0200265static void snd_wss_debug(struct snd_wss *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266{
Krzysztof Helt7779f752008-07-31 21:03:41 +0200267 printk(KERN_DEBUG
268 "CS4231 REGS: INDEX = 0x%02x "
269 " STATUS = 0x%02x\n",
Rene Herman3caf8c02008-08-08 16:39:21 +0200270 wss_inb(chip, CS4231P(REGSEL)),
Krzysztof Helt7779f752008-07-31 21:03:41 +0200271 wss_inb(chip, CS4231P(STATUS)));
272 printk(KERN_DEBUG
273 " 0x00: left input = 0x%02x "
274 " 0x10: alt 1 (CFIG 2) = 0x%02x\n",
275 snd_wss_in(chip, 0x00),
276 snd_wss_in(chip, 0x10));
277 printk(KERN_DEBUG
278 " 0x01: right input = 0x%02x "
279 " 0x11: alt 2 (CFIG 3) = 0x%02x\n",
280 snd_wss_in(chip, 0x01),
281 snd_wss_in(chip, 0x11));
282 printk(KERN_DEBUG
283 " 0x02: GF1 left input = 0x%02x "
284 " 0x12: left line in = 0x%02x\n",
285 snd_wss_in(chip, 0x02),
286 snd_wss_in(chip, 0x12));
287 printk(KERN_DEBUG
288 " 0x03: GF1 right input = 0x%02x "
289 " 0x13: right line in = 0x%02x\n",
290 snd_wss_in(chip, 0x03),
291 snd_wss_in(chip, 0x13));
292 printk(KERN_DEBUG
293 " 0x04: CD left input = 0x%02x "
294 " 0x14: timer low = 0x%02x\n",
295 snd_wss_in(chip, 0x04),
296 snd_wss_in(chip, 0x14));
297 printk(KERN_DEBUG
298 " 0x05: CD right input = 0x%02x "
299 " 0x15: timer high = 0x%02x\n",
300 snd_wss_in(chip, 0x05),
301 snd_wss_in(chip, 0x15));
302 printk(KERN_DEBUG
303 " 0x06: left output = 0x%02x "
304 " 0x16: left MIC (PnP) = 0x%02x\n",
305 snd_wss_in(chip, 0x06),
306 snd_wss_in(chip, 0x16));
307 printk(KERN_DEBUG
308 " 0x07: right output = 0x%02x "
309 " 0x17: right MIC (PnP) = 0x%02x\n",
310 snd_wss_in(chip, 0x07),
311 snd_wss_in(chip, 0x17));
312 printk(KERN_DEBUG
313 " 0x08: playback format = 0x%02x "
314 " 0x18: IRQ status = 0x%02x\n",
315 snd_wss_in(chip, 0x08),
316 snd_wss_in(chip, 0x18));
317 printk(KERN_DEBUG
318 " 0x09: iface (CFIG 1) = 0x%02x "
319 " 0x19: left line out = 0x%02x\n",
320 snd_wss_in(chip, 0x09),
321 snd_wss_in(chip, 0x19));
322 printk(KERN_DEBUG
323 " 0x0a: pin control = 0x%02x "
324 " 0x1a: mono control = 0x%02x\n",
325 snd_wss_in(chip, 0x0a),
326 snd_wss_in(chip, 0x1a));
327 printk(KERN_DEBUG
328 " 0x0b: init & status = 0x%02x "
329 " 0x1b: right line out = 0x%02x\n",
330 snd_wss_in(chip, 0x0b),
331 snd_wss_in(chip, 0x1b));
332 printk(KERN_DEBUG
333 " 0x0c: revision & mode = 0x%02x "
334 " 0x1c: record format = 0x%02x\n",
335 snd_wss_in(chip, 0x0c),
336 snd_wss_in(chip, 0x1c));
337 printk(KERN_DEBUG
338 " 0x0d: loopback = 0x%02x "
339 " 0x1d: var freq (PnP) = 0x%02x\n",
340 snd_wss_in(chip, 0x0d),
341 snd_wss_in(chip, 0x1d));
342 printk(KERN_DEBUG
343 " 0x0e: ply upr count = 0x%02x "
344 " 0x1e: ply lwr count = 0x%02x\n",
345 snd_wss_in(chip, 0x0e),
346 snd_wss_in(chip, 0x1e));
347 printk(KERN_DEBUG
348 " 0x0f: rec upr count = 0x%02x "
349 " 0x1f: rec lwr count = 0x%02x\n",
350 snd_wss_in(chip, 0x0f),
351 snd_wss_in(chip, 0x1f));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352}
353
354#endif
355
356/*
357 * CS4231 detection / MCE routines
358 */
359
Krzysztof Helt7779f752008-07-31 21:03:41 +0200360static void snd_wss_busy_wait(struct snd_wss *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361{
362 int timeout;
363
364 /* huh.. looks like this sequence is proper for CS4231A chip (GUS MAX) */
365 for (timeout = 5; timeout > 0; timeout--)
Krzysztof Helt7779f752008-07-31 21:03:41 +0200366 wss_inb(chip, CS4231P(REGSEL));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 /* end of cleanup sequence */
Krzysztof Heltead893c2008-07-31 21:09:32 +0200368 for (timeout = 25000;
Krzysztof Helt7779f752008-07-31 21:03:41 +0200369 timeout > 0 && (wss_inb(chip, CS4231P(REGSEL)) & CS4231_INIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 timeout--)
Krzysztof Helt9295aea2008-07-31 21:00:17 +0200371 udelay(10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372}
373
Krzysztof Helt7779f752008-07-31 21:03:41 +0200374void snd_wss_mce_up(struct snd_wss *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375{
376 unsigned long flags;
377 int timeout;
378
Krzysztof Helt7779f752008-07-31 21:03:41 +0200379 snd_wss_wait(chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380#ifdef CONFIG_SND_DEBUG
Krzysztof Helt7779f752008-07-31 21:03:41 +0200381 if (wss_inb(chip, CS4231P(REGSEL)) & CS4231_INIT)
Takashi Iwai76d498e2009-02-05 15:45:05 +0100382 snd_printk(KERN_DEBUG
383 "mce_up - auto calibration time out (0)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384#endif
385 spin_lock_irqsave(&chip->reg_lock, flags);
386 chip->mce_bit |= CS4231_MCE;
Krzysztof Helt7779f752008-07-31 21:03:41 +0200387 timeout = wss_inb(chip, CS4231P(REGSEL));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 if (timeout == 0x80)
Takashi Iwai76d498e2009-02-05 15:45:05 +0100389 snd_printk(KERN_DEBUG "mce_up [0x%lx]: "
390 "serious init problem - codec still busy\n",
391 chip->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 if (!(timeout & CS4231_MCE))
Krzysztof Helt7779f752008-07-31 21:03:41 +0200393 wss_outb(chip, CS4231P(REGSEL),
394 chip->mce_bit | (timeout & 0x1f));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 spin_unlock_irqrestore(&chip->reg_lock, flags);
396}
Krzysztof Helt7779f752008-07-31 21:03:41 +0200397EXPORT_SYMBOL(snd_wss_mce_up);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398
Krzysztof Helt7779f752008-07-31 21:03:41 +0200399void snd_wss_mce_down(struct snd_wss *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400{
401 unsigned long flags;
Takashi Iwaib875d652007-09-11 10:12:14 +0200402 unsigned long end_time;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 int timeout;
Krzysztof Heltead893c2008-07-31 21:09:32 +0200404 int hw_mask = WSS_HW_CS4231_MASK | WSS_HW_CS4232_MASK | WSS_HW_AD1848;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405
Krzysztof Helt7779f752008-07-31 21:03:41 +0200406 snd_wss_busy_wait(chip);
Rene Hermand44df2d2007-09-10 23:22:55 +0200407
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408#ifdef CONFIG_SND_DEBUG
Krzysztof Helt7779f752008-07-31 21:03:41 +0200409 if (wss_inb(chip, CS4231P(REGSEL)) & CS4231_INIT)
Takashi Iwai76d498e2009-02-05 15:45:05 +0100410 snd_printk(KERN_DEBUG "mce_down [0x%lx] - "
411 "auto calibration time out (0)\n",
412 (long)CS4231P(REGSEL));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413#endif
414 spin_lock_irqsave(&chip->reg_lock, flags);
415 chip->mce_bit &= ~CS4231_MCE;
Krzysztof Helt7779f752008-07-31 21:03:41 +0200416 timeout = wss_inb(chip, CS4231P(REGSEL));
417 wss_outb(chip, CS4231P(REGSEL), chip->mce_bit | (timeout & 0x1f));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 spin_unlock_irqrestore(&chip->reg_lock, flags);
419 if (timeout == 0x80)
Takashi Iwai76d498e2009-02-05 15:45:05 +0100420 snd_printk(KERN_DEBUG "mce_down [0x%lx]: "
421 "serious init problem - codec still busy\n",
422 chip->port);
Krzysztof Heltead893c2008-07-31 21:09:32 +0200423 if ((timeout & CS4231_MCE) == 0 || !(chip->hardware & hw_mask))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425
Rene Herman90cf9b82007-09-10 23:19:55 +0200426 /*
427 * Wait for (possible -- during init auto-calibration may not be set)
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300428 * calibration process to start. Needs up to 5 sample periods on AD1848
Rene Herman90cf9b82007-09-10 23:19:55 +0200429 * which at the slowest possible rate of 5.5125 kHz means 907 us.
430 */
431 msleep(1);
Rene Hermand44df2d2007-09-10 23:22:55 +0200432
433 snd_printdd("(1) jiffies = %lu\n", jiffies);
434
Krzysztof Helt23d4635ed2007-09-11 00:40:42 +0200435 /* check condition up to 250 ms */
Takashi Iwaib875d652007-09-11 10:12:14 +0200436 end_time = jiffies + msecs_to_jiffies(250);
Krzysztof Helt7779f752008-07-31 21:03:41 +0200437 while (snd_wss_in(chip, CS4231_TEST_INIT) &
Krzysztof Helt23d4635ed2007-09-11 00:40:42 +0200438 CS4231_CALIB_IN_PROGRESS) {
439
Takashi Iwaib875d652007-09-11 10:12:14 +0200440 if (time_after(jiffies, end_time)) {
Krzysztof Helt23d4635ed2007-09-11 00:40:42 +0200441 snd_printk(KERN_ERR "mce_down - "
442 "auto calibration time out (2)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 return;
444 }
Takashi Iwaib875d652007-09-11 10:12:14 +0200445 msleep(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 }
Rene Hermand44df2d2007-09-10 23:22:55 +0200447
448 snd_printdd("(2) jiffies = %lu\n", jiffies);
449
Krzysztof Helt23d4635ed2007-09-11 00:40:42 +0200450 /* check condition up to 100 ms */
Takashi Iwaib875d652007-09-11 10:12:14 +0200451 end_time = jiffies + msecs_to_jiffies(100);
Krzysztof Helt7779f752008-07-31 21:03:41 +0200452 while (wss_inb(chip, CS4231P(REGSEL)) & CS4231_INIT) {
Takashi Iwaib875d652007-09-11 10:12:14 +0200453 if (time_after(jiffies, end_time)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 snd_printk(KERN_ERR "mce_down - auto calibration time out (3)\n");
455 return;
456 }
Takashi Iwaib875d652007-09-11 10:12:14 +0200457 msleep(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 }
Rene Hermand44df2d2007-09-10 23:22:55 +0200459
460 snd_printdd("(3) jiffies = %lu\n", jiffies);
Krzysztof Helt7779f752008-07-31 21:03:41 +0200461 snd_printd("mce_down - exit = 0x%x\n", wss_inb(chip, CS4231P(REGSEL)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462}
Krzysztof Helt7779f752008-07-31 21:03:41 +0200463EXPORT_SYMBOL(snd_wss_mce_down);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464
Krzysztof Helt7779f752008-07-31 21:03:41 +0200465static unsigned int snd_wss_get_count(unsigned char format, unsigned int size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466{
467 switch (format & 0xe0) {
468 case CS4231_LINEAR_16:
469 case CS4231_LINEAR_16_BIG:
470 size >>= 1;
471 break;
472 case CS4231_ADPCM_16:
473 return size >> 2;
474 }
475 if (format & CS4231_STEREO)
476 size >>= 1;
477 return size;
478}
479
Krzysztof Helt7779f752008-07-31 21:03:41 +0200480static int snd_wss_trigger(struct snd_pcm_substream *substream,
481 int cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482{
Krzysztof Helt7779f752008-07-31 21:03:41 +0200483 struct snd_wss *chip = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 int result = 0;
485 unsigned int what;
Takashi Iwaiba2375a2005-11-17 14:30:42 +0100486 struct snd_pcm_substream *s;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 int do_start;
488
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 switch (cmd) {
490 case SNDRV_PCM_TRIGGER_START:
491 case SNDRV_PCM_TRIGGER_RESUME:
492 do_start = 1; break;
493 case SNDRV_PCM_TRIGGER_STOP:
494 case SNDRV_PCM_TRIGGER_SUSPEND:
495 do_start = 0; break;
496 default:
497 return -EINVAL;
498 }
499
500 what = 0;
Takashi Iwaief991b92007-02-22 12:52:53 +0100501 snd_pcm_group_for_each_entry(s, substream) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 if (s == chip->playback_substream) {
503 what |= CS4231_PLAYBACK_ENABLE;
504 snd_pcm_trigger_done(s, substream);
505 } else if (s == chip->capture_substream) {
506 what |= CS4231_RECORD_ENABLE;
507 snd_pcm_trigger_done(s, substream);
508 }
509 }
510 spin_lock(&chip->reg_lock);
511 if (do_start) {
512 chip->image[CS4231_IFACE_CTRL] |= what;
513 if (chip->trigger)
514 chip->trigger(chip, what, 1);
515 } else {
516 chip->image[CS4231_IFACE_CTRL] &= ~what;
517 if (chip->trigger)
518 chip->trigger(chip, what, 0);
519 }
Krzysztof Helt7779f752008-07-31 21:03:41 +0200520 snd_wss_out(chip, CS4231_IFACE_CTRL, chip->image[CS4231_IFACE_CTRL]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 spin_unlock(&chip->reg_lock);
522#if 0
Krzysztof Helt7779f752008-07-31 21:03:41 +0200523 snd_wss_debug(chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524#endif
525 return result;
526}
527
528/*
529 * CODEC I/O
530 */
531
Krzysztof Helt7779f752008-07-31 21:03:41 +0200532static unsigned char snd_wss_get_rate(unsigned int rate)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533{
534 int i;
535
Krzysztof Helt6c041b52007-09-06 15:03:59 +0200536 for (i = 0; i < ARRAY_SIZE(rates); i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 if (rate == rates[i])
538 return freq_bits[i];
539 // snd_BUG();
Krzysztof Helt6c041b52007-09-06 15:03:59 +0200540 return freq_bits[ARRAY_SIZE(rates) - 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541}
542
Krzysztof Helt7779f752008-07-31 21:03:41 +0200543static unsigned char snd_wss_get_format(struct snd_wss *chip,
544 int format,
545 int channels)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546{
547 unsigned char rformat;
548
549 rformat = CS4231_LINEAR_8;
550 switch (format) {
551 case SNDRV_PCM_FORMAT_MU_LAW: rformat = CS4231_ULAW_8; break;
552 case SNDRV_PCM_FORMAT_A_LAW: rformat = CS4231_ALAW_8; break;
553 case SNDRV_PCM_FORMAT_S16_LE: rformat = CS4231_LINEAR_16; break;
554 case SNDRV_PCM_FORMAT_S16_BE: rformat = CS4231_LINEAR_16_BIG; break;
555 case SNDRV_PCM_FORMAT_IMA_ADPCM: rformat = CS4231_ADPCM_16; break;
556 }
557 if (channels > 1)
558 rformat |= CS4231_STEREO;
559#if 0
Takashi Iwai76d498e2009-02-05 15:45:05 +0100560 snd_printk(KERN_DEBUG "get_format: 0x%x (mode=0x%x)\n", format, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561#endif
562 return rformat;
563}
564
Krzysztof Helt7779f752008-07-31 21:03:41 +0200565static void snd_wss_calibrate_mute(struct snd_wss *chip, int mute)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566{
567 unsigned long flags;
568
Krzysztof Heltace457c2008-08-17 22:38:27 +0200569 mute = mute ? 0x80 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 spin_lock_irqsave(&chip->reg_lock, flags);
571 if (chip->calibrate_mute == mute) {
572 spin_unlock_irqrestore(&chip->reg_lock, flags);
573 return;
574 }
575 if (!mute) {
Krzysztof Helt7779f752008-07-31 21:03:41 +0200576 snd_wss_dout(chip, CS4231_LEFT_INPUT,
577 chip->image[CS4231_LEFT_INPUT]);
578 snd_wss_dout(chip, CS4231_RIGHT_INPUT,
579 chip->image[CS4231_RIGHT_INPUT]);
580 snd_wss_dout(chip, CS4231_LOOPBACK,
581 chip->image[CS4231_LOOPBACK]);
Krzysztof Helt9ef344f2009-01-16 22:47:30 +0100582 } else {
583 snd_wss_dout(chip, CS4231_LEFT_INPUT,
584 0);
585 snd_wss_dout(chip, CS4231_RIGHT_INPUT,
586 0);
587 snd_wss_dout(chip, CS4231_LOOPBACK,
588 0xfd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 }
Krzysztof Helt9ef344f2009-01-16 22:47:30 +0100590
Krzysztof Helt7779f752008-07-31 21:03:41 +0200591 snd_wss_dout(chip, CS4231_AUX1_LEFT_INPUT,
Krzysztof Heltace457c2008-08-17 22:38:27 +0200592 mute | chip->image[CS4231_AUX1_LEFT_INPUT]);
Krzysztof Helt7779f752008-07-31 21:03:41 +0200593 snd_wss_dout(chip, CS4231_AUX1_RIGHT_INPUT,
Krzysztof Heltace457c2008-08-17 22:38:27 +0200594 mute | chip->image[CS4231_AUX1_RIGHT_INPUT]);
Krzysztof Helt7779f752008-07-31 21:03:41 +0200595 snd_wss_dout(chip, CS4231_AUX2_LEFT_INPUT,
Krzysztof Heltace457c2008-08-17 22:38:27 +0200596 mute | chip->image[CS4231_AUX2_LEFT_INPUT]);
Krzysztof Helt7779f752008-07-31 21:03:41 +0200597 snd_wss_dout(chip, CS4231_AUX2_RIGHT_INPUT,
Krzysztof Heltace457c2008-08-17 22:38:27 +0200598 mute | chip->image[CS4231_AUX2_RIGHT_INPUT]);
Krzysztof Helt7779f752008-07-31 21:03:41 +0200599 snd_wss_dout(chip, CS4231_LEFT_OUTPUT,
Krzysztof Heltace457c2008-08-17 22:38:27 +0200600 mute | chip->image[CS4231_LEFT_OUTPUT]);
Krzysztof Helt7779f752008-07-31 21:03:41 +0200601 snd_wss_dout(chip, CS4231_RIGHT_OUTPUT,
Krzysztof Heltace457c2008-08-17 22:38:27 +0200602 mute | chip->image[CS4231_RIGHT_OUTPUT]);
Krzysztof Heltead893c2008-07-31 21:09:32 +0200603 if (!(chip->hardware & WSS_HW_AD1848_MASK)) {
604 snd_wss_dout(chip, CS4231_LEFT_LINE_IN,
Krzysztof Heltace457c2008-08-17 22:38:27 +0200605 mute | chip->image[CS4231_LEFT_LINE_IN]);
Krzysztof Heltead893c2008-07-31 21:09:32 +0200606 snd_wss_dout(chip, CS4231_RIGHT_LINE_IN,
Krzysztof Heltace457c2008-08-17 22:38:27 +0200607 mute | chip->image[CS4231_RIGHT_LINE_IN]);
Krzysztof Heltead893c2008-07-31 21:09:32 +0200608 snd_wss_dout(chip, CS4231_MONO_CTRL,
609 mute ? 0xc0 : chip->image[CS4231_MONO_CTRL]);
610 }
Krzysztof Helt7779f752008-07-31 21:03:41 +0200611 if (chip->hardware == WSS_HW_INTERWAVE) {
612 snd_wss_dout(chip, CS4231_LEFT_MIC_INPUT,
Krzysztof Heltace457c2008-08-17 22:38:27 +0200613 mute | chip->image[CS4231_LEFT_MIC_INPUT]);
Krzysztof Helt7779f752008-07-31 21:03:41 +0200614 snd_wss_dout(chip, CS4231_RIGHT_MIC_INPUT,
Krzysztof Heltace457c2008-08-17 22:38:27 +0200615 mute | chip->image[CS4231_RIGHT_MIC_INPUT]);
Krzysztof Helt7779f752008-07-31 21:03:41 +0200616 snd_wss_dout(chip, CS4231_LINE_LEFT_OUTPUT,
Krzysztof Heltace457c2008-08-17 22:38:27 +0200617 mute | chip->image[CS4231_LINE_LEFT_OUTPUT]);
Krzysztof Helt7779f752008-07-31 21:03:41 +0200618 snd_wss_dout(chip, CS4231_LINE_RIGHT_OUTPUT,
Krzysztof Heltace457c2008-08-17 22:38:27 +0200619 mute | chip->image[CS4231_LINE_RIGHT_OUTPUT]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 }
621 chip->calibrate_mute = mute;
622 spin_unlock_irqrestore(&chip->reg_lock, flags);
623}
624
Krzysztof Helt7779f752008-07-31 21:03:41 +0200625static void snd_wss_playback_format(struct snd_wss *chip,
Takashi Iwaiba2375a2005-11-17 14:30:42 +0100626 struct snd_pcm_hw_params *params,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 unsigned char pdfr)
628{
629 unsigned long flags;
630 int full_calib = 1;
631
Ingo Molnar8b7547f2006-01-16 16:33:08 +0100632 mutex_lock(&chip->mce_mutex);
Krzysztof Helt7779f752008-07-31 21:03:41 +0200633 if (chip->hardware == WSS_HW_CS4231A ||
634 (chip->hardware & WSS_HW_CS4232_MASK)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 spin_lock_irqsave(&chip->reg_lock, flags);
636 if ((chip->image[CS4231_PLAYBK_FORMAT] & 0x0f) == (pdfr & 0x0f)) { /* rate is same? */
Krzysztof Helt7779f752008-07-31 21:03:41 +0200637 snd_wss_out(chip, CS4231_ALT_FEATURE_1,
638 chip->image[CS4231_ALT_FEATURE_1] | 0x10);
639 chip->image[CS4231_PLAYBK_FORMAT] = pdfr;
640 snd_wss_out(chip, CS4231_PLAYBK_FORMAT,
641 chip->image[CS4231_PLAYBK_FORMAT]);
642 snd_wss_out(chip, CS4231_ALT_FEATURE_1,
643 chip->image[CS4231_ALT_FEATURE_1] &= ~0x10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 udelay(100); /* Fixes audible clicks at least on GUS MAX */
645 full_calib = 0;
646 }
647 spin_unlock_irqrestore(&chip->reg_lock, flags);
Krzysztof Helt199f7972009-01-09 23:10:52 +0100648 } else if (chip->hardware == WSS_HW_AD1845) {
649 unsigned rate = params_rate(params);
650
651 /*
652 * Program the AD1845 correctly for the playback stream.
653 * Note that we do NOT need to toggle the MCE bit because
654 * the PLAYBACK_ENABLE bit of the Interface Configuration
655 * register is set.
656 *
657 * NOTE: We seem to need to write to the MSB before the LSB
658 * to get the correct sample frequency.
659 */
660 spin_lock_irqsave(&chip->reg_lock, flags);
661 snd_wss_out(chip, CS4231_PLAYBK_FORMAT, (pdfr & 0xf0));
662 snd_wss_out(chip, AD1845_UPR_FREQ_SEL, (rate >> 8) & 0xff);
663 snd_wss_out(chip, AD1845_LWR_FREQ_SEL, rate & 0xff);
664 full_calib = 0;
665 spin_unlock_irqrestore(&chip->reg_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 }
667 if (full_calib) {
Krzysztof Helt7779f752008-07-31 21:03:41 +0200668 snd_wss_mce_up(chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 spin_lock_irqsave(&chip->reg_lock, flags);
Krzysztof Helt7779f752008-07-31 21:03:41 +0200670 if (chip->hardware != WSS_HW_INTERWAVE && !chip->single_dma) {
671 if (chip->image[CS4231_IFACE_CTRL] & CS4231_RECORD_ENABLE)
672 pdfr = (pdfr & 0xf0) |
673 (chip->image[CS4231_REC_FORMAT] & 0x0f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 } else {
Krzysztof Helt7779f752008-07-31 21:03:41 +0200675 chip->image[CS4231_PLAYBK_FORMAT] = pdfr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 }
Krzysztof Helt7779f752008-07-31 21:03:41 +0200677 snd_wss_out(chip, CS4231_PLAYBK_FORMAT, pdfr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 spin_unlock_irqrestore(&chip->reg_lock, flags);
Krzysztof Helt7779f752008-07-31 21:03:41 +0200679 if (chip->hardware == WSS_HW_OPL3SA2)
Paul Vojtae2340462007-07-27 12:20:38 +0200680 udelay(100); /* this seems to help */
Krzysztof Helt7779f752008-07-31 21:03:41 +0200681 snd_wss_mce_down(chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 }
Ingo Molnar8b7547f2006-01-16 16:33:08 +0100683 mutex_unlock(&chip->mce_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684}
685
Krzysztof Helt7779f752008-07-31 21:03:41 +0200686static void snd_wss_capture_format(struct snd_wss *chip,
687 struct snd_pcm_hw_params *params,
688 unsigned char cdfr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689{
690 unsigned long flags;
691 int full_calib = 1;
692
Ingo Molnar8b7547f2006-01-16 16:33:08 +0100693 mutex_lock(&chip->mce_mutex);
Krzysztof Helt7779f752008-07-31 21:03:41 +0200694 if (chip->hardware == WSS_HW_CS4231A ||
695 (chip->hardware & WSS_HW_CS4232_MASK)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 spin_lock_irqsave(&chip->reg_lock, flags);
697 if ((chip->image[CS4231_PLAYBK_FORMAT] & 0x0f) == (cdfr & 0x0f) || /* rate is same? */
698 (chip->image[CS4231_IFACE_CTRL] & CS4231_PLAYBACK_ENABLE)) {
Krzysztof Helt7779f752008-07-31 21:03:41 +0200699 snd_wss_out(chip, CS4231_ALT_FEATURE_1,
700 chip->image[CS4231_ALT_FEATURE_1] | 0x20);
701 snd_wss_out(chip, CS4231_REC_FORMAT,
702 chip->image[CS4231_REC_FORMAT] = cdfr);
703 snd_wss_out(chip, CS4231_ALT_FEATURE_1,
704 chip->image[CS4231_ALT_FEATURE_1] &= ~0x20);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 full_calib = 0;
706 }
707 spin_unlock_irqrestore(&chip->reg_lock, flags);
Krzysztof Helt199f7972009-01-09 23:10:52 +0100708 } else if (chip->hardware == WSS_HW_AD1845) {
709 unsigned rate = params_rate(params);
710
711 /*
712 * Program the AD1845 correctly for the capture stream.
713 * Note that we do NOT need to toggle the MCE bit because
714 * the PLAYBACK_ENABLE bit of the Interface Configuration
715 * register is set.
716 *
717 * NOTE: We seem to need to write to the MSB before the LSB
718 * to get the correct sample frequency.
719 */
720 spin_lock_irqsave(&chip->reg_lock, flags);
721 snd_wss_out(chip, CS4231_REC_FORMAT, (cdfr & 0xf0));
722 snd_wss_out(chip, AD1845_UPR_FREQ_SEL, (rate >> 8) & 0xff);
723 snd_wss_out(chip, AD1845_LWR_FREQ_SEL, rate & 0xff);
724 full_calib = 0;
725 spin_unlock_irqrestore(&chip->reg_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 }
727 if (full_calib) {
Krzysztof Helt7779f752008-07-31 21:03:41 +0200728 snd_wss_mce_up(chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 spin_lock_irqsave(&chip->reg_lock, flags);
Krzysztof Helt7779f752008-07-31 21:03:41 +0200730 if (chip->hardware != WSS_HW_INTERWAVE &&
731 !(chip->image[CS4231_IFACE_CTRL] & CS4231_PLAYBACK_ENABLE)) {
732 if (chip->single_dma)
733 snd_wss_out(chip, CS4231_PLAYBK_FORMAT, cdfr);
734 else
735 snd_wss_out(chip, CS4231_PLAYBK_FORMAT,
736 (chip->image[CS4231_PLAYBK_FORMAT] & 0xf0) |
737 (cdfr & 0x0f));
738 spin_unlock_irqrestore(&chip->reg_lock, flags);
739 snd_wss_mce_down(chip);
740 snd_wss_mce_up(chip);
741 spin_lock_irqsave(&chip->reg_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 }
Krzysztof Heltead893c2008-07-31 21:09:32 +0200743 if (chip->hardware & WSS_HW_AD1848_MASK)
744 snd_wss_out(chip, CS4231_PLAYBK_FORMAT, cdfr);
745 else
746 snd_wss_out(chip, CS4231_REC_FORMAT, cdfr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 spin_unlock_irqrestore(&chip->reg_lock, flags);
Krzysztof Helt7779f752008-07-31 21:03:41 +0200748 snd_wss_mce_down(chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 }
Ingo Molnar8b7547f2006-01-16 16:33:08 +0100750 mutex_unlock(&chip->mce_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751}
752
753/*
754 * Timer interface
755 */
756
Krzysztof Helt7779f752008-07-31 21:03:41 +0200757static unsigned long snd_wss_timer_resolution(struct snd_timer *timer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758{
Krzysztof Helt7779f752008-07-31 21:03:41 +0200759 struct snd_wss *chip = snd_timer_chip(timer);
760 if (chip->hardware & WSS_HW_CS4236B_MASK)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 return 14467;
762 else
763 return chip->image[CS4231_PLAYBK_FORMAT] & 1 ? 9969 : 9920;
764}
765
Krzysztof Helt7779f752008-07-31 21:03:41 +0200766static int snd_wss_timer_start(struct snd_timer *timer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767{
768 unsigned long flags;
769 unsigned int ticks;
Krzysztof Helt7779f752008-07-31 21:03:41 +0200770 struct snd_wss *chip = snd_timer_chip(timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 spin_lock_irqsave(&chip->reg_lock, flags);
772 ticks = timer->sticks;
773 if ((chip->image[CS4231_ALT_FEATURE_1] & CS4231_TIMER_ENABLE) == 0 ||
774 (unsigned char)(ticks >> 8) != chip->image[CS4231_TIMER_HIGH] ||
775 (unsigned char)ticks != chip->image[CS4231_TIMER_LOW]) {
Krzysztof Helt7779f752008-07-31 21:03:41 +0200776 chip->image[CS4231_TIMER_HIGH] = (unsigned char) (ticks >> 8);
777 snd_wss_out(chip, CS4231_TIMER_HIGH,
778 chip->image[CS4231_TIMER_HIGH]);
779 chip->image[CS4231_TIMER_LOW] = (unsigned char) ticks;
780 snd_wss_out(chip, CS4231_TIMER_LOW,
781 chip->image[CS4231_TIMER_LOW]);
782 snd_wss_out(chip, CS4231_ALT_FEATURE_1,
783 chip->image[CS4231_ALT_FEATURE_1] |
784 CS4231_TIMER_ENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 }
786 spin_unlock_irqrestore(&chip->reg_lock, flags);
787 return 0;
788}
789
Krzysztof Helt7779f752008-07-31 21:03:41 +0200790static int snd_wss_timer_stop(struct snd_timer *timer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791{
792 unsigned long flags;
Krzysztof Helt7779f752008-07-31 21:03:41 +0200793 struct snd_wss *chip = snd_timer_chip(timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 spin_lock_irqsave(&chip->reg_lock, flags);
Krzysztof Helt7779f752008-07-31 21:03:41 +0200795 chip->image[CS4231_ALT_FEATURE_1] &= ~CS4231_TIMER_ENABLE;
796 snd_wss_out(chip, CS4231_ALT_FEATURE_1,
797 chip->image[CS4231_ALT_FEATURE_1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 spin_unlock_irqrestore(&chip->reg_lock, flags);
799 return 0;
800}
801
Krzysztof Helt7779f752008-07-31 21:03:41 +0200802static void snd_wss_init(struct snd_wss *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803{
804 unsigned long flags;
805
Krzysztof Helt9ef344f2009-01-16 22:47:30 +0100806 snd_wss_calibrate_mute(chip, 1);
Krzysztof Helt7779f752008-07-31 21:03:41 +0200807 snd_wss_mce_down(chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808
809#ifdef SNDRV_DEBUG_MCE
Takashi Iwai76d498e2009-02-05 15:45:05 +0100810 snd_printk(KERN_DEBUG "init: (1)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811#endif
Krzysztof Helt7779f752008-07-31 21:03:41 +0200812 snd_wss_mce_up(chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 spin_lock_irqsave(&chip->reg_lock, flags);
Krzysztof Helt7779f752008-07-31 21:03:41 +0200814 chip->image[CS4231_IFACE_CTRL] &= ~(CS4231_PLAYBACK_ENABLE |
815 CS4231_PLAYBACK_PIO |
816 CS4231_RECORD_ENABLE |
817 CS4231_RECORD_PIO |
818 CS4231_CALIB_MODE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 chip->image[CS4231_IFACE_CTRL] |= CS4231_AUTOCALIB;
Krzysztof Helt7779f752008-07-31 21:03:41 +0200820 snd_wss_out(chip, CS4231_IFACE_CTRL, chip->image[CS4231_IFACE_CTRL]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 spin_unlock_irqrestore(&chip->reg_lock, flags);
Krzysztof Helt7779f752008-07-31 21:03:41 +0200822 snd_wss_mce_down(chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823
824#ifdef SNDRV_DEBUG_MCE
Takashi Iwai76d498e2009-02-05 15:45:05 +0100825 snd_printk(KERN_DEBUG "init: (2)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826#endif
827
Krzysztof Helt7779f752008-07-31 21:03:41 +0200828 snd_wss_mce_up(chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 spin_lock_irqsave(&chip->reg_lock, flags);
Krzysztof Helt9ef344f2009-01-16 22:47:30 +0100830 chip->image[CS4231_IFACE_CTRL] &= ~CS4231_AUTOCALIB;
831 snd_wss_out(chip, CS4231_IFACE_CTRL, chip->image[CS4231_IFACE_CTRL]);
Krzysztof Helt7779f752008-07-31 21:03:41 +0200832 snd_wss_out(chip,
833 CS4231_ALT_FEATURE_1, chip->image[CS4231_ALT_FEATURE_1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 spin_unlock_irqrestore(&chip->reg_lock, flags);
Krzysztof Helt7779f752008-07-31 21:03:41 +0200835 snd_wss_mce_down(chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836
837#ifdef SNDRV_DEBUG_MCE
Takashi Iwai76d498e2009-02-05 15:45:05 +0100838 snd_printk(KERN_DEBUG "init: (3) - afei = 0x%x\n",
Krzysztof Helt7779f752008-07-31 21:03:41 +0200839 chip->image[CS4231_ALT_FEATURE_1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840#endif
841
842 spin_lock_irqsave(&chip->reg_lock, flags);
Krzysztof Helt7779f752008-07-31 21:03:41 +0200843 snd_wss_out(chip, CS4231_ALT_FEATURE_2,
844 chip->image[CS4231_ALT_FEATURE_2]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 spin_unlock_irqrestore(&chip->reg_lock, flags);
846
Krzysztof Helt7779f752008-07-31 21:03:41 +0200847 snd_wss_mce_up(chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 spin_lock_irqsave(&chip->reg_lock, flags);
Krzysztof Helt7779f752008-07-31 21:03:41 +0200849 snd_wss_out(chip, CS4231_PLAYBK_FORMAT,
850 chip->image[CS4231_PLAYBK_FORMAT]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 spin_unlock_irqrestore(&chip->reg_lock, flags);
Krzysztof Helt7779f752008-07-31 21:03:41 +0200852 snd_wss_mce_down(chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853
854#ifdef SNDRV_DEBUG_MCE
Takashi Iwai76d498e2009-02-05 15:45:05 +0100855 snd_printk(KERN_DEBUG "init: (4)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856#endif
857
Krzysztof Helt7779f752008-07-31 21:03:41 +0200858 snd_wss_mce_up(chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 spin_lock_irqsave(&chip->reg_lock, flags);
Krzysztof Heltead893c2008-07-31 21:09:32 +0200860 if (!(chip->hardware & WSS_HW_AD1848_MASK))
861 snd_wss_out(chip, CS4231_REC_FORMAT,
862 chip->image[CS4231_REC_FORMAT]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 spin_unlock_irqrestore(&chip->reg_lock, flags);
Krzysztof Helt7779f752008-07-31 21:03:41 +0200864 snd_wss_mce_down(chip);
Krzysztof Helt9ef344f2009-01-16 22:47:30 +0100865 snd_wss_calibrate_mute(chip, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866
867#ifdef SNDRV_DEBUG_MCE
Takashi Iwai76d498e2009-02-05 15:45:05 +0100868 snd_printk(KERN_DEBUG "init: (5)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869#endif
870}
871
Krzysztof Helt7779f752008-07-31 21:03:41 +0200872static int snd_wss_open(struct snd_wss *chip, unsigned int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873{
874 unsigned long flags;
875
Ingo Molnar8b7547f2006-01-16 16:33:08 +0100876 mutex_lock(&chip->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 if ((chip->mode & mode) ||
Krzysztof Helt7779f752008-07-31 21:03:41 +0200878 ((chip->mode & WSS_MODE_OPEN) && chip->single_dma)) {
Ingo Molnar8b7547f2006-01-16 16:33:08 +0100879 mutex_unlock(&chip->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 return -EAGAIN;
881 }
Krzysztof Helt7779f752008-07-31 21:03:41 +0200882 if (chip->mode & WSS_MODE_OPEN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 chip->mode |= mode;
Ingo Molnar8b7547f2006-01-16 16:33:08 +0100884 mutex_unlock(&chip->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 return 0;
886 }
887 /* ok. now enable and ack CODEC IRQ */
888 spin_lock_irqsave(&chip->reg_lock, flags);
Krzysztof Heltead893c2008-07-31 21:09:32 +0200889 if (!(chip->hardware & WSS_HW_AD1848_MASK)) {
890 snd_wss_out(chip, CS4231_IRQ_STATUS,
891 CS4231_PLAYBACK_IRQ |
892 CS4231_RECORD_IRQ |
893 CS4231_TIMER_IRQ);
894 snd_wss_out(chip, CS4231_IRQ_STATUS, 0);
895 }
Krzysztof Helt7779f752008-07-31 21:03:41 +0200896 wss_outb(chip, CS4231P(STATUS), 0); /* clear IRQ */
897 wss_outb(chip, CS4231P(STATUS), 0); /* clear IRQ */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 chip->image[CS4231_PIN_CTRL] |= CS4231_IRQ_ENABLE;
Krzysztof Helt7779f752008-07-31 21:03:41 +0200899 snd_wss_out(chip, CS4231_PIN_CTRL, chip->image[CS4231_PIN_CTRL]);
Krzysztof Heltead893c2008-07-31 21:09:32 +0200900 if (!(chip->hardware & WSS_HW_AD1848_MASK)) {
901 snd_wss_out(chip, CS4231_IRQ_STATUS,
902 CS4231_PLAYBACK_IRQ |
903 CS4231_RECORD_IRQ |
904 CS4231_TIMER_IRQ);
905 snd_wss_out(chip, CS4231_IRQ_STATUS, 0);
906 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 spin_unlock_irqrestore(&chip->reg_lock, flags);
908
909 chip->mode = mode;
Ingo Molnar8b7547f2006-01-16 16:33:08 +0100910 mutex_unlock(&chip->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 return 0;
912}
913
Krzysztof Helt7779f752008-07-31 21:03:41 +0200914static void snd_wss_close(struct snd_wss *chip, unsigned int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915{
916 unsigned long flags;
917
Ingo Molnar8b7547f2006-01-16 16:33:08 +0100918 mutex_lock(&chip->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 chip->mode &= ~mode;
Krzysztof Helt7779f752008-07-31 21:03:41 +0200920 if (chip->mode & WSS_MODE_OPEN) {
Ingo Molnar8b7547f2006-01-16 16:33:08 +0100921 mutex_unlock(&chip->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 return;
923 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 /* disable IRQ */
925 spin_lock_irqsave(&chip->reg_lock, flags);
Krzysztof Heltead893c2008-07-31 21:09:32 +0200926 if (!(chip->hardware & WSS_HW_AD1848_MASK))
927 snd_wss_out(chip, CS4231_IRQ_STATUS, 0);
Krzysztof Helt7779f752008-07-31 21:03:41 +0200928 wss_outb(chip, CS4231P(STATUS), 0); /* clear IRQ */
929 wss_outb(chip, CS4231P(STATUS), 0); /* clear IRQ */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 chip->image[CS4231_PIN_CTRL] &= ~CS4231_IRQ_ENABLE;
Krzysztof Helt7779f752008-07-31 21:03:41 +0200931 snd_wss_out(chip, CS4231_PIN_CTRL, chip->image[CS4231_PIN_CTRL]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932
933 /* now disable record & playback */
934
935 if (chip->image[CS4231_IFACE_CTRL] & (CS4231_PLAYBACK_ENABLE | CS4231_PLAYBACK_PIO |
936 CS4231_RECORD_ENABLE | CS4231_RECORD_PIO)) {
937 spin_unlock_irqrestore(&chip->reg_lock, flags);
Krzysztof Helt7779f752008-07-31 21:03:41 +0200938 snd_wss_mce_up(chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 spin_lock_irqsave(&chip->reg_lock, flags);
940 chip->image[CS4231_IFACE_CTRL] &= ~(CS4231_PLAYBACK_ENABLE | CS4231_PLAYBACK_PIO |
941 CS4231_RECORD_ENABLE | CS4231_RECORD_PIO);
Krzysztof Helt7779f752008-07-31 21:03:41 +0200942 snd_wss_out(chip, CS4231_IFACE_CTRL,
943 chip->image[CS4231_IFACE_CTRL]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 spin_unlock_irqrestore(&chip->reg_lock, flags);
Krzysztof Helt7779f752008-07-31 21:03:41 +0200945 snd_wss_mce_down(chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 spin_lock_irqsave(&chip->reg_lock, flags);
947 }
948
949 /* clear IRQ again */
Krzysztof Heltead893c2008-07-31 21:09:32 +0200950 if (!(chip->hardware & WSS_HW_AD1848_MASK))
951 snd_wss_out(chip, CS4231_IRQ_STATUS, 0);
Krzysztof Helt7779f752008-07-31 21:03:41 +0200952 wss_outb(chip, CS4231P(STATUS), 0); /* clear IRQ */
953 wss_outb(chip, CS4231P(STATUS), 0); /* clear IRQ */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 spin_unlock_irqrestore(&chip->reg_lock, flags);
955
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 chip->mode = 0;
Ingo Molnar8b7547f2006-01-16 16:33:08 +0100957 mutex_unlock(&chip->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958}
959
960/*
961 * timer open/close
962 */
963
Krzysztof Helt7779f752008-07-31 21:03:41 +0200964static int snd_wss_timer_open(struct snd_timer *timer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965{
Krzysztof Helt7779f752008-07-31 21:03:41 +0200966 struct snd_wss *chip = snd_timer_chip(timer);
967 snd_wss_open(chip, WSS_MODE_TIMER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 return 0;
969}
970
Krzysztof Helt7779f752008-07-31 21:03:41 +0200971static int snd_wss_timer_close(struct snd_timer *timer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972{
Krzysztof Helt7779f752008-07-31 21:03:41 +0200973 struct snd_wss *chip = snd_timer_chip(timer);
974 snd_wss_close(chip, WSS_MODE_TIMER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 return 0;
976}
977
Krzysztof Helt7779f752008-07-31 21:03:41 +0200978static struct snd_timer_hardware snd_wss_timer_table =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979{
980 .flags = SNDRV_TIMER_HW_AUTO,
981 .resolution = 9945,
982 .ticks = 65535,
Krzysztof Helt7779f752008-07-31 21:03:41 +0200983 .open = snd_wss_timer_open,
984 .close = snd_wss_timer_close,
985 .c_resolution = snd_wss_timer_resolution,
986 .start = snd_wss_timer_start,
987 .stop = snd_wss_timer_stop,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988};
989
990/*
991 * ok.. exported functions..
992 */
993
Krzysztof Helt7779f752008-07-31 21:03:41 +0200994static int snd_wss_playback_hw_params(struct snd_pcm_substream *substream,
Takashi Iwaiba2375a2005-11-17 14:30:42 +0100995 struct snd_pcm_hw_params *hw_params)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996{
Krzysztof Helt7779f752008-07-31 21:03:41 +0200997 struct snd_wss *chip = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 unsigned char new_pdfr;
999 int err;
1000
1001 if ((err = snd_pcm_lib_malloc_pages(substream, params_buffer_bytes(hw_params))) < 0)
1002 return err;
Krzysztof Helt7779f752008-07-31 21:03:41 +02001003 new_pdfr = snd_wss_get_format(chip, params_format(hw_params),
1004 params_channels(hw_params)) |
1005 snd_wss_get_rate(params_rate(hw_params));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 chip->set_playback_format(chip, hw_params, new_pdfr);
1007 return 0;
1008}
1009
Krzysztof Helt7779f752008-07-31 21:03:41 +02001010static int snd_wss_playback_hw_free(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011{
1012 return snd_pcm_lib_free_pages(substream);
1013}
1014
Krzysztof Helt7779f752008-07-31 21:03:41 +02001015static int snd_wss_playback_prepare(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016{
Krzysztof Helt7779f752008-07-31 21:03:41 +02001017 struct snd_wss *chip = snd_pcm_substream_chip(substream);
Takashi Iwaiba2375a2005-11-17 14:30:42 +01001018 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 unsigned long flags;
1020 unsigned int size = snd_pcm_lib_buffer_bytes(substream);
1021 unsigned int count = snd_pcm_lib_period_bytes(substream);
1022
1023 spin_lock_irqsave(&chip->reg_lock, flags);
1024 chip->p_dma_size = size;
1025 chip->image[CS4231_IFACE_CTRL] &= ~(CS4231_PLAYBACK_ENABLE | CS4231_PLAYBACK_PIO);
1026 snd_dma_program(chip->dma1, runtime->dma_addr, size, DMA_MODE_WRITE | DMA_AUTOINIT);
Krzysztof Helt7779f752008-07-31 21:03:41 +02001027 count = snd_wss_get_count(chip->image[CS4231_PLAYBK_FORMAT], count) - 1;
1028 snd_wss_out(chip, CS4231_PLY_LWR_CNT, (unsigned char) count);
1029 snd_wss_out(chip, CS4231_PLY_UPR_CNT, (unsigned char) (count >> 8));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 spin_unlock_irqrestore(&chip->reg_lock, flags);
1031#if 0
Krzysztof Helt7779f752008-07-31 21:03:41 +02001032 snd_wss_debug(chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033#endif
1034 return 0;
1035}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036
Krzysztof Helt7779f752008-07-31 21:03:41 +02001037static int snd_wss_capture_hw_params(struct snd_pcm_substream *substream,
Takashi Iwaiba2375a2005-11-17 14:30:42 +01001038 struct snd_pcm_hw_params *hw_params)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039{
Krzysztof Helt7779f752008-07-31 21:03:41 +02001040 struct snd_wss *chip = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 unsigned char new_cdfr;
1042 int err;
1043
1044 if ((err = snd_pcm_lib_malloc_pages(substream, params_buffer_bytes(hw_params))) < 0)
1045 return err;
Krzysztof Helt7779f752008-07-31 21:03:41 +02001046 new_cdfr = snd_wss_get_format(chip, params_format(hw_params),
1047 params_channels(hw_params)) |
1048 snd_wss_get_rate(params_rate(hw_params));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 chip->set_capture_format(chip, hw_params, new_cdfr);
1050 return 0;
1051}
1052
Krzysztof Helt7779f752008-07-31 21:03:41 +02001053static int snd_wss_capture_hw_free(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054{
1055 return snd_pcm_lib_free_pages(substream);
1056}
1057
Krzysztof Helt7779f752008-07-31 21:03:41 +02001058static int snd_wss_capture_prepare(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059{
Krzysztof Helt7779f752008-07-31 21:03:41 +02001060 struct snd_wss *chip = snd_pcm_substream_chip(substream);
Takashi Iwaiba2375a2005-11-17 14:30:42 +01001061 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 unsigned long flags;
1063 unsigned int size = snd_pcm_lib_buffer_bytes(substream);
1064 unsigned int count = snd_pcm_lib_period_bytes(substream);
1065
1066 spin_lock_irqsave(&chip->reg_lock, flags);
1067 chip->c_dma_size = size;
1068 chip->image[CS4231_IFACE_CTRL] &= ~(CS4231_RECORD_ENABLE | CS4231_RECORD_PIO);
1069 snd_dma_program(chip->dma2, runtime->dma_addr, size, DMA_MODE_READ | DMA_AUTOINIT);
Krzysztof Heltead893c2008-07-31 21:09:32 +02001070 if (chip->hardware & WSS_HW_AD1848_MASK)
1071 count = snd_wss_get_count(chip->image[CS4231_PLAYBK_FORMAT],
1072 count);
1073 else
1074 count = snd_wss_get_count(chip->image[CS4231_REC_FORMAT],
1075 count);
1076 count--;
Krzysztof Helt7779f752008-07-31 21:03:41 +02001077 if (chip->single_dma && chip->hardware != WSS_HW_INTERWAVE) {
1078 snd_wss_out(chip, CS4231_PLY_LWR_CNT, (unsigned char) count);
1079 snd_wss_out(chip, CS4231_PLY_UPR_CNT,
1080 (unsigned char) (count >> 8));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 } else {
Krzysztof Helt7779f752008-07-31 21:03:41 +02001082 snd_wss_out(chip, CS4231_REC_LWR_CNT, (unsigned char) count);
1083 snd_wss_out(chip, CS4231_REC_UPR_CNT,
1084 (unsigned char) (count >> 8));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 }
1086 spin_unlock_irqrestore(&chip->reg_lock, flags);
1087 return 0;
1088}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089
Krzysztof Helt7779f752008-07-31 21:03:41 +02001090void snd_wss_overrange(struct snd_wss *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091{
1092 unsigned long flags;
1093 unsigned char res;
1094
1095 spin_lock_irqsave(&chip->reg_lock, flags);
Krzysztof Helt7779f752008-07-31 21:03:41 +02001096 res = snd_wss_in(chip, CS4231_TEST_INIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 spin_unlock_irqrestore(&chip->reg_lock, flags);
1098 if (res & (0x08 | 0x02)) /* detect overrange only above 0dB; may be user selectable? */
1099 chip->capture_substream->runtime->overrange++;
1100}
Krzysztof Helt7779f752008-07-31 21:03:41 +02001101EXPORT_SYMBOL(snd_wss_overrange);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102
Krzysztof Helt7779f752008-07-31 21:03:41 +02001103irqreturn_t snd_wss_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104{
Krzysztof Helt7779f752008-07-31 21:03:41 +02001105 struct snd_wss *chip = dev_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 unsigned char status;
1107
Krzysztof Helt760fc6b82008-07-31 21:10:47 +02001108 if (chip->hardware & WSS_HW_AD1848_MASK)
1109 /* pretend it was the only possible irq for AD1848 */
1110 status = CS4231_PLAYBACK_IRQ;
1111 else
1112 status = snd_wss_in(chip, CS4231_IRQ_STATUS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 if (status & CS4231_TIMER_IRQ) {
1114 if (chip->timer)
1115 snd_timer_interrupt(chip->timer, chip->timer->sticks);
Krzysztof Helt9295aea2008-07-31 21:00:17 +02001116 }
Krzysztof Helt7779f752008-07-31 21:03:41 +02001117 if (chip->single_dma && chip->hardware != WSS_HW_INTERWAVE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 if (status & CS4231_PLAYBACK_IRQ) {
Krzysztof Helt7779f752008-07-31 21:03:41 +02001119 if (chip->mode & WSS_MODE_PLAY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 if (chip->playback_substream)
1121 snd_pcm_period_elapsed(chip->playback_substream);
1122 }
Krzysztof Helt7779f752008-07-31 21:03:41 +02001123 if (chip->mode & WSS_MODE_RECORD) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 if (chip->capture_substream) {
Krzysztof Helt7779f752008-07-31 21:03:41 +02001125 snd_wss_overrange(chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 snd_pcm_period_elapsed(chip->capture_substream);
1127 }
1128 }
1129 }
1130 } else {
1131 if (status & CS4231_PLAYBACK_IRQ) {
1132 if (chip->playback_substream)
1133 snd_pcm_period_elapsed(chip->playback_substream);
1134 }
1135 if (status & CS4231_RECORD_IRQ) {
1136 if (chip->capture_substream) {
Krzysztof Helt7779f752008-07-31 21:03:41 +02001137 snd_wss_overrange(chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138 snd_pcm_period_elapsed(chip->capture_substream);
1139 }
1140 }
1141 }
1142
1143 spin_lock(&chip->reg_lock);
Krzysztof Helt760fc6b82008-07-31 21:10:47 +02001144 status = ~CS4231_ALL_IRQS | ~status;
1145 if (chip->hardware & WSS_HW_AD1848_MASK)
1146 wss_outb(chip, CS4231P(STATUS), 0);
1147 else
Krzysztof Helt9ef344f2009-01-16 22:47:30 +01001148 snd_wss_out(chip, CS4231_IRQ_STATUS, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 spin_unlock(&chip->reg_lock);
1150 return IRQ_HANDLED;
1151}
Krzysztof Helt7779f752008-07-31 21:03:41 +02001152EXPORT_SYMBOL(snd_wss_interrupt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153
Krzysztof Helt7779f752008-07-31 21:03:41 +02001154static snd_pcm_uframes_t snd_wss_playback_pointer(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155{
Krzysztof Helt7779f752008-07-31 21:03:41 +02001156 struct snd_wss *chip = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157 size_t ptr;
1158
1159 if (!(chip->image[CS4231_IFACE_CTRL] & CS4231_PLAYBACK_ENABLE))
1160 return 0;
1161 ptr = snd_dma_pointer(chip->dma1, chip->p_dma_size);
1162 return bytes_to_frames(substream->runtime, ptr);
1163}
1164
Krzysztof Helt7779f752008-07-31 21:03:41 +02001165static snd_pcm_uframes_t snd_wss_capture_pointer(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166{
Krzysztof Helt7779f752008-07-31 21:03:41 +02001167 struct snd_wss *chip = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 size_t ptr;
Krzysztof Helt9295aea2008-07-31 21:00:17 +02001169
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 if (!(chip->image[CS4231_IFACE_CTRL] & CS4231_RECORD_ENABLE))
1171 return 0;
1172 ptr = snd_dma_pointer(chip->dma2, chip->c_dma_size);
1173 return bytes_to_frames(substream->runtime, ptr);
1174}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175
1176/*
1177
1178 */
1179
Krzysztof Helt760fc6b82008-07-31 21:10:47 +02001180static int snd_ad1848_probe(struct snd_wss *chip)
1181{
Rene Hermanc9a7dc22008-08-06 08:09:34 +02001182 unsigned long timeout = jiffies + msecs_to_jiffies(1000);
Krzysztof Helt760fc6b82008-07-31 21:10:47 +02001183 unsigned long flags;
Rene Hermanc9a7dc22008-08-06 08:09:34 +02001184 unsigned char r;
1185 unsigned short hardware = 0;
1186 int err = 0;
1187 int i;
Krzysztof Helt760fc6b82008-07-31 21:10:47 +02001188
Rene Hermanc9a7dc22008-08-06 08:09:34 +02001189 while (wss_inb(chip, CS4231P(REGSEL)) & CS4231_INIT) {
1190 if (time_after(jiffies, timeout))
1191 return -ENODEV;
1192 cond_resched();
Krzysztof Helt760fc6b82008-07-31 21:10:47 +02001193 }
Krzysztof Helt760fc6b82008-07-31 21:10:47 +02001194 spin_lock_irqsave(&chip->reg_lock, flags);
Krzysztof Helt760fc6b82008-07-31 21:10:47 +02001195
Rene Hermanc9a7dc22008-08-06 08:09:34 +02001196 /* set CS423x MODE 1 */
Krzysztof Heltf83a59c2008-08-24 18:08:03 +02001197 snd_wss_dout(chip, CS4231_MISC_INFO, 0);
Rene Hermanc9a7dc22008-08-06 08:09:34 +02001198
Krzysztof Heltf83a59c2008-08-24 18:08:03 +02001199 snd_wss_dout(chip, CS4231_RIGHT_INPUT, 0x45); /* 0x55 & ~0x10 */
Rene Hermanc9a7dc22008-08-06 08:09:34 +02001200 r = snd_wss_in(chip, CS4231_RIGHT_INPUT);
1201 if (r != 0x45) {
1202 /* RMGE always high on AD1847 */
1203 if ((r & ~CS4231_ENABLE_MIC_GAIN) != 0x45) {
1204 err = -ENODEV;
1205 goto out;
1206 }
1207 hardware = WSS_HW_AD1847;
1208 } else {
Krzysztof Heltf83a59c2008-08-24 18:08:03 +02001209 snd_wss_dout(chip, CS4231_LEFT_INPUT, 0xaa);
Rene Hermanc9a7dc22008-08-06 08:09:34 +02001210 r = snd_wss_in(chip, CS4231_LEFT_INPUT);
1211 /* L/RMGE always low on AT2320 */
1212 if ((r | CS4231_ENABLE_MIC_GAIN) != 0xaa) {
1213 err = -ENODEV;
1214 goto out;
1215 }
1216 }
1217
1218 /* clear pending IRQ */
1219 wss_inb(chip, CS4231P(STATUS));
1220 wss_outb(chip, CS4231P(STATUS), 0);
1221 mb();
1222
1223 if ((chip->hardware & WSS_HW_TYPE_MASK) != WSS_HW_DETECT)
1224 goto out;
1225
1226 if (hardware) {
1227 chip->hardware = hardware;
1228 goto out;
1229 }
1230
1231 r = snd_wss_in(chip, CS4231_MISC_INFO);
1232
1233 /* set CS423x MODE 2 */
Krzysztof Heltf83a59c2008-08-24 18:08:03 +02001234 snd_wss_dout(chip, CS4231_MISC_INFO, CS4231_MODE2);
Rene Hermanc9a7dc22008-08-06 08:09:34 +02001235 for (i = 0; i < 16; i++) {
1236 if (snd_wss_in(chip, i) != snd_wss_in(chip, 16 + i)) {
1237 /* we have more than 16 registers: check ID */
1238 if ((r & 0xf) != 0xa)
1239 goto out_mode;
1240 /*
1241 * on CMI8330, CS4231_VERSION is volume control and
1242 * can be set to 0
1243 */
1244 snd_wss_dout(chip, CS4231_VERSION, 0);
1245 r = snd_wss_in(chip, CS4231_VERSION) & 0xe7;
1246 if (!r)
1247 chip->hardware = WSS_HW_CMI8330;
1248 goto out_mode;
1249 }
1250 }
1251 if (r & 0x80)
1252 chip->hardware = WSS_HW_CS4248;
1253 else
1254 chip->hardware = WSS_HW_AD1848;
1255out_mode:
Krzysztof Heltf83a59c2008-08-24 18:08:03 +02001256 snd_wss_dout(chip, CS4231_MISC_INFO, 0);
Rene Hermanc9a7dc22008-08-06 08:09:34 +02001257out:
Krzysztof Helt760fc6b82008-07-31 21:10:47 +02001258 spin_unlock_irqrestore(&chip->reg_lock, flags);
Rene Hermanc9a7dc22008-08-06 08:09:34 +02001259 return err;
Krzysztof Helt760fc6b82008-07-31 21:10:47 +02001260}
1261
Krzysztof Helt7779f752008-07-31 21:03:41 +02001262static int snd_wss_probe(struct snd_wss *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263{
1264 unsigned long flags;
Krzysztof Helt760fc6b82008-07-31 21:10:47 +02001265 int i, id, rev, regnum;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 unsigned char *ptr;
1267 unsigned int hw;
1268
Krzysztof Helt760fc6b82008-07-31 21:10:47 +02001269 id = snd_ad1848_probe(chip);
1270 if (id < 0)
1271 return id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272
Krzysztof Helt7779f752008-07-31 21:03:41 +02001273 hw = chip->hardware;
1274 if ((hw & WSS_HW_TYPE_MASK) == WSS_HW_DETECT) {
Krzysztof Helt760fc6b82008-07-31 21:10:47 +02001275 for (i = 0; i < 50; i++) {
1276 mb();
1277 if (wss_inb(chip, CS4231P(REGSEL)) & CS4231_INIT)
1278 msleep(2);
1279 else {
1280 spin_lock_irqsave(&chip->reg_lock, flags);
1281 snd_wss_out(chip, CS4231_MISC_INFO,
1282 CS4231_MODE2);
1283 id = snd_wss_in(chip, CS4231_MISC_INFO) & 0x0f;
1284 spin_unlock_irqrestore(&chip->reg_lock, flags);
1285 if (id == 0x0a)
1286 break; /* this is valid value */
1287 }
1288 }
1289 snd_printdd("wss: port = 0x%lx, id = 0x%x\n", chip->port, id);
1290 if (id != 0x0a)
1291 return -ENODEV; /* no valid device found */
1292
Krzysztof Helt7779f752008-07-31 21:03:41 +02001293 rev = snd_wss_in(chip, CS4231_VERSION) & 0xe7;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294 snd_printdd("CS4231: VERSION (I25) = 0x%x\n", rev);
1295 if (rev == 0x80) {
Krzysztof Helt7779f752008-07-31 21:03:41 +02001296 unsigned char tmp = snd_wss_in(chip, 23);
1297 snd_wss_out(chip, 23, ~tmp);
1298 if (snd_wss_in(chip, 23) != tmp)
1299 chip->hardware = WSS_HW_AD1845;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300 else
Krzysztof Helt7779f752008-07-31 21:03:41 +02001301 chip->hardware = WSS_HW_CS4231;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302 } else if (rev == 0xa0) {
Krzysztof Helt7779f752008-07-31 21:03:41 +02001303 chip->hardware = WSS_HW_CS4231A;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 } else if (rev == 0xa2) {
Krzysztof Helt7779f752008-07-31 21:03:41 +02001305 chip->hardware = WSS_HW_CS4232;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306 } else if (rev == 0xb2) {
Krzysztof Helt7779f752008-07-31 21:03:41 +02001307 chip->hardware = WSS_HW_CS4232A;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308 } else if (rev == 0x83) {
Krzysztof Helt7779f752008-07-31 21:03:41 +02001309 chip->hardware = WSS_HW_CS4236;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 } else if (rev == 0x03) {
Krzysztof Helt7779f752008-07-31 21:03:41 +02001311 chip->hardware = WSS_HW_CS4236B;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312 } else {
Takashi Iwai76d498e2009-02-05 15:45:05 +01001313 snd_printk(KERN_ERR
1314 "unknown CS chip with version 0x%x\n", rev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315 return -ENODEV; /* unknown CS4231 chip? */
1316 }
1317 }
1318 spin_lock_irqsave(&chip->reg_lock, flags);
Krzysztof Helt7779f752008-07-31 21:03:41 +02001319 wss_inb(chip, CS4231P(STATUS)); /* clear any pendings IRQ */
1320 wss_outb(chip, CS4231P(STATUS), 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321 mb();
1322 spin_unlock_irqrestore(&chip->reg_lock, flags);
1323
Krzysztof Helt760fc6b82008-07-31 21:10:47 +02001324 if (!(chip->hardware & WSS_HW_AD1848_MASK))
1325 chip->image[CS4231_MISC_INFO] = CS4231_MODE2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 switch (chip->hardware) {
Krzysztof Helt7779f752008-07-31 21:03:41 +02001327 case WSS_HW_INTERWAVE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 chip->image[CS4231_MISC_INFO] = CS4231_IW_MODE3;
1329 break;
Krzysztof Helt7779f752008-07-31 21:03:41 +02001330 case WSS_HW_CS4235:
1331 case WSS_HW_CS4236B:
1332 case WSS_HW_CS4237B:
1333 case WSS_HW_CS4238B:
1334 case WSS_HW_CS4239:
1335 if (hw == WSS_HW_DETECT3)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336 chip->image[CS4231_MISC_INFO] = CS4231_4236_MODE3;
1337 else
Krzysztof Helt7779f752008-07-31 21:03:41 +02001338 chip->hardware = WSS_HW_CS4236;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339 break;
1340 }
1341
1342 chip->image[CS4231_IFACE_CTRL] =
1343 (chip->image[CS4231_IFACE_CTRL] & ~CS4231_SINGLE_DMA) |
1344 (chip->single_dma ? CS4231_SINGLE_DMA : 0);
Krzysztof Helt7779f752008-07-31 21:03:41 +02001345 if (chip->hardware != WSS_HW_OPTI93X) {
Krzysztof Heltabf1f5a2008-06-09 23:07:28 +02001346 chip->image[CS4231_ALT_FEATURE_1] = 0x80;
1347 chip->image[CS4231_ALT_FEATURE_2] =
Krzysztof Helt7779f752008-07-31 21:03:41 +02001348 chip->hardware == WSS_HW_INTERWAVE ? 0xc2 : 0x01;
Krzysztof Heltabf1f5a2008-06-09 23:07:28 +02001349 }
Krzysztof Helt199f7972009-01-09 23:10:52 +01001350 /* enable fine grained frequency selection */
1351 if (chip->hardware == WSS_HW_AD1845)
1352 chip->image[AD1845_PWR_DOWN] = 8;
1353
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 ptr = (unsigned char *) &chip->image;
Krzysztof Helt760fc6b82008-07-31 21:10:47 +02001355 regnum = (chip->hardware & WSS_HW_AD1848_MASK) ? 16 : 32;
Krzysztof Helt7779f752008-07-31 21:03:41 +02001356 snd_wss_mce_down(chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357 spin_lock_irqsave(&chip->reg_lock, flags);
Krzysztof Helt760fc6b82008-07-31 21:10:47 +02001358 for (i = 0; i < regnum; i++) /* ok.. fill all registers */
Krzysztof Helt7779f752008-07-31 21:03:41 +02001359 snd_wss_out(chip, i, *ptr++);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360 spin_unlock_irqrestore(&chip->reg_lock, flags);
Krzysztof Helt7779f752008-07-31 21:03:41 +02001361 snd_wss_mce_up(chip);
1362 snd_wss_mce_down(chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363
1364 mdelay(2);
1365
1366 /* ok.. try check hardware version for CS4236+ chips */
Krzysztof Helt7779f752008-07-31 21:03:41 +02001367 if ((hw & WSS_HW_TYPE_MASK) == WSS_HW_DETECT) {
1368 if (chip->hardware == WSS_HW_CS4236B) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369 rev = snd_cs4236_ext_in(chip, CS4236_VERSION);
1370 snd_cs4236_ext_out(chip, CS4236_VERSION, 0xff);
1371 id = snd_cs4236_ext_in(chip, CS4236_VERSION);
1372 snd_cs4236_ext_out(chip, CS4236_VERSION, rev);
1373 snd_printdd("CS4231: ext version; rev = 0x%x, id = 0x%x\n", rev, id);
1374 if ((id & 0x1f) == 0x1d) { /* CS4235 */
Krzysztof Helt7779f752008-07-31 21:03:41 +02001375 chip->hardware = WSS_HW_CS4235;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376 switch (id >> 5) {
1377 case 4:
1378 case 5:
1379 case 6:
1380 break;
1381 default:
Takashi Iwai76d498e2009-02-05 15:45:05 +01001382 snd_printk(KERN_WARNING
1383 "unknown CS4235 chip "
1384 "(enhanced version = 0x%x)\n",
1385 id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386 }
1387 } else if ((id & 0x1f) == 0x0b) { /* CS4236/B */
1388 switch (id >> 5) {
1389 case 4:
1390 case 5:
1391 case 6:
1392 case 7:
Krzysztof Helt7779f752008-07-31 21:03:41 +02001393 chip->hardware = WSS_HW_CS4236B;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394 break;
1395 default:
Takashi Iwai76d498e2009-02-05 15:45:05 +01001396 snd_printk(KERN_WARNING
1397 "unknown CS4236 chip "
1398 "(enhanced version = 0x%x)\n",
1399 id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400 }
1401 } else if ((id & 0x1f) == 0x08) { /* CS4237B */
Krzysztof Helt7779f752008-07-31 21:03:41 +02001402 chip->hardware = WSS_HW_CS4237B;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403 switch (id >> 5) {
1404 case 4:
1405 case 5:
1406 case 6:
1407 case 7:
1408 break;
1409 default:
Takashi Iwai76d498e2009-02-05 15:45:05 +01001410 snd_printk(KERN_WARNING
1411 "unknown CS4237B chip "
1412 "(enhanced version = 0x%x)\n",
1413 id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414 }
1415 } else if ((id & 0x1f) == 0x09) { /* CS4238B */
Krzysztof Helt7779f752008-07-31 21:03:41 +02001416 chip->hardware = WSS_HW_CS4238B;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417 switch (id >> 5) {
1418 case 5:
1419 case 6:
1420 case 7:
1421 break;
1422 default:
Takashi Iwai76d498e2009-02-05 15:45:05 +01001423 snd_printk(KERN_WARNING
1424 "unknown CS4238B chip "
1425 "(enhanced version = 0x%x)\n",
1426 id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427 }
1428 } else if ((id & 0x1f) == 0x1e) { /* CS4239 */
Krzysztof Helt7779f752008-07-31 21:03:41 +02001429 chip->hardware = WSS_HW_CS4239;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 switch (id >> 5) {
1431 case 4:
1432 case 5:
1433 case 6:
1434 break;
1435 default:
Takashi Iwai76d498e2009-02-05 15:45:05 +01001436 snd_printk(KERN_WARNING
1437 "unknown CS4239 chip "
1438 "(enhanced version = 0x%x)\n",
1439 id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440 }
1441 } else {
Takashi Iwai76d498e2009-02-05 15:45:05 +01001442 snd_printk(KERN_WARNING
1443 "unknown CS4236/CS423xB chip "
1444 "(enhanced version = 0x%x)\n", id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445 }
1446 }
1447 }
1448 return 0; /* all things are ok.. */
1449}
1450
1451/*
1452
1453 */
1454
Krzysztof Helt7779f752008-07-31 21:03:41 +02001455static struct snd_pcm_hardware snd_wss_playback =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456{
1457 .info = (SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_INTERLEAVED |
1458 SNDRV_PCM_INFO_MMAP_VALID |
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459 SNDRV_PCM_INFO_SYNC_START),
1460 .formats = (SNDRV_PCM_FMTBIT_MU_LAW | SNDRV_PCM_FMTBIT_A_LAW | SNDRV_PCM_FMTBIT_IMA_ADPCM |
1461 SNDRV_PCM_FMTBIT_U8 | SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S16_BE),
1462 .rates = SNDRV_PCM_RATE_KNOT | SNDRV_PCM_RATE_8000_48000,
1463 .rate_min = 5510,
1464 .rate_max = 48000,
1465 .channels_min = 1,
1466 .channels_max = 2,
1467 .buffer_bytes_max = (128*1024),
1468 .period_bytes_min = 64,
1469 .period_bytes_max = (128*1024),
1470 .periods_min = 1,
1471 .periods_max = 1024,
1472 .fifo_size = 0,
1473};
1474
Krzysztof Helt7779f752008-07-31 21:03:41 +02001475static struct snd_pcm_hardware snd_wss_capture =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476{
1477 .info = (SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_INTERLEAVED |
1478 SNDRV_PCM_INFO_MMAP_VALID |
1479 SNDRV_PCM_INFO_RESUME |
1480 SNDRV_PCM_INFO_SYNC_START),
1481 .formats = (SNDRV_PCM_FMTBIT_MU_LAW | SNDRV_PCM_FMTBIT_A_LAW | SNDRV_PCM_FMTBIT_IMA_ADPCM |
1482 SNDRV_PCM_FMTBIT_U8 | SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S16_BE),
1483 .rates = SNDRV_PCM_RATE_KNOT | SNDRV_PCM_RATE_8000_48000,
1484 .rate_min = 5510,
1485 .rate_max = 48000,
1486 .channels_min = 1,
1487 .channels_max = 2,
1488 .buffer_bytes_max = (128*1024),
1489 .period_bytes_min = 64,
1490 .period_bytes_max = (128*1024),
1491 .periods_min = 1,
1492 .periods_max = 1024,
1493 .fifo_size = 0,
1494};
1495
1496/*
1497
1498 */
1499
Krzysztof Helt7779f752008-07-31 21:03:41 +02001500static int snd_wss_playback_open(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501{
Krzysztof Helt7779f752008-07-31 21:03:41 +02001502 struct snd_wss *chip = snd_pcm_substream_chip(substream);
Takashi Iwaiba2375a2005-11-17 14:30:42 +01001503 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504 int err;
1505
Krzysztof Helt7779f752008-07-31 21:03:41 +02001506 runtime->hw = snd_wss_playback;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507
Krzysztof Heltead893c2008-07-31 21:09:32 +02001508 /* hardware limitation of older chipsets */
1509 if (chip->hardware & WSS_HW_AD1848_MASK)
1510 runtime->hw.formats &= ~(SNDRV_PCM_FMTBIT_IMA_ADPCM |
1511 SNDRV_PCM_FMTBIT_S16_BE);
1512
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513 /* hardware bug in InterWave chipset */
Krzysztof Helt7779f752008-07-31 21:03:41 +02001514 if (chip->hardware == WSS_HW_INTERWAVE && chip->dma1 > 3)
Krzysztof Helt9295aea2008-07-31 21:00:17 +02001515 runtime->hw.formats &= ~SNDRV_PCM_FMTBIT_MU_LAW;
1516
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517 /* hardware limitation of cheap chips */
Krzysztof Helt7779f752008-07-31 21:03:41 +02001518 if (chip->hardware == WSS_HW_CS4235 ||
1519 chip->hardware == WSS_HW_CS4239)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520 runtime->hw.formats = SNDRV_PCM_FMTBIT_U8 | SNDRV_PCM_FMTBIT_S16_LE;
1521
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522 snd_pcm_limit_isa_dma_size(chip->dma1, &runtime->hw.buffer_bytes_max);
1523 snd_pcm_limit_isa_dma_size(chip->dma1, &runtime->hw.period_bytes_max);
1524
1525 if (chip->claim_dma) {
1526 if ((err = chip->claim_dma(chip, chip->dma_private_data, chip->dma1)) < 0)
1527 return err;
1528 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529
Krzysztof Helt7779f752008-07-31 21:03:41 +02001530 err = snd_wss_open(chip, WSS_MODE_PLAY);
1531 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532 if (chip->release_dma)
1533 chip->release_dma(chip, chip->dma_private_data, chip->dma1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534 snd_free_pages(runtime->dma_area, runtime->dma_bytes);
1535 return err;
1536 }
1537 chip->playback_substream = substream;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538 snd_pcm_set_sync(substream);
1539 chip->rate_constraint(runtime);
1540 return 0;
1541}
1542
Krzysztof Helt7779f752008-07-31 21:03:41 +02001543static int snd_wss_capture_open(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544{
Krzysztof Helt7779f752008-07-31 21:03:41 +02001545 struct snd_wss *chip = snd_pcm_substream_chip(substream);
Takashi Iwaiba2375a2005-11-17 14:30:42 +01001546 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547 int err;
1548
Krzysztof Helt7779f752008-07-31 21:03:41 +02001549 runtime->hw = snd_wss_capture;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550
Krzysztof Heltead893c2008-07-31 21:09:32 +02001551 /* hardware limitation of older chipsets */
1552 if (chip->hardware & WSS_HW_AD1848_MASK)
1553 runtime->hw.formats &= ~(SNDRV_PCM_FMTBIT_IMA_ADPCM |
1554 SNDRV_PCM_FMTBIT_S16_BE);
1555
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556 /* hardware limitation of cheap chips */
Krzysztof Helt7779f752008-07-31 21:03:41 +02001557 if (chip->hardware == WSS_HW_CS4235 ||
Krzysztof Helt31eca302008-07-31 21:11:46 +02001558 chip->hardware == WSS_HW_CS4239 ||
1559 chip->hardware == WSS_HW_OPTI93X)
1560 runtime->hw.formats = SNDRV_PCM_FMTBIT_U8 |
1561 SNDRV_PCM_FMTBIT_S16_LE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563 snd_pcm_limit_isa_dma_size(chip->dma2, &runtime->hw.buffer_bytes_max);
1564 snd_pcm_limit_isa_dma_size(chip->dma2, &runtime->hw.period_bytes_max);
1565
1566 if (chip->claim_dma) {
1567 if ((err = chip->claim_dma(chip, chip->dma_private_data, chip->dma2)) < 0)
1568 return err;
1569 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570
Krzysztof Helt7779f752008-07-31 21:03:41 +02001571 err = snd_wss_open(chip, WSS_MODE_RECORD);
1572 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573 if (chip->release_dma)
1574 chip->release_dma(chip, chip->dma_private_data, chip->dma2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575 snd_free_pages(runtime->dma_area, runtime->dma_bytes);
1576 return err;
1577 }
1578 chip->capture_substream = substream;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579 snd_pcm_set_sync(substream);
1580 chip->rate_constraint(runtime);
1581 return 0;
1582}
1583
Krzysztof Helt7779f752008-07-31 21:03:41 +02001584static int snd_wss_playback_close(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585{
Krzysztof Helt7779f752008-07-31 21:03:41 +02001586 struct snd_wss *chip = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587
1588 chip->playback_substream = NULL;
Krzysztof Helt7779f752008-07-31 21:03:41 +02001589 snd_wss_close(chip, WSS_MODE_PLAY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590 return 0;
1591}
1592
Krzysztof Helt7779f752008-07-31 21:03:41 +02001593static int snd_wss_capture_close(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594{
Krzysztof Helt7779f752008-07-31 21:03:41 +02001595 struct snd_wss *chip = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596
1597 chip->capture_substream = NULL;
Krzysztof Helt7779f752008-07-31 21:03:41 +02001598 snd_wss_close(chip, WSS_MODE_RECORD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599 return 0;
1600}
1601
Krzysztof Heltead893c2008-07-31 21:09:32 +02001602static void snd_wss_thinkpad_twiddle(struct snd_wss *chip, int on)
1603{
1604 int tmp;
1605
1606 if (!chip->thinkpad_flag)
1607 return;
1608
1609 outb(0x1c, AD1848_THINKPAD_CTL_PORT1);
1610 tmp = inb(AD1848_THINKPAD_CTL_PORT2);
1611
1612 if (on)
1613 /* turn it on */
1614 tmp |= AD1848_THINKPAD_CS4248_ENABLE_BIT;
1615 else
1616 /* turn it off */
1617 tmp &= ~AD1848_THINKPAD_CS4248_ENABLE_BIT;
1618
1619 outb(tmp, AD1848_THINKPAD_CTL_PORT2);
1620}
1621
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622#ifdef CONFIG_PM
1623
1624/* lowlevel suspend callback for CS4231 */
Krzysztof Helt7779f752008-07-31 21:03:41 +02001625static void snd_wss_suspend(struct snd_wss *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626{
1627 int reg;
1628 unsigned long flags;
Krzysztof Helt9295aea2008-07-31 21:00:17 +02001629
Takashi Iwai7bb35e202005-11-17 17:00:17 +01001630 snd_pcm_suspend_all(chip->pcm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631 spin_lock_irqsave(&chip->reg_lock, flags);
1632 for (reg = 0; reg < 32; reg++)
Krzysztof Helt7779f752008-07-31 21:03:41 +02001633 chip->image[reg] = snd_wss_in(chip, reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634 spin_unlock_irqrestore(&chip->reg_lock, flags);
Krzysztof Heltead893c2008-07-31 21:09:32 +02001635 if (chip->thinkpad_flag)
1636 snd_wss_thinkpad_twiddle(chip, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637}
1638
1639/* lowlevel resume callback for CS4231 */
Krzysztof Helt7779f752008-07-31 21:03:41 +02001640static void snd_wss_resume(struct snd_wss *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641{
1642 int reg;
1643 unsigned long flags;
Takashi Iwaia2c855b2005-11-18 18:52:39 +01001644 /* int timeout; */
Krzysztof Helt9295aea2008-07-31 21:00:17 +02001645
Krzysztof Heltead893c2008-07-31 21:09:32 +02001646 if (chip->thinkpad_flag)
1647 snd_wss_thinkpad_twiddle(chip, 1);
Krzysztof Helt7779f752008-07-31 21:03:41 +02001648 snd_wss_mce_up(chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649 spin_lock_irqsave(&chip->reg_lock, flags);
1650 for (reg = 0; reg < 32; reg++) {
1651 switch (reg) {
1652 case CS4231_VERSION:
1653 break;
1654 default:
Krzysztof Helt7779f752008-07-31 21:03:41 +02001655 snd_wss_out(chip, reg, chip->image[reg]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 break;
1657 }
1658 }
Ondrej Zaryb4e2a162012-07-16 08:30:18 +02001659 /* Yamaha needs this to resume properly */
1660 if (chip->hardware == WSS_HW_OPL3SA2)
1661 snd_wss_out(chip, CS4231_PLAYBK_FORMAT,
1662 chip->image[CS4231_PLAYBK_FORMAT]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663 spin_unlock_irqrestore(&chip->reg_lock, flags);
Takashi Iwaifa55f832005-11-17 17:48:30 +01001664#if 1
Krzysztof Helt7779f752008-07-31 21:03:41 +02001665 snd_wss_mce_down(chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666#else
1667 /* The following is a workaround to avoid freeze after resume on TP600E.
Krzysztof Helt7779f752008-07-31 21:03:41 +02001668 This is the first half of copy of snd_wss_mce_down(), but doesn't
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669 include rescheduling. -- iwai
1670 */
Krzysztof Helt7779f752008-07-31 21:03:41 +02001671 snd_wss_busy_wait(chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672 spin_lock_irqsave(&chip->reg_lock, flags);
1673 chip->mce_bit &= ~CS4231_MCE;
Krzysztof Helt7779f752008-07-31 21:03:41 +02001674 timeout = wss_inb(chip, CS4231P(REGSEL));
1675 wss_outb(chip, CS4231P(REGSEL), chip->mce_bit | (timeout & 0x1f));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676 spin_unlock_irqrestore(&chip->reg_lock, flags);
1677 if (timeout == 0x80)
Takashi Iwai76d498e2009-02-05 15:45:05 +01001678 snd_printk(KERN_ERR "down [0x%lx]: serious init problem "
1679 "- codec still busy\n", chip->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680 if ((timeout & CS4231_MCE) == 0 ||
Krzysztof Helt7779f752008-07-31 21:03:41 +02001681 !(chip->hardware & (WSS_HW_CS4231_MASK | WSS_HW_CS4232_MASK))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682 return;
1683 }
Krzysztof Helt7779f752008-07-31 21:03:41 +02001684 snd_wss_busy_wait(chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685#endif
1686}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687#endif /* CONFIG_PM */
1688
Krzysztof Heltd114cd82009-11-05 18:32:41 +01001689static int snd_wss_free(struct snd_wss *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690{
Takashi Iwaib1d57762005-10-10 11:56:31 +02001691 release_and_free_resource(chip->res_port);
1692 release_and_free_resource(chip->res_cport);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693 if (chip->irq >= 0) {
1694 disable_irq(chip->irq);
Krzysztof Helt7779f752008-07-31 21:03:41 +02001695 if (!(chip->hwshare & WSS_HWSHARE_IRQ))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696 free_irq(chip->irq, (void *) chip);
1697 }
Krzysztof Helt7779f752008-07-31 21:03:41 +02001698 if (!(chip->hwshare & WSS_HWSHARE_DMA1) && chip->dma1 >= 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699 snd_dma_disable(chip->dma1);
1700 free_dma(chip->dma1);
1701 }
Krzysztof Helt7779f752008-07-31 21:03:41 +02001702 if (!(chip->hwshare & WSS_HWSHARE_DMA2) &&
1703 chip->dma2 >= 0 && chip->dma2 != chip->dma1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704 snd_dma_disable(chip->dma2);
1705 free_dma(chip->dma2);
1706 }
1707 if (chip->timer)
1708 snd_device_free(chip->card, chip->timer);
1709 kfree(chip);
1710 return 0;
1711}
1712
Krzysztof Helt7779f752008-07-31 21:03:41 +02001713static int snd_wss_dev_free(struct snd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714{
Krzysztof Helt7779f752008-07-31 21:03:41 +02001715 struct snd_wss *chip = device->device_data;
1716 return snd_wss_free(chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717}
1718
Krzysztof Helt7779f752008-07-31 21:03:41 +02001719const char *snd_wss_chip_id(struct snd_wss *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720{
1721 switch (chip->hardware) {
Krzysztof Helt7779f752008-07-31 21:03:41 +02001722 case WSS_HW_CS4231:
1723 return "CS4231";
1724 case WSS_HW_CS4231A:
1725 return "CS4231A";
1726 case WSS_HW_CS4232:
1727 return "CS4232";
1728 case WSS_HW_CS4232A:
1729 return "CS4232A";
1730 case WSS_HW_CS4235:
1731 return "CS4235";
1732 case WSS_HW_CS4236:
1733 return "CS4236";
1734 case WSS_HW_CS4236B:
1735 return "CS4236B";
1736 case WSS_HW_CS4237B:
1737 return "CS4237B";
1738 case WSS_HW_CS4238B:
1739 return "CS4238B";
1740 case WSS_HW_CS4239:
1741 return "CS4239";
1742 case WSS_HW_INTERWAVE:
1743 return "AMD InterWave";
1744 case WSS_HW_OPL3SA2:
1745 return chip->card->shortname;
1746 case WSS_HW_AD1845:
1747 return "AD1845";
1748 case WSS_HW_OPTI93X:
1749 return "OPTi 93x";
Krzysztof Heltead893c2008-07-31 21:09:32 +02001750 case WSS_HW_AD1847:
1751 return "AD1847";
1752 case WSS_HW_AD1848:
1753 return "AD1848";
1754 case WSS_HW_CS4248:
1755 return "CS4248";
1756 case WSS_HW_CMI8330:
1757 return "CMI8330/C3D";
Krzysztof Helt7779f752008-07-31 21:03:41 +02001758 default:
1759 return "???";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760 }
1761}
Krzysztof Helt7779f752008-07-31 21:03:41 +02001762EXPORT_SYMBOL(snd_wss_chip_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763
Krzysztof Helt7779f752008-07-31 21:03:41 +02001764static int snd_wss_new(struct snd_card *card,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765 unsigned short hardware,
1766 unsigned short hwshare,
Krzysztof Helt7779f752008-07-31 21:03:41 +02001767 struct snd_wss **rchip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768{
Krzysztof Helt7779f752008-07-31 21:03:41 +02001769 struct snd_wss *chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770
1771 *rchip = NULL;
Takashi Iwai9e76a762005-09-09 14:21:17 +02001772 chip = kzalloc(sizeof(*chip), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773 if (chip == NULL)
1774 return -ENOMEM;
1775 chip->hardware = hardware;
1776 chip->hwshare = hwshare;
1777
1778 spin_lock_init(&chip->reg_lock);
Ingo Molnar8b7547f2006-01-16 16:33:08 +01001779 mutex_init(&chip->mce_mutex);
1780 mutex_init(&chip->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781 chip->card = card;
Krzysztof Helt7779f752008-07-31 21:03:41 +02001782 chip->rate_constraint = snd_wss_xrate;
1783 chip->set_playback_format = snd_wss_playback_format;
1784 chip->set_capture_format = snd_wss_capture_format;
1785 if (chip->hardware == WSS_HW_OPTI93X)
Krzysztof Heltabf1f5a2008-06-09 23:07:28 +02001786 memcpy(&chip->image, &snd_opti93x_original_image,
1787 sizeof(snd_opti93x_original_image));
1788 else
Krzysztof Helt7779f752008-07-31 21:03:41 +02001789 memcpy(&chip->image, &snd_wss_original_image,
1790 sizeof(snd_wss_original_image));
Krzysztof Helt760fc6b82008-07-31 21:10:47 +02001791 if (chip->hardware & WSS_HW_AD1848_MASK) {
1792 chip->image[CS4231_PIN_CTRL] = 0;
1793 chip->image[CS4231_TEST_INIT] = 0;
1794 }
Krzysztof Heltabf1f5a2008-06-09 23:07:28 +02001795
Krzysztof Helt7779f752008-07-31 21:03:41 +02001796 *rchip = chip;
1797 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798}
1799
Krzysztof Helt7779f752008-07-31 21:03:41 +02001800int snd_wss_create(struct snd_card *card,
1801 unsigned long port,
1802 unsigned long cport,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803 int irq, int dma1, int dma2,
1804 unsigned short hardware,
1805 unsigned short hwshare,
Krzysztof Helt7779f752008-07-31 21:03:41 +02001806 struct snd_wss **rchip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807{
Takashi Iwaiba2375a2005-11-17 14:30:42 +01001808 static struct snd_device_ops ops = {
Krzysztof Helt7779f752008-07-31 21:03:41 +02001809 .dev_free = snd_wss_dev_free,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810 };
Krzysztof Helt7779f752008-07-31 21:03:41 +02001811 struct snd_wss *chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812 int err;
1813
Krzysztof Helt7779f752008-07-31 21:03:41 +02001814 err = snd_wss_new(card, hardware, hwshare, &chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815 if (err < 0)
1816 return err;
Krzysztof Helt9295aea2008-07-31 21:00:17 +02001817
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818 chip->irq = -1;
1819 chip->dma1 = -1;
1820 chip->dma2 = -1;
1821
Krzysztof Helt760fc6b82008-07-31 21:10:47 +02001822 chip->res_port = request_region(port, 4, "WSS");
Krzysztof Helt7779f752008-07-31 21:03:41 +02001823 if (!chip->res_port) {
1824 snd_printk(KERN_ERR "wss: can't grab port 0x%lx\n", port);
1825 snd_wss_free(chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826 return -EBUSY;
1827 }
1828 chip->port = port;
Krzysztof Helt7779f752008-07-31 21:03:41 +02001829 if ((long)cport >= 0) {
1830 chip->res_cport = request_region(cport, 8, "CS4232 Control");
1831 if (!chip->res_cport) {
1832 snd_printk(KERN_ERR
1833 "wss: can't grab control port 0x%lx\n", cport);
1834 snd_wss_free(chip);
1835 return -ENODEV;
1836 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837 }
1838 chip->cport = cport;
Krzysztof Helt7779f752008-07-31 21:03:41 +02001839 if (!(hwshare & WSS_HWSHARE_IRQ))
Yong Zhang88e24c32011-09-22 16:59:20 +08001840 if (request_irq(irq, snd_wss_interrupt, 0,
Krzysztof Helt760fc6b82008-07-31 21:10:47 +02001841 "WSS", (void *) chip)) {
Krzysztof Helt7779f752008-07-31 21:03:41 +02001842 snd_printk(KERN_ERR "wss: can't grab IRQ %d\n", irq);
1843 snd_wss_free(chip);
1844 return -EBUSY;
1845 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846 chip->irq = irq;
Krzysztof Helt760fc6b82008-07-31 21:10:47 +02001847 if (!(hwshare & WSS_HWSHARE_DMA1) && request_dma(dma1, "WSS - 1")) {
Krzysztof Helt7779f752008-07-31 21:03:41 +02001848 snd_printk(KERN_ERR "wss: can't grab DMA1 %d\n", dma1);
1849 snd_wss_free(chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850 return -EBUSY;
1851 }
1852 chip->dma1 = dma1;
Krzysztof Helt7779f752008-07-31 21:03:41 +02001853 if (!(hwshare & WSS_HWSHARE_DMA2) && dma1 != dma2 &&
Krzysztof Helt760fc6b82008-07-31 21:10:47 +02001854 dma2 >= 0 && request_dma(dma2, "WSS - 2")) {
Krzysztof Helt7779f752008-07-31 21:03:41 +02001855 snd_printk(KERN_ERR "wss: can't grab DMA2 %d\n", dma2);
1856 snd_wss_free(chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857 return -EBUSY;
1858 }
1859 if (dma1 == dma2 || dma2 < 0) {
1860 chip->single_dma = 1;
1861 chip->dma2 = chip->dma1;
1862 } else
1863 chip->dma2 = dma2;
1864
Krzysztof Helt760fc6b82008-07-31 21:10:47 +02001865 if (hardware == WSS_HW_THINKPAD) {
1866 chip->thinkpad_flag = 1;
1867 chip->hardware = WSS_HW_DETECT; /* reset */
1868 snd_wss_thinkpad_twiddle(chip, 1);
1869 }
1870
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871 /* global setup */
Krzysztof Helt7779f752008-07-31 21:03:41 +02001872 if (snd_wss_probe(chip) < 0) {
1873 snd_wss_free(chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874 return -ENODEV;
1875 }
Krzysztof Helt7779f752008-07-31 21:03:41 +02001876 snd_wss_init(chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877
Takashi Iwaia9824c82005-11-17 17:51:00 +01001878#if 0
Krzysztof Helt7779f752008-07-31 21:03:41 +02001879 if (chip->hardware & WSS_HW_CS4232_MASK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880 if (chip->res_cport == NULL)
Takashi Iwai76d498e2009-02-05 15:45:05 +01001881 snd_printk(KERN_ERR "CS4232 control port features are "
1882 "not accessible\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883 }
Takashi Iwaia9824c82005-11-17 17:51:00 +01001884#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885
1886 /* Register device */
Krzysztof Helt7779f752008-07-31 21:03:41 +02001887 err = snd_device_new(card, SNDRV_DEV_LOWLEVEL, chip, &ops);
1888 if (err < 0) {
1889 snd_wss_free(chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890 return err;
1891 }
1892
1893#ifdef CONFIG_PM
1894 /* Power Management */
Krzysztof Helt7779f752008-07-31 21:03:41 +02001895 chip->suspend = snd_wss_suspend;
1896 chip->resume = snd_wss_resume;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897#endif
1898
1899 *rchip = chip;
1900 return 0;
1901}
Krzysztof Helt7779f752008-07-31 21:03:41 +02001902EXPORT_SYMBOL(snd_wss_create);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903
Krzysztof Helt7779f752008-07-31 21:03:41 +02001904static struct snd_pcm_ops snd_wss_playback_ops = {
1905 .open = snd_wss_playback_open,
1906 .close = snd_wss_playback_close,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907 .ioctl = snd_pcm_lib_ioctl,
Krzysztof Helt7779f752008-07-31 21:03:41 +02001908 .hw_params = snd_wss_playback_hw_params,
1909 .hw_free = snd_wss_playback_hw_free,
1910 .prepare = snd_wss_playback_prepare,
1911 .trigger = snd_wss_trigger,
1912 .pointer = snd_wss_playback_pointer,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913};
1914
Krzysztof Helt7779f752008-07-31 21:03:41 +02001915static struct snd_pcm_ops snd_wss_capture_ops = {
1916 .open = snd_wss_capture_open,
1917 .close = snd_wss_capture_close,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918 .ioctl = snd_pcm_lib_ioctl,
Krzysztof Helt7779f752008-07-31 21:03:41 +02001919 .hw_params = snd_wss_capture_hw_params,
1920 .hw_free = snd_wss_capture_hw_free,
1921 .prepare = snd_wss_capture_prepare,
1922 .trigger = snd_wss_trigger,
1923 .pointer = snd_wss_capture_pointer,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924};
1925
Lars-Peter Clausenfa60c062015-01-02 12:24:43 +01001926int snd_wss_pcm(struct snd_wss *chip, int device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927{
Takashi Iwaiba2375a2005-11-17 14:30:42 +01001928 struct snd_pcm *pcm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929 int err;
1930
Krzysztof Heltead893c2008-07-31 21:09:32 +02001931 err = snd_pcm_new(chip->card, "WSS", device, 1, 1, &pcm);
1932 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933 return err;
1934
Krzysztof Helt7779f752008-07-31 21:03:41 +02001935 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &snd_wss_playback_ops);
1936 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &snd_wss_capture_ops);
Krzysztof Helt9295aea2008-07-31 21:00:17 +02001937
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938 /* global setup */
1939 pcm->private_data = chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940 pcm->info_flags = 0;
1941 if (chip->single_dma)
1942 pcm->info_flags |= SNDRV_PCM_INFO_HALF_DUPLEX;
Krzysztof Helt7779f752008-07-31 21:03:41 +02001943 if (chip->hardware != WSS_HW_INTERWAVE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944 pcm->info_flags |= SNDRV_PCM_INFO_JOINT_DUPLEX;
Krzysztof Helt7779f752008-07-31 21:03:41 +02001945 strcpy(pcm->name, snd_wss_chip_id(chip));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947 snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV,
1948 snd_dma_isa_data(),
1949 64*1024, chip->dma1 > 3 || chip->dma2 > 3 ? 128*1024 : 64*1024);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950
1951 chip->pcm = pcm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952 return 0;
1953}
Krzysztof Helt7779f752008-07-31 21:03:41 +02001954EXPORT_SYMBOL(snd_wss_pcm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955
Krzysztof Helt7779f752008-07-31 21:03:41 +02001956static void snd_wss_timer_free(struct snd_timer *timer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957{
Krzysztof Helt7779f752008-07-31 21:03:41 +02001958 struct snd_wss *chip = timer->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959 chip->timer = NULL;
1960}
1961
Lars-Peter Clausenfa60c062015-01-02 12:24:43 +01001962int snd_wss_timer(struct snd_wss *chip, int device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963{
Takashi Iwaiba2375a2005-11-17 14:30:42 +01001964 struct snd_timer *timer;
1965 struct snd_timer_id tid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966 int err;
1967
1968 /* Timer initialization */
1969 tid.dev_class = SNDRV_TIMER_CLASS_CARD;
1970 tid.dev_sclass = SNDRV_TIMER_SCLASS_NONE;
1971 tid.card = chip->card->number;
1972 tid.device = device;
1973 tid.subdevice = 0;
1974 if ((err = snd_timer_new(chip->card, "CS4231", &tid, &timer)) < 0)
1975 return err;
Krzysztof Helt7779f752008-07-31 21:03:41 +02001976 strcpy(timer->name, snd_wss_chip_id(chip));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977 timer->private_data = chip;
Krzysztof Helt7779f752008-07-31 21:03:41 +02001978 timer->private_free = snd_wss_timer_free;
1979 timer->hw = snd_wss_timer_table;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980 chip->timer = timer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981 return 0;
1982}
Krzysztof Helt7779f752008-07-31 21:03:41 +02001983EXPORT_SYMBOL(snd_wss_timer);
Krzysztof Helt9295aea2008-07-31 21:00:17 +02001984
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985/*
1986 * MIXER part
1987 */
1988
Krzysztof Helt7779f752008-07-31 21:03:41 +02001989static int snd_wss_info_mux(struct snd_kcontrol *kcontrol,
1990 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991{
Takashi Iwai0773efa2014-10-20 18:15:06 +02001992 static const char * const texts[4] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993 "Line", "Aux", "Mic", "Mix"
1994 };
Takashi Iwai0773efa2014-10-20 18:15:06 +02001995 static const char * const opl3sa_texts[4] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996 "Line", "CD", "Mic", "Mix"
1997 };
Takashi Iwai0773efa2014-10-20 18:15:06 +02001998 static const char * const gusmax_texts[4] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999 "Line", "Synth", "Mic", "Mix"
2000 };
Takashi Iwai0773efa2014-10-20 18:15:06 +02002001 const char * const *ptexts = texts;
Krzysztof Helt7779f752008-07-31 21:03:41 +02002002 struct snd_wss *chip = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003
Takashi Iwai622207d2008-08-08 17:11:45 +02002004 if (snd_BUG_ON(!chip->card))
2005 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006 if (!strcmp(chip->card->driver, "GUS MAX"))
2007 ptexts = gusmax_texts;
2008 switch (chip->hardware) {
Krzysztof Helt7779f752008-07-31 21:03:41 +02002009 case WSS_HW_INTERWAVE:
2010 ptexts = gusmax_texts;
2011 break;
Krzysztof Heltb2e8d7d2009-12-10 20:40:18 +01002012 case WSS_HW_OPTI93X:
Krzysztof Helt7779f752008-07-31 21:03:41 +02002013 case WSS_HW_OPL3SA2:
2014 ptexts = opl3sa_texts;
2015 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016 }
Takashi Iwai0773efa2014-10-20 18:15:06 +02002017 return snd_ctl_enum_info(uinfo, 2, 4, ptexts);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018}
2019
Krzysztof Helt7779f752008-07-31 21:03:41 +02002020static int snd_wss_get_mux(struct snd_kcontrol *kcontrol,
2021 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022{
Krzysztof Helt7779f752008-07-31 21:03:41 +02002023 struct snd_wss *chip = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024 unsigned long flags;
Krzysztof Helt9295aea2008-07-31 21:00:17 +02002025
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026 spin_lock_irqsave(&chip->reg_lock, flags);
2027 ucontrol->value.enumerated.item[0] = (chip->image[CS4231_LEFT_INPUT] & CS4231_MIXS_ALL) >> 6;
2028 ucontrol->value.enumerated.item[1] = (chip->image[CS4231_RIGHT_INPUT] & CS4231_MIXS_ALL) >> 6;
2029 spin_unlock_irqrestore(&chip->reg_lock, flags);
2030 return 0;
2031}
2032
Krzysztof Helt7779f752008-07-31 21:03:41 +02002033static int snd_wss_put_mux(struct snd_kcontrol *kcontrol,
2034 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035{
Krzysztof Helt7779f752008-07-31 21:03:41 +02002036 struct snd_wss *chip = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037 unsigned long flags;
2038 unsigned short left, right;
2039 int change;
Krzysztof Helt9295aea2008-07-31 21:00:17 +02002040
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041 if (ucontrol->value.enumerated.item[0] > 3 ||
2042 ucontrol->value.enumerated.item[1] > 3)
2043 return -EINVAL;
2044 left = ucontrol->value.enumerated.item[0] << 6;
2045 right = ucontrol->value.enumerated.item[1] << 6;
2046 spin_lock_irqsave(&chip->reg_lock, flags);
2047 left = (chip->image[CS4231_LEFT_INPUT] & ~CS4231_MIXS_ALL) | left;
2048 right = (chip->image[CS4231_RIGHT_INPUT] & ~CS4231_MIXS_ALL) | right;
2049 change = left != chip->image[CS4231_LEFT_INPUT] ||
Krzysztof Helt7779f752008-07-31 21:03:41 +02002050 right != chip->image[CS4231_RIGHT_INPUT];
2051 snd_wss_out(chip, CS4231_LEFT_INPUT, left);
2052 snd_wss_out(chip, CS4231_RIGHT_INPUT, right);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053 spin_unlock_irqrestore(&chip->reg_lock, flags);
2054 return change;
2055}
2056
Krzysztof Helt7779f752008-07-31 21:03:41 +02002057int snd_wss_info_single(struct snd_kcontrol *kcontrol,
2058 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059{
2060 int mask = (kcontrol->private_value >> 16) & 0xff;
2061
2062 uinfo->type = mask == 1 ? SNDRV_CTL_ELEM_TYPE_BOOLEAN : SNDRV_CTL_ELEM_TYPE_INTEGER;
2063 uinfo->count = 1;
2064 uinfo->value.integer.min = 0;
2065 uinfo->value.integer.max = mask;
2066 return 0;
2067}
Krzysztof Helt7779f752008-07-31 21:03:41 +02002068EXPORT_SYMBOL(snd_wss_info_single);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069
Krzysztof Helt7779f752008-07-31 21:03:41 +02002070int snd_wss_get_single(struct snd_kcontrol *kcontrol,
2071 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072{
Krzysztof Helt7779f752008-07-31 21:03:41 +02002073 struct snd_wss *chip = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074 unsigned long flags;
2075 int reg = kcontrol->private_value & 0xff;
2076 int shift = (kcontrol->private_value >> 8) & 0xff;
2077 int mask = (kcontrol->private_value >> 16) & 0xff;
2078 int invert = (kcontrol->private_value >> 24) & 0xff;
Krzysztof Helt9295aea2008-07-31 21:00:17 +02002079
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080 spin_lock_irqsave(&chip->reg_lock, flags);
2081 ucontrol->value.integer.value[0] = (chip->image[reg] >> shift) & mask;
2082 spin_unlock_irqrestore(&chip->reg_lock, flags);
2083 if (invert)
2084 ucontrol->value.integer.value[0] = mask - ucontrol->value.integer.value[0];
2085 return 0;
2086}
Krzysztof Helt7779f752008-07-31 21:03:41 +02002087EXPORT_SYMBOL(snd_wss_get_single);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088
Krzysztof Helt7779f752008-07-31 21:03:41 +02002089int snd_wss_put_single(struct snd_kcontrol *kcontrol,
2090 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091{
Krzysztof Helt7779f752008-07-31 21:03:41 +02002092 struct snd_wss *chip = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093 unsigned long flags;
2094 int reg = kcontrol->private_value & 0xff;
2095 int shift = (kcontrol->private_value >> 8) & 0xff;
2096 int mask = (kcontrol->private_value >> 16) & 0xff;
2097 int invert = (kcontrol->private_value >> 24) & 0xff;
2098 int change;
2099 unsigned short val;
Krzysztof Helt9295aea2008-07-31 21:00:17 +02002100
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101 val = (ucontrol->value.integer.value[0] & mask);
2102 if (invert)
2103 val = mask - val;
2104 val <<= shift;
2105 spin_lock_irqsave(&chip->reg_lock, flags);
2106 val = (chip->image[reg] & ~(mask << shift)) | val;
2107 change = val != chip->image[reg];
Krzysztof Helt7779f752008-07-31 21:03:41 +02002108 snd_wss_out(chip, reg, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109 spin_unlock_irqrestore(&chip->reg_lock, flags);
2110 return change;
2111}
Krzysztof Helt7779f752008-07-31 21:03:41 +02002112EXPORT_SYMBOL(snd_wss_put_single);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113
Krzysztof Helt7779f752008-07-31 21:03:41 +02002114int snd_wss_info_double(struct snd_kcontrol *kcontrol,
2115 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116{
2117 int mask = (kcontrol->private_value >> 24) & 0xff;
2118
2119 uinfo->type = mask == 1 ? SNDRV_CTL_ELEM_TYPE_BOOLEAN : SNDRV_CTL_ELEM_TYPE_INTEGER;
2120 uinfo->count = 2;
2121 uinfo->value.integer.min = 0;
2122 uinfo->value.integer.max = mask;
2123 return 0;
2124}
Krzysztof Helt7779f752008-07-31 21:03:41 +02002125EXPORT_SYMBOL(snd_wss_info_double);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126
Krzysztof Helt7779f752008-07-31 21:03:41 +02002127int snd_wss_get_double(struct snd_kcontrol *kcontrol,
2128 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129{
Krzysztof Helt7779f752008-07-31 21:03:41 +02002130 struct snd_wss *chip = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131 unsigned long flags;
2132 int left_reg = kcontrol->private_value & 0xff;
2133 int right_reg = (kcontrol->private_value >> 8) & 0xff;
2134 int shift_left = (kcontrol->private_value >> 16) & 0x07;
2135 int shift_right = (kcontrol->private_value >> 19) & 0x07;
2136 int mask = (kcontrol->private_value >> 24) & 0xff;
2137 int invert = (kcontrol->private_value >> 22) & 1;
Krzysztof Helt9295aea2008-07-31 21:00:17 +02002138
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139 spin_lock_irqsave(&chip->reg_lock, flags);
2140 ucontrol->value.integer.value[0] = (chip->image[left_reg] >> shift_left) & mask;
2141 ucontrol->value.integer.value[1] = (chip->image[right_reg] >> shift_right) & mask;
2142 spin_unlock_irqrestore(&chip->reg_lock, flags);
2143 if (invert) {
2144 ucontrol->value.integer.value[0] = mask - ucontrol->value.integer.value[0];
2145 ucontrol->value.integer.value[1] = mask - ucontrol->value.integer.value[1];
2146 }
2147 return 0;
2148}
Krzysztof Helt7779f752008-07-31 21:03:41 +02002149EXPORT_SYMBOL(snd_wss_get_double);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150
Krzysztof Helt7779f752008-07-31 21:03:41 +02002151int snd_wss_put_double(struct snd_kcontrol *kcontrol,
2152 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153{
Krzysztof Helt7779f752008-07-31 21:03:41 +02002154 struct snd_wss *chip = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155 unsigned long flags;
2156 int left_reg = kcontrol->private_value & 0xff;
2157 int right_reg = (kcontrol->private_value >> 8) & 0xff;
2158 int shift_left = (kcontrol->private_value >> 16) & 0x07;
2159 int shift_right = (kcontrol->private_value >> 19) & 0x07;
2160 int mask = (kcontrol->private_value >> 24) & 0xff;
2161 int invert = (kcontrol->private_value >> 22) & 1;
2162 int change;
2163 unsigned short val1, val2;
Krzysztof Helt9295aea2008-07-31 21:00:17 +02002164
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165 val1 = ucontrol->value.integer.value[0] & mask;
2166 val2 = ucontrol->value.integer.value[1] & mask;
2167 if (invert) {
2168 val1 = mask - val1;
2169 val2 = mask - val2;
2170 }
2171 val1 <<= shift_left;
2172 val2 <<= shift_right;
2173 spin_lock_irqsave(&chip->reg_lock, flags);
Krzysztof Helt5664daa2008-07-31 21:08:32 +02002174 if (left_reg != right_reg) {
2175 val1 = (chip->image[left_reg] & ~(mask << shift_left)) | val1;
2176 val2 = (chip->image[right_reg] & ~(mask << shift_right)) | val2;
2177 change = val1 != chip->image[left_reg] ||
2178 val2 != chip->image[right_reg];
2179 snd_wss_out(chip, left_reg, val1);
2180 snd_wss_out(chip, right_reg, val2);
2181 } else {
2182 mask = (mask << shift_left) | (mask << shift_right);
2183 val1 = (chip->image[left_reg] & ~mask) | val1 | val2;
2184 change = val1 != chip->image[left_reg];
2185 snd_wss_out(chip, left_reg, val1);
2186 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187 spin_unlock_irqrestore(&chip->reg_lock, flags);
2188 return change;
2189}
Krzysztof Helt7779f752008-07-31 21:03:41 +02002190EXPORT_SYMBOL(snd_wss_put_double);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191
Krzysztof Helt5664daa2008-07-31 21:08:32 +02002192static const DECLARE_TLV_DB_SCALE(db_scale_6bit, -9450, 150, 0);
2193static const DECLARE_TLV_DB_SCALE(db_scale_5bit_12db_max, -3450, 150, 0);
2194static const DECLARE_TLV_DB_SCALE(db_scale_rec_gain, 0, 150, 0);
Krzysztof Heltabd134d2009-10-10 10:25:39 +02002195static const DECLARE_TLV_DB_SCALE(db_scale_4bit, -4500, 300, 0);
Krzysztof Helt5664daa2008-07-31 21:08:32 +02002196
Krzysztof Helt7779f752008-07-31 21:03:41 +02002197static struct snd_kcontrol_new snd_wss_controls[] = {
2198WSS_DOUBLE("PCM Playback Switch", 0,
2199 CS4231_LEFT_OUTPUT, CS4231_RIGHT_OUTPUT, 7, 7, 1, 1),
Krzysztof Heltabd134d2009-10-10 10:25:39 +02002200WSS_DOUBLE_TLV("PCM Playback Volume", 0,
2201 CS4231_LEFT_OUTPUT, CS4231_RIGHT_OUTPUT, 0, 0, 63, 1,
2202 db_scale_6bit),
Krzysztof Helt7779f752008-07-31 21:03:41 +02002203WSS_DOUBLE("Aux Playback Switch", 0,
2204 CS4231_AUX1_LEFT_INPUT, CS4231_AUX1_RIGHT_INPUT, 7, 7, 1, 1),
Krzysztof Heltabd134d2009-10-10 10:25:39 +02002205WSS_DOUBLE_TLV("Aux Playback Volume", 0,
2206 CS4231_AUX1_LEFT_INPUT, CS4231_AUX1_RIGHT_INPUT, 0, 0, 31, 1,
2207 db_scale_5bit_12db_max),
Krzysztof Helt7779f752008-07-31 21:03:41 +02002208WSS_DOUBLE("Aux Playback Switch", 1,
2209 CS4231_AUX2_LEFT_INPUT, CS4231_AUX2_RIGHT_INPUT, 7, 7, 1, 1),
Krzysztof Heltabd134d2009-10-10 10:25:39 +02002210WSS_DOUBLE_TLV("Aux Playback Volume", 1,
2211 CS4231_AUX2_LEFT_INPUT, CS4231_AUX2_RIGHT_INPUT, 0, 0, 31, 1,
2212 db_scale_5bit_12db_max),
Krzysztof Heltabd134d2009-10-10 10:25:39 +02002213WSS_DOUBLE_TLV("Capture Volume", 0, CS4231_LEFT_INPUT, CS4231_RIGHT_INPUT,
2214 0, 0, 15, 0, db_scale_rec_gain),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215{
2216 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2217 .name = "Capture Source",
Krzysztof Helt7779f752008-07-31 21:03:41 +02002218 .info = snd_wss_info_mux,
2219 .get = snd_wss_get_mux,
2220 .put = snd_wss_put_mux,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221},
Krzysztof Heltb753e032009-11-17 18:34:54 +01002222WSS_DOUBLE("Mic Boost (+20dB)", 0,
Krzysztof Helt7779f752008-07-31 21:03:41 +02002223 CS4231_LEFT_INPUT, CS4231_RIGHT_INPUT, 5, 5, 1, 0),
2224WSS_SINGLE("Loopback Capture Switch", 0,
2225 CS4231_LOOPBACK, 0, 1, 0),
Krzysztof Heltabd134d2009-10-10 10:25:39 +02002226WSS_SINGLE_TLV("Loopback Capture Volume", 0, CS4231_LOOPBACK, 2, 63, 1,
2227 db_scale_6bit),
Krzysztof Helt633c7e92009-10-11 12:38:49 +02002228WSS_DOUBLE("Line Playback Switch", 0,
2229 CS4231_LEFT_LINE_IN, CS4231_RIGHT_LINE_IN, 7, 7, 1, 1),
2230WSS_DOUBLE_TLV("Line Playback Volume", 0,
2231 CS4231_LEFT_LINE_IN, CS4231_RIGHT_LINE_IN, 0, 0, 31, 1,
2232 db_scale_5bit_12db_max),
Krzysztof Heltb753e032009-11-17 18:34:54 +01002233WSS_SINGLE("Beep Playback Switch", 0,
Krzysztof Helt633c7e92009-10-11 12:38:49 +02002234 CS4231_MONO_CTRL, 7, 1, 1),
Krzysztof Heltb753e032009-11-17 18:34:54 +01002235WSS_SINGLE_TLV("Beep Playback Volume", 0,
Krzysztof Helt633c7e92009-10-11 12:38:49 +02002236 CS4231_MONO_CTRL, 0, 15, 1,
2237 db_scale_4bit),
2238WSS_SINGLE("Mono Output Playback Switch", 0,
2239 CS4231_MONO_CTRL, 6, 1, 1),
Krzysztof Heltb753e032009-11-17 18:34:54 +01002240WSS_SINGLE("Beep Bypass Playback Switch", 0,
Krzysztof Helt633c7e92009-10-11 12:38:49 +02002241 CS4231_MONO_CTRL, 5, 1, 0),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002242};
Krzysztof Helt9295aea2008-07-31 21:00:17 +02002243
Krzysztof Helt7779f752008-07-31 21:03:41 +02002244int snd_wss_mixer(struct snd_wss *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245{
Takashi Iwaiba2375a2005-11-17 14:30:42 +01002246 struct snd_card *card;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247 unsigned int idx;
2248 int err;
Krzysztof Heltb2e8d7d2009-12-10 20:40:18 +01002249 int count = ARRAY_SIZE(snd_wss_controls);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250
Takashi Iwai622207d2008-08-08 17:11:45 +02002251 if (snd_BUG_ON(!chip || !chip->pcm))
2252 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253
2254 card = chip->card;
2255
2256 strcpy(card->mixername, chip->pcm->name);
2257
Krzysztof Heltb2e8d7d2009-12-10 20:40:18 +01002258 /* Use only the first 11 entries on AD1848 */
2259 if (chip->hardware & WSS_HW_AD1848_MASK)
2260 count = 11;
2261 /* There is no loopback on OPTI93X */
2262 else if (chip->hardware == WSS_HW_OPTI93X)
2263 count = 9;
Krzysztof Helt633c7e92009-10-11 12:38:49 +02002264
Krzysztof Heltb2e8d7d2009-12-10 20:40:18 +01002265 for (idx = 0; idx < count; idx++) {
2266 err = snd_ctl_add(card,
2267 snd_ctl_new1(&snd_wss_controls[idx],
2268 chip));
2269 if (err < 0)
2270 return err;
Krzysztof Helt633c7e92009-10-11 12:38:49 +02002271 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002272 return 0;
2273}
Krzysztof Helt7779f752008-07-31 21:03:41 +02002274EXPORT_SYMBOL(snd_wss_mixer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275
Krzysztof Heltead893c2008-07-31 21:09:32 +02002276const struct snd_pcm_ops *snd_wss_get_pcm_ops(int direction)
2277{
2278 return direction == SNDRV_PCM_STREAM_PLAYBACK ?
2279 &snd_wss_playback_ops : &snd_wss_capture_ops;
2280}
2281EXPORT_SYMBOL(snd_wss_get_pcm_ops);
2282
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283/*
2284 * INIT part
2285 */
2286
Krzysztof Helt7779f752008-07-31 21:03:41 +02002287static int __init alsa_wss_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288{
2289 return 0;
2290}
2291
Krzysztof Helt7779f752008-07-31 21:03:41 +02002292static void __exit alsa_wss_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002293{
2294}
2295
Krzysztof Helt7779f752008-07-31 21:03:41 +02002296module_init(alsa_wss_init);
2297module_exit(alsa_wss_exit);