2 * Copyright (c) by Jaroslav Kysela <perex@suse.cz>
3 * Routines for control of ESS ES1688/688/488 chip
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.
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.
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
22 #include <sound/driver.h>
23 #include <linux/init.h>
24 #include <linux/interrupt.h>
25 #include <linux/delay.h>
26 #include <linux/slab.h>
27 #include <linux/ioport.h>
28 #include <sound/core.h>
29 #include <sound/es1688.h>
30 #include <sound/initval.h>
35 MODULE_AUTHOR("Jaroslav Kysela <perex@suse.cz>");
36 MODULE_DESCRIPTION("ESS ESx688 lowlevel module");
37 MODULE_LICENSE("GPL");
39 static int snd_es1688_dsp_command(es1688_t *chip, unsigned char val)
43 for (i = 10000; i; i--)
44 if ((inb(ES1688P(chip, STATUS)) & 0x80) == 0) {
45 outb(val, ES1688P(chip, COMMAND));
48 #ifdef CONFIG_SND_DEBUG
49 printk("snd_es1688_dsp_command: timeout (0x%x)\n", val);
54 static int snd_es1688_dsp_get_byte(es1688_t *chip)
58 for (i = 1000; i; i--)
59 if (inb(ES1688P(chip, DATA_AVAIL)) & 0x80)
60 return inb(ES1688P(chip, READ));
61 snd_printd("es1688 get byte failed: 0x%lx = 0x%x!!!\n", ES1688P(chip, DATA_AVAIL), inb(ES1688P(chip, DATA_AVAIL)));
65 static int snd_es1688_write(es1688_t *chip,
66 unsigned char reg, unsigned char data)
68 if (!snd_es1688_dsp_command(chip, reg))
70 return snd_es1688_dsp_command(chip, data);
73 static int snd_es1688_read(es1688_t *chip, unsigned char reg)
75 /* Read a byte from an extended mode register of ES1688 */
76 if (!snd_es1688_dsp_command(chip, 0xc0))
78 if (!snd_es1688_dsp_command(chip, reg))
80 return snd_es1688_dsp_get_byte(chip);
83 void snd_es1688_mixer_write(es1688_t *chip,
84 unsigned char reg, unsigned char data)
86 outb(reg, ES1688P(chip, MIXER_ADDR));
88 outb(data, ES1688P(chip, MIXER_DATA));
92 static unsigned char snd_es1688_mixer_read(es1688_t *chip, unsigned char reg)
96 outb(reg, ES1688P(chip, MIXER_ADDR));
98 result = inb(ES1688P(chip, MIXER_DATA));
103 static int snd_es1688_reset(es1688_t *chip)
107 outb(3, ES1688P(chip, RESET)); /* valid only for ESS chips, SB -> 1 */
109 outb(0, ES1688P(chip, RESET));
111 for (i = 0; i < 1000 && !(inb(ES1688P(chip, DATA_AVAIL)) & 0x80); i++);
112 if (inb(ES1688P(chip, READ)) != 0xaa) {
113 snd_printd("ess_reset at 0x%lx: failed!!!\n", chip->port);
116 snd_es1688_dsp_command(chip, 0xc6); /* enable extended mode */
120 static int snd_es1688_probe(es1688_t *chip)
123 unsigned short major, minor, hw;
127 * initialization sequence
130 spin_lock_irqsave(&chip->reg_lock, flags); /* Some ESS1688 cards need this */
131 inb(ES1688P(chip, ENABLE1)); /* ENABLE1 */
132 inb(ES1688P(chip, ENABLE1)); /* ENABLE1 */
133 inb(ES1688P(chip, ENABLE1)); /* ENABLE1 */
134 inb(ES1688P(chip, ENABLE2)); /* ENABLE2 */
135 inb(ES1688P(chip, ENABLE1)); /* ENABLE1 */
136 inb(ES1688P(chip, ENABLE2)); /* ENABLE2 */
137 inb(ES1688P(chip, ENABLE1)); /* ENABLE1 */
138 inb(ES1688P(chip, ENABLE1)); /* ENABLE1 */
139 inb(ES1688P(chip, ENABLE2)); /* ENABLE2 */
140 inb(ES1688P(chip, ENABLE1)); /* ENABLE1 */
141 inb(ES1688P(chip, ENABLE0)); /* ENABLE0 */
143 if (snd_es1688_reset(chip) < 0) {
144 snd_printdd("ESS: [0x%lx] reset failed... 0x%x\n", chip->port, inb(ES1688P(chip, READ)));
145 spin_unlock_irqrestore(&chip->reg_lock, flags);
148 snd_es1688_dsp_command(chip, 0xe7); /* return identification */
150 for (i = 1000, major = minor = 0; i; i--) {
151 if (inb(ES1688P(chip, DATA_AVAIL)) & 0x80) {
153 major = inb(ES1688P(chip, READ));
155 minor = inb(ES1688P(chip, READ));
160 spin_unlock_irqrestore(&chip->reg_lock, flags);
162 snd_printdd("ESS: [0x%lx] found.. major = 0x%x, minor = 0x%x\n", chip->port, major, minor);
164 chip->version = (major << 8) | minor;
166 return -ENODEV; /* probably SB */
169 switch (chip->version & 0xfff0) {
171 snd_printk("[0x%lx] ESS: AudioDrive ES488 detected, but driver is in another place\n", chip->port);
174 hw = (chip->version & 0x0f) >= 8 ? ES1688_HW_1688 : ES1688_HW_688;
177 snd_printk("[0x%lx] ESS: unknown AudioDrive chip with version 0x%x (Jazz16 soundcard?)\n", chip->port, chip->version);
181 spin_lock_irqsave(&chip->reg_lock, flags);
182 snd_es1688_write(chip, 0xb1, 0x10); /* disable IRQ */
183 snd_es1688_write(chip, 0xb2, 0x00); /* disable DMA */
184 spin_unlock_irqrestore(&chip->reg_lock, flags);
186 /* enable joystick, but disable OPL3 */
187 spin_lock_irqsave(&chip->mixer_lock, flags);
188 snd_es1688_mixer_write(chip, 0x40, 0x01);
189 spin_unlock_irqrestore(&chip->mixer_lock, flags);
194 static int snd_es1688_init(es1688_t * chip, int enable)
196 static int irqs[16] = {-1, -1, 0, -1, -1, 1, -1, 2, -1, 0, 3, -1, -1, -1, -1, -1};
198 int cfg, irq_bits, dma, dma_bits, tmp, tmp1;
200 /* ok.. setup MPU-401 port and joystick and OPL3 */
201 cfg = 0x01; /* enable joystick, but disable OPL3 */
202 if (enable && chip->mpu_port >= 0x300 && chip->mpu_irq > 0 && chip->hardware != ES1688_HW_688) {
203 tmp = (chip->mpu_port & 0x0f0) >> 4;
205 switch (chip->mpu_irq) {
222 cfg |= (tmp << 3) | (tmp1 << 5);
227 snd_printk("mpu cfg = 0x%x\n", cfg);
229 spin_lock_irqsave(&chip->reg_lock, flags);
230 snd_es1688_mixer_write(chip, 0x40, cfg);
231 spin_unlock_irqrestore(&chip->reg_lock, flags);
233 spin_lock_irqsave(&chip->reg_lock, flags);
234 snd_es1688_read(chip, 0xb1);
235 snd_es1688_read(chip, 0xb2);
236 spin_unlock_irqrestore(&chip->reg_lock, flags);
238 cfg = 0xf0; /* enable only DMA counter interrupt */
239 irq_bits = irqs[chip->irq & 0x0f];
241 snd_printk("[0x%lx] ESS: bad IRQ %d for ES1688 chip!!\n", chip->port, chip->irq);
248 spin_lock_irqsave(&chip->reg_lock, flags);
249 snd_es1688_write(chip, 0xb1, cfg | (irq_bits << 2));
250 spin_unlock_irqrestore(&chip->reg_lock, flags);
251 cfg = 0xf0; /* extended mode DMA enable */
253 if (dma > 3 || dma == 2) {
254 snd_printk("[0x%lx] ESS: bad DMA channel %d for ES1688 chip!!\n", chip->port, dma);
257 cfg = 0x00; /* disable all DMA */
265 spin_lock_irqsave(&chip->reg_lock, flags);
266 snd_es1688_write(chip, 0xb2, cfg | (dma_bits << 2));
267 spin_unlock_irqrestore(&chip->reg_lock, flags);
269 spin_lock_irqsave(&chip->reg_lock, flags);
270 snd_es1688_write(chip, 0xb1, 0x10); /* disable IRQ */
271 snd_es1688_write(chip, 0xb2, 0x00); /* disable DMA */
272 spin_unlock_irqrestore(&chip->reg_lock, flags);
274 spin_lock_irqsave(&chip->reg_lock, flags);
275 snd_es1688_read(chip, 0xb1);
276 snd_es1688_read(chip, 0xb2);
277 snd_es1688_reset(chip);
278 spin_unlock_irqrestore(&chip->reg_lock, flags);
286 static ratnum_t clocks[2] = {
301 static snd_pcm_hw_constraint_ratnums_t hw_constraints_clocks = {
306 static void snd_es1688_set_rate(es1688_t *chip, snd_pcm_substream_t *substream)
308 snd_pcm_runtime_t *runtime = substream->runtime;
309 unsigned int bits, divider;
311 if (runtime->rate_num == clocks[0].num)
312 bits = 256 - runtime->rate_den;
314 bits = 128 - runtime->rate_den;
315 /* set filter register */
316 divider = 256 - 7160000*20/(8*82*runtime->rate);
317 /* write result to hardware */
318 snd_es1688_write(chip, 0xa1, bits);
319 snd_es1688_write(chip, 0xa2, divider);
322 static int snd_es1688_ioctl(snd_pcm_substream_t * substream,
323 unsigned int cmd, void *arg)
325 return snd_pcm_lib_ioctl(substream, cmd, arg);
328 static int snd_es1688_trigger(es1688_t *chip, int cmd, unsigned char value)
332 if (cmd == SNDRV_PCM_TRIGGER_STOP) {
334 } else if (cmd != SNDRV_PCM_TRIGGER_START) {
337 spin_lock(&chip->reg_lock);
338 chip->trigger_value = value;
339 val = snd_es1688_read(chip, 0xb8);
340 if ((val < 0) || (val & 0x0f) == value) {
341 spin_unlock(&chip->reg_lock);
342 return -EINVAL; /* something is wrong */
345 printk("trigger: val = 0x%x, value = 0x%x\n", val, value);
346 printk("trigger: pointer = 0x%x\n", snd_dma_pointer(chip->dma8, chip->dma_size));
348 snd_es1688_write(chip, 0xb8, (val & 0xf0) | value);
349 spin_unlock(&chip->reg_lock);
353 static int snd_es1688_hw_params(snd_pcm_substream_t * substream,
354 snd_pcm_hw_params_t * hw_params)
356 return snd_pcm_lib_malloc_pages(substream, params_buffer_bytes(hw_params));
359 static int snd_es1688_hw_free(snd_pcm_substream_t * substream)
361 return snd_pcm_lib_free_pages(substream);
364 static int snd_es1688_playback_prepare(snd_pcm_substream_t * substream)
367 es1688_t *chip = snd_pcm_substream_chip(substream);
368 snd_pcm_runtime_t *runtime = substream->runtime;
369 unsigned int size = snd_pcm_lib_buffer_bytes(substream);
370 unsigned int count = snd_pcm_lib_period_bytes(substream);
372 chip->dma_size = size;
373 spin_lock_irqsave(&chip->reg_lock, flags);
374 snd_es1688_reset(chip);
375 snd_es1688_set_rate(chip, substream);
376 snd_es1688_write(chip, 0xb8, 4); /* auto init DMA mode */
377 snd_es1688_write(chip, 0xa8, (snd_es1688_read(chip, 0xa8) & ~0x03) | (3 - runtime->channels));
378 snd_es1688_write(chip, 0xb9, 2); /* demand mode (4 bytes/request) */
379 if (runtime->channels == 1) {
380 if (snd_pcm_format_width(runtime->format) == 8) {
382 snd_es1688_write(chip, 0xb6, 0x80);
383 snd_es1688_write(chip, 0xb7, 0x51);
384 snd_es1688_write(chip, 0xb7, 0xd0);
387 snd_es1688_write(chip, 0xb6, 0x00);
388 snd_es1688_write(chip, 0xb7, 0x71);
389 snd_es1688_write(chip, 0xb7, 0xf4);
392 if (snd_pcm_format_width(runtime->format) == 8) {
394 snd_es1688_write(chip, 0xb6, 0x80);
395 snd_es1688_write(chip, 0xb7, 0x51);
396 snd_es1688_write(chip, 0xb7, 0x98);
399 snd_es1688_write(chip, 0xb6, 0x00);
400 snd_es1688_write(chip, 0xb7, 0x71);
401 snd_es1688_write(chip, 0xb7, 0xbc);
404 snd_es1688_write(chip, 0xb1, (snd_es1688_read(chip, 0xb1) & 0x0f) | 0x50);
405 snd_es1688_write(chip, 0xb2, (snd_es1688_read(chip, 0xb2) & 0x0f) | 0x50);
406 snd_es1688_dsp_command(chip, ES1688_DSP_CMD_SPKON);
407 spin_unlock_irqrestore(&chip->reg_lock, flags);
410 snd_dma_program(chip->dma8, runtime->dma_addr, size, DMA_MODE_WRITE | DMA_AUTOINIT);
411 spin_lock_irqsave(&chip->reg_lock, flags);
412 snd_es1688_write(chip, 0xa4, (unsigned char) count);
413 snd_es1688_write(chip, 0xa5, (unsigned char) (count >> 8));
414 spin_unlock_irqrestore(&chip->reg_lock, flags);
418 static int snd_es1688_playback_trigger(snd_pcm_substream_t * substream,
421 es1688_t *chip = snd_pcm_substream_chip(substream);
422 return snd_es1688_trigger(chip, cmd, 0x05);
425 static int snd_es1688_capture_prepare(snd_pcm_substream_t * substream)
428 es1688_t *chip = snd_pcm_substream_chip(substream);
429 snd_pcm_runtime_t *runtime = substream->runtime;
430 unsigned int size = snd_pcm_lib_buffer_bytes(substream);
431 unsigned int count = snd_pcm_lib_period_bytes(substream);
433 chip->dma_size = size;
434 spin_lock_irqsave(&chip->reg_lock, flags);
435 snd_es1688_reset(chip);
436 snd_es1688_set_rate(chip, substream);
437 snd_es1688_dsp_command(chip, ES1688_DSP_CMD_SPKOFF);
438 snd_es1688_write(chip, 0xb8, 0x0e); /* auto init DMA mode */
439 snd_es1688_write(chip, 0xa8, (snd_es1688_read(chip, 0xa8) & ~0x03) | (3 - runtime->channels));
440 snd_es1688_write(chip, 0xb9, 2); /* demand mode (4 bytes/request) */
441 if (runtime->channels == 1) {
442 if (snd_pcm_format_width(runtime->format) == 8) {
444 snd_es1688_write(chip, 0xb7, 0x51);
445 snd_es1688_write(chip, 0xb7, 0xd0);
448 snd_es1688_write(chip, 0xb7, 0x71);
449 snd_es1688_write(chip, 0xb7, 0xf4);
452 if (snd_pcm_format_width(runtime->format) == 8) {
454 snd_es1688_write(chip, 0xb7, 0x51);
455 snd_es1688_write(chip, 0xb7, 0x98);
458 snd_es1688_write(chip, 0xb7, 0x71);
459 snd_es1688_write(chip, 0xb7, 0xbc);
462 snd_es1688_write(chip, 0xb1, (snd_es1688_read(chip, 0xb1) & 0x0f) | 0x50);
463 snd_es1688_write(chip, 0xb2, (snd_es1688_read(chip, 0xb2) & 0x0f) | 0x50);
464 spin_unlock_irqrestore(&chip->reg_lock, flags);
467 snd_dma_program(chip->dma8, runtime->dma_addr, size, DMA_MODE_READ | DMA_AUTOINIT);
468 spin_lock_irqsave(&chip->reg_lock, flags);
469 snd_es1688_write(chip, 0xa4, (unsigned char) count);
470 snd_es1688_write(chip, 0xa5, (unsigned char) (count >> 8));
471 spin_unlock_irqrestore(&chip->reg_lock, flags);
475 static int snd_es1688_capture_trigger(snd_pcm_substream_t * substream,
478 es1688_t *chip = snd_pcm_substream_chip(substream);
479 return snd_es1688_trigger(chip, cmd, 0x0f);
482 static irqreturn_t snd_es1688_interrupt(int irq, void *dev_id, struct pt_regs *regs)
484 es1688_t *chip = dev_id;
486 if (chip->trigger_value == 0x05) /* ok.. playback is active */
487 snd_pcm_period_elapsed(chip->playback_substream);
488 if (chip->trigger_value == 0x0f) /* ok.. capture is active */
489 snd_pcm_period_elapsed(chip->capture_substream);
491 inb(ES1688P(chip, DATA_AVAIL)); /* ack interrupt */
495 static snd_pcm_uframes_t snd_es1688_playback_pointer(snd_pcm_substream_t * substream)
497 es1688_t *chip = snd_pcm_substream_chip(substream);
500 if (chip->trigger_value != 0x05)
502 ptr = snd_dma_pointer(chip->dma8, chip->dma_size);
503 return bytes_to_frames(substream->runtime, ptr);
506 static snd_pcm_uframes_t snd_es1688_capture_pointer(snd_pcm_substream_t * substream)
508 es1688_t *chip = snd_pcm_substream_chip(substream);
511 if (chip->trigger_value != 0x0f)
513 ptr = snd_dma_pointer(chip->dma8, chip->dma_size);
514 return bytes_to_frames(substream->runtime, ptr);
521 static snd_pcm_hardware_t snd_es1688_playback =
523 .info = (SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_INTERLEAVED |
524 SNDRV_PCM_INFO_MMAP_VALID),
525 .formats = SNDRV_PCM_FMTBIT_U8 | SNDRV_PCM_FMTBIT_S16_LE,
526 .rates = SNDRV_PCM_RATE_CONTINUOUS | SNDRV_PCM_RATE_8000_48000,
531 .buffer_bytes_max = 65536,
532 .period_bytes_min = 64,
533 .period_bytes_max = 65536,
539 static snd_pcm_hardware_t snd_es1688_capture =
541 .info = (SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_INTERLEAVED |
542 SNDRV_PCM_INFO_MMAP_VALID),
543 .formats = SNDRV_PCM_FMTBIT_U8 | SNDRV_PCM_FMTBIT_S16_LE,
544 .rates = SNDRV_PCM_RATE_CONTINUOUS | SNDRV_PCM_RATE_8000_48000,
549 .buffer_bytes_max = 65536,
550 .period_bytes_min = 64,
551 .period_bytes_max = 65536,
561 static int snd_es1688_playback_open(snd_pcm_substream_t * substream)
563 es1688_t *chip = snd_pcm_substream_chip(substream);
564 snd_pcm_runtime_t *runtime = substream->runtime;
566 if (chip->capture_substream != NULL)
568 chip->playback_substream = substream;
569 runtime->hw = snd_es1688_playback;
570 snd_pcm_hw_constraint_ratnums(runtime, 0, SNDRV_PCM_HW_PARAM_RATE,
571 &hw_constraints_clocks);
575 static int snd_es1688_capture_open(snd_pcm_substream_t * substream)
577 es1688_t *chip = snd_pcm_substream_chip(substream);
578 snd_pcm_runtime_t *runtime = substream->runtime;
580 if (chip->playback_substream != NULL)
582 chip->capture_substream = substream;
583 runtime->hw = snd_es1688_capture;
584 snd_pcm_hw_constraint_ratnums(runtime, 0, SNDRV_PCM_HW_PARAM_RATE,
585 &hw_constraints_clocks);
589 static int snd_es1688_playback_close(snd_pcm_substream_t * substream)
591 es1688_t *chip = snd_pcm_substream_chip(substream);
593 chip->playback_substream = NULL;
597 static int snd_es1688_capture_close(snd_pcm_substream_t * substream)
599 es1688_t *chip = snd_pcm_substream_chip(substream);
601 chip->capture_substream = NULL;
605 static int snd_es1688_free(es1688_t *chip)
607 if (chip->res_port) {
608 snd_es1688_init(chip, 0);
609 release_resource(chip->res_port);
610 kfree_nocheck(chip->res_port);
613 free_irq(chip->irq, (void *) chip);
614 if (chip->dma8 >= 0) {
615 disable_dma(chip->dma8);
616 free_dma(chip->dma8);
622 static int snd_es1688_dev_free(snd_device_t *device)
624 es1688_t *chip = device->device_data;
625 return snd_es1688_free(chip);
628 static const char *snd_es1688_chip_id(es1688_t *chip)
631 sprintf(tmp, "ES%s688 rev %i", chip->hardware == ES1688_HW_688 ? "" : "1", chip->version & 0x0f);
635 int snd_es1688_create(snd_card_t * card,
637 unsigned long mpu_port,
641 unsigned short hardware,
644 static snd_device_ops_t ops = {
645 .dev_free = snd_es1688_dev_free,
652 chip = kzalloc(sizeof(*chip), GFP_KERNEL);
658 if ((chip->res_port = request_region(port + 4, 12, "ES1688")) == NULL) {
659 snd_printk(KERN_ERR "es1688: can't grab port 0x%lx\n", port + 4);
660 snd_es1688_free(chip);
663 if (request_irq(irq, snd_es1688_interrupt, SA_INTERRUPT, "ES1688", (void *) chip)) {
664 snd_printk(KERN_ERR "es1688: can't grab IRQ %d\n", irq);
665 snd_es1688_free(chip);
669 if (request_dma(dma8, "ES1688")) {
670 snd_printk(KERN_ERR "es1688: can't grab DMA8 %d\n", dma8);
671 snd_es1688_free(chip);
676 spin_lock_init(&chip->reg_lock);
677 spin_lock_init(&chip->mixer_lock);
681 if (mpu_port < 0x300 || mpu_port > 0x330)
683 chip->mpu_port = mpu_port;
684 chip->mpu_irq = mpu_irq;
685 chip->hardware = hardware;
687 if ((err = snd_es1688_probe(chip)) < 0) {
688 snd_es1688_free(chip);
691 if ((err = snd_es1688_init(chip, 1)) < 0) {
692 snd_es1688_free(chip);
696 /* Register device */
697 if ((err = snd_device_new(card, SNDRV_DEV_LOWLEVEL, chip, &ops)) < 0) {
698 snd_es1688_free(chip);
706 static snd_pcm_ops_t snd_es1688_playback_ops = {
707 .open = snd_es1688_playback_open,
708 .close = snd_es1688_playback_close,
709 .ioctl = snd_es1688_ioctl,
710 .hw_params = snd_es1688_hw_params,
711 .hw_free = snd_es1688_hw_free,
712 .prepare = snd_es1688_playback_prepare,
713 .trigger = snd_es1688_playback_trigger,
714 .pointer = snd_es1688_playback_pointer,
717 static snd_pcm_ops_t snd_es1688_capture_ops = {
718 .open = snd_es1688_capture_open,
719 .close = snd_es1688_capture_close,
720 .ioctl = snd_es1688_ioctl,
721 .hw_params = snd_es1688_hw_params,
722 .hw_free = snd_es1688_hw_free,
723 .prepare = snd_es1688_capture_prepare,
724 .trigger = snd_es1688_capture_trigger,
725 .pointer = snd_es1688_capture_pointer,
728 static void snd_es1688_pcm_free(snd_pcm_t *pcm)
730 es1688_t *chip = pcm->private_data;
732 snd_pcm_lib_preallocate_free_for_all(pcm);
735 int snd_es1688_pcm(es1688_t * chip, int device, snd_pcm_t ** rpcm)
740 if ((err = snd_pcm_new(chip->card, "ESx688", device, 1, 1, &pcm)) < 0)
743 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &snd_es1688_playback_ops);
744 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &snd_es1688_capture_ops);
746 pcm->private_data = chip;
747 pcm->private_free = snd_es1688_pcm_free;
748 pcm->info_flags = SNDRV_PCM_INFO_HALF_DUPLEX;
749 sprintf(pcm->name, snd_es1688_chip_id(chip));
752 snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV,
765 static int snd_es1688_info_mux(snd_kcontrol_t *kcontrol, snd_ctl_elem_info_t * uinfo)
767 static char *texts[9] = {
768 "Mic", "Mic Master", "CD", "AOUT",
769 "Mic1", "Mix", "Line", "Master"
772 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
774 uinfo->value.enumerated.items = 8;
775 if (uinfo->value.enumerated.item > 7)
776 uinfo->value.enumerated.item = 7;
777 strcpy(uinfo->value.enumerated.name, texts[uinfo->value.enumerated.item]);
781 static int snd_es1688_get_mux(snd_kcontrol_t * kcontrol, snd_ctl_elem_value_t * ucontrol)
783 es1688_t *chip = snd_kcontrol_chip(kcontrol);
784 ucontrol->value.enumerated.item[0] = snd_es1688_mixer_read(chip, ES1688_REC_DEV) & 7;
788 static int snd_es1688_put_mux(snd_kcontrol_t * kcontrol, snd_ctl_elem_value_t * ucontrol)
790 es1688_t *chip = snd_kcontrol_chip(kcontrol);
792 unsigned char oval, nval;
795 if (ucontrol->value.enumerated.item[0] > 8)
797 spin_lock_irqsave(&chip->reg_lock, flags);
798 oval = snd_es1688_mixer_read(chip, ES1688_REC_DEV);
799 nval = (ucontrol->value.enumerated.item[0] & 7) | (oval & ~15);
800 change = nval != oval;
802 snd_es1688_mixer_write(chip, ES1688_REC_DEV, nval);
803 spin_unlock_irqrestore(&chip->reg_lock, flags);
807 #define ES1688_SINGLE(xname, xindex, reg, shift, mask, invert) \
808 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = xindex, \
809 .info = snd_es1688_info_single, \
810 .get = snd_es1688_get_single, .put = snd_es1688_put_single, \
811 .private_value = reg | (shift << 8) | (mask << 16) | (invert << 24) }
813 static int snd_es1688_info_single(snd_kcontrol_t *kcontrol, snd_ctl_elem_info_t * uinfo)
815 int mask = (kcontrol->private_value >> 16) & 0xff;
817 uinfo->type = mask == 1 ? SNDRV_CTL_ELEM_TYPE_BOOLEAN : SNDRV_CTL_ELEM_TYPE_INTEGER;
819 uinfo->value.integer.min = 0;
820 uinfo->value.integer.max = mask;
824 static int snd_es1688_get_single(snd_kcontrol_t * kcontrol, snd_ctl_elem_value_t * ucontrol)
826 es1688_t *chip = snd_kcontrol_chip(kcontrol);
828 int reg = kcontrol->private_value & 0xff;
829 int shift = (kcontrol->private_value >> 8) & 0xff;
830 int mask = (kcontrol->private_value >> 16) & 0xff;
831 int invert = (kcontrol->private_value >> 24) & 0xff;
833 spin_lock_irqsave(&chip->reg_lock, flags);
834 ucontrol->value.integer.value[0] = (snd_es1688_mixer_read(chip, reg) >> shift) & mask;
835 spin_unlock_irqrestore(&chip->reg_lock, flags);
837 ucontrol->value.integer.value[0] = mask - ucontrol->value.integer.value[0];
841 static int snd_es1688_put_single(snd_kcontrol_t * kcontrol, snd_ctl_elem_value_t * ucontrol)
843 es1688_t *chip = snd_kcontrol_chip(kcontrol);
845 int reg = kcontrol->private_value & 0xff;
846 int shift = (kcontrol->private_value >> 8) & 0xff;
847 int mask = (kcontrol->private_value >> 16) & 0xff;
848 int invert = (kcontrol->private_value >> 24) & 0xff;
850 unsigned char oval, nval;
852 nval = (ucontrol->value.integer.value[0] & mask);
856 spin_lock_irqsave(&chip->reg_lock, flags);
857 oval = snd_es1688_mixer_read(chip, reg);
858 nval = (oval & ~(mask << shift)) | nval;
859 change = nval != oval;
861 snd_es1688_mixer_write(chip, reg, nval);
862 spin_unlock_irqrestore(&chip->reg_lock, flags);
866 #define ES1688_DOUBLE(xname, xindex, left_reg, right_reg, shift_left, shift_right, mask, invert) \
867 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = xindex, \
868 .info = snd_es1688_info_double, \
869 .get = snd_es1688_get_double, .put = snd_es1688_put_double, \
870 .private_value = left_reg | (right_reg << 8) | (shift_left << 16) | (shift_right << 19) | (mask << 24) | (invert << 22) }
872 static int snd_es1688_info_double(snd_kcontrol_t *kcontrol, snd_ctl_elem_info_t * uinfo)
874 int mask = (kcontrol->private_value >> 24) & 0xff;
876 uinfo->type = mask == 1 ? SNDRV_CTL_ELEM_TYPE_BOOLEAN : SNDRV_CTL_ELEM_TYPE_INTEGER;
878 uinfo->value.integer.min = 0;
879 uinfo->value.integer.max = mask;
883 static int snd_es1688_get_double(snd_kcontrol_t * kcontrol, snd_ctl_elem_value_t * ucontrol)
885 es1688_t *chip = snd_kcontrol_chip(kcontrol);
887 int left_reg = kcontrol->private_value & 0xff;
888 int right_reg = (kcontrol->private_value >> 8) & 0xff;
889 int shift_left = (kcontrol->private_value >> 16) & 0x07;
890 int shift_right = (kcontrol->private_value >> 19) & 0x07;
891 int mask = (kcontrol->private_value >> 24) & 0xff;
892 int invert = (kcontrol->private_value >> 22) & 1;
893 unsigned char left, right;
895 spin_lock_irqsave(&chip->reg_lock, flags);
897 left = snd_es1688_mixer_read(chip, left_reg);
899 left = snd_es1688_read(chip, left_reg);
900 if (left_reg != right_reg) {
901 if (right_reg < 0xa0)
902 right = snd_es1688_mixer_read(chip, right_reg);
904 right = snd_es1688_read(chip, right_reg);
907 spin_unlock_irqrestore(&chip->reg_lock, flags);
908 ucontrol->value.integer.value[0] = (left >> shift_left) & mask;
909 ucontrol->value.integer.value[1] = (right >> shift_right) & mask;
911 ucontrol->value.integer.value[0] = mask - ucontrol->value.integer.value[0];
912 ucontrol->value.integer.value[1] = mask - ucontrol->value.integer.value[1];
917 static int snd_es1688_put_double(snd_kcontrol_t * kcontrol, snd_ctl_elem_value_t * ucontrol)
919 es1688_t *chip = snd_kcontrol_chip(kcontrol);
921 int left_reg = kcontrol->private_value & 0xff;
922 int right_reg = (kcontrol->private_value >> 8) & 0xff;
923 int shift_left = (kcontrol->private_value >> 16) & 0x07;
924 int shift_right = (kcontrol->private_value >> 19) & 0x07;
925 int mask = (kcontrol->private_value >> 24) & 0xff;
926 int invert = (kcontrol->private_value >> 22) & 1;
928 unsigned char val1, val2, oval1, oval2;
930 val1 = ucontrol->value.integer.value[0] & mask;
931 val2 = ucontrol->value.integer.value[1] & mask;
937 val2 <<= shift_right;
938 spin_lock_irqsave(&chip->reg_lock, flags);
939 if (left_reg != right_reg) {
941 oval1 = snd_es1688_mixer_read(chip, left_reg);
943 oval1 = snd_es1688_read(chip, left_reg);
944 if (right_reg < 0xa0)
945 oval2 = snd_es1688_mixer_read(chip, right_reg);
947 oval2 = snd_es1688_read(chip, right_reg);
948 val1 = (oval1 & ~(mask << shift_left)) | val1;
949 val2 = (oval2 & ~(mask << shift_right)) | val2;
950 change = val1 != oval1 || val2 != oval2;
953 snd_es1688_mixer_write(chip, left_reg, val1);
955 snd_es1688_write(chip, left_reg, val1);
956 if (right_reg < 0xa0)
957 snd_es1688_mixer_write(chip, right_reg, val1);
959 snd_es1688_write(chip, right_reg, val1);
963 oval1 = snd_es1688_mixer_read(chip, left_reg);
965 oval1 = snd_es1688_read(chip, left_reg);
966 val1 = (oval1 & ~((mask << shift_left) | (mask << shift_right))) | val1 | val2;
967 change = val1 != oval1;
970 snd_es1688_mixer_write(chip, left_reg, val1);
972 snd_es1688_write(chip, left_reg, val1);
976 spin_unlock_irqrestore(&chip->reg_lock, flags);
980 static snd_kcontrol_new_t snd_es1688_controls[] = {
981 ES1688_DOUBLE("Master Playback Volume", 0, ES1688_MASTER_DEV, ES1688_MASTER_DEV, 4, 0, 15, 0),
982 ES1688_DOUBLE("PCM Playback Volume", 0, ES1688_PCM_DEV, ES1688_PCM_DEV, 4, 0, 15, 0),
983 ES1688_DOUBLE("Line Playback Volume", 0, ES1688_LINE_DEV, ES1688_LINE_DEV, 4, 0, 15, 0),
984 ES1688_DOUBLE("CD Playback Volume", 0, ES1688_CD_DEV, ES1688_CD_DEV, 4, 0, 15, 0),
985 ES1688_DOUBLE("FM Playback Volume", 0, ES1688_FM_DEV, ES1688_FM_DEV, 4, 0, 15, 0),
986 ES1688_DOUBLE("Mic Playback Volume", 0, ES1688_MIC_DEV, ES1688_MIC_DEV, 4, 0, 15, 0),
987 ES1688_DOUBLE("Aux Playback Volume", 0, ES1688_AUX_DEV, ES1688_AUX_DEV, 4, 0, 15, 0),
988 ES1688_SINGLE("PC Speaker Playback Volume", 0, ES1688_SPEAKER_DEV, 0, 7, 0),
989 ES1688_DOUBLE("Capture Volume", 0, ES1688_RECLEV_DEV, ES1688_RECLEV_DEV, 4, 0, 15, 0),
990 ES1688_SINGLE("Capture Switch", 0, ES1688_REC_DEV, 4, 1, 1),
992 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
993 .name = "Capture Source",
994 .info = snd_es1688_info_mux,
995 .get = snd_es1688_get_mux,
996 .put = snd_es1688_put_mux,
1000 #define ES1688_INIT_TABLE_SIZE (sizeof(snd_es1688_init_table)/2)
1002 static unsigned char snd_es1688_init_table[][2] = {
1003 { ES1688_MASTER_DEV, 0 },
1004 { ES1688_PCM_DEV, 0 },
1005 { ES1688_LINE_DEV, 0 },
1006 { ES1688_CD_DEV, 0 },
1007 { ES1688_FM_DEV, 0 },
1008 { ES1688_MIC_DEV, 0 },
1009 { ES1688_AUX_DEV, 0 },
1010 { ES1688_SPEAKER_DEV, 0 },
1011 { ES1688_RECLEV_DEV, 0 },
1012 { ES1688_REC_DEV, 0x17 }
1015 int snd_es1688_mixer(es1688_t *chip)
1020 unsigned char reg, val;
1022 snd_assert(chip != NULL && chip->card != NULL, return -EINVAL);
1026 strcpy(card->mixername, snd_es1688_chip_id(chip));
1028 for (idx = 0; idx < ARRAY_SIZE(snd_es1688_controls); idx++) {
1029 if ((err = snd_ctl_add(card, snd_ctl_new1(&snd_es1688_controls[idx], chip))) < 0)
1032 for (idx = 0; idx < ES1688_INIT_TABLE_SIZE; idx++) {
1033 reg = snd_es1688_init_table[idx][0];
1034 val = snd_es1688_init_table[idx][1];
1036 snd_es1688_mixer_write(chip, reg, val);
1038 snd_es1688_write(chip, reg, val);
1043 EXPORT_SYMBOL(snd_es1688_mixer_write);
1044 EXPORT_SYMBOL(snd_es1688_create);
1045 EXPORT_SYMBOL(snd_es1688_pcm);
1046 EXPORT_SYMBOL(snd_es1688_mixer);
1052 static int __init alsa_es1688_init(void)
1057 static void __exit alsa_es1688_exit(void)
1061 module_init(alsa_es1688_init)
1062 module_exit(alsa_es1688_exit)