blob: fdd440417bf0a6049743366fee87b1a29ab6557e [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 ESS ES1688/688/488 chip
4 *
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 *
20 */
21
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/init.h>
23#include <linux/interrupt.h>
24#include <linux/delay.h>
25#include <linux/slab.h>
26#include <linux/ioport.h>
27#include <sound/core.h>
28#include <sound/es1688.h>
29#include <sound/initval.h>
30
31#include <asm/io.h>
32#include <asm/dma.h>
33
Jaroslav Kyselac1017a42007-10-15 09:50:19 +020034MODULE_AUTHOR("Jaroslav Kysela <perex@perex.cz>");
Linus Torvalds1da177e2005-04-16 15:20:36 -070035MODULE_DESCRIPTION("ESS ESx688 lowlevel module");
36MODULE_LICENSE("GPL");
37
Takashi Iwaid3a7e472005-11-17 14:31:42 +010038static int snd_es1688_dsp_command(struct snd_es1688 *chip, unsigned char val)
Linus Torvalds1da177e2005-04-16 15:20:36 -070039{
40 int i;
41
42 for (i = 10000; i; i--)
43 if ((inb(ES1688P(chip, STATUS)) & 0x80) == 0) {
44 outb(val, ES1688P(chip, COMMAND));
45 return 1;
46 }
47#ifdef CONFIG_SND_DEBUG
Takashi Iwai4c9f1d32009-02-05 15:47:51 +010048 printk(KERN_DEBUG "snd_es1688_dsp_command: timeout (0x%x)\n", val);
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#endif
50 return 0;
51}
52
Takashi Iwaid3a7e472005-11-17 14:31:42 +010053static int snd_es1688_dsp_get_byte(struct snd_es1688 *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -070054{
55 int i;
56
57 for (i = 1000; i; i--)
58 if (inb(ES1688P(chip, DATA_AVAIL)) & 0x80)
59 return inb(ES1688P(chip, READ));
60 snd_printd("es1688 get byte failed: 0x%lx = 0x%x!!!\n", ES1688P(chip, DATA_AVAIL), inb(ES1688P(chip, DATA_AVAIL)));
61 return -ENODEV;
62}
63
Takashi Iwaid3a7e472005-11-17 14:31:42 +010064static int snd_es1688_write(struct snd_es1688 *chip,
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 unsigned char reg, unsigned char data)
66{
67 if (!snd_es1688_dsp_command(chip, reg))
68 return 0;
69 return snd_es1688_dsp_command(chip, data);
70}
71
Takashi Iwaid3a7e472005-11-17 14:31:42 +010072static int snd_es1688_read(struct snd_es1688 *chip, unsigned char reg)
Linus Torvalds1da177e2005-04-16 15:20:36 -070073{
74 /* Read a byte from an extended mode register of ES1688 */
75 if (!snd_es1688_dsp_command(chip, 0xc0))
76 return -1;
77 if (!snd_es1688_dsp_command(chip, reg))
78 return -1;
79 return snd_es1688_dsp_get_byte(chip);
80}
81
Takashi Iwaid3a7e472005-11-17 14:31:42 +010082void snd_es1688_mixer_write(struct snd_es1688 *chip,
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 unsigned char reg, unsigned char data)
84{
85 outb(reg, ES1688P(chip, MIXER_ADDR));
86 udelay(10);
87 outb(data, ES1688P(chip, MIXER_DATA));
88 udelay(10);
89}
90
Takashi Iwaid3a7e472005-11-17 14:31:42 +010091static unsigned char snd_es1688_mixer_read(struct snd_es1688 *chip, unsigned char reg)
Linus Torvalds1da177e2005-04-16 15:20:36 -070092{
93 unsigned char result;
94
95 outb(reg, ES1688P(chip, MIXER_ADDR));
96 udelay(10);
97 result = inb(ES1688P(chip, MIXER_DATA));
98 udelay(10);
99 return result;
100}
101
Takashi Iwaid3a7e472005-11-17 14:31:42 +0100102static int snd_es1688_reset(struct snd_es1688 *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103{
104 int i;
105
106 outb(3, ES1688P(chip, RESET)); /* valid only for ESS chips, SB -> 1 */
107 udelay(10);
108 outb(0, ES1688P(chip, RESET));
109 udelay(30);
110 for (i = 0; i < 1000 && !(inb(ES1688P(chip, DATA_AVAIL)) & 0x80); i++);
111 if (inb(ES1688P(chip, READ)) != 0xaa) {
112 snd_printd("ess_reset at 0x%lx: failed!!!\n", chip->port);
113 return -ENODEV;
114 }
115 snd_es1688_dsp_command(chip, 0xc6); /* enable extended mode */
116 return 0;
117}
118
Takashi Iwaid3a7e472005-11-17 14:31:42 +0100119static int snd_es1688_probe(struct snd_es1688 *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120{
121 unsigned long flags;
122 unsigned short major, minor, hw;
123 int i;
124
125 /*
126 * initialization sequence
127 */
128
129 spin_lock_irqsave(&chip->reg_lock, flags); /* Some ESS1688 cards need this */
130 inb(ES1688P(chip, ENABLE1)); /* ENABLE1 */
131 inb(ES1688P(chip, ENABLE1)); /* ENABLE1 */
132 inb(ES1688P(chip, ENABLE1)); /* ENABLE1 */
133 inb(ES1688P(chip, ENABLE2)); /* ENABLE2 */
134 inb(ES1688P(chip, ENABLE1)); /* ENABLE1 */
135 inb(ES1688P(chip, ENABLE2)); /* ENABLE2 */
136 inb(ES1688P(chip, ENABLE1)); /* ENABLE1 */
137 inb(ES1688P(chip, ENABLE1)); /* ENABLE1 */
138 inb(ES1688P(chip, ENABLE2)); /* ENABLE2 */
139 inb(ES1688P(chip, ENABLE1)); /* ENABLE1 */
140 inb(ES1688P(chip, ENABLE0)); /* ENABLE0 */
141
142 if (snd_es1688_reset(chip) < 0) {
143 snd_printdd("ESS: [0x%lx] reset failed... 0x%x\n", chip->port, inb(ES1688P(chip, READ)));
144 spin_unlock_irqrestore(&chip->reg_lock, flags);
145 return -ENODEV;
146 }
147 snd_es1688_dsp_command(chip, 0xe7); /* return identification */
148
149 for (i = 1000, major = minor = 0; i; i--) {
150 if (inb(ES1688P(chip, DATA_AVAIL)) & 0x80) {
151 if (major == 0) {
152 major = inb(ES1688P(chip, READ));
153 } else {
154 minor = inb(ES1688P(chip, READ));
155 }
156 }
157 }
158
159 spin_unlock_irqrestore(&chip->reg_lock, flags);
160
161 snd_printdd("ESS: [0x%lx] found.. major = 0x%x, minor = 0x%x\n", chip->port, major, minor);
162
163 chip->version = (major << 8) | minor;
164 if (!chip->version)
165 return -ENODEV; /* probably SB */
166
167 hw = ES1688_HW_AUTO;
168 switch (chip->version & 0xfff0) {
169 case 0x4880:
Takashi Iwai4c9f1d32009-02-05 15:47:51 +0100170 snd_printk(KERN_ERR "[0x%lx] ESS: AudioDrive ES488 detected, "
171 "but driver is in another place\n", chip->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 return -ENODEV;
173 case 0x6880:
174 hw = (chip->version & 0x0f) >= 8 ? ES1688_HW_1688 : ES1688_HW_688;
175 break;
176 default:
Takashi Iwai4c9f1d32009-02-05 15:47:51 +0100177 snd_printk(KERN_ERR "[0x%lx] ESS: unknown AudioDrive chip "
178 "with version 0x%x (Jazz16 soundcard?)\n",
179 chip->port, chip->version);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 return -ENODEV;
181 }
182
183 spin_lock_irqsave(&chip->reg_lock, flags);
184 snd_es1688_write(chip, 0xb1, 0x10); /* disable IRQ */
185 snd_es1688_write(chip, 0xb2, 0x00); /* disable DMA */
186 spin_unlock_irqrestore(&chip->reg_lock, flags);
187
188 /* enable joystick, but disable OPL3 */
189 spin_lock_irqsave(&chip->mixer_lock, flags);
190 snd_es1688_mixer_write(chip, 0x40, 0x01);
191 spin_unlock_irqrestore(&chip->mixer_lock, flags);
192
193 return 0;
194}
195
Takashi Iwaid3a7e472005-11-17 14:31:42 +0100196static int snd_es1688_init(struct snd_es1688 * chip, int enable)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197{
198 static int irqs[16] = {-1, -1, 0, -1, -1, 1, -1, 2, -1, 0, 3, -1, -1, -1, -1, -1};
199 unsigned long flags;
200 int cfg, irq_bits, dma, dma_bits, tmp, tmp1;
201
202 /* ok.. setup MPU-401 port and joystick and OPL3 */
203 cfg = 0x01; /* enable joystick, but disable OPL3 */
204 if (enable && chip->mpu_port >= 0x300 && chip->mpu_irq > 0 && chip->hardware != ES1688_HW_688) {
205 tmp = (chip->mpu_port & 0x0f0) >> 4;
206 if (tmp <= 3) {
207 switch (chip->mpu_irq) {
208 case 9:
209 tmp1 = 4;
210 break;
211 case 5:
212 tmp1 = 5;
213 break;
214 case 7:
215 tmp1 = 6;
216 break;
217 case 10:
218 tmp1 = 7;
219 break;
220 default:
221 tmp1 = 0;
222 }
223 if (tmp1) {
224 cfg |= (tmp << 3) | (tmp1 << 5);
225 }
226 }
227 }
228#if 0
Takashi Iwai4c9f1d32009-02-05 15:47:51 +0100229 snd_printk(KERN_DEBUG "mpu cfg = 0x%x\n", cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230#endif
231 spin_lock_irqsave(&chip->reg_lock, flags);
232 snd_es1688_mixer_write(chip, 0x40, cfg);
233 spin_unlock_irqrestore(&chip->reg_lock, flags);
234 /* --- */
235 spin_lock_irqsave(&chip->reg_lock, flags);
236 snd_es1688_read(chip, 0xb1);
237 snd_es1688_read(chip, 0xb2);
238 spin_unlock_irqrestore(&chip->reg_lock, flags);
239 if (enable) {
240 cfg = 0xf0; /* enable only DMA counter interrupt */
241 irq_bits = irqs[chip->irq & 0x0f];
242 if (irq_bits < 0) {
Takashi Iwai4c9f1d32009-02-05 15:47:51 +0100243 snd_printk(KERN_ERR "[0x%lx] ESS: bad IRQ %d "
244 "for ES1688 chip!!\n",
245 chip->port, chip->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246#if 0
247 irq_bits = 0;
248 cfg = 0x10;
249#endif
250 return -EINVAL;
251 }
252 spin_lock_irqsave(&chip->reg_lock, flags);
253 snd_es1688_write(chip, 0xb1, cfg | (irq_bits << 2));
254 spin_unlock_irqrestore(&chip->reg_lock, flags);
255 cfg = 0xf0; /* extended mode DMA enable */
256 dma = chip->dma8;
257 if (dma > 3 || dma == 2) {
Takashi Iwai4c9f1d32009-02-05 15:47:51 +0100258 snd_printk(KERN_ERR "[0x%lx] ESS: bad DMA channel %d "
259 "for ES1688 chip!!\n", chip->port, dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260#if 0
261 dma_bits = 0;
262 cfg = 0x00; /* disable all DMA */
263#endif
264 return -EINVAL;
265 } else {
266 dma_bits = dma;
267 if (dma != 3)
268 dma_bits++;
269 }
270 spin_lock_irqsave(&chip->reg_lock, flags);
271 snd_es1688_write(chip, 0xb2, cfg | (dma_bits << 2));
272 spin_unlock_irqrestore(&chip->reg_lock, flags);
273 } else {
274 spin_lock_irqsave(&chip->reg_lock, flags);
275 snd_es1688_write(chip, 0xb1, 0x10); /* disable IRQ */
276 snd_es1688_write(chip, 0xb2, 0x00); /* disable DMA */
277 spin_unlock_irqrestore(&chip->reg_lock, flags);
278 }
279 spin_lock_irqsave(&chip->reg_lock, flags);
280 snd_es1688_read(chip, 0xb1);
281 snd_es1688_read(chip, 0xb2);
282 snd_es1688_reset(chip);
283 spin_unlock_irqrestore(&chip->reg_lock, flags);
284 return 0;
285}
286
287/*
288
289 */
290
Takashi Iwaid3a7e472005-11-17 14:31:42 +0100291static struct snd_ratnum clocks[2] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 {
293 .num = 795444,
294 .den_min = 1,
295 .den_max = 128,
296 .den_step = 1,
297 },
298 {
299 .num = 397722,
300 .den_min = 1,
301 .den_max = 128,
302 .den_step = 1,
303 }
304};
305
Takashi Iwaid3a7e472005-11-17 14:31:42 +0100306static struct snd_pcm_hw_constraint_ratnums hw_constraints_clocks = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 .nrats = 2,
308 .rats = clocks,
309};
310
Takashi Iwaid3a7e472005-11-17 14:31:42 +0100311static void snd_es1688_set_rate(struct snd_es1688 *chip, struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312{
Takashi Iwaid3a7e472005-11-17 14:31:42 +0100313 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 unsigned int bits, divider;
315
316 if (runtime->rate_num == clocks[0].num)
317 bits = 256 - runtime->rate_den;
318 else
319 bits = 128 - runtime->rate_den;
320 /* set filter register */
321 divider = 256 - 7160000*20/(8*82*runtime->rate);
322 /* write result to hardware */
323 snd_es1688_write(chip, 0xa1, bits);
324 snd_es1688_write(chip, 0xa2, divider);
325}
326
Takashi Iwaid3a7e472005-11-17 14:31:42 +0100327static int snd_es1688_ioctl(struct snd_pcm_substream *substream,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 unsigned int cmd, void *arg)
329{
330 return snd_pcm_lib_ioctl(substream, cmd, arg);
331}
332
Takashi Iwaid3a7e472005-11-17 14:31:42 +0100333static int snd_es1688_trigger(struct snd_es1688 *chip, int cmd, unsigned char value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334{
335 int val;
336
337 if (cmd == SNDRV_PCM_TRIGGER_STOP) {
338 value = 0x00;
339 } else if (cmd != SNDRV_PCM_TRIGGER_START) {
340 return -EINVAL;
341 }
342 spin_lock(&chip->reg_lock);
343 chip->trigger_value = value;
344 val = snd_es1688_read(chip, 0xb8);
345 if ((val < 0) || (val & 0x0f) == value) {
346 spin_unlock(&chip->reg_lock);
347 return -EINVAL; /* something is wrong */
348 }
349#if 0
Takashi Iwai4c9f1d32009-02-05 15:47:51 +0100350 printk(KERN_DEBUG "trigger: val = 0x%x, value = 0x%x\n", val, value);
351 printk(KERN_DEBUG "trigger: pointer = 0x%x\n",
352 snd_dma_pointer(chip->dma8, chip->dma_size));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353#endif
354 snd_es1688_write(chip, 0xb8, (val & 0xf0) | value);
355 spin_unlock(&chip->reg_lock);
356 return 0;
357}
358
Takashi Iwaid3a7e472005-11-17 14:31:42 +0100359static int snd_es1688_hw_params(struct snd_pcm_substream *substream,
360 struct snd_pcm_hw_params *hw_params)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361{
362 return snd_pcm_lib_malloc_pages(substream, params_buffer_bytes(hw_params));
363}
364
Takashi Iwaid3a7e472005-11-17 14:31:42 +0100365static int snd_es1688_hw_free(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366{
367 return snd_pcm_lib_free_pages(substream);
368}
369
Takashi Iwaid3a7e472005-11-17 14:31:42 +0100370static int snd_es1688_playback_prepare(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371{
372 unsigned long flags;
Takashi Iwaid3a7e472005-11-17 14:31:42 +0100373 struct snd_es1688 *chip = snd_pcm_substream_chip(substream);
374 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 unsigned int size = snd_pcm_lib_buffer_bytes(substream);
376 unsigned int count = snd_pcm_lib_period_bytes(substream);
377
378 chip->dma_size = size;
379 spin_lock_irqsave(&chip->reg_lock, flags);
380 snd_es1688_reset(chip);
381 snd_es1688_set_rate(chip, substream);
382 snd_es1688_write(chip, 0xb8, 4); /* auto init DMA mode */
383 snd_es1688_write(chip, 0xa8, (snd_es1688_read(chip, 0xa8) & ~0x03) | (3 - runtime->channels));
384 snd_es1688_write(chip, 0xb9, 2); /* demand mode (4 bytes/request) */
385 if (runtime->channels == 1) {
386 if (snd_pcm_format_width(runtime->format) == 8) {
387 /* 8. bit mono */
388 snd_es1688_write(chip, 0xb6, 0x80);
389 snd_es1688_write(chip, 0xb7, 0x51);
390 snd_es1688_write(chip, 0xb7, 0xd0);
391 } else {
392 /* 16. bit mono */
393 snd_es1688_write(chip, 0xb6, 0x00);
394 snd_es1688_write(chip, 0xb7, 0x71);
395 snd_es1688_write(chip, 0xb7, 0xf4);
396 }
397 } else {
398 if (snd_pcm_format_width(runtime->format) == 8) {
399 /* 8. bit stereo */
400 snd_es1688_write(chip, 0xb6, 0x80);
401 snd_es1688_write(chip, 0xb7, 0x51);
402 snd_es1688_write(chip, 0xb7, 0x98);
403 } else {
404 /* 16. bit stereo */
405 snd_es1688_write(chip, 0xb6, 0x00);
406 snd_es1688_write(chip, 0xb7, 0x71);
407 snd_es1688_write(chip, 0xb7, 0xbc);
408 }
409 }
410 snd_es1688_write(chip, 0xb1, (snd_es1688_read(chip, 0xb1) & 0x0f) | 0x50);
411 snd_es1688_write(chip, 0xb2, (snd_es1688_read(chip, 0xb2) & 0x0f) | 0x50);
412 snd_es1688_dsp_command(chip, ES1688_DSP_CMD_SPKON);
413 spin_unlock_irqrestore(&chip->reg_lock, flags);
414 /* --- */
415 count = -count;
416 snd_dma_program(chip->dma8, runtime->dma_addr, size, DMA_MODE_WRITE | DMA_AUTOINIT);
417 spin_lock_irqsave(&chip->reg_lock, flags);
418 snd_es1688_write(chip, 0xa4, (unsigned char) count);
419 snd_es1688_write(chip, 0xa5, (unsigned char) (count >> 8));
420 spin_unlock_irqrestore(&chip->reg_lock, flags);
421 return 0;
422}
423
Takashi Iwaid3a7e472005-11-17 14:31:42 +0100424static int snd_es1688_playback_trigger(struct snd_pcm_substream *substream,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 int cmd)
426{
Takashi Iwaid3a7e472005-11-17 14:31:42 +0100427 struct snd_es1688 *chip = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 return snd_es1688_trigger(chip, cmd, 0x05);
429}
430
Takashi Iwaid3a7e472005-11-17 14:31:42 +0100431static int snd_es1688_capture_prepare(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432{
433 unsigned long flags;
Takashi Iwaid3a7e472005-11-17 14:31:42 +0100434 struct snd_es1688 *chip = snd_pcm_substream_chip(substream);
435 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 unsigned int size = snd_pcm_lib_buffer_bytes(substream);
437 unsigned int count = snd_pcm_lib_period_bytes(substream);
438
439 chip->dma_size = size;
440 spin_lock_irqsave(&chip->reg_lock, flags);
441 snd_es1688_reset(chip);
442 snd_es1688_set_rate(chip, substream);
443 snd_es1688_dsp_command(chip, ES1688_DSP_CMD_SPKOFF);
444 snd_es1688_write(chip, 0xb8, 0x0e); /* auto init DMA mode */
445 snd_es1688_write(chip, 0xa8, (snd_es1688_read(chip, 0xa8) & ~0x03) | (3 - runtime->channels));
446 snd_es1688_write(chip, 0xb9, 2); /* demand mode (4 bytes/request) */
447 if (runtime->channels == 1) {
448 if (snd_pcm_format_width(runtime->format) == 8) {
449 /* 8. bit mono */
450 snd_es1688_write(chip, 0xb7, 0x51);
451 snd_es1688_write(chip, 0xb7, 0xd0);
452 } else {
453 /* 16. bit mono */
454 snd_es1688_write(chip, 0xb7, 0x71);
455 snd_es1688_write(chip, 0xb7, 0xf4);
456 }
457 } else {
458 if (snd_pcm_format_width(runtime->format) == 8) {
459 /* 8. bit stereo */
460 snd_es1688_write(chip, 0xb7, 0x51);
461 snd_es1688_write(chip, 0xb7, 0x98);
462 } else {
463 /* 16. bit stereo */
464 snd_es1688_write(chip, 0xb7, 0x71);
465 snd_es1688_write(chip, 0xb7, 0xbc);
466 }
467 }
468 snd_es1688_write(chip, 0xb1, (snd_es1688_read(chip, 0xb1) & 0x0f) | 0x50);
469 snd_es1688_write(chip, 0xb2, (snd_es1688_read(chip, 0xb2) & 0x0f) | 0x50);
470 spin_unlock_irqrestore(&chip->reg_lock, flags);
471 /* --- */
472 count = -count;
473 snd_dma_program(chip->dma8, runtime->dma_addr, size, DMA_MODE_READ | DMA_AUTOINIT);
474 spin_lock_irqsave(&chip->reg_lock, flags);
475 snd_es1688_write(chip, 0xa4, (unsigned char) count);
476 snd_es1688_write(chip, 0xa5, (unsigned char) (count >> 8));
477 spin_unlock_irqrestore(&chip->reg_lock, flags);
478 return 0;
479}
480
Takashi Iwaid3a7e472005-11-17 14:31:42 +0100481static int snd_es1688_capture_trigger(struct snd_pcm_substream *substream,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 int cmd)
483{
Takashi Iwaid3a7e472005-11-17 14:31:42 +0100484 struct snd_es1688 *chip = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 return snd_es1688_trigger(chip, cmd, 0x0f);
486}
487
David Howells7d12e782006-10-05 14:55:46 +0100488static irqreturn_t snd_es1688_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489{
Takashi Iwaid3a7e472005-11-17 14:31:42 +0100490 struct snd_es1688 *chip = dev_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491
492 if (chip->trigger_value == 0x05) /* ok.. playback is active */
493 snd_pcm_period_elapsed(chip->playback_substream);
494 if (chip->trigger_value == 0x0f) /* ok.. capture is active */
495 snd_pcm_period_elapsed(chip->capture_substream);
496
497 inb(ES1688P(chip, DATA_AVAIL)); /* ack interrupt */
498 return IRQ_HANDLED;
499}
500
Takashi Iwaid3a7e472005-11-17 14:31:42 +0100501static snd_pcm_uframes_t snd_es1688_playback_pointer(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502{
Takashi Iwaid3a7e472005-11-17 14:31:42 +0100503 struct snd_es1688 *chip = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 size_t ptr;
505
506 if (chip->trigger_value != 0x05)
507 return 0;
508 ptr = snd_dma_pointer(chip->dma8, chip->dma_size);
509 return bytes_to_frames(substream->runtime, ptr);
510}
511
Takashi Iwaid3a7e472005-11-17 14:31:42 +0100512static snd_pcm_uframes_t snd_es1688_capture_pointer(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513{
Takashi Iwaid3a7e472005-11-17 14:31:42 +0100514 struct snd_es1688 *chip = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 size_t ptr;
516
517 if (chip->trigger_value != 0x0f)
518 return 0;
519 ptr = snd_dma_pointer(chip->dma8, chip->dma_size);
520 return bytes_to_frames(substream->runtime, ptr);
521}
522
523/*
524
525 */
526
Takashi Iwaid3a7e472005-11-17 14:31:42 +0100527static struct snd_pcm_hardware snd_es1688_playback =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528{
529 .info = (SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_INTERLEAVED |
530 SNDRV_PCM_INFO_MMAP_VALID),
531 .formats = SNDRV_PCM_FMTBIT_U8 | SNDRV_PCM_FMTBIT_S16_LE,
532 .rates = SNDRV_PCM_RATE_CONTINUOUS | SNDRV_PCM_RATE_8000_48000,
533 .rate_min = 4000,
534 .rate_max = 48000,
535 .channels_min = 1,
536 .channels_max = 2,
537 .buffer_bytes_max = 65536,
538 .period_bytes_min = 64,
539 .period_bytes_max = 65536,
540 .periods_min = 1,
541 .periods_max = 1024,
542 .fifo_size = 0,
543};
544
Takashi Iwaid3a7e472005-11-17 14:31:42 +0100545static struct snd_pcm_hardware snd_es1688_capture =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546{
547 .info = (SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_INTERLEAVED |
548 SNDRV_PCM_INFO_MMAP_VALID),
549 .formats = SNDRV_PCM_FMTBIT_U8 | SNDRV_PCM_FMTBIT_S16_LE,
550 .rates = SNDRV_PCM_RATE_CONTINUOUS | SNDRV_PCM_RATE_8000_48000,
551 .rate_min = 4000,
552 .rate_max = 48000,
553 .channels_min = 1,
554 .channels_max = 2,
555 .buffer_bytes_max = 65536,
556 .period_bytes_min = 64,
557 .period_bytes_max = 65536,
558 .periods_min = 1,
559 .periods_max = 1024,
560 .fifo_size = 0,
561};
562
563/*
564
565 */
566
Takashi Iwaid3a7e472005-11-17 14:31:42 +0100567static int snd_es1688_playback_open(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568{
Takashi Iwaid3a7e472005-11-17 14:31:42 +0100569 struct snd_es1688 *chip = snd_pcm_substream_chip(substream);
570 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571
572 if (chip->capture_substream != NULL)
573 return -EAGAIN;
574 chip->playback_substream = substream;
575 runtime->hw = snd_es1688_playback;
576 snd_pcm_hw_constraint_ratnums(runtime, 0, SNDRV_PCM_HW_PARAM_RATE,
577 &hw_constraints_clocks);
578 return 0;
579}
580
Takashi Iwaid3a7e472005-11-17 14:31:42 +0100581static int snd_es1688_capture_open(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582{
Takashi Iwaid3a7e472005-11-17 14:31:42 +0100583 struct snd_es1688 *chip = snd_pcm_substream_chip(substream);
584 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585
586 if (chip->playback_substream != NULL)
587 return -EAGAIN;
588 chip->capture_substream = substream;
589 runtime->hw = snd_es1688_capture;
590 snd_pcm_hw_constraint_ratnums(runtime, 0, SNDRV_PCM_HW_PARAM_RATE,
591 &hw_constraints_clocks);
592 return 0;
593}
594
Takashi Iwaid3a7e472005-11-17 14:31:42 +0100595static int snd_es1688_playback_close(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596{
Takashi Iwaid3a7e472005-11-17 14:31:42 +0100597 struct snd_es1688 *chip = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598
599 chip->playback_substream = NULL;
600 return 0;
601}
602
Takashi Iwaid3a7e472005-11-17 14:31:42 +0100603static int snd_es1688_capture_close(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604{
Takashi Iwaid3a7e472005-11-17 14:31:42 +0100605 struct snd_es1688 *chip = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606
607 chip->capture_substream = NULL;
608 return 0;
609}
610
Takashi Iwaid3a7e472005-11-17 14:31:42 +0100611static int snd_es1688_free(struct snd_es1688 *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612{
613 if (chip->res_port) {
614 snd_es1688_init(chip, 0);
Takashi Iwaib1d57762005-10-10 11:56:31 +0200615 release_and_free_resource(chip->res_port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 }
617 if (chip->irq >= 0)
618 free_irq(chip->irq, (void *) chip);
619 if (chip->dma8 >= 0) {
620 disable_dma(chip->dma8);
621 free_dma(chip->dma8);
622 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 return 0;
624}
625
Takashi Iwaid3a7e472005-11-17 14:31:42 +0100626static int snd_es1688_dev_free(struct snd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627{
Takashi Iwaid3a7e472005-11-17 14:31:42 +0100628 struct snd_es1688 *chip = device->device_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 return snd_es1688_free(chip);
630}
631
Takashi Iwaid3a7e472005-11-17 14:31:42 +0100632static const char *snd_es1688_chip_id(struct snd_es1688 *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633{
634 static char tmp[16];
635 sprintf(tmp, "ES%s688 rev %i", chip->hardware == ES1688_HW_688 ? "" : "1", chip->version & 0x0f);
636 return tmp;
637}
638
Takashi Iwaid3a7e472005-11-17 14:31:42 +0100639int snd_es1688_create(struct snd_card *card,
Krzysztof Helt396fa822010-05-09 20:35:44 +0200640 struct snd_es1688 *chip,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 unsigned long port,
642 unsigned long mpu_port,
643 int irq,
644 int mpu_irq,
645 int dma8,
Krzysztof Helt396fa822010-05-09 20:35:44 +0200646 unsigned short hardware)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647{
Takashi Iwaid3a7e472005-11-17 14:31:42 +0100648 static struct snd_device_ops ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 .dev_free = snd_es1688_dev_free,
650 };
651
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 int err;
653
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 if (chip == NULL)
655 return -ENOMEM;
656 chip->irq = -1;
657 chip->dma8 = -1;
658
659 if ((chip->res_port = request_region(port + 4, 12, "ES1688")) == NULL) {
660 snd_printk(KERN_ERR "es1688: can't grab port 0x%lx\n", port + 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 return -EBUSY;
662 }
Thomas Gleixner65ca68b2006-07-01 19:29:46 -0700663 if (request_irq(irq, snd_es1688_interrupt, IRQF_DISABLED, "ES1688", (void *) chip)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 snd_printk(KERN_ERR "es1688: can't grab IRQ %d\n", irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 return -EBUSY;
666 }
667 chip->irq = irq;
668 if (request_dma(dma8, "ES1688")) {
669 snd_printk(KERN_ERR "es1688: can't grab DMA8 %d\n", dma8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 return -EBUSY;
671 }
672 chip->dma8 = dma8;
673
674 spin_lock_init(&chip->reg_lock);
675 spin_lock_init(&chip->mixer_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 chip->port = port;
677 mpu_port &= ~0x000f;
678 if (mpu_port < 0x300 || mpu_port > 0x330)
679 mpu_port = 0;
680 chip->mpu_port = mpu_port;
681 chip->mpu_irq = mpu_irq;
682 chip->hardware = hardware;
683
Krzysztof Helt396fa822010-05-09 20:35:44 +0200684 err = snd_es1688_probe(chip);
685 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 return err;
Krzysztof Helt396fa822010-05-09 20:35:44 +0200687
688 err = snd_es1688_init(chip, 1);
689 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691
692 /* Register device */
Krzysztof Helt396fa822010-05-09 20:35:44 +0200693 return snd_device_new(card, SNDRV_DEV_LOWLEVEL, chip, &ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694}
695
Takashi Iwaid3a7e472005-11-17 14:31:42 +0100696static struct snd_pcm_ops snd_es1688_playback_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 .open = snd_es1688_playback_open,
698 .close = snd_es1688_playback_close,
699 .ioctl = snd_es1688_ioctl,
700 .hw_params = snd_es1688_hw_params,
701 .hw_free = snd_es1688_hw_free,
702 .prepare = snd_es1688_playback_prepare,
703 .trigger = snd_es1688_playback_trigger,
704 .pointer = snd_es1688_playback_pointer,
705};
706
Takashi Iwaid3a7e472005-11-17 14:31:42 +0100707static struct snd_pcm_ops snd_es1688_capture_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 .open = snd_es1688_capture_open,
709 .close = snd_es1688_capture_close,
710 .ioctl = snd_es1688_ioctl,
711 .hw_params = snd_es1688_hw_params,
712 .hw_free = snd_es1688_hw_free,
713 .prepare = snd_es1688_capture_prepare,
714 .trigger = snd_es1688_capture_trigger,
715 .pointer = snd_es1688_capture_pointer,
716};
717
Krzysztof Helt396fa822010-05-09 20:35:44 +0200718int snd_es1688_pcm(struct snd_card *card, struct snd_es1688 *chip,
719 int device, struct snd_pcm **rpcm)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720{
Takashi Iwaid3a7e472005-11-17 14:31:42 +0100721 struct snd_pcm *pcm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 int err;
723
Krzysztof Helt396fa822010-05-09 20:35:44 +0200724 err = snd_pcm_new(card, "ESx688", device, 1, 1, &pcm);
725 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 return err;
727
728 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &snd_es1688_playback_ops);
729 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &snd_es1688_capture_ops);
730
731 pcm->private_data = chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 pcm->info_flags = SNDRV_PCM_INFO_HALF_DUPLEX;
733 sprintf(pcm->name, snd_es1688_chip_id(chip));
734 chip->pcm = pcm;
735
736 snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV,
737 snd_dma_isa_data(),
738 64*1024, 64*1024);
739
740 if (rpcm)
741 *rpcm = pcm;
742 return 0;
743}
744
745/*
746 * MIXER part
747 */
748
Takashi Iwaid3a7e472005-11-17 14:31:42 +0100749static int snd_es1688_info_mux(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750{
751 static char *texts[9] = {
752 "Mic", "Mic Master", "CD", "AOUT",
753 "Mic1", "Mix", "Line", "Master"
754 };
755
756 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
757 uinfo->count = 1;
758 uinfo->value.enumerated.items = 8;
759 if (uinfo->value.enumerated.item > 7)
760 uinfo->value.enumerated.item = 7;
761 strcpy(uinfo->value.enumerated.name, texts[uinfo->value.enumerated.item]);
762 return 0;
763}
764
Takashi Iwaid3a7e472005-11-17 14:31:42 +0100765static int snd_es1688_get_mux(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766{
Takashi Iwaid3a7e472005-11-17 14:31:42 +0100767 struct snd_es1688 *chip = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 ucontrol->value.enumerated.item[0] = snd_es1688_mixer_read(chip, ES1688_REC_DEV) & 7;
769 return 0;
770}
771
Takashi Iwaid3a7e472005-11-17 14:31:42 +0100772static int snd_es1688_put_mux(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773{
Takashi Iwaid3a7e472005-11-17 14:31:42 +0100774 struct snd_es1688 *chip = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 unsigned long flags;
776 unsigned char oval, nval;
777 int change;
778
779 if (ucontrol->value.enumerated.item[0] > 8)
780 return -EINVAL;
781 spin_lock_irqsave(&chip->reg_lock, flags);
782 oval = snd_es1688_mixer_read(chip, ES1688_REC_DEV);
783 nval = (ucontrol->value.enumerated.item[0] & 7) | (oval & ~15);
784 change = nval != oval;
785 if (change)
786 snd_es1688_mixer_write(chip, ES1688_REC_DEV, nval);
787 spin_unlock_irqrestore(&chip->reg_lock, flags);
788 return change;
789}
790
791#define ES1688_SINGLE(xname, xindex, reg, shift, mask, invert) \
792{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = xindex, \
793 .info = snd_es1688_info_single, \
794 .get = snd_es1688_get_single, .put = snd_es1688_put_single, \
795 .private_value = reg | (shift << 8) | (mask << 16) | (invert << 24) }
796
Takashi Iwaid3a7e472005-11-17 14:31:42 +0100797static int snd_es1688_info_single(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798{
799 int mask = (kcontrol->private_value >> 16) & 0xff;
800
801 uinfo->type = mask == 1 ? SNDRV_CTL_ELEM_TYPE_BOOLEAN : SNDRV_CTL_ELEM_TYPE_INTEGER;
802 uinfo->count = 1;
803 uinfo->value.integer.min = 0;
804 uinfo->value.integer.max = mask;
805 return 0;
806}
807
Takashi Iwaid3a7e472005-11-17 14:31:42 +0100808static int snd_es1688_get_single(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809{
Takashi Iwaid3a7e472005-11-17 14:31:42 +0100810 struct snd_es1688 *chip = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 unsigned long flags;
812 int reg = kcontrol->private_value & 0xff;
813 int shift = (kcontrol->private_value >> 8) & 0xff;
814 int mask = (kcontrol->private_value >> 16) & 0xff;
815 int invert = (kcontrol->private_value >> 24) & 0xff;
816
817 spin_lock_irqsave(&chip->reg_lock, flags);
818 ucontrol->value.integer.value[0] = (snd_es1688_mixer_read(chip, reg) >> shift) & mask;
819 spin_unlock_irqrestore(&chip->reg_lock, flags);
820 if (invert)
821 ucontrol->value.integer.value[0] = mask - ucontrol->value.integer.value[0];
822 return 0;
823}
824
Takashi Iwaid3a7e472005-11-17 14:31:42 +0100825static int snd_es1688_put_single(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826{
Takashi Iwaid3a7e472005-11-17 14:31:42 +0100827 struct snd_es1688 *chip = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 unsigned long flags;
829 int reg = kcontrol->private_value & 0xff;
830 int shift = (kcontrol->private_value >> 8) & 0xff;
831 int mask = (kcontrol->private_value >> 16) & 0xff;
832 int invert = (kcontrol->private_value >> 24) & 0xff;
833 int change;
834 unsigned char oval, nval;
835
836 nval = (ucontrol->value.integer.value[0] & mask);
837 if (invert)
838 nval = mask - nval;
839 nval <<= shift;
840 spin_lock_irqsave(&chip->reg_lock, flags);
841 oval = snd_es1688_mixer_read(chip, reg);
842 nval = (oval & ~(mask << shift)) | nval;
843 change = nval != oval;
844 if (change)
845 snd_es1688_mixer_write(chip, reg, nval);
846 spin_unlock_irqrestore(&chip->reg_lock, flags);
847 return change;
848}
849
850#define ES1688_DOUBLE(xname, xindex, left_reg, right_reg, shift_left, shift_right, mask, invert) \
851{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = xindex, \
852 .info = snd_es1688_info_double, \
853 .get = snd_es1688_get_double, .put = snd_es1688_put_double, \
854 .private_value = left_reg | (right_reg << 8) | (shift_left << 16) | (shift_right << 19) | (mask << 24) | (invert << 22) }
855
Takashi Iwaid3a7e472005-11-17 14:31:42 +0100856static int snd_es1688_info_double(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857{
858 int mask = (kcontrol->private_value >> 24) & 0xff;
859
860 uinfo->type = mask == 1 ? SNDRV_CTL_ELEM_TYPE_BOOLEAN : SNDRV_CTL_ELEM_TYPE_INTEGER;
861 uinfo->count = 2;
862 uinfo->value.integer.min = 0;
863 uinfo->value.integer.max = mask;
864 return 0;
865}
866
Takashi Iwaid3a7e472005-11-17 14:31:42 +0100867static int snd_es1688_get_double(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868{
Takashi Iwaid3a7e472005-11-17 14:31:42 +0100869 struct snd_es1688 *chip = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 unsigned long flags;
871 int left_reg = kcontrol->private_value & 0xff;
872 int right_reg = (kcontrol->private_value >> 8) & 0xff;
873 int shift_left = (kcontrol->private_value >> 16) & 0x07;
874 int shift_right = (kcontrol->private_value >> 19) & 0x07;
875 int mask = (kcontrol->private_value >> 24) & 0xff;
876 int invert = (kcontrol->private_value >> 22) & 1;
877 unsigned char left, right;
878
879 spin_lock_irqsave(&chip->reg_lock, flags);
880 if (left_reg < 0xa0)
881 left = snd_es1688_mixer_read(chip, left_reg);
882 else
883 left = snd_es1688_read(chip, left_reg);
884 if (left_reg != right_reg) {
885 if (right_reg < 0xa0)
886 right = snd_es1688_mixer_read(chip, right_reg);
887 else
888 right = snd_es1688_read(chip, right_reg);
889 } else
890 right = left;
891 spin_unlock_irqrestore(&chip->reg_lock, flags);
892 ucontrol->value.integer.value[0] = (left >> shift_left) & mask;
893 ucontrol->value.integer.value[1] = (right >> shift_right) & mask;
894 if (invert) {
895 ucontrol->value.integer.value[0] = mask - ucontrol->value.integer.value[0];
896 ucontrol->value.integer.value[1] = mask - ucontrol->value.integer.value[1];
897 }
898 return 0;
899}
900
Takashi Iwaid3a7e472005-11-17 14:31:42 +0100901static int snd_es1688_put_double(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902{
Takashi Iwaid3a7e472005-11-17 14:31:42 +0100903 struct snd_es1688 *chip = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 unsigned long flags;
905 int left_reg = kcontrol->private_value & 0xff;
906 int right_reg = (kcontrol->private_value >> 8) & 0xff;
907 int shift_left = (kcontrol->private_value >> 16) & 0x07;
908 int shift_right = (kcontrol->private_value >> 19) & 0x07;
909 int mask = (kcontrol->private_value >> 24) & 0xff;
910 int invert = (kcontrol->private_value >> 22) & 1;
911 int change;
912 unsigned char val1, val2, oval1, oval2;
913
914 val1 = ucontrol->value.integer.value[0] & mask;
915 val2 = ucontrol->value.integer.value[1] & mask;
916 if (invert) {
917 val1 = mask - val1;
918 val2 = mask - val2;
919 }
920 val1 <<= shift_left;
921 val2 <<= shift_right;
922 spin_lock_irqsave(&chip->reg_lock, flags);
923 if (left_reg != right_reg) {
924 if (left_reg < 0xa0)
925 oval1 = snd_es1688_mixer_read(chip, left_reg);
926 else
927 oval1 = snd_es1688_read(chip, left_reg);
928 if (right_reg < 0xa0)
929 oval2 = snd_es1688_mixer_read(chip, right_reg);
930 else
931 oval2 = snd_es1688_read(chip, right_reg);
932 val1 = (oval1 & ~(mask << shift_left)) | val1;
933 val2 = (oval2 & ~(mask << shift_right)) | val2;
934 change = val1 != oval1 || val2 != oval2;
935 if (change) {
936 if (left_reg < 0xa0)
937 snd_es1688_mixer_write(chip, left_reg, val1);
938 else
939 snd_es1688_write(chip, left_reg, val1);
940 if (right_reg < 0xa0)
941 snd_es1688_mixer_write(chip, right_reg, val1);
942 else
943 snd_es1688_write(chip, right_reg, val1);
944 }
945 } else {
946 if (left_reg < 0xa0)
947 oval1 = snd_es1688_mixer_read(chip, left_reg);
948 else
949 oval1 = snd_es1688_read(chip, left_reg);
950 val1 = (oval1 & ~((mask << shift_left) | (mask << shift_right))) | val1 | val2;
951 change = val1 != oval1;
952 if (change) {
953 if (left_reg < 0xa0)
954 snd_es1688_mixer_write(chip, left_reg, val1);
955 else
956 snd_es1688_write(chip, left_reg, val1);
957 }
958
959 }
960 spin_unlock_irqrestore(&chip->reg_lock, flags);
961 return change;
962}
963
Takashi Iwaid3a7e472005-11-17 14:31:42 +0100964static struct snd_kcontrol_new snd_es1688_controls[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965ES1688_DOUBLE("Master Playback Volume", 0, ES1688_MASTER_DEV, ES1688_MASTER_DEV, 4, 0, 15, 0),
966ES1688_DOUBLE("PCM Playback Volume", 0, ES1688_PCM_DEV, ES1688_PCM_DEV, 4, 0, 15, 0),
967ES1688_DOUBLE("Line Playback Volume", 0, ES1688_LINE_DEV, ES1688_LINE_DEV, 4, 0, 15, 0),
968ES1688_DOUBLE("CD Playback Volume", 0, ES1688_CD_DEV, ES1688_CD_DEV, 4, 0, 15, 0),
969ES1688_DOUBLE("FM Playback Volume", 0, ES1688_FM_DEV, ES1688_FM_DEV, 4, 0, 15, 0),
970ES1688_DOUBLE("Mic Playback Volume", 0, ES1688_MIC_DEV, ES1688_MIC_DEV, 4, 0, 15, 0),
971ES1688_DOUBLE("Aux Playback Volume", 0, ES1688_AUX_DEV, ES1688_AUX_DEV, 4, 0, 15, 0),
Jaroslav Kyselad355c82a2009-11-03 15:47:25 +0100972ES1688_SINGLE("Beep Playback Volume", 0, ES1688_SPEAKER_DEV, 0, 7, 0),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973ES1688_DOUBLE("Capture Volume", 0, ES1688_RECLEV_DEV, ES1688_RECLEV_DEV, 4, 0, 15, 0),
974ES1688_SINGLE("Capture Switch", 0, ES1688_REC_DEV, 4, 1, 1),
975{
976 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
977 .name = "Capture Source",
978 .info = snd_es1688_info_mux,
979 .get = snd_es1688_get_mux,
980 .put = snd_es1688_put_mux,
981},
982};
983
984#define ES1688_INIT_TABLE_SIZE (sizeof(snd_es1688_init_table)/2)
985
986static unsigned char snd_es1688_init_table[][2] = {
987 { ES1688_MASTER_DEV, 0 },
988 { ES1688_PCM_DEV, 0 },
989 { ES1688_LINE_DEV, 0 },
990 { ES1688_CD_DEV, 0 },
991 { ES1688_FM_DEV, 0 },
992 { ES1688_MIC_DEV, 0 },
993 { ES1688_AUX_DEV, 0 },
994 { ES1688_SPEAKER_DEV, 0 },
995 { ES1688_RECLEV_DEV, 0 },
996 { ES1688_REC_DEV, 0x17 }
997};
998
Krzysztof Helt396fa822010-05-09 20:35:44 +0200999int snd_es1688_mixer(struct snd_card *card, struct snd_es1688 *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 unsigned int idx;
1002 int err;
1003 unsigned char reg, val;
1004
Krzysztof Helt396fa822010-05-09 20:35:44 +02001005 if (snd_BUG_ON(!chip || !card))
Takashi Iwai622207d2008-08-08 17:11:45 +02001006 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 strcpy(card->mixername, snd_es1688_chip_id(chip));
1009
1010 for (idx = 0; idx < ARRAY_SIZE(snd_es1688_controls); idx++) {
1011 if ((err = snd_ctl_add(card, snd_ctl_new1(&snd_es1688_controls[idx], chip))) < 0)
1012 return err;
1013 }
1014 for (idx = 0; idx < ES1688_INIT_TABLE_SIZE; idx++) {
1015 reg = snd_es1688_init_table[idx][0];
1016 val = snd_es1688_init_table[idx][1];
1017 if (reg < 0xa0)
1018 snd_es1688_mixer_write(chip, reg, val);
1019 else
1020 snd_es1688_write(chip, reg, val);
1021 }
1022 return 0;
1023}
1024
1025EXPORT_SYMBOL(snd_es1688_mixer_write);
1026EXPORT_SYMBOL(snd_es1688_create);
1027EXPORT_SYMBOL(snd_es1688_pcm);
1028EXPORT_SYMBOL(snd_es1688_mixer);
1029
1030/*
1031 * INIT part
1032 */
1033
1034static int __init alsa_es1688_init(void)
1035{
1036 return 0;
1037}
1038
1039static void __exit alsa_es1688_exit(void)
1040{
1041}
1042
1043module_init(alsa_es1688_init)
1044module_exit(alsa_es1688_exit)