2 * Driver for generic ESS AudioDrive ES18xx soundcards
3 * Copyright (c) by Christian Fischbach <fishbach@pool.informatik.rwth-aachen.de>
4 * Copyright (c) by Abramo Bagnara <abramo@alsa-project.org>
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
25 * - There are pops (we can't delay in trigger function, cause midlevel
26 * often need to trigger down and then up very quickly).
28 * - Support for 16 bit DMA seems to be broken. I've no hardware to tune it.
33 * - The chip has one half duplex pcm (with very limited full duplex support).
35 * - Duplex stereophonic sound is impossible.
36 * - Record and playback must share the same frequency rate.
38 * - The driver use dma2 for playback and dma1 for capture.
44 * - there are a first full duplex pcm and a second playback only pcm
45 * (incompatible with first pcm capture)
47 * - there is support for the capture volume and ESS Spatializer 3D effect.
49 * - contrarily to some pages in DS_1869.PDF the rates can be set
52 * - Zoom Video is implemented by sharing the FM DAC, thus the user can
53 * have either FM playback or Video playback but not both simultaneously.
54 * The Video Playback Switch mixer control toggles this choice.
58 * - There is a major trouble I noted:
60 * using both channel for playback stereo 16 bit samples at 44100 Hz
61 * the second pcm (Audio1) DMA slows down irregularly and sound is garbled.
63 * The same happens using Audio1 for captureing.
65 * The Windows driver does not suffer of this (although it use Audio1
66 * only for captureing). I'm unable to discover why.
72 * - When Zoom Video is enabled (reg 0x71 bit 6 toggled on) the PCM playback
73 * seems to be effected (speaker_test plays a lower frequency). Can't find
74 * anything in the datasheet to account for this, so a Video Playback Switch
75 * control has been included to allow ZV to be enabled only when necessary.
76 * Then again on at least one test system the 0x71 bit 6 enable bit is not
77 * needed for ZV, so maybe the datasheet is entirely wrong here.
80 #include <sound/driver.h>
81 #include <linux/init.h>
82 #include <linux/err.h>
83 #include <linux/platform_device.h>
84 #include <linux/slab.h>
85 #include <linux/pnp.h>
86 #include <linux/isapnp.h>
87 #include <linux/moduleparam.h>
88 #include <linux/delay.h>
92 #include <sound/core.h>
93 #include <sound/control.h>
94 #include <sound/pcm.h>
95 #include <sound/pcm_params.h>
96 #include <sound/mpu401.h>
97 #include <sound/opl3.h>
98 #define SNDRV_LEGACY_FIND_FREE_IRQ
99 #define SNDRV_LEGACY_FIND_FREE_DMA
100 #include <sound/initval.h>
102 #define PFX "es18xx: "
105 unsigned long port; /* port of ESS chip */
106 unsigned long mpu_port; /* MPU-401 port of ESS chip */
107 unsigned long fm_port; /* FM port */
108 unsigned long ctrl_port; /* Control port of ESS chip */
109 struct resource *res_port;
110 struct resource *res_mpu_port;
111 struct resource *res_ctrl_port;
112 int irq; /* IRQ number of ESS chip */
115 unsigned short version; /* version of ESS chip */
116 int caps; /* Chip capabilities */
117 unsigned short audio2_vol; /* volume level of audio2 */
119 unsigned short active; /* active channel mask */
120 unsigned int dma1_size;
121 unsigned int dma2_size;
122 unsigned int dma1_shift;
123 unsigned int dma2_shift;
125 struct snd_card *card;
127 struct snd_pcm_substream *playback_a_substream;
128 struct snd_pcm_substream *capture_a_substream;
129 struct snd_pcm_substream *playback_b_substream;
131 struct snd_rawmidi *rmidi;
133 struct snd_kcontrol *hw_volume;
134 struct snd_kcontrol *hw_switch;
135 struct snd_kcontrol *master_volume;
136 struct snd_kcontrol *master_switch;
139 spinlock_t mixer_lock;
140 spinlock_t ctrl_lock;
142 unsigned char pm_reg;
146 struct snd_audiodrive {
147 struct snd_es18xx *chip;
150 struct pnp_dev *devc;
154 #define AUDIO1_IRQ 0x01
155 #define AUDIO2_IRQ 0x02
159 #define ES18XX_PCM2 0x0001 /* Has two useable PCM */
160 #define ES18XX_SPATIALIZER 0x0002 /* Has 3D Spatializer */
161 #define ES18XX_RECMIX 0x0004 /* Has record mixer */
162 #define ES18XX_DUPLEX_MONO 0x0008 /* Has mono duplex only */
163 #define ES18XX_DUPLEX_SAME 0x0010 /* Playback and record must share the same rate */
164 #define ES18XX_NEW_RATE 0x0020 /* More precise rate setting */
165 #define ES18XX_AUXB 0x0040 /* AuxB mixer control */
166 #define ES18XX_HWV 0x0080 /* Has seperate hardware volume mixer controls*/
167 #define ES18XX_MONO 0x0100 /* Mono_in mixer control */
168 #define ES18XX_I2S 0x0200 /* I2S mixer control */
169 #define ES18XX_MUTEREC 0x0400 /* Record source can be muted */
170 #define ES18XX_CONTROL 0x0800 /* Has control ports */
172 /* Power Management */
173 #define ES18XX_PM 0x07
174 #define ES18XX_PM_GPO0 0x01
175 #define ES18XX_PM_GPO1 0x02
176 #define ES18XX_PM_PDR 0x04
177 #define ES18XX_PM_ANA 0x08
178 #define ES18XX_PM_FM 0x020
179 #define ES18XX_PM_SUS 0x080
186 #define MILLISECOND 10000
188 static int snd_es18xx_dsp_command(struct snd_es18xx *chip, unsigned char val)
192 for(i = MILLISECOND; i; i--)
193 if ((inb(chip->port + 0x0C) & 0x80) == 0) {
194 outb(val, chip->port + 0x0C);
197 snd_printk(KERN_ERR "dsp_command: timeout (0x%x)\n", val);
201 static int snd_es18xx_dsp_get_byte(struct snd_es18xx *chip)
205 for(i = MILLISECOND/10; i; i--)
206 if (inb(chip->port + 0x0C) & 0x40)
207 return inb(chip->port + 0x0A);
208 snd_printk(KERN_ERR "dsp_get_byte failed: 0x%lx = 0x%x!!!\n",
209 chip->port + 0x0A, inb(chip->port + 0x0A));
215 static int snd_es18xx_write(struct snd_es18xx *chip,
216 unsigned char reg, unsigned char data)
221 spin_lock_irqsave(&chip->reg_lock, flags);
222 ret = snd_es18xx_dsp_command(chip, reg);
225 ret = snd_es18xx_dsp_command(chip, data);
227 spin_unlock_irqrestore(&chip->reg_lock, flags);
229 snd_printk(KERN_DEBUG "Reg %02x set to %02x\n", reg, data);
234 static int snd_es18xx_read(struct snd_es18xx *chip, unsigned char reg)
238 spin_lock_irqsave(&chip->reg_lock, flags);
239 ret = snd_es18xx_dsp_command(chip, 0xC0);
242 ret = snd_es18xx_dsp_command(chip, reg);
245 data = snd_es18xx_dsp_get_byte(chip);
248 snd_printk(KERN_DEBUG "Reg %02x now is %02x (%d)\n", reg, data, ret);
251 spin_unlock_irqrestore(&chip->reg_lock, flags);
255 /* Return old value */
256 static int snd_es18xx_bits(struct snd_es18xx *chip, unsigned char reg,
257 unsigned char mask, unsigned char val)
260 unsigned char old, new, oval;
262 spin_lock_irqsave(&chip->reg_lock, flags);
263 ret = snd_es18xx_dsp_command(chip, 0xC0);
266 ret = snd_es18xx_dsp_command(chip, reg);
269 ret = snd_es18xx_dsp_get_byte(chip);
276 ret = snd_es18xx_dsp_command(chip, reg);
279 new = (old & ~mask) | (val & mask);
280 ret = snd_es18xx_dsp_command(chip, new);
284 snd_printk(KERN_DEBUG "Reg %02x was %02x, set to %02x (%d)\n",
290 spin_unlock_irqrestore(&chip->reg_lock, flags);
294 static inline void snd_es18xx_mixer_write(struct snd_es18xx *chip,
295 unsigned char reg, unsigned char data)
298 spin_lock_irqsave(&chip->mixer_lock, flags);
299 outb(reg, chip->port + 0x04);
300 outb(data, chip->port + 0x05);
301 spin_unlock_irqrestore(&chip->mixer_lock, flags);
303 snd_printk(KERN_DEBUG "Mixer reg %02x set to %02x\n", reg, data);
307 static inline int snd_es18xx_mixer_read(struct snd_es18xx *chip, unsigned char reg)
311 spin_lock_irqsave(&chip->mixer_lock, flags);
312 outb(reg, chip->port + 0x04);
313 data = inb(chip->port + 0x05);
314 spin_unlock_irqrestore(&chip->mixer_lock, flags);
316 snd_printk(KERN_DEBUG "Mixer reg %02x now is %02x\n", reg, data);
321 /* Return old value */
322 static inline int snd_es18xx_mixer_bits(struct snd_es18xx *chip, unsigned char reg,
323 unsigned char mask, unsigned char val)
325 unsigned char old, new, oval;
327 spin_lock_irqsave(&chip->mixer_lock, flags);
328 outb(reg, chip->port + 0x04);
329 old = inb(chip->port + 0x05);
332 new = (old & ~mask) | (val & mask);
333 outb(new, chip->port + 0x05);
335 snd_printk(KERN_DEBUG "Mixer reg %02x was %02x, set to %02x\n",
339 spin_unlock_irqrestore(&chip->mixer_lock, flags);
343 static inline int snd_es18xx_mixer_writable(struct snd_es18xx *chip, unsigned char reg,
346 int old, expected, new;
348 spin_lock_irqsave(&chip->mixer_lock, flags);
349 outb(reg, chip->port + 0x04);
350 old = inb(chip->port + 0x05);
351 expected = old ^ mask;
352 outb(expected, chip->port + 0x05);
353 new = inb(chip->port + 0x05);
354 spin_unlock_irqrestore(&chip->mixer_lock, flags);
356 snd_printk(KERN_DEBUG "Mixer reg %02x was %02x, set to %02x, now is %02x\n",
357 reg, old, expected, new);
359 return expected == new;
363 static int snd_es18xx_reset(struct snd_es18xx *chip)
366 outb(0x03, chip->port + 0x06);
367 inb(chip->port + 0x06);
368 outb(0x00, chip->port + 0x06);
369 for(i = 0; i < MILLISECOND && !(inb(chip->port + 0x0E) & 0x80); i++);
370 if (inb(chip->port + 0x0A) != 0xAA)
375 static int snd_es18xx_reset_fifo(struct snd_es18xx *chip)
377 outb(0x02, chip->port + 0x06);
378 inb(chip->port + 0x06);
379 outb(0x00, chip->port + 0x06);
383 static struct snd_ratnum new_clocks[2] = {
398 static struct snd_pcm_hw_constraint_ratnums new_hw_constraints_clocks = {
403 static struct snd_ratnum old_clocks[2] = {
418 static struct snd_pcm_hw_constraint_ratnums old_hw_constraints_clocks = {
424 static void snd_es18xx_rate_set(struct snd_es18xx *chip,
425 struct snd_pcm_substream *substream,
428 unsigned int bits, div0;
429 struct snd_pcm_runtime *runtime = substream->runtime;
430 if (chip->caps & ES18XX_NEW_RATE) {
431 if (runtime->rate_num == new_clocks[0].num)
432 bits = 128 - runtime->rate_den;
434 bits = 256 - runtime->rate_den;
436 if (runtime->rate_num == old_clocks[0].num)
437 bits = 256 - runtime->rate_den;
439 bits = 128 - runtime->rate_den;
442 /* set filter register */
443 div0 = 256 - 7160000*20/(8*82*runtime->rate);
445 if ((chip->caps & ES18XX_PCM2) && mode == DAC2) {
446 snd_es18xx_mixer_write(chip, 0x70, bits);
448 * Comment from kernel oss driver:
449 * FKS: fascinating: 0x72 doesn't seem to work.
451 snd_es18xx_write(chip, 0xA2, div0);
452 snd_es18xx_mixer_write(chip, 0x72, div0);
454 snd_es18xx_write(chip, 0xA1, bits);
455 snd_es18xx_write(chip, 0xA2, div0);
459 static int snd_es18xx_playback_hw_params(struct snd_pcm_substream *substream,
460 struct snd_pcm_hw_params *hw_params)
462 struct snd_es18xx *chip = snd_pcm_substream_chip(substream);
466 if (params_channels(hw_params) == 2)
468 if (snd_pcm_format_width(params_format(hw_params)) == 16)
471 if (substream->number == 0 && (chip->caps & ES18XX_PCM2)) {
472 if ((chip->caps & ES18XX_DUPLEX_MONO) &&
473 (chip->capture_a_substream) &&
474 params_channels(hw_params) != 1) {
475 _snd_pcm_hw_param_setempty(hw_params, SNDRV_PCM_HW_PARAM_CHANNELS);
478 chip->dma2_shift = shift;
480 chip->dma1_shift = shift;
482 if ((err = snd_pcm_lib_malloc_pages(substream, params_buffer_bytes(hw_params))) < 0)
487 static int snd_es18xx_pcm_hw_free(struct snd_pcm_substream *substream)
489 return snd_pcm_lib_free_pages(substream);
492 static int snd_es18xx_playback1_prepare(struct snd_es18xx *chip,
493 struct snd_pcm_substream *substream)
495 struct snd_pcm_runtime *runtime = substream->runtime;
496 unsigned int size = snd_pcm_lib_buffer_bytes(substream);
497 unsigned int count = snd_pcm_lib_period_bytes(substream);
499 chip->dma2_size = size;
501 snd_es18xx_rate_set(chip, substream, DAC2);
503 /* Transfer Count Reload */
504 count = 0x10000 - count;
505 snd_es18xx_mixer_write(chip, 0x74, count & 0xff);
506 snd_es18xx_mixer_write(chip, 0x76, count >> 8);
509 snd_es18xx_mixer_bits(chip, 0x7A, 0x07,
510 ((runtime->channels == 1) ? 0x00 : 0x02) |
511 (snd_pcm_format_width(runtime->format) == 16 ? 0x01 : 0x00) |
512 (snd_pcm_format_unsigned(runtime->format) ? 0x00 : 0x04));
514 /* Set DMA controller */
515 snd_dma_program(chip->dma2, runtime->dma_addr, size, DMA_MODE_WRITE | DMA_AUTOINIT);
520 static int snd_es18xx_playback1_trigger(struct snd_es18xx *chip,
521 struct snd_pcm_substream *substream,
525 case SNDRV_PCM_TRIGGER_START:
526 case SNDRV_PCM_TRIGGER_RESUME:
527 if (chip->active & DAC2)
529 chip->active |= DAC2;
532 snd_es18xx_mixer_write(chip, 0x78, 0xb3);
534 snd_es18xx_mixer_write(chip, 0x78, 0x93);
538 if (chip->caps & ES18XX_PCM2)
539 /* Restore Audio 2 volume */
540 snd_es18xx_mixer_write(chip, 0x7C, chip->audio2_vol);
542 /* Enable PCM output */
543 snd_es18xx_dsp_command(chip, 0xD1);
546 case SNDRV_PCM_TRIGGER_STOP:
547 case SNDRV_PCM_TRIGGER_SUSPEND:
548 if (!(chip->active & DAC2))
550 chip->active &= ~DAC2;
552 snd_es18xx_mixer_write(chip, 0x78, 0x00);
555 if (chip->caps & ES18XX_PCM2)
556 /* Set Audio 2 volume to 0 */
557 snd_es18xx_mixer_write(chip, 0x7C, 0);
559 /* Disable PCM output */
560 snd_es18xx_dsp_command(chip, 0xD3);
570 static int snd_es18xx_capture_hw_params(struct snd_pcm_substream *substream,
571 struct snd_pcm_hw_params *hw_params)
573 struct snd_es18xx *chip = snd_pcm_substream_chip(substream);
577 if ((chip->caps & ES18XX_DUPLEX_MONO) &&
578 chip->playback_a_substream &&
579 params_channels(hw_params) != 1) {
580 _snd_pcm_hw_param_setempty(hw_params, SNDRV_PCM_HW_PARAM_CHANNELS);
583 if (params_channels(hw_params) == 2)
585 if (snd_pcm_format_width(params_format(hw_params)) == 16)
587 chip->dma1_shift = shift;
588 if ((err = snd_pcm_lib_malloc_pages(substream, params_buffer_bytes(hw_params))) < 0)
593 static int snd_es18xx_capture_prepare(struct snd_pcm_substream *substream)
595 struct snd_es18xx *chip = snd_pcm_substream_chip(substream);
596 struct snd_pcm_runtime *runtime = substream->runtime;
597 unsigned int size = snd_pcm_lib_buffer_bytes(substream);
598 unsigned int count = snd_pcm_lib_period_bytes(substream);
600 chip->dma1_size = size;
602 snd_es18xx_reset_fifo(chip);
604 /* Set stereo/mono */
605 snd_es18xx_bits(chip, 0xA8, 0x03, runtime->channels == 1 ? 0x02 : 0x01);
607 snd_es18xx_rate_set(chip, substream, ADC1);
609 /* Transfer Count Reload */
610 count = 0x10000 - count;
611 snd_es18xx_write(chip, 0xA4, count & 0xff);
612 snd_es18xx_write(chip, 0xA5, count >> 8);
619 snd_es18xx_write(chip, 0xB7,
620 snd_pcm_format_unsigned(runtime->format) ? 0x51 : 0x71);
621 snd_es18xx_write(chip, 0xB7, 0x90 |
622 ((runtime->channels == 1) ? 0x40 : 0x08) |
623 (snd_pcm_format_width(runtime->format) == 16 ? 0x04 : 0x00) |
624 (snd_pcm_format_unsigned(runtime->format) ? 0x00 : 0x20));
626 /* Set DMA controler */
627 snd_dma_program(chip->dma1, runtime->dma_addr, size, DMA_MODE_READ | DMA_AUTOINIT);
632 static int snd_es18xx_capture_trigger(struct snd_pcm_substream *substream,
635 struct snd_es18xx *chip = snd_pcm_substream_chip(substream);
638 case SNDRV_PCM_TRIGGER_START:
639 case SNDRV_PCM_TRIGGER_RESUME:
640 if (chip->active & ADC1)
642 chip->active |= ADC1;
644 snd_es18xx_write(chip, 0xB8, 0x0f);
646 case SNDRV_PCM_TRIGGER_STOP:
647 case SNDRV_PCM_TRIGGER_SUSPEND:
648 if (!(chip->active & ADC1))
650 chip->active &= ~ADC1;
652 snd_es18xx_write(chip, 0xB8, 0x00);
661 static int snd_es18xx_playback2_prepare(struct snd_es18xx *chip,
662 struct snd_pcm_substream *substream)
664 struct snd_pcm_runtime *runtime = substream->runtime;
665 unsigned int size = snd_pcm_lib_buffer_bytes(substream);
666 unsigned int count = snd_pcm_lib_period_bytes(substream);
668 chip->dma1_size = size;
670 snd_es18xx_reset_fifo(chip);
672 /* Set stereo/mono */
673 snd_es18xx_bits(chip, 0xA8, 0x03, runtime->channels == 1 ? 0x02 : 0x01);
675 snd_es18xx_rate_set(chip, substream, DAC1);
677 /* Transfer Count Reload */
678 count = 0x10000 - count;
679 snd_es18xx_write(chip, 0xA4, count & 0xff);
680 snd_es18xx_write(chip, 0xA5, count >> 8);
683 snd_es18xx_write(chip, 0xB6,
684 snd_pcm_format_unsigned(runtime->format) ? 0x80 : 0x00);
685 snd_es18xx_write(chip, 0xB7,
686 snd_pcm_format_unsigned(runtime->format) ? 0x51 : 0x71);
687 snd_es18xx_write(chip, 0xB7, 0x90 |
688 (runtime->channels == 1 ? 0x40 : 0x08) |
689 (snd_pcm_format_width(runtime->format) == 16 ? 0x04 : 0x00) |
690 (snd_pcm_format_unsigned(runtime->format) ? 0x00 : 0x20));
692 /* Set DMA controler */
693 snd_dma_program(chip->dma1, runtime->dma_addr, size, DMA_MODE_WRITE | DMA_AUTOINIT);
698 static int snd_es18xx_playback2_trigger(struct snd_es18xx *chip,
699 struct snd_pcm_substream *substream,
703 case SNDRV_PCM_TRIGGER_START:
704 case SNDRV_PCM_TRIGGER_RESUME:
705 if (chip->active & DAC1)
707 chip->active |= DAC1;
709 snd_es18xx_write(chip, 0xB8, 0x05);
714 snd_es18xx_dsp_command(chip, 0xD1);
717 case SNDRV_PCM_TRIGGER_STOP:
718 case SNDRV_PCM_TRIGGER_SUSPEND:
719 if (!(chip->active & DAC1))
721 chip->active &= ~DAC1;
723 snd_es18xx_write(chip, 0xB8, 0x00);
727 /* Disable Audio 1 */
728 snd_es18xx_dsp_command(chip, 0xD3);
738 static int snd_es18xx_playback_prepare(struct snd_pcm_substream *substream)
740 struct snd_es18xx *chip = snd_pcm_substream_chip(substream);
741 if (substream->number == 0 && (chip->caps & ES18XX_PCM2))
742 return snd_es18xx_playback1_prepare(chip, substream);
744 return snd_es18xx_playback2_prepare(chip, substream);
747 static int snd_es18xx_playback_trigger(struct snd_pcm_substream *substream,
750 struct snd_es18xx *chip = snd_pcm_substream_chip(substream);
751 if (substream->number == 0 && (chip->caps & ES18XX_PCM2))
752 return snd_es18xx_playback1_trigger(chip, substream, cmd);
754 return snd_es18xx_playback2_trigger(chip, substream, cmd);
757 static irqreturn_t snd_es18xx_interrupt(int irq, void *dev_id, struct pt_regs *regs)
759 struct snd_es18xx *chip = dev_id;
760 unsigned char status;
762 if (chip->caps & ES18XX_CONTROL) {
763 /* Read Interrupt status */
764 status = inb(chip->ctrl_port + 6);
766 /* Read Interrupt status */
767 status = snd_es18xx_mixer_read(chip, 0x7f) >> 4;
772 if (inb(chip->port + 0x0C) & 0x01)
773 status |= AUDIO1_IRQ;
774 if (snd_es18xx_mixer_read(chip, 0x7A) & 0x80)
775 status |= AUDIO2_IRQ;
776 if ((chip->caps & ES18XX_HWV) &&
777 snd_es18xx_mixer_read(chip, 0x64) & 0x10)
782 /* Audio 1 & Audio 2 */
783 if (status & AUDIO2_IRQ) {
784 if (chip->active & DAC2)
785 snd_pcm_period_elapsed(chip->playback_a_substream);
787 snd_es18xx_mixer_bits(chip, 0x7A, 0x80, 0x00);
789 if (status & AUDIO1_IRQ) {
790 /* ok.. capture is active */
791 if (chip->active & ADC1)
792 snd_pcm_period_elapsed(chip->capture_a_substream);
793 /* ok.. playback2 is active */
794 else if (chip->active & DAC1)
795 snd_pcm_period_elapsed(chip->playback_b_substream);
797 inb(chip->port + 0x0E);
801 if ((status & MPU_IRQ) && chip->rmidi)
802 snd_mpu401_uart_interrupt(irq, chip->rmidi->private_data, regs);
804 /* Hardware volume */
805 if (status & HWV_IRQ) {
807 if (chip->caps & ES18XX_HWV) {
808 split = snd_es18xx_mixer_read(chip, 0x64) & 0x80;
809 snd_ctl_notify(chip->card, SNDRV_CTL_EVENT_MASK_VALUE, &chip->hw_switch->id);
810 snd_ctl_notify(chip->card, SNDRV_CTL_EVENT_MASK_VALUE, &chip->hw_volume->id);
813 snd_ctl_notify(chip->card, SNDRV_CTL_EVENT_MASK_VALUE, &chip->master_switch->id);
814 snd_ctl_notify(chip->card, SNDRV_CTL_EVENT_MASK_VALUE, &chip->master_volume->id);
817 snd_es18xx_mixer_write(chip, 0x66, 0x00);
822 static snd_pcm_uframes_t snd_es18xx_playback_pointer(struct snd_pcm_substream *substream)
824 struct snd_es18xx *chip = snd_pcm_substream_chip(substream);
827 if (substream->number == 0 && (chip->caps & ES18XX_PCM2)) {
828 if (!(chip->active & DAC2))
830 pos = snd_dma_pointer(chip->dma2, chip->dma2_size);
831 return pos >> chip->dma2_shift;
833 if (!(chip->active & DAC1))
835 pos = snd_dma_pointer(chip->dma1, chip->dma1_size);
836 return pos >> chip->dma1_shift;
840 static snd_pcm_uframes_t snd_es18xx_capture_pointer(struct snd_pcm_substream *substream)
842 struct snd_es18xx *chip = snd_pcm_substream_chip(substream);
845 if (!(chip->active & ADC1))
847 pos = snd_dma_pointer(chip->dma1, chip->dma1_size);
848 return pos >> chip->dma1_shift;
851 static struct snd_pcm_hardware snd_es18xx_playback =
853 .info = (SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_INTERLEAVED |
854 SNDRV_PCM_INFO_RESUME |
855 SNDRV_PCM_INFO_MMAP_VALID),
856 .formats = (SNDRV_PCM_FMTBIT_U8 | SNDRV_PCM_FMTBIT_S8 |
857 SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_U16_LE),
858 .rates = SNDRV_PCM_RATE_CONTINUOUS | SNDRV_PCM_RATE_8000_48000,
863 .buffer_bytes_max = 65536,
864 .period_bytes_min = 64,
865 .period_bytes_max = 65536,
871 static struct snd_pcm_hardware snd_es18xx_capture =
873 .info = (SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_INTERLEAVED |
874 SNDRV_PCM_INFO_RESUME |
875 SNDRV_PCM_INFO_MMAP_VALID),
876 .formats = (SNDRV_PCM_FMTBIT_U8 | SNDRV_PCM_FMTBIT_S8 |
877 SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_U16_LE),
878 .rates = SNDRV_PCM_RATE_CONTINUOUS | SNDRV_PCM_RATE_8000_48000,
883 .buffer_bytes_max = 65536,
884 .period_bytes_min = 64,
885 .period_bytes_max = 65536,
891 static int snd_es18xx_playback_open(struct snd_pcm_substream *substream)
893 struct snd_pcm_runtime *runtime = substream->runtime;
894 struct snd_es18xx *chip = snd_pcm_substream_chip(substream);
896 if (substream->number == 0 && (chip->caps & ES18XX_PCM2)) {
897 if ((chip->caps & ES18XX_DUPLEX_MONO) &&
898 chip->capture_a_substream &&
899 chip->capture_a_substream->runtime->channels != 1)
901 chip->playback_a_substream = substream;
902 } else if (substream->number <= 1) {
903 if (chip->capture_a_substream)
905 chip->playback_b_substream = substream;
910 substream->runtime->hw = snd_es18xx_playback;
911 snd_pcm_hw_constraint_ratnums(runtime, 0, SNDRV_PCM_HW_PARAM_RATE,
912 (chip->caps & ES18XX_NEW_RATE) ? &new_hw_constraints_clocks : &old_hw_constraints_clocks);
916 static int snd_es18xx_capture_open(struct snd_pcm_substream *substream)
918 struct snd_pcm_runtime *runtime = substream->runtime;
919 struct snd_es18xx *chip = snd_pcm_substream_chip(substream);
921 if (chip->playback_b_substream)
923 if ((chip->caps & ES18XX_DUPLEX_MONO) &&
924 chip->playback_a_substream &&
925 chip->playback_a_substream->runtime->channels != 1)
927 chip->capture_a_substream = substream;
928 substream->runtime->hw = snd_es18xx_capture;
929 snd_pcm_hw_constraint_ratnums(runtime, 0, SNDRV_PCM_HW_PARAM_RATE,
930 (chip->caps & ES18XX_NEW_RATE) ? &new_hw_constraints_clocks : &old_hw_constraints_clocks);
934 static int snd_es18xx_playback_close(struct snd_pcm_substream *substream)
936 struct snd_es18xx *chip = snd_pcm_substream_chip(substream);
938 if (substream->number == 0 && (chip->caps & ES18XX_PCM2))
939 chip->playback_a_substream = NULL;
941 chip->playback_b_substream = NULL;
943 snd_pcm_lib_free_pages(substream);
947 static int snd_es18xx_capture_close(struct snd_pcm_substream *substream)
949 struct snd_es18xx *chip = snd_pcm_substream_chip(substream);
951 chip->capture_a_substream = NULL;
952 snd_pcm_lib_free_pages(substream);
960 /* Record source mux routines:
961 * Depending on the chipset this mux switches between 4, 5, or 8 possible inputs.
962 * bit table for the 4/5 source mux:
969 * if it's "mixer" and it's a 5 source mux chipset then reg 7A bit 3 determines
970 * either the play mixer or the capture mixer.
972 * "map4Source" translates from source number to reg bit pattern
973 * "invMap4Source" translates from reg bit pattern to source number
976 static int snd_es18xx_info_mux(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
978 static char *texts4Source[4] = {
979 "Mic", "CD", "Line", "Master"
981 static char *texts5Source[5] = {
982 "Mic", "CD", "Line", "Master", "Mix"
984 static char *texts8Source[8] = {
985 "Mic", "Mic Master", "CD", "AOUT",
986 "Mic1", "Mix", "Line", "Master"
988 struct snd_es18xx *chip = snd_kcontrol_chip(kcontrol);
990 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
992 switch (chip->version) {
995 uinfo->value.enumerated.items = 4;
996 if (uinfo->value.enumerated.item > 3)
997 uinfo->value.enumerated.item = 3;
998 strcpy(uinfo->value.enumerated.name, texts4Source[uinfo->value.enumerated.item]);
1002 uinfo->value.enumerated.items = 5;
1003 if (uinfo->value.enumerated.item > 4)
1004 uinfo->value.enumerated.item = 4;
1005 strcpy(uinfo->value.enumerated.name, texts5Source[uinfo->value.enumerated.item]);
1007 case 0x1869: /* DS somewhat contradictory for 1869: could be be 5 or 8 */
1009 uinfo->value.enumerated.items = 8;
1010 if (uinfo->value.enumerated.item > 7)
1011 uinfo->value.enumerated.item = 7;
1012 strcpy(uinfo->value.enumerated.name, texts8Source[uinfo->value.enumerated.item]);
1020 static int snd_es18xx_get_mux(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
1022 static unsigned char invMap4Source[8] = {0, 0, 1, 1, 0, 0, 2, 3};
1023 struct snd_es18xx *chip = snd_kcontrol_chip(kcontrol);
1024 int muxSource = snd_es18xx_mixer_read(chip, 0x1c) & 0x07;
1025 if (!(chip->version == 0x1869 || chip->version == 0x1879)) {
1026 muxSource = invMap4Source[muxSource];
1028 (chip->version == 0x1887 || chip->version == 0x1888) &&
1029 (snd_es18xx_mixer_read(chip, 0x7a) & 0x08)
1033 ucontrol->value.enumerated.item[0] = muxSource;
1037 static int snd_es18xx_put_mux(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
1039 static unsigned char map4Source[4] = {0, 2, 6, 7};
1040 struct snd_es18xx *chip = snd_kcontrol_chip(kcontrol);
1041 unsigned char val = ucontrol->value.enumerated.item[0];
1042 unsigned char retVal = 0;
1044 switch (chip->version) {
1045 /* 5 source chips */
1051 retVal = snd_es18xx_mixer_bits(chip, 0x7a, 0x08, 0x08) != 0x08;
1054 retVal = snd_es18xx_mixer_bits(chip, 0x7a, 0x08, 0x00) != 0x00;
1055 /* 4 source chips */
1060 val = map4Source[val];
1062 /* 8 source chips */
1071 return (snd_es18xx_mixer_bits(chip, 0x1c, 0x07, val) != val) || retVal;
1074 static int snd_es18xx_info_spatializer_enable(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
1076 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
1078 uinfo->value.integer.min = 0;
1079 uinfo->value.integer.max = 1;
1083 static int snd_es18xx_get_spatializer_enable(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
1085 struct snd_es18xx *chip = snd_kcontrol_chip(kcontrol);
1086 unsigned char val = snd_es18xx_mixer_read(chip, 0x50);
1087 ucontrol->value.integer.value[0] = !!(val & 8);
1091 static int snd_es18xx_put_spatializer_enable(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
1093 struct snd_es18xx *chip = snd_kcontrol_chip(kcontrol);
1094 unsigned char oval, nval;
1096 nval = ucontrol->value.integer.value[0] ? 0x0c : 0x04;
1097 oval = snd_es18xx_mixer_read(chip, 0x50) & 0x0c;
1098 change = nval != oval;
1100 snd_es18xx_mixer_write(chip, 0x50, nval & ~0x04);
1101 snd_es18xx_mixer_write(chip, 0x50, nval);
1106 static int snd_es18xx_info_hw_volume(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
1108 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
1110 uinfo->value.integer.min = 0;
1111 uinfo->value.integer.max = 63;
1115 static int snd_es18xx_get_hw_volume(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
1117 struct snd_es18xx *chip = snd_kcontrol_chip(kcontrol);
1118 ucontrol->value.integer.value[0] = snd_es18xx_mixer_read(chip, 0x61) & 0x3f;
1119 ucontrol->value.integer.value[1] = snd_es18xx_mixer_read(chip, 0x63) & 0x3f;
1123 static int snd_es18xx_info_hw_switch(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
1125 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
1127 uinfo->value.integer.min = 0;
1128 uinfo->value.integer.max = 1;
1132 static int snd_es18xx_get_hw_switch(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
1134 struct snd_es18xx *chip = snd_kcontrol_chip(kcontrol);
1135 ucontrol->value.integer.value[0] = !(snd_es18xx_mixer_read(chip, 0x61) & 0x40);
1136 ucontrol->value.integer.value[1] = !(snd_es18xx_mixer_read(chip, 0x63) & 0x40);
1140 static void snd_es18xx_hwv_free(struct snd_kcontrol *kcontrol)
1142 struct snd_es18xx *chip = snd_kcontrol_chip(kcontrol);
1143 chip->master_volume = NULL;
1144 chip->master_switch = NULL;
1145 chip->hw_volume = NULL;
1146 chip->hw_switch = NULL;
1149 static int snd_es18xx_reg_bits(struct snd_es18xx *chip, unsigned char reg,
1150 unsigned char mask, unsigned char val)
1153 return snd_es18xx_mixer_bits(chip, reg, mask, val);
1155 return snd_es18xx_bits(chip, reg, mask, val);
1158 static int snd_es18xx_reg_read(struct snd_es18xx *chip, unsigned char reg)
1161 return snd_es18xx_mixer_read(chip, reg);
1163 return snd_es18xx_read(chip, reg);
1166 #define ES18XX_SINGLE(xname, xindex, reg, shift, mask, invert) \
1167 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = xindex, \
1168 .info = snd_es18xx_info_single, \
1169 .get = snd_es18xx_get_single, .put = snd_es18xx_put_single, \
1170 .private_value = reg | (shift << 8) | (mask << 16) | (invert << 24) }
1172 static int snd_es18xx_info_single(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
1174 int mask = (kcontrol->private_value >> 16) & 0xff;
1176 uinfo->type = mask == 1 ? SNDRV_CTL_ELEM_TYPE_BOOLEAN : SNDRV_CTL_ELEM_TYPE_INTEGER;
1178 uinfo->value.integer.min = 0;
1179 uinfo->value.integer.max = mask;
1183 static int snd_es18xx_get_single(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
1185 struct snd_es18xx *chip = snd_kcontrol_chip(kcontrol);
1186 int reg = kcontrol->private_value & 0xff;
1187 int shift = (kcontrol->private_value >> 8) & 0xff;
1188 int mask = (kcontrol->private_value >> 16) & 0xff;
1189 int invert = (kcontrol->private_value >> 24) & 0xff;
1192 val = snd_es18xx_reg_read(chip, reg);
1193 ucontrol->value.integer.value[0] = (val >> shift) & mask;
1195 ucontrol->value.integer.value[0] = mask - ucontrol->value.integer.value[0];
1199 static int snd_es18xx_put_single(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
1201 struct snd_es18xx *chip = snd_kcontrol_chip(kcontrol);
1202 int reg = kcontrol->private_value & 0xff;
1203 int shift = (kcontrol->private_value >> 8) & 0xff;
1204 int mask = (kcontrol->private_value >> 16) & 0xff;
1205 int invert = (kcontrol->private_value >> 24) & 0xff;
1208 val = (ucontrol->value.integer.value[0] & mask);
1213 return snd_es18xx_reg_bits(chip, reg, mask, val) != val;
1216 #define ES18XX_DOUBLE(xname, xindex, left_reg, right_reg, shift_left, shift_right, mask, invert) \
1217 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = xindex, \
1218 .info = snd_es18xx_info_double, \
1219 .get = snd_es18xx_get_double, .put = snd_es18xx_put_double, \
1220 .private_value = left_reg | (right_reg << 8) | (shift_left << 16) | (shift_right << 19) | (mask << 24) | (invert << 22) }
1222 static int snd_es18xx_info_double(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
1224 int mask = (kcontrol->private_value >> 24) & 0xff;
1226 uinfo->type = mask == 1 ? SNDRV_CTL_ELEM_TYPE_BOOLEAN : SNDRV_CTL_ELEM_TYPE_INTEGER;
1228 uinfo->value.integer.min = 0;
1229 uinfo->value.integer.max = mask;
1233 static int snd_es18xx_get_double(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
1235 struct snd_es18xx *chip = snd_kcontrol_chip(kcontrol);
1236 int left_reg = kcontrol->private_value & 0xff;
1237 int right_reg = (kcontrol->private_value >> 8) & 0xff;
1238 int shift_left = (kcontrol->private_value >> 16) & 0x07;
1239 int shift_right = (kcontrol->private_value >> 19) & 0x07;
1240 int mask = (kcontrol->private_value >> 24) & 0xff;
1241 int invert = (kcontrol->private_value >> 22) & 1;
1242 unsigned char left, right;
1244 left = snd_es18xx_reg_read(chip, left_reg);
1245 if (left_reg != right_reg)
1246 right = snd_es18xx_reg_read(chip, right_reg);
1249 ucontrol->value.integer.value[0] = (left >> shift_left) & mask;
1250 ucontrol->value.integer.value[1] = (right >> shift_right) & mask;
1252 ucontrol->value.integer.value[0] = mask - ucontrol->value.integer.value[0];
1253 ucontrol->value.integer.value[1] = mask - ucontrol->value.integer.value[1];
1258 static int snd_es18xx_put_double(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
1260 struct snd_es18xx *chip = snd_kcontrol_chip(kcontrol);
1261 int left_reg = kcontrol->private_value & 0xff;
1262 int right_reg = (kcontrol->private_value >> 8) & 0xff;
1263 int shift_left = (kcontrol->private_value >> 16) & 0x07;
1264 int shift_right = (kcontrol->private_value >> 19) & 0x07;
1265 int mask = (kcontrol->private_value >> 24) & 0xff;
1266 int invert = (kcontrol->private_value >> 22) & 1;
1268 unsigned char val1, val2, mask1, mask2;
1270 val1 = ucontrol->value.integer.value[0] & mask;
1271 val2 = ucontrol->value.integer.value[1] & mask;
1276 val1 <<= shift_left;
1277 val2 <<= shift_right;
1278 mask1 = mask << shift_left;
1279 mask2 = mask << shift_right;
1280 if (left_reg != right_reg) {
1282 if (snd_es18xx_reg_bits(chip, left_reg, mask1, val1) != val1)
1284 if (snd_es18xx_reg_bits(chip, right_reg, mask2, val2) != val2)
1287 change = (snd_es18xx_reg_bits(chip, left_reg, mask1 | mask2,
1288 val1 | val2) != (val1 | val2));
1294 * These arrays contain setup data for mixer controls.
1296 * The controls that are universal to all chipsets are fully initialized
1299 static struct snd_kcontrol_new snd_es18xx_base_controls[] = {
1300 ES18XX_DOUBLE("Master Playback Volume", 0, 0x60, 0x62, 0, 0, 63, 0),
1301 ES18XX_DOUBLE("Master Playback Switch", 0, 0x60, 0x62, 6, 6, 1, 1),
1302 ES18XX_DOUBLE("Line Playback Volume", 0, 0x3e, 0x3e, 4, 0, 15, 0),
1303 ES18XX_DOUBLE("CD Playback Volume", 0, 0x38, 0x38, 4, 0, 15, 0),
1304 ES18XX_DOUBLE("FM Playback Volume", 0, 0x36, 0x36, 4, 0, 15, 0),
1305 ES18XX_DOUBLE("Mic Playback Volume", 0, 0x1a, 0x1a, 4, 0, 15, 0),
1306 ES18XX_DOUBLE("Aux Playback Volume", 0, 0x3a, 0x3a, 4, 0, 15, 0),
1307 ES18XX_SINGLE("Record Monitor", 0, 0xa8, 3, 1, 0),
1308 ES18XX_DOUBLE("Capture Volume", 0, 0xb4, 0xb4, 4, 0, 15, 0),
1310 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1311 .name = "Capture Source",
1312 .info = snd_es18xx_info_mux,
1313 .get = snd_es18xx_get_mux,
1314 .put = snd_es18xx_put_mux,
1318 static struct snd_kcontrol_new snd_es18xx_recmix_controls[] = {
1319 ES18XX_DOUBLE("PCM Capture Volume", 0, 0x69, 0x69, 4, 0, 15, 0),
1320 ES18XX_DOUBLE("Mic Capture Volume", 0, 0x68, 0x68, 4, 0, 15, 0),
1321 ES18XX_DOUBLE("Line Capture Volume", 0, 0x6e, 0x6e, 4, 0, 15, 0),
1322 ES18XX_DOUBLE("FM Capture Volume", 0, 0x6b, 0x6b, 4, 0, 15, 0),
1323 ES18XX_DOUBLE("CD Capture Volume", 0, 0x6a, 0x6a, 4, 0, 15, 0),
1324 ES18XX_DOUBLE("Aux Capture Volume", 0, 0x6c, 0x6c, 4, 0, 15, 0)
1328 * The chipset specific mixer controls
1330 static struct snd_kcontrol_new snd_es18xx_opt_speaker =
1331 ES18XX_SINGLE("PC Speaker Playback Volume", 0, 0x3c, 0, 7, 0);
1333 static struct snd_kcontrol_new snd_es18xx_opt_1869[] = {
1334 ES18XX_SINGLE("Capture Switch", 0, 0x1c, 4, 1, 1),
1335 ES18XX_SINGLE("Video Playback Switch", 0, 0x7f, 0, 1, 0),
1336 ES18XX_DOUBLE("Mono Playback Volume", 0, 0x6d, 0x6d, 4, 0, 15, 0),
1337 ES18XX_DOUBLE("Mono Capture Volume", 0, 0x6f, 0x6f, 4, 0, 15, 0)
1340 static struct snd_kcontrol_new snd_es18xx_opt_1878 =
1341 ES18XX_DOUBLE("Video Playback Volume", 0, 0x68, 0x68, 4, 0, 15, 0);
1343 static struct snd_kcontrol_new snd_es18xx_opt_1879[] = {
1344 ES18XX_SINGLE("Video Playback Switch", 0, 0x71, 6, 1, 0),
1345 ES18XX_DOUBLE("Video Playback Volume", 0, 0x6d, 0x6d, 4, 0, 15, 0),
1346 ES18XX_DOUBLE("Video Capture Volume", 0, 0x6f, 0x6f, 4, 0, 15, 0)
1349 static struct snd_kcontrol_new snd_es18xx_pcm1_controls[] = {
1350 ES18XX_DOUBLE("PCM Playback Volume", 0, 0x14, 0x14, 4, 0, 15, 0),
1353 static struct snd_kcontrol_new snd_es18xx_pcm2_controls[] = {
1354 ES18XX_DOUBLE("PCM Playback Volume", 0, 0x7c, 0x7c, 4, 0, 15, 0),
1355 ES18XX_DOUBLE("PCM Playback Volume", 1, 0x14, 0x14, 4, 0, 15, 0)
1358 static struct snd_kcontrol_new snd_es18xx_spatializer_controls[] = {
1359 ES18XX_SINGLE("3D Control - Level", 0, 0x52, 0, 63, 0),
1361 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1362 .name = "3D Control - Switch",
1363 .info = snd_es18xx_info_spatializer_enable,
1364 .get = snd_es18xx_get_spatializer_enable,
1365 .put = snd_es18xx_put_spatializer_enable,
1369 static struct snd_kcontrol_new snd_es18xx_micpre1_control =
1370 ES18XX_SINGLE("Mic Boost (+26dB)", 0, 0xa9, 2, 1, 0);
1372 static struct snd_kcontrol_new snd_es18xx_micpre2_control =
1373 ES18XX_SINGLE("Mic Boost (+26dB)", 0, 0x7d, 3, 1, 0);
1375 static struct snd_kcontrol_new snd_es18xx_hw_volume_controls[] = {
1377 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1378 .name = "Hardware Master Playback Volume",
1379 .access = SNDRV_CTL_ELEM_ACCESS_READ,
1380 .info = snd_es18xx_info_hw_volume,
1381 .get = snd_es18xx_get_hw_volume,
1384 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1385 .name = "Hardware Master Playback Switch",
1386 .access = SNDRV_CTL_ELEM_ACCESS_READ,
1387 .info = snd_es18xx_info_hw_switch,
1388 .get = snd_es18xx_get_hw_switch,
1390 ES18XX_SINGLE("Hardware Master Volume Split", 0, 0x64, 7, 1, 0),
1393 static int __devinit snd_es18xx_config_read(struct snd_es18xx *chip, unsigned char reg)
1396 unsigned long flags;
1397 spin_lock_irqsave(&chip->ctrl_lock, flags);
1398 outb(reg, chip->ctrl_port);
1399 data = inb(chip->ctrl_port + 1);
1400 spin_unlock_irqrestore(&chip->ctrl_lock, flags);
1404 static void __devinit snd_es18xx_config_write(struct snd_es18xx *chip,
1405 unsigned char reg, unsigned char data)
1407 /* No need for spinlocks, this function is used only in
1408 otherwise protected init code */
1409 outb(reg, chip->ctrl_port);
1410 outb(data, chip->ctrl_port + 1);
1412 snd_printk(KERN_DEBUG "Config reg %02x set to %02x\n", reg, data);
1416 static int __devinit snd_es18xx_initialize(struct snd_es18xx *chip)
1420 /* enable extended mode */
1421 snd_es18xx_dsp_command(chip, 0xC6);
1422 /* Reset mixer registers */
1423 snd_es18xx_mixer_write(chip, 0x00, 0x00);
1425 /* Audio 1 DMA demand mode (4 bytes/request) */
1426 snd_es18xx_write(chip, 0xB9, 2);
1427 if (chip->caps & ES18XX_CONTROL) {
1428 /* Hardware volume IRQ */
1429 snd_es18xx_config_write(chip, 0x27, chip->irq);
1430 if (chip->fm_port > 0 && chip->fm_port != SNDRV_AUTO_PORT) {
1432 snd_es18xx_config_write(chip, 0x62, chip->fm_port >> 8);
1433 snd_es18xx_config_write(chip, 0x63, chip->fm_port & 0xff);
1435 if (chip->mpu_port > 0 && chip->mpu_port != SNDRV_AUTO_PORT) {
1437 snd_es18xx_config_write(chip, 0x64, chip->mpu_port >> 8);
1438 snd_es18xx_config_write(chip, 0x65, chip->mpu_port & 0xff);
1440 snd_es18xx_config_write(chip, 0x28, chip->irq);
1443 snd_es18xx_config_write(chip, 0x70, chip->irq);
1445 snd_es18xx_config_write(chip, 0x72, chip->irq);
1447 snd_es18xx_config_write(chip, 0x74, chip->dma1);
1449 snd_es18xx_config_write(chip, 0x75, chip->dma2);
1451 /* Enable Audio 1 IRQ */
1452 snd_es18xx_write(chip, 0xB1, 0x50);
1453 /* Enable Audio 2 IRQ */
1454 snd_es18xx_mixer_write(chip, 0x7A, 0x40);
1455 /* Enable Audio 1 DMA */
1456 snd_es18xx_write(chip, 0xB2, 0x50);
1457 /* Enable MPU and hardware volume interrupt */
1458 snd_es18xx_mixer_write(chip, 0x64, 0x42);
1461 int irqmask, dma1mask, dma2mask;
1462 switch (chip->irq) {
1477 snd_printk(KERN_ERR "invalid irq %d\n", chip->irq);
1480 switch (chip->dma1) {
1491 snd_printk(KERN_ERR "invalid dma1 %d\n", chip->dma1);
1494 switch (chip->dma2) {
1508 snd_printk(KERN_ERR "invalid dma2 %d\n", chip->dma2);
1512 /* Enable and set Audio 1 IRQ */
1513 snd_es18xx_write(chip, 0xB1, 0x50 | (irqmask << 2));
1514 /* Enable and set Audio 1 DMA */
1515 snd_es18xx_write(chip, 0xB2, 0x50 | (dma1mask << 2));
1516 /* Set Audio 2 DMA */
1517 snd_es18xx_mixer_bits(chip, 0x7d, 0x07, 0x04 | dma2mask);
1518 /* Enable Audio 2 IRQ and DMA
1519 Set capture mixer input */
1520 snd_es18xx_mixer_write(chip, 0x7A, 0x68);
1521 /* Enable and set hardware volume interrupt */
1522 snd_es18xx_mixer_write(chip, 0x64, 0x06);
1523 if (chip->mpu_port > 0 && chip->mpu_port != SNDRV_AUTO_PORT) {
1524 /* MPU401 share irq with audio
1527 snd_es18xx_mixer_write(chip, 0x40, 0x43 | (chip->mpu_port & 0xf0) >> 1);
1529 snd_es18xx_mixer_write(chip, 0x7f, ((irqmask + 1) << 1) | 0x01);
1531 if (chip->caps & ES18XX_NEW_RATE) {
1532 /* Change behaviour of register A1
1534 2nd channel DAC asynchronous */
1535 snd_es18xx_mixer_write(chip, 0x71, 0x32);
1537 if (!(chip->caps & ES18XX_PCM2)) {
1538 /* Enable DMA FIFO */
1539 snd_es18xx_write(chip, 0xB7, 0x80);
1541 if (chip->caps & ES18XX_SPATIALIZER) {
1542 /* Set spatializer parameters to recommended values */
1543 snd_es18xx_mixer_write(chip, 0x54, 0x8f);
1544 snd_es18xx_mixer_write(chip, 0x56, 0x95);
1545 snd_es18xx_mixer_write(chip, 0x58, 0x94);
1546 snd_es18xx_mixer_write(chip, 0x5a, 0x80);
1548 /* Flip the "enable I2S" bits for those chipsets that need it */
1549 switch (chip->version) {
1551 //Leaving I2S enabled on the 1879 screws up the PCM playback (rate effected somehow)
1552 //so a Switch control has been added to toggle this 0x71 bit on/off:
1553 //snd_es18xx_mixer_bits(chip, 0x71, 0x40, 0x40);
1554 /* Note: we fall through on purpose here. */
1556 snd_es18xx_config_write(chip, 0x29, snd_es18xx_config_read(chip, 0x29) | 0x40);
1559 /* Mute input source */
1560 if (chip->caps & ES18XX_MUTEREC)
1562 if (chip->caps & ES18XX_RECMIX)
1563 snd_es18xx_mixer_write(chip, 0x1c, 0x05 | mask);
1565 snd_es18xx_mixer_write(chip, 0x1c, 0x00 | mask);
1566 snd_es18xx_write(chip, 0xb4, 0x00);
1569 /* Enable PCM output */
1570 snd_es18xx_dsp_command(chip, 0xD1);
1576 static int __devinit snd_es18xx_identify(struct snd_es18xx *chip)
1581 if (snd_es18xx_reset(chip) < 0) {
1582 snd_printk(KERN_ERR "reset at 0x%lx failed!!!\n", chip->port);
1586 snd_es18xx_dsp_command(chip, 0xe7);
1587 hi = snd_es18xx_dsp_get_byte(chip);
1591 lo = snd_es18xx_dsp_get_byte(chip);
1592 if ((lo & 0xf0) != 0x80) {
1596 chip->version = 0x488;
1602 if ((lo & 0x0f) < 8) {
1603 chip->version = 0x688;
1607 outb(0x40, chip->port + 0x04);
1609 hi = inb(chip->port + 0x05);
1611 lo = inb(chip->port + 0x05);
1613 chip->version = hi << 8 | lo;
1614 chip->ctrl_port = inb(chip->port + 0x05) << 8;
1616 chip->ctrl_port += inb(chip->port + 0x05);
1618 if ((chip->res_ctrl_port = request_region(chip->ctrl_port, 8, "ES18xx - CTRL")) == NULL) {
1619 snd_printk(KERN_ERR PFX "unable go grab port 0x%lx\n", chip->ctrl_port);
1626 /* If has Hardware volume */
1627 if (snd_es18xx_mixer_writable(chip, 0x64, 0x04)) {
1629 if (snd_es18xx_mixer_writable(chip, 0x70, 0x7f)) {
1630 /* If has volume count */
1631 if (snd_es18xx_mixer_writable(chip, 0x64, 0x20)) {
1632 chip->version = 0x1887;
1634 chip->version = 0x1888;
1637 chip->version = 0x1788;
1641 chip->version = 0x1688;
1645 static int __devinit snd_es18xx_probe(struct snd_es18xx *chip)
1647 if (snd_es18xx_identify(chip) < 0) {
1648 snd_printk(KERN_ERR PFX "[0x%lx] ESS chip not found\n", chip->port);
1652 switch (chip->version) {
1654 chip->caps = ES18XX_DUPLEX_MONO | ES18XX_DUPLEX_SAME | ES18XX_CONTROL;
1657 chip->caps = ES18XX_PCM2 | ES18XX_SPATIALIZER | ES18XX_RECMIX | ES18XX_NEW_RATE | ES18XX_AUXB | ES18XX_MONO | ES18XX_MUTEREC | ES18XX_CONTROL | ES18XX_HWV;
1660 chip->caps = ES18XX_DUPLEX_MONO | ES18XX_DUPLEX_SAME | ES18XX_I2S | ES18XX_CONTROL;
1663 chip->caps = ES18XX_PCM2 | ES18XX_SPATIALIZER | ES18XX_RECMIX | ES18XX_NEW_RATE | ES18XX_AUXB | ES18XX_I2S | ES18XX_CONTROL | ES18XX_HWV;
1666 chip->caps = ES18XX_PCM2 | ES18XX_RECMIX | ES18XX_AUXB | ES18XX_DUPLEX_SAME;
1669 chip->caps = ES18XX_PCM2 | ES18XX_RECMIX | ES18XX_AUXB | ES18XX_DUPLEX_SAME;
1672 snd_printk(KERN_ERR "[0x%lx] unsupported chip ES%x\n",
1673 chip->port, chip->version);
1677 snd_printd("[0x%lx] ESS%x chip found\n", chip->port, chip->version);
1679 if (chip->dma1 == chip->dma2)
1680 chip->caps &= ~(ES18XX_PCM2 | ES18XX_DUPLEX_SAME);
1682 return snd_es18xx_initialize(chip);
1685 static struct snd_pcm_ops snd_es18xx_playback_ops = {
1686 .open = snd_es18xx_playback_open,
1687 .close = snd_es18xx_playback_close,
1688 .ioctl = snd_pcm_lib_ioctl,
1689 .hw_params = snd_es18xx_playback_hw_params,
1690 .hw_free = snd_es18xx_pcm_hw_free,
1691 .prepare = snd_es18xx_playback_prepare,
1692 .trigger = snd_es18xx_playback_trigger,
1693 .pointer = snd_es18xx_playback_pointer,
1696 static struct snd_pcm_ops snd_es18xx_capture_ops = {
1697 .open = snd_es18xx_capture_open,
1698 .close = snd_es18xx_capture_close,
1699 .ioctl = snd_pcm_lib_ioctl,
1700 .hw_params = snd_es18xx_capture_hw_params,
1701 .hw_free = snd_es18xx_pcm_hw_free,
1702 .prepare = snd_es18xx_capture_prepare,
1703 .trigger = snd_es18xx_capture_trigger,
1704 .pointer = snd_es18xx_capture_pointer,
1707 static int __devinit snd_es18xx_pcm(struct snd_es18xx *chip, int device, struct snd_pcm ** rpcm)
1709 struct snd_pcm *pcm;
1715 sprintf(str, "ES%x", chip->version);
1716 if (chip->caps & ES18XX_PCM2)
1717 err = snd_pcm_new(chip->card, str, device, 2, 1, &pcm);
1719 err = snd_pcm_new(chip->card, str, device, 1, 1, &pcm);
1723 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &snd_es18xx_playback_ops);
1724 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &snd_es18xx_capture_ops);
1727 pcm->private_data = chip;
1728 pcm->info_flags = 0;
1729 if (chip->caps & ES18XX_DUPLEX_SAME)
1730 pcm->info_flags |= SNDRV_PCM_INFO_JOINT_DUPLEX;
1731 if (! (chip->caps & ES18XX_PCM2))
1732 pcm->info_flags |= SNDRV_PCM_INFO_HALF_DUPLEX;
1733 sprintf(pcm->name, "ESS AudioDrive ES%x", chip->version);
1736 snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV,
1739 chip->dma1 > 3 || chip->dma2 > 3 ? 128*1024 : 64*1024);
1746 /* Power Management support functions */
1748 static int snd_es18xx_suspend(struct snd_card *card, pm_message_t state)
1750 struct snd_audiodrive *acard = card->private_data;
1751 struct snd_es18xx *chip = acard->chip;
1753 snd_power_change_state(chip->card, SNDRV_CTL_POWER_D3hot);
1755 snd_pcm_suspend_all(chip->pcm);
1758 chip->pm_reg = (unsigned char)snd_es18xx_read(chip, ES18XX_PM);
1759 chip->pm_reg |= (ES18XX_PM_FM | ES18XX_PM_SUS);
1760 snd_es18xx_write(chip, ES18XX_PM, chip->pm_reg);
1761 snd_es18xx_write(chip, ES18XX_PM, chip->pm_reg ^= ES18XX_PM_SUS);
1766 static int snd_es18xx_resume(struct snd_card *card)
1768 struct snd_audiodrive *acard = card->private_data;
1769 struct snd_es18xx *chip = acard->chip;
1771 /* restore PM register, we won't wake till (not 0x07) i/o activity though */
1772 snd_es18xx_write(chip, ES18XX_PM, chip->pm_reg ^= ES18XX_PM_FM);
1774 snd_power_change_state(chip->card, SNDRV_CTL_POWER_D0);
1777 #endif /* CONFIG_PM */
1779 static int snd_es18xx_free(struct snd_es18xx *chip)
1781 release_and_free_resource(chip->res_port);
1782 release_and_free_resource(chip->res_ctrl_port);
1783 release_and_free_resource(chip->res_mpu_port);
1785 free_irq(chip->irq, (void *) chip);
1786 if (chip->dma1 >= 0) {
1787 disable_dma(chip->dma1);
1788 free_dma(chip->dma1);
1790 if (chip->dma2 >= 0 && chip->dma1 != chip->dma2) {
1791 disable_dma(chip->dma2);
1792 free_dma(chip->dma2);
1798 static int snd_es18xx_dev_free(struct snd_device *device)
1800 struct snd_es18xx *chip = device->device_data;
1801 return snd_es18xx_free(chip);
1804 static int __devinit snd_es18xx_new_device(struct snd_card *card,
1806 unsigned long mpu_port,
1807 unsigned long fm_port,
1808 int irq, int dma1, int dma2,
1809 struct snd_es18xx ** rchip)
1811 struct snd_es18xx *chip;
1812 static struct snd_device_ops ops = {
1813 .dev_free = snd_es18xx_dev_free,
1818 chip = kzalloc(sizeof(*chip), GFP_KERNEL);
1821 spin_lock_init(&chip->reg_lock);
1822 spin_lock_init(&chip->mixer_lock);
1823 spin_lock_init(&chip->ctrl_lock);
1826 chip->mpu_port = mpu_port;
1827 chip->fm_port = fm_port;
1831 chip->audio2_vol = 0x00;
1834 if ((chip->res_port = request_region(port, 16, "ES18xx")) == NULL) {
1835 snd_es18xx_free(chip);
1836 snd_printk(KERN_ERR PFX "unable to grap ports 0x%lx-0x%lx\n", port, port + 16 - 1);
1840 if (request_irq(irq, snd_es18xx_interrupt, IRQF_DISABLED, "ES18xx", (void *) chip)) {
1841 snd_es18xx_free(chip);
1842 snd_printk(KERN_ERR PFX "unable to grap IRQ %d\n", irq);
1847 if (request_dma(dma1, "ES18xx DMA 1")) {
1848 snd_es18xx_free(chip);
1849 snd_printk(KERN_ERR PFX "unable to grap DMA1 %d\n", dma1);
1854 if (dma2 != dma1 && request_dma(dma2, "ES18xx DMA 2")) {
1855 snd_es18xx_free(chip);
1856 snd_printk(KERN_ERR PFX "unable to grap DMA2 %d\n", dma2);
1861 if (snd_es18xx_probe(chip) < 0) {
1862 snd_es18xx_free(chip);
1865 if ((err = snd_device_new(card, SNDRV_DEV_LOWLEVEL, chip, &ops)) < 0) {
1866 snd_es18xx_free(chip);
1873 static int __devinit snd_es18xx_mixer(struct snd_es18xx *chip)
1875 struct snd_card *card;
1881 strcpy(card->mixername, chip->pcm->name);
1883 for (idx = 0; idx < ARRAY_SIZE(snd_es18xx_base_controls); idx++) {
1884 struct snd_kcontrol *kctl;
1885 kctl = snd_ctl_new1(&snd_es18xx_base_controls[idx], chip);
1886 if (chip->caps & ES18XX_HWV) {
1889 chip->master_volume = kctl;
1890 kctl->private_free = snd_es18xx_hwv_free;
1893 chip->master_switch = kctl;
1894 kctl->private_free = snd_es18xx_hwv_free;
1898 if ((err = snd_ctl_add(card, kctl)) < 0)
1901 if (chip->caps & ES18XX_PCM2) {
1902 for (idx = 0; idx < ARRAY_SIZE(snd_es18xx_pcm2_controls); idx++) {
1903 if ((err = snd_ctl_add(card, snd_ctl_new1(&snd_es18xx_pcm2_controls[idx], chip))) < 0)
1907 for (idx = 0; idx < ARRAY_SIZE(snd_es18xx_pcm1_controls); idx++) {
1908 if ((err = snd_ctl_add(card, snd_ctl_new1(&snd_es18xx_pcm1_controls[idx], chip))) < 0)
1913 if (chip->caps & ES18XX_RECMIX) {
1914 for (idx = 0; idx < ARRAY_SIZE(snd_es18xx_recmix_controls); idx++) {
1915 if ((err = snd_ctl_add(card, snd_ctl_new1(&snd_es18xx_recmix_controls[idx], chip))) < 0)
1919 switch (chip->version) {
1921 if ((err = snd_ctl_add(card, snd_ctl_new1(&snd_es18xx_micpre1_control, chip))) < 0)
1926 if ((err = snd_ctl_add(card, snd_ctl_new1(&snd_es18xx_micpre2_control, chip))) < 0)
1930 if (chip->caps & ES18XX_SPATIALIZER) {
1931 for (idx = 0; idx < ARRAY_SIZE(snd_es18xx_spatializer_controls); idx++) {
1932 if ((err = snd_ctl_add(card, snd_ctl_new1(&snd_es18xx_spatializer_controls[idx], chip))) < 0)
1936 if (chip->caps & ES18XX_HWV) {
1937 for (idx = 0; idx < ARRAY_SIZE(snd_es18xx_hw_volume_controls); idx++) {
1938 struct snd_kcontrol *kctl;
1939 kctl = snd_ctl_new1(&snd_es18xx_hw_volume_controls[idx], chip);
1941 chip->hw_volume = kctl;
1943 chip->hw_switch = kctl;
1944 kctl->private_free = snd_es18xx_hwv_free;
1945 if ((err = snd_ctl_add(card, kctl)) < 0)
1950 /* finish initializing other chipset specific controls
1952 if (chip->version != 0x1868) {
1953 err = snd_ctl_add(card, snd_ctl_new1(&snd_es18xx_opt_speaker,
1958 if (chip->version == 0x1869) {
1959 for (idx = 0; idx < ARRAY_SIZE(snd_es18xx_opt_1869); idx++) {
1960 err = snd_ctl_add(card,
1961 snd_ctl_new1(&snd_es18xx_opt_1869[idx],
1966 } else if (chip->version == 0x1878) {
1967 err = snd_ctl_add(card, snd_ctl_new1(&snd_es18xx_opt_1878,
1971 } else if (chip->version == 0x1879) {
1972 for (idx = 0; idx < ARRAY_SIZE(snd_es18xx_opt_1879); idx++) {
1973 err = snd_ctl_add(card,
1974 snd_ctl_new1(&snd_es18xx_opt_1879[idx],
1986 MODULE_AUTHOR("Christian Fischbach <fishbach@pool.informatik.rwth-aachen.de>, Abramo Bagnara <abramo@alsa-project.org>");
1987 MODULE_DESCRIPTION("ESS ES18xx AudioDrive");
1988 MODULE_LICENSE("GPL");
1989 MODULE_SUPPORTED_DEVICE("{{ESS,ES1868 PnP AudioDrive},"
1990 "{ESS,ES1869 PnP AudioDrive},"
1991 "{ESS,ES1878 PnP AudioDrive},"
1992 "{ESS,ES1879 PnP AudioDrive},"
1993 "{ESS,ES1887 PnP AudioDrive},"
1994 "{ESS,ES1888 PnP AudioDrive},"
1995 "{ESS,ES1887 AudioDrive},"
1996 "{ESS,ES1888 AudioDrive}}");
1998 static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */
1999 static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */
2000 static int enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_ISAPNP; /* Enable this card */
2002 static int isapnp[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 1};
2004 static long port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT; /* 0x220,0x240,0x260,0x280 */
2006 static long mpu_port[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = -1};
2008 static long mpu_port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT;
2010 static long fm_port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT;
2011 static int irq[SNDRV_CARDS] = SNDRV_DEFAULT_IRQ; /* 5,7,9,10 */
2012 static int dma1[SNDRV_CARDS] = SNDRV_DEFAULT_DMA; /* 0,1,3 */
2013 static int dma2[SNDRV_CARDS] = SNDRV_DEFAULT_DMA; /* 0,1,3 */
2015 module_param_array(index, int, NULL, 0444);
2016 MODULE_PARM_DESC(index, "Index value for ES18xx soundcard.");
2017 module_param_array(id, charp, NULL, 0444);
2018 MODULE_PARM_DESC(id, "ID string for ES18xx soundcard.");
2019 module_param_array(enable, bool, NULL, 0444);
2020 MODULE_PARM_DESC(enable, "Enable ES18xx soundcard.");
2022 module_param_array(isapnp, bool, NULL, 0444);
2023 MODULE_PARM_DESC(isapnp, "PnP detection for specified soundcard.");
2025 module_param_array(port, long, NULL, 0444);
2026 MODULE_PARM_DESC(port, "Port # for ES18xx driver.");
2027 module_param_array(mpu_port, long, NULL, 0444);
2028 MODULE_PARM_DESC(mpu_port, "MPU-401 port # for ES18xx driver.");
2029 module_param_array(fm_port, long, NULL, 0444);
2030 MODULE_PARM_DESC(fm_port, "FM port # for ES18xx driver.");
2031 module_param_array(irq, int, NULL, 0444);
2032 MODULE_PARM_DESC(irq, "IRQ # for ES18xx driver.");
2033 module_param_array(dma1, int, NULL, 0444);
2034 MODULE_PARM_DESC(dma1, "DMA 1 # for ES18xx driver.");
2035 module_param_array(dma2, int, NULL, 0444);
2036 MODULE_PARM_DESC(dma2, "DMA 2 # for ES18xx driver.");
2038 static struct platform_device *platform_devices[SNDRV_CARDS];
2041 static int pnp_registered, pnpc_registered;
2043 static struct pnp_device_id snd_audiodrive_pnpbiosids[] = {
2044 { .id = "ESS1869" },
2045 { .id = "" } /* end */
2048 MODULE_DEVICE_TABLE(pnp, snd_audiodrive_pnpbiosids);
2050 /* PnP main device initialization */
2051 static int __devinit snd_audiodrive_pnp_init_main(int dev, struct pnp_dev *pdev,
2052 struct pnp_resource_table *cfg)
2056 pnp_init_resource_table(cfg);
2057 if (port[dev] != SNDRV_AUTO_PORT)
2058 pnp_resource_change(&cfg->port_resource[0], port[dev], 16);
2059 if (fm_port[dev] != SNDRV_AUTO_PORT)
2060 pnp_resource_change(&cfg->port_resource[1], fm_port[dev], 4);
2061 if (mpu_port[dev] != SNDRV_AUTO_PORT)
2062 pnp_resource_change(&cfg->port_resource[2], mpu_port[dev], 2);
2063 if (dma1[dev] != SNDRV_AUTO_DMA)
2064 pnp_resource_change(&cfg->dma_resource[0], dma1[dev], 1);
2065 if (dma2[dev] != SNDRV_AUTO_DMA)
2066 pnp_resource_change(&cfg->dma_resource[1], dma2[dev], 1);
2067 if (irq[dev] != SNDRV_AUTO_IRQ)
2068 pnp_resource_change(&cfg->irq_resource[0], irq[dev], 1);
2069 if (pnp_device_is_isapnp(pdev)) {
2070 err = pnp_manual_config_dev(pdev, cfg, 0);
2072 snd_printk(KERN_ERR PFX "PnP manual resources are invalid, using auto config\n");
2074 err = pnp_activate_dev(pdev);
2076 snd_printk(KERN_ERR PFX "PnP configure failure (out of resources?)\n");
2079 /* ok. hack using Vendor-Defined Card-Level registers */
2080 /* skip csn and logdev initialization - already done in isapnp_configure */
2081 if (pnp_device_is_isapnp(pdev)) {
2082 isapnp_cfg_begin(isapnp_card_number(pdev), isapnp_csn_number(pdev));
2083 isapnp_write_byte(0x27, pnp_irq(pdev, 0)); /* Hardware Volume IRQ Number */
2084 if (mpu_port[dev] != SNDRV_AUTO_PORT)
2085 isapnp_write_byte(0x28, pnp_irq(pdev, 0)); /* MPU-401 IRQ Number */
2086 isapnp_write_byte(0x72, pnp_irq(pdev, 0)); /* second IRQ */
2089 port[dev] = pnp_port_start(pdev, 0);
2090 fm_port[dev] = pnp_port_start(pdev, 1);
2091 mpu_port[dev] = pnp_port_start(pdev, 2);
2092 dma1[dev] = pnp_dma(pdev, 0);
2093 dma2[dev] = pnp_dma(pdev, 1);
2094 irq[dev] = pnp_irq(pdev, 0);
2095 snd_printdd("PnP ES18xx: port=0x%lx, fm port=0x%lx, mpu port=0x%lx\n", port[dev], fm_port[dev], mpu_port[dev]);
2096 snd_printdd("PnP ES18xx: dma1=%i, dma2=%i, irq=%i\n", dma1[dev], dma2[dev], irq[dev]);
2100 static int __devinit snd_audiodrive_pnp(int dev, struct snd_audiodrive *acard,
2101 struct pnp_dev *pdev)
2103 struct pnp_resource_table * cfg = kmalloc(sizeof(struct pnp_resource_table), GFP_KERNEL);
2108 if (snd_audiodrive_pnp_init_main(dev, acard->dev, cfg) < 0) {
2116 static struct pnp_card_device_id snd_audiodrive_pnpids[] = {
2117 /* ESS 1868 (integrated on Compaq dual P-Pro motherboard and Genius 18PnP 3D) */
2118 { .id = "ESS1868", .devs = { { "ESS1868" }, { "ESS0000" } } },
2119 /* ESS 1868 (integrated on Maxisound Cards) */
2120 { .id = "ESS1868", .devs = { { "ESS8601" }, { "ESS8600" } } },
2121 /* ESS 1868 (integrated on Maxisound Cards) */
2122 { .id = "ESS1868", .devs = { { "ESS8611" }, { "ESS8610" } } },
2123 /* ESS ES1869 Plug and Play AudioDrive */
2124 { .id = "ESS0003", .devs = { { "ESS1869" }, { "ESS0006" } } },
2126 { .id = "ESS1869", .devs = { { "ESS1869" }, { "ESS0006" } } },
2128 { .id = "ESS1878", .devs = { { "ESS1878" }, { "ESS0004" } } },
2130 { .id = "ESS1879", .devs = { { "ESS1879" }, { "ESS0009" } } },
2132 { .id = "" } /* end */
2135 MODULE_DEVICE_TABLE(pnp_card, snd_audiodrive_pnpids);
2137 static int __devinit snd_audiodrive_pnpc(int dev, struct snd_audiodrive *acard,
2138 struct pnp_card_link *card,
2139 const struct pnp_card_device_id *id)
2141 struct pnp_resource_table * cfg = kmalloc(sizeof(struct pnp_resource_table), GFP_KERNEL);
2145 acard->dev = pnp_request_card_device(card, id->devs[0].id, NULL);
2146 if (acard->dev == NULL) {
2150 acard->devc = pnp_request_card_device(card, id->devs[1].id, NULL);
2151 if (acard->devc == NULL) {
2155 /* Control port initialization */
2156 if (pnp_activate_dev(acard->devc) < 0) {
2157 snd_printk(KERN_ERR PFX "PnP control configure failure (out of resources?)\n");
2160 snd_printdd("pnp: port=0x%llx\n",
2161 (unsigned long long)pnp_port_start(acard->devc, 0));
2162 if (snd_audiodrive_pnp_init_main(dev, acard->dev, cfg) < 0) {
2169 #endif /* CONFIG_PNP */
2172 #define is_isapnp_selected(dev) isapnp[dev]
2174 #define is_isapnp_selected(dev) 0
2177 static struct snd_card *snd_es18xx_card_new(int dev)
2179 return snd_card_new(index[dev], id[dev], THIS_MODULE,
2180 sizeof(struct snd_audiodrive));
2183 static int __devinit snd_audiodrive_probe(struct snd_card *card, int dev)
2185 struct snd_audiodrive *acard = card->private_data;
2186 struct snd_es18xx *chip;
2187 struct snd_opl3 *opl3;
2190 if ((err = snd_es18xx_new_device(card,
2194 irq[dev], dma1[dev], dma2[dev],
2199 sprintf(card->driver, "ES%x", chip->version);
2201 sprintf(card->shortname, "ESS AudioDrive ES%x", chip->version);
2202 if (dma1[dev] != dma2[dev])
2203 sprintf(card->longname, "%s at 0x%lx, irq %d, dma1 %d, dma2 %d",
2206 irq[dev], dma1[dev], dma2[dev]);
2208 sprintf(card->longname, "%s at 0x%lx, irq %d, dma %d",
2211 irq[dev], dma1[dev]);
2213 if ((err = snd_es18xx_pcm(chip, 0, NULL)) < 0)
2216 if ((err = snd_es18xx_mixer(chip)) < 0)
2219 if (fm_port[dev] > 0 && fm_port[dev] != SNDRV_AUTO_PORT) {
2220 if (snd_opl3_create(card, chip->fm_port, chip->fm_port + 2, OPL3_HW_OPL3, 0, &opl3) < 0) {
2221 snd_printk(KERN_WARNING PFX "opl3 not detected at 0x%lx\n", chip->fm_port);
2223 if ((err = snd_opl3_hwdep_new(opl3, 0, 1, NULL)) < 0)
2228 if (mpu_port[dev] > 0 && mpu_port[dev] != SNDRV_AUTO_PORT) {
2229 if ((err = snd_mpu401_uart_new(card, 0, MPU401_HW_ES18XX,
2236 return snd_card_register(card);
2239 static int __devinit snd_es18xx_nonpnp_probe1(int dev, struct platform_device *devptr)
2241 struct snd_card *card;
2244 card = snd_es18xx_card_new(dev);
2247 snd_card_set_dev(card, &devptr->dev);
2248 if ((err = snd_audiodrive_probe(card, dev)) < 0) {
2249 snd_card_free(card);
2252 platform_set_drvdata(devptr, card);
2256 static int __devinit snd_es18xx_nonpnp_probe(struct platform_device *pdev)
2260 static int possible_irqs[] = {5, 9, 10, 7, 11, 12, -1};
2261 static int possible_dmas[] = {1, 0, 3, 5, -1};
2263 if (irq[dev] == SNDRV_AUTO_IRQ) {
2264 if ((irq[dev] = snd_legacy_find_free_irq(possible_irqs)) < 0) {
2265 snd_printk(KERN_ERR PFX "unable to find a free IRQ\n");
2269 if (dma1[dev] == SNDRV_AUTO_DMA) {
2270 if ((dma1[dev] = snd_legacy_find_free_dma(possible_dmas)) < 0) {
2271 snd_printk(KERN_ERR PFX "unable to find a free DMA1\n");
2275 if (dma2[dev] == SNDRV_AUTO_DMA) {
2276 if ((dma2[dev] = snd_legacy_find_free_dma(possible_dmas)) < 0) {
2277 snd_printk(KERN_ERR PFX "unable to find a free DMA2\n");
2282 if (port[dev] != SNDRV_AUTO_PORT) {
2283 return snd_es18xx_nonpnp_probe1(dev, pdev);
2285 static unsigned long possible_ports[] = {0x220, 0x240, 0x260, 0x280};
2287 for (i = 0; i < ARRAY_SIZE(possible_ports); i++) {
2288 port[dev] = possible_ports[i];
2289 err = snd_es18xx_nonpnp_probe1(dev, pdev);
2297 static int __devexit snd_es18xx_nonpnp_remove(struct platform_device *devptr)
2299 snd_card_free(platform_get_drvdata(devptr));
2300 platform_set_drvdata(devptr, NULL);
2305 static int snd_es18xx_nonpnp_suspend(struct platform_device *dev, pm_message_t state)
2307 return snd_es18xx_suspend(platform_get_drvdata(dev), state);
2310 static int snd_es18xx_nonpnp_resume(struct platform_device *dev)
2312 return snd_es18xx_resume(platform_get_drvdata(dev));
2316 #define ES18XX_DRIVER "snd_es18xx"
2318 static struct platform_driver snd_es18xx_nonpnp_driver = {
2319 .probe = snd_es18xx_nonpnp_probe,
2320 .remove = __devexit_p(snd_es18xx_nonpnp_remove),
2322 .suspend = snd_es18xx_nonpnp_suspend,
2323 .resume = snd_es18xx_nonpnp_resume,
2326 .name = ES18XX_DRIVER
2332 static unsigned int __devinitdata es18xx_pnp_devices;
2334 static int __devinit snd_audiodrive_pnp_detect(struct pnp_dev *pdev,
2335 const struct pnp_device_id *id)
2339 struct snd_card *card;
2341 if (pnp_device_is_isapnp(pdev))
2342 return -ENOENT; /* we have another procedure - card */
2343 for (; dev < SNDRV_CARDS; dev++) {
2344 if (enable[dev] && isapnp[dev])
2347 if (dev >= SNDRV_CARDS)
2350 card = snd_es18xx_card_new(dev);
2353 if ((err = snd_audiodrive_pnp(dev, card->private_data, pdev)) < 0) {
2354 snd_card_free(card);
2357 snd_card_set_dev(card, &pdev->dev);
2358 if ((err = snd_audiodrive_probe(card, dev)) < 0) {
2359 snd_card_free(card);
2362 pnp_set_drvdata(pdev, card);
2364 es18xx_pnp_devices++;
2368 static void __devexit snd_audiodrive_pnp_remove(struct pnp_dev * pdev)
2370 snd_card_free(pnp_get_drvdata(pdev));
2371 pnp_set_drvdata(pdev, NULL);
2375 static int snd_audiodrive_pnp_suspend(struct pnp_dev *pdev, pm_message_t state)
2377 return snd_es18xx_suspend(pnp_get_drvdata(pdev), state);
2379 static int snd_audiodrive_pnp_resume(struct pnp_dev *pdev)
2381 return snd_es18xx_resume(pnp_get_drvdata(pdev));
2385 static struct pnp_driver es18xx_pnp_driver = {
2386 .name = "es18xx-pnpbios",
2387 .id_table = snd_audiodrive_pnpbiosids,
2388 .probe = snd_audiodrive_pnp_detect,
2389 .remove = __devexit_p(snd_audiodrive_pnp_remove),
2391 .suspend = snd_audiodrive_pnp_suspend,
2392 .resume = snd_audiodrive_pnp_resume,
2396 static int __devinit snd_audiodrive_pnpc_detect(struct pnp_card_link *pcard,
2397 const struct pnp_card_device_id *pid)
2400 struct snd_card *card;
2403 for ( ; dev < SNDRV_CARDS; dev++) {
2404 if (enable[dev] && isapnp[dev])
2407 if (dev >= SNDRV_CARDS)
2410 card = snd_es18xx_card_new(dev);
2414 if ((res = snd_audiodrive_pnpc(dev, card->private_data, pcard, pid)) < 0) {
2415 snd_card_free(card);
2418 snd_card_set_dev(card, &pcard->card->dev);
2419 if ((res = snd_audiodrive_probe(card, dev)) < 0) {
2420 snd_card_free(card);
2424 pnp_set_card_drvdata(pcard, card);
2426 es18xx_pnp_devices++;
2430 static void __devexit snd_audiodrive_pnpc_remove(struct pnp_card_link * pcard)
2432 snd_card_free(pnp_get_card_drvdata(pcard));
2433 pnp_set_card_drvdata(pcard, NULL);
2437 static int snd_audiodrive_pnpc_suspend(struct pnp_card_link *pcard, pm_message_t state)
2439 return snd_es18xx_suspend(pnp_get_card_drvdata(pcard), state);
2442 static int snd_audiodrive_pnpc_resume(struct pnp_card_link *pcard)
2444 return snd_es18xx_resume(pnp_get_card_drvdata(pcard));
2449 static struct pnp_card_driver es18xx_pnpc_driver = {
2450 .flags = PNP_DRIVER_RES_DISABLE,
2452 .id_table = snd_audiodrive_pnpids,
2453 .probe = snd_audiodrive_pnpc_detect,
2454 .remove = __devexit_p(snd_audiodrive_pnpc_remove),
2456 .suspend = snd_audiodrive_pnpc_suspend,
2457 .resume = snd_audiodrive_pnpc_resume,
2460 #endif /* CONFIG_PNP */
2462 static void __init_or_module snd_es18xx_unregister_all(void)
2467 if (pnpc_registered)
2468 pnp_unregister_card_driver(&es18xx_pnpc_driver);
2470 pnp_unregister_driver(&es18xx_pnp_driver);
2472 for (i = 0; i < ARRAY_SIZE(platform_devices); ++i)
2473 platform_device_unregister(platform_devices[i]);
2474 platform_driver_unregister(&snd_es18xx_nonpnp_driver);
2477 static int __init alsa_card_es18xx_init(void)
2479 int i, err, cards = 0;
2481 if ((err = platform_driver_register(&snd_es18xx_nonpnp_driver)) < 0)
2484 for (i = 0; i < SNDRV_CARDS; i++) {
2485 struct platform_device *device;
2486 if (! enable[i] || is_isapnp_selected(i))
2488 device = platform_device_register_simple(ES18XX_DRIVER,
2492 if (!platform_get_drvdata(device)) {
2493 platform_device_unregister(device);
2496 platform_devices[i] = device;
2501 err = pnp_register_driver(&es18xx_pnp_driver);
2504 err = pnp_register_card_driver(&es18xx_pnpc_driver);
2506 pnpc_registered = 1;
2507 cards += es18xx_pnp_devices;
2512 snd_printk(KERN_ERR "ESS AudioDrive ES18xx soundcard not found or device busy\n");
2514 snd_es18xx_unregister_all();
2520 static void __exit alsa_card_es18xx_exit(void)
2522 snd_es18xx_unregister_all();
2525 module_init(alsa_card_es18xx_init)
2526 module_exit(alsa_card_es18xx_exit)