2 * Copyright (c) by Francisco Moraes <fmoraes@nc.rr.com>
3 * Driver EMU10K1X chips
5 * Parts of this code were adapted from audigyls.c driver which is
6 * Copyright (c) by James Courtier-Dutton <James@superbug.demon.co.uk>
13 * Chips (SB0200 model):
17 * This program is free software; you can redistribute it and/or modify
18 * it under the terms of the GNU General Public License as published by
19 * the Free Software Foundation; either version 2 of the License, or
20 * (at your option) any later version.
22 * This program is distributed in the hope that it will be useful,
23 * but WITHOUT ANY WARRANTY; without even the implied warranty of
24 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25 * GNU General Public License for more details.
27 * You should have received a copy of the GNU General Public License
28 * along with this program; if not, write to the Free Software
29 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
32 #include <linux/init.h>
33 #include <linux/interrupt.h>
34 #include <linux/pci.h>
35 #include <linux/dma-mapping.h>
36 #include <linux/slab.h>
37 #include <linux/module.h>
38 #include <sound/core.h>
39 #include <sound/initval.h>
40 #include <sound/pcm.h>
41 #include <sound/ac97_codec.h>
42 #include <sound/info.h>
43 #include <sound/rawmidi.h>
45 MODULE_AUTHOR("Francisco Moraes <fmoraes@nc.rr.com>");
46 MODULE_DESCRIPTION("EMU10K1X");
47 MODULE_LICENSE("GPL");
48 MODULE_SUPPORTED_DEVICE("{{Dell Creative Labs,SB Live!}");
50 // module parameters (see "Module Parameters")
51 static int index
[SNDRV_CARDS
] = SNDRV_DEFAULT_IDX
;
52 static char *id
[SNDRV_CARDS
] = SNDRV_DEFAULT_STR
;
53 static bool enable
[SNDRV_CARDS
] = SNDRV_DEFAULT_ENABLE_PNP
;
55 module_param_array(index
, int, NULL
, 0444);
56 MODULE_PARM_DESC(index
, "Index value for the EMU10K1X soundcard.");
57 module_param_array(id
, charp
, NULL
, 0444);
58 MODULE_PARM_DESC(id
, "ID string for the EMU10K1X soundcard.");
59 module_param_array(enable
, bool, NULL
, 0444);
60 MODULE_PARM_DESC(enable
, "Enable the EMU10K1X soundcard.");
63 // some definitions were borrowed from emu10k1 driver as they seem to be the same
64 /************************************************************************************************/
65 /* PCI function 0 registers, address = <val> + PCIBASE0 */
66 /************************************************************************************************/
68 #define PTR 0x00 /* Indexed register set pointer register */
69 /* NOTE: The CHANNELNUM and ADDRESS words can */
70 /* be modified independently of each other. */
72 #define DATA 0x04 /* Indexed register set data register */
74 #define IPR 0x08 /* Global interrupt pending register */
75 /* Clear pending interrupts by writing a 1 to */
76 /* the relevant bits and zero to the other bits */
77 #define IPR_MIDITRANSBUFEMPTY 0x00000001 /* MIDI UART transmit buffer empty */
78 #define IPR_MIDIRECVBUFEMPTY 0x00000002 /* MIDI UART receive buffer empty */
79 #define IPR_CH_0_LOOP 0x00000800 /* Channel 0 loop */
80 #define IPR_CH_0_HALF_LOOP 0x00000100 /* Channel 0 half loop */
81 #define IPR_CAP_0_LOOP 0x00080000 /* Channel capture loop */
82 #define IPR_CAP_0_HALF_LOOP 0x00010000 /* Channel capture half loop */
84 #define INTE 0x0c /* Interrupt enable register */
85 #define INTE_MIDITXENABLE 0x00000001 /* Enable MIDI transmit-buffer-empty interrupts */
86 #define INTE_MIDIRXENABLE 0x00000002 /* Enable MIDI receive-buffer-empty interrupts */
87 #define INTE_CH_0_LOOP 0x00000800 /* Channel 0 loop */
88 #define INTE_CH_0_HALF_LOOP 0x00000100 /* Channel 0 half loop */
89 #define INTE_CAP_0_LOOP 0x00080000 /* Channel capture loop */
90 #define INTE_CAP_0_HALF_LOOP 0x00010000 /* Channel capture half loop */
92 #define HCFG 0x14 /* Hardware config register */
94 #define HCFG_LOCKSOUNDCACHE 0x00000008 /* 1 = Cancel bustmaster accesses to soundcache */
95 /* NOTE: This should generally never be used. */
96 #define HCFG_AUDIOENABLE 0x00000001 /* 0 = CODECs transmit zero-valued samples */
97 /* Should be set to 1 when the EMU10K1 is */
98 /* completely initialized. */
99 #define GPIO 0x18 /* Defaults: 00001080-Analog, 00001000-SPDIF. */
102 #define AC97DATA 0x1c /* AC97 register set data register (16 bit) */
104 #define AC97ADDRESS 0x1e /* AC97 register set address register (8 bit) */
106 /********************************************************************************************************/
107 /* Emu10k1x pointer-offset register set, accessed through the PTR and DATA registers */
108 /********************************************************************************************************/
109 #define PLAYBACK_LIST_ADDR 0x00 /* Base DMA address of a list of pointers to each period/size */
110 /* One list entry: 4 bytes for DMA address,
111 * 4 bytes for period_size << 16.
112 * One list entry is 8 bytes long.
113 * One list entry for each period in the buffer.
115 #define PLAYBACK_LIST_SIZE 0x01 /* Size of list in bytes << 16. E.g. 8 periods -> 0x00380000 */
116 #define PLAYBACK_LIST_PTR 0x02 /* Pointer to the current period being played */
117 #define PLAYBACK_DMA_ADDR 0x04 /* Playback DMA address */
118 #define PLAYBACK_PERIOD_SIZE 0x05 /* Playback period size */
119 #define PLAYBACK_POINTER 0x06 /* Playback period pointer. Sample currently in DAC */
120 #define PLAYBACK_UNKNOWN1 0x07
121 #define PLAYBACK_UNKNOWN2 0x08
123 /* Only one capture channel supported */
124 #define CAPTURE_DMA_ADDR 0x10 /* Capture DMA address */
125 #define CAPTURE_BUFFER_SIZE 0x11 /* Capture buffer size */
126 #define CAPTURE_POINTER 0x12 /* Capture buffer pointer. Sample currently in ADC */
127 #define CAPTURE_UNKNOWN 0x13
129 /* From 0x20 - 0x3f, last samples played on each channel */
131 #define TRIGGER_CHANNEL 0x40 /* Trigger channel playback */
132 #define TRIGGER_CHANNEL_0 0x00000001 /* Trigger channel 0 */
133 #define TRIGGER_CHANNEL_1 0x00000002 /* Trigger channel 1 */
134 #define TRIGGER_CHANNEL_2 0x00000004 /* Trigger channel 2 */
135 #define TRIGGER_CAPTURE 0x00000100 /* Trigger capture channel */
137 #define ROUTING 0x41 /* Setup sound routing ? */
138 #define ROUTING_FRONT_LEFT 0x00000001
139 #define ROUTING_FRONT_RIGHT 0x00000002
140 #define ROUTING_REAR_LEFT 0x00000004
141 #define ROUTING_REAR_RIGHT 0x00000008
142 #define ROUTING_CENTER_LFE 0x00010000
144 #define SPCS0 0x42 /* SPDIF output Channel Status 0 register */
146 #define SPCS1 0x43 /* SPDIF output Channel Status 1 register */
148 #define SPCS2 0x44 /* SPDIF output Channel Status 2 register */
150 #define SPCS_CLKACCYMASK 0x30000000 /* Clock accuracy */
151 #define SPCS_CLKACCY_1000PPM 0x00000000 /* 1000 parts per million */
152 #define SPCS_CLKACCY_50PPM 0x10000000 /* 50 parts per million */
153 #define SPCS_CLKACCY_VARIABLE 0x20000000 /* Variable accuracy */
154 #define SPCS_SAMPLERATEMASK 0x0f000000 /* Sample rate */
155 #define SPCS_SAMPLERATE_44 0x00000000 /* 44.1kHz sample rate */
156 #define SPCS_SAMPLERATE_48 0x02000000 /* 48kHz sample rate */
157 #define SPCS_SAMPLERATE_32 0x03000000 /* 32kHz sample rate */
158 #define SPCS_CHANNELNUMMASK 0x00f00000 /* Channel number */
159 #define SPCS_CHANNELNUM_UNSPEC 0x00000000 /* Unspecified channel number */
160 #define SPCS_CHANNELNUM_LEFT 0x00100000 /* Left channel */
161 #define SPCS_CHANNELNUM_RIGHT 0x00200000 /* Right channel */
162 #define SPCS_SOURCENUMMASK 0x000f0000 /* Source number */
163 #define SPCS_SOURCENUM_UNSPEC 0x00000000 /* Unspecified source number */
164 #define SPCS_GENERATIONSTATUS 0x00008000 /* Originality flag (see IEC-958 spec) */
165 #define SPCS_CATEGORYCODEMASK 0x00007f00 /* Category code (see IEC-958 spec) */
166 #define SPCS_MODEMASK 0x000000c0 /* Mode (see IEC-958 spec) */
167 #define SPCS_EMPHASISMASK 0x00000038 /* Emphasis */
168 #define SPCS_EMPHASIS_NONE 0x00000000 /* No emphasis */
169 #define SPCS_EMPHASIS_50_15 0x00000008 /* 50/15 usec 2 channel */
170 #define SPCS_COPYRIGHT 0x00000004 /* Copyright asserted flag -- do not modify */
171 #define SPCS_NOTAUDIODATA 0x00000002 /* 0 = Digital audio, 1 = not audio */
172 #define SPCS_PROFESSIONAL 0x00000001 /* 0 = Consumer (IEC-958), 1 = pro (AES3-1992) */
174 #define SPDIF_SELECT 0x45 /* Enables SPDIF or Analogue outputs 0-Analogue, 0x700-SPDIF */
176 /* This is the MPU port on the card */
181 /* From 0x50 - 0x5f, last samples captured */
184 * The hardware has 3 channels for playback and 1 for capture.
185 * - channel 0 is the front channel
186 * - channel 1 is the rear channel
187 * - channel 2 is the center/lfe channel
188 * Volume is controlled by the AC97 for the front and rear channels by
189 * the PCM Playback Volume, Sigmatel Surround Playback Volume and
190 * Surround Playback Volume. The Sigmatel 4-Speaker Stereo switch affects
191 * the front/rear channel mixing in the REAR OUT jack. When using the
192 * 4-Speaker Stereo, both front and rear channels will be mixed in the
194 * The center/lfe channel has no volume control and cannot be muted during
198 struct emu10k1x_voice
{
199 struct emu10k1x
*emu
;
203 struct emu10k1x_pcm
*epcm
;
206 struct emu10k1x_pcm
{
207 struct emu10k1x
*emu
;
208 struct snd_pcm_substream
*substream
;
209 struct emu10k1x_voice
*voice
;
210 unsigned short running
;
213 struct emu10k1x_midi
{
214 struct emu10k1x
*emu
;
215 struct snd_rawmidi
*rmidi
;
216 struct snd_rawmidi_substream
*substream_input
;
217 struct snd_rawmidi_substream
*substream_output
;
218 unsigned int midi_mode
;
219 spinlock_t input_lock
;
220 spinlock_t output_lock
;
221 spinlock_t open_lock
;
222 int tx_enable
, rx_enable
;
225 void (*interrupt
)(struct emu10k1x
*emu
, unsigned int status
);
228 // definition of the chip-specific record
230 struct snd_card
*card
;
234 struct resource
*res_port
;
237 unsigned char revision
; /* chip revision */
238 unsigned int serial
; /* serial number */
239 unsigned short model
; /* subsystem id */
242 spinlock_t voice_lock
;
244 struct snd_ac97
*ac97
;
247 struct emu10k1x_voice voices
[3];
248 struct emu10k1x_voice capture_voice
;
249 u32 spdif_bits
[3]; // SPDIF out setup
251 struct snd_dma_buffer dma_buffer
;
253 struct emu10k1x_midi midi
;
256 /* hardware definition */
257 static struct snd_pcm_hardware snd_emu10k1x_playback_hw
= {
258 .info
= (SNDRV_PCM_INFO_MMAP
|
259 SNDRV_PCM_INFO_INTERLEAVED
|
260 SNDRV_PCM_INFO_BLOCK_TRANSFER
|
261 SNDRV_PCM_INFO_MMAP_VALID
),
262 .formats
= SNDRV_PCM_FMTBIT_S16_LE
,
263 .rates
= SNDRV_PCM_RATE_48000
,
268 .buffer_bytes_max
= (32*1024),
269 .period_bytes_min
= 64,
270 .period_bytes_max
= (16*1024),
276 static struct snd_pcm_hardware snd_emu10k1x_capture_hw
= {
277 .info
= (SNDRV_PCM_INFO_MMAP
|
278 SNDRV_PCM_INFO_INTERLEAVED
|
279 SNDRV_PCM_INFO_BLOCK_TRANSFER
|
280 SNDRV_PCM_INFO_MMAP_VALID
),
281 .formats
= SNDRV_PCM_FMTBIT_S16_LE
,
282 .rates
= SNDRV_PCM_RATE_48000
,
287 .buffer_bytes_max
= (32*1024),
288 .period_bytes_min
= 64,
289 .period_bytes_max
= (16*1024),
295 static unsigned int snd_emu10k1x_ptr_read(struct emu10k1x
* emu
,
300 unsigned int regptr
, val
;
302 regptr
= (reg
<< 16) | chn
;
304 spin_lock_irqsave(&emu
->emu_lock
, flags
);
305 outl(regptr
, emu
->port
+ PTR
);
306 val
= inl(emu
->port
+ DATA
);
307 spin_unlock_irqrestore(&emu
->emu_lock
, flags
);
311 static void snd_emu10k1x_ptr_write(struct emu10k1x
*emu
,
319 regptr
= (reg
<< 16) | chn
;
321 spin_lock_irqsave(&emu
->emu_lock
, flags
);
322 outl(regptr
, emu
->port
+ PTR
);
323 outl(data
, emu
->port
+ DATA
);
324 spin_unlock_irqrestore(&emu
->emu_lock
, flags
);
327 static void snd_emu10k1x_intr_enable(struct emu10k1x
*emu
, unsigned int intrenb
)
330 unsigned int intr_enable
;
332 spin_lock_irqsave(&emu
->emu_lock
, flags
);
333 intr_enable
= inl(emu
->port
+ INTE
) | intrenb
;
334 outl(intr_enable
, emu
->port
+ INTE
);
335 spin_unlock_irqrestore(&emu
->emu_lock
, flags
);
338 static void snd_emu10k1x_intr_disable(struct emu10k1x
*emu
, unsigned int intrenb
)
341 unsigned int intr_enable
;
343 spin_lock_irqsave(&emu
->emu_lock
, flags
);
344 intr_enable
= inl(emu
->port
+ INTE
) & ~intrenb
;
345 outl(intr_enable
, emu
->port
+ INTE
);
346 spin_unlock_irqrestore(&emu
->emu_lock
, flags
);
349 static void snd_emu10k1x_gpio_write(struct emu10k1x
*emu
, unsigned int value
)
353 spin_lock_irqsave(&emu
->emu_lock
, flags
);
354 outl(value
, emu
->port
+ GPIO
);
355 spin_unlock_irqrestore(&emu
->emu_lock
, flags
);
358 static void snd_emu10k1x_pcm_free_substream(struct snd_pcm_runtime
*runtime
)
360 kfree(runtime
->private_data
);
363 static void snd_emu10k1x_pcm_interrupt(struct emu10k1x
*emu
, struct emu10k1x_voice
*voice
)
365 struct emu10k1x_pcm
*epcm
;
367 if ((epcm
= voice
->epcm
) == NULL
)
369 if (epcm
->substream
== NULL
)
372 dev_info(emu
->card
->dev
,
373 "IRQ: position = 0x%x, period = 0x%x, size = 0x%x\n",
374 epcm
->substream
->ops
->pointer(epcm
->substream
),
375 snd_pcm_lib_period_bytes(epcm
->substream
),
376 snd_pcm_lib_buffer_bytes(epcm
->substream
));
378 snd_pcm_period_elapsed(epcm
->substream
);
382 static int snd_emu10k1x_playback_open(struct snd_pcm_substream
*substream
)
384 struct emu10k1x
*chip
= snd_pcm_substream_chip(substream
);
385 struct emu10k1x_pcm
*epcm
;
386 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
389 if ((err
= snd_pcm_hw_constraint_integer(runtime
, SNDRV_PCM_HW_PARAM_PERIODS
)) < 0) {
392 if ((err
= snd_pcm_hw_constraint_step(runtime
, 0, SNDRV_PCM_HW_PARAM_PERIOD_BYTES
, 64)) < 0)
395 epcm
= kzalloc(sizeof(*epcm
), GFP_KERNEL
);
399 epcm
->substream
= substream
;
401 runtime
->private_data
= epcm
;
402 runtime
->private_free
= snd_emu10k1x_pcm_free_substream
;
404 runtime
->hw
= snd_emu10k1x_playback_hw
;
410 static int snd_emu10k1x_playback_close(struct snd_pcm_substream
*substream
)
415 /* hw_params callback */
416 static int snd_emu10k1x_pcm_hw_params(struct snd_pcm_substream
*substream
,
417 struct snd_pcm_hw_params
*hw_params
)
419 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
420 struct emu10k1x_pcm
*epcm
= runtime
->private_data
;
423 epcm
->voice
= &epcm
->emu
->voices
[substream
->pcm
->device
];
424 epcm
->voice
->use
= 1;
425 epcm
->voice
->epcm
= epcm
;
428 return snd_pcm_lib_malloc_pages(substream
,
429 params_buffer_bytes(hw_params
));
432 /* hw_free callback */
433 static int snd_emu10k1x_pcm_hw_free(struct snd_pcm_substream
*substream
)
435 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
436 struct emu10k1x_pcm
*epcm
;
438 if (runtime
->private_data
== NULL
)
441 epcm
= runtime
->private_data
;
444 epcm
->voice
->use
= 0;
445 epcm
->voice
->epcm
= NULL
;
449 return snd_pcm_lib_free_pages(substream
);
452 /* prepare callback */
453 static int snd_emu10k1x_pcm_prepare(struct snd_pcm_substream
*substream
)
455 struct emu10k1x
*emu
= snd_pcm_substream_chip(substream
);
456 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
457 struct emu10k1x_pcm
*epcm
= runtime
->private_data
;
458 int voice
= epcm
->voice
->number
;
459 u32
*table_base
= (u32
*)(emu
->dma_buffer
.area
+1024*voice
);
460 u32 period_size_bytes
= frames_to_bytes(runtime
, runtime
->period_size
);
463 for(i
= 0; i
< runtime
->periods
; i
++) {
464 *table_base
++=runtime
->dma_addr
+(i
*period_size_bytes
);
465 *table_base
++=period_size_bytes
<<16;
468 snd_emu10k1x_ptr_write(emu
, PLAYBACK_LIST_ADDR
, voice
, emu
->dma_buffer
.addr
+1024*voice
);
469 snd_emu10k1x_ptr_write(emu
, PLAYBACK_LIST_SIZE
, voice
, (runtime
->periods
- 1) << 19);
470 snd_emu10k1x_ptr_write(emu
, PLAYBACK_LIST_PTR
, voice
, 0);
471 snd_emu10k1x_ptr_write(emu
, PLAYBACK_POINTER
, voice
, 0);
472 snd_emu10k1x_ptr_write(emu
, PLAYBACK_UNKNOWN1
, voice
, 0);
473 snd_emu10k1x_ptr_write(emu
, PLAYBACK_UNKNOWN2
, voice
, 0);
474 snd_emu10k1x_ptr_write(emu
, PLAYBACK_DMA_ADDR
, voice
, runtime
->dma_addr
);
476 snd_emu10k1x_ptr_write(emu
, PLAYBACK_PERIOD_SIZE
, voice
, frames_to_bytes(runtime
, runtime
->period_size
)<<16);
481 /* trigger callback */
482 static int snd_emu10k1x_pcm_trigger(struct snd_pcm_substream
*substream
,
485 struct emu10k1x
*emu
= snd_pcm_substream_chip(substream
);
486 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
487 struct emu10k1x_pcm
*epcm
= runtime
->private_data
;
488 int channel
= epcm
->voice
->number
;
492 dev_dbg(emu->card->dev,
493 "trigger - emu10k1x = 0x%x, cmd = %i, pointer = %d\n",
494 (int)emu, cmd, (int)substream->ops->pointer(substream));
498 case SNDRV_PCM_TRIGGER_START
:
499 if(runtime
->periods
== 2)
500 snd_emu10k1x_intr_enable(emu
, (INTE_CH_0_LOOP
| INTE_CH_0_HALF_LOOP
) << channel
);
502 snd_emu10k1x_intr_enable(emu
, INTE_CH_0_LOOP
<< channel
);
504 snd_emu10k1x_ptr_write(emu
, TRIGGER_CHANNEL
, 0, snd_emu10k1x_ptr_read(emu
, TRIGGER_CHANNEL
, 0)|(TRIGGER_CHANNEL_0
<<channel
));
506 case SNDRV_PCM_TRIGGER_STOP
:
508 snd_emu10k1x_intr_disable(emu
, (INTE_CH_0_LOOP
| INTE_CH_0_HALF_LOOP
) << channel
);
509 snd_emu10k1x_ptr_write(emu
, TRIGGER_CHANNEL
, 0, snd_emu10k1x_ptr_read(emu
, TRIGGER_CHANNEL
, 0) & ~(TRIGGER_CHANNEL_0
<<channel
));
518 /* pointer callback */
519 static snd_pcm_uframes_t
520 snd_emu10k1x_pcm_pointer(struct snd_pcm_substream
*substream
)
522 struct emu10k1x
*emu
= snd_pcm_substream_chip(substream
);
523 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
524 struct emu10k1x_pcm
*epcm
= runtime
->private_data
;
525 int channel
= epcm
->voice
->number
;
526 snd_pcm_uframes_t ptr
= 0, ptr1
= 0, ptr2
= 0,ptr3
= 0,ptr4
= 0;
531 ptr3
= snd_emu10k1x_ptr_read(emu
, PLAYBACK_LIST_PTR
, channel
);
532 ptr1
= snd_emu10k1x_ptr_read(emu
, PLAYBACK_POINTER
, channel
);
533 ptr4
= snd_emu10k1x_ptr_read(emu
, PLAYBACK_LIST_PTR
, channel
);
535 if(ptr4
== 0 && ptr1
== frames_to_bytes(runtime
, runtime
->buffer_size
))
539 ptr1
= snd_emu10k1x_ptr_read(emu
, PLAYBACK_POINTER
, channel
);
540 ptr2
= bytes_to_frames(runtime
, ptr1
);
541 ptr2
+= (ptr4
>> 3) * runtime
->period_size
;
544 if (ptr
>= runtime
->buffer_size
)
545 ptr
-= runtime
->buffer_size
;
551 static struct snd_pcm_ops snd_emu10k1x_playback_ops
= {
552 .open
= snd_emu10k1x_playback_open
,
553 .close
= snd_emu10k1x_playback_close
,
554 .ioctl
= snd_pcm_lib_ioctl
,
555 .hw_params
= snd_emu10k1x_pcm_hw_params
,
556 .hw_free
= snd_emu10k1x_pcm_hw_free
,
557 .prepare
= snd_emu10k1x_pcm_prepare
,
558 .trigger
= snd_emu10k1x_pcm_trigger
,
559 .pointer
= snd_emu10k1x_pcm_pointer
,
562 /* open_capture callback */
563 static int snd_emu10k1x_pcm_open_capture(struct snd_pcm_substream
*substream
)
565 struct emu10k1x
*chip
= snd_pcm_substream_chip(substream
);
566 struct emu10k1x_pcm
*epcm
;
567 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
570 if ((err
= snd_pcm_hw_constraint_integer(runtime
, SNDRV_PCM_HW_PARAM_PERIODS
)) < 0)
572 if ((err
= snd_pcm_hw_constraint_step(runtime
, 0, SNDRV_PCM_HW_PARAM_PERIOD_BYTES
, 64)) < 0)
575 epcm
= kzalloc(sizeof(*epcm
), GFP_KERNEL
);
580 epcm
->substream
= substream
;
582 runtime
->private_data
= epcm
;
583 runtime
->private_free
= snd_emu10k1x_pcm_free_substream
;
585 runtime
->hw
= snd_emu10k1x_capture_hw
;
591 static int snd_emu10k1x_pcm_close_capture(struct snd_pcm_substream
*substream
)
596 /* hw_params callback */
597 static int snd_emu10k1x_pcm_hw_params_capture(struct snd_pcm_substream
*substream
,
598 struct snd_pcm_hw_params
*hw_params
)
600 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
601 struct emu10k1x_pcm
*epcm
= runtime
->private_data
;
604 if (epcm
->emu
->capture_voice
.use
)
606 epcm
->voice
= &epcm
->emu
->capture_voice
;
607 epcm
->voice
->epcm
= epcm
;
608 epcm
->voice
->use
= 1;
611 return snd_pcm_lib_malloc_pages(substream
,
612 params_buffer_bytes(hw_params
));
615 /* hw_free callback */
616 static int snd_emu10k1x_pcm_hw_free_capture(struct snd_pcm_substream
*substream
)
618 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
620 struct emu10k1x_pcm
*epcm
;
622 if (runtime
->private_data
== NULL
)
624 epcm
= runtime
->private_data
;
627 epcm
->voice
->use
= 0;
628 epcm
->voice
->epcm
= NULL
;
632 return snd_pcm_lib_free_pages(substream
);
635 /* prepare capture callback */
636 static int snd_emu10k1x_pcm_prepare_capture(struct snd_pcm_substream
*substream
)
638 struct emu10k1x
*emu
= snd_pcm_substream_chip(substream
);
639 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
641 snd_emu10k1x_ptr_write(emu
, CAPTURE_DMA_ADDR
, 0, runtime
->dma_addr
);
642 snd_emu10k1x_ptr_write(emu
, CAPTURE_BUFFER_SIZE
, 0, frames_to_bytes(runtime
, runtime
->buffer_size
)<<16); // buffer size in bytes
643 snd_emu10k1x_ptr_write(emu
, CAPTURE_POINTER
, 0, 0);
644 snd_emu10k1x_ptr_write(emu
, CAPTURE_UNKNOWN
, 0, 0);
649 /* trigger_capture callback */
650 static int snd_emu10k1x_pcm_trigger_capture(struct snd_pcm_substream
*substream
,
653 struct emu10k1x
*emu
= snd_pcm_substream_chip(substream
);
654 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
655 struct emu10k1x_pcm
*epcm
= runtime
->private_data
;
659 case SNDRV_PCM_TRIGGER_START
:
660 snd_emu10k1x_intr_enable(emu
, INTE_CAP_0_LOOP
|
661 INTE_CAP_0_HALF_LOOP
);
662 snd_emu10k1x_ptr_write(emu
, TRIGGER_CHANNEL
, 0, snd_emu10k1x_ptr_read(emu
, TRIGGER_CHANNEL
, 0)|TRIGGER_CAPTURE
);
665 case SNDRV_PCM_TRIGGER_STOP
:
667 snd_emu10k1x_intr_disable(emu
, INTE_CAP_0_LOOP
|
668 INTE_CAP_0_HALF_LOOP
);
669 snd_emu10k1x_ptr_write(emu
, TRIGGER_CHANNEL
, 0, snd_emu10k1x_ptr_read(emu
, TRIGGER_CHANNEL
, 0) & ~(TRIGGER_CAPTURE
));
678 /* pointer_capture callback */
679 static snd_pcm_uframes_t
680 snd_emu10k1x_pcm_pointer_capture(struct snd_pcm_substream
*substream
)
682 struct emu10k1x
*emu
= snd_pcm_substream_chip(substream
);
683 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
684 struct emu10k1x_pcm
*epcm
= runtime
->private_data
;
685 snd_pcm_uframes_t ptr
;
690 ptr
= bytes_to_frames(runtime
, snd_emu10k1x_ptr_read(emu
, CAPTURE_POINTER
, 0));
691 if (ptr
>= runtime
->buffer_size
)
692 ptr
-= runtime
->buffer_size
;
697 static struct snd_pcm_ops snd_emu10k1x_capture_ops
= {
698 .open
= snd_emu10k1x_pcm_open_capture
,
699 .close
= snd_emu10k1x_pcm_close_capture
,
700 .ioctl
= snd_pcm_lib_ioctl
,
701 .hw_params
= snd_emu10k1x_pcm_hw_params_capture
,
702 .hw_free
= snd_emu10k1x_pcm_hw_free_capture
,
703 .prepare
= snd_emu10k1x_pcm_prepare_capture
,
704 .trigger
= snd_emu10k1x_pcm_trigger_capture
,
705 .pointer
= snd_emu10k1x_pcm_pointer_capture
,
708 static unsigned short snd_emu10k1x_ac97_read(struct snd_ac97
*ac97
,
711 struct emu10k1x
*emu
= ac97
->private_data
;
715 spin_lock_irqsave(&emu
->emu_lock
, flags
);
716 outb(reg
, emu
->port
+ AC97ADDRESS
);
717 val
= inw(emu
->port
+ AC97DATA
);
718 spin_unlock_irqrestore(&emu
->emu_lock
, flags
);
722 static void snd_emu10k1x_ac97_write(struct snd_ac97
*ac97
,
723 unsigned short reg
, unsigned short val
)
725 struct emu10k1x
*emu
= ac97
->private_data
;
728 spin_lock_irqsave(&emu
->emu_lock
, flags
);
729 outb(reg
, emu
->port
+ AC97ADDRESS
);
730 outw(val
, emu
->port
+ AC97DATA
);
731 spin_unlock_irqrestore(&emu
->emu_lock
, flags
);
734 static int snd_emu10k1x_ac97(struct emu10k1x
*chip
)
736 struct snd_ac97_bus
*pbus
;
737 struct snd_ac97_template ac97
;
739 static struct snd_ac97_bus_ops ops
= {
740 .write
= snd_emu10k1x_ac97_write
,
741 .read
= snd_emu10k1x_ac97_read
,
744 if ((err
= snd_ac97_bus(chip
->card
, 0, &ops
, NULL
, &pbus
)) < 0)
746 pbus
->no_vra
= 1; /* we don't need VRA */
748 memset(&ac97
, 0, sizeof(ac97
));
749 ac97
.private_data
= chip
;
750 ac97
.scaps
= AC97_SCAP_NO_SPDIF
;
751 return snd_ac97_mixer(pbus
, &ac97
, &chip
->ac97
);
754 static int snd_emu10k1x_free(struct emu10k1x
*chip
)
756 snd_emu10k1x_ptr_write(chip
, TRIGGER_CHANNEL
, 0, 0);
757 // disable interrupts
758 outl(0, chip
->port
+ INTE
);
760 outl(HCFG_LOCKSOUNDCACHE
, chip
->port
+ HCFG
);
762 /* release the irq */
764 free_irq(chip
->irq
, chip
);
766 // release the i/o port
767 release_and_free_resource(chip
->res_port
);
770 if (chip
->dma_buffer
.area
) {
771 snd_dma_free_pages(&chip
->dma_buffer
);
774 pci_disable_device(chip
->pci
);
781 static int snd_emu10k1x_dev_free(struct snd_device
*device
)
783 struct emu10k1x
*chip
= device
->device_data
;
784 return snd_emu10k1x_free(chip
);
787 static irqreturn_t
snd_emu10k1x_interrupt(int irq
, void *dev_id
)
791 struct emu10k1x
*chip
= dev_id
;
792 struct emu10k1x_voice
*pvoice
= chip
->voices
;
796 status
= inl(chip
->port
+ IPR
);
802 if (status
& (IPR_CAP_0_LOOP
| IPR_CAP_0_HALF_LOOP
)) {
803 struct emu10k1x_voice
*cap_voice
= &chip
->capture_voice
;
805 snd_emu10k1x_pcm_interrupt(chip
, cap_voice
);
807 snd_emu10k1x_intr_disable(chip
,
809 INTE_CAP_0_HALF_LOOP
);
812 mask
= IPR_CH_0_LOOP
|IPR_CH_0_HALF_LOOP
;
813 for (i
= 0; i
< 3; i
++) {
816 snd_emu10k1x_pcm_interrupt(chip
, pvoice
);
818 snd_emu10k1x_intr_disable(chip
, mask
);
824 if (status
& (IPR_MIDITRANSBUFEMPTY
|IPR_MIDIRECVBUFEMPTY
)) {
825 if (chip
->midi
.interrupt
)
826 chip
->midi
.interrupt(chip
, status
);
828 snd_emu10k1x_intr_disable(chip
, INTE_MIDITXENABLE
|INTE_MIDIRXENABLE
);
831 // acknowledge the interrupt if necessary
832 outl(status
, chip
->port
+ IPR
);
834 /* dev_dbg(chip->card->dev, "interrupt %08x\n", status); */
838 static const struct snd_pcm_chmap_elem surround_map
[] = {
840 .map
= { SNDRV_CHMAP_RL
, SNDRV_CHMAP_RR
} },
844 static const struct snd_pcm_chmap_elem clfe_map
[] = {
846 .map
= { SNDRV_CHMAP_FC
, SNDRV_CHMAP_LFE
} },
850 static int snd_emu10k1x_pcm(struct emu10k1x
*emu
, int device
, struct snd_pcm
**rpcm
)
853 const struct snd_pcm_chmap_elem
*map
= NULL
;
862 if ((err
= snd_pcm_new(emu
->card
, "emu10k1x", device
, 1, capture
, &pcm
)) < 0)
865 pcm
->private_data
= emu
;
869 snd_pcm_set_ops(pcm
, SNDRV_PCM_STREAM_PLAYBACK
, &snd_emu10k1x_playback_ops
);
870 snd_pcm_set_ops(pcm
, SNDRV_PCM_STREAM_CAPTURE
, &snd_emu10k1x_capture_ops
);
874 snd_pcm_set_ops(pcm
, SNDRV_PCM_STREAM_PLAYBACK
, &snd_emu10k1x_playback_ops
);
881 strcpy(pcm
->name
, "EMU10K1X Front");
882 map
= snd_pcm_std_chmaps
;
885 strcpy(pcm
->name
, "EMU10K1X Rear");
889 strcpy(pcm
->name
, "EMU10K1X Center/LFE");
895 snd_pcm_lib_preallocate_pages_for_all(pcm
, SNDRV_DMA_TYPE_DEV
,
896 snd_dma_pci_data(emu
->pci
),
899 err
= snd_pcm_add_chmap_ctls(pcm
, SNDRV_PCM_STREAM_PLAYBACK
, map
, 2,
910 static int snd_emu10k1x_create(struct snd_card
*card
,
912 struct emu10k1x
**rchip
)
914 struct emu10k1x
*chip
;
917 static struct snd_device_ops ops
= {
918 .dev_free
= snd_emu10k1x_dev_free
,
923 if ((err
= pci_enable_device(pci
)) < 0)
925 if (pci_set_dma_mask(pci
, DMA_BIT_MASK(28)) < 0 ||
926 pci_set_consistent_dma_mask(pci
, DMA_BIT_MASK(28)) < 0) {
927 dev_err(card
->dev
, "error to set 28bit mask DMA\n");
928 pci_disable_device(pci
);
932 chip
= kzalloc(sizeof(*chip
), GFP_KERNEL
);
934 pci_disable_device(pci
);
942 spin_lock_init(&chip
->emu_lock
);
943 spin_lock_init(&chip
->voice_lock
);
945 chip
->port
= pci_resource_start(pci
, 0);
946 if ((chip
->res_port
= request_region(chip
->port
, 8,
947 "EMU10K1X")) == NULL
) {
948 dev_err(card
->dev
, "cannot allocate the port 0x%lx\n",
950 snd_emu10k1x_free(chip
);
954 if (request_irq(pci
->irq
, snd_emu10k1x_interrupt
,
955 IRQF_SHARED
, KBUILD_MODNAME
, chip
)) {
956 dev_err(card
->dev
, "cannot grab irq %d\n", pci
->irq
);
957 snd_emu10k1x_free(chip
);
960 chip
->irq
= pci
->irq
;
962 if(snd_dma_alloc_pages(SNDRV_DMA_TYPE_DEV
, snd_dma_pci_data(pci
),
963 4 * 1024, &chip
->dma_buffer
) < 0) {
964 snd_emu10k1x_free(chip
);
969 /* read revision & serial */
970 chip
->revision
= pci
->revision
;
971 pci_read_config_dword(pci
, PCI_SUBSYSTEM_VENDOR_ID
, &chip
->serial
);
972 pci_read_config_word(pci
, PCI_SUBSYSTEM_ID
, &chip
->model
);
973 dev_info(card
->dev
, "Model %04x Rev %08x Serial %08x\n", chip
->model
,
974 chip
->revision
, chip
->serial
);
976 outl(0, chip
->port
+ INTE
);
978 for(ch
= 0; ch
< 3; ch
++) {
979 chip
->voices
[ch
].emu
= chip
;
980 chip
->voices
[ch
].number
= ch
;
984 * Init to 0x02109204 :
985 * Clock accuracy = 0 (1000ppm)
986 * Sample Rate = 2 (48kHz)
987 * Audio Channel = 1 (Left of 2)
988 * Source Number = 0 (Unspecified)
989 * Generation Status = 1 (Original for Cat Code 12)
990 * Cat Code = 12 (Digital Signal Mixer)
992 * Emphasis = 0 (None)
993 * CP = 1 (Copyright unasserted)
994 * AN = 0 (Audio data)
997 snd_emu10k1x_ptr_write(chip
, SPCS0
, 0,
998 chip
->spdif_bits
[0] =
999 SPCS_CLKACCY_1000PPM
| SPCS_SAMPLERATE_48
|
1000 SPCS_CHANNELNUM_LEFT
| SPCS_SOURCENUM_UNSPEC
|
1001 SPCS_GENERATIONSTATUS
| 0x00001200 |
1002 0x00000000 | SPCS_EMPHASIS_NONE
| SPCS_COPYRIGHT
);
1003 snd_emu10k1x_ptr_write(chip
, SPCS1
, 0,
1004 chip
->spdif_bits
[1] =
1005 SPCS_CLKACCY_1000PPM
| SPCS_SAMPLERATE_48
|
1006 SPCS_CHANNELNUM_LEFT
| SPCS_SOURCENUM_UNSPEC
|
1007 SPCS_GENERATIONSTATUS
| 0x00001200 |
1008 0x00000000 | SPCS_EMPHASIS_NONE
| SPCS_COPYRIGHT
);
1009 snd_emu10k1x_ptr_write(chip
, SPCS2
, 0,
1010 chip
->spdif_bits
[2] =
1011 SPCS_CLKACCY_1000PPM
| SPCS_SAMPLERATE_48
|
1012 SPCS_CHANNELNUM_LEFT
| SPCS_SOURCENUM_UNSPEC
|
1013 SPCS_GENERATIONSTATUS
| 0x00001200 |
1014 0x00000000 | SPCS_EMPHASIS_NONE
| SPCS_COPYRIGHT
);
1016 snd_emu10k1x_ptr_write(chip
, SPDIF_SELECT
, 0, 0x700); // disable SPDIF
1017 snd_emu10k1x_ptr_write(chip
, ROUTING
, 0, 0x1003F); // routing
1018 snd_emu10k1x_gpio_write(chip
, 0x1080); // analog mode
1020 outl(HCFG_LOCKSOUNDCACHE
|HCFG_AUDIOENABLE
, chip
->port
+HCFG
);
1022 if ((err
= snd_device_new(card
, SNDRV_DEV_LOWLEVEL
,
1024 snd_emu10k1x_free(chip
);
1031 static void snd_emu10k1x_proc_reg_read(struct snd_info_entry
*entry
,
1032 struct snd_info_buffer
*buffer
)
1034 struct emu10k1x
*emu
= entry
->private_data
;
1035 unsigned long value
,value1
,value2
;
1036 unsigned long flags
;
1039 snd_iprintf(buffer
, "Registers:\n\n");
1040 for(i
= 0; i
< 0x20; i
+=4) {
1041 spin_lock_irqsave(&emu
->emu_lock
, flags
);
1042 value
= inl(emu
->port
+ i
);
1043 spin_unlock_irqrestore(&emu
->emu_lock
, flags
);
1044 snd_iprintf(buffer
, "Register %02X: %08lX\n", i
, value
);
1046 snd_iprintf(buffer
, "\nRegisters\n\n");
1047 for(i
= 0; i
<= 0x48; i
++) {
1048 value
= snd_emu10k1x_ptr_read(emu
, i
, 0);
1049 if(i
< 0x10 || (i
>= 0x20 && i
< 0x40)) {
1050 value1
= snd_emu10k1x_ptr_read(emu
, i
, 1);
1051 value2
= snd_emu10k1x_ptr_read(emu
, i
, 2);
1052 snd_iprintf(buffer
, "%02X: %08lX %08lX %08lX\n", i
, value
, value1
, value2
);
1054 snd_iprintf(buffer
, "%02X: %08lX\n", i
, value
);
1059 static void snd_emu10k1x_proc_reg_write(struct snd_info_entry
*entry
,
1060 struct snd_info_buffer
*buffer
)
1062 struct emu10k1x
*emu
= entry
->private_data
;
1064 unsigned int reg
, channel_id
, val
;
1066 while (!snd_info_get_line(buffer
, line
, sizeof(line
))) {
1067 if (sscanf(line
, "%x %x %x", ®
, &channel_id
, &val
) != 3)
1070 if (reg
< 0x49 && val
<= 0xffffffff && channel_id
<= 2)
1071 snd_emu10k1x_ptr_write(emu
, reg
, channel_id
, val
);
1075 static int snd_emu10k1x_proc_init(struct emu10k1x
*emu
)
1077 struct snd_info_entry
*entry
;
1079 if(! snd_card_proc_new(emu
->card
, "emu10k1x_regs", &entry
)) {
1080 snd_info_set_text_ops(entry
, emu
, snd_emu10k1x_proc_reg_read
);
1081 entry
->c
.text
.write
= snd_emu10k1x_proc_reg_write
;
1082 entry
->mode
|= S_IWUSR
;
1083 entry
->private_data
= emu
;
1089 #define snd_emu10k1x_shared_spdif_info snd_ctl_boolean_mono_info
1091 static int snd_emu10k1x_shared_spdif_get(struct snd_kcontrol
*kcontrol
,
1092 struct snd_ctl_elem_value
*ucontrol
)
1094 struct emu10k1x
*emu
= snd_kcontrol_chip(kcontrol
);
1096 ucontrol
->value
.integer
.value
[0] = (snd_emu10k1x_ptr_read(emu
, SPDIF_SELECT
, 0) == 0x700) ? 0 : 1;
1101 static int snd_emu10k1x_shared_spdif_put(struct snd_kcontrol
*kcontrol
,
1102 struct snd_ctl_elem_value
*ucontrol
)
1104 struct emu10k1x
*emu
= snd_kcontrol_chip(kcontrol
);
1108 val
= ucontrol
->value
.integer
.value
[0] ;
1111 // enable spdif output
1112 snd_emu10k1x_ptr_write(emu
, SPDIF_SELECT
, 0, 0x000);
1113 snd_emu10k1x_ptr_write(emu
, ROUTING
, 0, 0x700);
1114 snd_emu10k1x_gpio_write(emu
, 0x1000);
1116 // disable spdif output
1117 snd_emu10k1x_ptr_write(emu
, SPDIF_SELECT
, 0, 0x700);
1118 snd_emu10k1x_ptr_write(emu
, ROUTING
, 0, 0x1003F);
1119 snd_emu10k1x_gpio_write(emu
, 0x1080);
1124 static struct snd_kcontrol_new snd_emu10k1x_shared_spdif
=
1126 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
1127 .name
= "Analog/Digital Output Jack",
1128 .info
= snd_emu10k1x_shared_spdif_info
,
1129 .get
= snd_emu10k1x_shared_spdif_get
,
1130 .put
= snd_emu10k1x_shared_spdif_put
1133 static int snd_emu10k1x_spdif_info(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_info
*uinfo
)
1135 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_IEC958
;
1140 static int snd_emu10k1x_spdif_get(struct snd_kcontrol
*kcontrol
,
1141 struct snd_ctl_elem_value
*ucontrol
)
1143 struct emu10k1x
*emu
= snd_kcontrol_chip(kcontrol
);
1144 unsigned int idx
= snd_ctl_get_ioffidx(kcontrol
, &ucontrol
->id
);
1146 ucontrol
->value
.iec958
.status
[0] = (emu
->spdif_bits
[idx
] >> 0) & 0xff;
1147 ucontrol
->value
.iec958
.status
[1] = (emu
->spdif_bits
[idx
] >> 8) & 0xff;
1148 ucontrol
->value
.iec958
.status
[2] = (emu
->spdif_bits
[idx
] >> 16) & 0xff;
1149 ucontrol
->value
.iec958
.status
[3] = (emu
->spdif_bits
[idx
] >> 24) & 0xff;
1153 static int snd_emu10k1x_spdif_get_mask(struct snd_kcontrol
*kcontrol
,
1154 struct snd_ctl_elem_value
*ucontrol
)
1156 ucontrol
->value
.iec958
.status
[0] = 0xff;
1157 ucontrol
->value
.iec958
.status
[1] = 0xff;
1158 ucontrol
->value
.iec958
.status
[2] = 0xff;
1159 ucontrol
->value
.iec958
.status
[3] = 0xff;
1163 static int snd_emu10k1x_spdif_put(struct snd_kcontrol
*kcontrol
,
1164 struct snd_ctl_elem_value
*ucontrol
)
1166 struct emu10k1x
*emu
= snd_kcontrol_chip(kcontrol
);
1167 unsigned int idx
= snd_ctl_get_ioffidx(kcontrol
, &ucontrol
->id
);
1171 val
= (ucontrol
->value
.iec958
.status
[0] << 0) |
1172 (ucontrol
->value
.iec958
.status
[1] << 8) |
1173 (ucontrol
->value
.iec958
.status
[2] << 16) |
1174 (ucontrol
->value
.iec958
.status
[3] << 24);
1175 change
= val
!= emu
->spdif_bits
[idx
];
1177 snd_emu10k1x_ptr_write(emu
, SPCS0
+ idx
, 0, val
);
1178 emu
->spdif_bits
[idx
] = val
;
1183 static struct snd_kcontrol_new snd_emu10k1x_spdif_mask_control
=
1185 .access
= SNDRV_CTL_ELEM_ACCESS_READ
,
1186 .iface
= SNDRV_CTL_ELEM_IFACE_PCM
,
1187 .name
= SNDRV_CTL_NAME_IEC958("",PLAYBACK
,MASK
),
1189 .info
= snd_emu10k1x_spdif_info
,
1190 .get
= snd_emu10k1x_spdif_get_mask
1193 static struct snd_kcontrol_new snd_emu10k1x_spdif_control
=
1195 .iface
= SNDRV_CTL_ELEM_IFACE_PCM
,
1196 .name
= SNDRV_CTL_NAME_IEC958("",PLAYBACK
,DEFAULT
),
1198 .info
= snd_emu10k1x_spdif_info
,
1199 .get
= snd_emu10k1x_spdif_get
,
1200 .put
= snd_emu10k1x_spdif_put
1203 static int snd_emu10k1x_mixer(struct emu10k1x
*emu
)
1206 struct snd_kcontrol
*kctl
;
1207 struct snd_card
*card
= emu
->card
;
1209 if ((kctl
= snd_ctl_new1(&snd_emu10k1x_spdif_mask_control
, emu
)) == NULL
)
1211 if ((err
= snd_ctl_add(card
, kctl
)))
1213 if ((kctl
= snd_ctl_new1(&snd_emu10k1x_shared_spdif
, emu
)) == NULL
)
1215 if ((err
= snd_ctl_add(card
, kctl
)))
1217 if ((kctl
= snd_ctl_new1(&snd_emu10k1x_spdif_control
, emu
)) == NULL
)
1219 if ((err
= snd_ctl_add(card
, kctl
)))
1225 #define EMU10K1X_MIDI_MODE_INPUT (1<<0)
1226 #define EMU10K1X_MIDI_MODE_OUTPUT (1<<1)
1228 static inline unsigned char mpu401_read(struct emu10k1x
*emu
, struct emu10k1x_midi
*mpu
, int idx
)
1230 return (unsigned char)snd_emu10k1x_ptr_read(emu
, mpu
->port
+ idx
, 0);
1233 static inline void mpu401_write(struct emu10k1x
*emu
, struct emu10k1x_midi
*mpu
, int data
, int idx
)
1235 snd_emu10k1x_ptr_write(emu
, mpu
->port
+ idx
, 0, data
);
1238 #define mpu401_write_data(emu, mpu, data) mpu401_write(emu, mpu, data, 0)
1239 #define mpu401_write_cmd(emu, mpu, data) mpu401_write(emu, mpu, data, 1)
1240 #define mpu401_read_data(emu, mpu) mpu401_read(emu, mpu, 0)
1241 #define mpu401_read_stat(emu, mpu) mpu401_read(emu, mpu, 1)
1243 #define mpu401_input_avail(emu,mpu) (!(mpu401_read_stat(emu,mpu) & 0x80))
1244 #define mpu401_output_ready(emu,mpu) (!(mpu401_read_stat(emu,mpu) & 0x40))
1246 #define MPU401_RESET 0xff
1247 #define MPU401_ENTER_UART 0x3f
1248 #define MPU401_ACK 0xfe
1250 static void mpu401_clear_rx(struct emu10k1x
*emu
, struct emu10k1x_midi
*mpu
)
1252 int timeout
= 100000;
1253 for (; timeout
> 0 && mpu401_input_avail(emu
, mpu
); timeout
--)
1254 mpu401_read_data(emu
, mpu
);
1255 #ifdef CONFIG_SND_DEBUG
1257 dev_err(emu
->card
->dev
,
1258 "cmd: clear rx timeout (status = 0x%x)\n",
1259 mpu401_read_stat(emu
, mpu
));
1267 static void do_emu10k1x_midi_interrupt(struct emu10k1x
*emu
,
1268 struct emu10k1x_midi
*midi
, unsigned int status
)
1272 if (midi
->rmidi
== NULL
) {
1273 snd_emu10k1x_intr_disable(emu
, midi
->tx_enable
| midi
->rx_enable
);
1277 spin_lock(&midi
->input_lock
);
1278 if ((status
& midi
->ipr_rx
) && mpu401_input_avail(emu
, midi
)) {
1279 if (!(midi
->midi_mode
& EMU10K1X_MIDI_MODE_INPUT
)) {
1280 mpu401_clear_rx(emu
, midi
);
1282 byte
= mpu401_read_data(emu
, midi
);
1283 if (midi
->substream_input
)
1284 snd_rawmidi_receive(midi
->substream_input
, &byte
, 1);
1287 spin_unlock(&midi
->input_lock
);
1289 spin_lock(&midi
->output_lock
);
1290 if ((status
& midi
->ipr_tx
) && mpu401_output_ready(emu
, midi
)) {
1291 if (midi
->substream_output
&&
1292 snd_rawmidi_transmit(midi
->substream_output
, &byte
, 1) == 1) {
1293 mpu401_write_data(emu
, midi
, byte
);
1295 snd_emu10k1x_intr_disable(emu
, midi
->tx_enable
);
1298 spin_unlock(&midi
->output_lock
);
1301 static void snd_emu10k1x_midi_interrupt(struct emu10k1x
*emu
, unsigned int status
)
1303 do_emu10k1x_midi_interrupt(emu
, &emu
->midi
, status
);
1306 static int snd_emu10k1x_midi_cmd(struct emu10k1x
* emu
,
1307 struct emu10k1x_midi
*midi
, unsigned char cmd
, int ack
)
1309 unsigned long flags
;
1312 spin_lock_irqsave(&midi
->input_lock
, flags
);
1313 mpu401_write_data(emu
, midi
, 0x00);
1314 /* mpu401_clear_rx(emu, midi); */
1316 mpu401_write_cmd(emu
, midi
, cmd
);
1320 while (!ok
&& timeout
-- > 0) {
1321 if (mpu401_input_avail(emu
, midi
)) {
1322 if (mpu401_read_data(emu
, midi
) == MPU401_ACK
)
1326 if (!ok
&& mpu401_read_data(emu
, midi
) == MPU401_ACK
)
1331 spin_unlock_irqrestore(&midi
->input_lock
, flags
);
1333 dev_err(emu
->card
->dev
,
1334 "midi_cmd: 0x%x failed at 0x%lx (status = 0x%x, data = 0x%x)!!!\n",
1336 mpu401_read_stat(emu
, midi
),
1337 mpu401_read_data(emu
, midi
));
1343 static int snd_emu10k1x_midi_input_open(struct snd_rawmidi_substream
*substream
)
1345 struct emu10k1x
*emu
;
1346 struct emu10k1x_midi
*midi
= substream
->rmidi
->private_data
;
1347 unsigned long flags
;
1350 if (snd_BUG_ON(!emu
))
1352 spin_lock_irqsave(&midi
->open_lock
, flags
);
1353 midi
->midi_mode
|= EMU10K1X_MIDI_MODE_INPUT
;
1354 midi
->substream_input
= substream
;
1355 if (!(midi
->midi_mode
& EMU10K1X_MIDI_MODE_OUTPUT
)) {
1356 spin_unlock_irqrestore(&midi
->open_lock
, flags
);
1357 if (snd_emu10k1x_midi_cmd(emu
, midi
, MPU401_RESET
, 1))
1359 if (snd_emu10k1x_midi_cmd(emu
, midi
, MPU401_ENTER_UART
, 1))
1362 spin_unlock_irqrestore(&midi
->open_lock
, flags
);
1370 static int snd_emu10k1x_midi_output_open(struct snd_rawmidi_substream
*substream
)
1372 struct emu10k1x
*emu
;
1373 struct emu10k1x_midi
*midi
= substream
->rmidi
->private_data
;
1374 unsigned long flags
;
1377 if (snd_BUG_ON(!emu
))
1379 spin_lock_irqsave(&midi
->open_lock
, flags
);
1380 midi
->midi_mode
|= EMU10K1X_MIDI_MODE_OUTPUT
;
1381 midi
->substream_output
= substream
;
1382 if (!(midi
->midi_mode
& EMU10K1X_MIDI_MODE_INPUT
)) {
1383 spin_unlock_irqrestore(&midi
->open_lock
, flags
);
1384 if (snd_emu10k1x_midi_cmd(emu
, midi
, MPU401_RESET
, 1))
1386 if (snd_emu10k1x_midi_cmd(emu
, midi
, MPU401_ENTER_UART
, 1))
1389 spin_unlock_irqrestore(&midi
->open_lock
, flags
);
1397 static int snd_emu10k1x_midi_input_close(struct snd_rawmidi_substream
*substream
)
1399 struct emu10k1x
*emu
;
1400 struct emu10k1x_midi
*midi
= substream
->rmidi
->private_data
;
1401 unsigned long flags
;
1405 if (snd_BUG_ON(!emu
))
1407 spin_lock_irqsave(&midi
->open_lock
, flags
);
1408 snd_emu10k1x_intr_disable(emu
, midi
->rx_enable
);
1409 midi
->midi_mode
&= ~EMU10K1X_MIDI_MODE_INPUT
;
1410 midi
->substream_input
= NULL
;
1411 if (!(midi
->midi_mode
& EMU10K1X_MIDI_MODE_OUTPUT
)) {
1412 spin_unlock_irqrestore(&midi
->open_lock
, flags
);
1413 err
= snd_emu10k1x_midi_cmd(emu
, midi
, MPU401_RESET
, 0);
1415 spin_unlock_irqrestore(&midi
->open_lock
, flags
);
1420 static int snd_emu10k1x_midi_output_close(struct snd_rawmidi_substream
*substream
)
1422 struct emu10k1x
*emu
;
1423 struct emu10k1x_midi
*midi
= substream
->rmidi
->private_data
;
1424 unsigned long flags
;
1428 if (snd_BUG_ON(!emu
))
1430 spin_lock_irqsave(&midi
->open_lock
, flags
);
1431 snd_emu10k1x_intr_disable(emu
, midi
->tx_enable
);
1432 midi
->midi_mode
&= ~EMU10K1X_MIDI_MODE_OUTPUT
;
1433 midi
->substream_output
= NULL
;
1434 if (!(midi
->midi_mode
& EMU10K1X_MIDI_MODE_INPUT
)) {
1435 spin_unlock_irqrestore(&midi
->open_lock
, flags
);
1436 err
= snd_emu10k1x_midi_cmd(emu
, midi
, MPU401_RESET
, 0);
1438 spin_unlock_irqrestore(&midi
->open_lock
, flags
);
1443 static void snd_emu10k1x_midi_input_trigger(struct snd_rawmidi_substream
*substream
, int up
)
1445 struct emu10k1x
*emu
;
1446 struct emu10k1x_midi
*midi
= substream
->rmidi
->private_data
;
1448 if (snd_BUG_ON(!emu
))
1452 snd_emu10k1x_intr_enable(emu
, midi
->rx_enable
);
1454 snd_emu10k1x_intr_disable(emu
, midi
->rx_enable
);
1457 static void snd_emu10k1x_midi_output_trigger(struct snd_rawmidi_substream
*substream
, int up
)
1459 struct emu10k1x
*emu
;
1460 struct emu10k1x_midi
*midi
= substream
->rmidi
->private_data
;
1461 unsigned long flags
;
1464 if (snd_BUG_ON(!emu
))
1471 /* try to send some amount of bytes here before interrupts */
1472 spin_lock_irqsave(&midi
->output_lock
, flags
);
1474 if (mpu401_output_ready(emu
, midi
)) {
1475 if (!(midi
->midi_mode
& EMU10K1X_MIDI_MODE_OUTPUT
) ||
1476 snd_rawmidi_transmit(substream
, &byte
, 1) != 1) {
1478 spin_unlock_irqrestore(&midi
->output_lock
, flags
);
1481 mpu401_write_data(emu
, midi
, byte
);
1487 spin_unlock_irqrestore(&midi
->output_lock
, flags
);
1488 snd_emu10k1x_intr_enable(emu
, midi
->tx_enable
);
1490 snd_emu10k1x_intr_disable(emu
, midi
->tx_enable
);
1498 static struct snd_rawmidi_ops snd_emu10k1x_midi_output
=
1500 .open
= snd_emu10k1x_midi_output_open
,
1501 .close
= snd_emu10k1x_midi_output_close
,
1502 .trigger
= snd_emu10k1x_midi_output_trigger
,
1505 static struct snd_rawmidi_ops snd_emu10k1x_midi_input
=
1507 .open
= snd_emu10k1x_midi_input_open
,
1508 .close
= snd_emu10k1x_midi_input_close
,
1509 .trigger
= snd_emu10k1x_midi_input_trigger
,
1512 static void snd_emu10k1x_midi_free(struct snd_rawmidi
*rmidi
)
1514 struct emu10k1x_midi
*midi
= rmidi
->private_data
;
1515 midi
->interrupt
= NULL
;
1519 static int emu10k1x_midi_init(struct emu10k1x
*emu
,
1520 struct emu10k1x_midi
*midi
, int device
,
1523 struct snd_rawmidi
*rmidi
;
1526 if ((err
= snd_rawmidi_new(emu
->card
, name
, device
, 1, 1, &rmidi
)) < 0)
1529 spin_lock_init(&midi
->open_lock
);
1530 spin_lock_init(&midi
->input_lock
);
1531 spin_lock_init(&midi
->output_lock
);
1532 strcpy(rmidi
->name
, name
);
1533 snd_rawmidi_set_ops(rmidi
, SNDRV_RAWMIDI_STREAM_OUTPUT
, &snd_emu10k1x_midi_output
);
1534 snd_rawmidi_set_ops(rmidi
, SNDRV_RAWMIDI_STREAM_INPUT
, &snd_emu10k1x_midi_input
);
1535 rmidi
->info_flags
|= SNDRV_RAWMIDI_INFO_OUTPUT
|
1536 SNDRV_RAWMIDI_INFO_INPUT
|
1537 SNDRV_RAWMIDI_INFO_DUPLEX
;
1538 rmidi
->private_data
= midi
;
1539 rmidi
->private_free
= snd_emu10k1x_midi_free
;
1540 midi
->rmidi
= rmidi
;
1544 static int snd_emu10k1x_midi(struct emu10k1x
*emu
)
1546 struct emu10k1x_midi
*midi
= &emu
->midi
;
1549 if ((err
= emu10k1x_midi_init(emu
, midi
, 0, "EMU10K1X MPU-401 (UART)")) < 0)
1552 midi
->tx_enable
= INTE_MIDITXENABLE
;
1553 midi
->rx_enable
= INTE_MIDIRXENABLE
;
1554 midi
->port
= MUDATA
;
1555 midi
->ipr_tx
= IPR_MIDITRANSBUFEMPTY
;
1556 midi
->ipr_rx
= IPR_MIDIRECVBUFEMPTY
;
1557 midi
->interrupt
= snd_emu10k1x_midi_interrupt
;
1561 static int snd_emu10k1x_probe(struct pci_dev
*pci
,
1562 const struct pci_device_id
*pci_id
)
1565 struct snd_card
*card
;
1566 struct emu10k1x
*chip
;
1569 if (dev
>= SNDRV_CARDS
)
1576 err
= snd_card_new(&pci
->dev
, index
[dev
], id
[dev
], THIS_MODULE
,
1581 if ((err
= snd_emu10k1x_create(card
, pci
, &chip
)) < 0) {
1582 snd_card_free(card
);
1586 if ((err
= snd_emu10k1x_pcm(chip
, 0, NULL
)) < 0) {
1587 snd_card_free(card
);
1590 if ((err
= snd_emu10k1x_pcm(chip
, 1, NULL
)) < 0) {
1591 snd_card_free(card
);
1594 if ((err
= snd_emu10k1x_pcm(chip
, 2, NULL
)) < 0) {
1595 snd_card_free(card
);
1599 if ((err
= snd_emu10k1x_ac97(chip
)) < 0) {
1600 snd_card_free(card
);
1604 if ((err
= snd_emu10k1x_mixer(chip
)) < 0) {
1605 snd_card_free(card
);
1609 if ((err
= snd_emu10k1x_midi(chip
)) < 0) {
1610 snd_card_free(card
);
1614 snd_emu10k1x_proc_init(chip
);
1616 strcpy(card
->driver
, "EMU10K1X");
1617 strcpy(card
->shortname
, "Dell Sound Blaster Live!");
1618 sprintf(card
->longname
, "%s at 0x%lx irq %i",
1619 card
->shortname
, chip
->port
, chip
->irq
);
1621 if ((err
= snd_card_register(card
)) < 0) {
1622 snd_card_free(card
);
1626 pci_set_drvdata(pci
, card
);
1631 static void snd_emu10k1x_remove(struct pci_dev
*pci
)
1633 snd_card_free(pci_get_drvdata(pci
));
1637 static DEFINE_PCI_DEVICE_TABLE(snd_emu10k1x_ids
) = {
1638 { PCI_VDEVICE(CREATIVE
, 0x0006), 0 }, /* Dell OEM version (EMU10K1) */
1641 MODULE_DEVICE_TABLE(pci
, snd_emu10k1x_ids
);
1643 // pci_driver definition
1644 static struct pci_driver emu10k1x_driver
= {
1645 .name
= KBUILD_MODNAME
,
1646 .id_table
= snd_emu10k1x_ids
,
1647 .probe
= snd_emu10k1x_probe
,
1648 .remove
= snd_emu10k1x_remove
,
1651 module_pci_driver(emu10k1x_driver
);