blob: a8d6b54143fa3a0bec4cfa98a063c1cd92cde562 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Driver for C-Media CMI8338 and 8738 PCI soundcards.
3 * Copyright (c) 2000 by Takashi Iwai <tiwai@suse.de>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 */
19
20/* Does not work. Warning may block system in capture mode */
21/* #define USE_VAR48KRATE */
22
23#include <sound/driver.h>
24#include <asm/io.h>
25#include <linux/delay.h>
26#include <linux/interrupt.h>
27#include <linux/init.h>
28#include <linux/pci.h>
29#include <linux/slab.h>
30#include <linux/gameport.h>
31#include <linux/moduleparam.h>
Ingo Molnar62932df2006-01-16 16:34:20 +010032#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <sound/core.h>
34#include <sound/info.h>
35#include <sound/control.h>
36#include <sound/pcm.h>
37#include <sound/rawmidi.h>
38#include <sound/mpu401.h>
39#include <sound/opl3.h>
40#include <sound/sb.h>
41#include <sound/asoundef.h>
42#include <sound/initval.h>
43
44MODULE_AUTHOR("Takashi Iwai <tiwai@suse.de>");
45MODULE_DESCRIPTION("C-Media CMI8x38 PCI");
46MODULE_LICENSE("GPL");
47MODULE_SUPPORTED_DEVICE("{{C-Media,CMI8738},"
48 "{C-Media,CMI8738B},"
49 "{C-Media,CMI8338A},"
50 "{C-Media,CMI8338B}}");
51
52#if defined(CONFIG_GAMEPORT) || (defined(MODULE) && defined(CONFIG_GAMEPORT_MODULE))
53#define SUPPORT_JOYSTICK 1
54#endif
55
56static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */
57static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */
58static int enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_PNP; /* Enable switches */
59static long mpu_port[SNDRV_CARDS];
Takashi Iwai2f24d1592007-02-15 18:56:43 +010060static long fm_port[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS-1)]=1};
Linus Torvalds1da177e2005-04-16 15:20:36 -070061static int soft_ac3[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS-1)]=1};
62#ifdef SUPPORT_JOYSTICK
63static int joystick_port[SNDRV_CARDS];
64#endif
65
66module_param_array(index, int, NULL, 0444);
67MODULE_PARM_DESC(index, "Index value for C-Media PCI soundcard.");
68module_param_array(id, charp, NULL, 0444);
69MODULE_PARM_DESC(id, "ID string for C-Media PCI soundcard.");
70module_param_array(enable, bool, NULL, 0444);
71MODULE_PARM_DESC(enable, "Enable C-Media PCI soundcard.");
72module_param_array(mpu_port, long, NULL, 0444);
73MODULE_PARM_DESC(mpu_port, "MPU-401 port.");
74module_param_array(fm_port, long, NULL, 0444);
75MODULE_PARM_DESC(fm_port, "FM port.");
76module_param_array(soft_ac3, bool, NULL, 0444);
77MODULE_PARM_DESC(soft_ac3, "Sofware-conversion of raw SPDIF packets (model 033 only).");
78#ifdef SUPPORT_JOYSTICK
79module_param_array(joystick_port, int, NULL, 0444);
80MODULE_PARM_DESC(joystick_port, "Joystick port address.");
81#endif
82
Linus Torvalds1da177e2005-04-16 15:20:36 -070083/*
84 * CM8x38 registers definition
85 */
86
87#define CM_REG_FUNCTRL0 0x00
88#define CM_RST_CH1 0x00080000
89#define CM_RST_CH0 0x00040000
90#define CM_CHEN1 0x00020000 /* ch1: enable */
91#define CM_CHEN0 0x00010000 /* ch0: enable */
92#define CM_PAUSE1 0x00000008 /* ch1: pause */
93#define CM_PAUSE0 0x00000004 /* ch0: pause */
94#define CM_CHADC1 0x00000002 /* ch1, 0:playback, 1:record */
95#define CM_CHADC0 0x00000001 /* ch0, 0:playback, 1:record */
96
97#define CM_REG_FUNCTRL1 0x04
98#define CM_ASFC_MASK 0x0000E000 /* ADC sampling frequency */
99#define CM_ASFC_SHIFT 13
100#define CM_DSFC_MASK 0x00001C00 /* DAC sampling frequency */
101#define CM_DSFC_SHIFT 10
102#define CM_SPDF_1 0x00000200 /* SPDIF IN/OUT at channel B */
103#define CM_SPDF_0 0x00000100 /* SPDIF OUT only channel A */
104#define CM_SPDFLOOP 0x00000080 /* ext. SPDIIF/OUT -> IN loopback */
105#define CM_SPDO2DAC 0x00000040 /* SPDIF/OUT can be heard from internal DAC */
106#define CM_INTRM 0x00000020 /* master control block (MCB) interrupt enabled */
107#define CM_BREQ 0x00000010 /* bus master enabled */
108#define CM_VOICE_EN 0x00000008 /* legacy voice (SB16,FM) */
109#define CM_UART_EN 0x00000004 /* UART */
110#define CM_JYSTK_EN 0x00000002 /* joy stick */
111
112#define CM_REG_CHFORMAT 0x08
113
114#define CM_CHB3D5C 0x80000000 /* 5,6 channels */
115#define CM_CHB3D 0x20000000 /* 4 channels */
116
117#define CM_CHIP_MASK1 0x1f000000
118#define CM_CHIP_037 0x01000000
119
120#define CM_SPDIF_SELECT1 0x00080000 /* for model <= 037 ? */
121#define CM_AC3EN1 0x00100000 /* enable AC3: model 037 */
122#define CM_SPD24SEL 0x00020000 /* 24bit spdif: model 037 */
123/* #define CM_SPDIF_INVERSE 0x00010000 */ /* ??? */
124
125#define CM_ADCBITLEN_MASK 0x0000C000
126#define CM_ADCBITLEN_16 0x00000000
127#define CM_ADCBITLEN_15 0x00004000
128#define CM_ADCBITLEN_14 0x00008000
129#define CM_ADCBITLEN_13 0x0000C000
130
131#define CM_ADCDACLEN_MASK 0x00003000
132#define CM_ADCDACLEN_060 0x00000000
133#define CM_ADCDACLEN_066 0x00001000
134#define CM_ADCDACLEN_130 0x00002000
135#define CM_ADCDACLEN_280 0x00003000
136
137#define CM_CH1_SRATE_176K 0x00000800
Clemens Ladisch8992e182007-09-03 09:54:55 +0200138#define CM_CH1_SRATE_96K 0x00000800 /* model 055? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139#define CM_CH1_SRATE_88K 0x00000400
140#define CM_CH0_SRATE_176K 0x00000200
Clemens Ladisch8992e182007-09-03 09:54:55 +0200141#define CM_CH0_SRATE_96K 0x00000200 /* model 055? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142#define CM_CH0_SRATE_88K 0x00000100
143
144#define CM_SPDIF_INVERSE2 0x00000080 /* model 055? */
Clemens Ladisch8992e182007-09-03 09:54:55 +0200145#define CM_DBLSPDS 0x00000040
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
147#define CM_CH1FMT_MASK 0x0000000C
148#define CM_CH1FMT_SHIFT 2
149#define CM_CH0FMT_MASK 0x00000003
150#define CM_CH0FMT_SHIFT 0
151
152#define CM_REG_INT_HLDCLR 0x0C
153#define CM_CHIP_MASK2 0xff000000
154#define CM_CHIP_039 0x04000000
155#define CM_CHIP_039_6CH 0x01000000
156#define CM_CHIP_055 0x08000000
157#define CM_CHIP_8768 0x20000000
158#define CM_TDMA_INT_EN 0x00040000
159#define CM_CH1_INT_EN 0x00020000
160#define CM_CH0_INT_EN 0x00010000
161#define CM_INT_HOLD 0x00000002
162#define CM_INT_CLEAR 0x00000001
163
164#define CM_REG_INT_STATUS 0x10
165#define CM_INTR 0x80000000
166#define CM_VCO 0x08000000 /* Voice Control? CMI8738 */
167#define CM_MCBINT 0x04000000 /* Master Control Block abort cond.? */
168#define CM_UARTINT 0x00010000
169#define CM_LTDMAINT 0x00008000
170#define CM_HTDMAINT 0x00004000
171#define CM_XDO46 0x00000080 /* Modell 033? Direct programming EEPROM (read data register) */
172#define CM_LHBTOG 0x00000040 /* High/Low status from DMA ctrl register */
173#define CM_LEG_HDMA 0x00000020 /* Legacy is in High DMA channel */
174#define CM_LEG_STEREO 0x00000010 /* Legacy is in Stereo mode */
175#define CM_CH1BUSY 0x00000008
176#define CM_CH0BUSY 0x00000004
177#define CM_CHINT1 0x00000002
178#define CM_CHINT0 0x00000001
179
180#define CM_REG_LEGACY_CTRL 0x14
181#define CM_NXCHG 0x80000000 /* h/w multi channels? */
182#define CM_VMPU_MASK 0x60000000 /* MPU401 i/o port address */
183#define CM_VMPU_330 0x00000000
184#define CM_VMPU_320 0x20000000
185#define CM_VMPU_310 0x40000000
186#define CM_VMPU_300 0x60000000
187#define CM_VSBSEL_MASK 0x0C000000 /* SB16 base address */
188#define CM_VSBSEL_220 0x00000000
189#define CM_VSBSEL_240 0x04000000
190#define CM_VSBSEL_260 0x08000000
191#define CM_VSBSEL_280 0x0C000000
192#define CM_FMSEL_MASK 0x03000000 /* FM OPL3 base address */
193#define CM_FMSEL_388 0x00000000
194#define CM_FMSEL_3C8 0x01000000
195#define CM_FMSEL_3E0 0x02000000
196#define CM_FMSEL_3E8 0x03000000
197#define CM_ENSPDOUT 0x00800000 /* enable XPDIF/OUT to I/O interface */
198#define CM_SPDCOPYRHT 0x00400000 /* set copyright spdif in/out */
199#define CM_DAC2SPDO 0x00200000 /* enable wave+fm_midi -> SPDIF/OUT */
200#define CM_SETRETRY 0x00010000 /* 0: legacy i/o wait (default), 1: legacy i/o bus retry */
201#define CM_CHB3D6C 0x00008000 /* 5.1 channels support */
202#define CM_LINE_AS_BASS 0x00006000 /* use line-in as bass */
203
204#define CM_REG_MISC_CTRL 0x18
205#define CM_PWD 0x80000000
206#define CM_RESET 0x40000000
207#define CM_SFIL_MASK 0x30000000
208#define CM_TXVX 0x08000000
209#define CM_N4SPK3D 0x04000000 /* 4ch output */
210#define CM_SPDO5V 0x02000000 /* 5V spdif output (1 = 0.5v (coax)) */
211#define CM_SPDIF48K 0x01000000 /* write */
212#define CM_SPATUS48K 0x01000000 /* read */
213#define CM_ENDBDAC 0x00800000 /* enable dual dac */
214#define CM_XCHGDAC 0x00400000 /* 0: front=ch0, 1: front=ch1 */
215#define CM_SPD32SEL 0x00200000 /* 0: 16bit SPDIF, 1: 32bit */
216#define CM_SPDFLOOPI 0x00100000 /* int. SPDIF-IN -> int. OUT */
217#define CM_FM_EN 0x00080000 /* enalbe FM */
218#define CM_AC3EN2 0x00040000 /* enable AC3: model 039 */
219#define CM_VIDWPDSB 0x00010000
220#define CM_SPDF_AC97 0x00008000 /* 0: SPDIF/OUT 44.1K, 1: 48K */
221#define CM_MASK_EN 0x00004000
222#define CM_VIDWPPRT 0x00002000
223#define CM_SFILENB 0x00001000
224#define CM_MMODE_MASK 0x00000E00
225#define CM_SPDIF_SELECT2 0x00000100 /* for model > 039 ? */
226#define CM_ENCENTER 0x00000080
227#define CM_FLINKON 0x00000040
228#define CM_FLINKOFF 0x00000020
229#define CM_MIDSMP 0x00000010
230#define CM_UPDDMA_MASK 0x0000000C
231#define CM_TWAIT_MASK 0x00000003
232
233 /* byte */
234#define CM_REG_MIXER0 0x20
235
236#define CM_REG_SB16_DATA 0x22
237#define CM_REG_SB16_ADDR 0x23
238
239#define CM_REFFREQ_XIN (315*1000*1000)/22 /* 14.31818 Mhz reference clock frequency pin XIN */
240#define CM_ADCMULT_XIN 512 /* Guessed (487 best for 44.1kHz, not for 88/176kHz) */
241#define CM_TOLERANCE_RATE 0.001 /* Tolerance sample rate pitch (1000ppm) */
242#define CM_MAXIMUM_RATE 80000000 /* Note more than 80MHz */
243
244#define CM_REG_MIXER1 0x24
245#define CM_FMMUTE 0x80 /* mute FM */
246#define CM_FMMUTE_SHIFT 7
247#define CM_WSMUTE 0x40 /* mute PCM */
248#define CM_WSMUTE_SHIFT 6
249#define CM_SPK4 0x20 /* lin-in -> rear line out */
250#define CM_SPK4_SHIFT 5
251#define CM_REAR2FRONT 0x10 /* exchange rear/front */
252#define CM_REAR2FRONT_SHIFT 4
253#define CM_WAVEINL 0x08 /* digital wave rec. left chan */
254#define CM_WAVEINL_SHIFT 3
255#define CM_WAVEINR 0x04 /* digical wave rec. right */
256#define CM_WAVEINR_SHIFT 2
257#define CM_X3DEN 0x02 /* 3D surround enable */
258#define CM_X3DEN_SHIFT 1
259#define CM_CDPLAY 0x01 /* enable SPDIF/IN PCM -> DAC */
260#define CM_CDPLAY_SHIFT 0
261
262#define CM_REG_MIXER2 0x25
263#define CM_RAUXREN 0x80 /* AUX right capture */
264#define CM_RAUXREN_SHIFT 7
265#define CM_RAUXLEN 0x40 /* AUX left capture */
266#define CM_RAUXLEN_SHIFT 6
267#define CM_VAUXRM 0x20 /* AUX right mute */
268#define CM_VAUXRM_SHIFT 5
269#define CM_VAUXLM 0x10 /* AUX left mute */
270#define CM_VAUXLM_SHIFT 4
271#define CM_VADMIC_MASK 0x0e /* mic gain level (0-3) << 1 */
272#define CM_VADMIC_SHIFT 1
273#define CM_MICGAINZ 0x01 /* mic boost */
274#define CM_MICGAINZ_SHIFT 0
275
Takashi Iwaicb60e5f2005-11-17 16:14:49 +0100276#define CM_REG_MIXER3 0x24
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277#define CM_REG_AUX_VOL 0x26
278#define CM_VAUXL_MASK 0xf0
279#define CM_VAUXR_MASK 0x0f
280
281#define CM_REG_MISC 0x27
282#define CM_XGPO1 0x20
283// #define CM_XGPBIO 0x04
284#define CM_MIC_CENTER_LFE 0x04 /* mic as center/lfe out? (model 039 or later?) */
285#define CM_SPDIF_INVERSE 0x04 /* spdif input phase inverse (model 037) */
286#define CM_SPDVALID 0x02 /* spdif input valid check */
287#define CM_DMAUTO 0x01
288
289#define CM_REG_AC97 0x28 /* hmmm.. do we have ac97 link? */
290/*
291 * For CMI-8338 (0x28 - 0x2b) .. is this valid for CMI-8738
292 * or identical with AC97 codec?
293 */
294#define CM_REG_EXTERN_CODEC CM_REG_AC97
295
296/*
297 * MPU401 pci port index address 0x40 - 0x4f (CMI-8738 spec ver. 0.6)
298 */
299#define CM_REG_MPU_PCI 0x40
300
301/*
302 * FM pci port index address 0x50 - 0x5f (CMI-8738 spec ver. 0.6)
303 */
304#define CM_REG_FM_PCI 0x50
305
306/*
Takashi Iwai2eff7ec2005-06-30 13:45:20 +0200307 * access from SB-mixer port
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 */
309#define CM_REG_EXTENT_IND 0xf0
310#define CM_VPHONE_MASK 0xe0 /* Phone volume control (0-3) << 5 */
311#define CM_VPHONE_SHIFT 5
312#define CM_VPHOM 0x10 /* Phone mute control */
313#define CM_VSPKM 0x08 /* Speaker mute control, default high */
314#define CM_RLOOPREN 0x04 /* Rec. R-channel enable */
315#define CM_RLOOPLEN 0x02 /* Rec. L-channel enable */
Takashi Iwai2eff7ec2005-06-30 13:45:20 +0200316#define CM_VADMIC3 0x01 /* Mic record boost */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317
318/*
319 * CMI-8338 spec ver 0.5 (this is not valid for CMI-8738):
320 * the 8 registers 0xf8 - 0xff are used for programming m/n counter by the PLL
321 * unit (readonly?).
322 */
323#define CM_REG_PLL 0xf8
324
325/*
326 * extended registers
327 */
328#define CM_REG_CH0_FRAME1 0x80 /* base address */
329#define CM_REG_CH0_FRAME2 0x84
330#define CM_REG_CH1_FRAME1 0x88 /* 0-15: count of samples at bus master; buffer size */
331#define CM_REG_CH1_FRAME2 0x8C /* 16-31: count of samples at codec; fragment size */
Takashi Iwaicb60e5f2005-11-17 16:14:49 +0100332#define CM_REG_EXT_MISC 0x90
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333#define CM_REG_MISC_CTRL_8768 0x92 /* reg. name the same as 0x18 */
334#define CM_CHB3D8C 0x20 /* 7.1 channels support */
335#define CM_SPD32FMT 0x10 /* SPDIF/IN 32k */
336#define CM_ADC2SPDIF 0x08 /* ADC output to SPDIF/OUT */
337#define CM_SHAREADC 0x04 /* DAC in ADC as Center/LFE */
338#define CM_REALTCMP 0x02 /* monitor the CMPL/CMPR of ADC */
339#define CM_INVLRCK 0x01 /* invert ZVPORT's LRCK */
340
341/*
342 * size of i/o region
343 */
344#define CM_EXTENT_CODEC 0x100
345#define CM_EXTENT_MIDI 0x2
346#define CM_EXTENT_SYNTH 0x4
347
348
349/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 * channels for playback / capture
351 */
352#define CM_CH_PLAY 0
353#define CM_CH_CAPT 1
354
355/*
356 * flags to check device open/close
357 */
358#define CM_OPEN_NONE 0
359#define CM_OPEN_CH_MASK 0x01
360#define CM_OPEN_DAC 0x10
361#define CM_OPEN_ADC 0x20
362#define CM_OPEN_SPDIF 0x40
363#define CM_OPEN_MCHAN 0x80
364#define CM_OPEN_PLAYBACK (CM_CH_PLAY | CM_OPEN_DAC)
365#define CM_OPEN_PLAYBACK2 (CM_CH_CAPT | CM_OPEN_DAC)
366#define CM_OPEN_PLAYBACK_MULTI (CM_CH_PLAY | CM_OPEN_DAC | CM_OPEN_MCHAN)
367#define CM_OPEN_CAPTURE (CM_CH_CAPT | CM_OPEN_ADC)
368#define CM_OPEN_SPDIF_PLAYBACK (CM_CH_PLAY | CM_OPEN_DAC | CM_OPEN_SPDIF)
369#define CM_OPEN_SPDIF_CAPTURE (CM_CH_CAPT | CM_OPEN_ADC | CM_OPEN_SPDIF)
370
371
372#if CM_CH_PLAY == 1
373#define CM_PLAYBACK_SRATE_176K CM_CH1_SRATE_176K
374#define CM_PLAYBACK_SPDF CM_SPDF_1
375#define CM_CAPTURE_SPDF CM_SPDF_0
376#else
377#define CM_PLAYBACK_SRATE_176K CM_CH0_SRATE_176K
378#define CM_PLAYBACK_SPDF CM_SPDF_0
379#define CM_CAPTURE_SPDF CM_SPDF_1
380#endif
381
382
383/*
384 * driver data
385 */
386
Takashi Iwai2cbdb682005-11-17 15:03:13 +0100387struct cmipci_pcm {
388 struct snd_pcm_substream *substream;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 int running; /* dac/adc running? */
390 unsigned int dma_size; /* in frames */
391 unsigned int period_size; /* in frames */
392 unsigned int offset; /* physical address of the buffer */
393 unsigned int fmt; /* format bits */
394 int ch; /* channel (0/1) */
395 unsigned int is_dac; /* is dac? */
396 int bytes_per_frame;
397 int shift;
398};
399
400/* mixer elements toggled/resumed during ac3 playback */
401struct cmipci_mixer_auto_switches {
402 const char *name; /* switch to toggle */
403 int toggle_on; /* value to change when ac3 mode */
404};
405static const struct cmipci_mixer_auto_switches cm_saved_mixer[] = {
406 {"PCM Playback Switch", 0},
407 {"IEC958 Output Switch", 1},
408 {"IEC958 Mix Analog", 0},
409 // {"IEC958 Out To DAC", 1}, // no longer used
410 {"IEC958 Loop", 0},
411};
412#define CM_SAVED_MIXERS ARRAY_SIZE(cm_saved_mixer)
413
Takashi Iwai2cbdb682005-11-17 15:03:13 +0100414struct cmipci {
415 struct snd_card *card;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416
417 struct pci_dev *pci;
418 unsigned int device; /* device ID */
419 int irq;
420
421 unsigned long iobase;
422 unsigned int ctrl; /* FUNCTRL0 current value */
423
Takashi Iwai2cbdb682005-11-17 15:03:13 +0100424 struct snd_pcm *pcm; /* DAC/ADC PCM */
425 struct snd_pcm *pcm2; /* 2nd DAC */
426 struct snd_pcm *pcm_spdif; /* SPDIF */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427
428 int chip_version;
429 int max_channels;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 unsigned int can_ac3_sw: 1;
431 unsigned int can_ac3_hw: 1;
432 unsigned int can_multi_ch: 1;
433 unsigned int do_soft_ac3: 1;
434
435 unsigned int spdif_playback_avail: 1; /* spdif ready? */
436 unsigned int spdif_playback_enabled: 1; /* spdif switch enabled? */
437 int spdif_counter; /* for software AC3 */
438
439 unsigned int dig_status;
440 unsigned int dig_pcm_status;
441
Takashi Iwai2cbdb682005-11-17 15:03:13 +0100442 struct snd_pcm_hardware *hw_info[3]; /* for playbacks */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443
444 int opened[2]; /* open mode */
Ingo Molnar62932df2006-01-16 16:34:20 +0100445 struct mutex open_mutex;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446
447 unsigned int mixer_insensitive: 1;
Takashi Iwai2cbdb682005-11-17 15:03:13 +0100448 struct snd_kcontrol *mixer_res_ctl[CM_SAVED_MIXERS];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 int mixer_res_status[CM_SAVED_MIXERS];
450
Takashi Iwai2cbdb682005-11-17 15:03:13 +0100451 struct cmipci_pcm channel[2]; /* ch0 - DAC, ch1 - ADC or 2nd DAC */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452
453 /* external MIDI */
Takashi Iwai2cbdb682005-11-17 15:03:13 +0100454 struct snd_rawmidi *rmidi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455
456#ifdef SUPPORT_JOYSTICK
457 struct gameport *gameport;
458#endif
459
460 spinlock_t reg_lock;
Takashi Iwaicb60e5f2005-11-17 16:14:49 +0100461
462#ifdef CONFIG_PM
463 unsigned int saved_regs[0x20];
464 unsigned char saved_mixers[0x20];
465#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466};
467
468
469/* read/write operations for dword register */
Takashi Iwai2cbdb682005-11-17 15:03:13 +0100470static inline void snd_cmipci_write(struct cmipci *cm, unsigned int cmd, unsigned int data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471{
472 outl(data, cm->iobase + cmd);
473}
Jesper Juhl77933d72005-07-27 11:46:09 -0700474
Takashi Iwai2cbdb682005-11-17 15:03:13 +0100475static inline unsigned int snd_cmipci_read(struct cmipci *cm, unsigned int cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476{
477 return inl(cm->iobase + cmd);
478}
479
480/* read/write operations for word register */
Takashi Iwai2cbdb682005-11-17 15:03:13 +0100481static inline void snd_cmipci_write_w(struct cmipci *cm, unsigned int cmd, unsigned short data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482{
483 outw(data, cm->iobase + cmd);
484}
Jesper Juhl77933d72005-07-27 11:46:09 -0700485
Takashi Iwai2cbdb682005-11-17 15:03:13 +0100486static inline unsigned short snd_cmipci_read_w(struct cmipci *cm, unsigned int cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487{
488 return inw(cm->iobase + cmd);
489}
490
491/* read/write operations for byte register */
Takashi Iwai2cbdb682005-11-17 15:03:13 +0100492static inline void snd_cmipci_write_b(struct cmipci *cm, unsigned int cmd, unsigned char data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493{
494 outb(data, cm->iobase + cmd);
495}
496
Takashi Iwai2cbdb682005-11-17 15:03:13 +0100497static inline unsigned char snd_cmipci_read_b(struct cmipci *cm, unsigned int cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498{
499 return inb(cm->iobase + cmd);
500}
501
502/* bit operations for dword register */
Takashi Iwai2cbdb682005-11-17 15:03:13 +0100503static int snd_cmipci_set_bit(struct cmipci *cm, unsigned int cmd, unsigned int flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504{
Takashi Iwai01d25d42005-04-11 16:58:24 +0200505 unsigned int val, oval;
506 val = oval = inl(cm->iobase + cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 val |= flag;
Takashi Iwai01d25d42005-04-11 16:58:24 +0200508 if (val == oval)
509 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 outl(val, cm->iobase + cmd);
Takashi Iwai01d25d42005-04-11 16:58:24 +0200511 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512}
513
Takashi Iwai2cbdb682005-11-17 15:03:13 +0100514static int snd_cmipci_clear_bit(struct cmipci *cm, unsigned int cmd, unsigned int flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515{
Takashi Iwai01d25d42005-04-11 16:58:24 +0200516 unsigned int val, oval;
517 val = oval = inl(cm->iobase + cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 val &= ~flag;
Takashi Iwai01d25d42005-04-11 16:58:24 +0200519 if (val == oval)
520 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 outl(val, cm->iobase + cmd);
Takashi Iwai01d25d42005-04-11 16:58:24 +0200522 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523}
524
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525/* bit operations for byte register */
Takashi Iwai2cbdb682005-11-17 15:03:13 +0100526static int snd_cmipci_set_bit_b(struct cmipci *cm, unsigned int cmd, unsigned char flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527{
Takashi Iwai01d25d42005-04-11 16:58:24 +0200528 unsigned char val, oval;
529 val = oval = inb(cm->iobase + cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 val |= flag;
Takashi Iwai01d25d42005-04-11 16:58:24 +0200531 if (val == oval)
532 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 outb(val, cm->iobase + cmd);
Takashi Iwai01d25d42005-04-11 16:58:24 +0200534 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535}
536
Takashi Iwai2cbdb682005-11-17 15:03:13 +0100537static int snd_cmipci_clear_bit_b(struct cmipci *cm, unsigned int cmd, unsigned char flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538{
Takashi Iwai01d25d42005-04-11 16:58:24 +0200539 unsigned char val, oval;
540 val = oval = inb(cm->iobase + cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 val &= ~flag;
Takashi Iwai01d25d42005-04-11 16:58:24 +0200542 if (val == oval)
543 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 outb(val, cm->iobase + cmd);
Takashi Iwai01d25d42005-04-11 16:58:24 +0200545 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547
548
549/*
550 * PCM interface
551 */
552
553/*
554 * calculate frequency
555 */
556
557static unsigned int rates[] = { 5512, 11025, 22050, 44100, 8000, 16000, 32000, 48000 };
558
559static unsigned int snd_cmipci_rate_freq(unsigned int rate)
560{
561 unsigned int i;
562 for (i = 0; i < ARRAY_SIZE(rates); i++) {
563 if (rates[i] == rate)
564 return i;
565 }
566 snd_BUG();
567 return 0;
568}
569
570#ifdef USE_VAR48KRATE
571/*
572 * Determine PLL values for frequency setup, maybe the CMI8338 (CMI8738???)
573 * does it this way .. maybe not. Never get any information from C-Media about
574 * that <werner@suse.de>.
575 */
576static int snd_cmipci_pll_rmn(unsigned int rate, unsigned int adcmult, int *r, int *m, int *n)
577{
578 unsigned int delta, tolerance;
579 int xm, xn, xr;
580
581 for (*r = 0; rate < CM_MAXIMUM_RATE/adcmult; *r += (1<<5))
582 rate <<= 1;
583 *n = -1;
584 if (*r > 0xff)
585 goto out;
586 tolerance = rate*CM_TOLERANCE_RATE;
587
588 for (xn = (1+2); xn < (0x1f+2); xn++) {
589 for (xm = (1+2); xm < (0xff+2); xm++) {
590 xr = ((CM_REFFREQ_XIN/adcmult) * xm) / xn;
591
592 if (xr < rate)
593 delta = rate - xr;
594 else
595 delta = xr - rate;
596
597 /*
598 * If we found one, remember this,
599 * and try to find a closer one
600 */
601 if (delta < tolerance) {
602 tolerance = delta;
603 *m = xm - 2;
604 *n = xn - 2;
605 }
606 }
607 }
608out:
609 return (*n > -1);
610}
611
612/*
613 * Program pll register bits, I assume that the 8 registers 0xf8 upto 0xff
614 * are mapped onto the 8 ADC/DAC sampling frequency which can be choosen
615 * at the register CM_REG_FUNCTRL1 (0x04).
616 * Problem: other ways are also possible (any information about that?)
617 */
Takashi Iwai2cbdb682005-11-17 15:03:13 +0100618static void snd_cmipci_set_pll(struct cmipci *cm, unsigned int rate, unsigned int slot)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619{
620 unsigned int reg = CM_REG_PLL + slot;
621 /*
622 * Guess that this programs at reg. 0x04 the pos 15:13/12:10
623 * for DSFC/ASFC (000 upto 111).
624 */
625
626 /* FIXME: Init (Do we've to set an other register first before programming?) */
627
628 /* FIXME: Is this correct? Or shouldn't the m/n/r values be used for that? */
629 snd_cmipci_write_b(cm, reg, rate>>8);
630 snd_cmipci_write_b(cm, reg, rate&0xff);
631
632 /* FIXME: Setup (Do we've to set an other register first to enable this?) */
633}
634#endif /* USE_VAR48KRATE */
635
Takashi Iwai2cbdb682005-11-17 15:03:13 +0100636static int snd_cmipci_hw_params(struct snd_pcm_substream *substream,
637 struct snd_pcm_hw_params *hw_params)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638{
639 return snd_pcm_lib_malloc_pages(substream, params_buffer_bytes(hw_params));
640}
641
Takashi Iwai2cbdb682005-11-17 15:03:13 +0100642static int snd_cmipci_playback2_hw_params(struct snd_pcm_substream *substream,
643 struct snd_pcm_hw_params *hw_params)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644{
Takashi Iwai2cbdb682005-11-17 15:03:13 +0100645 struct cmipci *cm = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 if (params_channels(hw_params) > 2) {
Ingo Molnar62932df2006-01-16 16:34:20 +0100647 mutex_lock(&cm->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 if (cm->opened[CM_CH_PLAY]) {
Ingo Molnar62932df2006-01-16 16:34:20 +0100649 mutex_unlock(&cm->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 return -EBUSY;
651 }
652 /* reserve the channel A */
653 cm->opened[CM_CH_PLAY] = CM_OPEN_PLAYBACK_MULTI;
Ingo Molnar62932df2006-01-16 16:34:20 +0100654 mutex_unlock(&cm->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 }
656 return snd_pcm_lib_malloc_pages(substream, params_buffer_bytes(hw_params));
657}
658
Takashi Iwai2cbdb682005-11-17 15:03:13 +0100659static void snd_cmipci_ch_reset(struct cmipci *cm, int ch)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660{
661 int reset = CM_RST_CH0 << (cm->channel[ch].ch);
662 snd_cmipci_write(cm, CM_REG_FUNCTRL0, cm->ctrl | reset);
663 snd_cmipci_write(cm, CM_REG_FUNCTRL0, cm->ctrl & ~reset);
664 udelay(10);
665}
666
Takashi Iwai2cbdb682005-11-17 15:03:13 +0100667static int snd_cmipci_hw_free(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668{
669 return snd_pcm_lib_free_pages(substream);
670}
671
672
673/*
674 */
675
676static unsigned int hw_channels[] = {1, 2, 4, 5, 6, 8};
Takashi Iwai2cbdb682005-11-17 15:03:13 +0100677static struct snd_pcm_hw_constraint_list hw_constraints_channels_4 = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 .count = 3,
679 .list = hw_channels,
680 .mask = 0,
681};
Takashi Iwai2cbdb682005-11-17 15:03:13 +0100682static struct snd_pcm_hw_constraint_list hw_constraints_channels_6 = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 .count = 5,
684 .list = hw_channels,
685 .mask = 0,
686};
Takashi Iwai2cbdb682005-11-17 15:03:13 +0100687static struct snd_pcm_hw_constraint_list hw_constraints_channels_8 = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 .count = 6,
689 .list = hw_channels,
690 .mask = 0,
691};
692
Takashi Iwai2cbdb682005-11-17 15:03:13 +0100693static int set_dac_channels(struct cmipci *cm, struct cmipci_pcm *rec, int channels)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694{
695 if (channels > 2) {
696 if (! cm->can_multi_ch)
697 return -EINVAL;
698 if (rec->fmt != 0x03) /* stereo 16bit only */
699 return -EINVAL;
700
701 spin_lock_irq(&cm->reg_lock);
702 snd_cmipci_set_bit(cm, CM_REG_LEGACY_CTRL, CM_NXCHG);
703 snd_cmipci_set_bit(cm, CM_REG_MISC_CTRL, CM_XCHGDAC);
704 if (channels > 4) {
705 snd_cmipci_clear_bit(cm, CM_REG_CHFORMAT, CM_CHB3D);
706 snd_cmipci_set_bit(cm, CM_REG_CHFORMAT, CM_CHB3D5C);
707 } else {
708 snd_cmipci_clear_bit(cm, CM_REG_CHFORMAT, CM_CHB3D5C);
709 snd_cmipci_set_bit(cm, CM_REG_CHFORMAT, CM_CHB3D);
710 }
711 if (channels >= 6) {
712 snd_cmipci_set_bit(cm, CM_REG_LEGACY_CTRL, CM_CHB3D6C);
713 snd_cmipci_set_bit(cm, CM_REG_MISC_CTRL, CM_ENCENTER);
714 } else {
715 snd_cmipci_clear_bit(cm, CM_REG_LEGACY_CTRL, CM_CHB3D6C);
716 snd_cmipci_clear_bit(cm, CM_REG_MISC_CTRL, CM_ENCENTER);
717 }
718 if (cm->chip_version == 68) {
719 if (channels == 8) {
720 snd_cmipci_set_bit(cm, CM_REG_MISC_CTRL_8768, CM_CHB3D8C);
721 } else {
722 snd_cmipci_clear_bit(cm, CM_REG_MISC_CTRL_8768, CM_CHB3D8C);
723 }
724 }
725 spin_unlock_irq(&cm->reg_lock);
726
727 } else {
728 if (cm->can_multi_ch) {
729 spin_lock_irq(&cm->reg_lock);
730 snd_cmipci_clear_bit(cm, CM_REG_LEGACY_CTRL, CM_NXCHG);
731 snd_cmipci_clear_bit(cm, CM_REG_CHFORMAT, CM_CHB3D);
732 snd_cmipci_clear_bit(cm, CM_REG_CHFORMAT, CM_CHB3D5C);
733 snd_cmipci_clear_bit(cm, CM_REG_LEGACY_CTRL, CM_CHB3D6C);
734 snd_cmipci_clear_bit(cm, CM_REG_MISC_CTRL, CM_ENCENTER);
735 snd_cmipci_clear_bit(cm, CM_REG_MISC_CTRL, CM_XCHGDAC);
736 spin_unlock_irq(&cm->reg_lock);
737 }
738 }
739 return 0;
740}
741
742
743/*
744 * prepare playback/capture channel
745 * channel to be used must have been set in rec->ch.
746 */
Takashi Iwai2cbdb682005-11-17 15:03:13 +0100747static int snd_cmipci_pcm_prepare(struct cmipci *cm, struct cmipci_pcm *rec,
748 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749{
750 unsigned int reg, freq, val;
Takashi Iwai2cbdb682005-11-17 15:03:13 +0100751 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752
753 rec->fmt = 0;
754 rec->shift = 0;
755 if (snd_pcm_format_width(runtime->format) >= 16) {
756 rec->fmt |= 0x02;
757 if (snd_pcm_format_width(runtime->format) > 16)
758 rec->shift++; /* 24/32bit */
759 }
760 if (runtime->channels > 1)
761 rec->fmt |= 0x01;
762 if (rec->is_dac && set_dac_channels(cm, rec, runtime->channels) < 0) {
763 snd_printd("cannot set dac channels\n");
764 return -EINVAL;
765 }
766
767 rec->offset = runtime->dma_addr;
768 /* buffer and period sizes in frame */
769 rec->dma_size = runtime->buffer_size << rec->shift;
770 rec->period_size = runtime->period_size << rec->shift;
771 if (runtime->channels > 2) {
772 /* multi-channels */
773 rec->dma_size = (rec->dma_size * runtime->channels) / 2;
774 rec->period_size = (rec->period_size * runtime->channels) / 2;
775 }
776
777 spin_lock_irq(&cm->reg_lock);
778
779 /* set buffer address */
780 reg = rec->ch ? CM_REG_CH1_FRAME1 : CM_REG_CH0_FRAME1;
781 snd_cmipci_write(cm, reg, rec->offset);
782 /* program sample counts */
783 reg = rec->ch ? CM_REG_CH1_FRAME2 : CM_REG_CH0_FRAME2;
784 snd_cmipci_write_w(cm, reg, rec->dma_size - 1);
785 snd_cmipci_write_w(cm, reg + 2, rec->period_size - 1);
786
787 /* set adc/dac flag */
788 val = rec->ch ? CM_CHADC1 : CM_CHADC0;
789 if (rec->is_dac)
790 cm->ctrl &= ~val;
791 else
792 cm->ctrl |= val;
793 snd_cmipci_write(cm, CM_REG_FUNCTRL0, cm->ctrl);
794 //snd_printd("cmipci: functrl0 = %08x\n", cm->ctrl);
795
796 /* set sample rate */
797 freq = snd_cmipci_rate_freq(runtime->rate);
798 val = snd_cmipci_read(cm, CM_REG_FUNCTRL1);
799 if (rec->ch) {
800 val &= ~CM_ASFC_MASK;
801 val |= (freq << CM_ASFC_SHIFT) & CM_ASFC_MASK;
802 } else {
803 val &= ~CM_DSFC_MASK;
804 val |= (freq << CM_DSFC_SHIFT) & CM_DSFC_MASK;
805 }
806 snd_cmipci_write(cm, CM_REG_FUNCTRL1, val);
807 //snd_printd("cmipci: functrl1 = %08x\n", val);
808
809 /* set format */
810 val = snd_cmipci_read(cm, CM_REG_CHFORMAT);
811 if (rec->ch) {
812 val &= ~CM_CH1FMT_MASK;
813 val |= rec->fmt << CM_CH1FMT_SHIFT;
814 } else {
815 val &= ~CM_CH0FMT_MASK;
816 val |= rec->fmt << CM_CH0FMT_SHIFT;
817 }
Clemens Ladisch8992e182007-09-03 09:54:55 +0200818 if (cm->chip_version == 68) {
819 if (runtime->rate == 88200)
820 val |= CM_CH0_SRATE_88K << (rec->ch * 2);
821 else
822 val &= ~(CM_CH0_SRATE_88K << (rec->ch * 2));
823 if (runtime->rate == 96000)
824 val |= CM_CH0_SRATE_96K << (rec->ch * 2);
825 else
826 val &= ~(CM_CH0_SRATE_96K << (rec->ch * 2));
827 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 snd_cmipci_write(cm, CM_REG_CHFORMAT, val);
829 //snd_printd("cmipci: chformat = %08x\n", val);
830
831 rec->running = 0;
832 spin_unlock_irq(&cm->reg_lock);
833
834 return 0;
835}
836
837/*
838 * PCM trigger/stop
839 */
Takashi Iwai2cbdb682005-11-17 15:03:13 +0100840static int snd_cmipci_pcm_trigger(struct cmipci *cm, struct cmipci_pcm *rec,
841 struct snd_pcm_substream *substream, int cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842{
843 unsigned int inthld, chen, reset, pause;
844 int result = 0;
845
846 inthld = CM_CH0_INT_EN << rec->ch;
847 chen = CM_CHEN0 << rec->ch;
848 reset = CM_RST_CH0 << rec->ch;
849 pause = CM_PAUSE0 << rec->ch;
850
851 spin_lock(&cm->reg_lock);
852 switch (cmd) {
853 case SNDRV_PCM_TRIGGER_START:
854 rec->running = 1;
855 /* set interrupt */
856 snd_cmipci_set_bit(cm, CM_REG_INT_HLDCLR, inthld);
857 cm->ctrl |= chen;
858 /* enable channel */
859 snd_cmipci_write(cm, CM_REG_FUNCTRL0, cm->ctrl);
860 //snd_printd("cmipci: functrl0 = %08x\n", cm->ctrl);
861 break;
862 case SNDRV_PCM_TRIGGER_STOP:
863 rec->running = 0;
864 /* disable interrupt */
865 snd_cmipci_clear_bit(cm, CM_REG_INT_HLDCLR, inthld);
866 /* reset */
867 cm->ctrl &= ~chen;
868 snd_cmipci_write(cm, CM_REG_FUNCTRL0, cm->ctrl | reset);
869 snd_cmipci_write(cm, CM_REG_FUNCTRL0, cm->ctrl & ~reset);
870 break;
871 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
Takashi Iwaicb60e5f2005-11-17 16:14:49 +0100872 case SNDRV_PCM_TRIGGER_SUSPEND:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 cm->ctrl |= pause;
874 snd_cmipci_write(cm, CM_REG_FUNCTRL0, cm->ctrl);
875 break;
876 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
Takashi Iwaicb60e5f2005-11-17 16:14:49 +0100877 case SNDRV_PCM_TRIGGER_RESUME:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 cm->ctrl &= ~pause;
879 snd_cmipci_write(cm, CM_REG_FUNCTRL0, cm->ctrl);
880 break;
881 default:
882 result = -EINVAL;
883 break;
884 }
885 spin_unlock(&cm->reg_lock);
886 return result;
887}
888
889/*
890 * return the current pointer
891 */
Takashi Iwai2cbdb682005-11-17 15:03:13 +0100892static snd_pcm_uframes_t snd_cmipci_pcm_pointer(struct cmipci *cm, struct cmipci_pcm *rec,
893 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894{
895 size_t ptr;
896 unsigned int reg;
897 if (!rec->running)
898 return 0;
899#if 1 // this seems better..
900 reg = rec->ch ? CM_REG_CH1_FRAME2 : CM_REG_CH0_FRAME2;
901 ptr = rec->dma_size - (snd_cmipci_read_w(cm, reg) + 1);
902 ptr >>= rec->shift;
903#else
904 reg = rec->ch ? CM_REG_CH1_FRAME1 : CM_REG_CH0_FRAME1;
905 ptr = snd_cmipci_read(cm, reg) - rec->offset;
906 ptr = bytes_to_frames(substream->runtime, ptr);
907#endif
908 if (substream->runtime->channels > 2)
909 ptr = (ptr * 2) / substream->runtime->channels;
910 return ptr;
911}
912
913/*
914 * playback
915 */
916
Takashi Iwai2cbdb682005-11-17 15:03:13 +0100917static int snd_cmipci_playback_trigger(struct snd_pcm_substream *substream,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 int cmd)
919{
Takashi Iwai2cbdb682005-11-17 15:03:13 +0100920 struct cmipci *cm = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 return snd_cmipci_pcm_trigger(cm, &cm->channel[CM_CH_PLAY], substream, cmd);
922}
923
Takashi Iwai2cbdb682005-11-17 15:03:13 +0100924static snd_pcm_uframes_t snd_cmipci_playback_pointer(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925{
Takashi Iwai2cbdb682005-11-17 15:03:13 +0100926 struct cmipci *cm = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 return snd_cmipci_pcm_pointer(cm, &cm->channel[CM_CH_PLAY], substream);
928}
929
930
931
932/*
933 * capture
934 */
935
Takashi Iwai2cbdb682005-11-17 15:03:13 +0100936static int snd_cmipci_capture_trigger(struct snd_pcm_substream *substream,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 int cmd)
938{
Takashi Iwai2cbdb682005-11-17 15:03:13 +0100939 struct cmipci *cm = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 return snd_cmipci_pcm_trigger(cm, &cm->channel[CM_CH_CAPT], substream, cmd);
941}
942
Takashi Iwai2cbdb682005-11-17 15:03:13 +0100943static snd_pcm_uframes_t snd_cmipci_capture_pointer(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944{
Takashi Iwai2cbdb682005-11-17 15:03:13 +0100945 struct cmipci *cm = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 return snd_cmipci_pcm_pointer(cm, &cm->channel[CM_CH_CAPT], substream);
947}
948
949
950/*
951 * hw preparation for spdif
952 */
953
Takashi Iwai2cbdb682005-11-17 15:03:13 +0100954static int snd_cmipci_spdif_default_info(struct snd_kcontrol *kcontrol,
955 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956{
957 uinfo->type = SNDRV_CTL_ELEM_TYPE_IEC958;
958 uinfo->count = 1;
959 return 0;
960}
961
Takashi Iwai2cbdb682005-11-17 15:03:13 +0100962static int snd_cmipci_spdif_default_get(struct snd_kcontrol *kcontrol,
963 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964{
Takashi Iwai2cbdb682005-11-17 15:03:13 +0100965 struct cmipci *chip = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 int i;
967
968 spin_lock_irq(&chip->reg_lock);
969 for (i = 0; i < 4; i++)
970 ucontrol->value.iec958.status[i] = (chip->dig_status >> (i * 8)) & 0xff;
971 spin_unlock_irq(&chip->reg_lock);
972 return 0;
973}
974
Takashi Iwai2cbdb682005-11-17 15:03:13 +0100975static int snd_cmipci_spdif_default_put(struct snd_kcontrol *kcontrol,
976 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977{
Takashi Iwai2cbdb682005-11-17 15:03:13 +0100978 struct cmipci *chip = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 int i, change;
980 unsigned int val;
981
982 val = 0;
983 spin_lock_irq(&chip->reg_lock);
984 for (i = 0; i < 4; i++)
985 val |= (unsigned int)ucontrol->value.iec958.status[i] << (i * 8);
986 change = val != chip->dig_status;
987 chip->dig_status = val;
988 spin_unlock_irq(&chip->reg_lock);
989 return change;
990}
991
Takashi Iwai2cbdb682005-11-17 15:03:13 +0100992static struct snd_kcontrol_new snd_cmipci_spdif_default __devinitdata =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993{
994 .iface = SNDRV_CTL_ELEM_IFACE_PCM,
995 .name = SNDRV_CTL_NAME_IEC958("",PLAYBACK,DEFAULT),
996 .info = snd_cmipci_spdif_default_info,
997 .get = snd_cmipci_spdif_default_get,
998 .put = snd_cmipci_spdif_default_put
999};
1000
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001001static int snd_cmipci_spdif_mask_info(struct snd_kcontrol *kcontrol,
1002 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003{
1004 uinfo->type = SNDRV_CTL_ELEM_TYPE_IEC958;
1005 uinfo->count = 1;
1006 return 0;
1007}
1008
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001009static int snd_cmipci_spdif_mask_get(struct snd_kcontrol *kcontrol,
1010 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011{
1012 ucontrol->value.iec958.status[0] = 0xff;
1013 ucontrol->value.iec958.status[1] = 0xff;
1014 ucontrol->value.iec958.status[2] = 0xff;
1015 ucontrol->value.iec958.status[3] = 0xff;
1016 return 0;
1017}
1018
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001019static struct snd_kcontrol_new snd_cmipci_spdif_mask __devinitdata =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020{
1021 .access = SNDRV_CTL_ELEM_ACCESS_READ,
Clemens Ladisch67ed4162005-07-29 15:32:58 +02001022 .iface = SNDRV_CTL_ELEM_IFACE_PCM,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 .name = SNDRV_CTL_NAME_IEC958("",PLAYBACK,CON_MASK),
1024 .info = snd_cmipci_spdif_mask_info,
1025 .get = snd_cmipci_spdif_mask_get,
1026};
1027
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001028static int snd_cmipci_spdif_stream_info(struct snd_kcontrol *kcontrol,
1029 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030{
1031 uinfo->type = SNDRV_CTL_ELEM_TYPE_IEC958;
1032 uinfo->count = 1;
1033 return 0;
1034}
1035
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001036static int snd_cmipci_spdif_stream_get(struct snd_kcontrol *kcontrol,
1037 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001039 struct cmipci *chip = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 int i;
1041
1042 spin_lock_irq(&chip->reg_lock);
1043 for (i = 0; i < 4; i++)
1044 ucontrol->value.iec958.status[i] = (chip->dig_pcm_status >> (i * 8)) & 0xff;
1045 spin_unlock_irq(&chip->reg_lock);
1046 return 0;
1047}
1048
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001049static int snd_cmipci_spdif_stream_put(struct snd_kcontrol *kcontrol,
1050 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001052 struct cmipci *chip = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 int i, change;
1054 unsigned int val;
1055
1056 val = 0;
1057 spin_lock_irq(&chip->reg_lock);
1058 for (i = 0; i < 4; i++)
1059 val |= (unsigned int)ucontrol->value.iec958.status[i] << (i * 8);
1060 change = val != chip->dig_pcm_status;
1061 chip->dig_pcm_status = val;
1062 spin_unlock_irq(&chip->reg_lock);
1063 return change;
1064}
1065
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001066static struct snd_kcontrol_new snd_cmipci_spdif_stream __devinitdata =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067{
1068 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE | SNDRV_CTL_ELEM_ACCESS_INACTIVE,
1069 .iface = SNDRV_CTL_ELEM_IFACE_PCM,
1070 .name = SNDRV_CTL_NAME_IEC958("",PLAYBACK,PCM_STREAM),
1071 .info = snd_cmipci_spdif_stream_info,
1072 .get = snd_cmipci_spdif_stream_get,
1073 .put = snd_cmipci_spdif_stream_put
1074};
1075
1076/*
1077 */
1078
1079/* save mixer setting and mute for AC3 playback */
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001080static int save_mixer_state(struct cmipci *cm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081{
1082 if (! cm->mixer_insensitive) {
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001083 struct snd_ctl_elem_value *val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 unsigned int i;
1085
1086 val = kmalloc(sizeof(*val), GFP_ATOMIC);
1087 if (!val)
1088 return -ENOMEM;
1089 for (i = 0; i < CM_SAVED_MIXERS; i++) {
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001090 struct snd_kcontrol *ctl = cm->mixer_res_ctl[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 if (ctl) {
1092 int event;
1093 memset(val, 0, sizeof(*val));
1094 ctl->get(ctl, val);
1095 cm->mixer_res_status[i] = val->value.integer.value[0];
1096 val->value.integer.value[0] = cm_saved_mixer[i].toggle_on;
1097 event = SNDRV_CTL_EVENT_MASK_INFO;
1098 if (cm->mixer_res_status[i] != val->value.integer.value[0]) {
1099 ctl->put(ctl, val); /* toggle */
1100 event |= SNDRV_CTL_EVENT_MASK_VALUE;
1101 }
1102 ctl->vd[0].access |= SNDRV_CTL_ELEM_ACCESS_INACTIVE;
1103 snd_ctl_notify(cm->card, event, &ctl->id);
1104 }
1105 }
1106 kfree(val);
1107 cm->mixer_insensitive = 1;
1108 }
1109 return 0;
1110}
1111
1112
1113/* restore the previously saved mixer status */
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001114static void restore_mixer_state(struct cmipci *cm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115{
1116 if (cm->mixer_insensitive) {
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001117 struct snd_ctl_elem_value *val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 unsigned int i;
1119
1120 val = kmalloc(sizeof(*val), GFP_KERNEL);
1121 if (!val)
1122 return;
1123 cm->mixer_insensitive = 0; /* at first clear this;
1124 otherwise the changes will be ignored */
1125 for (i = 0; i < CM_SAVED_MIXERS; i++) {
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001126 struct snd_kcontrol *ctl = cm->mixer_res_ctl[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 if (ctl) {
1128 int event;
1129
1130 memset(val, 0, sizeof(*val));
1131 ctl->vd[0].access &= ~SNDRV_CTL_ELEM_ACCESS_INACTIVE;
1132 ctl->get(ctl, val);
1133 event = SNDRV_CTL_EVENT_MASK_INFO;
1134 if (val->value.integer.value[0] != cm->mixer_res_status[i]) {
1135 val->value.integer.value[0] = cm->mixer_res_status[i];
1136 ctl->put(ctl, val);
1137 event |= SNDRV_CTL_EVENT_MASK_VALUE;
1138 }
1139 snd_ctl_notify(cm->card, event, &ctl->id);
1140 }
1141 }
1142 kfree(val);
1143 }
1144}
1145
1146/* spinlock held! */
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001147static void setup_ac3(struct cmipci *cm, struct snd_pcm_substream *subs, int do_ac3, int rate)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148{
1149 if (do_ac3) {
1150 /* AC3EN for 037 */
1151 snd_cmipci_set_bit(cm, CM_REG_CHFORMAT, CM_AC3EN1);
1152 /* AC3EN for 039 */
1153 snd_cmipci_set_bit(cm, CM_REG_MISC_CTRL, CM_AC3EN2);
1154
1155 if (cm->can_ac3_hw) {
1156 /* SPD24SEL for 037, 0x02 */
1157 /* SPD24SEL for 039, 0x20, but cannot be set */
1158 snd_cmipci_set_bit(cm, CM_REG_CHFORMAT, CM_SPD24SEL);
1159 snd_cmipci_clear_bit(cm, CM_REG_MISC_CTRL, CM_SPD32SEL);
1160 } else { /* can_ac3_sw */
1161 /* SPD32SEL for 037 & 039, 0x20 */
1162 snd_cmipci_set_bit(cm, CM_REG_MISC_CTRL, CM_SPD32SEL);
1163 /* set 176K sample rate to fix 033 HW bug */
1164 if (cm->chip_version == 33) {
1165 if (rate >= 48000) {
1166 snd_cmipci_set_bit(cm, CM_REG_CHFORMAT, CM_PLAYBACK_SRATE_176K);
1167 } else {
1168 snd_cmipci_clear_bit(cm, CM_REG_CHFORMAT, CM_PLAYBACK_SRATE_176K);
1169 }
1170 }
1171 }
1172
1173 } else {
1174 snd_cmipci_clear_bit(cm, CM_REG_CHFORMAT, CM_AC3EN1);
1175 snd_cmipci_clear_bit(cm, CM_REG_MISC_CTRL, CM_AC3EN2);
1176
1177 if (cm->can_ac3_hw) {
1178 /* chip model >= 37 */
1179 if (snd_pcm_format_width(subs->runtime->format) > 16) {
1180 snd_cmipci_set_bit(cm, CM_REG_MISC_CTRL, CM_SPD32SEL);
1181 snd_cmipci_set_bit(cm, CM_REG_CHFORMAT, CM_SPD24SEL);
1182 } else {
1183 snd_cmipci_clear_bit(cm, CM_REG_MISC_CTRL, CM_SPD32SEL);
1184 snd_cmipci_clear_bit(cm, CM_REG_CHFORMAT, CM_SPD24SEL);
1185 }
1186 } else {
1187 snd_cmipci_clear_bit(cm, CM_REG_MISC_CTRL, CM_SPD32SEL);
1188 snd_cmipci_clear_bit(cm, CM_REG_CHFORMAT, CM_SPD24SEL);
1189 snd_cmipci_clear_bit(cm, CM_REG_CHFORMAT, CM_PLAYBACK_SRATE_176K);
1190 }
1191 }
1192}
1193
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001194static int setup_spdif_playback(struct cmipci *cm, struct snd_pcm_substream *subs, int up, int do_ac3)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195{
1196 int rate, err;
1197
1198 rate = subs->runtime->rate;
1199
1200 if (up && do_ac3)
1201 if ((err = save_mixer_state(cm)) < 0)
1202 return err;
1203
1204 spin_lock_irq(&cm->reg_lock);
1205 cm->spdif_playback_avail = up;
1206 if (up) {
1207 /* they are controlled via "IEC958 Output Switch" */
1208 /* snd_cmipci_set_bit(cm, CM_REG_LEGACY_CTRL, CM_ENSPDOUT); */
1209 /* snd_cmipci_set_bit(cm, CM_REG_FUNCTRL1, CM_SPDO2DAC); */
1210 if (cm->spdif_playback_enabled)
1211 snd_cmipci_set_bit(cm, CM_REG_FUNCTRL1, CM_PLAYBACK_SPDF);
1212 setup_ac3(cm, subs, do_ac3, rate);
1213
Clemens Ladisch8992e182007-09-03 09:54:55 +02001214 if (rate == 48000 || rate == 96000)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 snd_cmipci_set_bit(cm, CM_REG_MISC_CTRL, CM_SPDIF48K | CM_SPDF_AC97);
1216 else
1217 snd_cmipci_clear_bit(cm, CM_REG_MISC_CTRL, CM_SPDIF48K | CM_SPDF_AC97);
Clemens Ladisch8992e182007-09-03 09:54:55 +02001218 if (rate > 48000)
1219 snd_cmipci_set_bit(cm, CM_REG_CHFORMAT, CM_DBLSPDS);
1220 else
1221 snd_cmipci_clear_bit(cm, CM_REG_CHFORMAT, CM_DBLSPDS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 } else {
1223 /* they are controlled via "IEC958 Output Switch" */
1224 /* snd_cmipci_clear_bit(cm, CM_REG_LEGACY_CTRL, CM_ENSPDOUT); */
1225 /* snd_cmipci_clear_bit(cm, CM_REG_FUNCTRL1, CM_SPDO2DAC); */
Clemens Ladisch8992e182007-09-03 09:54:55 +02001226 snd_cmipci_clear_bit(cm, CM_REG_CHFORMAT, CM_DBLSPDS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227 snd_cmipci_clear_bit(cm, CM_REG_FUNCTRL1, CM_PLAYBACK_SPDF);
1228 setup_ac3(cm, subs, 0, 0);
1229 }
1230 spin_unlock_irq(&cm->reg_lock);
1231 return 0;
1232}
1233
1234
1235/*
1236 * preparation
1237 */
1238
1239/* playback - enable spdif only on the certain condition */
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001240static int snd_cmipci_playback_prepare(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001242 struct cmipci *cm = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 int rate = substream->runtime->rate;
1244 int err, do_spdif, do_ac3 = 0;
1245
Clemens Ladisch8992e182007-09-03 09:54:55 +02001246 do_spdif = (rate >= 44100 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 substream->runtime->format == SNDRV_PCM_FORMAT_S16_LE &&
1248 substream->runtime->channels == 2);
1249 if (do_spdif && cm->can_ac3_hw)
1250 do_ac3 = cm->dig_pcm_status & IEC958_AES0_NONAUDIO;
1251 if ((err = setup_spdif_playback(cm, substream, do_spdif, do_ac3)) < 0)
1252 return err;
1253 return snd_cmipci_pcm_prepare(cm, &cm->channel[CM_CH_PLAY], substream);
1254}
1255
1256/* playback (via device #2) - enable spdif always */
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001257static int snd_cmipci_playback_spdif_prepare(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001259 struct cmipci *cm = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 int err, do_ac3;
1261
1262 if (cm->can_ac3_hw)
1263 do_ac3 = cm->dig_pcm_status & IEC958_AES0_NONAUDIO;
1264 else
1265 do_ac3 = 1; /* doesn't matter */
1266 if ((err = setup_spdif_playback(cm, substream, 1, do_ac3)) < 0)
1267 return err;
1268 return snd_cmipci_pcm_prepare(cm, &cm->channel[CM_CH_PLAY], substream);
1269}
1270
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001271static int snd_cmipci_playback_hw_free(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001273 struct cmipci *cm = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274 setup_spdif_playback(cm, substream, 0, 0);
1275 restore_mixer_state(cm);
1276 return snd_cmipci_hw_free(substream);
1277}
1278
1279/* capture */
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001280static int snd_cmipci_capture_prepare(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001282 struct cmipci *cm = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283 return snd_cmipci_pcm_prepare(cm, &cm->channel[CM_CH_CAPT], substream);
1284}
1285
1286/* capture with spdif (via device #2) */
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001287static int snd_cmipci_capture_spdif_prepare(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001289 struct cmipci *cm = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290
1291 spin_lock_irq(&cm->reg_lock);
1292 snd_cmipci_set_bit(cm, CM_REG_FUNCTRL1, CM_CAPTURE_SPDF);
1293 spin_unlock_irq(&cm->reg_lock);
1294
1295 return snd_cmipci_pcm_prepare(cm, &cm->channel[CM_CH_CAPT], substream);
1296}
1297
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001298static int snd_cmipci_capture_spdif_hw_free(struct snd_pcm_substream *subs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001300 struct cmipci *cm = snd_pcm_substream_chip(subs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301
1302 spin_lock_irq(&cm->reg_lock);
1303 snd_cmipci_clear_bit(cm, CM_REG_FUNCTRL1, CM_CAPTURE_SPDF);
1304 spin_unlock_irq(&cm->reg_lock);
1305
1306 return snd_cmipci_hw_free(subs);
1307}
1308
1309
1310/*
1311 * interrupt handler
1312 */
David Howells7d12e782006-10-05 14:55:46 +01001313static irqreturn_t snd_cmipci_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001315 struct cmipci *cm = dev_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316 unsigned int status, mask = 0;
1317
1318 /* fastpath out, to ease interrupt sharing */
1319 status = snd_cmipci_read(cm, CM_REG_INT_STATUS);
1320 if (!(status & CM_INTR))
1321 return IRQ_NONE;
1322
1323 /* acknowledge interrupt */
1324 spin_lock(&cm->reg_lock);
1325 if (status & CM_CHINT0)
1326 mask |= CM_CH0_INT_EN;
1327 if (status & CM_CHINT1)
1328 mask |= CM_CH1_INT_EN;
1329 snd_cmipci_clear_bit(cm, CM_REG_INT_HLDCLR, mask);
1330 snd_cmipci_set_bit(cm, CM_REG_INT_HLDCLR, mask);
1331 spin_unlock(&cm->reg_lock);
1332
1333 if (cm->rmidi && (status & CM_UARTINT))
David Howells7d12e782006-10-05 14:55:46 +01001334 snd_mpu401_uart_interrupt(irq, cm->rmidi->private_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335
1336 if (cm->pcm) {
1337 if ((status & CM_CHINT0) && cm->channel[0].running)
1338 snd_pcm_period_elapsed(cm->channel[0].substream);
1339 if ((status & CM_CHINT1) && cm->channel[1].running)
1340 snd_pcm_period_elapsed(cm->channel[1].substream);
1341 }
1342 return IRQ_HANDLED;
1343}
1344
1345/*
1346 * h/w infos
1347 */
1348
1349/* playback on channel A */
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001350static struct snd_pcm_hardware snd_cmipci_playback =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351{
1352 .info = (SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_INTERLEAVED |
1353 SNDRV_PCM_INFO_BLOCK_TRANSFER | SNDRV_PCM_INFO_PAUSE |
Takashi Iwaicb60e5f2005-11-17 16:14:49 +01001354 SNDRV_PCM_INFO_RESUME | SNDRV_PCM_INFO_MMAP_VALID),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 .formats = SNDRV_PCM_FMTBIT_U8 | SNDRV_PCM_FMTBIT_S16_LE,
1356 .rates = SNDRV_PCM_RATE_5512 | SNDRV_PCM_RATE_8000_48000,
1357 .rate_min = 5512,
1358 .rate_max = 48000,
1359 .channels_min = 1,
1360 .channels_max = 2,
1361 .buffer_bytes_max = (128*1024),
1362 .period_bytes_min = 64,
1363 .period_bytes_max = (128*1024),
1364 .periods_min = 2,
1365 .periods_max = 1024,
1366 .fifo_size = 0,
1367};
1368
1369/* capture on channel B */
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001370static struct snd_pcm_hardware snd_cmipci_capture =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371{
1372 .info = (SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_INTERLEAVED |
1373 SNDRV_PCM_INFO_BLOCK_TRANSFER | SNDRV_PCM_INFO_PAUSE |
Takashi Iwaicb60e5f2005-11-17 16:14:49 +01001374 SNDRV_PCM_INFO_RESUME | SNDRV_PCM_INFO_MMAP_VALID),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 .formats = SNDRV_PCM_FMTBIT_U8 | SNDRV_PCM_FMTBIT_S16_LE,
1376 .rates = SNDRV_PCM_RATE_5512 | SNDRV_PCM_RATE_8000_48000,
1377 .rate_min = 5512,
1378 .rate_max = 48000,
1379 .channels_min = 1,
1380 .channels_max = 2,
1381 .buffer_bytes_max = (128*1024),
1382 .period_bytes_min = 64,
1383 .period_bytes_max = (128*1024),
1384 .periods_min = 2,
1385 .periods_max = 1024,
1386 .fifo_size = 0,
1387};
1388
1389/* playback on channel B - stereo 16bit only? */
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001390static struct snd_pcm_hardware snd_cmipci_playback2 =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391{
1392 .info = (SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_INTERLEAVED |
1393 SNDRV_PCM_INFO_BLOCK_TRANSFER | SNDRV_PCM_INFO_PAUSE |
Takashi Iwaicb60e5f2005-11-17 16:14:49 +01001394 SNDRV_PCM_INFO_RESUME | SNDRV_PCM_INFO_MMAP_VALID),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395 .formats = SNDRV_PCM_FMTBIT_S16_LE,
1396 .rates = SNDRV_PCM_RATE_5512 | SNDRV_PCM_RATE_8000_48000,
1397 .rate_min = 5512,
1398 .rate_max = 48000,
1399 .channels_min = 2,
1400 .channels_max = 2,
1401 .buffer_bytes_max = (128*1024),
1402 .period_bytes_min = 64,
1403 .period_bytes_max = (128*1024),
1404 .periods_min = 2,
1405 .periods_max = 1024,
1406 .fifo_size = 0,
1407};
1408
1409/* spdif playback on channel A */
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001410static struct snd_pcm_hardware snd_cmipci_playback_spdif =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411{
1412 .info = (SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_INTERLEAVED |
1413 SNDRV_PCM_INFO_BLOCK_TRANSFER | SNDRV_PCM_INFO_PAUSE |
Takashi Iwaicb60e5f2005-11-17 16:14:49 +01001414 SNDRV_PCM_INFO_RESUME | SNDRV_PCM_INFO_MMAP_VALID),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415 .formats = SNDRV_PCM_FMTBIT_S16_LE,
1416 .rates = SNDRV_PCM_RATE_44100 | SNDRV_PCM_RATE_48000,
1417 .rate_min = 44100,
1418 .rate_max = 48000,
1419 .channels_min = 2,
1420 .channels_max = 2,
1421 .buffer_bytes_max = (128*1024),
1422 .period_bytes_min = 64,
1423 .period_bytes_max = (128*1024),
1424 .periods_min = 2,
1425 .periods_max = 1024,
1426 .fifo_size = 0,
1427};
1428
1429/* spdif playback on channel A (32bit, IEC958 subframes) */
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001430static struct snd_pcm_hardware snd_cmipci_playback_iec958_subframe =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431{
1432 .info = (SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_INTERLEAVED |
1433 SNDRV_PCM_INFO_BLOCK_TRANSFER | SNDRV_PCM_INFO_PAUSE |
Takashi Iwaicb60e5f2005-11-17 16:14:49 +01001434 SNDRV_PCM_INFO_RESUME | SNDRV_PCM_INFO_MMAP_VALID),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435 .formats = SNDRV_PCM_FMTBIT_IEC958_SUBFRAME_LE,
1436 .rates = SNDRV_PCM_RATE_44100 | SNDRV_PCM_RATE_48000,
1437 .rate_min = 44100,
1438 .rate_max = 48000,
1439 .channels_min = 2,
1440 .channels_max = 2,
1441 .buffer_bytes_max = (128*1024),
1442 .period_bytes_min = 64,
1443 .period_bytes_max = (128*1024),
1444 .periods_min = 2,
1445 .periods_max = 1024,
1446 .fifo_size = 0,
1447};
1448
1449/* spdif capture on channel B */
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001450static struct snd_pcm_hardware snd_cmipci_capture_spdif =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451{
1452 .info = (SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_INTERLEAVED |
1453 SNDRV_PCM_INFO_BLOCK_TRANSFER | SNDRV_PCM_INFO_PAUSE |
Takashi Iwaicb60e5f2005-11-17 16:14:49 +01001454 SNDRV_PCM_INFO_RESUME | SNDRV_PCM_INFO_MMAP_VALID),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 .formats = SNDRV_PCM_FMTBIT_S16_LE,
1456 .rates = SNDRV_PCM_RATE_44100 | SNDRV_PCM_RATE_48000,
1457 .rate_min = 44100,
1458 .rate_max = 48000,
1459 .channels_min = 2,
1460 .channels_max = 2,
1461 .buffer_bytes_max = (128*1024),
1462 .period_bytes_min = 64,
1463 .period_bytes_max = (128*1024),
1464 .periods_min = 2,
1465 .periods_max = 1024,
1466 .fifo_size = 0,
1467};
1468
1469/*
1470 * check device open/close
1471 */
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001472static int open_device_check(struct cmipci *cm, int mode, struct snd_pcm_substream *subs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473{
1474 int ch = mode & CM_OPEN_CH_MASK;
1475
1476 /* FIXME: a file should wait until the device becomes free
1477 * when it's opened on blocking mode. however, since the current
1478 * pcm framework doesn't pass file pointer before actually opened,
1479 * we can't know whether blocking mode or not in open callback..
1480 */
Ingo Molnar62932df2006-01-16 16:34:20 +01001481 mutex_lock(&cm->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482 if (cm->opened[ch]) {
Ingo Molnar62932df2006-01-16 16:34:20 +01001483 mutex_unlock(&cm->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484 return -EBUSY;
1485 }
1486 cm->opened[ch] = mode;
1487 cm->channel[ch].substream = subs;
1488 if (! (mode & CM_OPEN_DAC)) {
1489 /* disable dual DAC mode */
1490 cm->channel[ch].is_dac = 0;
1491 spin_lock_irq(&cm->reg_lock);
1492 snd_cmipci_clear_bit(cm, CM_REG_MISC_CTRL, CM_ENDBDAC);
1493 spin_unlock_irq(&cm->reg_lock);
1494 }
Ingo Molnar62932df2006-01-16 16:34:20 +01001495 mutex_unlock(&cm->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496 return 0;
1497}
1498
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001499static void close_device_check(struct cmipci *cm, int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500{
1501 int ch = mode & CM_OPEN_CH_MASK;
1502
Ingo Molnar62932df2006-01-16 16:34:20 +01001503 mutex_lock(&cm->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504 if (cm->opened[ch] == mode) {
1505 if (cm->channel[ch].substream) {
1506 snd_cmipci_ch_reset(cm, ch);
1507 cm->channel[ch].running = 0;
1508 cm->channel[ch].substream = NULL;
1509 }
1510 cm->opened[ch] = 0;
1511 if (! cm->channel[ch].is_dac) {
1512 /* enable dual DAC mode again */
1513 cm->channel[ch].is_dac = 1;
1514 spin_lock_irq(&cm->reg_lock);
1515 snd_cmipci_set_bit(cm, CM_REG_MISC_CTRL, CM_ENDBDAC);
1516 spin_unlock_irq(&cm->reg_lock);
1517 }
1518 }
Ingo Molnar62932df2006-01-16 16:34:20 +01001519 mutex_unlock(&cm->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520}
1521
1522/*
1523 */
1524
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001525static int snd_cmipci_playback_open(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001527 struct cmipci *cm = snd_pcm_substream_chip(substream);
1528 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529 int err;
1530
1531 if ((err = open_device_check(cm, CM_OPEN_PLAYBACK, substream)) < 0)
1532 return err;
1533 runtime->hw = snd_cmipci_playback;
Clemens Ladisch8992e182007-09-03 09:54:55 +02001534 if (cm->chip_version == 68) {
1535 runtime->hw.rates |= SNDRV_PCM_RATE_88200 |
1536 SNDRV_PCM_RATE_96000;
1537 runtime->hw.rate_max = 96000;
1538 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539 snd_pcm_hw_constraint_minmax(runtime, SNDRV_PCM_HW_PARAM_BUFFER_SIZE, 0, 0x10000);
1540 cm->dig_pcm_status = cm->dig_status;
1541 return 0;
1542}
1543
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001544static int snd_cmipci_capture_open(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001546 struct cmipci *cm = snd_pcm_substream_chip(substream);
1547 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548 int err;
1549
1550 if ((err = open_device_check(cm, CM_OPEN_CAPTURE, substream)) < 0)
1551 return err;
1552 runtime->hw = snd_cmipci_capture;
1553 if (cm->chip_version == 68) { // 8768 only supports 44k/48k recording
1554 runtime->hw.rate_min = 41000;
1555 runtime->hw.rates = SNDRV_PCM_RATE_44100 | SNDRV_PCM_RATE_48000;
1556 }
1557 snd_pcm_hw_constraint_minmax(runtime, SNDRV_PCM_HW_PARAM_BUFFER_SIZE, 0, 0x10000);
1558 return 0;
1559}
1560
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001561static int snd_cmipci_playback2_open(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001563 struct cmipci *cm = snd_pcm_substream_chip(substream);
1564 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565 int err;
1566
1567 if ((err = open_device_check(cm, CM_OPEN_PLAYBACK2, substream)) < 0) /* use channel B */
1568 return err;
1569 runtime->hw = snd_cmipci_playback2;
Ingo Molnar62932df2006-01-16 16:34:20 +01001570 mutex_lock(&cm->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571 if (! cm->opened[CM_CH_PLAY]) {
1572 if (cm->can_multi_ch) {
1573 runtime->hw.channels_max = cm->max_channels;
1574 if (cm->max_channels == 4)
1575 snd_pcm_hw_constraint_list(runtime, 0, SNDRV_PCM_HW_PARAM_CHANNELS, &hw_constraints_channels_4);
1576 else if (cm->max_channels == 6)
1577 snd_pcm_hw_constraint_list(runtime, 0, SNDRV_PCM_HW_PARAM_CHANNELS, &hw_constraints_channels_6);
1578 else if (cm->max_channels == 8)
1579 snd_pcm_hw_constraint_list(runtime, 0, SNDRV_PCM_HW_PARAM_CHANNELS, &hw_constraints_channels_8);
1580 }
Clemens Ladisch8992e182007-09-03 09:54:55 +02001581 if (cm->chip_version == 68) {
1582 runtime->hw.rates |= SNDRV_PCM_RATE_88200 |
1583 SNDRV_PCM_RATE_96000;
1584 runtime->hw.rate_max = 96000;
1585 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586 snd_pcm_hw_constraint_minmax(runtime, SNDRV_PCM_HW_PARAM_BUFFER_SIZE, 0, 0x10000);
1587 }
Ingo Molnar62932df2006-01-16 16:34:20 +01001588 mutex_unlock(&cm->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589 return 0;
1590}
1591
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001592static int snd_cmipci_playback_spdif_open(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001594 struct cmipci *cm = snd_pcm_substream_chip(substream);
1595 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596 int err;
1597
1598 if ((err = open_device_check(cm, CM_OPEN_SPDIF_PLAYBACK, substream)) < 0) /* use channel A */
1599 return err;
1600 if (cm->can_ac3_hw) {
1601 runtime->hw = snd_cmipci_playback_spdif;
1602 if (cm->chip_version >= 37)
1603 runtime->hw.formats |= SNDRV_PCM_FMTBIT_S32_LE;
Clemens Ladisch8992e182007-09-03 09:54:55 +02001604 if (cm->chip_version == 68) {
1605 runtime->hw.rates |= SNDRV_PCM_RATE_88200 |
1606 SNDRV_PCM_RATE_96000;
1607 runtime->hw.rate_max = 96000;
1608 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609 } else {
1610 runtime->hw = snd_cmipci_playback_iec958_subframe;
1611 }
1612 snd_pcm_hw_constraint_minmax(runtime, SNDRV_PCM_HW_PARAM_BUFFER_SIZE, 0, 0x40000);
1613 cm->dig_pcm_status = cm->dig_status;
1614 return 0;
1615}
1616
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001617static int snd_cmipci_capture_spdif_open(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001619 struct cmipci *cm = snd_pcm_substream_chip(substream);
1620 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621 int err;
1622
1623 if ((err = open_device_check(cm, CM_OPEN_SPDIF_CAPTURE, substream)) < 0) /* use channel B */
1624 return err;
1625 runtime->hw = snd_cmipci_capture_spdif;
1626 snd_pcm_hw_constraint_minmax(runtime, SNDRV_PCM_HW_PARAM_BUFFER_SIZE, 0, 0x40000);
1627 return 0;
1628}
1629
1630
1631/*
1632 */
1633
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001634static int snd_cmipci_playback_close(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001636 struct cmipci *cm = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637 close_device_check(cm, CM_OPEN_PLAYBACK);
1638 return 0;
1639}
1640
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001641static int snd_cmipci_capture_close(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001643 struct cmipci *cm = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644 close_device_check(cm, CM_OPEN_CAPTURE);
1645 return 0;
1646}
1647
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001648static int snd_cmipci_playback2_close(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001650 struct cmipci *cm = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651 close_device_check(cm, CM_OPEN_PLAYBACK2);
1652 close_device_check(cm, CM_OPEN_PLAYBACK_MULTI);
1653 return 0;
1654}
1655
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001656static int snd_cmipci_playback_spdif_close(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001658 struct cmipci *cm = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659 close_device_check(cm, CM_OPEN_SPDIF_PLAYBACK);
1660 return 0;
1661}
1662
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001663static int snd_cmipci_capture_spdif_close(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001665 struct cmipci *cm = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666 close_device_check(cm, CM_OPEN_SPDIF_CAPTURE);
1667 return 0;
1668}
1669
1670
1671/*
1672 */
1673
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001674static struct snd_pcm_ops snd_cmipci_playback_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675 .open = snd_cmipci_playback_open,
1676 .close = snd_cmipci_playback_close,
1677 .ioctl = snd_pcm_lib_ioctl,
1678 .hw_params = snd_cmipci_hw_params,
1679 .hw_free = snd_cmipci_playback_hw_free,
1680 .prepare = snd_cmipci_playback_prepare,
1681 .trigger = snd_cmipci_playback_trigger,
1682 .pointer = snd_cmipci_playback_pointer,
1683};
1684
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001685static struct snd_pcm_ops snd_cmipci_capture_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686 .open = snd_cmipci_capture_open,
1687 .close = snd_cmipci_capture_close,
1688 .ioctl = snd_pcm_lib_ioctl,
1689 .hw_params = snd_cmipci_hw_params,
1690 .hw_free = snd_cmipci_hw_free,
1691 .prepare = snd_cmipci_capture_prepare,
1692 .trigger = snd_cmipci_capture_trigger,
1693 .pointer = snd_cmipci_capture_pointer,
1694};
1695
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001696static struct snd_pcm_ops snd_cmipci_playback2_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697 .open = snd_cmipci_playback2_open,
1698 .close = snd_cmipci_playback2_close,
1699 .ioctl = snd_pcm_lib_ioctl,
1700 .hw_params = snd_cmipci_playback2_hw_params,
1701 .hw_free = snd_cmipci_hw_free,
1702 .prepare = snd_cmipci_capture_prepare, /* channel B */
1703 .trigger = snd_cmipci_capture_trigger, /* channel B */
1704 .pointer = snd_cmipci_capture_pointer, /* channel B */
1705};
1706
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001707static struct snd_pcm_ops snd_cmipci_playback_spdif_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708 .open = snd_cmipci_playback_spdif_open,
1709 .close = snd_cmipci_playback_spdif_close,
1710 .ioctl = snd_pcm_lib_ioctl,
1711 .hw_params = snd_cmipci_hw_params,
1712 .hw_free = snd_cmipci_playback_hw_free,
1713 .prepare = snd_cmipci_playback_spdif_prepare, /* set up rate */
1714 .trigger = snd_cmipci_playback_trigger,
1715 .pointer = snd_cmipci_playback_pointer,
1716};
1717
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001718static struct snd_pcm_ops snd_cmipci_capture_spdif_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719 .open = snd_cmipci_capture_spdif_open,
1720 .close = snd_cmipci_capture_spdif_close,
1721 .ioctl = snd_pcm_lib_ioctl,
1722 .hw_params = snd_cmipci_hw_params,
1723 .hw_free = snd_cmipci_capture_spdif_hw_free,
1724 .prepare = snd_cmipci_capture_spdif_prepare,
1725 .trigger = snd_cmipci_capture_trigger,
1726 .pointer = snd_cmipci_capture_pointer,
1727};
1728
1729
1730/*
1731 */
1732
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001733static int __devinit snd_cmipci_pcm_new(struct cmipci *cm, int device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001735 struct snd_pcm *pcm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736 int err;
1737
1738 err = snd_pcm_new(cm->card, cm->card->driver, device, 1, 1, &pcm);
1739 if (err < 0)
1740 return err;
1741
1742 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &snd_cmipci_playback_ops);
1743 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &snd_cmipci_capture_ops);
1744
1745 pcm->private_data = cm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746 pcm->info_flags = 0;
1747 strcpy(pcm->name, "C-Media PCI DAC/ADC");
1748 cm->pcm = pcm;
1749
1750 snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV,
1751 snd_dma_pci_data(cm->pci), 64*1024, 128*1024);
1752
1753 return 0;
1754}
1755
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001756static int __devinit snd_cmipci_pcm2_new(struct cmipci *cm, int device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001758 struct snd_pcm *pcm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759 int err;
1760
1761 err = snd_pcm_new(cm->card, cm->card->driver, device, 1, 0, &pcm);
1762 if (err < 0)
1763 return err;
1764
1765 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &snd_cmipci_playback2_ops);
1766
1767 pcm->private_data = cm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768 pcm->info_flags = 0;
1769 strcpy(pcm->name, "C-Media PCI 2nd DAC");
1770 cm->pcm2 = pcm;
1771
1772 snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV,
1773 snd_dma_pci_data(cm->pci), 64*1024, 128*1024);
1774
1775 return 0;
1776}
1777
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001778static int __devinit snd_cmipci_pcm_spdif_new(struct cmipci *cm, int device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001780 struct snd_pcm *pcm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781 int err;
1782
1783 err = snd_pcm_new(cm->card, cm->card->driver, device, 1, 1, &pcm);
1784 if (err < 0)
1785 return err;
1786
1787 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &snd_cmipci_playback_spdif_ops);
1788 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &snd_cmipci_capture_spdif_ops);
1789
1790 pcm->private_data = cm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791 pcm->info_flags = 0;
1792 strcpy(pcm->name, "C-Media PCI IEC958");
1793 cm->pcm_spdif = pcm;
1794
1795 snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV,
1796 snd_dma_pci_data(cm->pci), 64*1024, 128*1024);
1797
1798 return 0;
1799}
1800
1801/*
1802 * mixer interface:
1803 * - CM8338/8738 has a compatible mixer interface with SB16, but
1804 * lack of some elements like tone control, i/o gain and AGC.
1805 * - Access to native registers:
1806 * - A 3D switch
1807 * - Output mute switches
1808 */
1809
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001810static void snd_cmipci_mixer_write(struct cmipci *s, unsigned char idx, unsigned char data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811{
1812 outb(idx, s->iobase + CM_REG_SB16_ADDR);
1813 outb(data, s->iobase + CM_REG_SB16_DATA);
1814}
1815
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001816static unsigned char snd_cmipci_mixer_read(struct cmipci *s, unsigned char idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817{
1818 unsigned char v;
1819
1820 outb(idx, s->iobase + CM_REG_SB16_ADDR);
1821 v = inb(s->iobase + CM_REG_SB16_DATA);
1822 return v;
1823}
1824
1825/*
1826 * general mixer element
1827 */
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001828struct cmipci_sb_reg {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829 unsigned int left_reg, right_reg;
1830 unsigned int left_shift, right_shift;
1831 unsigned int mask;
1832 unsigned int invert: 1;
1833 unsigned int stereo: 1;
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001834};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835
1836#define COMPOSE_SB_REG(lreg,rreg,lshift,rshift,mask,invert,stereo) \
1837 ((lreg) | ((rreg) << 8) | (lshift << 16) | (rshift << 19) | (mask << 24) | (invert << 22) | (stereo << 23))
1838
1839#define CMIPCI_DOUBLE(xname, left_reg, right_reg, left_shift, right_shift, mask, invert, stereo) \
1840{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \
1841 .info = snd_cmipci_info_volume, \
1842 .get = snd_cmipci_get_volume, .put = snd_cmipci_put_volume, \
1843 .private_value = COMPOSE_SB_REG(left_reg, right_reg, left_shift, right_shift, mask, invert, stereo), \
1844}
1845
1846#define CMIPCI_SB_VOL_STEREO(xname,reg,shift,mask) CMIPCI_DOUBLE(xname, reg, reg+1, shift, shift, mask, 0, 1)
1847#define CMIPCI_SB_VOL_MONO(xname,reg,shift,mask) CMIPCI_DOUBLE(xname, reg, reg, shift, shift, mask, 0, 0)
1848#define CMIPCI_SB_SW_STEREO(xname,lshift,rshift) CMIPCI_DOUBLE(xname, SB_DSP4_OUTPUT_SW, SB_DSP4_OUTPUT_SW, lshift, rshift, 1, 0, 1)
1849#define CMIPCI_SB_SW_MONO(xname,shift) CMIPCI_DOUBLE(xname, SB_DSP4_OUTPUT_SW, SB_DSP4_OUTPUT_SW, shift, shift, 1, 0, 0)
1850
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001851static void cmipci_sb_reg_decode(struct cmipci_sb_reg *r, unsigned long val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852{
1853 r->left_reg = val & 0xff;
1854 r->right_reg = (val >> 8) & 0xff;
1855 r->left_shift = (val >> 16) & 0x07;
1856 r->right_shift = (val >> 19) & 0x07;
1857 r->invert = (val >> 22) & 1;
1858 r->stereo = (val >> 23) & 1;
1859 r->mask = (val >> 24) & 0xff;
1860}
1861
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001862static int snd_cmipci_info_volume(struct snd_kcontrol *kcontrol,
1863 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001865 struct cmipci_sb_reg reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866
1867 cmipci_sb_reg_decode(&reg, kcontrol->private_value);
1868 uinfo->type = reg.mask == 1 ? SNDRV_CTL_ELEM_TYPE_BOOLEAN : SNDRV_CTL_ELEM_TYPE_INTEGER;
1869 uinfo->count = reg.stereo + 1;
1870 uinfo->value.integer.min = 0;
1871 uinfo->value.integer.max = reg.mask;
1872 return 0;
1873}
1874
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001875static int snd_cmipci_get_volume(struct snd_kcontrol *kcontrol,
1876 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001878 struct cmipci *cm = snd_kcontrol_chip(kcontrol);
1879 struct cmipci_sb_reg reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880 int val;
1881
1882 cmipci_sb_reg_decode(&reg, kcontrol->private_value);
1883 spin_lock_irq(&cm->reg_lock);
1884 val = (snd_cmipci_mixer_read(cm, reg.left_reg) >> reg.left_shift) & reg.mask;
1885 if (reg.invert)
1886 val = reg.mask - val;
1887 ucontrol->value.integer.value[0] = val;
1888 if (reg.stereo) {
1889 val = (snd_cmipci_mixer_read(cm, reg.right_reg) >> reg.right_shift) & reg.mask;
1890 if (reg.invert)
1891 val = reg.mask - val;
1892 ucontrol->value.integer.value[1] = val;
1893 }
1894 spin_unlock_irq(&cm->reg_lock);
1895 return 0;
1896}
1897
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001898static int snd_cmipci_put_volume(struct snd_kcontrol *kcontrol,
1899 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001901 struct cmipci *cm = snd_kcontrol_chip(kcontrol);
1902 struct cmipci_sb_reg reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903 int change;
1904 int left, right, oleft, oright;
1905
1906 cmipci_sb_reg_decode(&reg, kcontrol->private_value);
1907 left = ucontrol->value.integer.value[0] & reg.mask;
1908 if (reg.invert)
1909 left = reg.mask - left;
1910 left <<= reg.left_shift;
1911 if (reg.stereo) {
1912 right = ucontrol->value.integer.value[1] & reg.mask;
1913 if (reg.invert)
1914 right = reg.mask - right;
1915 right <<= reg.right_shift;
1916 } else
1917 right = 0;
1918 spin_lock_irq(&cm->reg_lock);
1919 oleft = snd_cmipci_mixer_read(cm, reg.left_reg);
1920 left |= oleft & ~(reg.mask << reg.left_shift);
1921 change = left != oleft;
1922 if (reg.stereo) {
1923 if (reg.left_reg != reg.right_reg) {
1924 snd_cmipci_mixer_write(cm, reg.left_reg, left);
1925 oright = snd_cmipci_mixer_read(cm, reg.right_reg);
1926 } else
1927 oright = left;
1928 right |= oright & ~(reg.mask << reg.right_shift);
1929 change |= right != oright;
1930 snd_cmipci_mixer_write(cm, reg.right_reg, right);
1931 } else
1932 snd_cmipci_mixer_write(cm, reg.left_reg, left);
1933 spin_unlock_irq(&cm->reg_lock);
1934 return change;
1935}
1936
1937/*
1938 * input route (left,right) -> (left,right)
1939 */
1940#define CMIPCI_SB_INPUT_SW(xname, left_shift, right_shift) \
1941{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \
1942 .info = snd_cmipci_info_input_sw, \
1943 .get = snd_cmipci_get_input_sw, .put = snd_cmipci_put_input_sw, \
1944 .private_value = COMPOSE_SB_REG(SB_DSP4_INPUT_LEFT, SB_DSP4_INPUT_RIGHT, left_shift, right_shift, 1, 0, 1), \
1945}
1946
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001947static int snd_cmipci_info_input_sw(struct snd_kcontrol *kcontrol,
1948 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949{
1950 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
1951 uinfo->count = 4;
1952 uinfo->value.integer.min = 0;
1953 uinfo->value.integer.max = 1;
1954 return 0;
1955}
1956
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001957static int snd_cmipci_get_input_sw(struct snd_kcontrol *kcontrol,
1958 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001960 struct cmipci *cm = snd_kcontrol_chip(kcontrol);
1961 struct cmipci_sb_reg reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962 int val1, val2;
1963
1964 cmipci_sb_reg_decode(&reg, kcontrol->private_value);
1965 spin_lock_irq(&cm->reg_lock);
1966 val1 = snd_cmipci_mixer_read(cm, reg.left_reg);
1967 val2 = snd_cmipci_mixer_read(cm, reg.right_reg);
1968 spin_unlock_irq(&cm->reg_lock);
1969 ucontrol->value.integer.value[0] = (val1 >> reg.left_shift) & 1;
1970 ucontrol->value.integer.value[1] = (val2 >> reg.left_shift) & 1;
1971 ucontrol->value.integer.value[2] = (val1 >> reg.right_shift) & 1;
1972 ucontrol->value.integer.value[3] = (val2 >> reg.right_shift) & 1;
1973 return 0;
1974}
1975
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001976static int snd_cmipci_put_input_sw(struct snd_kcontrol *kcontrol,
1977 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001979 struct cmipci *cm = snd_kcontrol_chip(kcontrol);
1980 struct cmipci_sb_reg reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981 int change;
1982 int val1, val2, oval1, oval2;
1983
1984 cmipci_sb_reg_decode(&reg, kcontrol->private_value);
1985 spin_lock_irq(&cm->reg_lock);
1986 oval1 = snd_cmipci_mixer_read(cm, reg.left_reg);
1987 oval2 = snd_cmipci_mixer_read(cm, reg.right_reg);
1988 val1 = oval1 & ~((1 << reg.left_shift) | (1 << reg.right_shift));
1989 val2 = oval2 & ~((1 << reg.left_shift) | (1 << reg.right_shift));
1990 val1 |= (ucontrol->value.integer.value[0] & 1) << reg.left_shift;
1991 val2 |= (ucontrol->value.integer.value[1] & 1) << reg.left_shift;
1992 val1 |= (ucontrol->value.integer.value[2] & 1) << reg.right_shift;
1993 val2 |= (ucontrol->value.integer.value[3] & 1) << reg.right_shift;
1994 change = val1 != oval1 || val2 != oval2;
1995 snd_cmipci_mixer_write(cm, reg.left_reg, val1);
1996 snd_cmipci_mixer_write(cm, reg.right_reg, val2);
1997 spin_unlock_irq(&cm->reg_lock);
1998 return change;
1999}
2000
2001/*
2002 * native mixer switches/volumes
2003 */
2004
2005#define CMIPCI_MIXER_SW_STEREO(xname, reg, lshift, rshift, invert) \
2006{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \
2007 .info = snd_cmipci_info_native_mixer, \
2008 .get = snd_cmipci_get_native_mixer, .put = snd_cmipci_put_native_mixer, \
2009 .private_value = COMPOSE_SB_REG(reg, reg, lshift, rshift, 1, invert, 1), \
2010}
2011
2012#define CMIPCI_MIXER_SW_MONO(xname, reg, shift, invert) \
2013{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \
2014 .info = snd_cmipci_info_native_mixer, \
2015 .get = snd_cmipci_get_native_mixer, .put = snd_cmipci_put_native_mixer, \
2016 .private_value = COMPOSE_SB_REG(reg, reg, shift, shift, 1, invert, 0), \
2017}
2018
2019#define CMIPCI_MIXER_VOL_STEREO(xname, reg, lshift, rshift, mask) \
2020{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \
2021 .info = snd_cmipci_info_native_mixer, \
2022 .get = snd_cmipci_get_native_mixer, .put = snd_cmipci_put_native_mixer, \
2023 .private_value = COMPOSE_SB_REG(reg, reg, lshift, rshift, mask, 0, 1), \
2024}
2025
2026#define CMIPCI_MIXER_VOL_MONO(xname, reg, shift, mask) \
2027{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \
2028 .info = snd_cmipci_info_native_mixer, \
2029 .get = snd_cmipci_get_native_mixer, .put = snd_cmipci_put_native_mixer, \
2030 .private_value = COMPOSE_SB_REG(reg, reg, shift, shift, mask, 0, 0), \
2031}
2032
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002033static int snd_cmipci_info_native_mixer(struct snd_kcontrol *kcontrol,
2034 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002036 struct cmipci_sb_reg reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037
2038 cmipci_sb_reg_decode(&reg, kcontrol->private_value);
2039 uinfo->type = reg.mask == 1 ? SNDRV_CTL_ELEM_TYPE_BOOLEAN : SNDRV_CTL_ELEM_TYPE_INTEGER;
2040 uinfo->count = reg.stereo + 1;
2041 uinfo->value.integer.min = 0;
2042 uinfo->value.integer.max = reg.mask;
2043 return 0;
2044
2045}
2046
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002047static int snd_cmipci_get_native_mixer(struct snd_kcontrol *kcontrol,
2048 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002050 struct cmipci *cm = snd_kcontrol_chip(kcontrol);
2051 struct cmipci_sb_reg reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052 unsigned char oreg, val;
2053
2054 cmipci_sb_reg_decode(&reg, kcontrol->private_value);
2055 spin_lock_irq(&cm->reg_lock);
2056 oreg = inb(cm->iobase + reg.left_reg);
2057 val = (oreg >> reg.left_shift) & reg.mask;
2058 if (reg.invert)
2059 val = reg.mask - val;
2060 ucontrol->value.integer.value[0] = val;
2061 if (reg.stereo) {
2062 val = (oreg >> reg.right_shift) & reg.mask;
2063 if (reg.invert)
2064 val = reg.mask - val;
2065 ucontrol->value.integer.value[1] = val;
2066 }
2067 spin_unlock_irq(&cm->reg_lock);
2068 return 0;
2069}
2070
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002071static int snd_cmipci_put_native_mixer(struct snd_kcontrol *kcontrol,
2072 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002074 struct cmipci *cm = snd_kcontrol_chip(kcontrol);
2075 struct cmipci_sb_reg reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076 unsigned char oreg, nreg, val;
2077
2078 cmipci_sb_reg_decode(&reg, kcontrol->private_value);
2079 spin_lock_irq(&cm->reg_lock);
2080 oreg = inb(cm->iobase + reg.left_reg);
2081 val = ucontrol->value.integer.value[0] & reg.mask;
2082 if (reg.invert)
2083 val = reg.mask - val;
2084 nreg = oreg & ~(reg.mask << reg.left_shift);
2085 nreg |= (val << reg.left_shift);
2086 if (reg.stereo) {
2087 val = ucontrol->value.integer.value[1] & reg.mask;
2088 if (reg.invert)
2089 val = reg.mask - val;
2090 nreg &= ~(reg.mask << reg.right_shift);
2091 nreg |= (val << reg.right_shift);
2092 }
2093 outb(nreg, cm->iobase + reg.left_reg);
2094 spin_unlock_irq(&cm->reg_lock);
2095 return (nreg != oreg);
2096}
2097
2098/*
2099 * special case - check mixer sensitivity
2100 */
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002101static int snd_cmipci_get_native_mixer_sensitive(struct snd_kcontrol *kcontrol,
2102 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002104 //struct cmipci *cm = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105 return snd_cmipci_get_native_mixer(kcontrol, ucontrol);
2106}
2107
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002108static int snd_cmipci_put_native_mixer_sensitive(struct snd_kcontrol *kcontrol,
2109 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002111 struct cmipci *cm = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112 if (cm->mixer_insensitive) {
2113 /* ignored */
2114 return 0;
2115 }
2116 return snd_cmipci_put_native_mixer(kcontrol, ucontrol);
2117}
2118
2119
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002120static struct snd_kcontrol_new snd_cmipci_mixers[] __devinitdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121 CMIPCI_SB_VOL_STEREO("Master Playback Volume", SB_DSP4_MASTER_DEV, 3, 31),
2122 CMIPCI_MIXER_SW_MONO("3D Control - Switch", CM_REG_MIXER1, CM_X3DEN_SHIFT, 0),
2123 CMIPCI_SB_VOL_STEREO("PCM Playback Volume", SB_DSP4_PCM_DEV, 3, 31),
2124 //CMIPCI_MIXER_SW_MONO("PCM Playback Switch", CM_REG_MIXER1, CM_WSMUTE_SHIFT, 1),
2125 { /* switch with sensitivity */
2126 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2127 .name = "PCM Playback Switch",
2128 .info = snd_cmipci_info_native_mixer,
2129 .get = snd_cmipci_get_native_mixer_sensitive,
2130 .put = snd_cmipci_put_native_mixer_sensitive,
2131 .private_value = COMPOSE_SB_REG(CM_REG_MIXER1, CM_REG_MIXER1, CM_WSMUTE_SHIFT, CM_WSMUTE_SHIFT, 1, 1, 0),
2132 },
2133 CMIPCI_MIXER_SW_STEREO("PCM Capture Switch", CM_REG_MIXER1, CM_WAVEINL_SHIFT, CM_WAVEINR_SHIFT, 0),
2134 CMIPCI_SB_VOL_STEREO("Synth Playback Volume", SB_DSP4_SYNTH_DEV, 3, 31),
2135 CMIPCI_MIXER_SW_MONO("Synth Playback Switch", CM_REG_MIXER1, CM_FMMUTE_SHIFT, 1),
2136 CMIPCI_SB_INPUT_SW("Synth Capture Route", 6, 5),
2137 CMIPCI_SB_VOL_STEREO("CD Playback Volume", SB_DSP4_CD_DEV, 3, 31),
2138 CMIPCI_SB_SW_STEREO("CD Playback Switch", 2, 1),
2139 CMIPCI_SB_INPUT_SW("CD Capture Route", 2, 1),
2140 CMIPCI_SB_VOL_STEREO("Line Playback Volume", SB_DSP4_LINE_DEV, 3, 31),
2141 CMIPCI_SB_SW_STEREO("Line Playback Switch", 4, 3),
2142 CMIPCI_SB_INPUT_SW("Line Capture Route", 4, 3),
2143 CMIPCI_SB_VOL_MONO("Mic Playback Volume", SB_DSP4_MIC_DEV, 3, 31),
2144 CMIPCI_SB_SW_MONO("Mic Playback Switch", 0),
2145 CMIPCI_DOUBLE("Mic Capture Switch", SB_DSP4_INPUT_LEFT, SB_DSP4_INPUT_RIGHT, 0, 0, 1, 0, 0),
2146 CMIPCI_SB_VOL_MONO("PC Speaker Playback Volume", SB_DSP4_SPEAKER_DEV, 6, 3),
2147 CMIPCI_MIXER_VOL_STEREO("Aux Playback Volume", CM_REG_AUX_VOL, 4, 0, 15),
2148 CMIPCI_MIXER_SW_STEREO("Aux Playback Switch", CM_REG_MIXER2, CM_VAUXLM_SHIFT, CM_VAUXRM_SHIFT, 0),
2149 CMIPCI_MIXER_SW_STEREO("Aux Capture Switch", CM_REG_MIXER2, CM_RAUXLEN_SHIFT, CM_RAUXREN_SHIFT, 0),
Takashi Iwai2eff7ec2005-06-30 13:45:20 +02002150 CMIPCI_MIXER_SW_MONO("Mic Boost Playback Switch", CM_REG_MIXER2, CM_MICGAINZ_SHIFT, 1),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151 CMIPCI_MIXER_VOL_MONO("Mic Capture Volume", CM_REG_MIXER2, CM_VADMIC_SHIFT, 7),
Takashi Iwai2eff7ec2005-06-30 13:45:20 +02002152 CMIPCI_SB_VOL_MONO("Phone Playback Volume", CM_REG_EXTENT_IND, 5, 7),
2153 CMIPCI_DOUBLE("Phone Playback Switch", CM_REG_EXTENT_IND, CM_REG_EXTENT_IND, 4, 4, 1, 0, 0),
Takashi Iwaif26eb782006-05-29 19:05:28 +02002154 CMIPCI_DOUBLE("PC Speaker Playback Switch", CM_REG_EXTENT_IND, CM_REG_EXTENT_IND, 3, 3, 1, 0, 0),
Takashi Iwai2eff7ec2005-06-30 13:45:20 +02002155 CMIPCI_DOUBLE("Mic Boost Capture Switch", CM_REG_EXTENT_IND, CM_REG_EXTENT_IND, 0, 0, 1, 0, 0),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156};
2157
2158/*
2159 * other switches
2160 */
2161
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002162struct cmipci_switch_args {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163 int reg; /* register index */
2164 unsigned int mask; /* mask bits */
2165 unsigned int mask_on; /* mask bits to turn on */
2166 unsigned int is_byte: 1; /* byte access? */
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002167 unsigned int ac3_sensitive: 1; /* access forbidden during
2168 * non-audio operation?
2169 */
2170};
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171
Takashi Iwaia5ce8892007-07-23 15:42:26 +02002172#define snd_cmipci_uswitch_info snd_ctl_boolean_mono_info
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002174static int _snd_cmipci_uswitch_get(struct snd_kcontrol *kcontrol,
2175 struct snd_ctl_elem_value *ucontrol,
2176 struct cmipci_switch_args *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177{
2178 unsigned int val;
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002179 struct cmipci *cm = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180
2181 spin_lock_irq(&cm->reg_lock);
2182 if (args->ac3_sensitive && cm->mixer_insensitive) {
2183 ucontrol->value.integer.value[0] = 0;
2184 spin_unlock_irq(&cm->reg_lock);
2185 return 0;
2186 }
2187 if (args->is_byte)
2188 val = inb(cm->iobase + args->reg);
2189 else
2190 val = snd_cmipci_read(cm, args->reg);
2191 ucontrol->value.integer.value[0] = ((val & args->mask) == args->mask_on) ? 1 : 0;
2192 spin_unlock_irq(&cm->reg_lock);
2193 return 0;
2194}
2195
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002196static int snd_cmipci_uswitch_get(struct snd_kcontrol *kcontrol,
2197 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002199 struct cmipci_switch_args *args;
2200 args = (struct cmipci_switch_args *)kcontrol->private_value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201 snd_assert(args != NULL, return -EINVAL);
2202 return _snd_cmipci_uswitch_get(kcontrol, ucontrol, args);
2203}
2204
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002205static int _snd_cmipci_uswitch_put(struct snd_kcontrol *kcontrol,
2206 struct snd_ctl_elem_value *ucontrol,
2207 struct cmipci_switch_args *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208{
2209 unsigned int val;
2210 int change;
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002211 struct cmipci *cm = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212
2213 spin_lock_irq(&cm->reg_lock);
2214 if (args->ac3_sensitive && cm->mixer_insensitive) {
2215 /* ignored */
2216 spin_unlock_irq(&cm->reg_lock);
2217 return 0;
2218 }
2219 if (args->is_byte)
2220 val = inb(cm->iobase + args->reg);
2221 else
2222 val = snd_cmipci_read(cm, args->reg);
Timofei V. Bondarenko8c670712006-12-20 19:20:07 +01002223 change = (val & args->mask) != (ucontrol->value.integer.value[0] ?
2224 args->mask_on : (args->mask & ~args->mask_on));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225 if (change) {
2226 val &= ~args->mask;
2227 if (ucontrol->value.integer.value[0])
2228 val |= args->mask_on;
2229 else
2230 val |= (args->mask & ~args->mask_on);
2231 if (args->is_byte)
2232 outb((unsigned char)val, cm->iobase + args->reg);
2233 else
2234 snd_cmipci_write(cm, args->reg, val);
2235 }
2236 spin_unlock_irq(&cm->reg_lock);
2237 return change;
2238}
2239
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002240static int snd_cmipci_uswitch_put(struct snd_kcontrol *kcontrol,
2241 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002242{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002243 struct cmipci_switch_args *args;
2244 args = (struct cmipci_switch_args *)kcontrol->private_value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245 snd_assert(args != NULL, return -EINVAL);
2246 return _snd_cmipci_uswitch_put(kcontrol, ucontrol, args);
2247}
2248
2249#define DEFINE_SWITCH_ARG(sname, xreg, xmask, xmask_on, xis_byte, xac3) \
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002250static struct cmipci_switch_args cmipci_switch_arg_##sname = { \
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251 .reg = xreg, \
2252 .mask = xmask, \
2253 .mask_on = xmask_on, \
2254 .is_byte = xis_byte, \
2255 .ac3_sensitive = xac3, \
2256}
2257
2258#define DEFINE_BIT_SWITCH_ARG(sname, xreg, xmask, xis_byte, xac3) \
2259 DEFINE_SWITCH_ARG(sname, xreg, xmask, xmask, xis_byte, xac3)
2260
2261#if 0 /* these will be controlled in pcm device */
2262DEFINE_BIT_SWITCH_ARG(spdif_in, CM_REG_FUNCTRL1, CM_SPDF_1, 0, 0);
2263DEFINE_BIT_SWITCH_ARG(spdif_out, CM_REG_FUNCTRL1, CM_SPDF_0, 0, 0);
2264#endif
2265DEFINE_BIT_SWITCH_ARG(spdif_in_sel1, CM_REG_CHFORMAT, CM_SPDIF_SELECT1, 0, 0);
2266DEFINE_BIT_SWITCH_ARG(spdif_in_sel2, CM_REG_MISC_CTRL, CM_SPDIF_SELECT2, 0, 0);
2267DEFINE_BIT_SWITCH_ARG(spdif_enable, CM_REG_LEGACY_CTRL, CM_ENSPDOUT, 0, 0);
2268DEFINE_BIT_SWITCH_ARG(spdo2dac, CM_REG_FUNCTRL1, CM_SPDO2DAC, 0, 1);
2269DEFINE_BIT_SWITCH_ARG(spdi_valid, CM_REG_MISC, CM_SPDVALID, 1, 0);
2270DEFINE_BIT_SWITCH_ARG(spdif_copyright, CM_REG_LEGACY_CTRL, CM_SPDCOPYRHT, 0, 0);
2271DEFINE_BIT_SWITCH_ARG(spdif_dac_out, CM_REG_LEGACY_CTRL, CM_DAC2SPDO, 0, 1);
2272DEFINE_SWITCH_ARG(spdo_5v, CM_REG_MISC_CTRL, CM_SPDO5V, 0, 0, 0); /* inverse: 0 = 5V */
2273// DEFINE_BIT_SWITCH_ARG(spdo_48k, CM_REG_MISC_CTRL, CM_SPDF_AC97|CM_SPDIF48K, 0, 1);
2274DEFINE_BIT_SWITCH_ARG(spdif_loop, CM_REG_FUNCTRL1, CM_SPDFLOOP, 0, 1);
2275DEFINE_BIT_SWITCH_ARG(spdi_monitor, CM_REG_MIXER1, CM_CDPLAY, 1, 0);
2276/* DEFINE_BIT_SWITCH_ARG(spdi_phase, CM_REG_CHFORMAT, CM_SPDIF_INVERSE, 0, 0); */
2277DEFINE_BIT_SWITCH_ARG(spdi_phase, CM_REG_MISC, CM_SPDIF_INVERSE, 1, 0);
2278DEFINE_BIT_SWITCH_ARG(spdi_phase2, CM_REG_CHFORMAT, CM_SPDIF_INVERSE2, 0, 0);
2279#if CM_CH_PLAY == 1
2280DEFINE_SWITCH_ARG(exchange_dac, CM_REG_MISC_CTRL, CM_XCHGDAC, 0, 0, 0); /* reversed */
2281#else
2282DEFINE_SWITCH_ARG(exchange_dac, CM_REG_MISC_CTRL, CM_XCHGDAC, CM_XCHGDAC, 0, 0);
2283#endif
2284DEFINE_BIT_SWITCH_ARG(fourch, CM_REG_MISC_CTRL, CM_N4SPK3D, 0, 0);
Takashi Iwai01d25d42005-04-11 16:58:24 +02002285// DEFINE_BIT_SWITCH_ARG(line_rear, CM_REG_MIXER1, CM_SPK4, 1, 0);
2286// DEFINE_BIT_SWITCH_ARG(line_bass, CM_REG_LEGACY_CTRL, CM_LINE_AS_BASS, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287// DEFINE_BIT_SWITCH_ARG(joystick, CM_REG_FUNCTRL1, CM_JYSTK_EN, 0, 0); /* now module option */
2288DEFINE_SWITCH_ARG(modem, CM_REG_MISC_CTRL, CM_FLINKON|CM_FLINKOFF, CM_FLINKON, 0, 0);
2289
2290#define DEFINE_SWITCH(sname, stype, sarg) \
2291{ .name = sname, \
2292 .iface = stype, \
2293 .info = snd_cmipci_uswitch_info, \
2294 .get = snd_cmipci_uswitch_get, \
2295 .put = snd_cmipci_uswitch_put, \
2296 .private_value = (unsigned long)&cmipci_switch_arg_##sarg,\
2297}
2298
2299#define DEFINE_CARD_SWITCH(sname, sarg) DEFINE_SWITCH(sname, SNDRV_CTL_ELEM_IFACE_CARD, sarg)
2300#define DEFINE_MIXER_SWITCH(sname, sarg) DEFINE_SWITCH(sname, SNDRV_CTL_ELEM_IFACE_MIXER, sarg)
2301
2302
2303/*
2304 * callbacks for spdif output switch
2305 * needs toggle two registers..
2306 */
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002307static int snd_cmipci_spdout_enable_get(struct snd_kcontrol *kcontrol,
2308 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309{
2310 int changed;
2311 changed = _snd_cmipci_uswitch_get(kcontrol, ucontrol, &cmipci_switch_arg_spdif_enable);
2312 changed |= _snd_cmipci_uswitch_get(kcontrol, ucontrol, &cmipci_switch_arg_spdo2dac);
2313 return changed;
2314}
2315
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002316static int snd_cmipci_spdout_enable_put(struct snd_kcontrol *kcontrol,
2317 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002318{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002319 struct cmipci *chip = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320 int changed;
2321 changed = _snd_cmipci_uswitch_put(kcontrol, ucontrol, &cmipci_switch_arg_spdif_enable);
2322 changed |= _snd_cmipci_uswitch_put(kcontrol, ucontrol, &cmipci_switch_arg_spdo2dac);
2323 if (changed) {
2324 if (ucontrol->value.integer.value[0]) {
2325 if (chip->spdif_playback_avail)
2326 snd_cmipci_set_bit(chip, CM_REG_FUNCTRL1, CM_PLAYBACK_SPDF);
2327 } else {
2328 if (chip->spdif_playback_avail)
2329 snd_cmipci_clear_bit(chip, CM_REG_FUNCTRL1, CM_PLAYBACK_SPDF);
2330 }
2331 }
2332 chip->spdif_playback_enabled = ucontrol->value.integer.value[0];
2333 return changed;
2334}
2335
2336
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002337static int snd_cmipci_line_in_mode_info(struct snd_kcontrol *kcontrol,
2338 struct snd_ctl_elem_info *uinfo)
Takashi Iwai01d25d42005-04-11 16:58:24 +02002339{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002340 struct cmipci *cm = snd_kcontrol_chip(kcontrol);
Takashi Iwai01d25d42005-04-11 16:58:24 +02002341 static char *texts[3] = { "Line-In", "Rear Output", "Bass Output" };
2342 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
2343 uinfo->count = 1;
2344 uinfo->value.enumerated.items = cm->chip_version >= 39 ? 3 : 2;
2345 if (uinfo->value.enumerated.item >= uinfo->value.enumerated.items)
2346 uinfo->value.enumerated.item = uinfo->value.enumerated.items - 1;
2347 strcpy(uinfo->value.enumerated.name, texts[uinfo->value.enumerated.item]);
2348 return 0;
2349}
2350
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002351static inline unsigned int get_line_in_mode(struct cmipci *cm)
Takashi Iwai01d25d42005-04-11 16:58:24 +02002352{
2353 unsigned int val;
2354 if (cm->chip_version >= 39) {
2355 val = snd_cmipci_read(cm, CM_REG_LEGACY_CTRL);
2356 if (val & CM_LINE_AS_BASS)
2357 return 2;
2358 }
2359 val = snd_cmipci_read_b(cm, CM_REG_MIXER1);
2360 if (val & CM_SPK4)
2361 return 1;
2362 return 0;
2363}
2364
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002365static int snd_cmipci_line_in_mode_get(struct snd_kcontrol *kcontrol,
2366 struct snd_ctl_elem_value *ucontrol)
Takashi Iwai01d25d42005-04-11 16:58:24 +02002367{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002368 struct cmipci *cm = snd_kcontrol_chip(kcontrol);
Takashi Iwai01d25d42005-04-11 16:58:24 +02002369
2370 spin_lock_irq(&cm->reg_lock);
2371 ucontrol->value.enumerated.item[0] = get_line_in_mode(cm);
2372 spin_unlock_irq(&cm->reg_lock);
2373 return 0;
2374}
2375
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002376static int snd_cmipci_line_in_mode_put(struct snd_kcontrol *kcontrol,
2377 struct snd_ctl_elem_value *ucontrol)
Takashi Iwai01d25d42005-04-11 16:58:24 +02002378{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002379 struct cmipci *cm = snd_kcontrol_chip(kcontrol);
Takashi Iwai01d25d42005-04-11 16:58:24 +02002380 int change;
2381
2382 spin_lock_irq(&cm->reg_lock);
2383 if (ucontrol->value.enumerated.item[0] == 2)
2384 change = snd_cmipci_set_bit(cm, CM_REG_LEGACY_CTRL, CM_LINE_AS_BASS);
2385 else
2386 change = snd_cmipci_clear_bit(cm, CM_REG_LEGACY_CTRL, CM_LINE_AS_BASS);
2387 if (ucontrol->value.enumerated.item[0] == 1)
2388 change |= snd_cmipci_set_bit_b(cm, CM_REG_MIXER1, CM_SPK4);
2389 else
2390 change |= snd_cmipci_clear_bit_b(cm, CM_REG_MIXER1, CM_SPK4);
2391 spin_unlock_irq(&cm->reg_lock);
2392 return change;
2393}
2394
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002395static int snd_cmipci_mic_in_mode_info(struct snd_kcontrol *kcontrol,
2396 struct snd_ctl_elem_info *uinfo)
Takashi Iwai01d25d42005-04-11 16:58:24 +02002397{
2398 static char *texts[2] = { "Mic-In", "Center/LFE Output" };
2399 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
2400 uinfo->count = 1;
2401 uinfo->value.enumerated.items = 2;
2402 if (uinfo->value.enumerated.item >= uinfo->value.enumerated.items)
2403 uinfo->value.enumerated.item = uinfo->value.enumerated.items - 1;
2404 strcpy(uinfo->value.enumerated.name, texts[uinfo->value.enumerated.item]);
2405 return 0;
2406}
2407
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002408static int snd_cmipci_mic_in_mode_get(struct snd_kcontrol *kcontrol,
2409 struct snd_ctl_elem_value *ucontrol)
Takashi Iwai01d25d42005-04-11 16:58:24 +02002410{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002411 struct cmipci *cm = snd_kcontrol_chip(kcontrol);
Takashi Iwai01d25d42005-04-11 16:58:24 +02002412 /* same bit as spdi_phase */
2413 spin_lock_irq(&cm->reg_lock);
2414 ucontrol->value.enumerated.item[0] =
2415 (snd_cmipci_read_b(cm, CM_REG_MISC) & CM_SPDIF_INVERSE) ? 1 : 0;
2416 spin_unlock_irq(&cm->reg_lock);
2417 return 0;
2418}
2419
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002420static int snd_cmipci_mic_in_mode_put(struct snd_kcontrol *kcontrol,
2421 struct snd_ctl_elem_value *ucontrol)
Takashi Iwai01d25d42005-04-11 16:58:24 +02002422{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002423 struct cmipci *cm = snd_kcontrol_chip(kcontrol);
Takashi Iwai01d25d42005-04-11 16:58:24 +02002424 int change;
2425
2426 spin_lock_irq(&cm->reg_lock);
2427 if (ucontrol->value.enumerated.item[0])
2428 change = snd_cmipci_set_bit_b(cm, CM_REG_MISC, CM_SPDIF_INVERSE);
2429 else
2430 change = snd_cmipci_clear_bit_b(cm, CM_REG_MISC, CM_SPDIF_INVERSE);
2431 spin_unlock_irq(&cm->reg_lock);
2432 return change;
2433}
2434
Linus Torvalds1da177e2005-04-16 15:20:36 -07002435/* both for CM8338/8738 */
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002436static struct snd_kcontrol_new snd_cmipci_mixer_switches[] __devinitdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002437 DEFINE_MIXER_SWITCH("Four Channel Mode", fourch),
Takashi Iwai01d25d42005-04-11 16:58:24 +02002438 {
2439 .name = "Line-In Mode",
2440 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2441 .info = snd_cmipci_line_in_mode_info,
2442 .get = snd_cmipci_line_in_mode_get,
2443 .put = snd_cmipci_line_in_mode_put,
2444 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445};
2446
2447/* for non-multichannel chips */
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002448static struct snd_kcontrol_new snd_cmipci_nomulti_switch __devinitdata =
Linus Torvalds1da177e2005-04-16 15:20:36 -07002449DEFINE_MIXER_SWITCH("Exchange DAC", exchange_dac);
2450
2451/* only for CM8738 */
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002452static struct snd_kcontrol_new snd_cmipci_8738_mixer_switches[] __devinitdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002453#if 0 /* controlled in pcm device */
2454 DEFINE_MIXER_SWITCH("IEC958 In Record", spdif_in),
2455 DEFINE_MIXER_SWITCH("IEC958 Out", spdif_out),
2456 DEFINE_MIXER_SWITCH("IEC958 Out To DAC", spdo2dac),
2457#endif
2458 // DEFINE_MIXER_SWITCH("IEC958 Output Switch", spdif_enable),
2459 { .name = "IEC958 Output Switch",
2460 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2461 .info = snd_cmipci_uswitch_info,
2462 .get = snd_cmipci_spdout_enable_get,
2463 .put = snd_cmipci_spdout_enable_put,
2464 },
2465 DEFINE_MIXER_SWITCH("IEC958 In Valid", spdi_valid),
2466 DEFINE_MIXER_SWITCH("IEC958 Copyright", spdif_copyright),
2467 DEFINE_MIXER_SWITCH("IEC958 5V", spdo_5v),
2468// DEFINE_MIXER_SWITCH("IEC958 In/Out 48KHz", spdo_48k),
2469 DEFINE_MIXER_SWITCH("IEC958 Loop", spdif_loop),
2470 DEFINE_MIXER_SWITCH("IEC958 In Monitor", spdi_monitor),
2471};
2472
2473/* only for model 033/037 */
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002474static struct snd_kcontrol_new snd_cmipci_old_mixer_switches[] __devinitdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002475 DEFINE_MIXER_SWITCH("IEC958 Mix Analog", spdif_dac_out),
2476 DEFINE_MIXER_SWITCH("IEC958 In Phase Inverse", spdi_phase),
2477 DEFINE_MIXER_SWITCH("IEC958 In Select", spdif_in_sel1),
2478};
2479
2480/* only for model 039 or later */
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002481static struct snd_kcontrol_new snd_cmipci_extra_mixer_switches[] __devinitdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002482 DEFINE_MIXER_SWITCH("IEC958 In Select", spdif_in_sel2),
2483 DEFINE_MIXER_SWITCH("IEC958 In Phase Inverse", spdi_phase2),
Takashi Iwai01d25d42005-04-11 16:58:24 +02002484 {
2485 .name = "Mic-In Mode",
2486 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2487 .info = snd_cmipci_mic_in_mode_info,
2488 .get = snd_cmipci_mic_in_mode_get,
2489 .put = snd_cmipci_mic_in_mode_put,
2490 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002491};
2492
2493/* card control switches */
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002494static struct snd_kcontrol_new snd_cmipci_control_switches[] __devinitdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002495 // DEFINE_CARD_SWITCH("Joystick", joystick), /* now module option */
2496 DEFINE_CARD_SWITCH("Modem", modem),
2497};
2498
2499
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002500static int __devinit snd_cmipci_mixer_new(struct cmipci *cm, int pcm_spdif_device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002501{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002502 struct snd_card *card;
2503 struct snd_kcontrol_new *sw;
2504 struct snd_kcontrol *kctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002505 unsigned int idx;
2506 int err;
2507
2508 snd_assert(cm != NULL && cm->card != NULL, return -EINVAL);
2509
2510 card = cm->card;
2511
2512 strcpy(card->mixername, "CMedia PCI");
2513
2514 spin_lock_irq(&cm->reg_lock);
2515 snd_cmipci_mixer_write(cm, 0x00, 0x00); /* mixer reset */
2516 spin_unlock_irq(&cm->reg_lock);
2517
2518 for (idx = 0; idx < ARRAY_SIZE(snd_cmipci_mixers); idx++) {
2519 if (cm->chip_version == 68) { // 8768 has no PCM volume
2520 if (!strcmp(snd_cmipci_mixers[idx].name,
2521 "PCM Playback Volume"))
2522 continue;
2523 }
2524 if ((err = snd_ctl_add(card, snd_ctl_new1(&snd_cmipci_mixers[idx], cm))) < 0)
2525 return err;
2526 }
2527
2528 /* mixer switches */
2529 sw = snd_cmipci_mixer_switches;
2530 for (idx = 0; idx < ARRAY_SIZE(snd_cmipci_mixer_switches); idx++, sw++) {
2531 err = snd_ctl_add(cm->card, snd_ctl_new1(sw, cm));
2532 if (err < 0)
2533 return err;
2534 }
2535 if (! cm->can_multi_ch) {
2536 err = snd_ctl_add(cm->card, snd_ctl_new1(&snd_cmipci_nomulti_switch, cm));
2537 if (err < 0)
2538 return err;
2539 }
2540 if (cm->device == PCI_DEVICE_ID_CMEDIA_CM8738 ||
2541 cm->device == PCI_DEVICE_ID_CMEDIA_CM8738B) {
2542 sw = snd_cmipci_8738_mixer_switches;
2543 for (idx = 0; idx < ARRAY_SIZE(snd_cmipci_8738_mixer_switches); idx++, sw++) {
2544 err = snd_ctl_add(cm->card, snd_ctl_new1(sw, cm));
2545 if (err < 0)
2546 return err;
2547 }
2548 if (cm->can_ac3_hw) {
2549 if ((err = snd_ctl_add(card, kctl = snd_ctl_new1(&snd_cmipci_spdif_default, cm))) < 0)
2550 return err;
2551 kctl->id.device = pcm_spdif_device;
2552 if ((err = snd_ctl_add(card, kctl = snd_ctl_new1(&snd_cmipci_spdif_mask, cm))) < 0)
2553 return err;
2554 kctl->id.device = pcm_spdif_device;
2555 if ((err = snd_ctl_add(card, kctl = snd_ctl_new1(&snd_cmipci_spdif_stream, cm))) < 0)
2556 return err;
2557 kctl->id.device = pcm_spdif_device;
2558 }
2559 if (cm->chip_version <= 37) {
2560 sw = snd_cmipci_old_mixer_switches;
2561 for (idx = 0; idx < ARRAY_SIZE(snd_cmipci_old_mixer_switches); idx++, sw++) {
2562 err = snd_ctl_add(cm->card, snd_ctl_new1(sw, cm));
2563 if (err < 0)
2564 return err;
2565 }
2566 }
2567 }
2568 if (cm->chip_version >= 39) {
2569 sw = snd_cmipci_extra_mixer_switches;
2570 for (idx = 0; idx < ARRAY_SIZE(snd_cmipci_extra_mixer_switches); idx++, sw++) {
2571 err = snd_ctl_add(cm->card, snd_ctl_new1(sw, cm));
2572 if (err < 0)
2573 return err;
2574 }
2575 }
2576
2577 /* card switches */
2578 sw = snd_cmipci_control_switches;
2579 for (idx = 0; idx < ARRAY_SIZE(snd_cmipci_control_switches); idx++, sw++) {
2580 err = snd_ctl_add(cm->card, snd_ctl_new1(sw, cm));
2581 if (err < 0)
2582 return err;
2583 }
2584
2585 for (idx = 0; idx < CM_SAVED_MIXERS; idx++) {
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002586 struct snd_ctl_elem_id id;
2587 struct snd_kcontrol *ctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002588 memset(&id, 0, sizeof(id));
2589 id.iface = SNDRV_CTL_ELEM_IFACE_MIXER;
2590 strcpy(id.name, cm_saved_mixer[idx].name);
2591 if ((ctl = snd_ctl_find_id(cm->card, &id)) != NULL)
2592 cm->mixer_res_ctl[idx] = ctl;
2593 }
2594
2595 return 0;
2596}
2597
2598
2599/*
2600 * proc interface
2601 */
2602
2603#ifdef CONFIG_PROC_FS
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002604static void snd_cmipci_proc_read(struct snd_info_entry *entry,
2605 struct snd_info_buffer *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002606{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002607 struct cmipci *cm = entry->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002608 int i;
2609
2610 snd_iprintf(buffer, "%s\n\n", cm->card->longname);
2611 for (i = 0; i < 0x40; i++) {
2612 int v = inb(cm->iobase + i);
2613 if (i % 4 == 0)
2614 snd_iprintf(buffer, "%02x: ", i);
2615 snd_iprintf(buffer, "%02x", v);
2616 if (i % 4 == 3)
2617 snd_iprintf(buffer, "\n");
2618 else
2619 snd_iprintf(buffer, " ");
2620 }
2621}
2622
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002623static void __devinit snd_cmipci_proc_init(struct cmipci *cm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002624{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002625 struct snd_info_entry *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002626
2627 if (! snd_card_proc_new(cm->card, "cmipci", &entry))
Takashi Iwaibf850202006-04-28 15:13:41 +02002628 snd_info_set_text_ops(entry, cm, snd_cmipci_proc_read);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002629}
2630#else /* !CONFIG_PROC_FS */
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002631static inline void snd_cmipci_proc_init(struct cmipci *cm) {}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002632#endif
2633
2634
Takashi Iwaif40b6892006-07-05 16:51:05 +02002635static struct pci_device_id snd_cmipci_ids[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002636 {PCI_VENDOR_ID_CMEDIA, PCI_DEVICE_ID_CMEDIA_CM8338A, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
2637 {PCI_VENDOR_ID_CMEDIA, PCI_DEVICE_ID_CMEDIA_CM8338B, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
2638 {PCI_VENDOR_ID_CMEDIA, PCI_DEVICE_ID_CMEDIA_CM8738, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
2639 {PCI_VENDOR_ID_CMEDIA, PCI_DEVICE_ID_CMEDIA_CM8738B, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
2640 {PCI_VENDOR_ID_AL, PCI_DEVICE_ID_CMEDIA_CM8738, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
2641 {0,},
2642};
2643
2644
2645/*
2646 * check chip version and capabilities
2647 * driver name is modified according to the chip model
2648 */
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002649static void __devinit query_chip(struct cmipci *cm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002650{
2651 unsigned int detect;
2652
2653 /* check reg 0Ch, bit 24-31 */
2654 detect = snd_cmipci_read(cm, CM_REG_INT_HLDCLR) & CM_CHIP_MASK2;
2655 if (! detect) {
2656 /* check reg 08h, bit 24-28 */
2657 detect = snd_cmipci_read(cm, CM_REG_CHFORMAT) & CM_CHIP_MASK1;
Clemens Ladisch133271f2007-08-27 09:20:31 +02002658 switch (detect) {
2659 case 0:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002660 cm->chip_version = 33;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002661 if (cm->do_soft_ac3)
2662 cm->can_ac3_sw = 1;
2663 else
2664 cm->can_ac3_hw = 1;
Clemens Ladisch133271f2007-08-27 09:20:31 +02002665 break;
2666 case 1:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002667 cm->chip_version = 37;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002668 cm->can_ac3_hw = 1;
Clemens Ladisch133271f2007-08-27 09:20:31 +02002669 break;
2670 default:
2671 cm->chip_version = 39;
2672 cm->can_ac3_hw = 1;
2673 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002674 }
Clemens Ladisch133271f2007-08-27 09:20:31 +02002675 cm->max_channels = 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002676 } else {
Clemens Ladisch133271f2007-08-27 09:20:31 +02002677 if (detect & CM_CHIP_039) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002678 cm->chip_version = 39;
2679 if (detect & CM_CHIP_039_6CH) /* 4 or 6 channels */
2680 cm->max_channels = 6;
2681 else
2682 cm->max_channels = 4;
Clemens Ladisch133271f2007-08-27 09:20:31 +02002683 } else if (detect & CM_CHIP_8768) {
2684 cm->chip_version = 68;
2685 cm->max_channels = 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002686 } else {
Clemens Ladisch133271f2007-08-27 09:20:31 +02002687 cm->chip_version = 55;
2688 cm->max_channels = 6;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002689 }
Clemens Ladisch133271f2007-08-27 09:20:31 +02002690 cm->can_ac3_hw = 1;
Clemens Ladisch133271f2007-08-27 09:20:31 +02002691 cm->can_multi_ch = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002692 }
2693}
2694
2695#ifdef SUPPORT_JOYSTICK
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002696static int __devinit snd_cmipci_create_gameport(struct cmipci *cm, int dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002697{
2698 static int ports[] = { 0x201, 0x200, 0 }; /* FIXME: majority is 0x201? */
2699 struct gameport *gp;
2700 struct resource *r = NULL;
2701 int i, io_port = 0;
2702
2703 if (joystick_port[dev] == 0)
2704 return -ENODEV;
2705
2706 if (joystick_port[dev] == 1) { /* auto-detect */
2707 for (i = 0; ports[i]; i++) {
2708 io_port = ports[i];
2709 r = request_region(io_port, 1, "CMIPCI gameport");
2710 if (r)
2711 break;
2712 }
2713 } else {
2714 io_port = joystick_port[dev];
2715 r = request_region(io_port, 1, "CMIPCI gameport");
2716 }
2717
2718 if (!r) {
2719 printk(KERN_WARNING "cmipci: cannot reserve joystick ports\n");
2720 return -EBUSY;
2721 }
2722
2723 cm->gameport = gp = gameport_allocate_port();
2724 if (!gp) {
2725 printk(KERN_ERR "cmipci: cannot allocate memory for gameport\n");
Takashi Iwaib1d57762005-10-10 11:56:31 +02002726 release_and_free_resource(r);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002727 return -ENOMEM;
2728 }
2729 gameport_set_name(gp, "C-Media Gameport");
2730 gameport_set_phys(gp, "pci%s/gameport0", pci_name(cm->pci));
2731 gameport_set_dev_parent(gp, &cm->pci->dev);
2732 gp->io = io_port;
2733 gameport_set_port_data(gp, r);
2734
2735 snd_cmipci_set_bit(cm, CM_REG_FUNCTRL1, CM_JYSTK_EN);
2736
2737 gameport_register_port(cm->gameport);
2738
2739 return 0;
2740}
2741
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002742static void snd_cmipci_free_gameport(struct cmipci *cm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002743{
2744 if (cm->gameport) {
2745 struct resource *r = gameport_get_port_data(cm->gameport);
2746
2747 gameport_unregister_port(cm->gameport);
2748 cm->gameport = NULL;
2749
2750 snd_cmipci_clear_bit(cm, CM_REG_FUNCTRL1, CM_JYSTK_EN);
Takashi Iwaib1d57762005-10-10 11:56:31 +02002751 release_and_free_resource(r);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002752 }
2753}
2754#else
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002755static inline int snd_cmipci_create_gameport(struct cmipci *cm, int dev) { return -ENOSYS; }
2756static inline void snd_cmipci_free_gameport(struct cmipci *cm) { }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002757#endif
2758
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002759static int snd_cmipci_free(struct cmipci *cm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002760{
2761 if (cm->irq >= 0) {
2762 snd_cmipci_clear_bit(cm, CM_REG_MISC_CTRL, CM_FM_EN);
2763 snd_cmipci_clear_bit(cm, CM_REG_LEGACY_CTRL, CM_ENSPDOUT);
2764 snd_cmipci_write(cm, CM_REG_INT_HLDCLR, 0); /* disable ints */
2765 snd_cmipci_ch_reset(cm, CM_CH_PLAY);
2766 snd_cmipci_ch_reset(cm, CM_CH_CAPT);
2767 snd_cmipci_write(cm, CM_REG_FUNCTRL0, 0); /* disable channels */
2768 snd_cmipci_write(cm, CM_REG_FUNCTRL1, 0);
2769
2770 /* reset mixer */
2771 snd_cmipci_mixer_write(cm, 0, 0);
2772
2773 synchronize_irq(cm->irq);
2774
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002775 free_irq(cm->irq, cm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002776 }
2777
2778 snd_cmipci_free_gameport(cm);
2779 pci_release_regions(cm->pci);
2780 pci_disable_device(cm->pci);
2781 kfree(cm);
2782 return 0;
2783}
2784
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002785static int snd_cmipci_dev_free(struct snd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002786{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002787 struct cmipci *cm = device->device_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002788 return snd_cmipci_free(cm);
2789}
2790
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002791static int __devinit snd_cmipci_create_fm(struct cmipci *cm, long fm_port)
Clemens Ladisch5747e542005-09-14 08:33:46 +02002792{
2793 long iosynth;
2794 unsigned int val;
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002795 struct snd_opl3 *opl3;
Clemens Ladisch5747e542005-09-14 08:33:46 +02002796 int err;
2797
Takashi Iwai2f24d1592007-02-15 18:56:43 +01002798 if (!fm_port)
2799 goto disable_fm;
2800
Clemens Ladischc78c9502007-09-03 09:55:49 +02002801 if (cm->chip_version >= 39) {
Clemens Ladisch45c41b42007-08-22 09:45:03 +02002802 /* first try FM regs in PCI port range */
2803 iosynth = cm->iobase + CM_REG_FM_PCI;
2804 err = snd_opl3_create(cm->card, iosynth, iosynth + 2,
2805 OPL3_HW_OPL3, 1, &opl3);
2806 } else {
2807 err = -EIO;
2808 }
Clemens Ladisch5747e542005-09-14 08:33:46 +02002809 if (err < 0) {
2810 /* then try legacy ports */
2811 val = snd_cmipci_read(cm, CM_REG_LEGACY_CTRL) & ~CM_FMSEL_MASK;
2812 iosynth = fm_port;
2813 switch (iosynth) {
2814 case 0x3E8: val |= CM_FMSEL_3E8; break;
2815 case 0x3E0: val |= CM_FMSEL_3E0; break;
2816 case 0x3C8: val |= CM_FMSEL_3C8; break;
2817 case 0x388: val |= CM_FMSEL_388; break;
2818 default:
Takashi Iwai2f24d1592007-02-15 18:56:43 +01002819 goto disable_fm;
Clemens Ladisch5747e542005-09-14 08:33:46 +02002820 }
2821 snd_cmipci_write(cm, CM_REG_LEGACY_CTRL, val);
2822 /* enable FM */
2823 snd_cmipci_set_bit(cm, CM_REG_MISC_CTRL, CM_FM_EN);
2824
2825 if (snd_opl3_create(cm->card, iosynth, iosynth + 2,
2826 OPL3_HW_OPL3, 0, &opl3) < 0) {
2827 printk(KERN_ERR "cmipci: no OPL device at %#lx, "
2828 "skipping...\n", iosynth);
Takashi Iwai2f24d1592007-02-15 18:56:43 +01002829 goto disable_fm;
Clemens Ladisch5747e542005-09-14 08:33:46 +02002830 }
2831 }
2832 if ((err = snd_opl3_hwdep_new(opl3, 0, 1, NULL)) < 0) {
2833 printk(KERN_ERR "cmipci: cannot create OPL3 hwdep\n");
2834 return err;
2835 }
2836 return 0;
Takashi Iwai2f24d1592007-02-15 18:56:43 +01002837
2838 disable_fm:
2839 snd_cmipci_clear_bit(cm, CM_REG_LEGACY_CTRL, CM_FMSEL_MASK);
2840 snd_cmipci_clear_bit(cm, CM_REG_MISC_CTRL, CM_FM_EN);
2841 return 0;
Clemens Ladisch5747e542005-09-14 08:33:46 +02002842}
2843
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002844static int __devinit snd_cmipci_create(struct snd_card *card, struct pci_dev *pci,
2845 int dev, struct cmipci **rcmipci)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002846{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002847 struct cmipci *cm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002848 int err;
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002849 static struct snd_device_ops ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002850 .dev_free = snd_cmipci_dev_free,
2851 };
Clemens Ladischd6426252007-08-27 09:22:31 +02002852 unsigned int val;
Clemens Ladisch5747e542005-09-14 08:33:46 +02002853 long iomidi;
Clemens Ladischc9116ae2007-08-24 09:18:04 +02002854 int integrated_midi = 0;
Clemens Ladischb7e054a2007-09-03 09:56:45 +02002855 char modelstr[16];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002856 int pcm_index, pcm_spdif_index;
2857 static struct pci_device_id intel_82437vx[] = {
2858 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82437VX) },
2859 { },
2860 };
2861
2862 *rcmipci = NULL;
2863
2864 if ((err = pci_enable_device(pci)) < 0)
2865 return err;
2866
Takashi Iwaie560d8d2005-09-09 14:21:46 +02002867 cm = kzalloc(sizeof(*cm), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002868 if (cm == NULL) {
2869 pci_disable_device(pci);
2870 return -ENOMEM;
2871 }
2872
2873 spin_lock_init(&cm->reg_lock);
Ingo Molnar62932df2006-01-16 16:34:20 +01002874 mutex_init(&cm->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002875 cm->device = pci->device;
2876 cm->card = card;
2877 cm->pci = pci;
2878 cm->irq = -1;
2879 cm->channel[0].ch = 0;
2880 cm->channel[1].ch = 1;
2881 cm->channel[0].is_dac = cm->channel[1].is_dac = 1; /* dual DAC mode */
2882
2883 if ((err = pci_request_regions(pci, card->driver)) < 0) {
2884 kfree(cm);
2885 pci_disable_device(pci);
2886 return err;
2887 }
2888 cm->iobase = pci_resource_start(pci, 0);
2889
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002890 if (request_irq(pci->irq, snd_cmipci_interrupt,
Takashi Iwai437a5a42006-11-21 12:14:23 +01002891 IRQF_SHARED, card->driver, cm)) {
Takashi Iwai99b359b2005-10-20 18:26:44 +02002892 snd_printk(KERN_ERR "unable to grab IRQ %d\n", pci->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002893 snd_cmipci_free(cm);
2894 return -EBUSY;
2895 }
2896 cm->irq = pci->irq;
2897
2898 pci_set_master(cm->pci);
2899
2900 /*
2901 * check chip version, max channels and capabilities
2902 */
2903
2904 cm->chip_version = 0;
2905 cm->max_channels = 2;
2906 cm->do_soft_ac3 = soft_ac3[dev];
2907
2908 if (pci->device != PCI_DEVICE_ID_CMEDIA_CM8338A &&
2909 pci->device != PCI_DEVICE_ID_CMEDIA_CM8338B)
2910 query_chip(cm);
2911 /* added -MCx suffix for chip supporting multi-channels */
2912 if (cm->can_multi_ch)
2913 sprintf(cm->card->driver + strlen(cm->card->driver),
2914 "-MC%d", cm->max_channels);
2915 else if (cm->can_ac3_sw)
2916 strcpy(cm->card->driver + strlen(cm->card->driver), "-SWIEC");
2917
2918 cm->dig_status = SNDRV_PCM_DEFAULT_CON_SPDIF;
2919 cm->dig_pcm_status = SNDRV_PCM_DEFAULT_CON_SPDIF;
2920
2921#if CM_CH_PLAY == 1
2922 cm->ctrl = CM_CHADC0; /* default FUNCNTRL0 */
2923#else
2924 cm->ctrl = CM_CHADC1; /* default FUNCNTRL0 */
2925#endif
2926
2927 /* initialize codec registers */
2928 snd_cmipci_write(cm, CM_REG_INT_HLDCLR, 0); /* disable ints */
2929 snd_cmipci_ch_reset(cm, CM_CH_PLAY);
2930 snd_cmipci_ch_reset(cm, CM_CH_CAPT);
2931 snd_cmipci_write(cm, CM_REG_FUNCTRL0, 0); /* disable channels */
2932 snd_cmipci_write(cm, CM_REG_FUNCTRL1, 0);
2933
2934 snd_cmipci_write(cm, CM_REG_CHFORMAT, 0);
2935 snd_cmipci_set_bit(cm, CM_REG_MISC_CTRL, CM_ENDBDAC|CM_N4SPK3D);
2936#if CM_CH_PLAY == 1
2937 snd_cmipci_set_bit(cm, CM_REG_MISC_CTRL, CM_XCHGDAC);
2938#else
2939 snd_cmipci_clear_bit(cm, CM_REG_MISC_CTRL, CM_XCHGDAC);
2940#endif
2941 /* Set Bus Master Request */
2942 snd_cmipci_set_bit(cm, CM_REG_FUNCTRL1, CM_BREQ);
2943
2944 /* Assume TX and compatible chip set (Autodetection required for VX chip sets) */
2945 switch (pci->device) {
2946 case PCI_DEVICE_ID_CMEDIA_CM8738:
2947 case PCI_DEVICE_ID_CMEDIA_CM8738B:
2948 if (!pci_dev_present(intel_82437vx))
2949 snd_cmipci_set_bit(cm, CM_REG_MISC_CTRL, CM_TXVX);
2950 break;
2951 default:
2952 break;
2953 }
2954
Clemens Ladischd6426252007-08-27 09:22:31 +02002955 if (cm->chip_version < 68) {
2956 val = pci->device < 0x110 ? 8338 : 8738;
Clemens Ladischd6426252007-08-27 09:22:31 +02002957 } else {
2958 switch (snd_cmipci_read_b(cm, CM_REG_INT_HLDCLR + 3) & 0x03) {
2959 case 0:
2960 val = 8769;
2961 break;
2962 case 2:
2963 val = 8762;
2964 break;
2965 default:
2966 switch ((pci->subsystem_vendor << 16) |
2967 pci->subsystem_device) {
2968 case 0x13f69761:
2969 case 0x584d3741:
2970 case 0x584d3751:
2971 case 0x584d3761:
2972 case 0x584d3771:
2973 case 0x72848384:
2974 val = 8770;
2975 break;
2976 default:
2977 val = 8768;
2978 break;
2979 }
2980 }
Clemens Ladischd6426252007-08-27 09:22:31 +02002981 }
Clemens Ladischb7e054a2007-09-03 09:56:45 +02002982 sprintf(card->shortname, "C-Media CMI%d", val);
2983 if (cm->chip_version < 68)
2984 sprintf(modelstr, " (model %d)", cm->chip_version);
2985 else
2986 modelstr[0] = '\0';
2987 sprintf(card->longname, "%s%s at %#lx, irq %i",
2988 card->shortname, modelstr, cm->iobase, cm->irq);
Clemens Ladisch1e02d6e2007-08-21 08:58:35 +02002989
Linus Torvalds1da177e2005-04-16 15:20:36 -07002990 if ((err = snd_device_new(card, SNDRV_DEV_LOWLEVEL, cm, &ops)) < 0) {
2991 snd_cmipci_free(cm);
2992 return err;
2993 }
2994
Clemens Ladischc78c9502007-09-03 09:55:49 +02002995 if (cm->chip_version >= 39) {
Clemens Ladischc9116ae2007-08-24 09:18:04 +02002996 val = snd_cmipci_read_b(cm, CM_REG_MPU_PCI + 1);
2997 if (val != 0x00 && val != 0xff) {
2998 iomidi = cm->iobase + CM_REG_MPU_PCI;
2999 integrated_midi = 1;
3000 }
3001 }
3002 if (!integrated_midi) {
Clemens Ladischc78c9502007-09-03 09:55:49 +02003003 val = 0;
Clemens Ladisch5747e542005-09-14 08:33:46 +02003004 iomidi = mpu_port[dev];
3005 switch (iomidi) {
3006 case 0x320: val = CM_VMPU_320; break;
3007 case 0x310: val = CM_VMPU_310; break;
3008 case 0x300: val = CM_VMPU_300; break;
3009 case 0x330: val = CM_VMPU_330; break;
3010 default:
3011 iomidi = 0; break;
3012 }
3013 if (iomidi > 0) {
3014 snd_cmipci_write(cm, CM_REG_LEGACY_CTRL, val);
3015 /* enable UART */
3016 snd_cmipci_set_bit(cm, CM_REG_FUNCTRL1, CM_UART_EN);
Clemens Ladisch88039812007-09-03 09:56:23 +02003017 if (inb(iomidi + 1) == 0xff) {
3018 snd_printk(KERN_ERR "cannot enable MPU-401 port"
3019 " at %#lx\n", iomidi);
3020 snd_cmipci_clear_bit(cm, CM_REG_FUNCTRL1,
3021 CM_UART_EN);
3022 iomidi = 0;
3023 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003024 }
3025 }
Clemens Ladisch5747e542005-09-14 08:33:46 +02003026
Clemens Ladisch45c41b42007-08-22 09:45:03 +02003027 if (cm->chip_version < 68) {
3028 err = snd_cmipci_create_fm(cm, fm_port[dev]);
3029 if (err < 0)
3030 return err;
3031 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003032
3033 /* reset mixer */
3034 snd_cmipci_mixer_write(cm, 0, 0);
3035
3036 snd_cmipci_proc_init(cm);
3037
3038 /* create pcm devices */
3039 pcm_index = pcm_spdif_index = 0;
3040 if ((err = snd_cmipci_pcm_new(cm, pcm_index)) < 0)
3041 return err;
3042 pcm_index++;
Clemens Ladischb080ebb2007-08-27 09:21:02 +02003043 if ((err = snd_cmipci_pcm2_new(cm, pcm_index)) < 0)
3044 return err;
3045 pcm_index++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003046 if (cm->can_ac3_hw || cm->can_ac3_sw) {
3047 pcm_spdif_index = pcm_index;
3048 if ((err = snd_cmipci_pcm_spdif_new(cm, pcm_index)) < 0)
3049 return err;
3050 }
3051
3052 /* create mixer interface & switches */
3053 if ((err = snd_cmipci_mixer_new(cm, pcm_spdif_index)) < 0)
3054 return err;
3055
3056 if (iomidi > 0) {
3057 if ((err = snd_mpu401_uart_new(card, 0, MPU401_HW_CMIPCI,
Takashi Iwai302e4c22006-05-23 13:24:30 +02003058 iomidi,
3059 (integrated_midi ?
3060 MPU401_INFO_INTEGRATED : 0),
Linus Torvalds1da177e2005-04-16 15:20:36 -07003061 cm->irq, 0, &cm->rmidi)) < 0) {
3062 printk(KERN_ERR "cmipci: no UART401 device at 0x%lx\n", iomidi);
3063 }
3064 }
3065
3066#ifdef USE_VAR48KRATE
3067 for (val = 0; val < ARRAY_SIZE(rates); val++)
3068 snd_cmipci_set_pll(cm, rates[val], val);
3069
3070 /*
3071 * (Re-)Enable external switch spdo_48k
3072 */
3073 snd_cmipci_set_bit(cm, CM_REG_MISC_CTRL, CM_SPDIF48K|CM_SPDF_AC97);
3074#endif /* USE_VAR48KRATE */
3075
3076 if (snd_cmipci_create_gameport(cm, dev) < 0)
3077 snd_cmipci_clear_bit(cm, CM_REG_FUNCTRL1, CM_JYSTK_EN);
3078
3079 snd_card_set_dev(card, &pci->dev);
3080
3081 *rcmipci = cm;
3082 return 0;
3083}
3084
3085/*
3086 */
3087
3088MODULE_DEVICE_TABLE(pci, snd_cmipci_ids);
3089
3090static int __devinit snd_cmipci_probe(struct pci_dev *pci,
3091 const struct pci_device_id *pci_id)
3092{
3093 static int dev;
Takashi Iwai2cbdb682005-11-17 15:03:13 +01003094 struct snd_card *card;
3095 struct cmipci *cm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003096 int err;
3097
3098 if (dev >= SNDRV_CARDS)
3099 return -ENODEV;
3100 if (! enable[dev]) {
3101 dev++;
3102 return -ENOENT;
3103 }
3104
3105 card = snd_card_new(index[dev], id[dev], THIS_MODULE, 0);
3106 if (card == NULL)
3107 return -ENOMEM;
3108
3109 switch (pci->device) {
3110 case PCI_DEVICE_ID_CMEDIA_CM8738:
3111 case PCI_DEVICE_ID_CMEDIA_CM8738B:
3112 strcpy(card->driver, "CMI8738");
3113 break;
3114 case PCI_DEVICE_ID_CMEDIA_CM8338A:
3115 case PCI_DEVICE_ID_CMEDIA_CM8338B:
3116 strcpy(card->driver, "CMI8338");
3117 break;
3118 default:
3119 strcpy(card->driver, "CMIPCI");
3120 break;
3121 }
3122
3123 if ((err = snd_cmipci_create(card, pci, dev, &cm)) < 0) {
3124 snd_card_free(card);
3125 return err;
3126 }
Takashi Iwaicb60e5f2005-11-17 16:14:49 +01003127 card->private_data = cm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003128
Linus Torvalds1da177e2005-04-16 15:20:36 -07003129 if ((err = snd_card_register(card)) < 0) {
3130 snd_card_free(card);
3131 return err;
3132 }
3133 pci_set_drvdata(pci, card);
3134 dev++;
3135 return 0;
3136
3137}
3138
3139static void __devexit snd_cmipci_remove(struct pci_dev *pci)
3140{
3141 snd_card_free(pci_get_drvdata(pci));
3142 pci_set_drvdata(pci, NULL);
3143}
3144
3145
Takashi Iwaicb60e5f2005-11-17 16:14:49 +01003146#ifdef CONFIG_PM
3147/*
3148 * power management
3149 */
3150static unsigned char saved_regs[] = {
3151 CM_REG_FUNCTRL1, CM_REG_CHFORMAT, CM_REG_LEGACY_CTRL, CM_REG_MISC_CTRL,
3152 CM_REG_MIXER0, CM_REG_MIXER1, CM_REG_MIXER2, CM_REG_MIXER3, CM_REG_PLL,
3153 CM_REG_CH0_FRAME1, CM_REG_CH0_FRAME2,
3154 CM_REG_CH1_FRAME1, CM_REG_CH1_FRAME2, CM_REG_EXT_MISC,
3155 CM_REG_INT_STATUS, CM_REG_INT_HLDCLR, CM_REG_FUNCTRL0,
3156};
3157
3158static unsigned char saved_mixers[] = {
3159 SB_DSP4_MASTER_DEV, SB_DSP4_MASTER_DEV + 1,
3160 SB_DSP4_PCM_DEV, SB_DSP4_PCM_DEV + 1,
3161 SB_DSP4_SYNTH_DEV, SB_DSP4_SYNTH_DEV + 1,
3162 SB_DSP4_CD_DEV, SB_DSP4_CD_DEV + 1,
3163 SB_DSP4_LINE_DEV, SB_DSP4_LINE_DEV + 1,
3164 SB_DSP4_MIC_DEV, SB_DSP4_SPEAKER_DEV,
3165 CM_REG_EXTENT_IND, SB_DSP4_OUTPUT_SW,
3166 SB_DSP4_INPUT_LEFT, SB_DSP4_INPUT_RIGHT,
3167};
3168
3169static int snd_cmipci_suspend(struct pci_dev *pci, pm_message_t state)
3170{
3171 struct snd_card *card = pci_get_drvdata(pci);
3172 struct cmipci *cm = card->private_data;
3173 int i;
3174
3175 snd_power_change_state(card, SNDRV_CTL_POWER_D3hot);
3176
3177 snd_pcm_suspend_all(cm->pcm);
3178 snd_pcm_suspend_all(cm->pcm2);
3179 snd_pcm_suspend_all(cm->pcm_spdif);
3180
3181 /* save registers */
3182 for (i = 0; i < ARRAY_SIZE(saved_regs); i++)
3183 cm->saved_regs[i] = snd_cmipci_read(cm, saved_regs[i]);
3184 for (i = 0; i < ARRAY_SIZE(saved_mixers); i++)
3185 cm->saved_mixers[i] = snd_cmipci_mixer_read(cm, saved_mixers[i]);
3186
3187 /* disable ints */
3188 snd_cmipci_write(cm, CM_REG_INT_HLDCLR, 0);
3189
Takashi Iwaicb60e5f2005-11-17 16:14:49 +01003190 pci_disable_device(pci);
3191 pci_save_state(pci);
Takashi Iwai30b35392006-10-11 18:52:53 +02003192 pci_set_power_state(pci, pci_choose_state(pci, state));
Takashi Iwaicb60e5f2005-11-17 16:14:49 +01003193 return 0;
3194}
3195
3196static int snd_cmipci_resume(struct pci_dev *pci)
3197{
3198 struct snd_card *card = pci_get_drvdata(pci);
3199 struct cmipci *cm = card->private_data;
3200 int i;
3201
Takashi Iwaicb60e5f2005-11-17 16:14:49 +01003202 pci_set_power_state(pci, PCI_D0);
Takashi Iwai30b35392006-10-11 18:52:53 +02003203 pci_restore_state(pci);
3204 if (pci_enable_device(pci) < 0) {
3205 printk(KERN_ERR "cmipci: pci_enable_device failed, "
3206 "disabling device\n");
3207 snd_card_disconnect(card);
3208 return -EIO;
3209 }
Takashi Iwaicb60e5f2005-11-17 16:14:49 +01003210 pci_set_master(pci);
3211
3212 /* reset / initialize to a sane state */
3213 snd_cmipci_write(cm, CM_REG_INT_HLDCLR, 0);
3214 snd_cmipci_ch_reset(cm, CM_CH_PLAY);
3215 snd_cmipci_ch_reset(cm, CM_CH_CAPT);
3216 snd_cmipci_mixer_write(cm, 0, 0);
3217
3218 /* restore registers */
3219 for (i = 0; i < ARRAY_SIZE(saved_regs); i++)
3220 snd_cmipci_write(cm, saved_regs[i], cm->saved_regs[i]);
3221 for (i = 0; i < ARRAY_SIZE(saved_mixers); i++)
3222 snd_cmipci_mixer_write(cm, saved_mixers[i], cm->saved_mixers[i]);
3223
3224 snd_power_change_state(card, SNDRV_CTL_POWER_D0);
3225 return 0;
3226}
3227#endif /* CONFIG_PM */
3228
Linus Torvalds1da177e2005-04-16 15:20:36 -07003229static struct pci_driver driver = {
3230 .name = "C-Media PCI",
3231 .id_table = snd_cmipci_ids,
3232 .probe = snd_cmipci_probe,
3233 .remove = __devexit_p(snd_cmipci_remove),
Takashi Iwaicb60e5f2005-11-17 16:14:49 +01003234#ifdef CONFIG_PM
3235 .suspend = snd_cmipci_suspend,
3236 .resume = snd_cmipci_resume,
3237#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003238};
3239
3240static int __init alsa_card_cmipci_init(void)
3241{
Takashi Iwai01d25d42005-04-11 16:58:24 +02003242 return pci_register_driver(&driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003243}
3244
3245static void __exit alsa_card_cmipci_exit(void)
3246{
3247 pci_unregister_driver(&driver);
3248}
3249
3250module_init(alsa_card_cmipci_init)
3251module_exit(alsa_card_cmipci_exit)