blob: 51ba704d4bc90f3fc9641d2a7222e41254a99ca7 [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
Clemens Ladischa839a332007-09-17 09:35:46 +020098#define CM_DSFC_MASK 0x0000E000 /* channel 1 (DAC?) sampling frequency */
99#define CM_DSFC_SHIFT 13
100#define CM_ASFC_MASK 0x00001C00 /* channel 0 (ADC?) sampling frequency */
101#define CM_ASFC_SHIFT 10
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102#define CM_SPDF_1 0x00000200 /* SPDIF IN/OUT at channel B */
103#define CM_SPDF_0 0x00000100 /* SPDIF OUT only channel A */
Clemens Ladischa839a332007-09-17 09:35:46 +0200104#define CM_SPDFLOOP 0x00000080 /* ext. SPDIIF/IN -> OUT loopback */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105#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) */
Clemens Ladischa839a332007-09-17 09:35:46 +0200109#define CM_UART_EN 0x00000004 /* legacy UART */
110#define CM_JYSTK_EN 0x00000002 /* legacy joystick */
111#define CM_ZVPORT 0x00000001 /* ZVPORT */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112
113#define CM_REG_CHFORMAT 0x08
114
115#define CM_CHB3D5C 0x80000000 /* 5,6 channels */
Clemens Ladischa839a332007-09-17 09:35:46 +0200116#define CM_FMOFFSET2 0x40000000 /* initial FM PCM offset 2 when Fmute=1 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117#define CM_CHB3D 0x20000000 /* 4 channels */
118
119#define CM_CHIP_MASK1 0x1f000000
120#define CM_CHIP_037 0x01000000
Clemens Ladischa839a332007-09-17 09:35:46 +0200121#define CM_SETLAT48 0x00800000 /* set latency timer 48h */
122#define CM_EDGEIRQ 0x00400000 /* emulated edge trigger legacy IRQ */
123#define CM_SPD24SEL39 0x00200000 /* 24-bit spdif: model 039 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124#define CM_AC3EN1 0x00100000 /* enable AC3: model 037 */
Clemens Ladischa839a332007-09-17 09:35:46 +0200125#define CM_SPDIF_SELECT1 0x00080000 /* for model <= 037 ? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126#define CM_SPD24SEL 0x00020000 /* 24bit spdif: model 037 */
127/* #define CM_SPDIF_INVERSE 0x00010000 */ /* ??? */
128
129#define CM_ADCBITLEN_MASK 0x0000C000
130#define CM_ADCBITLEN_16 0x00000000
131#define CM_ADCBITLEN_15 0x00004000
132#define CM_ADCBITLEN_14 0x00008000
133#define CM_ADCBITLEN_13 0x0000C000
134
Clemens Ladischa839a332007-09-17 09:35:46 +0200135#define CM_ADCDACLEN_MASK 0x00003000 /* model 037 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136#define CM_ADCDACLEN_060 0x00000000
137#define CM_ADCDACLEN_066 0x00001000
138#define CM_ADCDACLEN_130 0x00002000
139#define CM_ADCDACLEN_280 0x00003000
140
Clemens Ladischa839a332007-09-17 09:35:46 +0200141#define CM_ADCDLEN_MASK 0x00003000 /* model 039 */
142#define CM_ADCDLEN_ORIGINAL 0x00000000
143#define CM_ADCDLEN_EXTRA 0x00001000
144#define CM_ADCDLEN_24K 0x00002000
145#define CM_ADCDLEN_WEIGHT 0x00003000
146
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147#define CM_CH1_SRATE_176K 0x00000800
Clemens Ladisch8992e182007-09-03 09:54:55 +0200148#define CM_CH1_SRATE_96K 0x00000800 /* model 055? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149#define CM_CH1_SRATE_88K 0x00000400
150#define CM_CH0_SRATE_176K 0x00000200
Clemens Ladisch8992e182007-09-03 09:54:55 +0200151#define CM_CH0_SRATE_96K 0x00000200 /* model 055? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152#define CM_CH0_SRATE_88K 0x00000100
153
154#define CM_SPDIF_INVERSE2 0x00000080 /* model 055? */
Clemens Ladischa839a332007-09-17 09:35:46 +0200155#define CM_DBLSPDS 0x00000040 /* double SPDIF sample rate 88.2/96 */
156#define CM_POLVALID 0x00000020 /* inverse SPDIF/IN valid bit */
157#define CM_SPDLOCKED 0x00000010
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
Clemens Ladischa839a332007-09-17 09:35:46 +0200159#define CM_CH1FMT_MASK 0x0000000C /* bit 3: 16 bits, bit 2: stereo */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160#define CM_CH1FMT_SHIFT 2
Clemens Ladischa839a332007-09-17 09:35:46 +0200161#define CM_CH0FMT_MASK 0x00000003 /* bit 1: 16 bits, bit 0: stereo */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162#define CM_CH0FMT_SHIFT 0
163
164#define CM_REG_INT_HLDCLR 0x0C
165#define CM_CHIP_MASK2 0xff000000
Clemens Ladischa839a332007-09-17 09:35:46 +0200166#define CM_CHIP_8768 0x20000000
167#define CM_CHIP_055 0x08000000
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168#define CM_CHIP_039 0x04000000
169#define CM_CHIP_039_6CH 0x01000000
Clemens Ladischa839a332007-09-17 09:35:46 +0200170#define CM_UNKNOWN_INT_EN 0x00080000 /* ? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171#define CM_TDMA_INT_EN 0x00040000
172#define CM_CH1_INT_EN 0x00020000
173#define CM_CH0_INT_EN 0x00010000
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
175#define CM_REG_INT_STATUS 0x10
176#define CM_INTR 0x80000000
177#define CM_VCO 0x08000000 /* Voice Control? CMI8738 */
178#define CM_MCBINT 0x04000000 /* Master Control Block abort cond.? */
179#define CM_UARTINT 0x00010000
180#define CM_LTDMAINT 0x00008000
181#define CM_HTDMAINT 0x00004000
182#define CM_XDO46 0x00000080 /* Modell 033? Direct programming EEPROM (read data register) */
183#define CM_LHBTOG 0x00000040 /* High/Low status from DMA ctrl register */
184#define CM_LEG_HDMA 0x00000020 /* Legacy is in High DMA channel */
185#define CM_LEG_STEREO 0x00000010 /* Legacy is in Stereo mode */
186#define CM_CH1BUSY 0x00000008
187#define CM_CH0BUSY 0x00000004
188#define CM_CHINT1 0x00000002
189#define CM_CHINT0 0x00000001
190
191#define CM_REG_LEGACY_CTRL 0x14
Clemens Ladischa839a332007-09-17 09:35:46 +0200192#define CM_NXCHG 0x80000000 /* don't map base reg dword->sample */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193#define CM_VMPU_MASK 0x60000000 /* MPU401 i/o port address */
194#define CM_VMPU_330 0x00000000
195#define CM_VMPU_320 0x20000000
196#define CM_VMPU_310 0x40000000
197#define CM_VMPU_300 0x60000000
Clemens Ladischa839a332007-09-17 09:35:46 +0200198#define CM_ENWR8237 0x10000000 /* enable bus master to write 8237 base reg */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199#define CM_VSBSEL_MASK 0x0C000000 /* SB16 base address */
200#define CM_VSBSEL_220 0x00000000
201#define CM_VSBSEL_240 0x04000000
202#define CM_VSBSEL_260 0x08000000
203#define CM_VSBSEL_280 0x0C000000
204#define CM_FMSEL_MASK 0x03000000 /* FM OPL3 base address */
205#define CM_FMSEL_388 0x00000000
206#define CM_FMSEL_3C8 0x01000000
207#define CM_FMSEL_3E0 0x02000000
208#define CM_FMSEL_3E8 0x03000000
Clemens Ladischa839a332007-09-17 09:35:46 +0200209#define CM_ENSPDOUT 0x00800000 /* enable XSPDIF/OUT to I/O interface */
210#define CM_SPDCOPYRHT 0x00400000 /* spdif in/out copyright bit */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211#define CM_DAC2SPDO 0x00200000 /* enable wave+fm_midi -> SPDIF/OUT */
Clemens Ladischa839a332007-09-17 09:35:46 +0200212#define CM_INVIDWEN 0x00100000 /* internal vendor ID write enable, model 039? */
213#define CM_SETRETRY 0x00100000 /* 0: legacy i/o wait (default), 1: legacy i/o bus retry */
214#define CM_C_EEACCESS 0x00080000 /* direct programming eeprom regs */
215#define CM_C_EECS 0x00040000
216#define CM_C_EEDI46 0x00020000
217#define CM_C_EECK46 0x00010000
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218#define CM_CHB3D6C 0x00008000 /* 5.1 channels support */
Clemens Ladischa839a332007-09-17 09:35:46 +0200219#define CM_CENTR2LIN 0x00004000 /* line-in as center out */
220#define CM_BASE2LIN 0x00002000 /* line-in as bass out */
221#define CM_EXBASEN 0x00001000 /* external bass input enable */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222
223#define CM_REG_MISC_CTRL 0x18
Clemens Ladischa839a332007-09-17 09:35:46 +0200224#define CM_PWD 0x80000000 /* power down */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225#define CM_RESET 0x40000000
Clemens Ladischa839a332007-09-17 09:35:46 +0200226#define CM_SFIL_MASK 0x30000000 /* filter control at front end DAC, model 037? */
227#define CM_VMGAIN 0x10000000 /* analog master amp +6dB, model 039? */
228#define CM_TXVX 0x08000000 /* model 037? */
229#define CM_N4SPK3D 0x04000000 /* copy front to rear */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230#define CM_SPDO5V 0x02000000 /* 5V spdif output (1 = 0.5v (coax)) */
231#define CM_SPDIF48K 0x01000000 /* write */
232#define CM_SPATUS48K 0x01000000 /* read */
Clemens Ladischa839a332007-09-17 09:35:46 +0200233#define CM_ENDBDAC 0x00800000 /* enable double dac */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234#define CM_XCHGDAC 0x00400000 /* 0: front=ch0, 1: front=ch1 */
235#define CM_SPD32SEL 0x00200000 /* 0: 16bit SPDIF, 1: 32bit */
Clemens Ladischa839a332007-09-17 09:35:46 +0200236#define CM_SPDFLOOPI 0x00100000 /* int. SPDIF-OUT -> int. IN */
237#define CM_FM_EN 0x00080000 /* enable legacy FM */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238#define CM_AC3EN2 0x00040000 /* enable AC3: model 039 */
Clemens Ladischa839a332007-09-17 09:35:46 +0200239#define CM_ENWRASID 0x00010000 /* choose writable internal SUBID (audio) */
240#define CM_VIDWPDSB 0x00010000 /* model 037? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241#define CM_SPDF_AC97 0x00008000 /* 0: SPDIF/OUT 44.1K, 1: 48K */
Clemens Ladischa839a332007-09-17 09:35:46 +0200242#define CM_MASK_EN 0x00004000 /* activate channel mask on legacy DMA */
243#define CM_ENWRMSID 0x00002000 /* choose writable internal SUBID (modem) */
244#define CM_VIDWPPRT 0x00002000 /* model 037? */
245#define CM_SFILENB 0x00001000 /* filter stepping at front end DAC, model 037? */
246#define CM_MMODE_MASK 0x00000E00 /* model DAA interface mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247#define CM_SPDIF_SELECT2 0x00000100 /* for model > 039 ? */
248#define CM_ENCENTER 0x00000080
Clemens Ladischa839a332007-09-17 09:35:46 +0200249#define CM_FLINKON 0x00000080 /* force modem link detection on, model 037 */
250#define CM_MUTECH1 0x00000040 /* mute PCI ch1 to DAC */
251#define CM_FLINKOFF 0x00000040 /* force modem link detection off, model 037 */
252#define CM_UNKNOWN_18_5 0x00000020 /* ? */
253#define CM_MIDSMP 0x00000010 /* 1/2 interpolation at front end DAC */
254#define CM_UPDDMA_MASK 0x0000000C /* TDMA position update notification */
255#define CM_UPDDMA_2048 0x00000000
256#define CM_UPDDMA_1024 0x00000004
257#define CM_UPDDMA_512 0x00000008
258#define CM_UPDDMA_256 0x0000000C
259#define CM_TWAIT_MASK 0x00000003 /* model 037 */
260#define CM_TWAIT1 0x00000002 /* FM i/o cycle, 0: 48, 1: 64 PCICLKs */
261#define CM_TWAIT0 0x00000001 /* i/o cycle, 0: 4, 1: 6 PCICLKs */
262
263#define CM_REG_TDMA_POSITION 0x1C
264#define CM_TDMA_CNT_MASK 0xFFFF0000 /* current byte/word count */
265#define CM_TDMA_ADR_MASK 0x0000FFFF /* current address */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266
267 /* byte */
268#define CM_REG_MIXER0 0x20
Clemens Ladischa839a332007-09-17 09:35:46 +0200269#define CM_REG_SBVR 0x20 /* write: sb16 version */
270#define CM_REG_DEV 0x20 /* read: hardware device version */
271
272#define CM_REG_MIXER21 0x21
273#define CM_UNKNOWN_21_MASK 0x78 /* ? */
274#define CM_X_ADPCM 0x04 /* SB16 ADPCM enable */
275#define CM_PROINV 0x02 /* SBPro left/right channel switching */
276#define CM_X_SB16 0x01 /* SB16 compatible */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277
278#define CM_REG_SB16_DATA 0x22
279#define CM_REG_SB16_ADDR 0x23
280
281#define CM_REFFREQ_XIN (315*1000*1000)/22 /* 14.31818 Mhz reference clock frequency pin XIN */
282#define CM_ADCMULT_XIN 512 /* Guessed (487 best for 44.1kHz, not for 88/176kHz) */
283#define CM_TOLERANCE_RATE 0.001 /* Tolerance sample rate pitch (1000ppm) */
284#define CM_MAXIMUM_RATE 80000000 /* Note more than 80MHz */
285
286#define CM_REG_MIXER1 0x24
287#define CM_FMMUTE 0x80 /* mute FM */
288#define CM_FMMUTE_SHIFT 7
289#define CM_WSMUTE 0x40 /* mute PCM */
290#define CM_WSMUTE_SHIFT 6
Clemens Ladischa839a332007-09-17 09:35:46 +0200291#define CM_REAR2LIN 0x20 /* lin-in -> rear line out */
292#define CM_REAR2LIN_SHIFT 5
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293#define CM_REAR2FRONT 0x10 /* exchange rear/front */
294#define CM_REAR2FRONT_SHIFT 4
295#define CM_WAVEINL 0x08 /* digital wave rec. left chan */
296#define CM_WAVEINL_SHIFT 3
297#define CM_WAVEINR 0x04 /* digical wave rec. right */
298#define CM_WAVEINR_SHIFT 2
299#define CM_X3DEN 0x02 /* 3D surround enable */
300#define CM_X3DEN_SHIFT 1
301#define CM_CDPLAY 0x01 /* enable SPDIF/IN PCM -> DAC */
302#define CM_CDPLAY_SHIFT 0
303
304#define CM_REG_MIXER2 0x25
305#define CM_RAUXREN 0x80 /* AUX right capture */
306#define CM_RAUXREN_SHIFT 7
307#define CM_RAUXLEN 0x40 /* AUX left capture */
308#define CM_RAUXLEN_SHIFT 6
309#define CM_VAUXRM 0x20 /* AUX right mute */
310#define CM_VAUXRM_SHIFT 5
311#define CM_VAUXLM 0x10 /* AUX left mute */
312#define CM_VAUXLM_SHIFT 4
313#define CM_VADMIC_MASK 0x0e /* mic gain level (0-3) << 1 */
314#define CM_VADMIC_SHIFT 1
315#define CM_MICGAINZ 0x01 /* mic boost */
316#define CM_MICGAINZ_SHIFT 0
317
Takashi Iwaicb60e5f2005-11-17 16:14:49 +0100318#define CM_REG_MIXER3 0x24
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319#define CM_REG_AUX_VOL 0x26
320#define CM_VAUXL_MASK 0xf0
321#define CM_VAUXR_MASK 0x0f
322
323#define CM_REG_MISC 0x27
Clemens Ladischa839a332007-09-17 09:35:46 +0200324#define CM_UNKNOWN_27_MASK 0xd8 /* ? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325#define CM_XGPO1 0x20
326// #define CM_XGPBIO 0x04
327#define CM_MIC_CENTER_LFE 0x04 /* mic as center/lfe out? (model 039 or later?) */
328#define CM_SPDIF_INVERSE 0x04 /* spdif input phase inverse (model 037) */
329#define CM_SPDVALID 0x02 /* spdif input valid check */
Clemens Ladischa839a332007-09-17 09:35:46 +0200330#define CM_DMAUTO 0x01 /* SB16 DMA auto detect */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331
332#define CM_REG_AC97 0x28 /* hmmm.. do we have ac97 link? */
333/*
334 * For CMI-8338 (0x28 - 0x2b) .. is this valid for CMI-8738
335 * or identical with AC97 codec?
336 */
337#define CM_REG_EXTERN_CODEC CM_REG_AC97
338
339/*
340 * MPU401 pci port index address 0x40 - 0x4f (CMI-8738 spec ver. 0.6)
341 */
342#define CM_REG_MPU_PCI 0x40
343
344/*
345 * FM pci port index address 0x50 - 0x5f (CMI-8738 spec ver. 0.6)
346 */
347#define CM_REG_FM_PCI 0x50
348
349/*
Takashi Iwai2eff7ec2005-06-30 13:45:20 +0200350 * access from SB-mixer port
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 */
352#define CM_REG_EXTENT_IND 0xf0
353#define CM_VPHONE_MASK 0xe0 /* Phone volume control (0-3) << 5 */
354#define CM_VPHONE_SHIFT 5
355#define CM_VPHOM 0x10 /* Phone mute control */
356#define CM_VSPKM 0x08 /* Speaker mute control, default high */
357#define CM_RLOOPREN 0x04 /* Rec. R-channel enable */
358#define CM_RLOOPLEN 0x02 /* Rec. L-channel enable */
Takashi Iwai2eff7ec2005-06-30 13:45:20 +0200359#define CM_VADMIC3 0x01 /* Mic record boost */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360
361/*
362 * CMI-8338 spec ver 0.5 (this is not valid for CMI-8738):
363 * the 8 registers 0xf8 - 0xff are used for programming m/n counter by the PLL
364 * unit (readonly?).
365 */
366#define CM_REG_PLL 0xf8
367
368/*
369 * extended registers
370 */
Clemens Ladischa839a332007-09-17 09:35:46 +0200371#define CM_REG_CH0_FRAME1 0x80 /* write: base address */
372#define CM_REG_CH0_FRAME2 0x84 /* read: current address */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373#define CM_REG_CH1_FRAME1 0x88 /* 0-15: count of samples at bus master; buffer size */
374#define CM_REG_CH1_FRAME2 0x8C /* 16-31: count of samples at codec; fragment size */
Clemens Ladischa839a332007-09-17 09:35:46 +0200375
Takashi Iwaicb60e5f2005-11-17 16:14:49 +0100376#define CM_REG_EXT_MISC 0x90
Clemens Ladischa839a332007-09-17 09:35:46 +0200377#define CM_ADC48K44K 0x10000000 /* ADC parameters group, 0: 44k, 1: 48k */
378#define CM_CHB3D8C 0x00200000 /* 7.1 channels support */
379#define CM_SPD32FMT 0x00100000 /* SPDIF/IN 32k sample rate */
380#define CM_ADC2SPDIF 0x00080000 /* ADC output to SPDIF/OUT */
381#define CM_SHAREADC 0x00040000 /* DAC in ADC as Center/LFE */
382#define CM_REALTCMP 0x00020000 /* monitor the CMPL/CMPR of ADC */
383#define CM_INVLRCK 0x00010000 /* invert ZVPORT's LRCK */
384#define CM_UNKNOWN_90_MASK 0x0000FFFF /* ? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385
386/*
387 * size of i/o region
388 */
389#define CM_EXTENT_CODEC 0x100
390#define CM_EXTENT_MIDI 0x2
391#define CM_EXTENT_SYNTH 0x4
392
393
394/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 * channels for playback / capture
396 */
397#define CM_CH_PLAY 0
398#define CM_CH_CAPT 1
399
400/*
401 * flags to check device open/close
402 */
403#define CM_OPEN_NONE 0
404#define CM_OPEN_CH_MASK 0x01
405#define CM_OPEN_DAC 0x10
406#define CM_OPEN_ADC 0x20
407#define CM_OPEN_SPDIF 0x40
408#define CM_OPEN_MCHAN 0x80
409#define CM_OPEN_PLAYBACK (CM_CH_PLAY | CM_OPEN_DAC)
410#define CM_OPEN_PLAYBACK2 (CM_CH_CAPT | CM_OPEN_DAC)
411#define CM_OPEN_PLAYBACK_MULTI (CM_CH_PLAY | CM_OPEN_DAC | CM_OPEN_MCHAN)
412#define CM_OPEN_CAPTURE (CM_CH_CAPT | CM_OPEN_ADC)
413#define CM_OPEN_SPDIF_PLAYBACK (CM_CH_PLAY | CM_OPEN_DAC | CM_OPEN_SPDIF)
414#define CM_OPEN_SPDIF_CAPTURE (CM_CH_CAPT | CM_OPEN_ADC | CM_OPEN_SPDIF)
415
416
417#if CM_CH_PLAY == 1
418#define CM_PLAYBACK_SRATE_176K CM_CH1_SRATE_176K
419#define CM_PLAYBACK_SPDF CM_SPDF_1
420#define CM_CAPTURE_SPDF CM_SPDF_0
421#else
422#define CM_PLAYBACK_SRATE_176K CM_CH0_SRATE_176K
423#define CM_PLAYBACK_SPDF CM_SPDF_0
424#define CM_CAPTURE_SPDF CM_SPDF_1
425#endif
426
427
428/*
429 * driver data
430 */
431
Takashi Iwai2cbdb682005-11-17 15:03:13 +0100432struct cmipci_pcm {
433 struct snd_pcm_substream *substream;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 int running; /* dac/adc running? */
435 unsigned int dma_size; /* in frames */
436 unsigned int period_size; /* in frames */
437 unsigned int offset; /* physical address of the buffer */
438 unsigned int fmt; /* format bits */
439 int ch; /* channel (0/1) */
440 unsigned int is_dac; /* is dac? */
441 int bytes_per_frame;
442 int shift;
443};
444
445/* mixer elements toggled/resumed during ac3 playback */
446struct cmipci_mixer_auto_switches {
447 const char *name; /* switch to toggle */
448 int toggle_on; /* value to change when ac3 mode */
449};
450static const struct cmipci_mixer_auto_switches cm_saved_mixer[] = {
451 {"PCM Playback Switch", 0},
452 {"IEC958 Output Switch", 1},
453 {"IEC958 Mix Analog", 0},
454 // {"IEC958 Out To DAC", 1}, // no longer used
455 {"IEC958 Loop", 0},
456};
457#define CM_SAVED_MIXERS ARRAY_SIZE(cm_saved_mixer)
458
Takashi Iwai2cbdb682005-11-17 15:03:13 +0100459struct cmipci {
460 struct snd_card *card;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461
462 struct pci_dev *pci;
463 unsigned int device; /* device ID */
464 int irq;
465
466 unsigned long iobase;
467 unsigned int ctrl; /* FUNCTRL0 current value */
468
Takashi Iwai2cbdb682005-11-17 15:03:13 +0100469 struct snd_pcm *pcm; /* DAC/ADC PCM */
470 struct snd_pcm *pcm2; /* 2nd DAC */
471 struct snd_pcm *pcm_spdif; /* SPDIF */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472
473 int chip_version;
474 int max_channels;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 unsigned int can_ac3_sw: 1;
476 unsigned int can_ac3_hw: 1;
477 unsigned int can_multi_ch: 1;
478 unsigned int do_soft_ac3: 1;
479
480 unsigned int spdif_playback_avail: 1; /* spdif ready? */
481 unsigned int spdif_playback_enabled: 1; /* spdif switch enabled? */
482 int spdif_counter; /* for software AC3 */
483
484 unsigned int dig_status;
485 unsigned int dig_pcm_status;
486
Takashi Iwai2cbdb682005-11-17 15:03:13 +0100487 struct snd_pcm_hardware *hw_info[3]; /* for playbacks */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488
489 int opened[2]; /* open mode */
Ingo Molnar62932df2006-01-16 16:34:20 +0100490 struct mutex open_mutex;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491
492 unsigned int mixer_insensitive: 1;
Takashi Iwai2cbdb682005-11-17 15:03:13 +0100493 struct snd_kcontrol *mixer_res_ctl[CM_SAVED_MIXERS];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 int mixer_res_status[CM_SAVED_MIXERS];
495
Takashi Iwai2cbdb682005-11-17 15:03:13 +0100496 struct cmipci_pcm channel[2]; /* ch0 - DAC, ch1 - ADC or 2nd DAC */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497
498 /* external MIDI */
Takashi Iwai2cbdb682005-11-17 15:03:13 +0100499 struct snd_rawmidi *rmidi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500
501#ifdef SUPPORT_JOYSTICK
502 struct gameport *gameport;
503#endif
504
505 spinlock_t reg_lock;
Takashi Iwaicb60e5f2005-11-17 16:14:49 +0100506
507#ifdef CONFIG_PM
508 unsigned int saved_regs[0x20];
509 unsigned char saved_mixers[0x20];
510#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511};
512
513
514/* read/write operations for dword register */
Takashi Iwai2cbdb682005-11-17 15:03:13 +0100515static inline void snd_cmipci_write(struct cmipci *cm, unsigned int cmd, unsigned int data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516{
517 outl(data, cm->iobase + cmd);
518}
Jesper Juhl77933d72005-07-27 11:46:09 -0700519
Takashi Iwai2cbdb682005-11-17 15:03:13 +0100520static inline unsigned int snd_cmipci_read(struct cmipci *cm, unsigned int cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521{
522 return inl(cm->iobase + cmd);
523}
524
525/* read/write operations for word register */
Takashi Iwai2cbdb682005-11-17 15:03:13 +0100526static inline void snd_cmipci_write_w(struct cmipci *cm, unsigned int cmd, unsigned short data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527{
528 outw(data, cm->iobase + cmd);
529}
Jesper Juhl77933d72005-07-27 11:46:09 -0700530
Takashi Iwai2cbdb682005-11-17 15:03:13 +0100531static inline unsigned short snd_cmipci_read_w(struct cmipci *cm, unsigned int cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532{
533 return inw(cm->iobase + cmd);
534}
535
536/* read/write operations for byte register */
Takashi Iwai2cbdb682005-11-17 15:03:13 +0100537static inline void snd_cmipci_write_b(struct cmipci *cm, unsigned int cmd, unsigned char data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538{
539 outb(data, cm->iobase + cmd);
540}
541
Takashi Iwai2cbdb682005-11-17 15:03:13 +0100542static inline unsigned char snd_cmipci_read_b(struct cmipci *cm, unsigned int cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543{
544 return inb(cm->iobase + cmd);
545}
546
547/* bit operations for dword register */
Takashi Iwai2cbdb682005-11-17 15:03:13 +0100548static int snd_cmipci_set_bit(struct cmipci *cm, unsigned int cmd, unsigned int flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549{
Takashi Iwai01d25d42005-04-11 16:58:24 +0200550 unsigned int val, oval;
551 val = oval = inl(cm->iobase + cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 val |= flag;
Takashi Iwai01d25d42005-04-11 16:58:24 +0200553 if (val == oval)
554 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 outl(val, cm->iobase + cmd);
Takashi Iwai01d25d42005-04-11 16:58:24 +0200556 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557}
558
Takashi Iwai2cbdb682005-11-17 15:03:13 +0100559static int snd_cmipci_clear_bit(struct cmipci *cm, unsigned int cmd, unsigned int flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560{
Takashi Iwai01d25d42005-04-11 16:58:24 +0200561 unsigned int val, oval;
562 val = oval = inl(cm->iobase + cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 val &= ~flag;
Takashi Iwai01d25d42005-04-11 16:58:24 +0200564 if (val == oval)
565 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 outl(val, cm->iobase + cmd);
Takashi Iwai01d25d42005-04-11 16:58:24 +0200567 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568}
569
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570/* bit operations for byte register */
Takashi Iwai2cbdb682005-11-17 15:03:13 +0100571static int snd_cmipci_set_bit_b(struct cmipci *cm, unsigned int cmd, unsigned char flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572{
Takashi Iwai01d25d42005-04-11 16:58:24 +0200573 unsigned char val, oval;
574 val = oval = inb(cm->iobase + cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 val |= flag;
Takashi Iwai01d25d42005-04-11 16:58:24 +0200576 if (val == oval)
577 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 outb(val, cm->iobase + cmd);
Takashi Iwai01d25d42005-04-11 16:58:24 +0200579 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580}
581
Takashi Iwai2cbdb682005-11-17 15:03:13 +0100582static int snd_cmipci_clear_bit_b(struct cmipci *cm, unsigned int cmd, unsigned char flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583{
Takashi Iwai01d25d42005-04-11 16:58:24 +0200584 unsigned char val, oval;
585 val = oval = inb(cm->iobase + cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 val &= ~flag;
Takashi Iwai01d25d42005-04-11 16:58:24 +0200587 if (val == oval)
588 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 outb(val, cm->iobase + cmd);
Takashi Iwai01d25d42005-04-11 16:58:24 +0200590 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592
593
594/*
595 * PCM interface
596 */
597
598/*
599 * calculate frequency
600 */
601
602static unsigned int rates[] = { 5512, 11025, 22050, 44100, 8000, 16000, 32000, 48000 };
603
604static unsigned int snd_cmipci_rate_freq(unsigned int rate)
605{
606 unsigned int i;
607 for (i = 0; i < ARRAY_SIZE(rates); i++) {
608 if (rates[i] == rate)
609 return i;
610 }
611 snd_BUG();
612 return 0;
613}
614
615#ifdef USE_VAR48KRATE
616/*
617 * Determine PLL values for frequency setup, maybe the CMI8338 (CMI8738???)
618 * does it this way .. maybe not. Never get any information from C-Media about
619 * that <werner@suse.de>.
620 */
621static int snd_cmipci_pll_rmn(unsigned int rate, unsigned int adcmult, int *r, int *m, int *n)
622{
623 unsigned int delta, tolerance;
624 int xm, xn, xr;
625
626 for (*r = 0; rate < CM_MAXIMUM_RATE/adcmult; *r += (1<<5))
627 rate <<= 1;
628 *n = -1;
629 if (*r > 0xff)
630 goto out;
631 tolerance = rate*CM_TOLERANCE_RATE;
632
633 for (xn = (1+2); xn < (0x1f+2); xn++) {
634 for (xm = (1+2); xm < (0xff+2); xm++) {
635 xr = ((CM_REFFREQ_XIN/adcmult) * xm) / xn;
636
637 if (xr < rate)
638 delta = rate - xr;
639 else
640 delta = xr - rate;
641
642 /*
643 * If we found one, remember this,
644 * and try to find a closer one
645 */
646 if (delta < tolerance) {
647 tolerance = delta;
648 *m = xm - 2;
649 *n = xn - 2;
650 }
651 }
652 }
653out:
654 return (*n > -1);
655}
656
657/*
658 * Program pll register bits, I assume that the 8 registers 0xf8 upto 0xff
659 * are mapped onto the 8 ADC/DAC sampling frequency which can be choosen
660 * at the register CM_REG_FUNCTRL1 (0x04).
661 * Problem: other ways are also possible (any information about that?)
662 */
Takashi Iwai2cbdb682005-11-17 15:03:13 +0100663static void snd_cmipci_set_pll(struct cmipci *cm, unsigned int rate, unsigned int slot)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664{
665 unsigned int reg = CM_REG_PLL + slot;
666 /*
667 * Guess that this programs at reg. 0x04 the pos 15:13/12:10
668 * for DSFC/ASFC (000 upto 111).
669 */
670
671 /* FIXME: Init (Do we've to set an other register first before programming?) */
672
673 /* FIXME: Is this correct? Or shouldn't the m/n/r values be used for that? */
674 snd_cmipci_write_b(cm, reg, rate>>8);
675 snd_cmipci_write_b(cm, reg, rate&0xff);
676
677 /* FIXME: Setup (Do we've to set an other register first to enable this?) */
678}
679#endif /* USE_VAR48KRATE */
680
Takashi Iwai2cbdb682005-11-17 15:03:13 +0100681static int snd_cmipci_hw_params(struct snd_pcm_substream *substream,
682 struct snd_pcm_hw_params *hw_params)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683{
684 return snd_pcm_lib_malloc_pages(substream, params_buffer_bytes(hw_params));
685}
686
Takashi Iwai2cbdb682005-11-17 15:03:13 +0100687static int snd_cmipci_playback2_hw_params(struct snd_pcm_substream *substream,
688 struct snd_pcm_hw_params *hw_params)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689{
Takashi Iwai2cbdb682005-11-17 15:03:13 +0100690 struct cmipci *cm = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 if (params_channels(hw_params) > 2) {
Ingo Molnar62932df2006-01-16 16:34:20 +0100692 mutex_lock(&cm->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 if (cm->opened[CM_CH_PLAY]) {
Ingo Molnar62932df2006-01-16 16:34:20 +0100694 mutex_unlock(&cm->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 return -EBUSY;
696 }
697 /* reserve the channel A */
698 cm->opened[CM_CH_PLAY] = CM_OPEN_PLAYBACK_MULTI;
Ingo Molnar62932df2006-01-16 16:34:20 +0100699 mutex_unlock(&cm->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 }
701 return snd_pcm_lib_malloc_pages(substream, params_buffer_bytes(hw_params));
702}
703
Takashi Iwai2cbdb682005-11-17 15:03:13 +0100704static void snd_cmipci_ch_reset(struct cmipci *cm, int ch)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705{
706 int reset = CM_RST_CH0 << (cm->channel[ch].ch);
707 snd_cmipci_write(cm, CM_REG_FUNCTRL0, cm->ctrl | reset);
708 snd_cmipci_write(cm, CM_REG_FUNCTRL0, cm->ctrl & ~reset);
709 udelay(10);
710}
711
Takashi Iwai2cbdb682005-11-17 15:03:13 +0100712static int snd_cmipci_hw_free(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713{
714 return snd_pcm_lib_free_pages(substream);
715}
716
717
718/*
719 */
720
721static unsigned int hw_channels[] = {1, 2, 4, 5, 6, 8};
Takashi Iwai2cbdb682005-11-17 15:03:13 +0100722static struct snd_pcm_hw_constraint_list hw_constraints_channels_4 = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 .count = 3,
724 .list = hw_channels,
725 .mask = 0,
726};
Takashi Iwai2cbdb682005-11-17 15:03:13 +0100727static struct snd_pcm_hw_constraint_list hw_constraints_channels_6 = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 .count = 5,
729 .list = hw_channels,
730 .mask = 0,
731};
Takashi Iwai2cbdb682005-11-17 15:03:13 +0100732static struct snd_pcm_hw_constraint_list hw_constraints_channels_8 = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 .count = 6,
734 .list = hw_channels,
735 .mask = 0,
736};
737
Takashi Iwai2cbdb682005-11-17 15:03:13 +0100738static int set_dac_channels(struct cmipci *cm, struct cmipci_pcm *rec, int channels)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739{
740 if (channels > 2) {
741 if (! cm->can_multi_ch)
742 return -EINVAL;
743 if (rec->fmt != 0x03) /* stereo 16bit only */
744 return -EINVAL;
745
746 spin_lock_irq(&cm->reg_lock);
747 snd_cmipci_set_bit(cm, CM_REG_LEGACY_CTRL, CM_NXCHG);
748 snd_cmipci_set_bit(cm, CM_REG_MISC_CTRL, CM_XCHGDAC);
749 if (channels > 4) {
750 snd_cmipci_clear_bit(cm, CM_REG_CHFORMAT, CM_CHB3D);
751 snd_cmipci_set_bit(cm, CM_REG_CHFORMAT, CM_CHB3D5C);
752 } else {
753 snd_cmipci_clear_bit(cm, CM_REG_CHFORMAT, CM_CHB3D5C);
754 snd_cmipci_set_bit(cm, CM_REG_CHFORMAT, CM_CHB3D);
755 }
756 if (channels >= 6) {
757 snd_cmipci_set_bit(cm, CM_REG_LEGACY_CTRL, CM_CHB3D6C);
758 snd_cmipci_set_bit(cm, CM_REG_MISC_CTRL, CM_ENCENTER);
759 } else {
760 snd_cmipci_clear_bit(cm, CM_REG_LEGACY_CTRL, CM_CHB3D6C);
761 snd_cmipci_clear_bit(cm, CM_REG_MISC_CTRL, CM_ENCENTER);
762 }
763 if (cm->chip_version == 68) {
764 if (channels == 8) {
Clemens Ladischa839a332007-09-17 09:35:46 +0200765 snd_cmipci_set_bit(cm, CM_REG_EXT_MISC, CM_CHB3D8C);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 } else {
Clemens Ladischa839a332007-09-17 09:35:46 +0200767 snd_cmipci_clear_bit(cm, CM_REG_EXT_MISC, CM_CHB3D8C);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 }
769 }
770 spin_unlock_irq(&cm->reg_lock);
771
772 } else {
773 if (cm->can_multi_ch) {
774 spin_lock_irq(&cm->reg_lock);
775 snd_cmipci_clear_bit(cm, CM_REG_LEGACY_CTRL, CM_NXCHG);
776 snd_cmipci_clear_bit(cm, CM_REG_CHFORMAT, CM_CHB3D);
777 snd_cmipci_clear_bit(cm, CM_REG_CHFORMAT, CM_CHB3D5C);
778 snd_cmipci_clear_bit(cm, CM_REG_LEGACY_CTRL, CM_CHB3D6C);
779 snd_cmipci_clear_bit(cm, CM_REG_MISC_CTRL, CM_ENCENTER);
780 snd_cmipci_clear_bit(cm, CM_REG_MISC_CTRL, CM_XCHGDAC);
781 spin_unlock_irq(&cm->reg_lock);
782 }
783 }
784 return 0;
785}
786
787
788/*
789 * prepare playback/capture channel
790 * channel to be used must have been set in rec->ch.
791 */
Takashi Iwai2cbdb682005-11-17 15:03:13 +0100792static int snd_cmipci_pcm_prepare(struct cmipci *cm, struct cmipci_pcm *rec,
793 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794{
795 unsigned int reg, freq, val;
Takashi Iwai2cbdb682005-11-17 15:03:13 +0100796 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797
798 rec->fmt = 0;
799 rec->shift = 0;
800 if (snd_pcm_format_width(runtime->format) >= 16) {
801 rec->fmt |= 0x02;
802 if (snd_pcm_format_width(runtime->format) > 16)
803 rec->shift++; /* 24/32bit */
804 }
805 if (runtime->channels > 1)
806 rec->fmt |= 0x01;
807 if (rec->is_dac && set_dac_channels(cm, rec, runtime->channels) < 0) {
808 snd_printd("cannot set dac channels\n");
809 return -EINVAL;
810 }
811
812 rec->offset = runtime->dma_addr;
813 /* buffer and period sizes in frame */
814 rec->dma_size = runtime->buffer_size << rec->shift;
815 rec->period_size = runtime->period_size << rec->shift;
816 if (runtime->channels > 2) {
817 /* multi-channels */
818 rec->dma_size = (rec->dma_size * runtime->channels) / 2;
819 rec->period_size = (rec->period_size * runtime->channels) / 2;
820 }
821
822 spin_lock_irq(&cm->reg_lock);
823
824 /* set buffer address */
825 reg = rec->ch ? CM_REG_CH1_FRAME1 : CM_REG_CH0_FRAME1;
826 snd_cmipci_write(cm, reg, rec->offset);
827 /* program sample counts */
828 reg = rec->ch ? CM_REG_CH1_FRAME2 : CM_REG_CH0_FRAME2;
829 snd_cmipci_write_w(cm, reg, rec->dma_size - 1);
830 snd_cmipci_write_w(cm, reg + 2, rec->period_size - 1);
831
832 /* set adc/dac flag */
833 val = rec->ch ? CM_CHADC1 : CM_CHADC0;
834 if (rec->is_dac)
835 cm->ctrl &= ~val;
836 else
837 cm->ctrl |= val;
838 snd_cmipci_write(cm, CM_REG_FUNCTRL0, cm->ctrl);
839 //snd_printd("cmipci: functrl0 = %08x\n", cm->ctrl);
840
841 /* set sample rate */
842 freq = snd_cmipci_rate_freq(runtime->rate);
843 val = snd_cmipci_read(cm, CM_REG_FUNCTRL1);
844 if (rec->ch) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 val &= ~CM_DSFC_MASK;
846 val |= (freq << CM_DSFC_SHIFT) & CM_DSFC_MASK;
Clemens Ladischa839a332007-09-17 09:35:46 +0200847 } else {
848 val &= ~CM_ASFC_MASK;
849 val |= (freq << CM_ASFC_SHIFT) & CM_ASFC_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 }
851 snd_cmipci_write(cm, CM_REG_FUNCTRL1, val);
852 //snd_printd("cmipci: functrl1 = %08x\n", val);
853
854 /* set format */
855 val = snd_cmipci_read(cm, CM_REG_CHFORMAT);
856 if (rec->ch) {
857 val &= ~CM_CH1FMT_MASK;
858 val |= rec->fmt << CM_CH1FMT_SHIFT;
859 } else {
860 val &= ~CM_CH0FMT_MASK;
861 val |= rec->fmt << CM_CH0FMT_SHIFT;
862 }
Clemens Ladisch8992e182007-09-03 09:54:55 +0200863 if (cm->chip_version == 68) {
864 if (runtime->rate == 88200)
865 val |= CM_CH0_SRATE_88K << (rec->ch * 2);
866 else
867 val &= ~(CM_CH0_SRATE_88K << (rec->ch * 2));
868 if (runtime->rate == 96000)
869 val |= CM_CH0_SRATE_96K << (rec->ch * 2);
870 else
871 val &= ~(CM_CH0_SRATE_96K << (rec->ch * 2));
872 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 snd_cmipci_write(cm, CM_REG_CHFORMAT, val);
874 //snd_printd("cmipci: chformat = %08x\n", val);
875
876 rec->running = 0;
877 spin_unlock_irq(&cm->reg_lock);
878
879 return 0;
880}
881
882/*
883 * PCM trigger/stop
884 */
Takashi Iwai2cbdb682005-11-17 15:03:13 +0100885static int snd_cmipci_pcm_trigger(struct cmipci *cm, struct cmipci_pcm *rec,
886 struct snd_pcm_substream *substream, int cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887{
888 unsigned int inthld, chen, reset, pause;
889 int result = 0;
890
891 inthld = CM_CH0_INT_EN << rec->ch;
892 chen = CM_CHEN0 << rec->ch;
893 reset = CM_RST_CH0 << rec->ch;
894 pause = CM_PAUSE0 << rec->ch;
895
896 spin_lock(&cm->reg_lock);
897 switch (cmd) {
898 case SNDRV_PCM_TRIGGER_START:
899 rec->running = 1;
900 /* set interrupt */
901 snd_cmipci_set_bit(cm, CM_REG_INT_HLDCLR, inthld);
902 cm->ctrl |= chen;
903 /* enable channel */
904 snd_cmipci_write(cm, CM_REG_FUNCTRL0, cm->ctrl);
905 //snd_printd("cmipci: functrl0 = %08x\n", cm->ctrl);
906 break;
907 case SNDRV_PCM_TRIGGER_STOP:
908 rec->running = 0;
909 /* disable interrupt */
910 snd_cmipci_clear_bit(cm, CM_REG_INT_HLDCLR, inthld);
911 /* reset */
912 cm->ctrl &= ~chen;
913 snd_cmipci_write(cm, CM_REG_FUNCTRL0, cm->ctrl | reset);
914 snd_cmipci_write(cm, CM_REG_FUNCTRL0, cm->ctrl & ~reset);
915 break;
916 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
Takashi Iwaicb60e5f2005-11-17 16:14:49 +0100917 case SNDRV_PCM_TRIGGER_SUSPEND:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 cm->ctrl |= pause;
919 snd_cmipci_write(cm, CM_REG_FUNCTRL0, cm->ctrl);
920 break;
921 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
Takashi Iwaicb60e5f2005-11-17 16:14:49 +0100922 case SNDRV_PCM_TRIGGER_RESUME:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 cm->ctrl &= ~pause;
924 snd_cmipci_write(cm, CM_REG_FUNCTRL0, cm->ctrl);
925 break;
926 default:
927 result = -EINVAL;
928 break;
929 }
930 spin_unlock(&cm->reg_lock);
931 return result;
932}
933
934/*
935 * return the current pointer
936 */
Takashi Iwai2cbdb682005-11-17 15:03:13 +0100937static snd_pcm_uframes_t snd_cmipci_pcm_pointer(struct cmipci *cm, struct cmipci_pcm *rec,
938 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939{
940 size_t ptr;
941 unsigned int reg;
942 if (!rec->running)
943 return 0;
944#if 1 // this seems better..
945 reg = rec->ch ? CM_REG_CH1_FRAME2 : CM_REG_CH0_FRAME2;
946 ptr = rec->dma_size - (snd_cmipci_read_w(cm, reg) + 1);
947 ptr >>= rec->shift;
948#else
949 reg = rec->ch ? CM_REG_CH1_FRAME1 : CM_REG_CH0_FRAME1;
950 ptr = snd_cmipci_read(cm, reg) - rec->offset;
951 ptr = bytes_to_frames(substream->runtime, ptr);
952#endif
953 if (substream->runtime->channels > 2)
954 ptr = (ptr * 2) / substream->runtime->channels;
955 return ptr;
956}
957
958/*
959 * playback
960 */
961
Takashi Iwai2cbdb682005-11-17 15:03:13 +0100962static int snd_cmipci_playback_trigger(struct snd_pcm_substream *substream,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 int cmd)
964{
Takashi Iwai2cbdb682005-11-17 15:03:13 +0100965 struct cmipci *cm = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 return snd_cmipci_pcm_trigger(cm, &cm->channel[CM_CH_PLAY], substream, cmd);
967}
968
Takashi Iwai2cbdb682005-11-17 15:03:13 +0100969static snd_pcm_uframes_t snd_cmipci_playback_pointer(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970{
Takashi Iwai2cbdb682005-11-17 15:03:13 +0100971 struct cmipci *cm = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 return snd_cmipci_pcm_pointer(cm, &cm->channel[CM_CH_PLAY], substream);
973}
974
975
976
977/*
978 * capture
979 */
980
Takashi Iwai2cbdb682005-11-17 15:03:13 +0100981static int snd_cmipci_capture_trigger(struct snd_pcm_substream *substream,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 int cmd)
983{
Takashi Iwai2cbdb682005-11-17 15:03:13 +0100984 struct cmipci *cm = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 return snd_cmipci_pcm_trigger(cm, &cm->channel[CM_CH_CAPT], substream, cmd);
986}
987
Takashi Iwai2cbdb682005-11-17 15:03:13 +0100988static snd_pcm_uframes_t snd_cmipci_capture_pointer(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989{
Takashi Iwai2cbdb682005-11-17 15:03:13 +0100990 struct cmipci *cm = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 return snd_cmipci_pcm_pointer(cm, &cm->channel[CM_CH_CAPT], substream);
992}
993
994
995/*
996 * hw preparation for spdif
997 */
998
Takashi Iwai2cbdb682005-11-17 15:03:13 +0100999static int snd_cmipci_spdif_default_info(struct snd_kcontrol *kcontrol,
1000 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001{
1002 uinfo->type = SNDRV_CTL_ELEM_TYPE_IEC958;
1003 uinfo->count = 1;
1004 return 0;
1005}
1006
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001007static int snd_cmipci_spdif_default_get(struct snd_kcontrol *kcontrol,
1008 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001010 struct cmipci *chip = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 int i;
1012
1013 spin_lock_irq(&chip->reg_lock);
1014 for (i = 0; i < 4; i++)
1015 ucontrol->value.iec958.status[i] = (chip->dig_status >> (i * 8)) & 0xff;
1016 spin_unlock_irq(&chip->reg_lock);
1017 return 0;
1018}
1019
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001020static int snd_cmipci_spdif_default_put(struct snd_kcontrol *kcontrol,
1021 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001023 struct cmipci *chip = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 int i, change;
1025 unsigned int val;
1026
1027 val = 0;
1028 spin_lock_irq(&chip->reg_lock);
1029 for (i = 0; i < 4; i++)
1030 val |= (unsigned int)ucontrol->value.iec958.status[i] << (i * 8);
1031 change = val != chip->dig_status;
1032 chip->dig_status = val;
1033 spin_unlock_irq(&chip->reg_lock);
1034 return change;
1035}
1036
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001037static struct snd_kcontrol_new snd_cmipci_spdif_default __devinitdata =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038{
1039 .iface = SNDRV_CTL_ELEM_IFACE_PCM,
1040 .name = SNDRV_CTL_NAME_IEC958("",PLAYBACK,DEFAULT),
1041 .info = snd_cmipci_spdif_default_info,
1042 .get = snd_cmipci_spdif_default_get,
1043 .put = snd_cmipci_spdif_default_put
1044};
1045
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001046static int snd_cmipci_spdif_mask_info(struct snd_kcontrol *kcontrol,
1047 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048{
1049 uinfo->type = SNDRV_CTL_ELEM_TYPE_IEC958;
1050 uinfo->count = 1;
1051 return 0;
1052}
1053
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001054static int snd_cmipci_spdif_mask_get(struct snd_kcontrol *kcontrol,
1055 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056{
1057 ucontrol->value.iec958.status[0] = 0xff;
1058 ucontrol->value.iec958.status[1] = 0xff;
1059 ucontrol->value.iec958.status[2] = 0xff;
1060 ucontrol->value.iec958.status[3] = 0xff;
1061 return 0;
1062}
1063
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001064static struct snd_kcontrol_new snd_cmipci_spdif_mask __devinitdata =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065{
1066 .access = SNDRV_CTL_ELEM_ACCESS_READ,
Clemens Ladisch67ed4162005-07-29 15:32:58 +02001067 .iface = SNDRV_CTL_ELEM_IFACE_PCM,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 .name = SNDRV_CTL_NAME_IEC958("",PLAYBACK,CON_MASK),
1069 .info = snd_cmipci_spdif_mask_info,
1070 .get = snd_cmipci_spdif_mask_get,
1071};
1072
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001073static int snd_cmipci_spdif_stream_info(struct snd_kcontrol *kcontrol,
1074 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075{
1076 uinfo->type = SNDRV_CTL_ELEM_TYPE_IEC958;
1077 uinfo->count = 1;
1078 return 0;
1079}
1080
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001081static int snd_cmipci_spdif_stream_get(struct snd_kcontrol *kcontrol,
1082 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001084 struct cmipci *chip = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 int i;
1086
1087 spin_lock_irq(&chip->reg_lock);
1088 for (i = 0; i < 4; i++)
1089 ucontrol->value.iec958.status[i] = (chip->dig_pcm_status >> (i * 8)) & 0xff;
1090 spin_unlock_irq(&chip->reg_lock);
1091 return 0;
1092}
1093
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001094static int snd_cmipci_spdif_stream_put(struct snd_kcontrol *kcontrol,
1095 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001097 struct cmipci *chip = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 int i, change;
1099 unsigned int val;
1100
1101 val = 0;
1102 spin_lock_irq(&chip->reg_lock);
1103 for (i = 0; i < 4; i++)
1104 val |= (unsigned int)ucontrol->value.iec958.status[i] << (i * 8);
1105 change = val != chip->dig_pcm_status;
1106 chip->dig_pcm_status = val;
1107 spin_unlock_irq(&chip->reg_lock);
1108 return change;
1109}
1110
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001111static struct snd_kcontrol_new snd_cmipci_spdif_stream __devinitdata =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112{
1113 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE | SNDRV_CTL_ELEM_ACCESS_INACTIVE,
1114 .iface = SNDRV_CTL_ELEM_IFACE_PCM,
1115 .name = SNDRV_CTL_NAME_IEC958("",PLAYBACK,PCM_STREAM),
1116 .info = snd_cmipci_spdif_stream_info,
1117 .get = snd_cmipci_spdif_stream_get,
1118 .put = snd_cmipci_spdif_stream_put
1119};
1120
1121/*
1122 */
1123
1124/* save mixer setting and mute for AC3 playback */
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001125static int save_mixer_state(struct cmipci *cm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126{
1127 if (! cm->mixer_insensitive) {
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001128 struct snd_ctl_elem_value *val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 unsigned int i;
1130
1131 val = kmalloc(sizeof(*val), GFP_ATOMIC);
1132 if (!val)
1133 return -ENOMEM;
1134 for (i = 0; i < CM_SAVED_MIXERS; i++) {
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001135 struct snd_kcontrol *ctl = cm->mixer_res_ctl[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 if (ctl) {
1137 int event;
1138 memset(val, 0, sizeof(*val));
1139 ctl->get(ctl, val);
1140 cm->mixer_res_status[i] = val->value.integer.value[0];
1141 val->value.integer.value[0] = cm_saved_mixer[i].toggle_on;
1142 event = SNDRV_CTL_EVENT_MASK_INFO;
1143 if (cm->mixer_res_status[i] != val->value.integer.value[0]) {
1144 ctl->put(ctl, val); /* toggle */
1145 event |= SNDRV_CTL_EVENT_MASK_VALUE;
1146 }
1147 ctl->vd[0].access |= SNDRV_CTL_ELEM_ACCESS_INACTIVE;
1148 snd_ctl_notify(cm->card, event, &ctl->id);
1149 }
1150 }
1151 kfree(val);
1152 cm->mixer_insensitive = 1;
1153 }
1154 return 0;
1155}
1156
1157
1158/* restore the previously saved mixer status */
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001159static void restore_mixer_state(struct cmipci *cm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160{
1161 if (cm->mixer_insensitive) {
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001162 struct snd_ctl_elem_value *val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163 unsigned int i;
1164
1165 val = kmalloc(sizeof(*val), GFP_KERNEL);
1166 if (!val)
1167 return;
1168 cm->mixer_insensitive = 0; /* at first clear this;
1169 otherwise the changes will be ignored */
1170 for (i = 0; i < CM_SAVED_MIXERS; i++) {
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001171 struct snd_kcontrol *ctl = cm->mixer_res_ctl[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 if (ctl) {
1173 int event;
1174
1175 memset(val, 0, sizeof(*val));
1176 ctl->vd[0].access &= ~SNDRV_CTL_ELEM_ACCESS_INACTIVE;
1177 ctl->get(ctl, val);
1178 event = SNDRV_CTL_EVENT_MASK_INFO;
1179 if (val->value.integer.value[0] != cm->mixer_res_status[i]) {
1180 val->value.integer.value[0] = cm->mixer_res_status[i];
1181 ctl->put(ctl, val);
1182 event |= SNDRV_CTL_EVENT_MASK_VALUE;
1183 }
1184 snd_ctl_notify(cm->card, event, &ctl->id);
1185 }
1186 }
1187 kfree(val);
1188 }
1189}
1190
1191/* spinlock held! */
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001192static void setup_ac3(struct cmipci *cm, struct snd_pcm_substream *subs, int do_ac3, int rate)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193{
1194 if (do_ac3) {
1195 /* AC3EN for 037 */
1196 snd_cmipci_set_bit(cm, CM_REG_CHFORMAT, CM_AC3EN1);
1197 /* AC3EN for 039 */
1198 snd_cmipci_set_bit(cm, CM_REG_MISC_CTRL, CM_AC3EN2);
1199
1200 if (cm->can_ac3_hw) {
1201 /* SPD24SEL for 037, 0x02 */
1202 /* SPD24SEL for 039, 0x20, but cannot be set */
1203 snd_cmipci_set_bit(cm, CM_REG_CHFORMAT, CM_SPD24SEL);
1204 snd_cmipci_clear_bit(cm, CM_REG_MISC_CTRL, CM_SPD32SEL);
1205 } else { /* can_ac3_sw */
1206 /* SPD32SEL for 037 & 039, 0x20 */
1207 snd_cmipci_set_bit(cm, CM_REG_MISC_CTRL, CM_SPD32SEL);
1208 /* set 176K sample rate to fix 033 HW bug */
1209 if (cm->chip_version == 33) {
1210 if (rate >= 48000) {
1211 snd_cmipci_set_bit(cm, CM_REG_CHFORMAT, CM_PLAYBACK_SRATE_176K);
1212 } else {
1213 snd_cmipci_clear_bit(cm, CM_REG_CHFORMAT, CM_PLAYBACK_SRATE_176K);
1214 }
1215 }
1216 }
1217
1218 } else {
1219 snd_cmipci_clear_bit(cm, CM_REG_CHFORMAT, CM_AC3EN1);
1220 snd_cmipci_clear_bit(cm, CM_REG_MISC_CTRL, CM_AC3EN2);
1221
1222 if (cm->can_ac3_hw) {
1223 /* chip model >= 37 */
1224 if (snd_pcm_format_width(subs->runtime->format) > 16) {
1225 snd_cmipci_set_bit(cm, CM_REG_MISC_CTRL, CM_SPD32SEL);
1226 snd_cmipci_set_bit(cm, CM_REG_CHFORMAT, CM_SPD24SEL);
1227 } else {
1228 snd_cmipci_clear_bit(cm, CM_REG_MISC_CTRL, CM_SPD32SEL);
1229 snd_cmipci_clear_bit(cm, CM_REG_CHFORMAT, CM_SPD24SEL);
1230 }
1231 } else {
1232 snd_cmipci_clear_bit(cm, CM_REG_MISC_CTRL, CM_SPD32SEL);
1233 snd_cmipci_clear_bit(cm, CM_REG_CHFORMAT, CM_SPD24SEL);
1234 snd_cmipci_clear_bit(cm, CM_REG_CHFORMAT, CM_PLAYBACK_SRATE_176K);
1235 }
1236 }
1237}
1238
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001239static int setup_spdif_playback(struct cmipci *cm, struct snd_pcm_substream *subs, int up, int do_ac3)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240{
1241 int rate, err;
1242
1243 rate = subs->runtime->rate;
1244
1245 if (up && do_ac3)
1246 if ((err = save_mixer_state(cm)) < 0)
1247 return err;
1248
1249 spin_lock_irq(&cm->reg_lock);
1250 cm->spdif_playback_avail = up;
1251 if (up) {
1252 /* they are controlled via "IEC958 Output Switch" */
1253 /* snd_cmipci_set_bit(cm, CM_REG_LEGACY_CTRL, CM_ENSPDOUT); */
1254 /* snd_cmipci_set_bit(cm, CM_REG_FUNCTRL1, CM_SPDO2DAC); */
1255 if (cm->spdif_playback_enabled)
1256 snd_cmipci_set_bit(cm, CM_REG_FUNCTRL1, CM_PLAYBACK_SPDF);
1257 setup_ac3(cm, subs, do_ac3, rate);
1258
Clemens Ladisch8992e182007-09-03 09:54:55 +02001259 if (rate == 48000 || rate == 96000)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 snd_cmipci_set_bit(cm, CM_REG_MISC_CTRL, CM_SPDIF48K | CM_SPDF_AC97);
1261 else
1262 snd_cmipci_clear_bit(cm, CM_REG_MISC_CTRL, CM_SPDIF48K | CM_SPDF_AC97);
Clemens Ladisch8992e182007-09-03 09:54:55 +02001263 if (rate > 48000)
1264 snd_cmipci_set_bit(cm, CM_REG_CHFORMAT, CM_DBLSPDS);
1265 else
1266 snd_cmipci_clear_bit(cm, CM_REG_CHFORMAT, CM_DBLSPDS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267 } else {
1268 /* they are controlled via "IEC958 Output Switch" */
1269 /* snd_cmipci_clear_bit(cm, CM_REG_LEGACY_CTRL, CM_ENSPDOUT); */
1270 /* snd_cmipci_clear_bit(cm, CM_REG_FUNCTRL1, CM_SPDO2DAC); */
Clemens Ladisch8992e182007-09-03 09:54:55 +02001271 snd_cmipci_clear_bit(cm, CM_REG_CHFORMAT, CM_DBLSPDS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 snd_cmipci_clear_bit(cm, CM_REG_FUNCTRL1, CM_PLAYBACK_SPDF);
1273 setup_ac3(cm, subs, 0, 0);
1274 }
1275 spin_unlock_irq(&cm->reg_lock);
1276 return 0;
1277}
1278
1279
1280/*
1281 * preparation
1282 */
1283
1284/* playback - enable spdif only on the certain condition */
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001285static int snd_cmipci_playback_prepare(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001287 struct cmipci *cm = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 int rate = substream->runtime->rate;
1289 int err, do_spdif, do_ac3 = 0;
1290
Clemens Ladisch8992e182007-09-03 09:54:55 +02001291 do_spdif = (rate >= 44100 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 substream->runtime->format == SNDRV_PCM_FORMAT_S16_LE &&
1293 substream->runtime->channels == 2);
1294 if (do_spdif && cm->can_ac3_hw)
1295 do_ac3 = cm->dig_pcm_status & IEC958_AES0_NONAUDIO;
1296 if ((err = setup_spdif_playback(cm, substream, do_spdif, do_ac3)) < 0)
1297 return err;
1298 return snd_cmipci_pcm_prepare(cm, &cm->channel[CM_CH_PLAY], substream);
1299}
1300
1301/* playback (via device #2) - enable spdif always */
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001302static int snd_cmipci_playback_spdif_prepare(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001304 struct cmipci *cm = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305 int err, do_ac3;
1306
1307 if (cm->can_ac3_hw)
1308 do_ac3 = cm->dig_pcm_status & IEC958_AES0_NONAUDIO;
1309 else
1310 do_ac3 = 1; /* doesn't matter */
1311 if ((err = setup_spdif_playback(cm, substream, 1, do_ac3)) < 0)
1312 return err;
1313 return snd_cmipci_pcm_prepare(cm, &cm->channel[CM_CH_PLAY], substream);
1314}
1315
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001316static int snd_cmipci_playback_hw_free(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001318 struct cmipci *cm = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319 setup_spdif_playback(cm, substream, 0, 0);
1320 restore_mixer_state(cm);
1321 return snd_cmipci_hw_free(substream);
1322}
1323
1324/* capture */
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001325static int snd_cmipci_capture_prepare(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001327 struct cmipci *cm = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 return snd_cmipci_pcm_prepare(cm, &cm->channel[CM_CH_CAPT], substream);
1329}
1330
1331/* capture with spdif (via device #2) */
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001332static int snd_cmipci_capture_spdif_prepare(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001334 struct cmipci *cm = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335
1336 spin_lock_irq(&cm->reg_lock);
1337 snd_cmipci_set_bit(cm, CM_REG_FUNCTRL1, CM_CAPTURE_SPDF);
1338 spin_unlock_irq(&cm->reg_lock);
1339
1340 return snd_cmipci_pcm_prepare(cm, &cm->channel[CM_CH_CAPT], substream);
1341}
1342
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001343static int snd_cmipci_capture_spdif_hw_free(struct snd_pcm_substream *subs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001345 struct cmipci *cm = snd_pcm_substream_chip(subs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346
1347 spin_lock_irq(&cm->reg_lock);
1348 snd_cmipci_clear_bit(cm, CM_REG_FUNCTRL1, CM_CAPTURE_SPDF);
1349 spin_unlock_irq(&cm->reg_lock);
1350
1351 return snd_cmipci_hw_free(subs);
1352}
1353
1354
1355/*
1356 * interrupt handler
1357 */
David Howells7d12e782006-10-05 14:55:46 +01001358static irqreturn_t snd_cmipci_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001360 struct cmipci *cm = dev_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361 unsigned int status, mask = 0;
1362
1363 /* fastpath out, to ease interrupt sharing */
1364 status = snd_cmipci_read(cm, CM_REG_INT_STATUS);
1365 if (!(status & CM_INTR))
1366 return IRQ_NONE;
1367
1368 /* acknowledge interrupt */
1369 spin_lock(&cm->reg_lock);
1370 if (status & CM_CHINT0)
1371 mask |= CM_CH0_INT_EN;
1372 if (status & CM_CHINT1)
1373 mask |= CM_CH1_INT_EN;
1374 snd_cmipci_clear_bit(cm, CM_REG_INT_HLDCLR, mask);
1375 snd_cmipci_set_bit(cm, CM_REG_INT_HLDCLR, mask);
1376 spin_unlock(&cm->reg_lock);
1377
1378 if (cm->rmidi && (status & CM_UARTINT))
David Howells7d12e782006-10-05 14:55:46 +01001379 snd_mpu401_uart_interrupt(irq, cm->rmidi->private_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380
1381 if (cm->pcm) {
1382 if ((status & CM_CHINT0) && cm->channel[0].running)
1383 snd_pcm_period_elapsed(cm->channel[0].substream);
1384 if ((status & CM_CHINT1) && cm->channel[1].running)
1385 snd_pcm_period_elapsed(cm->channel[1].substream);
1386 }
1387 return IRQ_HANDLED;
1388}
1389
1390/*
1391 * h/w infos
1392 */
1393
1394/* playback on channel A */
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001395static struct snd_pcm_hardware snd_cmipci_playback =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396{
1397 .info = (SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_INTERLEAVED |
1398 SNDRV_PCM_INFO_BLOCK_TRANSFER | SNDRV_PCM_INFO_PAUSE |
Takashi Iwaicb60e5f2005-11-17 16:14:49 +01001399 SNDRV_PCM_INFO_RESUME | SNDRV_PCM_INFO_MMAP_VALID),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400 .formats = SNDRV_PCM_FMTBIT_U8 | SNDRV_PCM_FMTBIT_S16_LE,
1401 .rates = SNDRV_PCM_RATE_5512 | SNDRV_PCM_RATE_8000_48000,
1402 .rate_min = 5512,
1403 .rate_max = 48000,
1404 .channels_min = 1,
1405 .channels_max = 2,
1406 .buffer_bytes_max = (128*1024),
1407 .period_bytes_min = 64,
1408 .period_bytes_max = (128*1024),
1409 .periods_min = 2,
1410 .periods_max = 1024,
1411 .fifo_size = 0,
1412};
1413
1414/* capture on channel B */
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001415static struct snd_pcm_hardware snd_cmipci_capture =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416{
1417 .info = (SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_INTERLEAVED |
1418 SNDRV_PCM_INFO_BLOCK_TRANSFER | SNDRV_PCM_INFO_PAUSE |
Takashi Iwaicb60e5f2005-11-17 16:14:49 +01001419 SNDRV_PCM_INFO_RESUME | SNDRV_PCM_INFO_MMAP_VALID),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420 .formats = SNDRV_PCM_FMTBIT_U8 | SNDRV_PCM_FMTBIT_S16_LE,
1421 .rates = SNDRV_PCM_RATE_5512 | SNDRV_PCM_RATE_8000_48000,
1422 .rate_min = 5512,
1423 .rate_max = 48000,
1424 .channels_min = 1,
1425 .channels_max = 2,
1426 .buffer_bytes_max = (128*1024),
1427 .period_bytes_min = 64,
1428 .period_bytes_max = (128*1024),
1429 .periods_min = 2,
1430 .periods_max = 1024,
1431 .fifo_size = 0,
1432};
1433
1434/* playback on channel B - stereo 16bit only? */
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001435static struct snd_pcm_hardware snd_cmipci_playback2 =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436{
1437 .info = (SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_INTERLEAVED |
1438 SNDRV_PCM_INFO_BLOCK_TRANSFER | SNDRV_PCM_INFO_PAUSE |
Takashi Iwaicb60e5f2005-11-17 16:14:49 +01001439 SNDRV_PCM_INFO_RESUME | SNDRV_PCM_INFO_MMAP_VALID),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440 .formats = SNDRV_PCM_FMTBIT_S16_LE,
1441 .rates = SNDRV_PCM_RATE_5512 | SNDRV_PCM_RATE_8000_48000,
1442 .rate_min = 5512,
1443 .rate_max = 48000,
1444 .channels_min = 2,
1445 .channels_max = 2,
1446 .buffer_bytes_max = (128*1024),
1447 .period_bytes_min = 64,
1448 .period_bytes_max = (128*1024),
1449 .periods_min = 2,
1450 .periods_max = 1024,
1451 .fifo_size = 0,
1452};
1453
1454/* spdif playback on channel A */
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001455static struct snd_pcm_hardware snd_cmipci_playback_spdif =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456{
1457 .info = (SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_INTERLEAVED |
1458 SNDRV_PCM_INFO_BLOCK_TRANSFER | SNDRV_PCM_INFO_PAUSE |
Takashi Iwaicb60e5f2005-11-17 16:14:49 +01001459 SNDRV_PCM_INFO_RESUME | SNDRV_PCM_INFO_MMAP_VALID),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460 .formats = SNDRV_PCM_FMTBIT_S16_LE,
1461 .rates = SNDRV_PCM_RATE_44100 | SNDRV_PCM_RATE_48000,
1462 .rate_min = 44100,
1463 .rate_max = 48000,
1464 .channels_min = 2,
1465 .channels_max = 2,
1466 .buffer_bytes_max = (128*1024),
1467 .period_bytes_min = 64,
1468 .period_bytes_max = (128*1024),
1469 .periods_min = 2,
1470 .periods_max = 1024,
1471 .fifo_size = 0,
1472};
1473
1474/* spdif playback on channel A (32bit, IEC958 subframes) */
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001475static struct snd_pcm_hardware snd_cmipci_playback_iec958_subframe =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476{
1477 .info = (SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_INTERLEAVED |
1478 SNDRV_PCM_INFO_BLOCK_TRANSFER | SNDRV_PCM_INFO_PAUSE |
Takashi Iwaicb60e5f2005-11-17 16:14:49 +01001479 SNDRV_PCM_INFO_RESUME | SNDRV_PCM_INFO_MMAP_VALID),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480 .formats = SNDRV_PCM_FMTBIT_IEC958_SUBFRAME_LE,
1481 .rates = SNDRV_PCM_RATE_44100 | SNDRV_PCM_RATE_48000,
1482 .rate_min = 44100,
1483 .rate_max = 48000,
1484 .channels_min = 2,
1485 .channels_max = 2,
1486 .buffer_bytes_max = (128*1024),
1487 .period_bytes_min = 64,
1488 .period_bytes_max = (128*1024),
1489 .periods_min = 2,
1490 .periods_max = 1024,
1491 .fifo_size = 0,
1492};
1493
1494/* spdif capture on channel B */
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001495static struct snd_pcm_hardware snd_cmipci_capture_spdif =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496{
1497 .info = (SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_INTERLEAVED |
1498 SNDRV_PCM_INFO_BLOCK_TRANSFER | SNDRV_PCM_INFO_PAUSE |
Takashi Iwaicb60e5f2005-11-17 16:14:49 +01001499 SNDRV_PCM_INFO_RESUME | SNDRV_PCM_INFO_MMAP_VALID),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500 .formats = SNDRV_PCM_FMTBIT_S16_LE,
1501 .rates = SNDRV_PCM_RATE_44100 | SNDRV_PCM_RATE_48000,
1502 .rate_min = 44100,
1503 .rate_max = 48000,
1504 .channels_min = 2,
1505 .channels_max = 2,
1506 .buffer_bytes_max = (128*1024),
1507 .period_bytes_min = 64,
1508 .period_bytes_max = (128*1024),
1509 .periods_min = 2,
1510 .periods_max = 1024,
1511 .fifo_size = 0,
1512};
1513
1514/*
1515 * check device open/close
1516 */
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001517static int open_device_check(struct cmipci *cm, int mode, struct snd_pcm_substream *subs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518{
1519 int ch = mode & CM_OPEN_CH_MASK;
1520
1521 /* FIXME: a file should wait until the device becomes free
1522 * when it's opened on blocking mode. however, since the current
1523 * pcm framework doesn't pass file pointer before actually opened,
1524 * we can't know whether blocking mode or not in open callback..
1525 */
Ingo Molnar62932df2006-01-16 16:34:20 +01001526 mutex_lock(&cm->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527 if (cm->opened[ch]) {
Ingo Molnar62932df2006-01-16 16:34:20 +01001528 mutex_unlock(&cm->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529 return -EBUSY;
1530 }
1531 cm->opened[ch] = mode;
1532 cm->channel[ch].substream = subs;
1533 if (! (mode & CM_OPEN_DAC)) {
1534 /* disable dual DAC mode */
1535 cm->channel[ch].is_dac = 0;
1536 spin_lock_irq(&cm->reg_lock);
1537 snd_cmipci_clear_bit(cm, CM_REG_MISC_CTRL, CM_ENDBDAC);
1538 spin_unlock_irq(&cm->reg_lock);
1539 }
Ingo Molnar62932df2006-01-16 16:34:20 +01001540 mutex_unlock(&cm->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541 return 0;
1542}
1543
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001544static void close_device_check(struct cmipci *cm, int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545{
1546 int ch = mode & CM_OPEN_CH_MASK;
1547
Ingo Molnar62932df2006-01-16 16:34:20 +01001548 mutex_lock(&cm->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549 if (cm->opened[ch] == mode) {
1550 if (cm->channel[ch].substream) {
1551 snd_cmipci_ch_reset(cm, ch);
1552 cm->channel[ch].running = 0;
1553 cm->channel[ch].substream = NULL;
1554 }
1555 cm->opened[ch] = 0;
1556 if (! cm->channel[ch].is_dac) {
1557 /* enable dual DAC mode again */
1558 cm->channel[ch].is_dac = 1;
1559 spin_lock_irq(&cm->reg_lock);
1560 snd_cmipci_set_bit(cm, CM_REG_MISC_CTRL, CM_ENDBDAC);
1561 spin_unlock_irq(&cm->reg_lock);
1562 }
1563 }
Ingo Molnar62932df2006-01-16 16:34:20 +01001564 mutex_unlock(&cm->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565}
1566
1567/*
1568 */
1569
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001570static int snd_cmipci_playback_open(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001572 struct cmipci *cm = snd_pcm_substream_chip(substream);
1573 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574 int err;
1575
1576 if ((err = open_device_check(cm, CM_OPEN_PLAYBACK, substream)) < 0)
1577 return err;
1578 runtime->hw = snd_cmipci_playback;
Clemens Ladisch8992e182007-09-03 09:54:55 +02001579 if (cm->chip_version == 68) {
1580 runtime->hw.rates |= SNDRV_PCM_RATE_88200 |
1581 SNDRV_PCM_RATE_96000;
1582 runtime->hw.rate_max = 96000;
1583 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584 snd_pcm_hw_constraint_minmax(runtime, SNDRV_PCM_HW_PARAM_BUFFER_SIZE, 0, 0x10000);
1585 cm->dig_pcm_status = cm->dig_status;
1586 return 0;
1587}
1588
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001589static int snd_cmipci_capture_open(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001591 struct cmipci *cm = snd_pcm_substream_chip(substream);
1592 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593 int err;
1594
1595 if ((err = open_device_check(cm, CM_OPEN_CAPTURE, substream)) < 0)
1596 return err;
1597 runtime->hw = snd_cmipci_capture;
1598 if (cm->chip_version == 68) { // 8768 only supports 44k/48k recording
1599 runtime->hw.rate_min = 41000;
1600 runtime->hw.rates = SNDRV_PCM_RATE_44100 | SNDRV_PCM_RATE_48000;
1601 }
1602 snd_pcm_hw_constraint_minmax(runtime, SNDRV_PCM_HW_PARAM_BUFFER_SIZE, 0, 0x10000);
1603 return 0;
1604}
1605
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001606static int snd_cmipci_playback2_open(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001608 struct cmipci *cm = snd_pcm_substream_chip(substream);
1609 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610 int err;
1611
1612 if ((err = open_device_check(cm, CM_OPEN_PLAYBACK2, substream)) < 0) /* use channel B */
1613 return err;
1614 runtime->hw = snd_cmipci_playback2;
Ingo Molnar62932df2006-01-16 16:34:20 +01001615 mutex_lock(&cm->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616 if (! cm->opened[CM_CH_PLAY]) {
1617 if (cm->can_multi_ch) {
1618 runtime->hw.channels_max = cm->max_channels;
1619 if (cm->max_channels == 4)
1620 snd_pcm_hw_constraint_list(runtime, 0, SNDRV_PCM_HW_PARAM_CHANNELS, &hw_constraints_channels_4);
1621 else if (cm->max_channels == 6)
1622 snd_pcm_hw_constraint_list(runtime, 0, SNDRV_PCM_HW_PARAM_CHANNELS, &hw_constraints_channels_6);
1623 else if (cm->max_channels == 8)
1624 snd_pcm_hw_constraint_list(runtime, 0, SNDRV_PCM_HW_PARAM_CHANNELS, &hw_constraints_channels_8);
1625 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626 }
Ingo Molnar62932df2006-01-16 16:34:20 +01001627 mutex_unlock(&cm->open_mutex);
Clemens Ladisch22a22f52007-09-17 09:37:47 +02001628 if (cm->chip_version == 68) {
1629 runtime->hw.rates |= SNDRV_PCM_RATE_88200 |
1630 SNDRV_PCM_RATE_96000;
1631 runtime->hw.rate_max = 96000;
1632 }
1633 snd_pcm_hw_constraint_minmax(runtime, SNDRV_PCM_HW_PARAM_BUFFER_SIZE, 0, 0x10000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634 return 0;
1635}
1636
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001637static int snd_cmipci_playback_spdif_open(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001639 struct cmipci *cm = snd_pcm_substream_chip(substream);
1640 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641 int err;
1642
1643 if ((err = open_device_check(cm, CM_OPEN_SPDIF_PLAYBACK, substream)) < 0) /* use channel A */
1644 return err;
1645 if (cm->can_ac3_hw) {
1646 runtime->hw = snd_cmipci_playback_spdif;
Clemens Ladisch57bd68b2007-09-07 10:44:13 +02001647 if (cm->chip_version >= 37) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648 runtime->hw.formats |= SNDRV_PCM_FMTBIT_S32_LE;
Clemens Ladisch57bd68b2007-09-07 10:44:13 +02001649 snd_pcm_hw_constraint_msbits(runtime, 0, 32, 24);
1650 }
Clemens Ladisch8992e182007-09-03 09:54:55 +02001651 if (cm->chip_version == 68) {
1652 runtime->hw.rates |= SNDRV_PCM_RATE_88200 |
1653 SNDRV_PCM_RATE_96000;
1654 runtime->hw.rate_max = 96000;
1655 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 } else {
1657 runtime->hw = snd_cmipci_playback_iec958_subframe;
1658 }
1659 snd_pcm_hw_constraint_minmax(runtime, SNDRV_PCM_HW_PARAM_BUFFER_SIZE, 0, 0x40000);
1660 cm->dig_pcm_status = cm->dig_status;
1661 return 0;
1662}
1663
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001664static int snd_cmipci_capture_spdif_open(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001666 struct cmipci *cm = snd_pcm_substream_chip(substream);
1667 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668 int err;
1669
1670 if ((err = open_device_check(cm, CM_OPEN_SPDIF_CAPTURE, substream)) < 0) /* use channel B */
1671 return err;
1672 runtime->hw = snd_cmipci_capture_spdif;
1673 snd_pcm_hw_constraint_minmax(runtime, SNDRV_PCM_HW_PARAM_BUFFER_SIZE, 0, 0x40000);
1674 return 0;
1675}
1676
1677
1678/*
1679 */
1680
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001681static int snd_cmipci_playback_close(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001683 struct cmipci *cm = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684 close_device_check(cm, CM_OPEN_PLAYBACK);
1685 return 0;
1686}
1687
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001688static int snd_cmipci_capture_close(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001690 struct cmipci *cm = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691 close_device_check(cm, CM_OPEN_CAPTURE);
1692 return 0;
1693}
1694
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001695static int snd_cmipci_playback2_close(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001697 struct cmipci *cm = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698 close_device_check(cm, CM_OPEN_PLAYBACK2);
1699 close_device_check(cm, CM_OPEN_PLAYBACK_MULTI);
1700 return 0;
1701}
1702
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001703static int snd_cmipci_playback_spdif_close(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001705 struct cmipci *cm = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706 close_device_check(cm, CM_OPEN_SPDIF_PLAYBACK);
1707 return 0;
1708}
1709
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001710static int snd_cmipci_capture_spdif_close(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001712 struct cmipci *cm = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713 close_device_check(cm, CM_OPEN_SPDIF_CAPTURE);
1714 return 0;
1715}
1716
1717
1718/*
1719 */
1720
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001721static struct snd_pcm_ops snd_cmipci_playback_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722 .open = snd_cmipci_playback_open,
1723 .close = snd_cmipci_playback_close,
1724 .ioctl = snd_pcm_lib_ioctl,
1725 .hw_params = snd_cmipci_hw_params,
1726 .hw_free = snd_cmipci_playback_hw_free,
1727 .prepare = snd_cmipci_playback_prepare,
1728 .trigger = snd_cmipci_playback_trigger,
1729 .pointer = snd_cmipci_playback_pointer,
1730};
1731
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001732static struct snd_pcm_ops snd_cmipci_capture_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733 .open = snd_cmipci_capture_open,
1734 .close = snd_cmipci_capture_close,
1735 .ioctl = snd_pcm_lib_ioctl,
1736 .hw_params = snd_cmipci_hw_params,
1737 .hw_free = snd_cmipci_hw_free,
1738 .prepare = snd_cmipci_capture_prepare,
1739 .trigger = snd_cmipci_capture_trigger,
1740 .pointer = snd_cmipci_capture_pointer,
1741};
1742
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001743static struct snd_pcm_ops snd_cmipci_playback2_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744 .open = snd_cmipci_playback2_open,
1745 .close = snd_cmipci_playback2_close,
1746 .ioctl = snd_pcm_lib_ioctl,
1747 .hw_params = snd_cmipci_playback2_hw_params,
1748 .hw_free = snd_cmipci_hw_free,
1749 .prepare = snd_cmipci_capture_prepare, /* channel B */
1750 .trigger = snd_cmipci_capture_trigger, /* channel B */
1751 .pointer = snd_cmipci_capture_pointer, /* channel B */
1752};
1753
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001754static struct snd_pcm_ops snd_cmipci_playback_spdif_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755 .open = snd_cmipci_playback_spdif_open,
1756 .close = snd_cmipci_playback_spdif_close,
1757 .ioctl = snd_pcm_lib_ioctl,
1758 .hw_params = snd_cmipci_hw_params,
1759 .hw_free = snd_cmipci_playback_hw_free,
1760 .prepare = snd_cmipci_playback_spdif_prepare, /* set up rate */
1761 .trigger = snd_cmipci_playback_trigger,
1762 .pointer = snd_cmipci_playback_pointer,
1763};
1764
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001765static struct snd_pcm_ops snd_cmipci_capture_spdif_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766 .open = snd_cmipci_capture_spdif_open,
1767 .close = snd_cmipci_capture_spdif_close,
1768 .ioctl = snd_pcm_lib_ioctl,
1769 .hw_params = snd_cmipci_hw_params,
1770 .hw_free = snd_cmipci_capture_spdif_hw_free,
1771 .prepare = snd_cmipci_capture_spdif_prepare,
1772 .trigger = snd_cmipci_capture_trigger,
1773 .pointer = snd_cmipci_capture_pointer,
1774};
1775
1776
1777/*
1778 */
1779
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001780static int __devinit snd_cmipci_pcm_new(struct cmipci *cm, int device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001782 struct snd_pcm *pcm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783 int err;
1784
1785 err = snd_pcm_new(cm->card, cm->card->driver, device, 1, 1, &pcm);
1786 if (err < 0)
1787 return err;
1788
1789 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &snd_cmipci_playback_ops);
1790 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &snd_cmipci_capture_ops);
1791
1792 pcm->private_data = cm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793 pcm->info_flags = 0;
1794 strcpy(pcm->name, "C-Media PCI DAC/ADC");
1795 cm->pcm = pcm;
1796
1797 snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV,
1798 snd_dma_pci_data(cm->pci), 64*1024, 128*1024);
1799
1800 return 0;
1801}
1802
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001803static int __devinit snd_cmipci_pcm2_new(struct cmipci *cm, int device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001805 struct snd_pcm *pcm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806 int err;
1807
1808 err = snd_pcm_new(cm->card, cm->card->driver, device, 1, 0, &pcm);
1809 if (err < 0)
1810 return err;
1811
1812 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &snd_cmipci_playback2_ops);
1813
1814 pcm->private_data = cm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815 pcm->info_flags = 0;
1816 strcpy(pcm->name, "C-Media PCI 2nd DAC");
1817 cm->pcm2 = pcm;
1818
1819 snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV,
1820 snd_dma_pci_data(cm->pci), 64*1024, 128*1024);
1821
1822 return 0;
1823}
1824
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001825static int __devinit snd_cmipci_pcm_spdif_new(struct cmipci *cm, int device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001827 struct snd_pcm *pcm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828 int err;
1829
1830 err = snd_pcm_new(cm->card, cm->card->driver, device, 1, 1, &pcm);
1831 if (err < 0)
1832 return err;
1833
1834 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &snd_cmipci_playback_spdif_ops);
1835 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &snd_cmipci_capture_spdif_ops);
1836
1837 pcm->private_data = cm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838 pcm->info_flags = 0;
1839 strcpy(pcm->name, "C-Media PCI IEC958");
1840 cm->pcm_spdif = pcm;
1841
1842 snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV,
1843 snd_dma_pci_data(cm->pci), 64*1024, 128*1024);
1844
1845 return 0;
1846}
1847
1848/*
1849 * mixer interface:
1850 * - CM8338/8738 has a compatible mixer interface with SB16, but
1851 * lack of some elements like tone control, i/o gain and AGC.
1852 * - Access to native registers:
1853 * - A 3D switch
1854 * - Output mute switches
1855 */
1856
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001857static void snd_cmipci_mixer_write(struct cmipci *s, unsigned char idx, unsigned char data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858{
1859 outb(idx, s->iobase + CM_REG_SB16_ADDR);
1860 outb(data, s->iobase + CM_REG_SB16_DATA);
1861}
1862
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001863static unsigned char snd_cmipci_mixer_read(struct cmipci *s, unsigned char idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864{
1865 unsigned char v;
1866
1867 outb(idx, s->iobase + CM_REG_SB16_ADDR);
1868 v = inb(s->iobase + CM_REG_SB16_DATA);
1869 return v;
1870}
1871
1872/*
1873 * general mixer element
1874 */
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001875struct cmipci_sb_reg {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876 unsigned int left_reg, right_reg;
1877 unsigned int left_shift, right_shift;
1878 unsigned int mask;
1879 unsigned int invert: 1;
1880 unsigned int stereo: 1;
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001881};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882
1883#define COMPOSE_SB_REG(lreg,rreg,lshift,rshift,mask,invert,stereo) \
1884 ((lreg) | ((rreg) << 8) | (lshift << 16) | (rshift << 19) | (mask << 24) | (invert << 22) | (stereo << 23))
1885
1886#define CMIPCI_DOUBLE(xname, left_reg, right_reg, left_shift, right_shift, mask, invert, stereo) \
1887{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \
1888 .info = snd_cmipci_info_volume, \
1889 .get = snd_cmipci_get_volume, .put = snd_cmipci_put_volume, \
1890 .private_value = COMPOSE_SB_REG(left_reg, right_reg, left_shift, right_shift, mask, invert, stereo), \
1891}
1892
1893#define CMIPCI_SB_VOL_STEREO(xname,reg,shift,mask) CMIPCI_DOUBLE(xname, reg, reg+1, shift, shift, mask, 0, 1)
1894#define CMIPCI_SB_VOL_MONO(xname,reg,shift,mask) CMIPCI_DOUBLE(xname, reg, reg, shift, shift, mask, 0, 0)
1895#define CMIPCI_SB_SW_STEREO(xname,lshift,rshift) CMIPCI_DOUBLE(xname, SB_DSP4_OUTPUT_SW, SB_DSP4_OUTPUT_SW, lshift, rshift, 1, 0, 1)
1896#define CMIPCI_SB_SW_MONO(xname,shift) CMIPCI_DOUBLE(xname, SB_DSP4_OUTPUT_SW, SB_DSP4_OUTPUT_SW, shift, shift, 1, 0, 0)
1897
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001898static void cmipci_sb_reg_decode(struct cmipci_sb_reg *r, unsigned long val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899{
1900 r->left_reg = val & 0xff;
1901 r->right_reg = (val >> 8) & 0xff;
1902 r->left_shift = (val >> 16) & 0x07;
1903 r->right_shift = (val >> 19) & 0x07;
1904 r->invert = (val >> 22) & 1;
1905 r->stereo = (val >> 23) & 1;
1906 r->mask = (val >> 24) & 0xff;
1907}
1908
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001909static int snd_cmipci_info_volume(struct snd_kcontrol *kcontrol,
1910 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001912 struct cmipci_sb_reg reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913
1914 cmipci_sb_reg_decode(&reg, kcontrol->private_value);
1915 uinfo->type = reg.mask == 1 ? SNDRV_CTL_ELEM_TYPE_BOOLEAN : SNDRV_CTL_ELEM_TYPE_INTEGER;
1916 uinfo->count = reg.stereo + 1;
1917 uinfo->value.integer.min = 0;
1918 uinfo->value.integer.max = reg.mask;
1919 return 0;
1920}
1921
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001922static int snd_cmipci_get_volume(struct snd_kcontrol *kcontrol,
1923 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001925 struct cmipci *cm = snd_kcontrol_chip(kcontrol);
1926 struct cmipci_sb_reg reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927 int val;
1928
1929 cmipci_sb_reg_decode(&reg, kcontrol->private_value);
1930 spin_lock_irq(&cm->reg_lock);
1931 val = (snd_cmipci_mixer_read(cm, reg.left_reg) >> reg.left_shift) & reg.mask;
1932 if (reg.invert)
1933 val = reg.mask - val;
1934 ucontrol->value.integer.value[0] = val;
1935 if (reg.stereo) {
1936 val = (snd_cmipci_mixer_read(cm, reg.right_reg) >> reg.right_shift) & reg.mask;
1937 if (reg.invert)
1938 val = reg.mask - val;
1939 ucontrol->value.integer.value[1] = val;
1940 }
1941 spin_unlock_irq(&cm->reg_lock);
1942 return 0;
1943}
1944
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001945static int snd_cmipci_put_volume(struct snd_kcontrol *kcontrol,
1946 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001948 struct cmipci *cm = snd_kcontrol_chip(kcontrol);
1949 struct cmipci_sb_reg reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950 int change;
1951 int left, right, oleft, oright;
1952
1953 cmipci_sb_reg_decode(&reg, kcontrol->private_value);
1954 left = ucontrol->value.integer.value[0] & reg.mask;
1955 if (reg.invert)
1956 left = reg.mask - left;
1957 left <<= reg.left_shift;
1958 if (reg.stereo) {
1959 right = ucontrol->value.integer.value[1] & reg.mask;
1960 if (reg.invert)
1961 right = reg.mask - right;
1962 right <<= reg.right_shift;
1963 } else
1964 right = 0;
1965 spin_lock_irq(&cm->reg_lock);
1966 oleft = snd_cmipci_mixer_read(cm, reg.left_reg);
1967 left |= oleft & ~(reg.mask << reg.left_shift);
1968 change = left != oleft;
1969 if (reg.stereo) {
1970 if (reg.left_reg != reg.right_reg) {
1971 snd_cmipci_mixer_write(cm, reg.left_reg, left);
1972 oright = snd_cmipci_mixer_read(cm, reg.right_reg);
1973 } else
1974 oright = left;
1975 right |= oright & ~(reg.mask << reg.right_shift);
1976 change |= right != oright;
1977 snd_cmipci_mixer_write(cm, reg.right_reg, right);
1978 } else
1979 snd_cmipci_mixer_write(cm, reg.left_reg, left);
1980 spin_unlock_irq(&cm->reg_lock);
1981 return change;
1982}
1983
1984/*
1985 * input route (left,right) -> (left,right)
1986 */
1987#define CMIPCI_SB_INPUT_SW(xname, left_shift, right_shift) \
1988{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \
1989 .info = snd_cmipci_info_input_sw, \
1990 .get = snd_cmipci_get_input_sw, .put = snd_cmipci_put_input_sw, \
1991 .private_value = COMPOSE_SB_REG(SB_DSP4_INPUT_LEFT, SB_DSP4_INPUT_RIGHT, left_shift, right_shift, 1, 0, 1), \
1992}
1993
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001994static int snd_cmipci_info_input_sw(struct snd_kcontrol *kcontrol,
1995 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996{
1997 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
1998 uinfo->count = 4;
1999 uinfo->value.integer.min = 0;
2000 uinfo->value.integer.max = 1;
2001 return 0;
2002}
2003
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002004static int snd_cmipci_get_input_sw(struct snd_kcontrol *kcontrol,
2005 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002007 struct cmipci *cm = snd_kcontrol_chip(kcontrol);
2008 struct cmipci_sb_reg reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009 int val1, val2;
2010
2011 cmipci_sb_reg_decode(&reg, kcontrol->private_value);
2012 spin_lock_irq(&cm->reg_lock);
2013 val1 = snd_cmipci_mixer_read(cm, reg.left_reg);
2014 val2 = snd_cmipci_mixer_read(cm, reg.right_reg);
2015 spin_unlock_irq(&cm->reg_lock);
2016 ucontrol->value.integer.value[0] = (val1 >> reg.left_shift) & 1;
2017 ucontrol->value.integer.value[1] = (val2 >> reg.left_shift) & 1;
2018 ucontrol->value.integer.value[2] = (val1 >> reg.right_shift) & 1;
2019 ucontrol->value.integer.value[3] = (val2 >> reg.right_shift) & 1;
2020 return 0;
2021}
2022
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002023static int snd_cmipci_put_input_sw(struct snd_kcontrol *kcontrol,
2024 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002026 struct cmipci *cm = snd_kcontrol_chip(kcontrol);
2027 struct cmipci_sb_reg reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028 int change;
2029 int val1, val2, oval1, oval2;
2030
2031 cmipci_sb_reg_decode(&reg, kcontrol->private_value);
2032 spin_lock_irq(&cm->reg_lock);
2033 oval1 = snd_cmipci_mixer_read(cm, reg.left_reg);
2034 oval2 = snd_cmipci_mixer_read(cm, reg.right_reg);
2035 val1 = oval1 & ~((1 << reg.left_shift) | (1 << reg.right_shift));
2036 val2 = oval2 & ~((1 << reg.left_shift) | (1 << reg.right_shift));
2037 val1 |= (ucontrol->value.integer.value[0] & 1) << reg.left_shift;
2038 val2 |= (ucontrol->value.integer.value[1] & 1) << reg.left_shift;
2039 val1 |= (ucontrol->value.integer.value[2] & 1) << reg.right_shift;
2040 val2 |= (ucontrol->value.integer.value[3] & 1) << reg.right_shift;
2041 change = val1 != oval1 || val2 != oval2;
2042 snd_cmipci_mixer_write(cm, reg.left_reg, val1);
2043 snd_cmipci_mixer_write(cm, reg.right_reg, val2);
2044 spin_unlock_irq(&cm->reg_lock);
2045 return change;
2046}
2047
2048/*
2049 * native mixer switches/volumes
2050 */
2051
2052#define CMIPCI_MIXER_SW_STEREO(xname, reg, lshift, rshift, invert) \
2053{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \
2054 .info = snd_cmipci_info_native_mixer, \
2055 .get = snd_cmipci_get_native_mixer, .put = snd_cmipci_put_native_mixer, \
2056 .private_value = COMPOSE_SB_REG(reg, reg, lshift, rshift, 1, invert, 1), \
2057}
2058
2059#define CMIPCI_MIXER_SW_MONO(xname, reg, shift, invert) \
2060{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \
2061 .info = snd_cmipci_info_native_mixer, \
2062 .get = snd_cmipci_get_native_mixer, .put = snd_cmipci_put_native_mixer, \
2063 .private_value = COMPOSE_SB_REG(reg, reg, shift, shift, 1, invert, 0), \
2064}
2065
2066#define CMIPCI_MIXER_VOL_STEREO(xname, reg, lshift, rshift, mask) \
2067{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \
2068 .info = snd_cmipci_info_native_mixer, \
2069 .get = snd_cmipci_get_native_mixer, .put = snd_cmipci_put_native_mixer, \
2070 .private_value = COMPOSE_SB_REG(reg, reg, lshift, rshift, mask, 0, 1), \
2071}
2072
2073#define CMIPCI_MIXER_VOL_MONO(xname, reg, shift, mask) \
2074{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \
2075 .info = snd_cmipci_info_native_mixer, \
2076 .get = snd_cmipci_get_native_mixer, .put = snd_cmipci_put_native_mixer, \
2077 .private_value = COMPOSE_SB_REG(reg, reg, shift, shift, mask, 0, 0), \
2078}
2079
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002080static int snd_cmipci_info_native_mixer(struct snd_kcontrol *kcontrol,
2081 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002083 struct cmipci_sb_reg reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084
2085 cmipci_sb_reg_decode(&reg, kcontrol->private_value);
2086 uinfo->type = reg.mask == 1 ? SNDRV_CTL_ELEM_TYPE_BOOLEAN : SNDRV_CTL_ELEM_TYPE_INTEGER;
2087 uinfo->count = reg.stereo + 1;
2088 uinfo->value.integer.min = 0;
2089 uinfo->value.integer.max = reg.mask;
2090 return 0;
2091
2092}
2093
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002094static int snd_cmipci_get_native_mixer(struct snd_kcontrol *kcontrol,
2095 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002097 struct cmipci *cm = snd_kcontrol_chip(kcontrol);
2098 struct cmipci_sb_reg reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099 unsigned char oreg, val;
2100
2101 cmipci_sb_reg_decode(&reg, kcontrol->private_value);
2102 spin_lock_irq(&cm->reg_lock);
2103 oreg = inb(cm->iobase + reg.left_reg);
2104 val = (oreg >> reg.left_shift) & reg.mask;
2105 if (reg.invert)
2106 val = reg.mask - val;
2107 ucontrol->value.integer.value[0] = val;
2108 if (reg.stereo) {
2109 val = (oreg >> reg.right_shift) & reg.mask;
2110 if (reg.invert)
2111 val = reg.mask - val;
2112 ucontrol->value.integer.value[1] = val;
2113 }
2114 spin_unlock_irq(&cm->reg_lock);
2115 return 0;
2116}
2117
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002118static int snd_cmipci_put_native_mixer(struct snd_kcontrol *kcontrol,
2119 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002121 struct cmipci *cm = snd_kcontrol_chip(kcontrol);
2122 struct cmipci_sb_reg reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123 unsigned char oreg, nreg, val;
2124
2125 cmipci_sb_reg_decode(&reg, kcontrol->private_value);
2126 spin_lock_irq(&cm->reg_lock);
2127 oreg = inb(cm->iobase + reg.left_reg);
2128 val = ucontrol->value.integer.value[0] & reg.mask;
2129 if (reg.invert)
2130 val = reg.mask - val;
2131 nreg = oreg & ~(reg.mask << reg.left_shift);
2132 nreg |= (val << reg.left_shift);
2133 if (reg.stereo) {
2134 val = ucontrol->value.integer.value[1] & reg.mask;
2135 if (reg.invert)
2136 val = reg.mask - val;
2137 nreg &= ~(reg.mask << reg.right_shift);
2138 nreg |= (val << reg.right_shift);
2139 }
2140 outb(nreg, cm->iobase + reg.left_reg);
2141 spin_unlock_irq(&cm->reg_lock);
2142 return (nreg != oreg);
2143}
2144
2145/*
2146 * special case - check mixer sensitivity
2147 */
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002148static int snd_cmipci_get_native_mixer_sensitive(struct snd_kcontrol *kcontrol,
2149 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002151 //struct cmipci *cm = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152 return snd_cmipci_get_native_mixer(kcontrol, ucontrol);
2153}
2154
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002155static int snd_cmipci_put_native_mixer_sensitive(struct snd_kcontrol *kcontrol,
2156 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002158 struct cmipci *cm = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159 if (cm->mixer_insensitive) {
2160 /* ignored */
2161 return 0;
2162 }
2163 return snd_cmipci_put_native_mixer(kcontrol, ucontrol);
2164}
2165
2166
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002167static struct snd_kcontrol_new snd_cmipci_mixers[] __devinitdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168 CMIPCI_SB_VOL_STEREO("Master Playback Volume", SB_DSP4_MASTER_DEV, 3, 31),
2169 CMIPCI_MIXER_SW_MONO("3D Control - Switch", CM_REG_MIXER1, CM_X3DEN_SHIFT, 0),
2170 CMIPCI_SB_VOL_STEREO("PCM Playback Volume", SB_DSP4_PCM_DEV, 3, 31),
2171 //CMIPCI_MIXER_SW_MONO("PCM Playback Switch", CM_REG_MIXER1, CM_WSMUTE_SHIFT, 1),
2172 { /* switch with sensitivity */
2173 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2174 .name = "PCM Playback Switch",
2175 .info = snd_cmipci_info_native_mixer,
2176 .get = snd_cmipci_get_native_mixer_sensitive,
2177 .put = snd_cmipci_put_native_mixer_sensitive,
2178 .private_value = COMPOSE_SB_REG(CM_REG_MIXER1, CM_REG_MIXER1, CM_WSMUTE_SHIFT, CM_WSMUTE_SHIFT, 1, 1, 0),
2179 },
2180 CMIPCI_MIXER_SW_STEREO("PCM Capture Switch", CM_REG_MIXER1, CM_WAVEINL_SHIFT, CM_WAVEINR_SHIFT, 0),
2181 CMIPCI_SB_VOL_STEREO("Synth Playback Volume", SB_DSP4_SYNTH_DEV, 3, 31),
2182 CMIPCI_MIXER_SW_MONO("Synth Playback Switch", CM_REG_MIXER1, CM_FMMUTE_SHIFT, 1),
2183 CMIPCI_SB_INPUT_SW("Synth Capture Route", 6, 5),
2184 CMIPCI_SB_VOL_STEREO("CD Playback Volume", SB_DSP4_CD_DEV, 3, 31),
2185 CMIPCI_SB_SW_STEREO("CD Playback Switch", 2, 1),
2186 CMIPCI_SB_INPUT_SW("CD Capture Route", 2, 1),
2187 CMIPCI_SB_VOL_STEREO("Line Playback Volume", SB_DSP4_LINE_DEV, 3, 31),
2188 CMIPCI_SB_SW_STEREO("Line Playback Switch", 4, 3),
2189 CMIPCI_SB_INPUT_SW("Line Capture Route", 4, 3),
2190 CMIPCI_SB_VOL_MONO("Mic Playback Volume", SB_DSP4_MIC_DEV, 3, 31),
2191 CMIPCI_SB_SW_MONO("Mic Playback Switch", 0),
2192 CMIPCI_DOUBLE("Mic Capture Switch", SB_DSP4_INPUT_LEFT, SB_DSP4_INPUT_RIGHT, 0, 0, 1, 0, 0),
2193 CMIPCI_SB_VOL_MONO("PC Speaker Playback Volume", SB_DSP4_SPEAKER_DEV, 6, 3),
2194 CMIPCI_MIXER_VOL_STEREO("Aux Playback Volume", CM_REG_AUX_VOL, 4, 0, 15),
2195 CMIPCI_MIXER_SW_STEREO("Aux Playback Switch", CM_REG_MIXER2, CM_VAUXLM_SHIFT, CM_VAUXRM_SHIFT, 0),
2196 CMIPCI_MIXER_SW_STEREO("Aux Capture Switch", CM_REG_MIXER2, CM_RAUXLEN_SHIFT, CM_RAUXREN_SHIFT, 0),
Takashi Iwai2eff7ec2005-06-30 13:45:20 +02002197 CMIPCI_MIXER_SW_MONO("Mic Boost Playback Switch", CM_REG_MIXER2, CM_MICGAINZ_SHIFT, 1),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198 CMIPCI_MIXER_VOL_MONO("Mic Capture Volume", CM_REG_MIXER2, CM_VADMIC_SHIFT, 7),
Takashi Iwai2eff7ec2005-06-30 13:45:20 +02002199 CMIPCI_SB_VOL_MONO("Phone Playback Volume", CM_REG_EXTENT_IND, 5, 7),
2200 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 +02002201 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 +02002202 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 -07002203};
2204
2205/*
2206 * other switches
2207 */
2208
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002209struct cmipci_switch_args {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210 int reg; /* register index */
2211 unsigned int mask; /* mask bits */
2212 unsigned int mask_on; /* mask bits to turn on */
2213 unsigned int is_byte: 1; /* byte access? */
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002214 unsigned int ac3_sensitive: 1; /* access forbidden during
2215 * non-audio operation?
2216 */
2217};
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218
Takashi Iwaia5ce8892007-07-23 15:42:26 +02002219#define snd_cmipci_uswitch_info snd_ctl_boolean_mono_info
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002221static int _snd_cmipci_uswitch_get(struct snd_kcontrol *kcontrol,
2222 struct snd_ctl_elem_value *ucontrol,
2223 struct cmipci_switch_args *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224{
2225 unsigned int val;
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002226 struct cmipci *cm = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227
2228 spin_lock_irq(&cm->reg_lock);
2229 if (args->ac3_sensitive && cm->mixer_insensitive) {
2230 ucontrol->value.integer.value[0] = 0;
2231 spin_unlock_irq(&cm->reg_lock);
2232 return 0;
2233 }
2234 if (args->is_byte)
2235 val = inb(cm->iobase + args->reg);
2236 else
2237 val = snd_cmipci_read(cm, args->reg);
2238 ucontrol->value.integer.value[0] = ((val & args->mask) == args->mask_on) ? 1 : 0;
2239 spin_unlock_irq(&cm->reg_lock);
2240 return 0;
2241}
2242
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002243static int snd_cmipci_uswitch_get(struct snd_kcontrol *kcontrol,
2244 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002246 struct cmipci_switch_args *args;
2247 args = (struct cmipci_switch_args *)kcontrol->private_value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248 snd_assert(args != NULL, return -EINVAL);
2249 return _snd_cmipci_uswitch_get(kcontrol, ucontrol, args);
2250}
2251
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002252static int _snd_cmipci_uswitch_put(struct snd_kcontrol *kcontrol,
2253 struct snd_ctl_elem_value *ucontrol,
2254 struct cmipci_switch_args *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002255{
2256 unsigned int val;
2257 int change;
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002258 struct cmipci *cm = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259
2260 spin_lock_irq(&cm->reg_lock);
2261 if (args->ac3_sensitive && cm->mixer_insensitive) {
2262 /* ignored */
2263 spin_unlock_irq(&cm->reg_lock);
2264 return 0;
2265 }
2266 if (args->is_byte)
2267 val = inb(cm->iobase + args->reg);
2268 else
2269 val = snd_cmipci_read(cm, args->reg);
Timofei V. Bondarenko8c670712006-12-20 19:20:07 +01002270 change = (val & args->mask) != (ucontrol->value.integer.value[0] ?
2271 args->mask_on : (args->mask & ~args->mask_on));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002272 if (change) {
2273 val &= ~args->mask;
2274 if (ucontrol->value.integer.value[0])
2275 val |= args->mask_on;
2276 else
2277 val |= (args->mask & ~args->mask_on);
2278 if (args->is_byte)
2279 outb((unsigned char)val, cm->iobase + args->reg);
2280 else
2281 snd_cmipci_write(cm, args->reg, val);
2282 }
2283 spin_unlock_irq(&cm->reg_lock);
2284 return change;
2285}
2286
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002287static int snd_cmipci_uswitch_put(struct snd_kcontrol *kcontrol,
2288 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002290 struct cmipci_switch_args *args;
2291 args = (struct cmipci_switch_args *)kcontrol->private_value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002292 snd_assert(args != NULL, return -EINVAL);
2293 return _snd_cmipci_uswitch_put(kcontrol, ucontrol, args);
2294}
2295
2296#define DEFINE_SWITCH_ARG(sname, xreg, xmask, xmask_on, xis_byte, xac3) \
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002297static struct cmipci_switch_args cmipci_switch_arg_##sname = { \
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298 .reg = xreg, \
2299 .mask = xmask, \
2300 .mask_on = xmask_on, \
2301 .is_byte = xis_byte, \
2302 .ac3_sensitive = xac3, \
2303}
2304
2305#define DEFINE_BIT_SWITCH_ARG(sname, xreg, xmask, xis_byte, xac3) \
2306 DEFINE_SWITCH_ARG(sname, xreg, xmask, xmask, xis_byte, xac3)
2307
2308#if 0 /* these will be controlled in pcm device */
2309DEFINE_BIT_SWITCH_ARG(spdif_in, CM_REG_FUNCTRL1, CM_SPDF_1, 0, 0);
2310DEFINE_BIT_SWITCH_ARG(spdif_out, CM_REG_FUNCTRL1, CM_SPDF_0, 0, 0);
2311#endif
2312DEFINE_BIT_SWITCH_ARG(spdif_in_sel1, CM_REG_CHFORMAT, CM_SPDIF_SELECT1, 0, 0);
2313DEFINE_BIT_SWITCH_ARG(spdif_in_sel2, CM_REG_MISC_CTRL, CM_SPDIF_SELECT2, 0, 0);
2314DEFINE_BIT_SWITCH_ARG(spdif_enable, CM_REG_LEGACY_CTRL, CM_ENSPDOUT, 0, 0);
2315DEFINE_BIT_SWITCH_ARG(spdo2dac, CM_REG_FUNCTRL1, CM_SPDO2DAC, 0, 1);
2316DEFINE_BIT_SWITCH_ARG(spdi_valid, CM_REG_MISC, CM_SPDVALID, 1, 0);
2317DEFINE_BIT_SWITCH_ARG(spdif_copyright, CM_REG_LEGACY_CTRL, CM_SPDCOPYRHT, 0, 0);
2318DEFINE_BIT_SWITCH_ARG(spdif_dac_out, CM_REG_LEGACY_CTRL, CM_DAC2SPDO, 0, 1);
2319DEFINE_SWITCH_ARG(spdo_5v, CM_REG_MISC_CTRL, CM_SPDO5V, 0, 0, 0); /* inverse: 0 = 5V */
2320// DEFINE_BIT_SWITCH_ARG(spdo_48k, CM_REG_MISC_CTRL, CM_SPDF_AC97|CM_SPDIF48K, 0, 1);
2321DEFINE_BIT_SWITCH_ARG(spdif_loop, CM_REG_FUNCTRL1, CM_SPDFLOOP, 0, 1);
2322DEFINE_BIT_SWITCH_ARG(spdi_monitor, CM_REG_MIXER1, CM_CDPLAY, 1, 0);
2323/* DEFINE_BIT_SWITCH_ARG(spdi_phase, CM_REG_CHFORMAT, CM_SPDIF_INVERSE, 0, 0); */
2324DEFINE_BIT_SWITCH_ARG(spdi_phase, CM_REG_MISC, CM_SPDIF_INVERSE, 1, 0);
2325DEFINE_BIT_SWITCH_ARG(spdi_phase2, CM_REG_CHFORMAT, CM_SPDIF_INVERSE2, 0, 0);
2326#if CM_CH_PLAY == 1
2327DEFINE_SWITCH_ARG(exchange_dac, CM_REG_MISC_CTRL, CM_XCHGDAC, 0, 0, 0); /* reversed */
2328#else
2329DEFINE_SWITCH_ARG(exchange_dac, CM_REG_MISC_CTRL, CM_XCHGDAC, CM_XCHGDAC, 0, 0);
2330#endif
2331DEFINE_BIT_SWITCH_ARG(fourch, CM_REG_MISC_CTRL, CM_N4SPK3D, 0, 0);
Clemens Ladischa839a332007-09-17 09:35:46 +02002332// DEFINE_BIT_SWITCH_ARG(line_rear, CM_REG_MIXER1, CM_REAR2LIN, 1, 0);
2333// DEFINE_BIT_SWITCH_ARG(line_bass, CM_REG_LEGACY_CTRL, CM_CENTR2LIN|CM_BASE2LIN, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334// DEFINE_BIT_SWITCH_ARG(joystick, CM_REG_FUNCTRL1, CM_JYSTK_EN, 0, 0); /* now module option */
2335DEFINE_SWITCH_ARG(modem, CM_REG_MISC_CTRL, CM_FLINKON|CM_FLINKOFF, CM_FLINKON, 0, 0);
2336
2337#define DEFINE_SWITCH(sname, stype, sarg) \
2338{ .name = sname, \
2339 .iface = stype, \
2340 .info = snd_cmipci_uswitch_info, \
2341 .get = snd_cmipci_uswitch_get, \
2342 .put = snd_cmipci_uswitch_put, \
2343 .private_value = (unsigned long)&cmipci_switch_arg_##sarg,\
2344}
2345
2346#define DEFINE_CARD_SWITCH(sname, sarg) DEFINE_SWITCH(sname, SNDRV_CTL_ELEM_IFACE_CARD, sarg)
2347#define DEFINE_MIXER_SWITCH(sname, sarg) DEFINE_SWITCH(sname, SNDRV_CTL_ELEM_IFACE_MIXER, sarg)
2348
2349
2350/*
2351 * callbacks for spdif output switch
2352 * needs toggle two registers..
2353 */
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002354static int snd_cmipci_spdout_enable_get(struct snd_kcontrol *kcontrol,
2355 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002356{
2357 int changed;
2358 changed = _snd_cmipci_uswitch_get(kcontrol, ucontrol, &cmipci_switch_arg_spdif_enable);
2359 changed |= _snd_cmipci_uswitch_get(kcontrol, ucontrol, &cmipci_switch_arg_spdo2dac);
2360 return changed;
2361}
2362
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002363static int snd_cmipci_spdout_enable_put(struct snd_kcontrol *kcontrol,
2364 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002365{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002366 struct cmipci *chip = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367 int changed;
2368 changed = _snd_cmipci_uswitch_put(kcontrol, ucontrol, &cmipci_switch_arg_spdif_enable);
2369 changed |= _snd_cmipci_uswitch_put(kcontrol, ucontrol, &cmipci_switch_arg_spdo2dac);
2370 if (changed) {
2371 if (ucontrol->value.integer.value[0]) {
2372 if (chip->spdif_playback_avail)
2373 snd_cmipci_set_bit(chip, CM_REG_FUNCTRL1, CM_PLAYBACK_SPDF);
2374 } else {
2375 if (chip->spdif_playback_avail)
2376 snd_cmipci_clear_bit(chip, CM_REG_FUNCTRL1, CM_PLAYBACK_SPDF);
2377 }
2378 }
2379 chip->spdif_playback_enabled = ucontrol->value.integer.value[0];
2380 return changed;
2381}
2382
2383
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002384static int snd_cmipci_line_in_mode_info(struct snd_kcontrol *kcontrol,
2385 struct snd_ctl_elem_info *uinfo)
Takashi Iwai01d25d42005-04-11 16:58:24 +02002386{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002387 struct cmipci *cm = snd_kcontrol_chip(kcontrol);
Takashi Iwai01d25d42005-04-11 16:58:24 +02002388 static char *texts[3] = { "Line-In", "Rear Output", "Bass Output" };
2389 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
2390 uinfo->count = 1;
2391 uinfo->value.enumerated.items = cm->chip_version >= 39 ? 3 : 2;
2392 if (uinfo->value.enumerated.item >= uinfo->value.enumerated.items)
2393 uinfo->value.enumerated.item = uinfo->value.enumerated.items - 1;
2394 strcpy(uinfo->value.enumerated.name, texts[uinfo->value.enumerated.item]);
2395 return 0;
2396}
2397
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002398static inline unsigned int get_line_in_mode(struct cmipci *cm)
Takashi Iwai01d25d42005-04-11 16:58:24 +02002399{
2400 unsigned int val;
2401 if (cm->chip_version >= 39) {
2402 val = snd_cmipci_read(cm, CM_REG_LEGACY_CTRL);
Clemens Ladischa839a332007-09-17 09:35:46 +02002403 if (val & (CM_CENTR2LIN | CM_BASE2LIN))
Takashi Iwai01d25d42005-04-11 16:58:24 +02002404 return 2;
2405 }
2406 val = snd_cmipci_read_b(cm, CM_REG_MIXER1);
Clemens Ladischa839a332007-09-17 09:35:46 +02002407 if (val & CM_REAR2LIN)
Takashi Iwai01d25d42005-04-11 16:58:24 +02002408 return 1;
2409 return 0;
2410}
2411
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002412static int snd_cmipci_line_in_mode_get(struct snd_kcontrol *kcontrol,
2413 struct snd_ctl_elem_value *ucontrol)
Takashi Iwai01d25d42005-04-11 16:58:24 +02002414{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002415 struct cmipci *cm = snd_kcontrol_chip(kcontrol);
Takashi Iwai01d25d42005-04-11 16:58:24 +02002416
2417 spin_lock_irq(&cm->reg_lock);
2418 ucontrol->value.enumerated.item[0] = get_line_in_mode(cm);
2419 spin_unlock_irq(&cm->reg_lock);
2420 return 0;
2421}
2422
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002423static int snd_cmipci_line_in_mode_put(struct snd_kcontrol *kcontrol,
2424 struct snd_ctl_elem_value *ucontrol)
Takashi Iwai01d25d42005-04-11 16:58:24 +02002425{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002426 struct cmipci *cm = snd_kcontrol_chip(kcontrol);
Takashi Iwai01d25d42005-04-11 16:58:24 +02002427 int change;
2428
2429 spin_lock_irq(&cm->reg_lock);
2430 if (ucontrol->value.enumerated.item[0] == 2)
Clemens Ladischa839a332007-09-17 09:35:46 +02002431 change = snd_cmipci_set_bit(cm, CM_REG_LEGACY_CTRL, CM_CENTR2LIN | CM_BASE2LIN);
Takashi Iwai01d25d42005-04-11 16:58:24 +02002432 else
Clemens Ladischa839a332007-09-17 09:35:46 +02002433 change = snd_cmipci_clear_bit(cm, CM_REG_LEGACY_CTRL, CM_CENTR2LIN | CM_BASE2LIN);
Takashi Iwai01d25d42005-04-11 16:58:24 +02002434 if (ucontrol->value.enumerated.item[0] == 1)
Clemens Ladischa839a332007-09-17 09:35:46 +02002435 change |= snd_cmipci_set_bit_b(cm, CM_REG_MIXER1, CM_REAR2LIN);
Takashi Iwai01d25d42005-04-11 16:58:24 +02002436 else
Clemens Ladischa839a332007-09-17 09:35:46 +02002437 change |= snd_cmipci_clear_bit_b(cm, CM_REG_MIXER1, CM_REAR2LIN);
Takashi Iwai01d25d42005-04-11 16:58:24 +02002438 spin_unlock_irq(&cm->reg_lock);
2439 return change;
2440}
2441
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002442static int snd_cmipci_mic_in_mode_info(struct snd_kcontrol *kcontrol,
2443 struct snd_ctl_elem_info *uinfo)
Takashi Iwai01d25d42005-04-11 16:58:24 +02002444{
2445 static char *texts[2] = { "Mic-In", "Center/LFE Output" };
2446 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
2447 uinfo->count = 1;
2448 uinfo->value.enumerated.items = 2;
2449 if (uinfo->value.enumerated.item >= uinfo->value.enumerated.items)
2450 uinfo->value.enumerated.item = uinfo->value.enumerated.items - 1;
2451 strcpy(uinfo->value.enumerated.name, texts[uinfo->value.enumerated.item]);
2452 return 0;
2453}
2454
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002455static int snd_cmipci_mic_in_mode_get(struct snd_kcontrol *kcontrol,
2456 struct snd_ctl_elem_value *ucontrol)
Takashi Iwai01d25d42005-04-11 16:58:24 +02002457{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002458 struct cmipci *cm = snd_kcontrol_chip(kcontrol);
Takashi Iwai01d25d42005-04-11 16:58:24 +02002459 /* same bit as spdi_phase */
2460 spin_lock_irq(&cm->reg_lock);
2461 ucontrol->value.enumerated.item[0] =
2462 (snd_cmipci_read_b(cm, CM_REG_MISC) & CM_SPDIF_INVERSE) ? 1 : 0;
2463 spin_unlock_irq(&cm->reg_lock);
2464 return 0;
2465}
2466
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002467static int snd_cmipci_mic_in_mode_put(struct snd_kcontrol *kcontrol,
2468 struct snd_ctl_elem_value *ucontrol)
Takashi Iwai01d25d42005-04-11 16:58:24 +02002469{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002470 struct cmipci *cm = snd_kcontrol_chip(kcontrol);
Takashi Iwai01d25d42005-04-11 16:58:24 +02002471 int change;
2472
2473 spin_lock_irq(&cm->reg_lock);
2474 if (ucontrol->value.enumerated.item[0])
2475 change = snd_cmipci_set_bit_b(cm, CM_REG_MISC, CM_SPDIF_INVERSE);
2476 else
2477 change = snd_cmipci_clear_bit_b(cm, CM_REG_MISC, CM_SPDIF_INVERSE);
2478 spin_unlock_irq(&cm->reg_lock);
2479 return change;
2480}
2481
Linus Torvalds1da177e2005-04-16 15:20:36 -07002482/* both for CM8338/8738 */
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002483static struct snd_kcontrol_new snd_cmipci_mixer_switches[] __devinitdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002484 DEFINE_MIXER_SWITCH("Four Channel Mode", fourch),
Takashi Iwai01d25d42005-04-11 16:58:24 +02002485 {
2486 .name = "Line-In Mode",
2487 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2488 .info = snd_cmipci_line_in_mode_info,
2489 .get = snd_cmipci_line_in_mode_get,
2490 .put = snd_cmipci_line_in_mode_put,
2491 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002492};
2493
2494/* for non-multichannel chips */
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002495static struct snd_kcontrol_new snd_cmipci_nomulti_switch __devinitdata =
Linus Torvalds1da177e2005-04-16 15:20:36 -07002496DEFINE_MIXER_SWITCH("Exchange DAC", exchange_dac);
2497
2498/* only for CM8738 */
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002499static struct snd_kcontrol_new snd_cmipci_8738_mixer_switches[] __devinitdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002500#if 0 /* controlled in pcm device */
2501 DEFINE_MIXER_SWITCH("IEC958 In Record", spdif_in),
2502 DEFINE_MIXER_SWITCH("IEC958 Out", spdif_out),
2503 DEFINE_MIXER_SWITCH("IEC958 Out To DAC", spdo2dac),
2504#endif
2505 // DEFINE_MIXER_SWITCH("IEC958 Output Switch", spdif_enable),
2506 { .name = "IEC958 Output Switch",
2507 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2508 .info = snd_cmipci_uswitch_info,
2509 .get = snd_cmipci_spdout_enable_get,
2510 .put = snd_cmipci_spdout_enable_put,
2511 },
2512 DEFINE_MIXER_SWITCH("IEC958 In Valid", spdi_valid),
2513 DEFINE_MIXER_SWITCH("IEC958 Copyright", spdif_copyright),
2514 DEFINE_MIXER_SWITCH("IEC958 5V", spdo_5v),
2515// DEFINE_MIXER_SWITCH("IEC958 In/Out 48KHz", spdo_48k),
2516 DEFINE_MIXER_SWITCH("IEC958 Loop", spdif_loop),
2517 DEFINE_MIXER_SWITCH("IEC958 In Monitor", spdi_monitor),
2518};
2519
2520/* only for model 033/037 */
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002521static struct snd_kcontrol_new snd_cmipci_old_mixer_switches[] __devinitdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002522 DEFINE_MIXER_SWITCH("IEC958 Mix Analog", spdif_dac_out),
2523 DEFINE_MIXER_SWITCH("IEC958 In Phase Inverse", spdi_phase),
2524 DEFINE_MIXER_SWITCH("IEC958 In Select", spdif_in_sel1),
2525};
2526
2527/* only for model 039 or later */
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002528static struct snd_kcontrol_new snd_cmipci_extra_mixer_switches[] __devinitdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002529 DEFINE_MIXER_SWITCH("IEC958 In Select", spdif_in_sel2),
2530 DEFINE_MIXER_SWITCH("IEC958 In Phase Inverse", spdi_phase2),
Takashi Iwai01d25d42005-04-11 16:58:24 +02002531 {
2532 .name = "Mic-In Mode",
2533 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2534 .info = snd_cmipci_mic_in_mode_info,
2535 .get = snd_cmipci_mic_in_mode_get,
2536 .put = snd_cmipci_mic_in_mode_put,
2537 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002538};
2539
2540/* card control switches */
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002541static struct snd_kcontrol_new snd_cmipci_control_switches[] __devinitdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002542 // DEFINE_CARD_SWITCH("Joystick", joystick), /* now module option */
2543 DEFINE_CARD_SWITCH("Modem", modem),
2544};
2545
2546
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002547static int __devinit snd_cmipci_mixer_new(struct cmipci *cm, int pcm_spdif_device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002548{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002549 struct snd_card *card;
2550 struct snd_kcontrol_new *sw;
2551 struct snd_kcontrol *kctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002552 unsigned int idx;
2553 int err;
2554
2555 snd_assert(cm != NULL && cm->card != NULL, return -EINVAL);
2556
2557 card = cm->card;
2558
2559 strcpy(card->mixername, "CMedia PCI");
2560
2561 spin_lock_irq(&cm->reg_lock);
2562 snd_cmipci_mixer_write(cm, 0x00, 0x00); /* mixer reset */
2563 spin_unlock_irq(&cm->reg_lock);
2564
2565 for (idx = 0; idx < ARRAY_SIZE(snd_cmipci_mixers); idx++) {
2566 if (cm->chip_version == 68) { // 8768 has no PCM volume
2567 if (!strcmp(snd_cmipci_mixers[idx].name,
2568 "PCM Playback Volume"))
2569 continue;
2570 }
2571 if ((err = snd_ctl_add(card, snd_ctl_new1(&snd_cmipci_mixers[idx], cm))) < 0)
2572 return err;
2573 }
2574
2575 /* mixer switches */
2576 sw = snd_cmipci_mixer_switches;
2577 for (idx = 0; idx < ARRAY_SIZE(snd_cmipci_mixer_switches); idx++, sw++) {
2578 err = snd_ctl_add(cm->card, snd_ctl_new1(sw, cm));
2579 if (err < 0)
2580 return err;
2581 }
2582 if (! cm->can_multi_ch) {
2583 err = snd_ctl_add(cm->card, snd_ctl_new1(&snd_cmipci_nomulti_switch, cm));
2584 if (err < 0)
2585 return err;
2586 }
2587 if (cm->device == PCI_DEVICE_ID_CMEDIA_CM8738 ||
2588 cm->device == PCI_DEVICE_ID_CMEDIA_CM8738B) {
2589 sw = snd_cmipci_8738_mixer_switches;
2590 for (idx = 0; idx < ARRAY_SIZE(snd_cmipci_8738_mixer_switches); idx++, sw++) {
2591 err = snd_ctl_add(cm->card, snd_ctl_new1(sw, cm));
2592 if (err < 0)
2593 return err;
2594 }
2595 if (cm->can_ac3_hw) {
2596 if ((err = snd_ctl_add(card, kctl = snd_ctl_new1(&snd_cmipci_spdif_default, cm))) < 0)
2597 return err;
2598 kctl->id.device = pcm_spdif_device;
2599 if ((err = snd_ctl_add(card, kctl = snd_ctl_new1(&snd_cmipci_spdif_mask, cm))) < 0)
2600 return err;
2601 kctl->id.device = pcm_spdif_device;
2602 if ((err = snd_ctl_add(card, kctl = snd_ctl_new1(&snd_cmipci_spdif_stream, cm))) < 0)
2603 return err;
2604 kctl->id.device = pcm_spdif_device;
2605 }
2606 if (cm->chip_version <= 37) {
2607 sw = snd_cmipci_old_mixer_switches;
2608 for (idx = 0; idx < ARRAY_SIZE(snd_cmipci_old_mixer_switches); idx++, sw++) {
2609 err = snd_ctl_add(cm->card, snd_ctl_new1(sw, cm));
2610 if (err < 0)
2611 return err;
2612 }
2613 }
2614 }
2615 if (cm->chip_version >= 39) {
2616 sw = snd_cmipci_extra_mixer_switches;
2617 for (idx = 0; idx < ARRAY_SIZE(snd_cmipci_extra_mixer_switches); idx++, sw++) {
2618 err = snd_ctl_add(cm->card, snd_ctl_new1(sw, cm));
2619 if (err < 0)
2620 return err;
2621 }
2622 }
2623
2624 /* card switches */
2625 sw = snd_cmipci_control_switches;
2626 for (idx = 0; idx < ARRAY_SIZE(snd_cmipci_control_switches); idx++, sw++) {
2627 err = snd_ctl_add(cm->card, snd_ctl_new1(sw, cm));
2628 if (err < 0)
2629 return err;
2630 }
2631
2632 for (idx = 0; idx < CM_SAVED_MIXERS; idx++) {
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002633 struct snd_ctl_elem_id id;
2634 struct snd_kcontrol *ctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002635 memset(&id, 0, sizeof(id));
2636 id.iface = SNDRV_CTL_ELEM_IFACE_MIXER;
2637 strcpy(id.name, cm_saved_mixer[idx].name);
2638 if ((ctl = snd_ctl_find_id(cm->card, &id)) != NULL)
2639 cm->mixer_res_ctl[idx] = ctl;
2640 }
2641
2642 return 0;
2643}
2644
2645
2646/*
2647 * proc interface
2648 */
2649
2650#ifdef CONFIG_PROC_FS
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002651static void snd_cmipci_proc_read(struct snd_info_entry *entry,
2652 struct snd_info_buffer *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002653{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002654 struct cmipci *cm = entry->private_data;
Clemens Ladisch54d030c2007-09-17 09:36:16 +02002655 int i, v;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002656
Clemens Ladisch54d030c2007-09-17 09:36:16 +02002657 snd_iprintf(buffer, "%s\n", cm->card->longname);
2658 for (i = 0; i < 0x94; i++) {
2659 if (i == 0x28)
2660 i = 0x90;
2661 v = inb(cm->iobase + i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002662 if (i % 4 == 0)
Clemens Ladisch54d030c2007-09-17 09:36:16 +02002663 snd_iprintf(buffer, "\n%02x:", i);
2664 snd_iprintf(buffer, " %02x", v);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002665 }
Clemens Ladisch54d030c2007-09-17 09:36:16 +02002666 snd_iprintf(buffer, "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002667}
2668
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002669static void __devinit snd_cmipci_proc_init(struct cmipci *cm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002670{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002671 struct snd_info_entry *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002672
2673 if (! snd_card_proc_new(cm->card, "cmipci", &entry))
Takashi Iwaibf850202006-04-28 15:13:41 +02002674 snd_info_set_text_ops(entry, cm, snd_cmipci_proc_read);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002675}
2676#else /* !CONFIG_PROC_FS */
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002677static inline void snd_cmipci_proc_init(struct cmipci *cm) {}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002678#endif
2679
2680
Takashi Iwaif40b6892006-07-05 16:51:05 +02002681static struct pci_device_id snd_cmipci_ids[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002682 {PCI_VENDOR_ID_CMEDIA, PCI_DEVICE_ID_CMEDIA_CM8338A, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
2683 {PCI_VENDOR_ID_CMEDIA, PCI_DEVICE_ID_CMEDIA_CM8338B, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
2684 {PCI_VENDOR_ID_CMEDIA, PCI_DEVICE_ID_CMEDIA_CM8738, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
2685 {PCI_VENDOR_ID_CMEDIA, PCI_DEVICE_ID_CMEDIA_CM8738B, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
2686 {PCI_VENDOR_ID_AL, PCI_DEVICE_ID_CMEDIA_CM8738, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
2687 {0,},
2688};
2689
2690
2691/*
2692 * check chip version and capabilities
2693 * driver name is modified according to the chip model
2694 */
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002695static void __devinit query_chip(struct cmipci *cm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002696{
2697 unsigned int detect;
2698
2699 /* check reg 0Ch, bit 24-31 */
2700 detect = snd_cmipci_read(cm, CM_REG_INT_HLDCLR) & CM_CHIP_MASK2;
2701 if (! detect) {
2702 /* check reg 08h, bit 24-28 */
2703 detect = snd_cmipci_read(cm, CM_REG_CHFORMAT) & CM_CHIP_MASK1;
Clemens Ladisch133271f2007-08-27 09:20:31 +02002704 switch (detect) {
2705 case 0:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002706 cm->chip_version = 33;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002707 if (cm->do_soft_ac3)
2708 cm->can_ac3_sw = 1;
2709 else
2710 cm->can_ac3_hw = 1;
Clemens Ladisch133271f2007-08-27 09:20:31 +02002711 break;
Clemens Ladisch6935e682007-09-17 09:34:59 +02002712 case CM_CHIP_037:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002713 cm->chip_version = 37;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002714 cm->can_ac3_hw = 1;
Clemens Ladisch133271f2007-08-27 09:20:31 +02002715 break;
2716 default:
2717 cm->chip_version = 39;
2718 cm->can_ac3_hw = 1;
2719 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002720 }
Clemens Ladisch133271f2007-08-27 09:20:31 +02002721 cm->max_channels = 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002722 } else {
Clemens Ladisch133271f2007-08-27 09:20:31 +02002723 if (detect & CM_CHIP_039) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002724 cm->chip_version = 39;
2725 if (detect & CM_CHIP_039_6CH) /* 4 or 6 channels */
2726 cm->max_channels = 6;
2727 else
2728 cm->max_channels = 4;
Clemens Ladisch133271f2007-08-27 09:20:31 +02002729 } else if (detect & CM_CHIP_8768) {
2730 cm->chip_version = 68;
2731 cm->max_channels = 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002732 } else {
Clemens Ladisch133271f2007-08-27 09:20:31 +02002733 cm->chip_version = 55;
2734 cm->max_channels = 6;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002735 }
Clemens Ladisch133271f2007-08-27 09:20:31 +02002736 cm->can_ac3_hw = 1;
Clemens Ladisch133271f2007-08-27 09:20:31 +02002737 cm->can_multi_ch = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002738 }
2739}
2740
2741#ifdef SUPPORT_JOYSTICK
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002742static int __devinit snd_cmipci_create_gameport(struct cmipci *cm, int dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002743{
2744 static int ports[] = { 0x201, 0x200, 0 }; /* FIXME: majority is 0x201? */
2745 struct gameport *gp;
2746 struct resource *r = NULL;
2747 int i, io_port = 0;
2748
2749 if (joystick_port[dev] == 0)
2750 return -ENODEV;
2751
2752 if (joystick_port[dev] == 1) { /* auto-detect */
2753 for (i = 0; ports[i]; i++) {
2754 io_port = ports[i];
2755 r = request_region(io_port, 1, "CMIPCI gameport");
2756 if (r)
2757 break;
2758 }
2759 } else {
2760 io_port = joystick_port[dev];
2761 r = request_region(io_port, 1, "CMIPCI gameport");
2762 }
2763
2764 if (!r) {
2765 printk(KERN_WARNING "cmipci: cannot reserve joystick ports\n");
2766 return -EBUSY;
2767 }
2768
2769 cm->gameport = gp = gameport_allocate_port();
2770 if (!gp) {
2771 printk(KERN_ERR "cmipci: cannot allocate memory for gameport\n");
Takashi Iwaib1d57762005-10-10 11:56:31 +02002772 release_and_free_resource(r);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002773 return -ENOMEM;
2774 }
2775 gameport_set_name(gp, "C-Media Gameport");
2776 gameport_set_phys(gp, "pci%s/gameport0", pci_name(cm->pci));
2777 gameport_set_dev_parent(gp, &cm->pci->dev);
2778 gp->io = io_port;
2779 gameport_set_port_data(gp, r);
2780
2781 snd_cmipci_set_bit(cm, CM_REG_FUNCTRL1, CM_JYSTK_EN);
2782
2783 gameport_register_port(cm->gameport);
2784
2785 return 0;
2786}
2787
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002788static void snd_cmipci_free_gameport(struct cmipci *cm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002789{
2790 if (cm->gameport) {
2791 struct resource *r = gameport_get_port_data(cm->gameport);
2792
2793 gameport_unregister_port(cm->gameport);
2794 cm->gameport = NULL;
2795
2796 snd_cmipci_clear_bit(cm, CM_REG_FUNCTRL1, CM_JYSTK_EN);
Takashi Iwaib1d57762005-10-10 11:56:31 +02002797 release_and_free_resource(r);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002798 }
2799}
2800#else
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002801static inline int snd_cmipci_create_gameport(struct cmipci *cm, int dev) { return -ENOSYS; }
2802static inline void snd_cmipci_free_gameport(struct cmipci *cm) { }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002803#endif
2804
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002805static int snd_cmipci_free(struct cmipci *cm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002806{
2807 if (cm->irq >= 0) {
2808 snd_cmipci_clear_bit(cm, CM_REG_MISC_CTRL, CM_FM_EN);
2809 snd_cmipci_clear_bit(cm, CM_REG_LEGACY_CTRL, CM_ENSPDOUT);
2810 snd_cmipci_write(cm, CM_REG_INT_HLDCLR, 0); /* disable ints */
2811 snd_cmipci_ch_reset(cm, CM_CH_PLAY);
2812 snd_cmipci_ch_reset(cm, CM_CH_CAPT);
2813 snd_cmipci_write(cm, CM_REG_FUNCTRL0, 0); /* disable channels */
2814 snd_cmipci_write(cm, CM_REG_FUNCTRL1, 0);
2815
2816 /* reset mixer */
2817 snd_cmipci_mixer_write(cm, 0, 0);
2818
2819 synchronize_irq(cm->irq);
2820
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002821 free_irq(cm->irq, cm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002822 }
2823
2824 snd_cmipci_free_gameport(cm);
2825 pci_release_regions(cm->pci);
2826 pci_disable_device(cm->pci);
2827 kfree(cm);
2828 return 0;
2829}
2830
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002831static int snd_cmipci_dev_free(struct snd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002832{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002833 struct cmipci *cm = device->device_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002834 return snd_cmipci_free(cm);
2835}
2836
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002837static int __devinit snd_cmipci_create_fm(struct cmipci *cm, long fm_port)
Clemens Ladisch5747e542005-09-14 08:33:46 +02002838{
2839 long iosynth;
2840 unsigned int val;
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002841 struct snd_opl3 *opl3;
Clemens Ladisch5747e542005-09-14 08:33:46 +02002842 int err;
2843
Takashi Iwai2f24d1592007-02-15 18:56:43 +01002844 if (!fm_port)
2845 goto disable_fm;
2846
Clemens Ladischc78c9502007-09-03 09:55:49 +02002847 if (cm->chip_version >= 39) {
Clemens Ladisch45c41b42007-08-22 09:45:03 +02002848 /* first try FM regs in PCI port range */
2849 iosynth = cm->iobase + CM_REG_FM_PCI;
2850 err = snd_opl3_create(cm->card, iosynth, iosynth + 2,
2851 OPL3_HW_OPL3, 1, &opl3);
2852 } else {
2853 err = -EIO;
2854 }
Clemens Ladisch5747e542005-09-14 08:33:46 +02002855 if (err < 0) {
2856 /* then try legacy ports */
2857 val = snd_cmipci_read(cm, CM_REG_LEGACY_CTRL) & ~CM_FMSEL_MASK;
2858 iosynth = fm_port;
2859 switch (iosynth) {
2860 case 0x3E8: val |= CM_FMSEL_3E8; break;
2861 case 0x3E0: val |= CM_FMSEL_3E0; break;
2862 case 0x3C8: val |= CM_FMSEL_3C8; break;
2863 case 0x388: val |= CM_FMSEL_388; break;
2864 default:
Takashi Iwai2f24d1592007-02-15 18:56:43 +01002865 goto disable_fm;
Clemens Ladisch5747e542005-09-14 08:33:46 +02002866 }
2867 snd_cmipci_write(cm, CM_REG_LEGACY_CTRL, val);
2868 /* enable FM */
2869 snd_cmipci_set_bit(cm, CM_REG_MISC_CTRL, CM_FM_EN);
2870
2871 if (snd_opl3_create(cm->card, iosynth, iosynth + 2,
2872 OPL3_HW_OPL3, 0, &opl3) < 0) {
2873 printk(KERN_ERR "cmipci: no OPL device at %#lx, "
2874 "skipping...\n", iosynth);
Takashi Iwai2f24d1592007-02-15 18:56:43 +01002875 goto disable_fm;
Clemens Ladisch5747e542005-09-14 08:33:46 +02002876 }
2877 }
2878 if ((err = snd_opl3_hwdep_new(opl3, 0, 1, NULL)) < 0) {
2879 printk(KERN_ERR "cmipci: cannot create OPL3 hwdep\n");
2880 return err;
2881 }
2882 return 0;
Takashi Iwai2f24d1592007-02-15 18:56:43 +01002883
2884 disable_fm:
2885 snd_cmipci_clear_bit(cm, CM_REG_LEGACY_CTRL, CM_FMSEL_MASK);
2886 snd_cmipci_clear_bit(cm, CM_REG_MISC_CTRL, CM_FM_EN);
2887 return 0;
Clemens Ladisch5747e542005-09-14 08:33:46 +02002888}
2889
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002890static int __devinit snd_cmipci_create(struct snd_card *card, struct pci_dev *pci,
2891 int dev, struct cmipci **rcmipci)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002892{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002893 struct cmipci *cm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002894 int err;
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002895 static struct snd_device_ops ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002896 .dev_free = snd_cmipci_dev_free,
2897 };
Clemens Ladischd6426252007-08-27 09:22:31 +02002898 unsigned int val;
Clemens Ladisch5747e542005-09-14 08:33:46 +02002899 long iomidi;
Clemens Ladischc9116ae2007-08-24 09:18:04 +02002900 int integrated_midi = 0;
Clemens Ladischb7e054a2007-09-03 09:56:45 +02002901 char modelstr[16];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002902 int pcm_index, pcm_spdif_index;
2903 static struct pci_device_id intel_82437vx[] = {
2904 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82437VX) },
2905 { },
2906 };
2907
2908 *rcmipci = NULL;
2909
2910 if ((err = pci_enable_device(pci)) < 0)
2911 return err;
2912
Takashi Iwaie560d8d2005-09-09 14:21:46 +02002913 cm = kzalloc(sizeof(*cm), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002914 if (cm == NULL) {
2915 pci_disable_device(pci);
2916 return -ENOMEM;
2917 }
2918
2919 spin_lock_init(&cm->reg_lock);
Ingo Molnar62932df2006-01-16 16:34:20 +01002920 mutex_init(&cm->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002921 cm->device = pci->device;
2922 cm->card = card;
2923 cm->pci = pci;
2924 cm->irq = -1;
2925 cm->channel[0].ch = 0;
2926 cm->channel[1].ch = 1;
2927 cm->channel[0].is_dac = cm->channel[1].is_dac = 1; /* dual DAC mode */
2928
2929 if ((err = pci_request_regions(pci, card->driver)) < 0) {
2930 kfree(cm);
2931 pci_disable_device(pci);
2932 return err;
2933 }
2934 cm->iobase = pci_resource_start(pci, 0);
2935
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002936 if (request_irq(pci->irq, snd_cmipci_interrupt,
Takashi Iwai437a5a42006-11-21 12:14:23 +01002937 IRQF_SHARED, card->driver, cm)) {
Takashi Iwai99b359b2005-10-20 18:26:44 +02002938 snd_printk(KERN_ERR "unable to grab IRQ %d\n", pci->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002939 snd_cmipci_free(cm);
2940 return -EBUSY;
2941 }
2942 cm->irq = pci->irq;
2943
2944 pci_set_master(cm->pci);
2945
2946 /*
2947 * check chip version, max channels and capabilities
2948 */
2949
2950 cm->chip_version = 0;
2951 cm->max_channels = 2;
2952 cm->do_soft_ac3 = soft_ac3[dev];
2953
2954 if (pci->device != PCI_DEVICE_ID_CMEDIA_CM8338A &&
2955 pci->device != PCI_DEVICE_ID_CMEDIA_CM8338B)
2956 query_chip(cm);
2957 /* added -MCx suffix for chip supporting multi-channels */
2958 if (cm->can_multi_ch)
2959 sprintf(cm->card->driver + strlen(cm->card->driver),
2960 "-MC%d", cm->max_channels);
2961 else if (cm->can_ac3_sw)
2962 strcpy(cm->card->driver + strlen(cm->card->driver), "-SWIEC");
2963
2964 cm->dig_status = SNDRV_PCM_DEFAULT_CON_SPDIF;
2965 cm->dig_pcm_status = SNDRV_PCM_DEFAULT_CON_SPDIF;
2966
2967#if CM_CH_PLAY == 1
2968 cm->ctrl = CM_CHADC0; /* default FUNCNTRL0 */
2969#else
2970 cm->ctrl = CM_CHADC1; /* default FUNCNTRL0 */
2971#endif
2972
2973 /* initialize codec registers */
Clemens Ladisch3042ef72007-09-17 09:36:49 +02002974 snd_cmipci_set_bit(cm, CM_REG_MISC_CTRL, CM_RESET);
2975 snd_cmipci_clear_bit(cm, CM_REG_MISC_CTRL, CM_RESET);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002976 snd_cmipci_write(cm, CM_REG_INT_HLDCLR, 0); /* disable ints */
2977 snd_cmipci_ch_reset(cm, CM_CH_PLAY);
2978 snd_cmipci_ch_reset(cm, CM_CH_CAPT);
2979 snd_cmipci_write(cm, CM_REG_FUNCTRL0, 0); /* disable channels */
2980 snd_cmipci_write(cm, CM_REG_FUNCTRL1, 0);
2981
2982 snd_cmipci_write(cm, CM_REG_CHFORMAT, 0);
2983 snd_cmipci_set_bit(cm, CM_REG_MISC_CTRL, CM_ENDBDAC|CM_N4SPK3D);
2984#if CM_CH_PLAY == 1
2985 snd_cmipci_set_bit(cm, CM_REG_MISC_CTRL, CM_XCHGDAC);
2986#else
2987 snd_cmipci_clear_bit(cm, CM_REG_MISC_CTRL, CM_XCHGDAC);
2988#endif
Clemens Ladisch4ee72712007-09-17 09:37:19 +02002989 if (cm->chip_version) {
2990 snd_cmipci_write_b(cm, CM_REG_EXT_MISC, 0x20); /* magic */
2991 snd_cmipci_write_b(cm, CM_REG_EXT_MISC + 1, 0x09); /* more magic */
2992 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002993 /* Set Bus Master Request */
2994 snd_cmipci_set_bit(cm, CM_REG_FUNCTRL1, CM_BREQ);
2995
2996 /* Assume TX and compatible chip set (Autodetection required for VX chip sets) */
2997 switch (pci->device) {
2998 case PCI_DEVICE_ID_CMEDIA_CM8738:
2999 case PCI_DEVICE_ID_CMEDIA_CM8738B:
3000 if (!pci_dev_present(intel_82437vx))
3001 snd_cmipci_set_bit(cm, CM_REG_MISC_CTRL, CM_TXVX);
3002 break;
3003 default:
3004 break;
3005 }
3006
Clemens Ladischd6426252007-08-27 09:22:31 +02003007 if (cm->chip_version < 68) {
3008 val = pci->device < 0x110 ? 8338 : 8738;
Clemens Ladischd6426252007-08-27 09:22:31 +02003009 } else {
3010 switch (snd_cmipci_read_b(cm, CM_REG_INT_HLDCLR + 3) & 0x03) {
3011 case 0:
3012 val = 8769;
3013 break;
3014 case 2:
3015 val = 8762;
3016 break;
3017 default:
3018 switch ((pci->subsystem_vendor << 16) |
3019 pci->subsystem_device) {
3020 case 0x13f69761:
3021 case 0x584d3741:
3022 case 0x584d3751:
3023 case 0x584d3761:
3024 case 0x584d3771:
3025 case 0x72848384:
3026 val = 8770;
3027 break;
3028 default:
3029 val = 8768;
3030 break;
3031 }
3032 }
Clemens Ladischd6426252007-08-27 09:22:31 +02003033 }
Clemens Ladischb7e054a2007-09-03 09:56:45 +02003034 sprintf(card->shortname, "C-Media CMI%d", val);
3035 if (cm->chip_version < 68)
3036 sprintf(modelstr, " (model %d)", cm->chip_version);
3037 else
3038 modelstr[0] = '\0';
3039 sprintf(card->longname, "%s%s at %#lx, irq %i",
3040 card->shortname, modelstr, cm->iobase, cm->irq);
Clemens Ladisch1e02d6e2007-08-21 08:58:35 +02003041
Linus Torvalds1da177e2005-04-16 15:20:36 -07003042 if ((err = snd_device_new(card, SNDRV_DEV_LOWLEVEL, cm, &ops)) < 0) {
3043 snd_cmipci_free(cm);
3044 return err;
3045 }
3046
Clemens Ladischc78c9502007-09-03 09:55:49 +02003047 if (cm->chip_version >= 39) {
Clemens Ladischc9116ae2007-08-24 09:18:04 +02003048 val = snd_cmipci_read_b(cm, CM_REG_MPU_PCI + 1);
3049 if (val != 0x00 && val != 0xff) {
3050 iomidi = cm->iobase + CM_REG_MPU_PCI;
3051 integrated_midi = 1;
3052 }
3053 }
3054 if (!integrated_midi) {
Clemens Ladischc78c9502007-09-03 09:55:49 +02003055 val = 0;
Clemens Ladisch5747e542005-09-14 08:33:46 +02003056 iomidi = mpu_port[dev];
3057 switch (iomidi) {
3058 case 0x320: val = CM_VMPU_320; break;
3059 case 0x310: val = CM_VMPU_310; break;
3060 case 0x300: val = CM_VMPU_300; break;
3061 case 0x330: val = CM_VMPU_330; break;
3062 default:
3063 iomidi = 0; break;
3064 }
3065 if (iomidi > 0) {
3066 snd_cmipci_write(cm, CM_REG_LEGACY_CTRL, val);
3067 /* enable UART */
3068 snd_cmipci_set_bit(cm, CM_REG_FUNCTRL1, CM_UART_EN);
Clemens Ladisch88039812007-09-03 09:56:23 +02003069 if (inb(iomidi + 1) == 0xff) {
3070 snd_printk(KERN_ERR "cannot enable MPU-401 port"
3071 " at %#lx\n", iomidi);
3072 snd_cmipci_clear_bit(cm, CM_REG_FUNCTRL1,
3073 CM_UART_EN);
3074 iomidi = 0;
3075 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003076 }
3077 }
Clemens Ladisch5747e542005-09-14 08:33:46 +02003078
Clemens Ladisch45c41b42007-08-22 09:45:03 +02003079 if (cm->chip_version < 68) {
3080 err = snd_cmipci_create_fm(cm, fm_port[dev]);
3081 if (err < 0)
3082 return err;
3083 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003084
3085 /* reset mixer */
3086 snd_cmipci_mixer_write(cm, 0, 0);
3087
3088 snd_cmipci_proc_init(cm);
3089
3090 /* create pcm devices */
3091 pcm_index = pcm_spdif_index = 0;
3092 if ((err = snd_cmipci_pcm_new(cm, pcm_index)) < 0)
3093 return err;
3094 pcm_index++;
Clemens Ladischb080ebb2007-08-27 09:21:02 +02003095 if ((err = snd_cmipci_pcm2_new(cm, pcm_index)) < 0)
3096 return err;
3097 pcm_index++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003098 if (cm->can_ac3_hw || cm->can_ac3_sw) {
3099 pcm_spdif_index = pcm_index;
3100 if ((err = snd_cmipci_pcm_spdif_new(cm, pcm_index)) < 0)
3101 return err;
3102 }
3103
3104 /* create mixer interface & switches */
3105 if ((err = snd_cmipci_mixer_new(cm, pcm_spdif_index)) < 0)
3106 return err;
3107
3108 if (iomidi > 0) {
3109 if ((err = snd_mpu401_uart_new(card, 0, MPU401_HW_CMIPCI,
Takashi Iwai302e4c22006-05-23 13:24:30 +02003110 iomidi,
3111 (integrated_midi ?
3112 MPU401_INFO_INTEGRATED : 0),
Linus Torvalds1da177e2005-04-16 15:20:36 -07003113 cm->irq, 0, &cm->rmidi)) < 0) {
3114 printk(KERN_ERR "cmipci: no UART401 device at 0x%lx\n", iomidi);
3115 }
3116 }
3117
3118#ifdef USE_VAR48KRATE
3119 for (val = 0; val < ARRAY_SIZE(rates); val++)
3120 snd_cmipci_set_pll(cm, rates[val], val);
3121
3122 /*
3123 * (Re-)Enable external switch spdo_48k
3124 */
3125 snd_cmipci_set_bit(cm, CM_REG_MISC_CTRL, CM_SPDIF48K|CM_SPDF_AC97);
3126#endif /* USE_VAR48KRATE */
3127
3128 if (snd_cmipci_create_gameport(cm, dev) < 0)
3129 snd_cmipci_clear_bit(cm, CM_REG_FUNCTRL1, CM_JYSTK_EN);
3130
3131 snd_card_set_dev(card, &pci->dev);
3132
3133 *rcmipci = cm;
3134 return 0;
3135}
3136
3137/*
3138 */
3139
3140MODULE_DEVICE_TABLE(pci, snd_cmipci_ids);
3141
3142static int __devinit snd_cmipci_probe(struct pci_dev *pci,
3143 const struct pci_device_id *pci_id)
3144{
3145 static int dev;
Takashi Iwai2cbdb682005-11-17 15:03:13 +01003146 struct snd_card *card;
3147 struct cmipci *cm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003148 int err;
3149
3150 if (dev >= SNDRV_CARDS)
3151 return -ENODEV;
3152 if (! enable[dev]) {
3153 dev++;
3154 return -ENOENT;
3155 }
3156
3157 card = snd_card_new(index[dev], id[dev], THIS_MODULE, 0);
3158 if (card == NULL)
3159 return -ENOMEM;
3160
3161 switch (pci->device) {
3162 case PCI_DEVICE_ID_CMEDIA_CM8738:
3163 case PCI_DEVICE_ID_CMEDIA_CM8738B:
3164 strcpy(card->driver, "CMI8738");
3165 break;
3166 case PCI_DEVICE_ID_CMEDIA_CM8338A:
3167 case PCI_DEVICE_ID_CMEDIA_CM8338B:
3168 strcpy(card->driver, "CMI8338");
3169 break;
3170 default:
3171 strcpy(card->driver, "CMIPCI");
3172 break;
3173 }
3174
3175 if ((err = snd_cmipci_create(card, pci, dev, &cm)) < 0) {
3176 snd_card_free(card);
3177 return err;
3178 }
Takashi Iwaicb60e5f2005-11-17 16:14:49 +01003179 card->private_data = cm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003180
Linus Torvalds1da177e2005-04-16 15:20:36 -07003181 if ((err = snd_card_register(card)) < 0) {
3182 snd_card_free(card);
3183 return err;
3184 }
3185 pci_set_drvdata(pci, card);
3186 dev++;
3187 return 0;
3188
3189}
3190
3191static void __devexit snd_cmipci_remove(struct pci_dev *pci)
3192{
3193 snd_card_free(pci_get_drvdata(pci));
3194 pci_set_drvdata(pci, NULL);
3195}
3196
3197
Takashi Iwaicb60e5f2005-11-17 16:14:49 +01003198#ifdef CONFIG_PM
3199/*
3200 * power management
3201 */
3202static unsigned char saved_regs[] = {
3203 CM_REG_FUNCTRL1, CM_REG_CHFORMAT, CM_REG_LEGACY_CTRL, CM_REG_MISC_CTRL,
3204 CM_REG_MIXER0, CM_REG_MIXER1, CM_REG_MIXER2, CM_REG_MIXER3, CM_REG_PLL,
3205 CM_REG_CH0_FRAME1, CM_REG_CH0_FRAME2,
3206 CM_REG_CH1_FRAME1, CM_REG_CH1_FRAME2, CM_REG_EXT_MISC,
3207 CM_REG_INT_STATUS, CM_REG_INT_HLDCLR, CM_REG_FUNCTRL0,
3208};
3209
3210static unsigned char saved_mixers[] = {
3211 SB_DSP4_MASTER_DEV, SB_DSP4_MASTER_DEV + 1,
3212 SB_DSP4_PCM_DEV, SB_DSP4_PCM_DEV + 1,
3213 SB_DSP4_SYNTH_DEV, SB_DSP4_SYNTH_DEV + 1,
3214 SB_DSP4_CD_DEV, SB_DSP4_CD_DEV + 1,
3215 SB_DSP4_LINE_DEV, SB_DSP4_LINE_DEV + 1,
3216 SB_DSP4_MIC_DEV, SB_DSP4_SPEAKER_DEV,
3217 CM_REG_EXTENT_IND, SB_DSP4_OUTPUT_SW,
3218 SB_DSP4_INPUT_LEFT, SB_DSP4_INPUT_RIGHT,
3219};
3220
3221static int snd_cmipci_suspend(struct pci_dev *pci, pm_message_t state)
3222{
3223 struct snd_card *card = pci_get_drvdata(pci);
3224 struct cmipci *cm = card->private_data;
3225 int i;
3226
3227 snd_power_change_state(card, SNDRV_CTL_POWER_D3hot);
3228
3229 snd_pcm_suspend_all(cm->pcm);
3230 snd_pcm_suspend_all(cm->pcm2);
3231 snd_pcm_suspend_all(cm->pcm_spdif);
3232
3233 /* save registers */
3234 for (i = 0; i < ARRAY_SIZE(saved_regs); i++)
3235 cm->saved_regs[i] = snd_cmipci_read(cm, saved_regs[i]);
3236 for (i = 0; i < ARRAY_SIZE(saved_mixers); i++)
3237 cm->saved_mixers[i] = snd_cmipci_mixer_read(cm, saved_mixers[i]);
3238
3239 /* disable ints */
3240 snd_cmipci_write(cm, CM_REG_INT_HLDCLR, 0);
3241
Takashi Iwaicb60e5f2005-11-17 16:14:49 +01003242 pci_disable_device(pci);
3243 pci_save_state(pci);
Takashi Iwai30b35392006-10-11 18:52:53 +02003244 pci_set_power_state(pci, pci_choose_state(pci, state));
Takashi Iwaicb60e5f2005-11-17 16:14:49 +01003245 return 0;
3246}
3247
3248static int snd_cmipci_resume(struct pci_dev *pci)
3249{
3250 struct snd_card *card = pci_get_drvdata(pci);
3251 struct cmipci *cm = card->private_data;
3252 int i;
3253
Takashi Iwaicb60e5f2005-11-17 16:14:49 +01003254 pci_set_power_state(pci, PCI_D0);
Takashi Iwai30b35392006-10-11 18:52:53 +02003255 pci_restore_state(pci);
3256 if (pci_enable_device(pci) < 0) {
3257 printk(KERN_ERR "cmipci: pci_enable_device failed, "
3258 "disabling device\n");
3259 snd_card_disconnect(card);
3260 return -EIO;
3261 }
Takashi Iwaicb60e5f2005-11-17 16:14:49 +01003262 pci_set_master(pci);
3263
3264 /* reset / initialize to a sane state */
3265 snd_cmipci_write(cm, CM_REG_INT_HLDCLR, 0);
3266 snd_cmipci_ch_reset(cm, CM_CH_PLAY);
3267 snd_cmipci_ch_reset(cm, CM_CH_CAPT);
3268 snd_cmipci_mixer_write(cm, 0, 0);
3269
3270 /* restore registers */
3271 for (i = 0; i < ARRAY_SIZE(saved_regs); i++)
3272 snd_cmipci_write(cm, saved_regs[i], cm->saved_regs[i]);
3273 for (i = 0; i < ARRAY_SIZE(saved_mixers); i++)
3274 snd_cmipci_mixer_write(cm, saved_mixers[i], cm->saved_mixers[i]);
3275
3276 snd_power_change_state(card, SNDRV_CTL_POWER_D0);
3277 return 0;
3278}
3279#endif /* CONFIG_PM */
3280
Linus Torvalds1da177e2005-04-16 15:20:36 -07003281static struct pci_driver driver = {
3282 .name = "C-Media PCI",
3283 .id_table = snd_cmipci_ids,
3284 .probe = snd_cmipci_probe,
3285 .remove = __devexit_p(snd_cmipci_remove),
Takashi Iwaicb60e5f2005-11-17 16:14:49 +01003286#ifdef CONFIG_PM
3287 .suspend = snd_cmipci_suspend,
3288 .resume = snd_cmipci_resume,
3289#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003290};
3291
3292static int __init alsa_card_cmipci_init(void)
3293{
Takashi Iwai01d25d42005-04-11 16:58:24 +02003294 return pci_register_driver(&driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003295}
3296
3297static void __exit alsa_card_cmipci_exit(void)
3298{
3299 pci_unregister_driver(&driver);
3300}
3301
3302module_init(alsa_card_cmipci_init)
3303module_exit(alsa_card_cmipci_exit)