blob: d1f23ebed2ae5608a92666803c0db3dfc54a39b0 [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
Timofei Bondarenko755c48a2007-10-31 17:36:20 +0100153#define CM_CH0_SRATE_128K 0x00000300
154#define CM_CH0_SRATE_MASK 0x00000300
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155
156#define CM_SPDIF_INVERSE2 0x00000080 /* model 055? */
Clemens Ladischa839a332007-09-17 09:35:46 +0200157#define CM_DBLSPDS 0x00000040 /* double SPDIF sample rate 88.2/96 */
158#define CM_POLVALID 0x00000020 /* inverse SPDIF/IN valid bit */
159#define CM_SPDLOCKED 0x00000010
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
Clemens Ladischa839a332007-09-17 09:35:46 +0200161#define CM_CH1FMT_MASK 0x0000000C /* bit 3: 16 bits, bit 2: stereo */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162#define CM_CH1FMT_SHIFT 2
Clemens Ladischa839a332007-09-17 09:35:46 +0200163#define CM_CH0FMT_MASK 0x00000003 /* bit 1: 16 bits, bit 0: stereo */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164#define CM_CH0FMT_SHIFT 0
165
166#define CM_REG_INT_HLDCLR 0x0C
167#define CM_CHIP_MASK2 0xff000000
Clemens Ladischa839a332007-09-17 09:35:46 +0200168#define CM_CHIP_8768 0x20000000
169#define CM_CHIP_055 0x08000000
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170#define CM_CHIP_039 0x04000000
171#define CM_CHIP_039_6CH 0x01000000
Clemens Ladischa839a332007-09-17 09:35:46 +0200172#define CM_UNKNOWN_INT_EN 0x00080000 /* ? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173#define CM_TDMA_INT_EN 0x00040000
174#define CM_CH1_INT_EN 0x00020000
175#define CM_CH0_INT_EN 0x00010000
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176
177#define CM_REG_INT_STATUS 0x10
178#define CM_INTR 0x80000000
179#define CM_VCO 0x08000000 /* Voice Control? CMI8738 */
180#define CM_MCBINT 0x04000000 /* Master Control Block abort cond.? */
181#define CM_UARTINT 0x00010000
182#define CM_LTDMAINT 0x00008000
183#define CM_HTDMAINT 0x00004000
184#define CM_XDO46 0x00000080 /* Modell 033? Direct programming EEPROM (read data register) */
185#define CM_LHBTOG 0x00000040 /* High/Low status from DMA ctrl register */
186#define CM_LEG_HDMA 0x00000020 /* Legacy is in High DMA channel */
187#define CM_LEG_STEREO 0x00000010 /* Legacy is in Stereo mode */
188#define CM_CH1BUSY 0x00000008
189#define CM_CH0BUSY 0x00000004
190#define CM_CHINT1 0x00000002
191#define CM_CHINT0 0x00000001
192
193#define CM_REG_LEGACY_CTRL 0x14
Clemens Ladischa839a332007-09-17 09:35:46 +0200194#define CM_NXCHG 0x80000000 /* don't map base reg dword->sample */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195#define CM_VMPU_MASK 0x60000000 /* MPU401 i/o port address */
196#define CM_VMPU_330 0x00000000
197#define CM_VMPU_320 0x20000000
198#define CM_VMPU_310 0x40000000
199#define CM_VMPU_300 0x60000000
Clemens Ladischa839a332007-09-17 09:35:46 +0200200#define CM_ENWR8237 0x10000000 /* enable bus master to write 8237 base reg */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201#define CM_VSBSEL_MASK 0x0C000000 /* SB16 base address */
202#define CM_VSBSEL_220 0x00000000
203#define CM_VSBSEL_240 0x04000000
204#define CM_VSBSEL_260 0x08000000
205#define CM_VSBSEL_280 0x0C000000
206#define CM_FMSEL_MASK 0x03000000 /* FM OPL3 base address */
207#define CM_FMSEL_388 0x00000000
208#define CM_FMSEL_3C8 0x01000000
209#define CM_FMSEL_3E0 0x02000000
210#define CM_FMSEL_3E8 0x03000000
Clemens Ladischa839a332007-09-17 09:35:46 +0200211#define CM_ENSPDOUT 0x00800000 /* enable XSPDIF/OUT to I/O interface */
212#define CM_SPDCOPYRHT 0x00400000 /* spdif in/out copyright bit */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213#define CM_DAC2SPDO 0x00200000 /* enable wave+fm_midi -> SPDIF/OUT */
Clemens Ladischa839a332007-09-17 09:35:46 +0200214#define CM_INVIDWEN 0x00100000 /* internal vendor ID write enable, model 039? */
215#define CM_SETRETRY 0x00100000 /* 0: legacy i/o wait (default), 1: legacy i/o bus retry */
216#define CM_C_EEACCESS 0x00080000 /* direct programming eeprom regs */
217#define CM_C_EECS 0x00040000
218#define CM_C_EEDI46 0x00020000
219#define CM_C_EECK46 0x00010000
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220#define CM_CHB3D6C 0x00008000 /* 5.1 channels support */
Clemens Ladischa839a332007-09-17 09:35:46 +0200221#define CM_CENTR2LIN 0x00004000 /* line-in as center out */
222#define CM_BASE2LIN 0x00002000 /* line-in as bass out */
223#define CM_EXBASEN 0x00001000 /* external bass input enable */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224
225#define CM_REG_MISC_CTRL 0x18
Clemens Ladischa839a332007-09-17 09:35:46 +0200226#define CM_PWD 0x80000000 /* power down */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227#define CM_RESET 0x40000000
Clemens Ladischa839a332007-09-17 09:35:46 +0200228#define CM_SFIL_MASK 0x30000000 /* filter control at front end DAC, model 037? */
229#define CM_VMGAIN 0x10000000 /* analog master amp +6dB, model 039? */
230#define CM_TXVX 0x08000000 /* model 037? */
231#define CM_N4SPK3D 0x04000000 /* copy front to rear */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232#define CM_SPDO5V 0x02000000 /* 5V spdif output (1 = 0.5v (coax)) */
233#define CM_SPDIF48K 0x01000000 /* write */
234#define CM_SPATUS48K 0x01000000 /* read */
Clemens Ladischa839a332007-09-17 09:35:46 +0200235#define CM_ENDBDAC 0x00800000 /* enable double dac */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236#define CM_XCHGDAC 0x00400000 /* 0: front=ch0, 1: front=ch1 */
237#define CM_SPD32SEL 0x00200000 /* 0: 16bit SPDIF, 1: 32bit */
Clemens Ladischa839a332007-09-17 09:35:46 +0200238#define CM_SPDFLOOPI 0x00100000 /* int. SPDIF-OUT -> int. IN */
239#define CM_FM_EN 0x00080000 /* enable legacy FM */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240#define CM_AC3EN2 0x00040000 /* enable AC3: model 039 */
Clemens Ladischa839a332007-09-17 09:35:46 +0200241#define CM_ENWRASID 0x00010000 /* choose writable internal SUBID (audio) */
242#define CM_VIDWPDSB 0x00010000 /* model 037? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243#define CM_SPDF_AC97 0x00008000 /* 0: SPDIF/OUT 44.1K, 1: 48K */
Clemens Ladischa839a332007-09-17 09:35:46 +0200244#define CM_MASK_EN 0x00004000 /* activate channel mask on legacy DMA */
245#define CM_ENWRMSID 0x00002000 /* choose writable internal SUBID (modem) */
246#define CM_VIDWPPRT 0x00002000 /* model 037? */
247#define CM_SFILENB 0x00001000 /* filter stepping at front end DAC, model 037? */
248#define CM_MMODE_MASK 0x00000E00 /* model DAA interface mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249#define CM_SPDIF_SELECT2 0x00000100 /* for model > 039 ? */
250#define CM_ENCENTER 0x00000080
Clemens Ladisch56c36ca2007-10-30 08:59:14 +0100251#define CM_FLINKON 0x00000040 /* force modem link detection on, model 037 */
Clemens Ladischa839a332007-09-17 09:35:46 +0200252#define CM_MUTECH1 0x00000040 /* mute PCI ch1 to DAC */
Clemens Ladisch56c36ca2007-10-30 08:59:14 +0100253#define CM_FLINKOFF 0x00000020 /* force modem link detection off, model 037 */
Clemens Ladischa839a332007-09-17 09:35:46 +0200254#define CM_MIDSMP 0x00000010 /* 1/2 interpolation at front end DAC */
255#define CM_UPDDMA_MASK 0x0000000C /* TDMA position update notification */
256#define CM_UPDDMA_2048 0x00000000
257#define CM_UPDDMA_1024 0x00000004
258#define CM_UPDDMA_512 0x00000008
259#define CM_UPDDMA_256 0x0000000C
260#define CM_TWAIT_MASK 0x00000003 /* model 037 */
261#define CM_TWAIT1 0x00000002 /* FM i/o cycle, 0: 48, 1: 64 PCICLKs */
262#define CM_TWAIT0 0x00000001 /* i/o cycle, 0: 4, 1: 6 PCICLKs */
263
264#define CM_REG_TDMA_POSITION 0x1C
265#define CM_TDMA_CNT_MASK 0xFFFF0000 /* current byte/word count */
266#define CM_TDMA_ADR_MASK 0x0000FFFF /* current address */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267
268 /* byte */
269#define CM_REG_MIXER0 0x20
Clemens Ladischa839a332007-09-17 09:35:46 +0200270#define CM_REG_SBVR 0x20 /* write: sb16 version */
271#define CM_REG_DEV 0x20 /* read: hardware device version */
272
273#define CM_REG_MIXER21 0x21
274#define CM_UNKNOWN_21_MASK 0x78 /* ? */
275#define CM_X_ADPCM 0x04 /* SB16 ADPCM enable */
276#define CM_PROINV 0x02 /* SBPro left/right channel switching */
277#define CM_X_SB16 0x01 /* SB16 compatible */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278
279#define CM_REG_SB16_DATA 0x22
280#define CM_REG_SB16_ADDR 0x23
281
282#define CM_REFFREQ_XIN (315*1000*1000)/22 /* 14.31818 Mhz reference clock frequency pin XIN */
283#define CM_ADCMULT_XIN 512 /* Guessed (487 best for 44.1kHz, not for 88/176kHz) */
284#define CM_TOLERANCE_RATE 0.001 /* Tolerance sample rate pitch (1000ppm) */
285#define CM_MAXIMUM_RATE 80000000 /* Note more than 80MHz */
286
287#define CM_REG_MIXER1 0x24
288#define CM_FMMUTE 0x80 /* mute FM */
289#define CM_FMMUTE_SHIFT 7
290#define CM_WSMUTE 0x40 /* mute PCM */
291#define CM_WSMUTE_SHIFT 6
Clemens Ladischa839a332007-09-17 09:35:46 +0200292#define CM_REAR2LIN 0x20 /* lin-in -> rear line out */
293#define CM_REAR2LIN_SHIFT 5
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294#define CM_REAR2FRONT 0x10 /* exchange rear/front */
295#define CM_REAR2FRONT_SHIFT 4
296#define CM_WAVEINL 0x08 /* digital wave rec. left chan */
297#define CM_WAVEINL_SHIFT 3
298#define CM_WAVEINR 0x04 /* digical wave rec. right */
299#define CM_WAVEINR_SHIFT 2
300#define CM_X3DEN 0x02 /* 3D surround enable */
301#define CM_X3DEN_SHIFT 1
302#define CM_CDPLAY 0x01 /* enable SPDIF/IN PCM -> DAC */
303#define CM_CDPLAY_SHIFT 0
304
305#define CM_REG_MIXER2 0x25
306#define CM_RAUXREN 0x80 /* AUX right capture */
307#define CM_RAUXREN_SHIFT 7
308#define CM_RAUXLEN 0x40 /* AUX left capture */
309#define CM_RAUXLEN_SHIFT 6
310#define CM_VAUXRM 0x20 /* AUX right mute */
311#define CM_VAUXRM_SHIFT 5
312#define CM_VAUXLM 0x10 /* AUX left mute */
313#define CM_VAUXLM_SHIFT 4
314#define CM_VADMIC_MASK 0x0e /* mic gain level (0-3) << 1 */
315#define CM_VADMIC_SHIFT 1
316#define CM_MICGAINZ 0x01 /* mic boost */
317#define CM_MICGAINZ_SHIFT 0
318
Takashi Iwaicb60e5f2005-11-17 16:14:49 +0100319#define CM_REG_MIXER3 0x24
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320#define CM_REG_AUX_VOL 0x26
321#define CM_VAUXL_MASK 0xf0
322#define CM_VAUXR_MASK 0x0f
323
324#define CM_REG_MISC 0x27
Clemens Ladischa839a332007-09-17 09:35:46 +0200325#define CM_UNKNOWN_27_MASK 0xd8 /* ? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326#define CM_XGPO1 0x20
327// #define CM_XGPBIO 0x04
328#define CM_MIC_CENTER_LFE 0x04 /* mic as center/lfe out? (model 039 or later?) */
329#define CM_SPDIF_INVERSE 0x04 /* spdif input phase inverse (model 037) */
330#define CM_SPDVALID 0x02 /* spdif input valid check */
Clemens Ladischa839a332007-09-17 09:35:46 +0200331#define CM_DMAUTO 0x01 /* SB16 DMA auto detect */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332
333#define CM_REG_AC97 0x28 /* hmmm.. do we have ac97 link? */
334/*
335 * For CMI-8338 (0x28 - 0x2b) .. is this valid for CMI-8738
336 * or identical with AC97 codec?
337 */
338#define CM_REG_EXTERN_CODEC CM_REG_AC97
339
340/*
341 * MPU401 pci port index address 0x40 - 0x4f (CMI-8738 spec ver. 0.6)
342 */
343#define CM_REG_MPU_PCI 0x40
344
345/*
346 * FM pci port index address 0x50 - 0x5f (CMI-8738 spec ver. 0.6)
347 */
348#define CM_REG_FM_PCI 0x50
349
350/*
Takashi Iwai2eff7ec2005-06-30 13:45:20 +0200351 * access from SB-mixer port
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 */
353#define CM_REG_EXTENT_IND 0xf0
354#define CM_VPHONE_MASK 0xe0 /* Phone volume control (0-3) << 5 */
355#define CM_VPHONE_SHIFT 5
356#define CM_VPHOM 0x10 /* Phone mute control */
357#define CM_VSPKM 0x08 /* Speaker mute control, default high */
358#define CM_RLOOPREN 0x04 /* Rec. R-channel enable */
359#define CM_RLOOPLEN 0x02 /* Rec. L-channel enable */
Takashi Iwai2eff7ec2005-06-30 13:45:20 +0200360#define CM_VADMIC3 0x01 /* Mic record boost */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361
362/*
363 * CMI-8338 spec ver 0.5 (this is not valid for CMI-8738):
364 * the 8 registers 0xf8 - 0xff are used for programming m/n counter by the PLL
365 * unit (readonly?).
366 */
367#define CM_REG_PLL 0xf8
368
369/*
370 * extended registers
371 */
Clemens Ladischa839a332007-09-17 09:35:46 +0200372#define CM_REG_CH0_FRAME1 0x80 /* write: base address */
373#define CM_REG_CH0_FRAME2 0x84 /* read: current address */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374#define CM_REG_CH1_FRAME1 0x88 /* 0-15: count of samples at bus master; buffer size */
375#define CM_REG_CH1_FRAME2 0x8C /* 16-31: count of samples at codec; fragment size */
Clemens Ladischa839a332007-09-17 09:35:46 +0200376
Takashi Iwaicb60e5f2005-11-17 16:14:49 +0100377#define CM_REG_EXT_MISC 0x90
Clemens Ladischa839a332007-09-17 09:35:46 +0200378#define CM_ADC48K44K 0x10000000 /* ADC parameters group, 0: 44k, 1: 48k */
379#define CM_CHB3D8C 0x00200000 /* 7.1 channels support */
380#define CM_SPD32FMT 0x00100000 /* SPDIF/IN 32k sample rate */
381#define CM_ADC2SPDIF 0x00080000 /* ADC output to SPDIF/OUT */
382#define CM_SHAREADC 0x00040000 /* DAC in ADC as Center/LFE */
383#define CM_REALTCMP 0x00020000 /* monitor the CMPL/CMPR of ADC */
384#define CM_INVLRCK 0x00010000 /* invert ZVPORT's LRCK */
385#define CM_UNKNOWN_90_MASK 0x0000FFFF /* ? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386
387/*
388 * size of i/o region
389 */
390#define CM_EXTENT_CODEC 0x100
391#define CM_EXTENT_MIDI 0x2
392#define CM_EXTENT_SYNTH 0x4
393
394
395/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 * channels for playback / capture
397 */
398#define CM_CH_PLAY 0
399#define CM_CH_CAPT 1
400
401/*
402 * flags to check device open/close
403 */
404#define CM_OPEN_NONE 0
405#define CM_OPEN_CH_MASK 0x01
406#define CM_OPEN_DAC 0x10
407#define CM_OPEN_ADC 0x20
408#define CM_OPEN_SPDIF 0x40
409#define CM_OPEN_MCHAN 0x80
410#define CM_OPEN_PLAYBACK (CM_CH_PLAY | CM_OPEN_DAC)
411#define CM_OPEN_PLAYBACK2 (CM_CH_CAPT | CM_OPEN_DAC)
412#define CM_OPEN_PLAYBACK_MULTI (CM_CH_PLAY | CM_OPEN_DAC | CM_OPEN_MCHAN)
413#define CM_OPEN_CAPTURE (CM_CH_CAPT | CM_OPEN_ADC)
414#define CM_OPEN_SPDIF_PLAYBACK (CM_CH_PLAY | CM_OPEN_DAC | CM_OPEN_SPDIF)
415#define CM_OPEN_SPDIF_CAPTURE (CM_CH_CAPT | CM_OPEN_ADC | CM_OPEN_SPDIF)
416
417
418#if CM_CH_PLAY == 1
419#define CM_PLAYBACK_SRATE_176K CM_CH1_SRATE_176K
420#define CM_PLAYBACK_SPDF CM_SPDF_1
421#define CM_CAPTURE_SPDF CM_SPDF_0
422#else
423#define CM_PLAYBACK_SRATE_176K CM_CH0_SRATE_176K
424#define CM_PLAYBACK_SPDF CM_SPDF_0
425#define CM_CAPTURE_SPDF CM_SPDF_1
426#endif
427
428
429/*
430 * driver data
431 */
432
Takashi Iwai2cbdb682005-11-17 15:03:13 +0100433struct cmipci_pcm {
434 struct snd_pcm_substream *substream;
Clemens Ladischebe9e282007-09-17 09:40:57 +0200435 u8 running; /* dac/adc running? */
436 u8 fmt; /* format bits */
437 u8 is_dac;
Clemens Ladischc36fd8c2007-09-17 09:41:36 +0200438 u8 needs_silencing;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 unsigned int dma_size; /* in frames */
Clemens Ladischebe9e282007-09-17 09:40:57 +0200440 unsigned int shift;
441 unsigned int ch; /* channel (0/1) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 unsigned int offset; /* physical address of the buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443};
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;
Timofei Bondarenko755c48a2007-10-31 17:36:20 +0100478 unsigned int can_96k: 1; /* samplerate above 48k */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 unsigned int do_soft_ac3: 1;
480
481 unsigned int spdif_playback_avail: 1; /* spdif ready? */
482 unsigned int spdif_playback_enabled: 1; /* spdif switch enabled? */
483 int spdif_counter; /* for software AC3 */
484
485 unsigned int dig_status;
486 unsigned int dig_pcm_status;
487
Takashi Iwai2cbdb682005-11-17 15:03:13 +0100488 struct snd_pcm_hardware *hw_info[3]; /* for playbacks */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489
490 int opened[2]; /* open mode */
Ingo Molnar62932df2006-01-16 16:34:20 +0100491 struct mutex open_mutex;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492
493 unsigned int mixer_insensitive: 1;
Takashi Iwai2cbdb682005-11-17 15:03:13 +0100494 struct snd_kcontrol *mixer_res_ctl[CM_SAVED_MIXERS];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 int mixer_res_status[CM_SAVED_MIXERS];
496
Takashi Iwai2cbdb682005-11-17 15:03:13 +0100497 struct cmipci_pcm channel[2]; /* ch0 - DAC, ch1 - ADC or 2nd DAC */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498
499 /* external MIDI */
Takashi Iwai2cbdb682005-11-17 15:03:13 +0100500 struct snd_rawmidi *rmidi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501
502#ifdef SUPPORT_JOYSTICK
503 struct gameport *gameport;
504#endif
505
506 spinlock_t reg_lock;
Takashi Iwaicb60e5f2005-11-17 16:14:49 +0100507
508#ifdef CONFIG_PM
509 unsigned int saved_regs[0x20];
510 unsigned char saved_mixers[0x20];
511#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512};
513
514
515/* read/write operations for dword register */
Takashi Iwai2cbdb682005-11-17 15:03:13 +0100516static inline void snd_cmipci_write(struct cmipci *cm, unsigned int cmd, unsigned int data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517{
518 outl(data, cm->iobase + cmd);
519}
Jesper Juhl77933d72005-07-27 11:46:09 -0700520
Takashi Iwai2cbdb682005-11-17 15:03:13 +0100521static inline unsigned int snd_cmipci_read(struct cmipci *cm, unsigned int cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522{
523 return inl(cm->iobase + cmd);
524}
525
526/* read/write operations for word register */
Takashi Iwai2cbdb682005-11-17 15:03:13 +0100527static inline void snd_cmipci_write_w(struct cmipci *cm, unsigned int cmd, unsigned short data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528{
529 outw(data, cm->iobase + cmd);
530}
Jesper Juhl77933d72005-07-27 11:46:09 -0700531
Takashi Iwai2cbdb682005-11-17 15:03:13 +0100532static inline unsigned short snd_cmipci_read_w(struct cmipci *cm, unsigned int cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533{
534 return inw(cm->iobase + cmd);
535}
536
537/* read/write operations for byte register */
Takashi Iwai2cbdb682005-11-17 15:03:13 +0100538static inline void snd_cmipci_write_b(struct cmipci *cm, unsigned int cmd, unsigned char data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539{
540 outb(data, cm->iobase + cmd);
541}
542
Takashi Iwai2cbdb682005-11-17 15:03:13 +0100543static inline unsigned char snd_cmipci_read_b(struct cmipci *cm, unsigned int cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544{
545 return inb(cm->iobase + cmd);
546}
547
548/* bit operations for dword register */
Takashi Iwai2cbdb682005-11-17 15:03:13 +0100549static int snd_cmipci_set_bit(struct cmipci *cm, unsigned int cmd, unsigned int flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550{
Takashi Iwai01d25d42005-04-11 16:58:24 +0200551 unsigned int val, oval;
552 val = oval = inl(cm->iobase + cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 val |= flag;
Takashi Iwai01d25d42005-04-11 16:58:24 +0200554 if (val == oval)
555 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 outl(val, cm->iobase + cmd);
Takashi Iwai01d25d42005-04-11 16:58:24 +0200557 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558}
559
Takashi Iwai2cbdb682005-11-17 15:03:13 +0100560static int snd_cmipci_clear_bit(struct cmipci *cm, unsigned int cmd, unsigned int flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561{
Takashi Iwai01d25d42005-04-11 16:58:24 +0200562 unsigned int val, oval;
563 val = oval = inl(cm->iobase + cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 val &= ~flag;
Takashi Iwai01d25d42005-04-11 16:58:24 +0200565 if (val == oval)
566 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 outl(val, cm->iobase + cmd);
Takashi Iwai01d25d42005-04-11 16:58:24 +0200568 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569}
570
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571/* bit operations for byte register */
Takashi Iwai2cbdb682005-11-17 15:03:13 +0100572static int snd_cmipci_set_bit_b(struct cmipci *cm, unsigned int cmd, unsigned char flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573{
Takashi Iwai01d25d42005-04-11 16:58:24 +0200574 unsigned char val, oval;
575 val = oval = inb(cm->iobase + cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 val |= flag;
Takashi Iwai01d25d42005-04-11 16:58:24 +0200577 if (val == oval)
578 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 outb(val, cm->iobase + cmd);
Takashi Iwai01d25d42005-04-11 16:58:24 +0200580 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581}
582
Takashi Iwai2cbdb682005-11-17 15:03:13 +0100583static int snd_cmipci_clear_bit_b(struct cmipci *cm, unsigned int cmd, unsigned char flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584{
Takashi Iwai01d25d42005-04-11 16:58:24 +0200585 unsigned char val, oval;
586 val = oval = inb(cm->iobase + cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 val &= ~flag;
Takashi Iwai01d25d42005-04-11 16:58:24 +0200588 if (val == oval)
589 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 outb(val, cm->iobase + cmd);
Takashi Iwai01d25d42005-04-11 16:58:24 +0200591 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593
594
595/*
596 * PCM interface
597 */
598
599/*
600 * calculate frequency
601 */
602
603static unsigned int rates[] = { 5512, 11025, 22050, 44100, 8000, 16000, 32000, 48000 };
604
605static unsigned int snd_cmipci_rate_freq(unsigned int rate)
606{
607 unsigned int i;
Clemens Ladisch0f28eca2007-09-17 09:40:24 +0200608
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 for (i = 0; i < ARRAY_SIZE(rates); i++) {
610 if (rates[i] == rate)
611 return i;
612 }
613 snd_BUG();
614 return 0;
615}
616
617#ifdef USE_VAR48KRATE
618/*
619 * Determine PLL values for frequency setup, maybe the CMI8338 (CMI8738???)
620 * does it this way .. maybe not. Never get any information from C-Media about
621 * that <werner@suse.de>.
622 */
623static int snd_cmipci_pll_rmn(unsigned int rate, unsigned int adcmult, int *r, int *m, int *n)
624{
625 unsigned int delta, tolerance;
626 int xm, xn, xr;
627
628 for (*r = 0; rate < CM_MAXIMUM_RATE/adcmult; *r += (1<<5))
629 rate <<= 1;
630 *n = -1;
631 if (*r > 0xff)
632 goto out;
633 tolerance = rate*CM_TOLERANCE_RATE;
634
635 for (xn = (1+2); xn < (0x1f+2); xn++) {
636 for (xm = (1+2); xm < (0xff+2); xm++) {
637 xr = ((CM_REFFREQ_XIN/adcmult) * xm) / xn;
638
639 if (xr < rate)
640 delta = rate - xr;
641 else
642 delta = xr - rate;
643
644 /*
645 * If we found one, remember this,
646 * and try to find a closer one
647 */
648 if (delta < tolerance) {
649 tolerance = delta;
650 *m = xm - 2;
651 *n = xn - 2;
652 }
653 }
654 }
655out:
656 return (*n > -1);
657}
658
659/*
660 * Program pll register bits, I assume that the 8 registers 0xf8 upto 0xff
661 * are mapped onto the 8 ADC/DAC sampling frequency which can be choosen
662 * at the register CM_REG_FUNCTRL1 (0x04).
663 * Problem: other ways are also possible (any information about that?)
664 */
Takashi Iwai2cbdb682005-11-17 15:03:13 +0100665static void snd_cmipci_set_pll(struct cmipci *cm, unsigned int rate, unsigned int slot)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666{
667 unsigned int reg = CM_REG_PLL + slot;
668 /*
669 * Guess that this programs at reg. 0x04 the pos 15:13/12:10
670 * for DSFC/ASFC (000 upto 111).
671 */
672
673 /* FIXME: Init (Do we've to set an other register first before programming?) */
674
675 /* FIXME: Is this correct? Or shouldn't the m/n/r values be used for that? */
676 snd_cmipci_write_b(cm, reg, rate>>8);
677 snd_cmipci_write_b(cm, reg, rate&0xff);
678
679 /* FIXME: Setup (Do we've to set an other register first to enable this?) */
680}
681#endif /* USE_VAR48KRATE */
682
Takashi Iwai2cbdb682005-11-17 15:03:13 +0100683static int snd_cmipci_hw_params(struct snd_pcm_substream *substream,
684 struct snd_pcm_hw_params *hw_params)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685{
686 return snd_pcm_lib_malloc_pages(substream, params_buffer_bytes(hw_params));
687}
688
Takashi Iwai2cbdb682005-11-17 15:03:13 +0100689static int snd_cmipci_playback2_hw_params(struct snd_pcm_substream *substream,
690 struct snd_pcm_hw_params *hw_params)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691{
Takashi Iwai2cbdb682005-11-17 15:03:13 +0100692 struct cmipci *cm = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 if (params_channels(hw_params) > 2) {
Ingo Molnar62932df2006-01-16 16:34:20 +0100694 mutex_lock(&cm->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 if (cm->opened[CM_CH_PLAY]) {
Ingo Molnar62932df2006-01-16 16:34:20 +0100696 mutex_unlock(&cm->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 return -EBUSY;
698 }
699 /* reserve the channel A */
700 cm->opened[CM_CH_PLAY] = CM_OPEN_PLAYBACK_MULTI;
Ingo Molnar62932df2006-01-16 16:34:20 +0100701 mutex_unlock(&cm->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 }
703 return snd_pcm_lib_malloc_pages(substream, params_buffer_bytes(hw_params));
704}
705
Takashi Iwai2cbdb682005-11-17 15:03:13 +0100706static void snd_cmipci_ch_reset(struct cmipci *cm, int ch)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707{
708 int reset = CM_RST_CH0 << (cm->channel[ch].ch);
709 snd_cmipci_write(cm, CM_REG_FUNCTRL0, cm->ctrl | reset);
710 snd_cmipci_write(cm, CM_REG_FUNCTRL0, cm->ctrl & ~reset);
711 udelay(10);
712}
713
Takashi Iwai2cbdb682005-11-17 15:03:13 +0100714static int snd_cmipci_hw_free(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715{
716 return snd_pcm_lib_free_pages(substream);
717}
718
719
720/*
721 */
722
Clemens Ladisch35add1c2007-09-17 09:39:10 +0200723static unsigned int hw_channels[] = {1, 2, 4, 6, 8};
Takashi Iwai2cbdb682005-11-17 15:03:13 +0100724static struct snd_pcm_hw_constraint_list hw_constraints_channels_4 = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 .count = 3,
726 .list = hw_channels,
727 .mask = 0,
728};
Takashi Iwai2cbdb682005-11-17 15:03:13 +0100729static struct snd_pcm_hw_constraint_list hw_constraints_channels_6 = {
Clemens Ladisch35add1c2007-09-17 09:39:10 +0200730 .count = 4,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 .list = hw_channels,
732 .mask = 0,
733};
Takashi Iwai2cbdb682005-11-17 15:03:13 +0100734static struct snd_pcm_hw_constraint_list hw_constraints_channels_8 = {
Clemens Ladisch35add1c2007-09-17 09:39:10 +0200735 .count = 5,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 .list = hw_channels,
737 .mask = 0,
738};
739
Takashi Iwai2cbdb682005-11-17 15:03:13 +0100740static int set_dac_channels(struct cmipci *cm, struct cmipci_pcm *rec, int channels)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741{
742 if (channels > 2) {
Clemens Ladisch8ffbc012007-09-17 09:39:51 +0200743 if (!cm->can_multi_ch || !rec->ch)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 return -EINVAL;
745 if (rec->fmt != 0x03) /* stereo 16bit only */
746 return -EINVAL;
Clemens Ladisch8ffbc012007-09-17 09:39:51 +0200747 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748
Clemens Ladisch8ffbc012007-09-17 09:39:51 +0200749 if (cm->can_multi_ch) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 spin_lock_irq(&cm->reg_lock);
Clemens Ladisch8ffbc012007-09-17 09:39:51 +0200751 if (channels > 2) {
752 snd_cmipci_set_bit(cm, CM_REG_LEGACY_CTRL, CM_NXCHG);
753 snd_cmipci_set_bit(cm, CM_REG_MISC_CTRL, CM_XCHGDAC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 snd_cmipci_clear_bit(cm, CM_REG_LEGACY_CTRL, CM_NXCHG);
Clemens Ladisch8ffbc012007-09-17 09:39:51 +0200756 snd_cmipci_clear_bit(cm, CM_REG_MISC_CTRL, CM_XCHGDAC);
757 }
758 if (channels == 8)
759 snd_cmipci_set_bit(cm, CM_REG_EXT_MISC, CM_CHB3D8C);
760 else
761 snd_cmipci_clear_bit(cm, CM_REG_EXT_MISC, CM_CHB3D8C);
762 if (channels == 6) {
763 snd_cmipci_set_bit(cm, CM_REG_CHFORMAT, CM_CHB3D5C);
764 snd_cmipci_set_bit(cm, CM_REG_LEGACY_CTRL, CM_CHB3D6C);
765 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 snd_cmipci_clear_bit(cm, CM_REG_CHFORMAT, CM_CHB3D5C);
767 snd_cmipci_clear_bit(cm, CM_REG_LEGACY_CTRL, CM_CHB3D6C);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 }
Clemens Ladisch8ffbc012007-09-17 09:39:51 +0200769 if (channels == 4)
770 snd_cmipci_set_bit(cm, CM_REG_CHFORMAT, CM_CHB3D);
771 else
772 snd_cmipci_clear_bit(cm, CM_REG_CHFORMAT, CM_CHB3D);
773 spin_unlock_irq(&cm->reg_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 }
775 return 0;
776}
777
778
779/*
780 * prepare playback/capture channel
781 * channel to be used must have been set in rec->ch.
782 */
Takashi Iwai2cbdb682005-11-17 15:03:13 +0100783static int snd_cmipci_pcm_prepare(struct cmipci *cm, struct cmipci_pcm *rec,
784 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785{
Timofei Bondarenko755c48a2007-10-31 17:36:20 +0100786 unsigned int reg, freq, freq_ext, val;
Clemens Ladischebe9e282007-09-17 09:40:57 +0200787 unsigned int period_size;
Takashi Iwai2cbdb682005-11-17 15:03:13 +0100788 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789
790 rec->fmt = 0;
791 rec->shift = 0;
792 if (snd_pcm_format_width(runtime->format) >= 16) {
793 rec->fmt |= 0x02;
794 if (snd_pcm_format_width(runtime->format) > 16)
795 rec->shift++; /* 24/32bit */
796 }
797 if (runtime->channels > 1)
798 rec->fmt |= 0x01;
799 if (rec->is_dac && set_dac_channels(cm, rec, runtime->channels) < 0) {
800 snd_printd("cannot set dac channels\n");
801 return -EINVAL;
802 }
803
804 rec->offset = runtime->dma_addr;
805 /* buffer and period sizes in frame */
806 rec->dma_size = runtime->buffer_size << rec->shift;
Clemens Ladischebe9e282007-09-17 09:40:57 +0200807 period_size = runtime->period_size << rec->shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 if (runtime->channels > 2) {
809 /* multi-channels */
810 rec->dma_size = (rec->dma_size * runtime->channels) / 2;
Clemens Ladischebe9e282007-09-17 09:40:57 +0200811 period_size = (period_size * runtime->channels) / 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 }
813
814 spin_lock_irq(&cm->reg_lock);
815
816 /* set buffer address */
817 reg = rec->ch ? CM_REG_CH1_FRAME1 : CM_REG_CH0_FRAME1;
818 snd_cmipci_write(cm, reg, rec->offset);
819 /* program sample counts */
820 reg = rec->ch ? CM_REG_CH1_FRAME2 : CM_REG_CH0_FRAME2;
821 snd_cmipci_write_w(cm, reg, rec->dma_size - 1);
Clemens Ladischebe9e282007-09-17 09:40:57 +0200822 snd_cmipci_write_w(cm, reg + 2, period_size - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823
824 /* set adc/dac flag */
825 val = rec->ch ? CM_CHADC1 : CM_CHADC0;
826 if (rec->is_dac)
827 cm->ctrl &= ~val;
828 else
829 cm->ctrl |= val;
830 snd_cmipci_write(cm, CM_REG_FUNCTRL0, cm->ctrl);
831 //snd_printd("cmipci: functrl0 = %08x\n", cm->ctrl);
832
833 /* set sample rate */
Timofei Bondarenko755c48a2007-10-31 17:36:20 +0100834 freq = 0;
835 freq_ext = 0;
836 if (runtime->rate > 48000)
837 switch (runtime->rate) {
838 case 88200: freq_ext = CM_CH0_SRATE_88K; break;
839 case 96000: freq_ext = CM_CH0_SRATE_96K; break;
840 case 128000: freq_ext = CM_CH0_SRATE_128K; break;
841 default: snd_BUG(); break;
842 }
843 else
844 freq = snd_cmipci_rate_freq(runtime->rate);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 val = snd_cmipci_read(cm, CM_REG_FUNCTRL1);
846 if (rec->ch) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 val &= ~CM_DSFC_MASK;
848 val |= (freq << CM_DSFC_SHIFT) & CM_DSFC_MASK;
Clemens Ladischa839a332007-09-17 09:35:46 +0200849 } else {
850 val &= ~CM_ASFC_MASK;
851 val |= (freq << CM_ASFC_SHIFT) & CM_ASFC_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 }
853 snd_cmipci_write(cm, CM_REG_FUNCTRL1, val);
854 //snd_printd("cmipci: functrl1 = %08x\n", val);
855
856 /* set format */
857 val = snd_cmipci_read(cm, CM_REG_CHFORMAT);
858 if (rec->ch) {
859 val &= ~CM_CH1FMT_MASK;
860 val |= rec->fmt << CM_CH1FMT_SHIFT;
861 } else {
862 val &= ~CM_CH0FMT_MASK;
863 val |= rec->fmt << CM_CH0FMT_SHIFT;
864 }
Timofei Bondarenko755c48a2007-10-31 17:36:20 +0100865 if (cm->can_96k) {
866 val &= ~(CM_CH0_SRATE_MASK << (rec->ch * 2));
867 val |= freq_ext << (rec->ch * 2);
Clemens Ladisch8992e182007-09-03 09:54:55 +0200868 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 snd_cmipci_write(cm, CM_REG_CHFORMAT, val);
870 //snd_printd("cmipci: chformat = %08x\n", val);
871
Timofei Bondarenkofeb77712007-11-07 15:49:57 +0100872 if (!rec->is_dac && cm->chip_version) {
873 if (runtime->rate > 44100)
874 snd_cmipci_set_bit(cm, CM_REG_EXT_MISC, CM_ADC48K44K);
875 else
876 snd_cmipci_clear_bit(cm, CM_REG_EXT_MISC, CM_ADC48K44K);
877 }
878
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 rec->running = 0;
880 spin_unlock_irq(&cm->reg_lock);
881
882 return 0;
883}
884
885/*
886 * PCM trigger/stop
887 */
Takashi Iwai2cbdb682005-11-17 15:03:13 +0100888static int snd_cmipci_pcm_trigger(struct cmipci *cm, struct cmipci_pcm *rec,
Clemens Ladischebe9e282007-09-17 09:40:57 +0200889 int cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890{
891 unsigned int inthld, chen, reset, pause;
892 int result = 0;
893
894 inthld = CM_CH0_INT_EN << rec->ch;
895 chen = CM_CHEN0 << rec->ch;
896 reset = CM_RST_CH0 << rec->ch;
897 pause = CM_PAUSE0 << rec->ch;
898
899 spin_lock(&cm->reg_lock);
900 switch (cmd) {
901 case SNDRV_PCM_TRIGGER_START:
902 rec->running = 1;
903 /* set interrupt */
904 snd_cmipci_set_bit(cm, CM_REG_INT_HLDCLR, inthld);
905 cm->ctrl |= chen;
906 /* enable channel */
907 snd_cmipci_write(cm, CM_REG_FUNCTRL0, cm->ctrl);
908 //snd_printd("cmipci: functrl0 = %08x\n", cm->ctrl);
909 break;
910 case SNDRV_PCM_TRIGGER_STOP:
911 rec->running = 0;
912 /* disable interrupt */
913 snd_cmipci_clear_bit(cm, CM_REG_INT_HLDCLR, inthld);
914 /* reset */
915 cm->ctrl &= ~chen;
916 snd_cmipci_write(cm, CM_REG_FUNCTRL0, cm->ctrl | reset);
917 snd_cmipci_write(cm, CM_REG_FUNCTRL0, cm->ctrl & ~reset);
Clemens Ladischc36fd8c2007-09-17 09:41:36 +0200918 rec->needs_silencing = rec->is_dac;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 break;
920 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
Takashi Iwaicb60e5f2005-11-17 16:14:49 +0100921 case SNDRV_PCM_TRIGGER_SUSPEND:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 cm->ctrl |= pause;
923 snd_cmipci_write(cm, CM_REG_FUNCTRL0, cm->ctrl);
924 break;
925 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
Takashi Iwaicb60e5f2005-11-17 16:14:49 +0100926 case SNDRV_PCM_TRIGGER_RESUME:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 cm->ctrl &= ~pause;
928 snd_cmipci_write(cm, CM_REG_FUNCTRL0, cm->ctrl);
929 break;
930 default:
931 result = -EINVAL;
932 break;
933 }
934 spin_unlock(&cm->reg_lock);
935 return result;
936}
937
938/*
939 * return the current pointer
940 */
Takashi Iwai2cbdb682005-11-17 15:03:13 +0100941static snd_pcm_uframes_t snd_cmipci_pcm_pointer(struct cmipci *cm, struct cmipci_pcm *rec,
942 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943{
944 size_t ptr;
945 unsigned int reg;
946 if (!rec->running)
947 return 0;
948#if 1 // this seems better..
949 reg = rec->ch ? CM_REG_CH1_FRAME2 : CM_REG_CH0_FRAME2;
950 ptr = rec->dma_size - (snd_cmipci_read_w(cm, reg) + 1);
951 ptr >>= rec->shift;
952#else
953 reg = rec->ch ? CM_REG_CH1_FRAME1 : CM_REG_CH0_FRAME1;
954 ptr = snd_cmipci_read(cm, reg) - rec->offset;
955 ptr = bytes_to_frames(substream->runtime, ptr);
956#endif
957 if (substream->runtime->channels > 2)
958 ptr = (ptr * 2) / substream->runtime->channels;
959 return ptr;
960}
961
962/*
963 * playback
964 */
965
Takashi Iwai2cbdb682005-11-17 15:03:13 +0100966static int snd_cmipci_playback_trigger(struct snd_pcm_substream *substream,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 int cmd)
968{
Takashi Iwai2cbdb682005-11-17 15:03:13 +0100969 struct cmipci *cm = snd_pcm_substream_chip(substream);
Clemens Ladischebe9e282007-09-17 09:40:57 +0200970 return snd_cmipci_pcm_trigger(cm, &cm->channel[CM_CH_PLAY], cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971}
972
Takashi Iwai2cbdb682005-11-17 15:03:13 +0100973static snd_pcm_uframes_t snd_cmipci_playback_pointer(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974{
Takashi Iwai2cbdb682005-11-17 15:03:13 +0100975 struct cmipci *cm = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 return snd_cmipci_pcm_pointer(cm, &cm->channel[CM_CH_PLAY], substream);
977}
978
979
980
981/*
982 * capture
983 */
984
Takashi Iwai2cbdb682005-11-17 15:03:13 +0100985static int snd_cmipci_capture_trigger(struct snd_pcm_substream *substream,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 int cmd)
987{
Takashi Iwai2cbdb682005-11-17 15:03:13 +0100988 struct cmipci *cm = snd_pcm_substream_chip(substream);
Clemens Ladischebe9e282007-09-17 09:40:57 +0200989 return snd_cmipci_pcm_trigger(cm, &cm->channel[CM_CH_CAPT], cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990}
991
Takashi Iwai2cbdb682005-11-17 15:03:13 +0100992static snd_pcm_uframes_t snd_cmipci_capture_pointer(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993{
Takashi Iwai2cbdb682005-11-17 15:03:13 +0100994 struct cmipci *cm = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 return snd_cmipci_pcm_pointer(cm, &cm->channel[CM_CH_CAPT], substream);
996}
997
998
999/*
1000 * hw preparation for spdif
1001 */
1002
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001003static int snd_cmipci_spdif_default_info(struct snd_kcontrol *kcontrol,
1004 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005{
1006 uinfo->type = SNDRV_CTL_ELEM_TYPE_IEC958;
1007 uinfo->count = 1;
1008 return 0;
1009}
1010
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001011static int snd_cmipci_spdif_default_get(struct snd_kcontrol *kcontrol,
1012 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001014 struct cmipci *chip = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 int i;
1016
1017 spin_lock_irq(&chip->reg_lock);
1018 for (i = 0; i < 4; i++)
1019 ucontrol->value.iec958.status[i] = (chip->dig_status >> (i * 8)) & 0xff;
1020 spin_unlock_irq(&chip->reg_lock);
1021 return 0;
1022}
1023
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001024static int snd_cmipci_spdif_default_put(struct snd_kcontrol *kcontrol,
1025 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001027 struct cmipci *chip = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 int i, change;
1029 unsigned int val;
1030
1031 val = 0;
1032 spin_lock_irq(&chip->reg_lock);
1033 for (i = 0; i < 4; i++)
1034 val |= (unsigned int)ucontrol->value.iec958.status[i] << (i * 8);
1035 change = val != chip->dig_status;
1036 chip->dig_status = val;
1037 spin_unlock_irq(&chip->reg_lock);
1038 return change;
1039}
1040
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001041static struct snd_kcontrol_new snd_cmipci_spdif_default __devinitdata =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042{
1043 .iface = SNDRV_CTL_ELEM_IFACE_PCM,
1044 .name = SNDRV_CTL_NAME_IEC958("",PLAYBACK,DEFAULT),
1045 .info = snd_cmipci_spdif_default_info,
1046 .get = snd_cmipci_spdif_default_get,
1047 .put = snd_cmipci_spdif_default_put
1048};
1049
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001050static int snd_cmipci_spdif_mask_info(struct snd_kcontrol *kcontrol,
1051 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052{
1053 uinfo->type = SNDRV_CTL_ELEM_TYPE_IEC958;
1054 uinfo->count = 1;
1055 return 0;
1056}
1057
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001058static int snd_cmipci_spdif_mask_get(struct snd_kcontrol *kcontrol,
1059 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060{
1061 ucontrol->value.iec958.status[0] = 0xff;
1062 ucontrol->value.iec958.status[1] = 0xff;
1063 ucontrol->value.iec958.status[2] = 0xff;
1064 ucontrol->value.iec958.status[3] = 0xff;
1065 return 0;
1066}
1067
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001068static struct snd_kcontrol_new snd_cmipci_spdif_mask __devinitdata =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069{
1070 .access = SNDRV_CTL_ELEM_ACCESS_READ,
Clemens Ladisch67ed4162005-07-29 15:32:58 +02001071 .iface = SNDRV_CTL_ELEM_IFACE_PCM,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 .name = SNDRV_CTL_NAME_IEC958("",PLAYBACK,CON_MASK),
1073 .info = snd_cmipci_spdif_mask_info,
1074 .get = snd_cmipci_spdif_mask_get,
1075};
1076
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001077static int snd_cmipci_spdif_stream_info(struct snd_kcontrol *kcontrol,
1078 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079{
1080 uinfo->type = SNDRV_CTL_ELEM_TYPE_IEC958;
1081 uinfo->count = 1;
1082 return 0;
1083}
1084
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001085static int snd_cmipci_spdif_stream_get(struct snd_kcontrol *kcontrol,
1086 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001088 struct cmipci *chip = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089 int i;
1090
1091 spin_lock_irq(&chip->reg_lock);
1092 for (i = 0; i < 4; i++)
1093 ucontrol->value.iec958.status[i] = (chip->dig_pcm_status >> (i * 8)) & 0xff;
1094 spin_unlock_irq(&chip->reg_lock);
1095 return 0;
1096}
1097
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001098static int snd_cmipci_spdif_stream_put(struct snd_kcontrol *kcontrol,
1099 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001101 struct cmipci *chip = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 int i, change;
1103 unsigned int val;
1104
1105 val = 0;
1106 spin_lock_irq(&chip->reg_lock);
1107 for (i = 0; i < 4; i++)
1108 val |= (unsigned int)ucontrol->value.iec958.status[i] << (i * 8);
1109 change = val != chip->dig_pcm_status;
1110 chip->dig_pcm_status = val;
1111 spin_unlock_irq(&chip->reg_lock);
1112 return change;
1113}
1114
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001115static struct snd_kcontrol_new snd_cmipci_spdif_stream __devinitdata =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116{
1117 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE | SNDRV_CTL_ELEM_ACCESS_INACTIVE,
1118 .iface = SNDRV_CTL_ELEM_IFACE_PCM,
1119 .name = SNDRV_CTL_NAME_IEC958("",PLAYBACK,PCM_STREAM),
1120 .info = snd_cmipci_spdif_stream_info,
1121 .get = snd_cmipci_spdif_stream_get,
1122 .put = snd_cmipci_spdif_stream_put
1123};
1124
1125/*
1126 */
1127
1128/* save mixer setting and mute for AC3 playback */
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001129static int save_mixer_state(struct cmipci *cm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130{
1131 if (! cm->mixer_insensitive) {
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001132 struct snd_ctl_elem_value *val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 unsigned int i;
1134
1135 val = kmalloc(sizeof(*val), GFP_ATOMIC);
1136 if (!val)
1137 return -ENOMEM;
1138 for (i = 0; i < CM_SAVED_MIXERS; i++) {
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001139 struct snd_kcontrol *ctl = cm->mixer_res_ctl[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 if (ctl) {
1141 int event;
1142 memset(val, 0, sizeof(*val));
1143 ctl->get(ctl, val);
1144 cm->mixer_res_status[i] = val->value.integer.value[0];
1145 val->value.integer.value[0] = cm_saved_mixer[i].toggle_on;
1146 event = SNDRV_CTL_EVENT_MASK_INFO;
1147 if (cm->mixer_res_status[i] != val->value.integer.value[0]) {
1148 ctl->put(ctl, val); /* toggle */
1149 event |= SNDRV_CTL_EVENT_MASK_VALUE;
1150 }
1151 ctl->vd[0].access |= SNDRV_CTL_ELEM_ACCESS_INACTIVE;
1152 snd_ctl_notify(cm->card, event, &ctl->id);
1153 }
1154 }
1155 kfree(val);
1156 cm->mixer_insensitive = 1;
1157 }
1158 return 0;
1159}
1160
1161
1162/* restore the previously saved mixer status */
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001163static void restore_mixer_state(struct cmipci *cm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164{
1165 if (cm->mixer_insensitive) {
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001166 struct snd_ctl_elem_value *val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 unsigned int i;
1168
1169 val = kmalloc(sizeof(*val), GFP_KERNEL);
1170 if (!val)
1171 return;
1172 cm->mixer_insensitive = 0; /* at first clear this;
1173 otherwise the changes will be ignored */
1174 for (i = 0; i < CM_SAVED_MIXERS; i++) {
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001175 struct snd_kcontrol *ctl = cm->mixer_res_ctl[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 if (ctl) {
1177 int event;
1178
1179 memset(val, 0, sizeof(*val));
1180 ctl->vd[0].access &= ~SNDRV_CTL_ELEM_ACCESS_INACTIVE;
1181 ctl->get(ctl, val);
1182 event = SNDRV_CTL_EVENT_MASK_INFO;
1183 if (val->value.integer.value[0] != cm->mixer_res_status[i]) {
1184 val->value.integer.value[0] = cm->mixer_res_status[i];
1185 ctl->put(ctl, val);
1186 event |= SNDRV_CTL_EVENT_MASK_VALUE;
1187 }
1188 snd_ctl_notify(cm->card, event, &ctl->id);
1189 }
1190 }
1191 kfree(val);
1192 }
1193}
1194
1195/* spinlock held! */
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001196static void setup_ac3(struct cmipci *cm, struct snd_pcm_substream *subs, int do_ac3, int rate)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197{
1198 if (do_ac3) {
1199 /* AC3EN for 037 */
1200 snd_cmipci_set_bit(cm, CM_REG_CHFORMAT, CM_AC3EN1);
1201 /* AC3EN for 039 */
1202 snd_cmipci_set_bit(cm, CM_REG_MISC_CTRL, CM_AC3EN2);
1203
1204 if (cm->can_ac3_hw) {
1205 /* SPD24SEL for 037, 0x02 */
1206 /* SPD24SEL for 039, 0x20, but cannot be set */
1207 snd_cmipci_set_bit(cm, CM_REG_CHFORMAT, CM_SPD24SEL);
1208 snd_cmipci_clear_bit(cm, CM_REG_MISC_CTRL, CM_SPD32SEL);
1209 } else { /* can_ac3_sw */
1210 /* SPD32SEL for 037 & 039, 0x20 */
1211 snd_cmipci_set_bit(cm, CM_REG_MISC_CTRL, CM_SPD32SEL);
1212 /* set 176K sample rate to fix 033 HW bug */
1213 if (cm->chip_version == 33) {
1214 if (rate >= 48000) {
1215 snd_cmipci_set_bit(cm, CM_REG_CHFORMAT, CM_PLAYBACK_SRATE_176K);
1216 } else {
1217 snd_cmipci_clear_bit(cm, CM_REG_CHFORMAT, CM_PLAYBACK_SRATE_176K);
1218 }
1219 }
1220 }
1221
1222 } else {
1223 snd_cmipci_clear_bit(cm, CM_REG_CHFORMAT, CM_AC3EN1);
1224 snd_cmipci_clear_bit(cm, CM_REG_MISC_CTRL, CM_AC3EN2);
1225
1226 if (cm->can_ac3_hw) {
1227 /* chip model >= 37 */
1228 if (snd_pcm_format_width(subs->runtime->format) > 16) {
1229 snd_cmipci_set_bit(cm, CM_REG_MISC_CTRL, CM_SPD32SEL);
1230 snd_cmipci_set_bit(cm, CM_REG_CHFORMAT, CM_SPD24SEL);
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 }
1235 } else {
1236 snd_cmipci_clear_bit(cm, CM_REG_MISC_CTRL, CM_SPD32SEL);
1237 snd_cmipci_clear_bit(cm, CM_REG_CHFORMAT, CM_SPD24SEL);
1238 snd_cmipci_clear_bit(cm, CM_REG_CHFORMAT, CM_PLAYBACK_SRATE_176K);
1239 }
1240 }
1241}
1242
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001243static int setup_spdif_playback(struct cmipci *cm, struct snd_pcm_substream *subs, int up, int do_ac3)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244{
1245 int rate, err;
1246
1247 rate = subs->runtime->rate;
1248
1249 if (up && do_ac3)
1250 if ((err = save_mixer_state(cm)) < 0)
1251 return err;
1252
1253 spin_lock_irq(&cm->reg_lock);
1254 cm->spdif_playback_avail = up;
1255 if (up) {
1256 /* they are controlled via "IEC958 Output Switch" */
1257 /* snd_cmipci_set_bit(cm, CM_REG_LEGACY_CTRL, CM_ENSPDOUT); */
1258 /* snd_cmipci_set_bit(cm, CM_REG_FUNCTRL1, CM_SPDO2DAC); */
1259 if (cm->spdif_playback_enabled)
1260 snd_cmipci_set_bit(cm, CM_REG_FUNCTRL1, CM_PLAYBACK_SPDF);
1261 setup_ac3(cm, subs, do_ac3, rate);
1262
Clemens Ladisch8992e182007-09-03 09:54:55 +02001263 if (rate == 48000 || rate == 96000)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264 snd_cmipci_set_bit(cm, CM_REG_MISC_CTRL, CM_SPDIF48K | CM_SPDF_AC97);
1265 else
1266 snd_cmipci_clear_bit(cm, CM_REG_MISC_CTRL, CM_SPDIF48K | CM_SPDF_AC97);
Clemens Ladisch8992e182007-09-03 09:54:55 +02001267 if (rate > 48000)
1268 snd_cmipci_set_bit(cm, CM_REG_CHFORMAT, CM_DBLSPDS);
1269 else
1270 snd_cmipci_clear_bit(cm, CM_REG_CHFORMAT, CM_DBLSPDS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 } else {
1272 /* they are controlled via "IEC958 Output Switch" */
1273 /* snd_cmipci_clear_bit(cm, CM_REG_LEGACY_CTRL, CM_ENSPDOUT); */
1274 /* snd_cmipci_clear_bit(cm, CM_REG_FUNCTRL1, CM_SPDO2DAC); */
Clemens Ladisch8992e182007-09-03 09:54:55 +02001275 snd_cmipci_clear_bit(cm, CM_REG_CHFORMAT, CM_DBLSPDS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276 snd_cmipci_clear_bit(cm, CM_REG_FUNCTRL1, CM_PLAYBACK_SPDF);
1277 setup_ac3(cm, subs, 0, 0);
1278 }
1279 spin_unlock_irq(&cm->reg_lock);
1280 return 0;
1281}
1282
1283
1284/*
1285 * preparation
1286 */
1287
1288/* playback - enable spdif only on the certain condition */
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001289static int snd_cmipci_playback_prepare(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001291 struct cmipci *cm = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 int rate = substream->runtime->rate;
1293 int err, do_spdif, do_ac3 = 0;
1294
Timofei Bondarenko755c48a2007-10-31 17:36:20 +01001295 do_spdif = (rate >= 44100 && rate <= 96000 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296 substream->runtime->format == SNDRV_PCM_FORMAT_S16_LE &&
1297 substream->runtime->channels == 2);
1298 if (do_spdif && cm->can_ac3_hw)
1299 do_ac3 = cm->dig_pcm_status & IEC958_AES0_NONAUDIO;
1300 if ((err = setup_spdif_playback(cm, substream, do_spdif, do_ac3)) < 0)
1301 return err;
1302 return snd_cmipci_pcm_prepare(cm, &cm->channel[CM_CH_PLAY], substream);
1303}
1304
1305/* playback (via device #2) - enable spdif always */
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001306static int snd_cmipci_playback_spdif_prepare(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001308 struct cmipci *cm = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 int err, do_ac3;
1310
1311 if (cm->can_ac3_hw)
1312 do_ac3 = cm->dig_pcm_status & IEC958_AES0_NONAUDIO;
1313 else
1314 do_ac3 = 1; /* doesn't matter */
1315 if ((err = setup_spdif_playback(cm, substream, 1, do_ac3)) < 0)
1316 return err;
1317 return snd_cmipci_pcm_prepare(cm, &cm->channel[CM_CH_PLAY], substream);
1318}
1319
Clemens Ladischc36fd8c2007-09-17 09:41:36 +02001320/*
1321 * Apparently, the samples last played on channel A stay in some buffer, even
1322 * after the channel is reset, and get added to the data for the rear DACs when
1323 * playing a multichannel stream on channel B. This is likely to generate
1324 * wraparounds and thus distortions.
1325 * To avoid this, we play at least one zero sample after the actual stream has
1326 * stopped.
1327 */
1328static void snd_cmipci_silence_hack(struct cmipci *cm, struct cmipci_pcm *rec)
1329{
1330 struct snd_pcm_runtime *runtime = rec->substream->runtime;
1331 unsigned int reg, val;
1332
1333 if (rec->needs_silencing && runtime && runtime->dma_area) {
1334 /* set up a small silence buffer */
1335 memset(runtime->dma_area, 0, PAGE_SIZE);
1336 reg = rec->ch ? CM_REG_CH1_FRAME2 : CM_REG_CH0_FRAME2;
1337 val = ((PAGE_SIZE / 4) - 1) | (((PAGE_SIZE / 4) / 2 - 1) << 16);
1338 snd_cmipci_write(cm, reg, val);
1339
1340 /* configure for 16 bits, 2 channels, 8 kHz */
1341 if (runtime->channels > 2)
1342 set_dac_channels(cm, rec, 2);
1343 spin_lock_irq(&cm->reg_lock);
1344 val = snd_cmipci_read(cm, CM_REG_FUNCTRL1);
1345 val &= ~(CM_ASFC_MASK << (rec->ch * 3));
1346 val |= (4 << CM_ASFC_SHIFT) << (rec->ch * 3);
1347 snd_cmipci_write(cm, CM_REG_FUNCTRL1, val);
1348 val = snd_cmipci_read(cm, CM_REG_CHFORMAT);
1349 val &= ~(CM_CH0FMT_MASK << (rec->ch * 2));
1350 val |= (3 << CM_CH0FMT_SHIFT) << (rec->ch * 2);
Timofei Bondarenko755c48a2007-10-31 17:36:20 +01001351 if (cm->can_96k)
1352 val &= ~(CM_CH0_SRATE_MASK << (rec->ch * 2));
Clemens Ladischc36fd8c2007-09-17 09:41:36 +02001353 snd_cmipci_write(cm, CM_REG_CHFORMAT, val);
1354
1355 /* start stream (we don't need interrupts) */
1356 cm->ctrl |= CM_CHEN0 << rec->ch;
1357 snd_cmipci_write(cm, CM_REG_FUNCTRL0, cm->ctrl);
1358 spin_unlock_irq(&cm->reg_lock);
1359
1360 msleep(1);
1361
1362 /* stop and reset stream */
1363 spin_lock_irq(&cm->reg_lock);
1364 cm->ctrl &= ~(CM_CHEN0 << rec->ch);
1365 val = CM_RST_CH0 << rec->ch;
1366 snd_cmipci_write(cm, CM_REG_FUNCTRL0, cm->ctrl | val);
1367 snd_cmipci_write(cm, CM_REG_FUNCTRL0, cm->ctrl & ~val);
1368 spin_unlock_irq(&cm->reg_lock);
1369
1370 rec->needs_silencing = 0;
1371 }
1372}
1373
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001374static int snd_cmipci_playback_hw_free(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001376 struct cmipci *cm = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 setup_spdif_playback(cm, substream, 0, 0);
1378 restore_mixer_state(cm);
Clemens Ladischc36fd8c2007-09-17 09:41:36 +02001379 snd_cmipci_silence_hack(cm, &cm->channel[0]);
1380 return snd_cmipci_hw_free(substream);
1381}
1382
1383static int snd_cmipci_playback2_hw_free(struct snd_pcm_substream *substream)
1384{
1385 struct cmipci *cm = snd_pcm_substream_chip(substream);
1386 snd_cmipci_silence_hack(cm, &cm->channel[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 return snd_cmipci_hw_free(substream);
1388}
1389
1390/* capture */
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001391static int snd_cmipci_capture_prepare(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001393 struct cmipci *cm = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394 return snd_cmipci_pcm_prepare(cm, &cm->channel[CM_CH_CAPT], substream);
1395}
1396
1397/* capture with spdif (via device #2) */
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001398static int snd_cmipci_capture_spdif_prepare(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001400 struct cmipci *cm = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401
1402 spin_lock_irq(&cm->reg_lock);
1403 snd_cmipci_set_bit(cm, CM_REG_FUNCTRL1, CM_CAPTURE_SPDF);
Timofei Bondarenko755c48a2007-10-31 17:36:20 +01001404 if (cm->can_96k) {
1405 if (substream->runtime->rate > 48000)
1406 snd_cmipci_set_bit(cm, CM_REG_CHFORMAT, CM_DBLSPDS);
1407 else
1408 snd_cmipci_clear_bit(cm, CM_REG_CHFORMAT, CM_DBLSPDS);
1409 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410 spin_unlock_irq(&cm->reg_lock);
1411
1412 return snd_cmipci_pcm_prepare(cm, &cm->channel[CM_CH_CAPT], substream);
1413}
1414
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001415static int snd_cmipci_capture_spdif_hw_free(struct snd_pcm_substream *subs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001417 struct cmipci *cm = snd_pcm_substream_chip(subs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418
1419 spin_lock_irq(&cm->reg_lock);
1420 snd_cmipci_clear_bit(cm, CM_REG_FUNCTRL1, CM_CAPTURE_SPDF);
1421 spin_unlock_irq(&cm->reg_lock);
1422
1423 return snd_cmipci_hw_free(subs);
1424}
1425
1426
1427/*
1428 * interrupt handler
1429 */
David Howells7d12e782006-10-05 14:55:46 +01001430static irqreturn_t snd_cmipci_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001432 struct cmipci *cm = dev_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433 unsigned int status, mask = 0;
1434
1435 /* fastpath out, to ease interrupt sharing */
1436 status = snd_cmipci_read(cm, CM_REG_INT_STATUS);
1437 if (!(status & CM_INTR))
1438 return IRQ_NONE;
1439
1440 /* acknowledge interrupt */
1441 spin_lock(&cm->reg_lock);
1442 if (status & CM_CHINT0)
1443 mask |= CM_CH0_INT_EN;
1444 if (status & CM_CHINT1)
1445 mask |= CM_CH1_INT_EN;
1446 snd_cmipci_clear_bit(cm, CM_REG_INT_HLDCLR, mask);
1447 snd_cmipci_set_bit(cm, CM_REG_INT_HLDCLR, mask);
1448 spin_unlock(&cm->reg_lock);
1449
1450 if (cm->rmidi && (status & CM_UARTINT))
David Howells7d12e782006-10-05 14:55:46 +01001451 snd_mpu401_uart_interrupt(irq, cm->rmidi->private_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452
1453 if (cm->pcm) {
1454 if ((status & CM_CHINT0) && cm->channel[0].running)
1455 snd_pcm_period_elapsed(cm->channel[0].substream);
1456 if ((status & CM_CHINT1) && cm->channel[1].running)
1457 snd_pcm_period_elapsed(cm->channel[1].substream);
1458 }
1459 return IRQ_HANDLED;
1460}
1461
1462/*
1463 * h/w infos
1464 */
1465
1466/* playback on channel A */
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001467static struct snd_pcm_hardware snd_cmipci_playback =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468{
1469 .info = (SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_INTERLEAVED |
1470 SNDRV_PCM_INFO_BLOCK_TRANSFER | SNDRV_PCM_INFO_PAUSE |
Takashi Iwaicb60e5f2005-11-17 16:14:49 +01001471 SNDRV_PCM_INFO_RESUME | SNDRV_PCM_INFO_MMAP_VALID),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472 .formats = SNDRV_PCM_FMTBIT_U8 | SNDRV_PCM_FMTBIT_S16_LE,
1473 .rates = SNDRV_PCM_RATE_5512 | SNDRV_PCM_RATE_8000_48000,
1474 .rate_min = 5512,
1475 .rate_max = 48000,
1476 .channels_min = 1,
1477 .channels_max = 2,
1478 .buffer_bytes_max = (128*1024),
1479 .period_bytes_min = 64,
1480 .period_bytes_max = (128*1024),
1481 .periods_min = 2,
1482 .periods_max = 1024,
1483 .fifo_size = 0,
1484};
1485
1486/* capture on channel B */
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001487static struct snd_pcm_hardware snd_cmipci_capture =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488{
1489 .info = (SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_INTERLEAVED |
1490 SNDRV_PCM_INFO_BLOCK_TRANSFER | SNDRV_PCM_INFO_PAUSE |
Takashi Iwaicb60e5f2005-11-17 16:14:49 +01001491 SNDRV_PCM_INFO_RESUME | SNDRV_PCM_INFO_MMAP_VALID),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492 .formats = SNDRV_PCM_FMTBIT_U8 | SNDRV_PCM_FMTBIT_S16_LE,
1493 .rates = SNDRV_PCM_RATE_5512 | SNDRV_PCM_RATE_8000_48000,
1494 .rate_min = 5512,
1495 .rate_max = 48000,
1496 .channels_min = 1,
1497 .channels_max = 2,
1498 .buffer_bytes_max = (128*1024),
1499 .period_bytes_min = 64,
1500 .period_bytes_max = (128*1024),
1501 .periods_min = 2,
1502 .periods_max = 1024,
1503 .fifo_size = 0,
1504};
1505
1506/* playback on channel B - stereo 16bit only? */
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001507static struct snd_pcm_hardware snd_cmipci_playback2 =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508{
1509 .info = (SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_INTERLEAVED |
1510 SNDRV_PCM_INFO_BLOCK_TRANSFER | SNDRV_PCM_INFO_PAUSE |
Takashi Iwaicb60e5f2005-11-17 16:14:49 +01001511 SNDRV_PCM_INFO_RESUME | SNDRV_PCM_INFO_MMAP_VALID),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512 .formats = SNDRV_PCM_FMTBIT_S16_LE,
1513 .rates = SNDRV_PCM_RATE_5512 | SNDRV_PCM_RATE_8000_48000,
1514 .rate_min = 5512,
1515 .rate_max = 48000,
1516 .channels_min = 2,
1517 .channels_max = 2,
1518 .buffer_bytes_max = (128*1024),
1519 .period_bytes_min = 64,
1520 .period_bytes_max = (128*1024),
1521 .periods_min = 2,
1522 .periods_max = 1024,
1523 .fifo_size = 0,
1524};
1525
1526/* spdif playback on channel A */
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001527static struct snd_pcm_hardware snd_cmipci_playback_spdif =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528{
1529 .info = (SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_INTERLEAVED |
1530 SNDRV_PCM_INFO_BLOCK_TRANSFER | SNDRV_PCM_INFO_PAUSE |
Takashi Iwaicb60e5f2005-11-17 16:14:49 +01001531 SNDRV_PCM_INFO_RESUME | SNDRV_PCM_INFO_MMAP_VALID),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532 .formats = SNDRV_PCM_FMTBIT_S16_LE,
1533 .rates = SNDRV_PCM_RATE_44100 | SNDRV_PCM_RATE_48000,
1534 .rate_min = 44100,
1535 .rate_max = 48000,
1536 .channels_min = 2,
1537 .channels_max = 2,
1538 .buffer_bytes_max = (128*1024),
1539 .period_bytes_min = 64,
1540 .period_bytes_max = (128*1024),
1541 .periods_min = 2,
1542 .periods_max = 1024,
1543 .fifo_size = 0,
1544};
1545
1546/* spdif playback on channel A (32bit, IEC958 subframes) */
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001547static struct snd_pcm_hardware snd_cmipci_playback_iec958_subframe =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548{
1549 .info = (SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_INTERLEAVED |
1550 SNDRV_PCM_INFO_BLOCK_TRANSFER | SNDRV_PCM_INFO_PAUSE |
Takashi Iwaicb60e5f2005-11-17 16:14:49 +01001551 SNDRV_PCM_INFO_RESUME | SNDRV_PCM_INFO_MMAP_VALID),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552 .formats = SNDRV_PCM_FMTBIT_IEC958_SUBFRAME_LE,
1553 .rates = SNDRV_PCM_RATE_44100 | SNDRV_PCM_RATE_48000,
1554 .rate_min = 44100,
1555 .rate_max = 48000,
1556 .channels_min = 2,
1557 .channels_max = 2,
1558 .buffer_bytes_max = (128*1024),
1559 .period_bytes_min = 64,
1560 .period_bytes_max = (128*1024),
1561 .periods_min = 2,
1562 .periods_max = 1024,
1563 .fifo_size = 0,
1564};
1565
1566/* spdif capture on channel B */
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001567static struct snd_pcm_hardware snd_cmipci_capture_spdif =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568{
1569 .info = (SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_INTERLEAVED |
1570 SNDRV_PCM_INFO_BLOCK_TRANSFER | SNDRV_PCM_INFO_PAUSE |
Takashi Iwaicb60e5f2005-11-17 16:14:49 +01001571 SNDRV_PCM_INFO_RESUME | SNDRV_PCM_INFO_MMAP_VALID),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572 .formats = SNDRV_PCM_FMTBIT_S16_LE,
1573 .rates = SNDRV_PCM_RATE_44100 | SNDRV_PCM_RATE_48000,
1574 .rate_min = 44100,
1575 .rate_max = 48000,
1576 .channels_min = 2,
1577 .channels_max = 2,
1578 .buffer_bytes_max = (128*1024),
1579 .period_bytes_min = 64,
1580 .period_bytes_max = (128*1024),
1581 .periods_min = 2,
1582 .periods_max = 1024,
1583 .fifo_size = 0,
1584};
1585
Timofei Bondarenko755c48a2007-10-31 17:36:20 +01001586static unsigned int rate_constraints[] = { 5512, 8000, 11025, 16000, 22050,
1587 32000, 44100, 48000, 88200, 96000, 128000 };
1588static struct snd_pcm_hw_constraint_list hw_constraints_rates = {
1589 .count = ARRAY_SIZE(rate_constraints),
1590 .list = rate_constraints,
1591 .mask = 0,
1592};
1593
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594/*
1595 * check device open/close
1596 */
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001597static int open_device_check(struct cmipci *cm, int mode, struct snd_pcm_substream *subs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598{
1599 int ch = mode & CM_OPEN_CH_MASK;
1600
1601 /* FIXME: a file should wait until the device becomes free
1602 * when it's opened on blocking mode. however, since the current
1603 * pcm framework doesn't pass file pointer before actually opened,
1604 * we can't know whether blocking mode or not in open callback..
1605 */
Ingo Molnar62932df2006-01-16 16:34:20 +01001606 mutex_lock(&cm->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607 if (cm->opened[ch]) {
Ingo Molnar62932df2006-01-16 16:34:20 +01001608 mutex_unlock(&cm->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609 return -EBUSY;
1610 }
1611 cm->opened[ch] = mode;
1612 cm->channel[ch].substream = subs;
1613 if (! (mode & CM_OPEN_DAC)) {
1614 /* disable dual DAC mode */
1615 cm->channel[ch].is_dac = 0;
1616 spin_lock_irq(&cm->reg_lock);
1617 snd_cmipci_clear_bit(cm, CM_REG_MISC_CTRL, CM_ENDBDAC);
1618 spin_unlock_irq(&cm->reg_lock);
1619 }
Ingo Molnar62932df2006-01-16 16:34:20 +01001620 mutex_unlock(&cm->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621 return 0;
1622}
1623
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001624static void close_device_check(struct cmipci *cm, int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625{
1626 int ch = mode & CM_OPEN_CH_MASK;
1627
Ingo Molnar62932df2006-01-16 16:34:20 +01001628 mutex_lock(&cm->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629 if (cm->opened[ch] == mode) {
1630 if (cm->channel[ch].substream) {
1631 snd_cmipci_ch_reset(cm, ch);
1632 cm->channel[ch].running = 0;
1633 cm->channel[ch].substream = NULL;
1634 }
1635 cm->opened[ch] = 0;
1636 if (! cm->channel[ch].is_dac) {
1637 /* enable dual DAC mode again */
1638 cm->channel[ch].is_dac = 1;
1639 spin_lock_irq(&cm->reg_lock);
1640 snd_cmipci_set_bit(cm, CM_REG_MISC_CTRL, CM_ENDBDAC);
1641 spin_unlock_irq(&cm->reg_lock);
1642 }
1643 }
Ingo Molnar62932df2006-01-16 16:34:20 +01001644 mutex_unlock(&cm->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645}
1646
1647/*
1648 */
1649
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001650static int snd_cmipci_playback_open(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001652 struct cmipci *cm = snd_pcm_substream_chip(substream);
1653 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654 int err;
1655
1656 if ((err = open_device_check(cm, CM_OPEN_PLAYBACK, substream)) < 0)
1657 return err;
1658 runtime->hw = snd_cmipci_playback;
Clemens Ladisch8992e182007-09-03 09:54:55 +02001659 if (cm->chip_version == 68) {
1660 runtime->hw.rates |= SNDRV_PCM_RATE_88200 |
1661 SNDRV_PCM_RATE_96000;
1662 runtime->hw.rate_max = 96000;
Timofei Bondarenko755c48a2007-10-31 17:36:20 +01001663 } else if (cm->chip_version == 55) {
1664 err = snd_pcm_hw_constraint_list(runtime, 0,
1665 SNDRV_PCM_HW_PARAM_RATE, &hw_constraints_rates);
1666 if (err < 0)
1667 return err;
1668 runtime->hw.rates |= SNDRV_PCM_RATE_KNOT;
1669 runtime->hw.rate_max = 128000;
Clemens Ladisch8992e182007-09-03 09:54:55 +02001670 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671 snd_pcm_hw_constraint_minmax(runtime, SNDRV_PCM_HW_PARAM_BUFFER_SIZE, 0, 0x10000);
1672 cm->dig_pcm_status = cm->dig_status;
1673 return 0;
1674}
1675
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001676static int snd_cmipci_capture_open(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001678 struct cmipci *cm = snd_pcm_substream_chip(substream);
1679 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680 int err;
1681
1682 if ((err = open_device_check(cm, CM_OPEN_CAPTURE, substream)) < 0)
1683 return err;
1684 runtime->hw = snd_cmipci_capture;
1685 if (cm->chip_version == 68) { // 8768 only supports 44k/48k recording
1686 runtime->hw.rate_min = 41000;
1687 runtime->hw.rates = SNDRV_PCM_RATE_44100 | SNDRV_PCM_RATE_48000;
Timofei Bondarenko755c48a2007-10-31 17:36:20 +01001688 } else if (cm->chip_version == 55) {
1689 err = snd_pcm_hw_constraint_list(runtime, 0,
1690 SNDRV_PCM_HW_PARAM_RATE, &hw_constraints_rates);
1691 if (err < 0)
1692 return err;
1693 runtime->hw.rates |= SNDRV_PCM_RATE_KNOT;
1694 runtime->hw.rate_max = 128000;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695 }
1696 snd_pcm_hw_constraint_minmax(runtime, SNDRV_PCM_HW_PARAM_BUFFER_SIZE, 0, 0x10000);
1697 return 0;
1698}
1699
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001700static int snd_cmipci_playback2_open(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001702 struct cmipci *cm = snd_pcm_substream_chip(substream);
1703 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704 int err;
1705
1706 if ((err = open_device_check(cm, CM_OPEN_PLAYBACK2, substream)) < 0) /* use channel B */
1707 return err;
1708 runtime->hw = snd_cmipci_playback2;
Ingo Molnar62932df2006-01-16 16:34:20 +01001709 mutex_lock(&cm->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710 if (! cm->opened[CM_CH_PLAY]) {
1711 if (cm->can_multi_ch) {
1712 runtime->hw.channels_max = cm->max_channels;
1713 if (cm->max_channels == 4)
1714 snd_pcm_hw_constraint_list(runtime, 0, SNDRV_PCM_HW_PARAM_CHANNELS, &hw_constraints_channels_4);
1715 else if (cm->max_channels == 6)
1716 snd_pcm_hw_constraint_list(runtime, 0, SNDRV_PCM_HW_PARAM_CHANNELS, &hw_constraints_channels_6);
1717 else if (cm->max_channels == 8)
1718 snd_pcm_hw_constraint_list(runtime, 0, SNDRV_PCM_HW_PARAM_CHANNELS, &hw_constraints_channels_8);
1719 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720 }
Ingo Molnar62932df2006-01-16 16:34:20 +01001721 mutex_unlock(&cm->open_mutex);
Clemens Ladisch22a22f52007-09-17 09:37:47 +02001722 if (cm->chip_version == 68) {
1723 runtime->hw.rates |= SNDRV_PCM_RATE_88200 |
1724 SNDRV_PCM_RATE_96000;
1725 runtime->hw.rate_max = 96000;
Timofei Bondarenko755c48a2007-10-31 17:36:20 +01001726 } else if (cm->chip_version == 55) {
1727 err = snd_pcm_hw_constraint_list(runtime, 0,
1728 SNDRV_PCM_HW_PARAM_RATE, &hw_constraints_rates);
1729 if (err < 0)
1730 return err;
1731 runtime->hw.rates |= SNDRV_PCM_RATE_KNOT;
1732 runtime->hw.rate_max = 128000;
Clemens Ladisch22a22f52007-09-17 09:37:47 +02001733 }
1734 snd_pcm_hw_constraint_minmax(runtime, SNDRV_PCM_HW_PARAM_BUFFER_SIZE, 0, 0x10000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735 return 0;
1736}
1737
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001738static int snd_cmipci_playback_spdif_open(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001740 struct cmipci *cm = snd_pcm_substream_chip(substream);
1741 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742 int err;
1743
1744 if ((err = open_device_check(cm, CM_OPEN_SPDIF_PLAYBACK, substream)) < 0) /* use channel A */
1745 return err;
1746 if (cm->can_ac3_hw) {
1747 runtime->hw = snd_cmipci_playback_spdif;
Clemens Ladisch57bd68b2007-09-07 10:44:13 +02001748 if (cm->chip_version >= 37) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749 runtime->hw.formats |= SNDRV_PCM_FMTBIT_S32_LE;
Clemens Ladisch57bd68b2007-09-07 10:44:13 +02001750 snd_pcm_hw_constraint_msbits(runtime, 0, 32, 24);
1751 }
Timofei Bondarenko755c48a2007-10-31 17:36:20 +01001752 if (cm->can_96k) {
Clemens Ladisch8992e182007-09-03 09:54:55 +02001753 runtime->hw.rates |= SNDRV_PCM_RATE_88200 |
1754 SNDRV_PCM_RATE_96000;
1755 runtime->hw.rate_max = 96000;
1756 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757 } else {
1758 runtime->hw = snd_cmipci_playback_iec958_subframe;
1759 }
1760 snd_pcm_hw_constraint_minmax(runtime, SNDRV_PCM_HW_PARAM_BUFFER_SIZE, 0, 0x40000);
1761 cm->dig_pcm_status = cm->dig_status;
1762 return 0;
1763}
1764
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001765static int snd_cmipci_capture_spdif_open(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001767 struct cmipci *cm = snd_pcm_substream_chip(substream);
1768 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769 int err;
1770
1771 if ((err = open_device_check(cm, CM_OPEN_SPDIF_CAPTURE, substream)) < 0) /* use channel B */
1772 return err;
1773 runtime->hw = snd_cmipci_capture_spdif;
Timofei Bondarenko755c48a2007-10-31 17:36:20 +01001774 if (cm->can_96k && !(cm->chip_version == 68)) {
1775 runtime->hw.rates |= SNDRV_PCM_RATE_88200 |
1776 SNDRV_PCM_RATE_96000;
1777 runtime->hw.rate_max = 96000;
1778 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779 snd_pcm_hw_constraint_minmax(runtime, SNDRV_PCM_HW_PARAM_BUFFER_SIZE, 0, 0x40000);
1780 return 0;
1781}
1782
1783
1784/*
1785 */
1786
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001787static int snd_cmipci_playback_close(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001789 struct cmipci *cm = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790 close_device_check(cm, CM_OPEN_PLAYBACK);
1791 return 0;
1792}
1793
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001794static int snd_cmipci_capture_close(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001796 struct cmipci *cm = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797 close_device_check(cm, CM_OPEN_CAPTURE);
1798 return 0;
1799}
1800
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001801static int snd_cmipci_playback2_close(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001803 struct cmipci *cm = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804 close_device_check(cm, CM_OPEN_PLAYBACK2);
1805 close_device_check(cm, CM_OPEN_PLAYBACK_MULTI);
1806 return 0;
1807}
1808
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001809static int snd_cmipci_playback_spdif_close(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001811 struct cmipci *cm = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812 close_device_check(cm, CM_OPEN_SPDIF_PLAYBACK);
1813 return 0;
1814}
1815
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001816static int snd_cmipci_capture_spdif_close(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001818 struct cmipci *cm = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819 close_device_check(cm, CM_OPEN_SPDIF_CAPTURE);
1820 return 0;
1821}
1822
1823
1824/*
1825 */
1826
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001827static struct snd_pcm_ops snd_cmipci_playback_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828 .open = snd_cmipci_playback_open,
1829 .close = snd_cmipci_playback_close,
1830 .ioctl = snd_pcm_lib_ioctl,
1831 .hw_params = snd_cmipci_hw_params,
1832 .hw_free = snd_cmipci_playback_hw_free,
1833 .prepare = snd_cmipci_playback_prepare,
1834 .trigger = snd_cmipci_playback_trigger,
1835 .pointer = snd_cmipci_playback_pointer,
1836};
1837
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001838static struct snd_pcm_ops snd_cmipci_capture_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839 .open = snd_cmipci_capture_open,
1840 .close = snd_cmipci_capture_close,
1841 .ioctl = snd_pcm_lib_ioctl,
1842 .hw_params = snd_cmipci_hw_params,
1843 .hw_free = snd_cmipci_hw_free,
1844 .prepare = snd_cmipci_capture_prepare,
1845 .trigger = snd_cmipci_capture_trigger,
1846 .pointer = snd_cmipci_capture_pointer,
1847};
1848
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001849static struct snd_pcm_ops snd_cmipci_playback2_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850 .open = snd_cmipci_playback2_open,
1851 .close = snd_cmipci_playback2_close,
1852 .ioctl = snd_pcm_lib_ioctl,
1853 .hw_params = snd_cmipci_playback2_hw_params,
Clemens Ladischc36fd8c2007-09-17 09:41:36 +02001854 .hw_free = snd_cmipci_playback2_hw_free,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855 .prepare = snd_cmipci_capture_prepare, /* channel B */
1856 .trigger = snd_cmipci_capture_trigger, /* channel B */
1857 .pointer = snd_cmipci_capture_pointer, /* channel B */
1858};
1859
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001860static struct snd_pcm_ops snd_cmipci_playback_spdif_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861 .open = snd_cmipci_playback_spdif_open,
1862 .close = snd_cmipci_playback_spdif_close,
1863 .ioctl = snd_pcm_lib_ioctl,
1864 .hw_params = snd_cmipci_hw_params,
1865 .hw_free = snd_cmipci_playback_hw_free,
1866 .prepare = snd_cmipci_playback_spdif_prepare, /* set up rate */
1867 .trigger = snd_cmipci_playback_trigger,
1868 .pointer = snd_cmipci_playback_pointer,
1869};
1870
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001871static struct snd_pcm_ops snd_cmipci_capture_spdif_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872 .open = snd_cmipci_capture_spdif_open,
1873 .close = snd_cmipci_capture_spdif_close,
1874 .ioctl = snd_pcm_lib_ioctl,
1875 .hw_params = snd_cmipci_hw_params,
1876 .hw_free = snd_cmipci_capture_spdif_hw_free,
1877 .prepare = snd_cmipci_capture_spdif_prepare,
1878 .trigger = snd_cmipci_capture_trigger,
1879 .pointer = snd_cmipci_capture_pointer,
1880};
1881
1882
1883/*
1884 */
1885
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001886static int __devinit snd_cmipci_pcm_new(struct cmipci *cm, int device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001888 struct snd_pcm *pcm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889 int err;
1890
1891 err = snd_pcm_new(cm->card, cm->card->driver, device, 1, 1, &pcm);
1892 if (err < 0)
1893 return err;
1894
1895 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &snd_cmipci_playback_ops);
1896 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &snd_cmipci_capture_ops);
1897
1898 pcm->private_data = cm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899 pcm->info_flags = 0;
1900 strcpy(pcm->name, "C-Media PCI DAC/ADC");
1901 cm->pcm = pcm;
1902
1903 snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV,
1904 snd_dma_pci_data(cm->pci), 64*1024, 128*1024);
1905
1906 return 0;
1907}
1908
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001909static int __devinit snd_cmipci_pcm2_new(struct cmipci *cm, int device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001911 struct snd_pcm *pcm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912 int err;
1913
1914 err = snd_pcm_new(cm->card, cm->card->driver, device, 1, 0, &pcm);
1915 if (err < 0)
1916 return err;
1917
1918 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &snd_cmipci_playback2_ops);
1919
1920 pcm->private_data = cm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921 pcm->info_flags = 0;
1922 strcpy(pcm->name, "C-Media PCI 2nd DAC");
1923 cm->pcm2 = pcm;
1924
1925 snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV,
1926 snd_dma_pci_data(cm->pci), 64*1024, 128*1024);
1927
1928 return 0;
1929}
1930
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001931static int __devinit snd_cmipci_pcm_spdif_new(struct cmipci *cm, int device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001933 struct snd_pcm *pcm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934 int err;
1935
1936 err = snd_pcm_new(cm->card, cm->card->driver, device, 1, 1, &pcm);
1937 if (err < 0)
1938 return err;
1939
1940 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &snd_cmipci_playback_spdif_ops);
1941 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &snd_cmipci_capture_spdif_ops);
1942
1943 pcm->private_data = cm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944 pcm->info_flags = 0;
1945 strcpy(pcm->name, "C-Media PCI IEC958");
1946 cm->pcm_spdif = pcm;
1947
1948 snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV,
1949 snd_dma_pci_data(cm->pci), 64*1024, 128*1024);
1950
1951 return 0;
1952}
1953
1954/*
1955 * mixer interface:
1956 * - CM8338/8738 has a compatible mixer interface with SB16, but
1957 * lack of some elements like tone control, i/o gain and AGC.
1958 * - Access to native registers:
1959 * - A 3D switch
1960 * - Output mute switches
1961 */
1962
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001963static void snd_cmipci_mixer_write(struct cmipci *s, unsigned char idx, unsigned char data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964{
1965 outb(idx, s->iobase + CM_REG_SB16_ADDR);
1966 outb(data, s->iobase + CM_REG_SB16_DATA);
1967}
1968
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001969static unsigned char snd_cmipci_mixer_read(struct cmipci *s, unsigned char idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970{
1971 unsigned char v;
1972
1973 outb(idx, s->iobase + CM_REG_SB16_ADDR);
1974 v = inb(s->iobase + CM_REG_SB16_DATA);
1975 return v;
1976}
1977
1978/*
1979 * general mixer element
1980 */
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001981struct cmipci_sb_reg {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982 unsigned int left_reg, right_reg;
1983 unsigned int left_shift, right_shift;
1984 unsigned int mask;
1985 unsigned int invert: 1;
1986 unsigned int stereo: 1;
Takashi Iwai2cbdb682005-11-17 15:03:13 +01001987};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988
1989#define COMPOSE_SB_REG(lreg,rreg,lshift,rshift,mask,invert,stereo) \
1990 ((lreg) | ((rreg) << 8) | (lshift << 16) | (rshift << 19) | (mask << 24) | (invert << 22) | (stereo << 23))
1991
1992#define CMIPCI_DOUBLE(xname, left_reg, right_reg, left_shift, right_shift, mask, invert, stereo) \
1993{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \
1994 .info = snd_cmipci_info_volume, \
1995 .get = snd_cmipci_get_volume, .put = snd_cmipci_put_volume, \
1996 .private_value = COMPOSE_SB_REG(left_reg, right_reg, left_shift, right_shift, mask, invert, stereo), \
1997}
1998
1999#define CMIPCI_SB_VOL_STEREO(xname,reg,shift,mask) CMIPCI_DOUBLE(xname, reg, reg+1, shift, shift, mask, 0, 1)
2000#define CMIPCI_SB_VOL_MONO(xname,reg,shift,mask) CMIPCI_DOUBLE(xname, reg, reg, shift, shift, mask, 0, 0)
2001#define CMIPCI_SB_SW_STEREO(xname,lshift,rshift) CMIPCI_DOUBLE(xname, SB_DSP4_OUTPUT_SW, SB_DSP4_OUTPUT_SW, lshift, rshift, 1, 0, 1)
2002#define CMIPCI_SB_SW_MONO(xname,shift) CMIPCI_DOUBLE(xname, SB_DSP4_OUTPUT_SW, SB_DSP4_OUTPUT_SW, shift, shift, 1, 0, 0)
2003
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002004static void cmipci_sb_reg_decode(struct cmipci_sb_reg *r, unsigned long val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005{
2006 r->left_reg = val & 0xff;
2007 r->right_reg = (val >> 8) & 0xff;
2008 r->left_shift = (val >> 16) & 0x07;
2009 r->right_shift = (val >> 19) & 0x07;
2010 r->invert = (val >> 22) & 1;
2011 r->stereo = (val >> 23) & 1;
2012 r->mask = (val >> 24) & 0xff;
2013}
2014
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002015static int snd_cmipci_info_volume(struct snd_kcontrol *kcontrol,
2016 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002018 struct cmipci_sb_reg reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019
2020 cmipci_sb_reg_decode(&reg, kcontrol->private_value);
2021 uinfo->type = reg.mask == 1 ? SNDRV_CTL_ELEM_TYPE_BOOLEAN : SNDRV_CTL_ELEM_TYPE_INTEGER;
2022 uinfo->count = reg.stereo + 1;
2023 uinfo->value.integer.min = 0;
2024 uinfo->value.integer.max = reg.mask;
2025 return 0;
2026}
2027
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002028static int snd_cmipci_get_volume(struct snd_kcontrol *kcontrol,
2029 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002031 struct cmipci *cm = snd_kcontrol_chip(kcontrol);
2032 struct cmipci_sb_reg reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033 int val;
2034
2035 cmipci_sb_reg_decode(&reg, kcontrol->private_value);
2036 spin_lock_irq(&cm->reg_lock);
2037 val = (snd_cmipci_mixer_read(cm, reg.left_reg) >> reg.left_shift) & reg.mask;
2038 if (reg.invert)
2039 val = reg.mask - val;
2040 ucontrol->value.integer.value[0] = val;
2041 if (reg.stereo) {
2042 val = (snd_cmipci_mixer_read(cm, reg.right_reg) >> reg.right_shift) & reg.mask;
2043 if (reg.invert)
2044 val = reg.mask - val;
2045 ucontrol->value.integer.value[1] = val;
2046 }
2047 spin_unlock_irq(&cm->reg_lock);
2048 return 0;
2049}
2050
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002051static int snd_cmipci_put_volume(struct snd_kcontrol *kcontrol,
2052 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002054 struct cmipci *cm = snd_kcontrol_chip(kcontrol);
2055 struct cmipci_sb_reg reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056 int change;
2057 int left, right, oleft, oright;
2058
2059 cmipci_sb_reg_decode(&reg, kcontrol->private_value);
2060 left = ucontrol->value.integer.value[0] & reg.mask;
2061 if (reg.invert)
2062 left = reg.mask - left;
2063 left <<= reg.left_shift;
2064 if (reg.stereo) {
2065 right = ucontrol->value.integer.value[1] & reg.mask;
2066 if (reg.invert)
2067 right = reg.mask - right;
2068 right <<= reg.right_shift;
2069 } else
2070 right = 0;
2071 spin_lock_irq(&cm->reg_lock);
2072 oleft = snd_cmipci_mixer_read(cm, reg.left_reg);
2073 left |= oleft & ~(reg.mask << reg.left_shift);
2074 change = left != oleft;
2075 if (reg.stereo) {
2076 if (reg.left_reg != reg.right_reg) {
2077 snd_cmipci_mixer_write(cm, reg.left_reg, left);
2078 oright = snd_cmipci_mixer_read(cm, reg.right_reg);
2079 } else
2080 oright = left;
2081 right |= oright & ~(reg.mask << reg.right_shift);
2082 change |= right != oright;
2083 snd_cmipci_mixer_write(cm, reg.right_reg, right);
2084 } else
2085 snd_cmipci_mixer_write(cm, reg.left_reg, left);
2086 spin_unlock_irq(&cm->reg_lock);
2087 return change;
2088}
2089
2090/*
2091 * input route (left,right) -> (left,right)
2092 */
2093#define CMIPCI_SB_INPUT_SW(xname, left_shift, right_shift) \
2094{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \
2095 .info = snd_cmipci_info_input_sw, \
2096 .get = snd_cmipci_get_input_sw, .put = snd_cmipci_put_input_sw, \
2097 .private_value = COMPOSE_SB_REG(SB_DSP4_INPUT_LEFT, SB_DSP4_INPUT_RIGHT, left_shift, right_shift, 1, 0, 1), \
2098}
2099
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002100static int snd_cmipci_info_input_sw(struct snd_kcontrol *kcontrol,
2101 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102{
2103 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
2104 uinfo->count = 4;
2105 uinfo->value.integer.min = 0;
2106 uinfo->value.integer.max = 1;
2107 return 0;
2108}
2109
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002110static int snd_cmipci_get_input_sw(struct snd_kcontrol *kcontrol,
2111 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002113 struct cmipci *cm = snd_kcontrol_chip(kcontrol);
2114 struct cmipci_sb_reg reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115 int val1, val2;
2116
2117 cmipci_sb_reg_decode(&reg, kcontrol->private_value);
2118 spin_lock_irq(&cm->reg_lock);
2119 val1 = snd_cmipci_mixer_read(cm, reg.left_reg);
2120 val2 = snd_cmipci_mixer_read(cm, reg.right_reg);
2121 spin_unlock_irq(&cm->reg_lock);
2122 ucontrol->value.integer.value[0] = (val1 >> reg.left_shift) & 1;
2123 ucontrol->value.integer.value[1] = (val2 >> reg.left_shift) & 1;
2124 ucontrol->value.integer.value[2] = (val1 >> reg.right_shift) & 1;
2125 ucontrol->value.integer.value[3] = (val2 >> reg.right_shift) & 1;
2126 return 0;
2127}
2128
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002129static int snd_cmipci_put_input_sw(struct snd_kcontrol *kcontrol,
2130 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002132 struct cmipci *cm = snd_kcontrol_chip(kcontrol);
2133 struct cmipci_sb_reg reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134 int change;
2135 int val1, val2, oval1, oval2;
2136
2137 cmipci_sb_reg_decode(&reg, kcontrol->private_value);
2138 spin_lock_irq(&cm->reg_lock);
2139 oval1 = snd_cmipci_mixer_read(cm, reg.left_reg);
2140 oval2 = snd_cmipci_mixer_read(cm, reg.right_reg);
2141 val1 = oval1 & ~((1 << reg.left_shift) | (1 << reg.right_shift));
2142 val2 = oval2 & ~((1 << reg.left_shift) | (1 << reg.right_shift));
2143 val1 |= (ucontrol->value.integer.value[0] & 1) << reg.left_shift;
2144 val2 |= (ucontrol->value.integer.value[1] & 1) << reg.left_shift;
2145 val1 |= (ucontrol->value.integer.value[2] & 1) << reg.right_shift;
2146 val2 |= (ucontrol->value.integer.value[3] & 1) << reg.right_shift;
2147 change = val1 != oval1 || val2 != oval2;
2148 snd_cmipci_mixer_write(cm, reg.left_reg, val1);
2149 snd_cmipci_mixer_write(cm, reg.right_reg, val2);
2150 spin_unlock_irq(&cm->reg_lock);
2151 return change;
2152}
2153
2154/*
2155 * native mixer switches/volumes
2156 */
2157
2158#define CMIPCI_MIXER_SW_STEREO(xname, reg, lshift, rshift, invert) \
2159{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \
2160 .info = snd_cmipci_info_native_mixer, \
2161 .get = snd_cmipci_get_native_mixer, .put = snd_cmipci_put_native_mixer, \
2162 .private_value = COMPOSE_SB_REG(reg, reg, lshift, rshift, 1, invert, 1), \
2163}
2164
2165#define CMIPCI_MIXER_SW_MONO(xname, reg, shift, invert) \
2166{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \
2167 .info = snd_cmipci_info_native_mixer, \
2168 .get = snd_cmipci_get_native_mixer, .put = snd_cmipci_put_native_mixer, \
2169 .private_value = COMPOSE_SB_REG(reg, reg, shift, shift, 1, invert, 0), \
2170}
2171
2172#define CMIPCI_MIXER_VOL_STEREO(xname, reg, lshift, rshift, mask) \
2173{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \
2174 .info = snd_cmipci_info_native_mixer, \
2175 .get = snd_cmipci_get_native_mixer, .put = snd_cmipci_put_native_mixer, \
2176 .private_value = COMPOSE_SB_REG(reg, reg, lshift, rshift, mask, 0, 1), \
2177}
2178
2179#define CMIPCI_MIXER_VOL_MONO(xname, reg, shift, mask) \
2180{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \
2181 .info = snd_cmipci_info_native_mixer, \
2182 .get = snd_cmipci_get_native_mixer, .put = snd_cmipci_put_native_mixer, \
2183 .private_value = COMPOSE_SB_REG(reg, reg, shift, shift, mask, 0, 0), \
2184}
2185
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002186static int snd_cmipci_info_native_mixer(struct snd_kcontrol *kcontrol,
2187 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002189 struct cmipci_sb_reg reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190
2191 cmipci_sb_reg_decode(&reg, kcontrol->private_value);
2192 uinfo->type = reg.mask == 1 ? SNDRV_CTL_ELEM_TYPE_BOOLEAN : SNDRV_CTL_ELEM_TYPE_INTEGER;
2193 uinfo->count = reg.stereo + 1;
2194 uinfo->value.integer.min = 0;
2195 uinfo->value.integer.max = reg.mask;
2196 return 0;
2197
2198}
2199
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002200static int snd_cmipci_get_native_mixer(struct snd_kcontrol *kcontrol,
2201 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002203 struct cmipci *cm = snd_kcontrol_chip(kcontrol);
2204 struct cmipci_sb_reg reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205 unsigned char oreg, val;
2206
2207 cmipci_sb_reg_decode(&reg, kcontrol->private_value);
2208 spin_lock_irq(&cm->reg_lock);
2209 oreg = inb(cm->iobase + reg.left_reg);
2210 val = (oreg >> reg.left_shift) & reg.mask;
2211 if (reg.invert)
2212 val = reg.mask - val;
2213 ucontrol->value.integer.value[0] = val;
2214 if (reg.stereo) {
2215 val = (oreg >> reg.right_shift) & reg.mask;
2216 if (reg.invert)
2217 val = reg.mask - val;
2218 ucontrol->value.integer.value[1] = val;
2219 }
2220 spin_unlock_irq(&cm->reg_lock);
2221 return 0;
2222}
2223
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002224static int snd_cmipci_put_native_mixer(struct snd_kcontrol *kcontrol,
2225 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002227 struct cmipci *cm = snd_kcontrol_chip(kcontrol);
2228 struct cmipci_sb_reg reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229 unsigned char oreg, nreg, val;
2230
2231 cmipci_sb_reg_decode(&reg, kcontrol->private_value);
2232 spin_lock_irq(&cm->reg_lock);
2233 oreg = inb(cm->iobase + reg.left_reg);
2234 val = ucontrol->value.integer.value[0] & reg.mask;
2235 if (reg.invert)
2236 val = reg.mask - val;
2237 nreg = oreg & ~(reg.mask << reg.left_shift);
2238 nreg |= (val << reg.left_shift);
2239 if (reg.stereo) {
2240 val = ucontrol->value.integer.value[1] & reg.mask;
2241 if (reg.invert)
2242 val = reg.mask - val;
2243 nreg &= ~(reg.mask << reg.right_shift);
2244 nreg |= (val << reg.right_shift);
2245 }
2246 outb(nreg, cm->iobase + reg.left_reg);
2247 spin_unlock_irq(&cm->reg_lock);
2248 return (nreg != oreg);
2249}
2250
2251/*
2252 * special case - check mixer sensitivity
2253 */
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002254static int snd_cmipci_get_native_mixer_sensitive(struct snd_kcontrol *kcontrol,
2255 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002257 //struct cmipci *cm = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258 return snd_cmipci_get_native_mixer(kcontrol, ucontrol);
2259}
2260
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002261static int snd_cmipci_put_native_mixer_sensitive(struct snd_kcontrol *kcontrol,
2262 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002263{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002264 struct cmipci *cm = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265 if (cm->mixer_insensitive) {
2266 /* ignored */
2267 return 0;
2268 }
2269 return snd_cmipci_put_native_mixer(kcontrol, ucontrol);
2270}
2271
2272
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002273static struct snd_kcontrol_new snd_cmipci_mixers[] __devinitdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274 CMIPCI_SB_VOL_STEREO("Master Playback Volume", SB_DSP4_MASTER_DEV, 3, 31),
2275 CMIPCI_MIXER_SW_MONO("3D Control - Switch", CM_REG_MIXER1, CM_X3DEN_SHIFT, 0),
2276 CMIPCI_SB_VOL_STEREO("PCM Playback Volume", SB_DSP4_PCM_DEV, 3, 31),
2277 //CMIPCI_MIXER_SW_MONO("PCM Playback Switch", CM_REG_MIXER1, CM_WSMUTE_SHIFT, 1),
2278 { /* switch with sensitivity */
2279 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2280 .name = "PCM Playback Switch",
2281 .info = snd_cmipci_info_native_mixer,
2282 .get = snd_cmipci_get_native_mixer_sensitive,
2283 .put = snd_cmipci_put_native_mixer_sensitive,
2284 .private_value = COMPOSE_SB_REG(CM_REG_MIXER1, CM_REG_MIXER1, CM_WSMUTE_SHIFT, CM_WSMUTE_SHIFT, 1, 1, 0),
2285 },
2286 CMIPCI_MIXER_SW_STEREO("PCM Capture Switch", CM_REG_MIXER1, CM_WAVEINL_SHIFT, CM_WAVEINR_SHIFT, 0),
2287 CMIPCI_SB_VOL_STEREO("Synth Playback Volume", SB_DSP4_SYNTH_DEV, 3, 31),
2288 CMIPCI_MIXER_SW_MONO("Synth Playback Switch", CM_REG_MIXER1, CM_FMMUTE_SHIFT, 1),
2289 CMIPCI_SB_INPUT_SW("Synth Capture Route", 6, 5),
2290 CMIPCI_SB_VOL_STEREO("CD Playback Volume", SB_DSP4_CD_DEV, 3, 31),
2291 CMIPCI_SB_SW_STEREO("CD Playback Switch", 2, 1),
2292 CMIPCI_SB_INPUT_SW("CD Capture Route", 2, 1),
2293 CMIPCI_SB_VOL_STEREO("Line Playback Volume", SB_DSP4_LINE_DEV, 3, 31),
2294 CMIPCI_SB_SW_STEREO("Line Playback Switch", 4, 3),
2295 CMIPCI_SB_INPUT_SW("Line Capture Route", 4, 3),
2296 CMIPCI_SB_VOL_MONO("Mic Playback Volume", SB_DSP4_MIC_DEV, 3, 31),
2297 CMIPCI_SB_SW_MONO("Mic Playback Switch", 0),
2298 CMIPCI_DOUBLE("Mic Capture Switch", SB_DSP4_INPUT_LEFT, SB_DSP4_INPUT_RIGHT, 0, 0, 1, 0, 0),
2299 CMIPCI_SB_VOL_MONO("PC Speaker Playback Volume", SB_DSP4_SPEAKER_DEV, 6, 3),
2300 CMIPCI_MIXER_VOL_STEREO("Aux Playback Volume", CM_REG_AUX_VOL, 4, 0, 15),
2301 CMIPCI_MIXER_SW_STEREO("Aux Playback Switch", CM_REG_MIXER2, CM_VAUXLM_SHIFT, CM_VAUXRM_SHIFT, 0),
2302 CMIPCI_MIXER_SW_STEREO("Aux Capture Switch", CM_REG_MIXER2, CM_RAUXLEN_SHIFT, CM_RAUXREN_SHIFT, 0),
Takashi Iwai2eff7ec2005-06-30 13:45:20 +02002303 CMIPCI_MIXER_SW_MONO("Mic Boost Playback Switch", CM_REG_MIXER2, CM_MICGAINZ_SHIFT, 1),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002304 CMIPCI_MIXER_VOL_MONO("Mic Capture Volume", CM_REG_MIXER2, CM_VADMIC_SHIFT, 7),
Takashi Iwai2eff7ec2005-06-30 13:45:20 +02002305 CMIPCI_SB_VOL_MONO("Phone Playback Volume", CM_REG_EXTENT_IND, 5, 7),
2306 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 +02002307 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 +02002308 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 -07002309};
2310
2311/*
2312 * other switches
2313 */
2314
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002315struct cmipci_switch_args {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002316 int reg; /* register index */
2317 unsigned int mask; /* mask bits */
2318 unsigned int mask_on; /* mask bits to turn on */
2319 unsigned int is_byte: 1; /* byte access? */
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002320 unsigned int ac3_sensitive: 1; /* access forbidden during
2321 * non-audio operation?
2322 */
2323};
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324
Takashi Iwaia5ce8892007-07-23 15:42:26 +02002325#define snd_cmipci_uswitch_info snd_ctl_boolean_mono_info
Linus Torvalds1da177e2005-04-16 15:20:36 -07002326
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002327static int _snd_cmipci_uswitch_get(struct snd_kcontrol *kcontrol,
2328 struct snd_ctl_elem_value *ucontrol,
2329 struct cmipci_switch_args *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002330{
2331 unsigned int val;
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002332 struct cmipci *cm = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002333
2334 spin_lock_irq(&cm->reg_lock);
2335 if (args->ac3_sensitive && cm->mixer_insensitive) {
2336 ucontrol->value.integer.value[0] = 0;
2337 spin_unlock_irq(&cm->reg_lock);
2338 return 0;
2339 }
2340 if (args->is_byte)
2341 val = inb(cm->iobase + args->reg);
2342 else
2343 val = snd_cmipci_read(cm, args->reg);
2344 ucontrol->value.integer.value[0] = ((val & args->mask) == args->mask_on) ? 1 : 0;
2345 spin_unlock_irq(&cm->reg_lock);
2346 return 0;
2347}
2348
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002349static int snd_cmipci_uswitch_get(struct snd_kcontrol *kcontrol,
2350 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002352 struct cmipci_switch_args *args;
2353 args = (struct cmipci_switch_args *)kcontrol->private_value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002354 snd_assert(args != NULL, return -EINVAL);
2355 return _snd_cmipci_uswitch_get(kcontrol, ucontrol, args);
2356}
2357
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002358static int _snd_cmipci_uswitch_put(struct snd_kcontrol *kcontrol,
2359 struct snd_ctl_elem_value *ucontrol,
2360 struct cmipci_switch_args *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002361{
2362 unsigned int val;
2363 int change;
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002364 struct cmipci *cm = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002365
2366 spin_lock_irq(&cm->reg_lock);
2367 if (args->ac3_sensitive && cm->mixer_insensitive) {
2368 /* ignored */
2369 spin_unlock_irq(&cm->reg_lock);
2370 return 0;
2371 }
2372 if (args->is_byte)
2373 val = inb(cm->iobase + args->reg);
2374 else
2375 val = snd_cmipci_read(cm, args->reg);
Timofei V. Bondarenko8c670712006-12-20 19:20:07 +01002376 change = (val & args->mask) != (ucontrol->value.integer.value[0] ?
2377 args->mask_on : (args->mask & ~args->mask_on));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002378 if (change) {
2379 val &= ~args->mask;
2380 if (ucontrol->value.integer.value[0])
2381 val |= args->mask_on;
2382 else
2383 val |= (args->mask & ~args->mask_on);
2384 if (args->is_byte)
2385 outb((unsigned char)val, cm->iobase + args->reg);
2386 else
2387 snd_cmipci_write(cm, args->reg, val);
2388 }
2389 spin_unlock_irq(&cm->reg_lock);
2390 return change;
2391}
2392
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002393static int snd_cmipci_uswitch_put(struct snd_kcontrol *kcontrol,
2394 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002396 struct cmipci_switch_args *args;
2397 args = (struct cmipci_switch_args *)kcontrol->private_value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398 snd_assert(args != NULL, return -EINVAL);
2399 return _snd_cmipci_uswitch_put(kcontrol, ucontrol, args);
2400}
2401
2402#define DEFINE_SWITCH_ARG(sname, xreg, xmask, xmask_on, xis_byte, xac3) \
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002403static struct cmipci_switch_args cmipci_switch_arg_##sname = { \
Linus Torvalds1da177e2005-04-16 15:20:36 -07002404 .reg = xreg, \
2405 .mask = xmask, \
2406 .mask_on = xmask_on, \
2407 .is_byte = xis_byte, \
2408 .ac3_sensitive = xac3, \
2409}
2410
2411#define DEFINE_BIT_SWITCH_ARG(sname, xreg, xmask, xis_byte, xac3) \
2412 DEFINE_SWITCH_ARG(sname, xreg, xmask, xmask, xis_byte, xac3)
2413
2414#if 0 /* these will be controlled in pcm device */
2415DEFINE_BIT_SWITCH_ARG(spdif_in, CM_REG_FUNCTRL1, CM_SPDF_1, 0, 0);
2416DEFINE_BIT_SWITCH_ARG(spdif_out, CM_REG_FUNCTRL1, CM_SPDF_0, 0, 0);
2417#endif
2418DEFINE_BIT_SWITCH_ARG(spdif_in_sel1, CM_REG_CHFORMAT, CM_SPDIF_SELECT1, 0, 0);
2419DEFINE_BIT_SWITCH_ARG(spdif_in_sel2, CM_REG_MISC_CTRL, CM_SPDIF_SELECT2, 0, 0);
2420DEFINE_BIT_SWITCH_ARG(spdif_enable, CM_REG_LEGACY_CTRL, CM_ENSPDOUT, 0, 0);
2421DEFINE_BIT_SWITCH_ARG(spdo2dac, CM_REG_FUNCTRL1, CM_SPDO2DAC, 0, 1);
2422DEFINE_BIT_SWITCH_ARG(spdi_valid, CM_REG_MISC, CM_SPDVALID, 1, 0);
2423DEFINE_BIT_SWITCH_ARG(spdif_copyright, CM_REG_LEGACY_CTRL, CM_SPDCOPYRHT, 0, 0);
2424DEFINE_BIT_SWITCH_ARG(spdif_dac_out, CM_REG_LEGACY_CTRL, CM_DAC2SPDO, 0, 1);
2425DEFINE_SWITCH_ARG(spdo_5v, CM_REG_MISC_CTRL, CM_SPDO5V, 0, 0, 0); /* inverse: 0 = 5V */
2426// DEFINE_BIT_SWITCH_ARG(spdo_48k, CM_REG_MISC_CTRL, CM_SPDF_AC97|CM_SPDIF48K, 0, 1);
2427DEFINE_BIT_SWITCH_ARG(spdif_loop, CM_REG_FUNCTRL1, CM_SPDFLOOP, 0, 1);
2428DEFINE_BIT_SWITCH_ARG(spdi_monitor, CM_REG_MIXER1, CM_CDPLAY, 1, 0);
2429/* DEFINE_BIT_SWITCH_ARG(spdi_phase, CM_REG_CHFORMAT, CM_SPDIF_INVERSE, 0, 0); */
2430DEFINE_BIT_SWITCH_ARG(spdi_phase, CM_REG_MISC, CM_SPDIF_INVERSE, 1, 0);
2431DEFINE_BIT_SWITCH_ARG(spdi_phase2, CM_REG_CHFORMAT, CM_SPDIF_INVERSE2, 0, 0);
2432#if CM_CH_PLAY == 1
2433DEFINE_SWITCH_ARG(exchange_dac, CM_REG_MISC_CTRL, CM_XCHGDAC, 0, 0, 0); /* reversed */
2434#else
2435DEFINE_SWITCH_ARG(exchange_dac, CM_REG_MISC_CTRL, CM_XCHGDAC, CM_XCHGDAC, 0, 0);
2436#endif
2437DEFINE_BIT_SWITCH_ARG(fourch, CM_REG_MISC_CTRL, CM_N4SPK3D, 0, 0);
Clemens Ladischa839a332007-09-17 09:35:46 +02002438// DEFINE_BIT_SWITCH_ARG(line_rear, CM_REG_MIXER1, CM_REAR2LIN, 1, 0);
2439// DEFINE_BIT_SWITCH_ARG(line_bass, CM_REG_LEGACY_CTRL, CM_CENTR2LIN|CM_BASE2LIN, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002440// DEFINE_BIT_SWITCH_ARG(joystick, CM_REG_FUNCTRL1, CM_JYSTK_EN, 0, 0); /* now module option */
2441DEFINE_SWITCH_ARG(modem, CM_REG_MISC_CTRL, CM_FLINKON|CM_FLINKOFF, CM_FLINKON, 0, 0);
2442
2443#define DEFINE_SWITCH(sname, stype, sarg) \
2444{ .name = sname, \
2445 .iface = stype, \
2446 .info = snd_cmipci_uswitch_info, \
2447 .get = snd_cmipci_uswitch_get, \
2448 .put = snd_cmipci_uswitch_put, \
2449 .private_value = (unsigned long)&cmipci_switch_arg_##sarg,\
2450}
2451
2452#define DEFINE_CARD_SWITCH(sname, sarg) DEFINE_SWITCH(sname, SNDRV_CTL_ELEM_IFACE_CARD, sarg)
2453#define DEFINE_MIXER_SWITCH(sname, sarg) DEFINE_SWITCH(sname, SNDRV_CTL_ELEM_IFACE_MIXER, sarg)
2454
2455
2456/*
2457 * callbacks for spdif output switch
2458 * needs toggle two registers..
2459 */
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002460static int snd_cmipci_spdout_enable_get(struct snd_kcontrol *kcontrol,
2461 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002462{
2463 int changed;
2464 changed = _snd_cmipci_uswitch_get(kcontrol, ucontrol, &cmipci_switch_arg_spdif_enable);
2465 changed |= _snd_cmipci_uswitch_get(kcontrol, ucontrol, &cmipci_switch_arg_spdo2dac);
2466 return changed;
2467}
2468
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002469static int snd_cmipci_spdout_enable_put(struct snd_kcontrol *kcontrol,
2470 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002471{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002472 struct cmipci *chip = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002473 int changed;
2474 changed = _snd_cmipci_uswitch_put(kcontrol, ucontrol, &cmipci_switch_arg_spdif_enable);
2475 changed |= _snd_cmipci_uswitch_put(kcontrol, ucontrol, &cmipci_switch_arg_spdo2dac);
2476 if (changed) {
2477 if (ucontrol->value.integer.value[0]) {
2478 if (chip->spdif_playback_avail)
2479 snd_cmipci_set_bit(chip, CM_REG_FUNCTRL1, CM_PLAYBACK_SPDF);
2480 } else {
2481 if (chip->spdif_playback_avail)
2482 snd_cmipci_clear_bit(chip, CM_REG_FUNCTRL1, CM_PLAYBACK_SPDF);
2483 }
2484 }
2485 chip->spdif_playback_enabled = ucontrol->value.integer.value[0];
2486 return changed;
2487}
2488
2489
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002490static int snd_cmipci_line_in_mode_info(struct snd_kcontrol *kcontrol,
2491 struct snd_ctl_elem_info *uinfo)
Takashi Iwai01d25d42005-04-11 16:58:24 +02002492{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002493 struct cmipci *cm = snd_kcontrol_chip(kcontrol);
Takashi Iwai01d25d42005-04-11 16:58:24 +02002494 static char *texts[3] = { "Line-In", "Rear Output", "Bass Output" };
2495 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
2496 uinfo->count = 1;
2497 uinfo->value.enumerated.items = cm->chip_version >= 39 ? 3 : 2;
2498 if (uinfo->value.enumerated.item >= uinfo->value.enumerated.items)
2499 uinfo->value.enumerated.item = uinfo->value.enumerated.items - 1;
2500 strcpy(uinfo->value.enumerated.name, texts[uinfo->value.enumerated.item]);
2501 return 0;
2502}
2503
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002504static inline unsigned int get_line_in_mode(struct cmipci *cm)
Takashi Iwai01d25d42005-04-11 16:58:24 +02002505{
2506 unsigned int val;
2507 if (cm->chip_version >= 39) {
2508 val = snd_cmipci_read(cm, CM_REG_LEGACY_CTRL);
Clemens Ladischa839a332007-09-17 09:35:46 +02002509 if (val & (CM_CENTR2LIN | CM_BASE2LIN))
Takashi Iwai01d25d42005-04-11 16:58:24 +02002510 return 2;
2511 }
2512 val = snd_cmipci_read_b(cm, CM_REG_MIXER1);
Clemens Ladischa839a332007-09-17 09:35:46 +02002513 if (val & CM_REAR2LIN)
Takashi Iwai01d25d42005-04-11 16:58:24 +02002514 return 1;
2515 return 0;
2516}
2517
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002518static int snd_cmipci_line_in_mode_get(struct snd_kcontrol *kcontrol,
2519 struct snd_ctl_elem_value *ucontrol)
Takashi Iwai01d25d42005-04-11 16:58:24 +02002520{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002521 struct cmipci *cm = snd_kcontrol_chip(kcontrol);
Takashi Iwai01d25d42005-04-11 16:58:24 +02002522
2523 spin_lock_irq(&cm->reg_lock);
2524 ucontrol->value.enumerated.item[0] = get_line_in_mode(cm);
2525 spin_unlock_irq(&cm->reg_lock);
2526 return 0;
2527}
2528
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002529static int snd_cmipci_line_in_mode_put(struct snd_kcontrol *kcontrol,
2530 struct snd_ctl_elem_value *ucontrol)
Takashi Iwai01d25d42005-04-11 16:58:24 +02002531{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002532 struct cmipci *cm = snd_kcontrol_chip(kcontrol);
Takashi Iwai01d25d42005-04-11 16:58:24 +02002533 int change;
2534
2535 spin_lock_irq(&cm->reg_lock);
2536 if (ucontrol->value.enumerated.item[0] == 2)
Clemens Ladischa839a332007-09-17 09:35:46 +02002537 change = snd_cmipci_set_bit(cm, CM_REG_LEGACY_CTRL, CM_CENTR2LIN | CM_BASE2LIN);
Takashi Iwai01d25d42005-04-11 16:58:24 +02002538 else
Clemens Ladischa839a332007-09-17 09:35:46 +02002539 change = snd_cmipci_clear_bit(cm, CM_REG_LEGACY_CTRL, CM_CENTR2LIN | CM_BASE2LIN);
Takashi Iwai01d25d42005-04-11 16:58:24 +02002540 if (ucontrol->value.enumerated.item[0] == 1)
Clemens Ladischa839a332007-09-17 09:35:46 +02002541 change |= snd_cmipci_set_bit_b(cm, CM_REG_MIXER1, CM_REAR2LIN);
Takashi Iwai01d25d42005-04-11 16:58:24 +02002542 else
Clemens Ladischa839a332007-09-17 09:35:46 +02002543 change |= snd_cmipci_clear_bit_b(cm, CM_REG_MIXER1, CM_REAR2LIN);
Takashi Iwai01d25d42005-04-11 16:58:24 +02002544 spin_unlock_irq(&cm->reg_lock);
2545 return change;
2546}
2547
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002548static int snd_cmipci_mic_in_mode_info(struct snd_kcontrol *kcontrol,
2549 struct snd_ctl_elem_info *uinfo)
Takashi Iwai01d25d42005-04-11 16:58:24 +02002550{
2551 static char *texts[2] = { "Mic-In", "Center/LFE Output" };
2552 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
2553 uinfo->count = 1;
2554 uinfo->value.enumerated.items = 2;
2555 if (uinfo->value.enumerated.item >= uinfo->value.enumerated.items)
2556 uinfo->value.enumerated.item = uinfo->value.enumerated.items - 1;
2557 strcpy(uinfo->value.enumerated.name, texts[uinfo->value.enumerated.item]);
2558 return 0;
2559}
2560
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002561static int snd_cmipci_mic_in_mode_get(struct snd_kcontrol *kcontrol,
2562 struct snd_ctl_elem_value *ucontrol)
Takashi Iwai01d25d42005-04-11 16:58:24 +02002563{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002564 struct cmipci *cm = snd_kcontrol_chip(kcontrol);
Takashi Iwai01d25d42005-04-11 16:58:24 +02002565 /* same bit as spdi_phase */
2566 spin_lock_irq(&cm->reg_lock);
2567 ucontrol->value.enumerated.item[0] =
2568 (snd_cmipci_read_b(cm, CM_REG_MISC) & CM_SPDIF_INVERSE) ? 1 : 0;
2569 spin_unlock_irq(&cm->reg_lock);
2570 return 0;
2571}
2572
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002573static int snd_cmipci_mic_in_mode_put(struct snd_kcontrol *kcontrol,
2574 struct snd_ctl_elem_value *ucontrol)
Takashi Iwai01d25d42005-04-11 16:58:24 +02002575{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002576 struct cmipci *cm = snd_kcontrol_chip(kcontrol);
Takashi Iwai01d25d42005-04-11 16:58:24 +02002577 int change;
2578
2579 spin_lock_irq(&cm->reg_lock);
2580 if (ucontrol->value.enumerated.item[0])
2581 change = snd_cmipci_set_bit_b(cm, CM_REG_MISC, CM_SPDIF_INVERSE);
2582 else
2583 change = snd_cmipci_clear_bit_b(cm, CM_REG_MISC, CM_SPDIF_INVERSE);
2584 spin_unlock_irq(&cm->reg_lock);
2585 return change;
2586}
2587
Linus Torvalds1da177e2005-04-16 15:20:36 -07002588/* both for CM8338/8738 */
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002589static struct snd_kcontrol_new snd_cmipci_mixer_switches[] __devinitdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002590 DEFINE_MIXER_SWITCH("Four Channel Mode", fourch),
Takashi Iwai01d25d42005-04-11 16:58:24 +02002591 {
2592 .name = "Line-In Mode",
2593 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2594 .info = snd_cmipci_line_in_mode_info,
2595 .get = snd_cmipci_line_in_mode_get,
2596 .put = snd_cmipci_line_in_mode_put,
2597 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002598};
2599
2600/* for non-multichannel chips */
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002601static struct snd_kcontrol_new snd_cmipci_nomulti_switch __devinitdata =
Linus Torvalds1da177e2005-04-16 15:20:36 -07002602DEFINE_MIXER_SWITCH("Exchange DAC", exchange_dac);
2603
2604/* only for CM8738 */
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002605static struct snd_kcontrol_new snd_cmipci_8738_mixer_switches[] __devinitdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002606#if 0 /* controlled in pcm device */
2607 DEFINE_MIXER_SWITCH("IEC958 In Record", spdif_in),
2608 DEFINE_MIXER_SWITCH("IEC958 Out", spdif_out),
2609 DEFINE_MIXER_SWITCH("IEC958 Out To DAC", spdo2dac),
2610#endif
2611 // DEFINE_MIXER_SWITCH("IEC958 Output Switch", spdif_enable),
2612 { .name = "IEC958 Output Switch",
2613 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2614 .info = snd_cmipci_uswitch_info,
2615 .get = snd_cmipci_spdout_enable_get,
2616 .put = snd_cmipci_spdout_enable_put,
2617 },
2618 DEFINE_MIXER_SWITCH("IEC958 In Valid", spdi_valid),
2619 DEFINE_MIXER_SWITCH("IEC958 Copyright", spdif_copyright),
2620 DEFINE_MIXER_SWITCH("IEC958 5V", spdo_5v),
2621// DEFINE_MIXER_SWITCH("IEC958 In/Out 48KHz", spdo_48k),
2622 DEFINE_MIXER_SWITCH("IEC958 Loop", spdif_loop),
2623 DEFINE_MIXER_SWITCH("IEC958 In Monitor", spdi_monitor),
2624};
2625
2626/* only for model 033/037 */
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002627static struct snd_kcontrol_new snd_cmipci_old_mixer_switches[] __devinitdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002628 DEFINE_MIXER_SWITCH("IEC958 Mix Analog", spdif_dac_out),
2629 DEFINE_MIXER_SWITCH("IEC958 In Phase Inverse", spdi_phase),
2630 DEFINE_MIXER_SWITCH("IEC958 In Select", spdif_in_sel1),
2631};
2632
2633/* only for model 039 or later */
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002634static struct snd_kcontrol_new snd_cmipci_extra_mixer_switches[] __devinitdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002635 DEFINE_MIXER_SWITCH("IEC958 In Select", spdif_in_sel2),
2636 DEFINE_MIXER_SWITCH("IEC958 In Phase Inverse", spdi_phase2),
Takashi Iwai01d25d42005-04-11 16:58:24 +02002637 {
2638 .name = "Mic-In Mode",
2639 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2640 .info = snd_cmipci_mic_in_mode_info,
2641 .get = snd_cmipci_mic_in_mode_get,
2642 .put = snd_cmipci_mic_in_mode_put,
2643 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002644};
2645
2646/* card control switches */
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002647static struct snd_kcontrol_new snd_cmipci_control_switches[] __devinitdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002648 // DEFINE_CARD_SWITCH("Joystick", joystick), /* now module option */
2649 DEFINE_CARD_SWITCH("Modem", modem),
2650};
2651
2652
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002653static int __devinit snd_cmipci_mixer_new(struct cmipci *cm, int pcm_spdif_device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002654{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002655 struct snd_card *card;
2656 struct snd_kcontrol_new *sw;
2657 struct snd_kcontrol *kctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002658 unsigned int idx;
2659 int err;
2660
2661 snd_assert(cm != NULL && cm->card != NULL, return -EINVAL);
2662
2663 card = cm->card;
2664
2665 strcpy(card->mixername, "CMedia PCI");
2666
2667 spin_lock_irq(&cm->reg_lock);
2668 snd_cmipci_mixer_write(cm, 0x00, 0x00); /* mixer reset */
2669 spin_unlock_irq(&cm->reg_lock);
2670
2671 for (idx = 0; idx < ARRAY_SIZE(snd_cmipci_mixers); idx++) {
2672 if (cm->chip_version == 68) { // 8768 has no PCM volume
2673 if (!strcmp(snd_cmipci_mixers[idx].name,
2674 "PCM Playback Volume"))
2675 continue;
2676 }
2677 if ((err = snd_ctl_add(card, snd_ctl_new1(&snd_cmipci_mixers[idx], cm))) < 0)
2678 return err;
2679 }
2680
2681 /* mixer switches */
2682 sw = snd_cmipci_mixer_switches;
2683 for (idx = 0; idx < ARRAY_SIZE(snd_cmipci_mixer_switches); idx++, sw++) {
2684 err = snd_ctl_add(cm->card, snd_ctl_new1(sw, cm));
2685 if (err < 0)
2686 return err;
2687 }
2688 if (! cm->can_multi_ch) {
2689 err = snd_ctl_add(cm->card, snd_ctl_new1(&snd_cmipci_nomulti_switch, cm));
2690 if (err < 0)
2691 return err;
2692 }
2693 if (cm->device == PCI_DEVICE_ID_CMEDIA_CM8738 ||
2694 cm->device == PCI_DEVICE_ID_CMEDIA_CM8738B) {
2695 sw = snd_cmipci_8738_mixer_switches;
2696 for (idx = 0; idx < ARRAY_SIZE(snd_cmipci_8738_mixer_switches); idx++, sw++) {
2697 err = snd_ctl_add(cm->card, snd_ctl_new1(sw, cm));
2698 if (err < 0)
2699 return err;
2700 }
2701 if (cm->can_ac3_hw) {
2702 if ((err = snd_ctl_add(card, kctl = snd_ctl_new1(&snd_cmipci_spdif_default, cm))) < 0)
2703 return err;
2704 kctl->id.device = pcm_spdif_device;
2705 if ((err = snd_ctl_add(card, kctl = snd_ctl_new1(&snd_cmipci_spdif_mask, cm))) < 0)
2706 return err;
2707 kctl->id.device = pcm_spdif_device;
2708 if ((err = snd_ctl_add(card, kctl = snd_ctl_new1(&snd_cmipci_spdif_stream, cm))) < 0)
2709 return err;
2710 kctl->id.device = pcm_spdif_device;
2711 }
2712 if (cm->chip_version <= 37) {
2713 sw = snd_cmipci_old_mixer_switches;
2714 for (idx = 0; idx < ARRAY_SIZE(snd_cmipci_old_mixer_switches); idx++, sw++) {
2715 err = snd_ctl_add(cm->card, snd_ctl_new1(sw, cm));
2716 if (err < 0)
2717 return err;
2718 }
2719 }
2720 }
2721 if (cm->chip_version >= 39) {
2722 sw = snd_cmipci_extra_mixer_switches;
2723 for (idx = 0; idx < ARRAY_SIZE(snd_cmipci_extra_mixer_switches); idx++, sw++) {
2724 err = snd_ctl_add(cm->card, snd_ctl_new1(sw, cm));
2725 if (err < 0)
2726 return err;
2727 }
2728 }
2729
2730 /* card switches */
2731 sw = snd_cmipci_control_switches;
2732 for (idx = 0; idx < ARRAY_SIZE(snd_cmipci_control_switches); idx++, sw++) {
2733 err = snd_ctl_add(cm->card, snd_ctl_new1(sw, cm));
2734 if (err < 0)
2735 return err;
2736 }
2737
2738 for (idx = 0; idx < CM_SAVED_MIXERS; idx++) {
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002739 struct snd_ctl_elem_id id;
2740 struct snd_kcontrol *ctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002741 memset(&id, 0, sizeof(id));
2742 id.iface = SNDRV_CTL_ELEM_IFACE_MIXER;
2743 strcpy(id.name, cm_saved_mixer[idx].name);
2744 if ((ctl = snd_ctl_find_id(cm->card, &id)) != NULL)
2745 cm->mixer_res_ctl[idx] = ctl;
2746 }
2747
2748 return 0;
2749}
2750
2751
2752/*
2753 * proc interface
2754 */
2755
2756#ifdef CONFIG_PROC_FS
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002757static void snd_cmipci_proc_read(struct snd_info_entry *entry,
2758 struct snd_info_buffer *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002759{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002760 struct cmipci *cm = entry->private_data;
Clemens Ladisch54d030c2007-09-17 09:36:16 +02002761 int i, v;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002762
Clemens Ladisch54d030c2007-09-17 09:36:16 +02002763 snd_iprintf(buffer, "%s\n", cm->card->longname);
2764 for (i = 0; i < 0x94; i++) {
2765 if (i == 0x28)
2766 i = 0x90;
2767 v = inb(cm->iobase + i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002768 if (i % 4 == 0)
Clemens Ladisch54d030c2007-09-17 09:36:16 +02002769 snd_iprintf(buffer, "\n%02x:", i);
2770 snd_iprintf(buffer, " %02x", v);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002771 }
Clemens Ladisch54d030c2007-09-17 09:36:16 +02002772 snd_iprintf(buffer, "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002773}
2774
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002775static void __devinit snd_cmipci_proc_init(struct cmipci *cm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002776{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002777 struct snd_info_entry *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002778
2779 if (! snd_card_proc_new(cm->card, "cmipci", &entry))
Takashi Iwaibf850202006-04-28 15:13:41 +02002780 snd_info_set_text_ops(entry, cm, snd_cmipci_proc_read);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002781}
2782#else /* !CONFIG_PROC_FS */
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002783static inline void snd_cmipci_proc_init(struct cmipci *cm) {}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002784#endif
2785
2786
Takashi Iwaif40b6892006-07-05 16:51:05 +02002787static struct pci_device_id snd_cmipci_ids[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002788 {PCI_VENDOR_ID_CMEDIA, PCI_DEVICE_ID_CMEDIA_CM8338A, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
2789 {PCI_VENDOR_ID_CMEDIA, PCI_DEVICE_ID_CMEDIA_CM8338B, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
2790 {PCI_VENDOR_ID_CMEDIA, PCI_DEVICE_ID_CMEDIA_CM8738, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
2791 {PCI_VENDOR_ID_CMEDIA, PCI_DEVICE_ID_CMEDIA_CM8738B, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
2792 {PCI_VENDOR_ID_AL, PCI_DEVICE_ID_CMEDIA_CM8738, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
2793 {0,},
2794};
2795
2796
2797/*
2798 * check chip version and capabilities
2799 * driver name is modified according to the chip model
2800 */
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002801static void __devinit query_chip(struct cmipci *cm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002802{
2803 unsigned int detect;
2804
2805 /* check reg 0Ch, bit 24-31 */
2806 detect = snd_cmipci_read(cm, CM_REG_INT_HLDCLR) & CM_CHIP_MASK2;
2807 if (! detect) {
2808 /* check reg 08h, bit 24-28 */
2809 detect = snd_cmipci_read(cm, CM_REG_CHFORMAT) & CM_CHIP_MASK1;
Clemens Ladisch133271f2007-08-27 09:20:31 +02002810 switch (detect) {
2811 case 0:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002812 cm->chip_version = 33;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002813 if (cm->do_soft_ac3)
2814 cm->can_ac3_sw = 1;
2815 else
2816 cm->can_ac3_hw = 1;
Clemens Ladisch133271f2007-08-27 09:20:31 +02002817 break;
Clemens Ladisch6935e682007-09-17 09:34:59 +02002818 case CM_CHIP_037:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002819 cm->chip_version = 37;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002820 cm->can_ac3_hw = 1;
Clemens Ladisch133271f2007-08-27 09:20:31 +02002821 break;
2822 default:
2823 cm->chip_version = 39;
2824 cm->can_ac3_hw = 1;
2825 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002826 }
Clemens Ladisch133271f2007-08-27 09:20:31 +02002827 cm->max_channels = 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002828 } else {
Clemens Ladisch133271f2007-08-27 09:20:31 +02002829 if (detect & CM_CHIP_039) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002830 cm->chip_version = 39;
2831 if (detect & CM_CHIP_039_6CH) /* 4 or 6 channels */
2832 cm->max_channels = 6;
2833 else
2834 cm->max_channels = 4;
Clemens Ladisch133271f2007-08-27 09:20:31 +02002835 } else if (detect & CM_CHIP_8768) {
2836 cm->chip_version = 68;
2837 cm->max_channels = 8;
Timofei Bondarenko755c48a2007-10-31 17:36:20 +01002838 cm->can_96k = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002839 } else {
Clemens Ladisch133271f2007-08-27 09:20:31 +02002840 cm->chip_version = 55;
2841 cm->max_channels = 6;
Timofei Bondarenko755c48a2007-10-31 17:36:20 +01002842 cm->can_96k = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002843 }
Clemens Ladisch133271f2007-08-27 09:20:31 +02002844 cm->can_ac3_hw = 1;
Clemens Ladisch133271f2007-08-27 09:20:31 +02002845 cm->can_multi_ch = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002846 }
2847}
2848
2849#ifdef SUPPORT_JOYSTICK
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002850static int __devinit snd_cmipci_create_gameport(struct cmipci *cm, int dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002851{
2852 static int ports[] = { 0x201, 0x200, 0 }; /* FIXME: majority is 0x201? */
2853 struct gameport *gp;
2854 struct resource *r = NULL;
2855 int i, io_port = 0;
2856
2857 if (joystick_port[dev] == 0)
2858 return -ENODEV;
2859
2860 if (joystick_port[dev] == 1) { /* auto-detect */
2861 for (i = 0; ports[i]; i++) {
2862 io_port = ports[i];
2863 r = request_region(io_port, 1, "CMIPCI gameport");
2864 if (r)
2865 break;
2866 }
2867 } else {
2868 io_port = joystick_port[dev];
2869 r = request_region(io_port, 1, "CMIPCI gameport");
2870 }
2871
2872 if (!r) {
2873 printk(KERN_WARNING "cmipci: cannot reserve joystick ports\n");
2874 return -EBUSY;
2875 }
2876
2877 cm->gameport = gp = gameport_allocate_port();
2878 if (!gp) {
2879 printk(KERN_ERR "cmipci: cannot allocate memory for gameport\n");
Takashi Iwaib1d57762005-10-10 11:56:31 +02002880 release_and_free_resource(r);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002881 return -ENOMEM;
2882 }
2883 gameport_set_name(gp, "C-Media Gameport");
2884 gameport_set_phys(gp, "pci%s/gameport0", pci_name(cm->pci));
2885 gameport_set_dev_parent(gp, &cm->pci->dev);
2886 gp->io = io_port;
2887 gameport_set_port_data(gp, r);
2888
2889 snd_cmipci_set_bit(cm, CM_REG_FUNCTRL1, CM_JYSTK_EN);
2890
2891 gameport_register_port(cm->gameport);
2892
2893 return 0;
2894}
2895
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002896static void snd_cmipci_free_gameport(struct cmipci *cm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002897{
2898 if (cm->gameport) {
2899 struct resource *r = gameport_get_port_data(cm->gameport);
2900
2901 gameport_unregister_port(cm->gameport);
2902 cm->gameport = NULL;
2903
2904 snd_cmipci_clear_bit(cm, CM_REG_FUNCTRL1, CM_JYSTK_EN);
Takashi Iwaib1d57762005-10-10 11:56:31 +02002905 release_and_free_resource(r);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002906 }
2907}
2908#else
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002909static inline int snd_cmipci_create_gameport(struct cmipci *cm, int dev) { return -ENOSYS; }
2910static inline void snd_cmipci_free_gameport(struct cmipci *cm) { }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002911#endif
2912
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002913static int snd_cmipci_free(struct cmipci *cm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002914{
2915 if (cm->irq >= 0) {
2916 snd_cmipci_clear_bit(cm, CM_REG_MISC_CTRL, CM_FM_EN);
2917 snd_cmipci_clear_bit(cm, CM_REG_LEGACY_CTRL, CM_ENSPDOUT);
2918 snd_cmipci_write(cm, CM_REG_INT_HLDCLR, 0); /* disable ints */
2919 snd_cmipci_ch_reset(cm, CM_CH_PLAY);
2920 snd_cmipci_ch_reset(cm, CM_CH_CAPT);
2921 snd_cmipci_write(cm, CM_REG_FUNCTRL0, 0); /* disable channels */
2922 snd_cmipci_write(cm, CM_REG_FUNCTRL1, 0);
2923
2924 /* reset mixer */
2925 snd_cmipci_mixer_write(cm, 0, 0);
2926
2927 synchronize_irq(cm->irq);
2928
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002929 free_irq(cm->irq, cm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002930 }
2931
2932 snd_cmipci_free_gameport(cm);
2933 pci_release_regions(cm->pci);
2934 pci_disable_device(cm->pci);
2935 kfree(cm);
2936 return 0;
2937}
2938
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002939static int snd_cmipci_dev_free(struct snd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002940{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002941 struct cmipci *cm = device->device_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002942 return snd_cmipci_free(cm);
2943}
2944
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002945static int __devinit snd_cmipci_create_fm(struct cmipci *cm, long fm_port)
Clemens Ladisch5747e542005-09-14 08:33:46 +02002946{
2947 long iosynth;
2948 unsigned int val;
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002949 struct snd_opl3 *opl3;
Clemens Ladisch5747e542005-09-14 08:33:46 +02002950 int err;
2951
Takashi Iwai2f24d1592007-02-15 18:56:43 +01002952 if (!fm_port)
2953 goto disable_fm;
2954
Clemens Ladischc78c9502007-09-03 09:55:49 +02002955 if (cm->chip_version >= 39) {
Clemens Ladisch45c41b42007-08-22 09:45:03 +02002956 /* first try FM regs in PCI port range */
2957 iosynth = cm->iobase + CM_REG_FM_PCI;
2958 err = snd_opl3_create(cm->card, iosynth, iosynth + 2,
2959 OPL3_HW_OPL3, 1, &opl3);
2960 } else {
2961 err = -EIO;
2962 }
Clemens Ladisch5747e542005-09-14 08:33:46 +02002963 if (err < 0) {
2964 /* then try legacy ports */
2965 val = snd_cmipci_read(cm, CM_REG_LEGACY_CTRL) & ~CM_FMSEL_MASK;
2966 iosynth = fm_port;
2967 switch (iosynth) {
2968 case 0x3E8: val |= CM_FMSEL_3E8; break;
2969 case 0x3E0: val |= CM_FMSEL_3E0; break;
2970 case 0x3C8: val |= CM_FMSEL_3C8; break;
2971 case 0x388: val |= CM_FMSEL_388; break;
2972 default:
Takashi Iwai2f24d1592007-02-15 18:56:43 +01002973 goto disable_fm;
Clemens Ladisch5747e542005-09-14 08:33:46 +02002974 }
2975 snd_cmipci_write(cm, CM_REG_LEGACY_CTRL, val);
2976 /* enable FM */
2977 snd_cmipci_set_bit(cm, CM_REG_MISC_CTRL, CM_FM_EN);
2978
2979 if (snd_opl3_create(cm->card, iosynth, iosynth + 2,
2980 OPL3_HW_OPL3, 0, &opl3) < 0) {
2981 printk(KERN_ERR "cmipci: no OPL device at %#lx, "
2982 "skipping...\n", iosynth);
Takashi Iwai2f24d1592007-02-15 18:56:43 +01002983 goto disable_fm;
Clemens Ladisch5747e542005-09-14 08:33:46 +02002984 }
2985 }
2986 if ((err = snd_opl3_hwdep_new(opl3, 0, 1, NULL)) < 0) {
2987 printk(KERN_ERR "cmipci: cannot create OPL3 hwdep\n");
2988 return err;
2989 }
2990 return 0;
Takashi Iwai2f24d1592007-02-15 18:56:43 +01002991
2992 disable_fm:
2993 snd_cmipci_clear_bit(cm, CM_REG_LEGACY_CTRL, CM_FMSEL_MASK);
2994 snd_cmipci_clear_bit(cm, CM_REG_MISC_CTRL, CM_FM_EN);
2995 return 0;
Clemens Ladisch5747e542005-09-14 08:33:46 +02002996}
2997
Takashi Iwai2cbdb682005-11-17 15:03:13 +01002998static int __devinit snd_cmipci_create(struct snd_card *card, struct pci_dev *pci,
2999 int dev, struct cmipci **rcmipci)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003000{
Takashi Iwai2cbdb682005-11-17 15:03:13 +01003001 struct cmipci *cm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003002 int err;
Takashi Iwai2cbdb682005-11-17 15:03:13 +01003003 static struct snd_device_ops ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003004 .dev_free = snd_cmipci_dev_free,
3005 };
Clemens Ladischd6426252007-08-27 09:22:31 +02003006 unsigned int val;
Clemens Ladisch5747e542005-09-14 08:33:46 +02003007 long iomidi;
Clemens Ladischc9116ae2007-08-24 09:18:04 +02003008 int integrated_midi = 0;
Clemens Ladischb7e054a2007-09-03 09:56:45 +02003009 char modelstr[16];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003010 int pcm_index, pcm_spdif_index;
3011 static struct pci_device_id intel_82437vx[] = {
3012 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82437VX) },
3013 { },
3014 };
3015
3016 *rcmipci = NULL;
3017
3018 if ((err = pci_enable_device(pci)) < 0)
3019 return err;
3020
Takashi Iwaie560d8d2005-09-09 14:21:46 +02003021 cm = kzalloc(sizeof(*cm), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003022 if (cm == NULL) {
3023 pci_disable_device(pci);
3024 return -ENOMEM;
3025 }
3026
3027 spin_lock_init(&cm->reg_lock);
Ingo Molnar62932df2006-01-16 16:34:20 +01003028 mutex_init(&cm->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003029 cm->device = pci->device;
3030 cm->card = card;
3031 cm->pci = pci;
3032 cm->irq = -1;
3033 cm->channel[0].ch = 0;
3034 cm->channel[1].ch = 1;
3035 cm->channel[0].is_dac = cm->channel[1].is_dac = 1; /* dual DAC mode */
3036
3037 if ((err = pci_request_regions(pci, card->driver)) < 0) {
3038 kfree(cm);
3039 pci_disable_device(pci);
3040 return err;
3041 }
3042 cm->iobase = pci_resource_start(pci, 0);
3043
Takashi Iwai2cbdb682005-11-17 15:03:13 +01003044 if (request_irq(pci->irq, snd_cmipci_interrupt,
Takashi Iwai437a5a42006-11-21 12:14:23 +01003045 IRQF_SHARED, card->driver, cm)) {
Takashi Iwai99b359b2005-10-20 18:26:44 +02003046 snd_printk(KERN_ERR "unable to grab IRQ %d\n", pci->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003047 snd_cmipci_free(cm);
3048 return -EBUSY;
3049 }
3050 cm->irq = pci->irq;
3051
3052 pci_set_master(cm->pci);
3053
3054 /*
3055 * check chip version, max channels and capabilities
3056 */
3057
3058 cm->chip_version = 0;
3059 cm->max_channels = 2;
3060 cm->do_soft_ac3 = soft_ac3[dev];
3061
3062 if (pci->device != PCI_DEVICE_ID_CMEDIA_CM8338A &&
3063 pci->device != PCI_DEVICE_ID_CMEDIA_CM8338B)
3064 query_chip(cm);
3065 /* added -MCx suffix for chip supporting multi-channels */
3066 if (cm->can_multi_ch)
3067 sprintf(cm->card->driver + strlen(cm->card->driver),
3068 "-MC%d", cm->max_channels);
3069 else if (cm->can_ac3_sw)
3070 strcpy(cm->card->driver + strlen(cm->card->driver), "-SWIEC");
3071
3072 cm->dig_status = SNDRV_PCM_DEFAULT_CON_SPDIF;
3073 cm->dig_pcm_status = SNDRV_PCM_DEFAULT_CON_SPDIF;
3074
3075#if CM_CH_PLAY == 1
3076 cm->ctrl = CM_CHADC0; /* default FUNCNTRL0 */
3077#else
3078 cm->ctrl = CM_CHADC1; /* default FUNCNTRL0 */
3079#endif
3080
3081 /* initialize codec registers */
Clemens Ladisch3042ef72007-09-17 09:36:49 +02003082 snd_cmipci_set_bit(cm, CM_REG_MISC_CTRL, CM_RESET);
3083 snd_cmipci_clear_bit(cm, CM_REG_MISC_CTRL, CM_RESET);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003084 snd_cmipci_write(cm, CM_REG_INT_HLDCLR, 0); /* disable ints */
3085 snd_cmipci_ch_reset(cm, CM_CH_PLAY);
3086 snd_cmipci_ch_reset(cm, CM_CH_CAPT);
3087 snd_cmipci_write(cm, CM_REG_FUNCTRL0, 0); /* disable channels */
3088 snd_cmipci_write(cm, CM_REG_FUNCTRL1, 0);
3089
3090 snd_cmipci_write(cm, CM_REG_CHFORMAT, 0);
3091 snd_cmipci_set_bit(cm, CM_REG_MISC_CTRL, CM_ENDBDAC|CM_N4SPK3D);
3092#if CM_CH_PLAY == 1
3093 snd_cmipci_set_bit(cm, CM_REG_MISC_CTRL, CM_XCHGDAC);
3094#else
3095 snd_cmipci_clear_bit(cm, CM_REG_MISC_CTRL, CM_XCHGDAC);
3096#endif
Clemens Ladisch4ee72712007-09-17 09:37:19 +02003097 if (cm->chip_version) {
3098 snd_cmipci_write_b(cm, CM_REG_EXT_MISC, 0x20); /* magic */
3099 snd_cmipci_write_b(cm, CM_REG_EXT_MISC + 1, 0x09); /* more magic */
3100 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003101 /* Set Bus Master Request */
3102 snd_cmipci_set_bit(cm, CM_REG_FUNCTRL1, CM_BREQ);
3103
3104 /* Assume TX and compatible chip set (Autodetection required for VX chip sets) */
3105 switch (pci->device) {
3106 case PCI_DEVICE_ID_CMEDIA_CM8738:
3107 case PCI_DEVICE_ID_CMEDIA_CM8738B:
3108 if (!pci_dev_present(intel_82437vx))
3109 snd_cmipci_set_bit(cm, CM_REG_MISC_CTRL, CM_TXVX);
3110 break;
3111 default:
3112 break;
3113 }
3114
Clemens Ladischd6426252007-08-27 09:22:31 +02003115 if (cm->chip_version < 68) {
3116 val = pci->device < 0x110 ? 8338 : 8738;
Clemens Ladischd6426252007-08-27 09:22:31 +02003117 } else {
3118 switch (snd_cmipci_read_b(cm, CM_REG_INT_HLDCLR + 3) & 0x03) {
3119 case 0:
3120 val = 8769;
3121 break;
3122 case 2:
3123 val = 8762;
3124 break;
3125 default:
3126 switch ((pci->subsystem_vendor << 16) |
3127 pci->subsystem_device) {
3128 case 0x13f69761:
3129 case 0x584d3741:
3130 case 0x584d3751:
3131 case 0x584d3761:
3132 case 0x584d3771:
3133 case 0x72848384:
3134 val = 8770;
3135 break;
3136 default:
3137 val = 8768;
3138 break;
3139 }
3140 }
Clemens Ladischd6426252007-08-27 09:22:31 +02003141 }
Clemens Ladischb7e054a2007-09-03 09:56:45 +02003142 sprintf(card->shortname, "C-Media CMI%d", val);
3143 if (cm->chip_version < 68)
3144 sprintf(modelstr, " (model %d)", cm->chip_version);
3145 else
3146 modelstr[0] = '\0';
3147 sprintf(card->longname, "%s%s at %#lx, irq %i",
3148 card->shortname, modelstr, cm->iobase, cm->irq);
Clemens Ladisch1e02d6e2007-08-21 08:58:35 +02003149
Linus Torvalds1da177e2005-04-16 15:20:36 -07003150 if ((err = snd_device_new(card, SNDRV_DEV_LOWLEVEL, cm, &ops)) < 0) {
3151 snd_cmipci_free(cm);
3152 return err;
3153 }
3154
Clemens Ladischc78c9502007-09-03 09:55:49 +02003155 if (cm->chip_version >= 39) {
Clemens Ladischc9116ae2007-08-24 09:18:04 +02003156 val = snd_cmipci_read_b(cm, CM_REG_MPU_PCI + 1);
3157 if (val != 0x00 && val != 0xff) {
3158 iomidi = cm->iobase + CM_REG_MPU_PCI;
3159 integrated_midi = 1;
3160 }
3161 }
3162 if (!integrated_midi) {
Clemens Ladischc78c9502007-09-03 09:55:49 +02003163 val = 0;
Clemens Ladisch5747e542005-09-14 08:33:46 +02003164 iomidi = mpu_port[dev];
3165 switch (iomidi) {
3166 case 0x320: val = CM_VMPU_320; break;
3167 case 0x310: val = CM_VMPU_310; break;
3168 case 0x300: val = CM_VMPU_300; break;
3169 case 0x330: val = CM_VMPU_330; break;
3170 default:
3171 iomidi = 0; break;
3172 }
3173 if (iomidi > 0) {
3174 snd_cmipci_write(cm, CM_REG_LEGACY_CTRL, val);
3175 /* enable UART */
3176 snd_cmipci_set_bit(cm, CM_REG_FUNCTRL1, CM_UART_EN);
Clemens Ladisch88039812007-09-03 09:56:23 +02003177 if (inb(iomidi + 1) == 0xff) {
3178 snd_printk(KERN_ERR "cannot enable MPU-401 port"
3179 " at %#lx\n", iomidi);
3180 snd_cmipci_clear_bit(cm, CM_REG_FUNCTRL1,
3181 CM_UART_EN);
3182 iomidi = 0;
3183 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003184 }
3185 }
Clemens Ladisch5747e542005-09-14 08:33:46 +02003186
Clemens Ladisch45c41b42007-08-22 09:45:03 +02003187 if (cm->chip_version < 68) {
3188 err = snd_cmipci_create_fm(cm, fm_port[dev]);
3189 if (err < 0)
3190 return err;
3191 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003192
3193 /* reset mixer */
3194 snd_cmipci_mixer_write(cm, 0, 0);
3195
3196 snd_cmipci_proc_init(cm);
3197
3198 /* create pcm devices */
3199 pcm_index = pcm_spdif_index = 0;
3200 if ((err = snd_cmipci_pcm_new(cm, pcm_index)) < 0)
3201 return err;
3202 pcm_index++;
Clemens Ladischb080ebb2007-08-27 09:21:02 +02003203 if ((err = snd_cmipci_pcm2_new(cm, pcm_index)) < 0)
3204 return err;
3205 pcm_index++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003206 if (cm->can_ac3_hw || cm->can_ac3_sw) {
3207 pcm_spdif_index = pcm_index;
3208 if ((err = snd_cmipci_pcm_spdif_new(cm, pcm_index)) < 0)
3209 return err;
3210 }
3211
3212 /* create mixer interface & switches */
3213 if ((err = snd_cmipci_mixer_new(cm, pcm_spdif_index)) < 0)
3214 return err;
3215
3216 if (iomidi > 0) {
3217 if ((err = snd_mpu401_uart_new(card, 0, MPU401_HW_CMIPCI,
Takashi Iwai302e4c22006-05-23 13:24:30 +02003218 iomidi,
3219 (integrated_midi ?
3220 MPU401_INFO_INTEGRATED : 0),
Linus Torvalds1da177e2005-04-16 15:20:36 -07003221 cm->irq, 0, &cm->rmidi)) < 0) {
3222 printk(KERN_ERR "cmipci: no UART401 device at 0x%lx\n", iomidi);
3223 }
3224 }
3225
3226#ifdef USE_VAR48KRATE
3227 for (val = 0; val < ARRAY_SIZE(rates); val++)
3228 snd_cmipci_set_pll(cm, rates[val], val);
3229
3230 /*
3231 * (Re-)Enable external switch spdo_48k
3232 */
3233 snd_cmipci_set_bit(cm, CM_REG_MISC_CTRL, CM_SPDIF48K|CM_SPDF_AC97);
3234#endif /* USE_VAR48KRATE */
3235
3236 if (snd_cmipci_create_gameport(cm, dev) < 0)
3237 snd_cmipci_clear_bit(cm, CM_REG_FUNCTRL1, CM_JYSTK_EN);
3238
3239 snd_card_set_dev(card, &pci->dev);
3240
3241 *rcmipci = cm;
3242 return 0;
3243}
3244
3245/*
3246 */
3247
3248MODULE_DEVICE_TABLE(pci, snd_cmipci_ids);
3249
3250static int __devinit snd_cmipci_probe(struct pci_dev *pci,
3251 const struct pci_device_id *pci_id)
3252{
3253 static int dev;
Takashi Iwai2cbdb682005-11-17 15:03:13 +01003254 struct snd_card *card;
3255 struct cmipci *cm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003256 int err;
3257
3258 if (dev >= SNDRV_CARDS)
3259 return -ENODEV;
3260 if (! enable[dev]) {
3261 dev++;
3262 return -ENOENT;
3263 }
3264
3265 card = snd_card_new(index[dev], id[dev], THIS_MODULE, 0);
3266 if (card == NULL)
3267 return -ENOMEM;
3268
3269 switch (pci->device) {
3270 case PCI_DEVICE_ID_CMEDIA_CM8738:
3271 case PCI_DEVICE_ID_CMEDIA_CM8738B:
3272 strcpy(card->driver, "CMI8738");
3273 break;
3274 case PCI_DEVICE_ID_CMEDIA_CM8338A:
3275 case PCI_DEVICE_ID_CMEDIA_CM8338B:
3276 strcpy(card->driver, "CMI8338");
3277 break;
3278 default:
3279 strcpy(card->driver, "CMIPCI");
3280 break;
3281 }
3282
3283 if ((err = snd_cmipci_create(card, pci, dev, &cm)) < 0) {
3284 snd_card_free(card);
3285 return err;
3286 }
Takashi Iwaicb60e5f2005-11-17 16:14:49 +01003287 card->private_data = cm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003288
Linus Torvalds1da177e2005-04-16 15:20:36 -07003289 if ((err = snd_card_register(card)) < 0) {
3290 snd_card_free(card);
3291 return err;
3292 }
3293 pci_set_drvdata(pci, card);
3294 dev++;
3295 return 0;
3296
3297}
3298
3299static void __devexit snd_cmipci_remove(struct pci_dev *pci)
3300{
3301 snd_card_free(pci_get_drvdata(pci));
3302 pci_set_drvdata(pci, NULL);
3303}
3304
3305
Takashi Iwaicb60e5f2005-11-17 16:14:49 +01003306#ifdef CONFIG_PM
3307/*
3308 * power management
3309 */
3310static unsigned char saved_regs[] = {
3311 CM_REG_FUNCTRL1, CM_REG_CHFORMAT, CM_REG_LEGACY_CTRL, CM_REG_MISC_CTRL,
3312 CM_REG_MIXER0, CM_REG_MIXER1, CM_REG_MIXER2, CM_REG_MIXER3, CM_REG_PLL,
3313 CM_REG_CH0_FRAME1, CM_REG_CH0_FRAME2,
3314 CM_REG_CH1_FRAME1, CM_REG_CH1_FRAME2, CM_REG_EXT_MISC,
3315 CM_REG_INT_STATUS, CM_REG_INT_HLDCLR, CM_REG_FUNCTRL0,
3316};
3317
3318static unsigned char saved_mixers[] = {
3319 SB_DSP4_MASTER_DEV, SB_DSP4_MASTER_DEV + 1,
3320 SB_DSP4_PCM_DEV, SB_DSP4_PCM_DEV + 1,
3321 SB_DSP4_SYNTH_DEV, SB_DSP4_SYNTH_DEV + 1,
3322 SB_DSP4_CD_DEV, SB_DSP4_CD_DEV + 1,
3323 SB_DSP4_LINE_DEV, SB_DSP4_LINE_DEV + 1,
3324 SB_DSP4_MIC_DEV, SB_DSP4_SPEAKER_DEV,
3325 CM_REG_EXTENT_IND, SB_DSP4_OUTPUT_SW,
3326 SB_DSP4_INPUT_LEFT, SB_DSP4_INPUT_RIGHT,
3327};
3328
3329static int snd_cmipci_suspend(struct pci_dev *pci, pm_message_t state)
3330{
3331 struct snd_card *card = pci_get_drvdata(pci);
3332 struct cmipci *cm = card->private_data;
3333 int i;
3334
3335 snd_power_change_state(card, SNDRV_CTL_POWER_D3hot);
3336
3337 snd_pcm_suspend_all(cm->pcm);
3338 snd_pcm_suspend_all(cm->pcm2);
3339 snd_pcm_suspend_all(cm->pcm_spdif);
3340
3341 /* save registers */
3342 for (i = 0; i < ARRAY_SIZE(saved_regs); i++)
3343 cm->saved_regs[i] = snd_cmipci_read(cm, saved_regs[i]);
3344 for (i = 0; i < ARRAY_SIZE(saved_mixers); i++)
3345 cm->saved_mixers[i] = snd_cmipci_mixer_read(cm, saved_mixers[i]);
3346
3347 /* disable ints */
3348 snd_cmipci_write(cm, CM_REG_INT_HLDCLR, 0);
3349
Takashi Iwaicb60e5f2005-11-17 16:14:49 +01003350 pci_disable_device(pci);
3351 pci_save_state(pci);
Takashi Iwai30b35392006-10-11 18:52:53 +02003352 pci_set_power_state(pci, pci_choose_state(pci, state));
Takashi Iwaicb60e5f2005-11-17 16:14:49 +01003353 return 0;
3354}
3355
3356static int snd_cmipci_resume(struct pci_dev *pci)
3357{
3358 struct snd_card *card = pci_get_drvdata(pci);
3359 struct cmipci *cm = card->private_data;
3360 int i;
3361
Takashi Iwaicb60e5f2005-11-17 16:14:49 +01003362 pci_set_power_state(pci, PCI_D0);
Takashi Iwai30b35392006-10-11 18:52:53 +02003363 pci_restore_state(pci);
3364 if (pci_enable_device(pci) < 0) {
3365 printk(KERN_ERR "cmipci: pci_enable_device failed, "
3366 "disabling device\n");
3367 snd_card_disconnect(card);
3368 return -EIO;
3369 }
Takashi Iwaicb60e5f2005-11-17 16:14:49 +01003370 pci_set_master(pci);
3371
3372 /* reset / initialize to a sane state */
3373 snd_cmipci_write(cm, CM_REG_INT_HLDCLR, 0);
3374 snd_cmipci_ch_reset(cm, CM_CH_PLAY);
3375 snd_cmipci_ch_reset(cm, CM_CH_CAPT);
3376 snd_cmipci_mixer_write(cm, 0, 0);
3377
3378 /* restore registers */
3379 for (i = 0; i < ARRAY_SIZE(saved_regs); i++)
3380 snd_cmipci_write(cm, saved_regs[i], cm->saved_regs[i]);
3381 for (i = 0; i < ARRAY_SIZE(saved_mixers); i++)
3382 snd_cmipci_mixer_write(cm, saved_mixers[i], cm->saved_mixers[i]);
3383
3384 snd_power_change_state(card, SNDRV_CTL_POWER_D0);
3385 return 0;
3386}
3387#endif /* CONFIG_PM */
3388
Linus Torvalds1da177e2005-04-16 15:20:36 -07003389static struct pci_driver driver = {
3390 .name = "C-Media PCI",
3391 .id_table = snd_cmipci_ids,
3392 .probe = snd_cmipci_probe,
3393 .remove = __devexit_p(snd_cmipci_remove),
Takashi Iwaicb60e5f2005-11-17 16:14:49 +01003394#ifdef CONFIG_PM
3395 .suspend = snd_cmipci_suspend,
3396 .resume = snd_cmipci_resume,
3397#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003398};
3399
3400static int __init alsa_card_cmipci_init(void)
3401{
Takashi Iwai01d25d42005-04-11 16:58:24 +02003402 return pci_register_driver(&driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003403}
3404
3405static void __exit alsa_card_cmipci_exit(void)
3406{
3407 pci_unregister_driver(&driver);
3408}
3409
3410module_init(alsa_card_cmipci_init)
3411module_exit(alsa_card_cmipci_exit)