2 * Driver for ESS Solo-1 (ES1938, ES1946, ES1969) soundcard
3 * Copyright (c) by Jaromir Koutek <miri@punknet.cz>,
4 * Jaroslav Kysela <perex@suse.cz>,
5 * Thomas Sailer <sailer@ife.ee.ethz.ch>,
6 * Abramo Bagnara <abramo@alsa-project.org>,
7 * Markus Gruber <gruber@eikon.tum.de>
9 * Rewritten from sonicvibes.c source.
12 * Rewrite better spinlocks
15 * This program is free software; you can redistribute it and/or modify
16 * it under the terms of the GNU General Public License as published by
17 * the Free Software Foundation; either version 2 of the License, or
18 * (at your option) any later version.
20 * This program is distributed in the hope that it will be useful,
21 * but WITHOUT ANY WARRANTY; without even the implied warranty of
22 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 * GNU General Public License for more details.
25 * You should have received a copy of the GNU General Public License
26 * along with this program; if not, write to the Free Software
27 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
33 - Capture data is written unaligned starting from dma_base + 1 so I need to
34 disable mmap and to add a copy callback.
35 - After several cycle of the following:
36 while : ; do arecord -d1 -f cd -t raw | aplay -f cd ; done
37 a "playback write error (DMA or IRQ trouble?)" may happen.
38 This is due to playback interrupts not generated.
39 I suspect a timing issue.
40 - Sometimes the interrupt handler is invoked wrongly during playback.
41 This generates some harmless "Unexpected hw_pointer: wrong interrupt
43 I've seen that using small period sizes.
50 #include <sound/driver.h>
51 #include <linux/init.h>
52 #include <linux/interrupt.h>
53 #include <linux/pci.h>
54 #include <linux/slab.h>
55 #include <linux/gameport.h>
56 #include <linux/moduleparam.h>
57 #include <linux/delay.h>
58 #include <sound/core.h>
59 #include <sound/control.h>
60 #include <sound/pcm.h>
61 #include <sound/opl3.h>
62 #include <sound/mpu401.h>
63 #include <sound/initval.h>
67 MODULE_AUTHOR("Jaromir Koutek <miri@punknet.cz>");
68 MODULE_DESCRIPTION("ESS Solo-1");
69 MODULE_LICENSE("GPL");
70 MODULE_SUPPORTED_DEVICE("{{ESS,ES1938},"
73 "{TerraTec,128i PCI}}");
75 #if defined(CONFIG_GAMEPORT) || (defined(MODULE) && defined(CONFIG_GAMEPORT_MODULE))
76 #define SUPPORT_JOYSTICK 1
79 static int index
[SNDRV_CARDS
] = SNDRV_DEFAULT_IDX
; /* Index 0-MAX */
80 static char *id
[SNDRV_CARDS
] = SNDRV_DEFAULT_STR
; /* ID for this card */
81 static int enable
[SNDRV_CARDS
] = SNDRV_DEFAULT_ENABLE_PNP
; /* Enable this card */
83 module_param_array(index
, int, NULL
, 0444);
84 MODULE_PARM_DESC(index
, "Index value for ESS Solo-1 soundcard.");
85 module_param_array(id
, charp
, NULL
, 0444);
86 MODULE_PARM_DESC(id
, "ID string for ESS Solo-1 soundcard.");
87 module_param_array(enable
, bool, NULL
, 0444);
88 MODULE_PARM_DESC(enable
, "Enable ESS Solo-1 soundcard.");
90 #define SLIO_REG(chip, x) ((chip)->io_port + ESSIO_REG_##x)
92 #define SLDM_REG(chip, x) ((chip)->ddma_port + ESSDM_REG_##x)
94 #define SLSB_REG(chip, x) ((chip)->sb_port + ESSSB_REG_##x)
96 #define SL_PCI_LEGACYCONTROL 0x40
97 #define SL_PCI_CONFIG 0x50
98 #define SL_PCI_DDMACONTROL 0x60
100 #define ESSIO_REG_AUDIO2DMAADDR 0
101 #define ESSIO_REG_AUDIO2DMACOUNT 4
102 #define ESSIO_REG_AUDIO2MODE 6
103 #define ESSIO_REG_IRQCONTROL 7
105 #define ESSDM_REG_DMAADDR 0x00
106 #define ESSDM_REG_DMACOUNT 0x04
107 #define ESSDM_REG_DMACOMMAND 0x08
108 #define ESSDM_REG_DMASTATUS 0x08
109 #define ESSDM_REG_DMAMODE 0x0b
110 #define ESSDM_REG_DMACLEAR 0x0d
111 #define ESSDM_REG_DMAMASK 0x0f
113 #define ESSSB_REG_FMLOWADDR 0x00
114 #define ESSSB_REG_FMHIGHADDR 0x02
115 #define ESSSB_REG_MIXERADDR 0x04
116 #define ESSSB_REG_MIXERDATA 0x05
118 #define ESSSB_IREG_AUDIO1 0x14
119 #define ESSSB_IREG_MICMIX 0x1a
120 #define ESSSB_IREG_RECSRC 0x1c
121 #define ESSSB_IREG_MASTER 0x32
122 #define ESSSB_IREG_FM 0x36
123 #define ESSSB_IREG_AUXACD 0x38
124 #define ESSSB_IREG_AUXB 0x3a
125 #define ESSSB_IREG_PCSPEAKER 0x3c
126 #define ESSSB_IREG_LINE 0x3e
127 #define ESSSB_IREG_SPATCONTROL 0x50
128 #define ESSSB_IREG_SPATLEVEL 0x52
129 #define ESSSB_IREG_MASTER_LEFT 0x60
130 #define ESSSB_IREG_MASTER_RIGHT 0x62
131 #define ESSSB_IREG_MPU401CONTROL 0x64
132 #define ESSSB_IREG_MICMIXRECORD 0x68
133 #define ESSSB_IREG_AUDIO2RECORD 0x69
134 #define ESSSB_IREG_AUXACDRECORD 0x6a
135 #define ESSSB_IREG_FMRECORD 0x6b
136 #define ESSSB_IREG_AUXBRECORD 0x6c
137 #define ESSSB_IREG_MONO 0x6d
138 #define ESSSB_IREG_LINERECORD 0x6e
139 #define ESSSB_IREG_MONORECORD 0x6f
140 #define ESSSB_IREG_AUDIO2SAMPLE 0x70
141 #define ESSSB_IREG_AUDIO2MODE 0x71
142 #define ESSSB_IREG_AUDIO2FILTER 0x72
143 #define ESSSB_IREG_AUDIO2TCOUNTL 0x74
144 #define ESSSB_IREG_AUDIO2TCOUNTH 0x76
145 #define ESSSB_IREG_AUDIO2CONTROL1 0x78
146 #define ESSSB_IREG_AUDIO2CONTROL2 0x7a
147 #define ESSSB_IREG_AUDIO2 0x7c
149 #define ESSSB_REG_RESET 0x06
151 #define ESSSB_REG_READDATA 0x0a
152 #define ESSSB_REG_WRITEDATA 0x0c
153 #define ESSSB_REG_READSTATUS 0x0c
155 #define ESSSB_REG_STATUS 0x0e
157 #define ESS_CMD_EXTSAMPLERATE 0xa1
158 #define ESS_CMD_FILTERDIV 0xa2
159 #define ESS_CMD_DMACNTRELOADL 0xa4
160 #define ESS_CMD_DMACNTRELOADH 0xa5
161 #define ESS_CMD_ANALOGCONTROL 0xa8
162 #define ESS_CMD_IRQCONTROL 0xb1
163 #define ESS_CMD_DRQCONTROL 0xb2
164 #define ESS_CMD_RECLEVEL 0xb4
165 #define ESS_CMD_SETFORMAT 0xb6
166 #define ESS_CMD_SETFORMAT2 0xb7
167 #define ESS_CMD_DMACONTROL 0xb8
168 #define ESS_CMD_DMATYPE 0xb9
169 #define ESS_CMD_OFFSETLEFT 0xba
170 #define ESS_CMD_OFFSETRIGHT 0xbb
171 #define ESS_CMD_READREG 0xc0
172 #define ESS_CMD_ENABLEEXT 0xc6
173 #define ESS_CMD_PAUSEDMA 0xd0
174 #define ESS_CMD_ENABLEAUDIO1 0xd1
175 #define ESS_CMD_STOPAUDIO1 0xd3
176 #define ESS_CMD_AUDIO1STATUS 0xd8
177 #define ESS_CMD_CONTDMA 0xd4
178 #define ESS_CMD_TESTIRQ 0xf2
180 #define ESS_RECSRC_MIC 0
181 #define ESS_RECSRC_AUXACD 2
182 #define ESS_RECSRC_AUXB 5
183 #define ESS_RECSRC_LINE 6
184 #define ESS_RECSRC_NONE 7
194 #define SAVED_REG_SIZE 32 /* max. number of registers to save */
199 unsigned long io_port
;
200 unsigned long sb_port
;
201 unsigned long vc_port
;
202 unsigned long mpu_port
;
203 unsigned long game_port
;
204 unsigned long ddma_port
;
206 unsigned char irqmask
;
207 unsigned char revision
;
209 struct snd_kcontrol
*hw_volume
;
210 struct snd_kcontrol
*hw_switch
;
211 struct snd_kcontrol
*master_volume
;
212 struct snd_kcontrol
*master_switch
;
215 struct snd_card
*card
;
217 struct snd_pcm_substream
*capture_substream
;
218 struct snd_pcm_substream
*playback1_substream
;
219 struct snd_pcm_substream
*playback2_substream
;
220 struct snd_rawmidi
*rmidi
;
222 unsigned int dma1_size
;
223 unsigned int dma2_size
;
224 unsigned int dma1_start
;
225 unsigned int dma2_start
;
226 unsigned int dma1_shift
;
227 unsigned int dma2_shift
;
231 spinlock_t mixer_lock
;
232 struct snd_info_entry
*proc_entry
;
234 #ifdef SUPPORT_JOYSTICK
235 struct gameport
*gameport
;
238 unsigned char saved_regs
[SAVED_REG_SIZE
];
242 static irqreturn_t
snd_es1938_interrupt(int irq
, void *dev_id
, struct pt_regs
*regs
);
244 static struct pci_device_id snd_es1938_ids
[] = {
245 { 0x125d, 0x1969, PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, 0, }, /* Solo-1 */
249 MODULE_DEVICE_TABLE(pci
, snd_es1938_ids
);
251 #define RESET_LOOP_TIMEOUT 0x10000
252 #define WRITE_LOOP_TIMEOUT 0x10000
253 #define GET_LOOP_TIMEOUT 0x01000
256 /* -----------------------------------------------------------------
257 * Write to a mixer register
258 * -----------------------------------------------------------------*/
259 static void snd_es1938_mixer_write(struct es1938
*chip
, unsigned char reg
, unsigned char val
)
262 spin_lock_irqsave(&chip
->mixer_lock
, flags
);
263 outb(reg
, SLSB_REG(chip
, MIXERADDR
));
264 outb(val
, SLSB_REG(chip
, MIXERDATA
));
265 spin_unlock_irqrestore(&chip
->mixer_lock
, flags
);
267 snd_printk(KERN_DEBUG
"Mixer reg %02x set to %02x\n", reg
, val
);
271 /* -----------------------------------------------------------------
272 * Read from a mixer register
273 * -----------------------------------------------------------------*/
274 static int snd_es1938_mixer_read(struct es1938
*chip
, unsigned char reg
)
278 spin_lock_irqsave(&chip
->mixer_lock
, flags
);
279 outb(reg
, SLSB_REG(chip
, MIXERADDR
));
280 data
= inb(SLSB_REG(chip
, MIXERDATA
));
281 spin_unlock_irqrestore(&chip
->mixer_lock
, flags
);
283 snd_printk(KERN_DEBUG
"Mixer reg %02x now is %02x\n", reg
, data
);
288 /* -----------------------------------------------------------------
289 * Write to some bits of a mixer register (return old value)
290 * -----------------------------------------------------------------*/
291 static int snd_es1938_mixer_bits(struct es1938
*chip
, unsigned char reg
,
292 unsigned char mask
, unsigned char val
)
295 unsigned char old
, new, oval
;
296 spin_lock_irqsave(&chip
->mixer_lock
, flags
);
297 outb(reg
, SLSB_REG(chip
, MIXERADDR
));
298 old
= inb(SLSB_REG(chip
, MIXERDATA
));
301 new = (old
& ~mask
) | (val
& mask
);
302 outb(new, SLSB_REG(chip
, MIXERDATA
));
304 snd_printk(KERN_DEBUG
"Mixer reg %02x was %02x, set to %02x\n",
308 spin_unlock_irqrestore(&chip
->mixer_lock
, flags
);
312 /* -----------------------------------------------------------------
313 * Write command to Controller Registers
314 * -----------------------------------------------------------------*/
315 static void snd_es1938_write_cmd(struct es1938
*chip
, unsigned char cmd
)
319 for (i
= 0; i
< WRITE_LOOP_TIMEOUT
; i
++) {
320 if (!(v
= inb(SLSB_REG(chip
, READSTATUS
)) & 0x80)) {
321 outb(cmd
, SLSB_REG(chip
, WRITEDATA
));
325 printk(KERN_ERR
"snd_es1938_write_cmd timeout (0x02%x/0x02%x)\n", cmd
, v
);
328 /* -----------------------------------------------------------------
329 * Read the Read Data Buffer
330 * -----------------------------------------------------------------*/
331 static int snd_es1938_get_byte(struct es1938
*chip
)
335 for (i
= GET_LOOP_TIMEOUT
; i
; i
--)
336 if ((v
= inb(SLSB_REG(chip
, STATUS
))) & 0x80)
337 return inb(SLSB_REG(chip
, READDATA
));
338 snd_printk(KERN_ERR
"get_byte timeout: status 0x02%x\n", v
);
342 /* -----------------------------------------------------------------
343 * Write value cmd register
344 * -----------------------------------------------------------------*/
345 static void snd_es1938_write(struct es1938
*chip
, unsigned char reg
, unsigned char val
)
348 spin_lock_irqsave(&chip
->reg_lock
, flags
);
349 snd_es1938_write_cmd(chip
, reg
);
350 snd_es1938_write_cmd(chip
, val
);
351 spin_unlock_irqrestore(&chip
->reg_lock
, flags
);
353 snd_printk(KERN_DEBUG
"Reg %02x set to %02x\n", reg
, val
);
357 /* -----------------------------------------------------------------
358 * Read data from cmd register and return it
359 * -----------------------------------------------------------------*/
360 static unsigned char snd_es1938_read(struct es1938
*chip
, unsigned char reg
)
364 spin_lock_irqsave(&chip
->reg_lock
, flags
);
365 snd_es1938_write_cmd(chip
, ESS_CMD_READREG
);
366 snd_es1938_write_cmd(chip
, reg
);
367 val
= snd_es1938_get_byte(chip
);
368 spin_unlock_irqrestore(&chip
->reg_lock
, flags
);
370 snd_printk(KERN_DEBUG
"Reg %02x now is %02x\n", reg
, val
);
375 /* -----------------------------------------------------------------
376 * Write data to cmd register and return old value
377 * -----------------------------------------------------------------*/
378 static int snd_es1938_bits(struct es1938
*chip
, unsigned char reg
, unsigned char mask
,
382 unsigned char old
, new, oval
;
383 spin_lock_irqsave(&chip
->reg_lock
, flags
);
384 snd_es1938_write_cmd(chip
, ESS_CMD_READREG
);
385 snd_es1938_write_cmd(chip
, reg
);
386 old
= snd_es1938_get_byte(chip
);
389 snd_es1938_write_cmd(chip
, reg
);
390 new = (old
& ~mask
) | (val
& mask
);
391 snd_es1938_write_cmd(chip
, new);
393 snd_printk(KERN_DEBUG
"Reg %02x was %02x, set to %02x\n",
397 spin_unlock_irqrestore(&chip
->reg_lock
, flags
);
401 /* --------------------------------------------------------------------
403 * --------------------------------------------------------------------*/
404 static void snd_es1938_reset(struct es1938
*chip
)
408 outb(3, SLSB_REG(chip
, RESET
));
409 inb(SLSB_REG(chip
, RESET
));
410 outb(0, SLSB_REG(chip
, RESET
));
411 for (i
= 0; i
< RESET_LOOP_TIMEOUT
; i
++) {
412 if (inb(SLSB_REG(chip
, STATUS
)) & 0x80) {
413 if (inb(SLSB_REG(chip
, READDATA
)) == 0xaa)
417 snd_printk(KERN_ERR
"ESS Solo-1 reset failed\n");
420 snd_es1938_write_cmd(chip
, ESS_CMD_ENABLEEXT
);
422 /* Demand transfer DMA: 4 bytes per DMA request */
423 snd_es1938_write(chip
, ESS_CMD_DMATYPE
, 2);
425 /* Change behaviour of register A1
427 2nd channel DAC asynchronous */
428 snd_es1938_mixer_write(chip
, ESSSB_IREG_AUDIO2MODE
, 0x32);
429 /* enable/select DMA channel and IRQ channel */
430 snd_es1938_bits(chip
, ESS_CMD_IRQCONTROL
, 0xf0, 0x50);
431 snd_es1938_bits(chip
, ESS_CMD_DRQCONTROL
, 0xf0, 0x50);
432 snd_es1938_write_cmd(chip
, ESS_CMD_ENABLEAUDIO1
);
433 /* Set spatializer parameters to recommended values */
434 snd_es1938_mixer_write(chip
, 0x54, 0x8f);
435 snd_es1938_mixer_write(chip
, 0x56, 0x95);
436 snd_es1938_mixer_write(chip
, 0x58, 0x94);
437 snd_es1938_mixer_write(chip
, 0x5a, 0x80);
440 /* --------------------------------------------------------------------
442 * --------------------------------------------------------------------*/
443 static void snd_es1938_reset_fifo(struct es1938
*chip
)
445 outb(2, SLSB_REG(chip
, RESET
));
446 outb(0, SLSB_REG(chip
, RESET
));
449 static struct snd_ratnum clocks
[2] = {
464 static struct snd_pcm_hw_constraint_ratnums hw_constraints_clocks
= {
470 static void snd_es1938_rate_set(struct es1938
*chip
,
471 struct snd_pcm_substream
*substream
,
474 unsigned int bits
, div0
;
475 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
476 if (runtime
->rate_num
== clocks
[0].num
)
477 bits
= 128 - runtime
->rate_den
;
479 bits
= 256 - runtime
->rate_den
;
481 /* set filter register */
482 div0
= 256 - 7160000*20/(8*82*runtime
->rate
);
485 snd_es1938_mixer_write(chip
, 0x70, bits
);
486 snd_es1938_mixer_write(chip
, 0x72, div0
);
488 snd_es1938_write(chip
, 0xA1, bits
);
489 snd_es1938_write(chip
, 0xA2, div0
);
493 /* --------------------------------------------------------------------
494 * Configure Solo1 builtin DMA Controller
495 * --------------------------------------------------------------------*/
497 static void snd_es1938_playback1_setdma(struct es1938
*chip
)
499 outb(0x00, SLIO_REG(chip
, AUDIO2MODE
));
500 outl(chip
->dma2_start
, SLIO_REG(chip
, AUDIO2DMAADDR
));
501 outw(0, SLIO_REG(chip
, AUDIO2DMACOUNT
));
502 outw(chip
->dma2_size
, SLIO_REG(chip
, AUDIO2DMACOUNT
));
505 static void snd_es1938_playback2_setdma(struct es1938
*chip
)
507 /* Enable DMA controller */
508 outb(0xc4, SLDM_REG(chip
, DMACOMMAND
));
509 /* 1. Master reset */
510 outb(0, SLDM_REG(chip
, DMACLEAR
));
512 outb(1, SLDM_REG(chip
, DMAMASK
));
513 outb(0x18, SLDM_REG(chip
, DMAMODE
));
514 outl(chip
->dma1_start
, SLDM_REG(chip
, DMAADDR
));
515 outw(chip
->dma1_size
- 1, SLDM_REG(chip
, DMACOUNT
));
517 outb(0, SLDM_REG(chip
, DMAMASK
));
520 static void snd_es1938_capture_setdma(struct es1938
*chip
)
522 /* Enable DMA controller */
523 outb(0xc4, SLDM_REG(chip
, DMACOMMAND
));
524 /* 1. Master reset */
525 outb(0, SLDM_REG(chip
, DMACLEAR
));
527 outb(1, SLDM_REG(chip
, DMAMASK
));
528 outb(0x14, SLDM_REG(chip
, DMAMODE
));
529 outl(chip
->dma1_start
, SLDM_REG(chip
, DMAADDR
));
530 outw(chip
->dma1_size
- 1, SLDM_REG(chip
, DMACOUNT
));
532 outb(0, SLDM_REG(chip
, DMAMASK
));
535 /* ----------------------------------------------------------------------
540 static int snd_es1938_capture_trigger(struct snd_pcm_substream
*substream
,
543 struct es1938
*chip
= snd_pcm_substream_chip(substream
);
546 case SNDRV_PCM_TRIGGER_START
:
547 case SNDRV_PCM_TRIGGER_RESUME
:
549 chip
->active
|= ADC1
;
551 case SNDRV_PCM_TRIGGER_STOP
:
552 case SNDRV_PCM_TRIGGER_SUSPEND
:
554 chip
->active
&= ~ADC1
;
559 snd_es1938_write(chip
, ESS_CMD_DMACONTROL
, val
);
563 static int snd_es1938_playback1_trigger(struct snd_pcm_substream
*substream
,
566 struct es1938
*chip
= snd_pcm_substream_chip(substream
);
568 case SNDRV_PCM_TRIGGER_START
:
569 case SNDRV_PCM_TRIGGER_RESUME
:
570 /* According to the documentation this should be:
571 0x13 but that value may randomly swap stereo channels */
572 snd_es1938_mixer_write(chip
, ESSSB_IREG_AUDIO2CONTROL1
, 0x92);
574 snd_es1938_mixer_write(chip
, ESSSB_IREG_AUDIO2CONTROL1
, 0x93);
575 /* This two stage init gives the FIFO -> DAC connection time to
576 * settle before first data from DMA flows in. This should ensure
577 * no swapping of stereo channels. Report a bug if otherwise :-) */
578 outb(0x0a, SLIO_REG(chip
, AUDIO2MODE
));
579 chip
->active
|= DAC2
;
581 case SNDRV_PCM_TRIGGER_STOP
:
582 case SNDRV_PCM_TRIGGER_SUSPEND
:
583 outb(0, SLIO_REG(chip
, AUDIO2MODE
));
584 snd_es1938_mixer_write(chip
, ESSSB_IREG_AUDIO2CONTROL1
, 0);
585 chip
->active
&= ~DAC2
;
593 static int snd_es1938_playback2_trigger(struct snd_pcm_substream
*substream
,
596 struct es1938
*chip
= snd_pcm_substream_chip(substream
);
599 case SNDRV_PCM_TRIGGER_START
:
600 case SNDRV_PCM_TRIGGER_RESUME
:
602 chip
->active
|= DAC1
;
604 case SNDRV_PCM_TRIGGER_STOP
:
605 case SNDRV_PCM_TRIGGER_SUSPEND
:
607 chip
->active
&= ~DAC1
;
612 snd_es1938_write(chip
, ESS_CMD_DMACONTROL
, val
);
616 static int snd_es1938_playback_trigger(struct snd_pcm_substream
*substream
,
619 switch (substream
->number
) {
621 return snd_es1938_playback1_trigger(substream
, cmd
);
623 return snd_es1938_playback2_trigger(substream
, cmd
);
629 /* --------------------------------------------------------------------
630 * First channel for Extended Mode Audio 1 ADC Operation
631 * --------------------------------------------------------------------*/
632 static int snd_es1938_capture_prepare(struct snd_pcm_substream
*substream
)
634 struct es1938
*chip
= snd_pcm_substream_chip(substream
);
635 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
637 unsigned int size
= snd_pcm_lib_buffer_bytes(substream
);
638 unsigned int count
= snd_pcm_lib_period_bytes(substream
);
640 chip
->dma1_size
= size
;
641 chip
->dma1_start
= runtime
->dma_addr
;
643 mono
= (runtime
->channels
> 1) ? 0 : 1;
644 is8
= snd_pcm_format_width(runtime
->format
) == 16 ? 0 : 1;
645 u
= snd_pcm_format_unsigned(runtime
->format
);
647 chip
->dma1_shift
= 2 - mono
- is8
;
649 snd_es1938_reset_fifo(chip
);
652 snd_es1938_bits(chip
, ESS_CMD_ANALOGCONTROL
, 0x03, (mono
? 2 : 1));
654 /* set clock and counters */
655 snd_es1938_rate_set(chip
, substream
, ADC1
);
657 count
= 0x10000 - count
;
658 snd_es1938_write(chip
, ESS_CMD_DMACNTRELOADL
, count
& 0xff);
659 snd_es1938_write(chip
, ESS_CMD_DMACNTRELOADH
, count
>> 8);
661 /* initialize and configure ADC */
662 snd_es1938_write(chip
, ESS_CMD_SETFORMAT2
, u
? 0x51 : 0x71);
663 snd_es1938_write(chip
, ESS_CMD_SETFORMAT2
, 0x90 |
665 (is8
? 0x00 : 0x04) |
666 (mono
? 0x40 : 0x08));
668 // snd_es1938_reset_fifo(chip);
670 /* 11. configure system interrupt controller and DMA controller */
671 snd_es1938_capture_setdma(chip
);
677 /* ------------------------------------------------------------------------------
678 * Second Audio channel DAC Operation
679 * ------------------------------------------------------------------------------*/
680 static int snd_es1938_playback1_prepare(struct snd_pcm_substream
*substream
)
682 struct es1938
*chip
= snd_pcm_substream_chip(substream
);
683 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
685 unsigned int size
= snd_pcm_lib_buffer_bytes(substream
);
686 unsigned int count
= snd_pcm_lib_period_bytes(substream
);
688 chip
->dma2_size
= size
;
689 chip
->dma2_start
= runtime
->dma_addr
;
691 mono
= (runtime
->channels
> 1) ? 0 : 1;
692 is8
= snd_pcm_format_width(runtime
->format
) == 16 ? 0 : 1;
693 u
= snd_pcm_format_unsigned(runtime
->format
);
695 chip
->dma2_shift
= 2 - mono
- is8
;
697 snd_es1938_reset_fifo(chip
);
699 /* set clock and counters */
700 snd_es1938_rate_set(chip
, substream
, DAC2
);
703 count
= 0x10000 - count
;
704 snd_es1938_mixer_write(chip
, ESSSB_IREG_AUDIO2TCOUNTL
, count
& 0xff);
705 snd_es1938_mixer_write(chip
, ESSSB_IREG_AUDIO2TCOUNTH
, count
>> 8);
707 /* initialize and configure Audio 2 DAC */
708 snd_es1938_mixer_write(chip
, ESSSB_IREG_AUDIO2CONTROL2
, 0x40 | (u
? 0 : 4) |
709 (mono
? 0 : 2) | (is8
? 0 : 1));
712 snd_es1938_playback1_setdma(chip
);
717 static int snd_es1938_playback2_prepare(struct snd_pcm_substream
*substream
)
719 struct es1938
*chip
= snd_pcm_substream_chip(substream
);
720 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
722 unsigned int size
= snd_pcm_lib_buffer_bytes(substream
);
723 unsigned int count
= snd_pcm_lib_period_bytes(substream
);
725 chip
->dma1_size
= size
;
726 chip
->dma1_start
= runtime
->dma_addr
;
728 mono
= (runtime
->channels
> 1) ? 0 : 1;
729 is8
= snd_pcm_format_width(runtime
->format
) == 16 ? 0 : 1;
730 u
= snd_pcm_format_unsigned(runtime
->format
);
732 chip
->dma1_shift
= 2 - mono
- is8
;
734 count
= 0x10000 - count
;
737 snd_es1938_reset_fifo(chip
);
739 snd_es1938_bits(chip
, ESS_CMD_ANALOGCONTROL
, 0x03, (mono
? 2 : 1));
741 /* set clock and counters */
742 snd_es1938_rate_set(chip
, substream
, DAC1
);
743 snd_es1938_write(chip
, ESS_CMD_DMACNTRELOADL
, count
& 0xff);
744 snd_es1938_write(chip
, ESS_CMD_DMACNTRELOADH
, count
>> 8);
746 /* initialized and configure DAC */
747 snd_es1938_write(chip
, ESS_CMD_SETFORMAT
, u
? 0x80 : 0x00);
748 snd_es1938_write(chip
, ESS_CMD_SETFORMAT
, u
? 0x51 : 0x71);
749 snd_es1938_write(chip
, ESS_CMD_SETFORMAT2
,
750 0x90 | (mono
? 0x40 : 0x08) |
751 (is8
? 0x00 : 0x04) | (u
? 0x00 : 0x20));
754 snd_es1938_playback2_setdma(chip
);
759 static int snd_es1938_playback_prepare(struct snd_pcm_substream
*substream
)
761 switch (substream
->number
) {
763 return snd_es1938_playback1_prepare(substream
);
765 return snd_es1938_playback2_prepare(substream
);
771 static snd_pcm_uframes_t
snd_es1938_capture_pointer(struct snd_pcm_substream
*substream
)
773 struct es1938
*chip
= snd_pcm_substream_chip(substream
);
777 /* This stuff is *needed*, don't ask why - AB */
778 old
= inw(SLDM_REG(chip
, DMACOUNT
));
779 while ((new = inw(SLDM_REG(chip
, DMACOUNT
))) != old
)
781 ptr
= chip
->dma1_size
- 1 - new;
783 ptr
= inl(SLDM_REG(chip
, DMAADDR
)) - chip
->dma1_start
;
785 return ptr
>> chip
->dma1_shift
;
788 static snd_pcm_uframes_t
snd_es1938_playback1_pointer(struct snd_pcm_substream
*substream
)
790 struct es1938
*chip
= snd_pcm_substream_chip(substream
);
793 ptr
= chip
->dma2_size
- inw(SLIO_REG(chip
, AUDIO2DMACOUNT
));
795 ptr
= inl(SLIO_REG(chip
, AUDIO2DMAADDR
)) - chip
->dma2_start
;
797 return ptr
>> chip
->dma2_shift
;
800 static snd_pcm_uframes_t
snd_es1938_playback2_pointer(struct snd_pcm_substream
*substream
)
802 struct es1938
*chip
= snd_pcm_substream_chip(substream
);
806 /* This stuff is *needed*, don't ask why - AB */
807 old
= inw(SLDM_REG(chip
, DMACOUNT
));
808 while ((new = inw(SLDM_REG(chip
, DMACOUNT
))) != old
)
810 ptr
= chip
->dma1_size
- 1 - new;
812 ptr
= inl(SLDM_REG(chip
, DMAADDR
)) - chip
->dma1_start
;
814 return ptr
>> chip
->dma1_shift
;
817 static snd_pcm_uframes_t
snd_es1938_playback_pointer(struct snd_pcm_substream
*substream
)
819 switch (substream
->number
) {
821 return snd_es1938_playback1_pointer(substream
);
823 return snd_es1938_playback2_pointer(substream
);
829 static int snd_es1938_capture_copy(struct snd_pcm_substream
*substream
,
831 snd_pcm_uframes_t pos
,
833 snd_pcm_uframes_t count
)
835 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
836 struct es1938
*chip
= snd_pcm_substream_chip(substream
);
837 pos
<<= chip
->dma1_shift
;
838 count
<<= chip
->dma1_shift
;
839 snd_assert(pos
+ count
<= chip
->dma1_size
, return -EINVAL
);
840 if (pos
+ count
< chip
->dma1_size
) {
841 if (copy_to_user(dst
, runtime
->dma_area
+ pos
+ 1, count
))
844 if (copy_to_user(dst
, runtime
->dma_area
+ pos
+ 1, count
- 1))
846 if (put_user(runtime
->dma_area
[0], ((unsigned char __user
*)dst
) + count
- 1))
855 static int snd_es1938_pcm_hw_params(struct snd_pcm_substream
*substream
,
856 struct snd_pcm_hw_params
*hw_params
)
861 if ((err
= snd_pcm_lib_malloc_pages(substream
, params_buffer_bytes(hw_params
))) < 0)
866 static int snd_es1938_pcm_hw_free(struct snd_pcm_substream
*substream
)
868 return snd_pcm_lib_free_pages(substream
);
871 /* ----------------------------------------------------------------------
872 * Audio1 Capture (ADC)
873 * ----------------------------------------------------------------------*/
874 static struct snd_pcm_hardware snd_es1938_capture
=
876 .info
= (SNDRV_PCM_INFO_INTERLEAVED
|
877 SNDRV_PCM_INFO_BLOCK_TRANSFER
),
878 .formats
= (SNDRV_PCM_FMTBIT_U8
| SNDRV_PCM_FMTBIT_S16_LE
|
879 SNDRV_PCM_FMTBIT_S8
| SNDRV_PCM_FMTBIT_U16_LE
),
880 .rates
= SNDRV_PCM_RATE_CONTINUOUS
| SNDRV_PCM_RATE_8000_48000
,
885 .buffer_bytes_max
= 0x8000, /* DMA controller screws on higher values */
886 .period_bytes_min
= 64,
887 .period_bytes_max
= 0x8000,
893 /* -----------------------------------------------------------------------
894 * Audio2 Playback (DAC)
895 * -----------------------------------------------------------------------*/
896 static struct snd_pcm_hardware snd_es1938_playback
=
898 .info
= (SNDRV_PCM_INFO_MMAP
| SNDRV_PCM_INFO_INTERLEAVED
|
899 SNDRV_PCM_INFO_BLOCK_TRANSFER
|
900 SNDRV_PCM_INFO_MMAP_VALID
),
901 .formats
= (SNDRV_PCM_FMTBIT_U8
| SNDRV_PCM_FMTBIT_S16_LE
|
902 SNDRV_PCM_FMTBIT_S8
| SNDRV_PCM_FMTBIT_U16_LE
),
903 .rates
= SNDRV_PCM_RATE_CONTINUOUS
| SNDRV_PCM_RATE_8000_48000
,
908 .buffer_bytes_max
= 0x8000, /* DMA controller screws on higher values */
909 .period_bytes_min
= 64,
910 .period_bytes_max
= 0x8000,
916 static int snd_es1938_capture_open(struct snd_pcm_substream
*substream
)
918 struct es1938
*chip
= snd_pcm_substream_chip(substream
);
919 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
921 if (chip
->playback2_substream
)
923 chip
->capture_substream
= substream
;
924 runtime
->hw
= snd_es1938_capture
;
925 snd_pcm_hw_constraint_ratnums(runtime
, 0, SNDRV_PCM_HW_PARAM_RATE
,
926 &hw_constraints_clocks
);
927 snd_pcm_hw_constraint_minmax(runtime
, SNDRV_PCM_HW_PARAM_BUFFER_BYTES
, 0, 0xff00);
931 static int snd_es1938_playback_open(struct snd_pcm_substream
*substream
)
933 struct es1938
*chip
= snd_pcm_substream_chip(substream
);
934 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
936 switch (substream
->number
) {
938 chip
->playback1_substream
= substream
;
941 if (chip
->capture_substream
)
943 chip
->playback2_substream
= substream
;
949 runtime
->hw
= snd_es1938_playback
;
950 snd_pcm_hw_constraint_ratnums(runtime
, 0, SNDRV_PCM_HW_PARAM_RATE
,
951 &hw_constraints_clocks
);
952 snd_pcm_hw_constraint_minmax(runtime
, SNDRV_PCM_HW_PARAM_BUFFER_BYTES
, 0, 0xff00);
956 static int snd_es1938_capture_close(struct snd_pcm_substream
*substream
)
958 struct es1938
*chip
= snd_pcm_substream_chip(substream
);
960 chip
->capture_substream
= NULL
;
964 static int snd_es1938_playback_close(struct snd_pcm_substream
*substream
)
966 struct es1938
*chip
= snd_pcm_substream_chip(substream
);
968 switch (substream
->number
) {
970 chip
->playback1_substream
= NULL
;
973 chip
->playback2_substream
= NULL
;
982 static struct snd_pcm_ops snd_es1938_playback_ops
= {
983 .open
= snd_es1938_playback_open
,
984 .close
= snd_es1938_playback_close
,
985 .ioctl
= snd_pcm_lib_ioctl
,
986 .hw_params
= snd_es1938_pcm_hw_params
,
987 .hw_free
= snd_es1938_pcm_hw_free
,
988 .prepare
= snd_es1938_playback_prepare
,
989 .trigger
= snd_es1938_playback_trigger
,
990 .pointer
= snd_es1938_playback_pointer
,
993 static struct snd_pcm_ops snd_es1938_capture_ops
= {
994 .open
= snd_es1938_capture_open
,
995 .close
= snd_es1938_capture_close
,
996 .ioctl
= snd_pcm_lib_ioctl
,
997 .hw_params
= snd_es1938_pcm_hw_params
,
998 .hw_free
= snd_es1938_pcm_hw_free
,
999 .prepare
= snd_es1938_capture_prepare
,
1000 .trigger
= snd_es1938_capture_trigger
,
1001 .pointer
= snd_es1938_capture_pointer
,
1002 .copy
= snd_es1938_capture_copy
,
1005 static int __devinit
snd_es1938_new_pcm(struct es1938
*chip
, int device
)
1007 struct snd_pcm
*pcm
;
1010 if ((err
= snd_pcm_new(chip
->card
, "es-1938-1946", device
, 2, 1, &pcm
)) < 0)
1012 snd_pcm_set_ops(pcm
, SNDRV_PCM_STREAM_PLAYBACK
, &snd_es1938_playback_ops
);
1013 snd_pcm_set_ops(pcm
, SNDRV_PCM_STREAM_CAPTURE
, &snd_es1938_capture_ops
);
1015 pcm
->private_data
= chip
;
1016 pcm
->info_flags
= 0;
1017 strcpy(pcm
->name
, "ESS Solo-1");
1019 snd_pcm_lib_preallocate_pages_for_all(pcm
, SNDRV_DMA_TYPE_DEV
,
1020 snd_dma_pci_data(chip
->pci
), 64*1024, 64*1024);
1026 /* -------------------------------------------------------------------
1028 * *** Mixer part ***
1031 static int snd_es1938_info_mux(struct snd_kcontrol
*kcontrol
,
1032 struct snd_ctl_elem_info
*uinfo
)
1034 static char *texts
[8] = {
1035 "Mic", "Mic Master", "CD", "AOUT",
1036 "Mic1", "Mix", "Line", "Master"
1039 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_ENUMERATED
;
1041 uinfo
->value
.enumerated
.items
= 8;
1042 if (uinfo
->value
.enumerated
.item
> 7)
1043 uinfo
->value
.enumerated
.item
= 7;
1044 strcpy(uinfo
->value
.enumerated
.name
, texts
[uinfo
->value
.enumerated
.item
]);
1048 static int snd_es1938_get_mux(struct snd_kcontrol
*kcontrol
,
1049 struct snd_ctl_elem_value
*ucontrol
)
1051 struct es1938
*chip
= snd_kcontrol_chip(kcontrol
);
1052 ucontrol
->value
.enumerated
.item
[0] = snd_es1938_mixer_read(chip
, 0x1c) & 0x07;
1056 static int snd_es1938_put_mux(struct snd_kcontrol
*kcontrol
,
1057 struct snd_ctl_elem_value
*ucontrol
)
1059 struct es1938
*chip
= snd_kcontrol_chip(kcontrol
);
1060 unsigned char val
= ucontrol
->value
.enumerated
.item
[0];
1064 return snd_es1938_mixer_bits(chip
, 0x1c, 0x07, val
) != val
;
1067 static int snd_es1938_info_spatializer_enable(struct snd_kcontrol
*kcontrol
,
1068 struct snd_ctl_elem_info
*uinfo
)
1070 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_BOOLEAN
;
1072 uinfo
->value
.integer
.min
= 0;
1073 uinfo
->value
.integer
.max
= 1;
1077 static int snd_es1938_get_spatializer_enable(struct snd_kcontrol
*kcontrol
,
1078 struct snd_ctl_elem_value
*ucontrol
)
1080 struct es1938
*chip
= snd_kcontrol_chip(kcontrol
);
1081 unsigned char val
= snd_es1938_mixer_read(chip
, 0x50);
1082 ucontrol
->value
.integer
.value
[0] = !!(val
& 8);
1086 static int snd_es1938_put_spatializer_enable(struct snd_kcontrol
*kcontrol
,
1087 struct snd_ctl_elem_value
*ucontrol
)
1089 struct es1938
*chip
= snd_kcontrol_chip(kcontrol
);
1090 unsigned char oval
, nval
;
1092 nval
= ucontrol
->value
.integer
.value
[0] ? 0x0c : 0x04;
1093 oval
= snd_es1938_mixer_read(chip
, 0x50) & 0x0c;
1094 change
= nval
!= oval
;
1096 snd_es1938_mixer_write(chip
, 0x50, nval
& ~0x04);
1097 snd_es1938_mixer_write(chip
, 0x50, nval
);
1102 static int snd_es1938_info_hw_volume(struct snd_kcontrol
*kcontrol
,
1103 struct snd_ctl_elem_info
*uinfo
)
1105 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_INTEGER
;
1107 uinfo
->value
.integer
.min
= 0;
1108 uinfo
->value
.integer
.max
= 63;
1112 static int snd_es1938_get_hw_volume(struct snd_kcontrol
*kcontrol
,
1113 struct snd_ctl_elem_value
*ucontrol
)
1115 struct es1938
*chip
= snd_kcontrol_chip(kcontrol
);
1116 ucontrol
->value
.integer
.value
[0] = snd_es1938_mixer_read(chip
, 0x61) & 0x3f;
1117 ucontrol
->value
.integer
.value
[1] = snd_es1938_mixer_read(chip
, 0x63) & 0x3f;
1121 static int snd_es1938_info_hw_switch(struct snd_kcontrol
*kcontrol
,
1122 struct snd_ctl_elem_info
*uinfo
)
1124 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_BOOLEAN
;
1126 uinfo
->value
.integer
.min
= 0;
1127 uinfo
->value
.integer
.max
= 1;
1131 static int snd_es1938_get_hw_switch(struct snd_kcontrol
*kcontrol
,
1132 struct snd_ctl_elem_value
*ucontrol
)
1134 struct es1938
*chip
= snd_kcontrol_chip(kcontrol
);
1135 ucontrol
->value
.integer
.value
[0] = !(snd_es1938_mixer_read(chip
, 0x61) & 0x40);
1136 ucontrol
->value
.integer
.value
[1] = !(snd_es1938_mixer_read(chip
, 0x63) & 0x40);
1140 static void snd_es1938_hwv_free(struct snd_kcontrol
*kcontrol
)
1142 struct es1938
*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_es1938_reg_bits(struct es1938
*chip
, unsigned char reg
,
1150 unsigned char mask
, unsigned char val
)
1153 return snd_es1938_mixer_bits(chip
, reg
, mask
, val
);
1155 return snd_es1938_bits(chip
, reg
, mask
, val
);
1158 static int snd_es1938_reg_read(struct es1938
*chip
, unsigned char reg
)
1161 return snd_es1938_mixer_read(chip
, reg
);
1163 return snd_es1938_read(chip
, reg
);
1166 #define ES1938_SINGLE(xname, xindex, reg, shift, mask, invert) \
1167 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = xindex, \
1168 .info = snd_es1938_info_single, \
1169 .get = snd_es1938_get_single, .put = snd_es1938_put_single, \
1170 .private_value = reg | (shift << 8) | (mask << 16) | (invert << 24) }
1172 static int snd_es1938_info_single(struct snd_kcontrol
*kcontrol
,
1173 struct snd_ctl_elem_info
*uinfo
)
1175 int mask
= (kcontrol
->private_value
>> 16) & 0xff;
1177 uinfo
->type
= mask
== 1 ? SNDRV_CTL_ELEM_TYPE_BOOLEAN
: SNDRV_CTL_ELEM_TYPE_INTEGER
;
1179 uinfo
->value
.integer
.min
= 0;
1180 uinfo
->value
.integer
.max
= mask
;
1184 static int snd_es1938_get_single(struct snd_kcontrol
*kcontrol
,
1185 struct snd_ctl_elem_value
*ucontrol
)
1187 struct es1938
*chip
= snd_kcontrol_chip(kcontrol
);
1188 int reg
= kcontrol
->private_value
& 0xff;
1189 int shift
= (kcontrol
->private_value
>> 8) & 0xff;
1190 int mask
= (kcontrol
->private_value
>> 16) & 0xff;
1191 int invert
= (kcontrol
->private_value
>> 24) & 0xff;
1194 val
= snd_es1938_reg_read(chip
, reg
);
1195 ucontrol
->value
.integer
.value
[0] = (val
>> shift
) & mask
;
1197 ucontrol
->value
.integer
.value
[0] = mask
- ucontrol
->value
.integer
.value
[0];
1201 static int snd_es1938_put_single(struct snd_kcontrol
*kcontrol
,
1202 struct snd_ctl_elem_value
*ucontrol
)
1204 struct es1938
*chip
= snd_kcontrol_chip(kcontrol
);
1205 int reg
= kcontrol
->private_value
& 0xff;
1206 int shift
= (kcontrol
->private_value
>> 8) & 0xff;
1207 int mask
= (kcontrol
->private_value
>> 16) & 0xff;
1208 int invert
= (kcontrol
->private_value
>> 24) & 0xff;
1211 val
= (ucontrol
->value
.integer
.value
[0] & mask
);
1216 return snd_es1938_reg_bits(chip
, reg
, mask
, val
) != val
;
1219 #define ES1938_DOUBLE(xname, xindex, left_reg, right_reg, shift_left, shift_right, mask, invert) \
1220 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = xindex, \
1221 .info = snd_es1938_info_double, \
1222 .get = snd_es1938_get_double, .put = snd_es1938_put_double, \
1223 .private_value = left_reg | (right_reg << 8) | (shift_left << 16) | (shift_right << 19) | (mask << 24) | (invert << 22) }
1225 static int snd_es1938_info_double(struct snd_kcontrol
*kcontrol
,
1226 struct snd_ctl_elem_info
*uinfo
)
1228 int mask
= (kcontrol
->private_value
>> 24) & 0xff;
1230 uinfo
->type
= mask
== 1 ? SNDRV_CTL_ELEM_TYPE_BOOLEAN
: SNDRV_CTL_ELEM_TYPE_INTEGER
;
1232 uinfo
->value
.integer
.min
= 0;
1233 uinfo
->value
.integer
.max
= mask
;
1237 static int snd_es1938_get_double(struct snd_kcontrol
*kcontrol
,
1238 struct snd_ctl_elem_value
*ucontrol
)
1240 struct es1938
*chip
= snd_kcontrol_chip(kcontrol
);
1241 int left_reg
= kcontrol
->private_value
& 0xff;
1242 int right_reg
= (kcontrol
->private_value
>> 8) & 0xff;
1243 int shift_left
= (kcontrol
->private_value
>> 16) & 0x07;
1244 int shift_right
= (kcontrol
->private_value
>> 19) & 0x07;
1245 int mask
= (kcontrol
->private_value
>> 24) & 0xff;
1246 int invert
= (kcontrol
->private_value
>> 22) & 1;
1247 unsigned char left
, right
;
1249 left
= snd_es1938_reg_read(chip
, left_reg
);
1250 if (left_reg
!= right_reg
)
1251 right
= snd_es1938_reg_read(chip
, right_reg
);
1254 ucontrol
->value
.integer
.value
[0] = (left
>> shift_left
) & mask
;
1255 ucontrol
->value
.integer
.value
[1] = (right
>> shift_right
) & mask
;
1257 ucontrol
->value
.integer
.value
[0] = mask
- ucontrol
->value
.integer
.value
[0];
1258 ucontrol
->value
.integer
.value
[1] = mask
- ucontrol
->value
.integer
.value
[1];
1263 static int snd_es1938_put_double(struct snd_kcontrol
*kcontrol
,
1264 struct snd_ctl_elem_value
*ucontrol
)
1266 struct es1938
*chip
= snd_kcontrol_chip(kcontrol
);
1267 int left_reg
= kcontrol
->private_value
& 0xff;
1268 int right_reg
= (kcontrol
->private_value
>> 8) & 0xff;
1269 int shift_left
= (kcontrol
->private_value
>> 16) & 0x07;
1270 int shift_right
= (kcontrol
->private_value
>> 19) & 0x07;
1271 int mask
= (kcontrol
->private_value
>> 24) & 0xff;
1272 int invert
= (kcontrol
->private_value
>> 22) & 1;
1274 unsigned char val1
, val2
, mask1
, mask2
;
1276 val1
= ucontrol
->value
.integer
.value
[0] & mask
;
1277 val2
= ucontrol
->value
.integer
.value
[1] & mask
;
1282 val1
<<= shift_left
;
1283 val2
<<= shift_right
;
1284 mask1
= mask
<< shift_left
;
1285 mask2
= mask
<< shift_right
;
1286 if (left_reg
!= right_reg
) {
1288 if (snd_es1938_reg_bits(chip
, left_reg
, mask1
, val1
) != val1
)
1290 if (snd_es1938_reg_bits(chip
, right_reg
, mask2
, val2
) != val2
)
1293 change
= (snd_es1938_reg_bits(chip
, left_reg
, mask1
| mask2
,
1294 val1
| val2
) != (val1
| val2
));
1299 static struct snd_kcontrol_new snd_es1938_controls
[] = {
1300 ES1938_DOUBLE("Master Playback Volume", 0, 0x60, 0x62, 0, 0, 63, 0),
1301 ES1938_DOUBLE("Master Playback Switch", 0, 0x60, 0x62, 6, 6, 1, 1),
1303 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
1304 .name
= "Hardware Master Playback Volume",
1305 .access
= SNDRV_CTL_ELEM_ACCESS_READ
,
1306 .info
= snd_es1938_info_hw_volume
,
1307 .get
= snd_es1938_get_hw_volume
,
1310 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
1311 .name
= "Hardware Master Playback Switch",
1312 .access
= SNDRV_CTL_ELEM_ACCESS_READ
,
1313 .info
= snd_es1938_info_hw_switch
,
1314 .get
= snd_es1938_get_hw_switch
,
1316 ES1938_SINGLE("Hardware Volume Split", 0, 0x64, 7, 1, 0),
1317 ES1938_DOUBLE("Line Playback Volume", 0, 0x3e, 0x3e, 4, 0, 15, 0),
1318 ES1938_DOUBLE("CD Playback Volume", 0, 0x38, 0x38, 4, 0, 15, 0),
1319 ES1938_DOUBLE("FM Playback Volume", 0, 0x36, 0x36, 4, 0, 15, 0),
1320 ES1938_DOUBLE("Mono Playback Volume", 0, 0x6d, 0x6d, 4, 0, 15, 0),
1321 ES1938_DOUBLE("Mic Playback Volume", 0, 0x1a, 0x1a, 4, 0, 15, 0),
1322 ES1938_DOUBLE("Aux Playback Volume", 0, 0x3a, 0x3a, 4, 0, 15, 0),
1323 ES1938_DOUBLE("Capture Volume", 0, 0xb4, 0xb4, 4, 0, 15, 0),
1324 ES1938_SINGLE("PC Speaker Volume", 0, 0x3c, 0, 7, 0),
1325 ES1938_SINGLE("Record Monitor", 0, 0xa8, 3, 1, 0),
1326 ES1938_SINGLE("Capture Switch", 0, 0x1c, 4, 1, 1),
1328 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
1329 .name
= "Capture Source",
1330 .info
= snd_es1938_info_mux
,
1331 .get
= snd_es1938_get_mux
,
1332 .put
= snd_es1938_put_mux
,
1334 ES1938_DOUBLE("Mono Input Playback Volume", 0, 0x6d, 0x6d, 4, 0, 15, 0),
1335 ES1938_DOUBLE("PCM Capture Volume", 0, 0x69, 0x69, 4, 0, 15, 0),
1336 ES1938_DOUBLE("Mic Capture Volume", 0, 0x68, 0x68, 4, 0, 15, 0),
1337 ES1938_DOUBLE("Line Capture Volume", 0, 0x6e, 0x6e, 4, 0, 15, 0),
1338 ES1938_DOUBLE("FM Capture Volume", 0, 0x6b, 0x6b, 4, 0, 15, 0),
1339 ES1938_DOUBLE("Mono Capture Volume", 0, 0x6f, 0x6f, 4, 0, 15, 0),
1340 ES1938_DOUBLE("CD Capture Volume", 0, 0x6a, 0x6a, 4, 0, 15, 0),
1341 ES1938_DOUBLE("Aux Capture Volume", 0, 0x6c, 0x6c, 4, 0, 15, 0),
1342 ES1938_DOUBLE("PCM Playback Volume", 0, 0x7c, 0x7c, 4, 0, 15, 0),
1343 ES1938_DOUBLE("PCM Playback Volume", 1, 0x14, 0x14, 4, 0, 15, 0),
1344 ES1938_SINGLE("3D Control - Level", 0, 0x52, 0, 63, 0),
1346 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
1347 .name
= "3D Control - Switch",
1348 .info
= snd_es1938_info_spatializer_enable
,
1349 .get
= snd_es1938_get_spatializer_enable
,
1350 .put
= snd_es1938_put_spatializer_enable
,
1352 ES1938_SINGLE("Mic Boost (+26dB)", 0, 0x7d, 3, 1, 0)
1356 /* ---------------------------------------------------------------------------- */
1357 /* ---------------------------------------------------------------------------- */
1360 * initialize the chip - used by resume callback, too
1362 static void snd_es1938_chip_init(struct es1938
*chip
)
1365 snd_es1938_reset(chip
);
1367 /* configure native mode */
1369 /* enable bus master */
1370 pci_set_master(chip
->pci
);
1372 /* disable legacy audio */
1373 pci_write_config_word(chip
->pci
, SL_PCI_LEGACYCONTROL
, 0x805f);
1376 pci_write_config_word(chip
->pci
, SL_PCI_DDMACONTROL
, chip
->ddma_port
| 1);
1378 /* set DMA/IRQ policy */
1379 pci_write_config_dword(chip
->pci
, SL_PCI_CONFIG
, 0);
1381 /* enable Audio 1, Audio 2, MPU401 IRQ and HW volume IRQ*/
1382 outb(0xf0, SLIO_REG(chip
, IRQCONTROL
));
1385 outb(0, SLDM_REG(chip
, DMACLEAR
));
1393 static unsigned char saved_regs
[SAVED_REG_SIZE
+1] = {
1394 0x14, 0x1a, 0x1c, 0x3a, 0x3c, 0x3e, 0x36, 0x38,
1395 0x50, 0x52, 0x60, 0x61, 0x62, 0x63, 0x64, 0x68,
1396 0x69, 0x6a, 0x6b, 0x6d, 0x6e, 0x6f, 0x7c, 0x7d,
1401 static int es1938_suspend(struct pci_dev
*pci
, pm_message_t state
)
1403 struct snd_card
*card
= pci_get_drvdata(pci
);
1404 struct es1938
*chip
= card
->private_data
;
1405 unsigned char *s
, *d
;
1407 snd_power_change_state(card
, SNDRV_CTL_POWER_D3hot
);
1408 snd_pcm_suspend_all(chip
->pcm
);
1410 /* save mixer-related registers */
1411 for (s
= saved_regs
, d
= chip
->saved_regs
; *s
; s
++, d
++)
1412 *d
= snd_es1938_reg_read(chip
, *s
);
1414 outb(0x00, SLIO_REG(chip
, IRQCONTROL
)); /* disable irqs */
1416 free_irq(chip
->irq
, chip
);
1417 pci_disable_device(pci
);
1418 pci_save_state(pci
);
1422 static int es1938_resume(struct pci_dev
*pci
)
1424 struct snd_card
*card
= pci_get_drvdata(pci
);
1425 struct es1938
*chip
= card
->private_data
;
1426 unsigned char *s
, *d
;
1428 pci_restore_state(pci
);
1429 pci_enable_device(pci
);
1430 request_irq(pci
->irq
, snd_es1938_interrupt
,
1431 SA_INTERRUPT
|SA_SHIRQ
, "ES1938", chip
);
1432 chip
->irq
= pci
->irq
;
1433 snd_es1938_chip_init(chip
);
1435 /* restore mixer-related registers */
1436 for (s
= saved_regs
, d
= chip
->saved_regs
; *s
; s
++, d
++) {
1438 snd_es1938_mixer_write(chip
, *s
, *d
);
1440 snd_es1938_write(chip
, *s
, *d
);
1443 snd_power_change_state(card
, SNDRV_CTL_POWER_D0
);
1446 #endif /* CONFIG_PM */
1448 #ifdef SUPPORT_JOYSTICK
1449 static int __devinit
snd_es1938_create_gameport(struct es1938
*chip
)
1451 struct gameport
*gp
;
1453 chip
->gameport
= gp
= gameport_allocate_port();
1455 printk(KERN_ERR
"es1938: cannot allocate memory for gameport\n");
1459 gameport_set_name(gp
, "ES1938");
1460 gameport_set_phys(gp
, "pci%s/gameport0", pci_name(chip
->pci
));
1461 gameport_set_dev_parent(gp
, &chip
->pci
->dev
);
1462 gp
->io
= chip
->game_port
;
1464 gameport_register_port(gp
);
1469 static void snd_es1938_free_gameport(struct es1938
*chip
)
1471 if (chip
->gameport
) {
1472 gameport_unregister_port(chip
->gameport
);
1473 chip
->gameport
= NULL
;
1477 static inline int snd_es1938_create_gameport(struct es1938
*chip
) { return -ENOSYS
; }
1478 static inline void snd_es1938_free_gameport(struct es1938
*chip
) { }
1479 #endif /* SUPPORT_JOYSTICK */
1481 static int snd_es1938_free(struct es1938
*chip
)
1484 outb(0x00, SLIO_REG(chip
, IRQCONTROL
));
1486 snd_es1938_mixer_bits(chip
, ESSSB_IREG_MPU401CONTROL
, 0x40, 0);
1488 snd_es1938_free_gameport(chip
);
1491 free_irq(chip
->irq
, chip
);
1492 pci_release_regions(chip
->pci
);
1493 pci_disable_device(chip
->pci
);
1498 static int snd_es1938_dev_free(struct snd_device
*device
)
1500 struct es1938
*chip
= device
->device_data
;
1501 return snd_es1938_free(chip
);
1504 static int __devinit
snd_es1938_create(struct snd_card
*card
,
1505 struct pci_dev
* pci
,
1506 struct es1938
** rchip
)
1508 struct es1938
*chip
;
1510 static struct snd_device_ops ops
= {
1511 .dev_free
= snd_es1938_dev_free
,
1516 /* enable PCI device */
1517 if ((err
= pci_enable_device(pci
)) < 0)
1519 /* check, if we can restrict PCI DMA transfers to 24 bits */
1520 if (pci_set_dma_mask(pci
, 0x00ffffff) < 0 ||
1521 pci_set_consistent_dma_mask(pci
, 0x00ffffff) < 0) {
1522 snd_printk(KERN_ERR
"architecture does not support 24bit PCI busmaster DMA\n");
1523 pci_disable_device(pci
);
1527 chip
= kzalloc(sizeof(*chip
), GFP_KERNEL
);
1529 pci_disable_device(pci
);
1532 spin_lock_init(&chip
->reg_lock
);
1533 spin_lock_init(&chip
->mixer_lock
);
1536 if ((err
= pci_request_regions(pci
, "ESS Solo-1")) < 0) {
1538 pci_disable_device(pci
);
1541 chip
->io_port
= pci_resource_start(pci
, 0);
1542 chip
->sb_port
= pci_resource_start(pci
, 1);
1543 chip
->vc_port
= pci_resource_start(pci
, 2);
1544 chip
->mpu_port
= pci_resource_start(pci
, 3);
1545 chip
->game_port
= pci_resource_start(pci
, 4);
1546 if (request_irq(pci
->irq
, snd_es1938_interrupt
, SA_INTERRUPT
|SA_SHIRQ
,
1548 snd_printk(KERN_ERR
"unable to grab IRQ %d\n", pci
->irq
);
1549 snd_es1938_free(chip
);
1552 chip
->irq
= pci
->irq
;
1553 #ifdef ES1938_DDEBUG
1554 snd_printk(KERN_DEBUG
"create: io: 0x%lx, sb: 0x%lx, vc: 0x%lx, mpu: 0x%lx, game: 0x%lx\n",
1555 chip
->io_port
, chip
->sb_port
, chip
->vc_port
, chip
->mpu_port
, chip
->game_port
);
1558 chip
->ddma_port
= chip
->vc_port
+ 0x00; /* fix from Thomas Sailer */
1560 snd_es1938_chip_init(chip
);
1562 if ((err
= snd_device_new(card
, SNDRV_DEV_LOWLEVEL
, chip
, &ops
)) < 0) {
1563 snd_es1938_free(chip
);
1567 snd_card_set_dev(card
, &pci
->dev
);
1573 /* --------------------------------------------------------------------
1575 * -------------------------------------------------------------------- */
1576 static irqreturn_t
snd_es1938_interrupt(int irq
, void *dev_id
, struct pt_regs
*regs
)
1578 struct es1938
*chip
= dev_id
;
1579 unsigned char status
, audiostatus
;
1582 status
= inb(SLIO_REG(chip
, IRQCONTROL
));
1584 printk("Es1938debug - interrupt status: =0x%x\n", status
);
1588 if (status
& 0x10) {
1590 printk("Es1938debug - AUDIO channel 1 interrupt\n");
1591 printk("Es1938debug - AUDIO channel 1 DMAC DMA count: %u\n",
1592 inw(SLDM_REG(chip
, DMACOUNT
)));
1593 printk("Es1938debug - AUDIO channel 1 DMAC DMA base: %u\n",
1594 inl(SLDM_REG(chip
, DMAADDR
)));
1595 printk("Es1938debug - AUDIO channel 1 DMAC DMA status: 0x%x\n",
1596 inl(SLDM_REG(chip
, DMASTATUS
)));
1600 audiostatus
= inb(SLSB_REG(chip
, STATUS
));
1601 if (chip
->active
& ADC1
)
1602 snd_pcm_period_elapsed(chip
->capture_substream
);
1603 else if (chip
->active
& DAC1
)
1604 snd_pcm_period_elapsed(chip
->playback2_substream
);
1608 if (status
& 0x20) {
1610 printk("Es1938debug - AUDIO channel 2 interrupt\n");
1611 printk("Es1938debug - AUDIO channel 2 DMAC DMA count: %u\n",
1612 inw(SLIO_REG(chip
, AUDIO2DMACOUNT
)));
1613 printk("Es1938debug - AUDIO channel 2 DMAC DMA base: %u\n",
1614 inl(SLIO_REG(chip
, AUDIO2DMAADDR
)));
1619 snd_es1938_mixer_bits(chip
, ESSSB_IREG_AUDIO2CONTROL2
, 0x80, 0);
1620 if (chip
->active
& DAC2
)
1621 snd_pcm_period_elapsed(chip
->playback1_substream
);
1624 /* Hardware volume */
1625 if (status
& 0x40) {
1626 int split
= snd_es1938_mixer_read(chip
, 0x64) & 0x80;
1628 snd_ctl_notify(chip
->card
, SNDRV_CTL_EVENT_MASK_VALUE
, &chip
->hw_switch
->id
);
1629 snd_ctl_notify(chip
->card
, SNDRV_CTL_EVENT_MASK_VALUE
, &chip
->hw_volume
->id
);
1631 snd_ctl_notify(chip
->card
, SNDRV_CTL_EVENT_MASK_VALUE
,
1632 &chip
->master_switch
->id
);
1633 snd_ctl_notify(chip
->card
, SNDRV_CTL_EVENT_MASK_VALUE
,
1634 &chip
->master_volume
->id
);
1637 snd_es1938_mixer_write(chip
, 0x66, 0x00);
1641 if (status
& 0x80) {
1642 // the following line is evil! It switches off MIDI interrupt handling after the first interrupt received.
1643 // replacing the last 0 by 0x40 works for ESS-Solo1, but just doing nothing works as well!
1644 // andreas@flying-snail.de
1645 // snd_es1938_mixer_bits(chip, ESSSB_IREG_MPU401CONTROL, 0x40, 0); /* ack? */
1648 snd_mpu401_uart_interrupt(irq
, chip
->rmidi
->private_data
, regs
);
1651 return IRQ_RETVAL(handled
);
1654 #define ES1938_DMA_SIZE 64
1656 static int __devinit
snd_es1938_mixer(struct es1938
*chip
)
1658 struct snd_card
*card
;
1664 strcpy(card
->mixername
, "ESS Solo-1");
1666 for (idx
= 0; idx
< ARRAY_SIZE(snd_es1938_controls
); idx
++) {
1667 struct snd_kcontrol
*kctl
;
1668 kctl
= snd_ctl_new1(&snd_es1938_controls
[idx
], chip
);
1671 chip
->master_volume
= kctl
;
1672 kctl
->private_free
= snd_es1938_hwv_free
;
1675 chip
->master_switch
= kctl
;
1676 kctl
->private_free
= snd_es1938_hwv_free
;
1679 chip
->hw_volume
= kctl
;
1680 kctl
->private_free
= snd_es1938_hwv_free
;
1683 chip
->hw_switch
= kctl
;
1684 kctl
->private_free
= snd_es1938_hwv_free
;
1687 if ((err
= snd_ctl_add(card
, kctl
)) < 0)
1694 static int __devinit
snd_es1938_probe(struct pci_dev
*pci
,
1695 const struct pci_device_id
*pci_id
)
1698 struct snd_card
*card
;
1699 struct es1938
*chip
;
1700 struct snd_opl3
*opl3
;
1703 if (dev
>= SNDRV_CARDS
)
1710 card
= snd_card_new(index
[dev
], id
[dev
], THIS_MODULE
, 0);
1713 for (idx
= 0; idx
< 5; idx
++) {
1714 if (pci_resource_start(pci
, idx
) == 0 ||
1715 !(pci_resource_flags(pci
, idx
) & IORESOURCE_IO
)) {
1716 snd_card_free(card
);
1720 if ((err
= snd_es1938_create(card
, pci
, &chip
)) < 0) {
1721 snd_card_free(card
);
1724 card
->private_data
= chip
;
1726 strcpy(card
->driver
, "ES1938");
1727 strcpy(card
->shortname
, "ESS ES1938 (Solo-1)");
1728 sprintf(card
->longname
, "%s rev %i, irq %i",
1733 if ((err
= snd_es1938_new_pcm(chip
, 0)) < 0) {
1734 snd_card_free(card
);
1737 if ((err
= snd_es1938_mixer(chip
)) < 0) {
1738 snd_card_free(card
);
1741 if (snd_opl3_create(card
,
1742 SLSB_REG(chip
, FMLOWADDR
),
1743 SLSB_REG(chip
, FMHIGHADDR
),
1744 OPL3_HW_OPL3
, 1, &opl3
) < 0) {
1745 printk(KERN_ERR
"es1938: OPL3 not detected at 0x%lx\n",
1746 SLSB_REG(chip
, FMLOWADDR
));
1748 if ((err
= snd_opl3_timer_new(opl3
, 0, 1)) < 0) {
1749 snd_card_free(card
);
1752 if ((err
= snd_opl3_hwdep_new(opl3
, 0, 1, NULL
)) < 0) {
1753 snd_card_free(card
);
1757 if (snd_mpu401_uart_new(card
, 0, MPU401_HW_MPU401
,
1758 chip
->mpu_port
, 1, chip
->irq
, 0, &chip
->rmidi
) < 0) {
1759 printk(KERN_ERR
"es1938: unable to initialize MPU-401\n");
1761 // this line is vital for MIDI interrupt handling on ess-solo1
1762 // andreas@flying-snail.de
1763 snd_es1938_mixer_bits(chip
, ESSSB_IREG_MPU401CONTROL
, 0x40, 0x40);
1766 snd_es1938_create_gameport(chip
);
1768 if ((err
= snd_card_register(card
)) < 0) {
1769 snd_card_free(card
);
1773 pci_set_drvdata(pci
, card
);
1778 static void __devexit
snd_es1938_remove(struct pci_dev
*pci
)
1780 snd_card_free(pci_get_drvdata(pci
));
1781 pci_set_drvdata(pci
, NULL
);
1784 static struct pci_driver driver
= {
1785 .name
= "ESS ES1938 (Solo-1)",
1786 .id_table
= snd_es1938_ids
,
1787 .probe
= snd_es1938_probe
,
1788 .remove
= __devexit_p(snd_es1938_remove
),
1790 .suspend
= es1938_suspend
,
1791 .resume
= es1938_resume
,
1795 static int __init
alsa_card_es1938_init(void)
1797 return pci_register_driver(&driver
);
1800 static void __exit
alsa_card_es1938_exit(void)
1802 pci_unregister_driver(&driver
);
1805 module_init(alsa_card_es1938_init
)
1806 module_exit(alsa_card_es1938_exit
)