1 | /*
|
---|
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/interrupt.h>
|
---|
26 | #include <linux/init.h>
|
---|
27 | #include <linux/delay.h>
|
---|
28 | //#include <linux/pci.h>
|
---|
29 | #include <linux/slab.h>
|
---|
30 | #include <sound/core.h>
|
---|
31 | #include <sound/info.h>
|
---|
32 | #include <sound/control.h>
|
---|
33 | #include <sound/pcm.h>
|
---|
34 | #include <sound/rawmidi.h>
|
---|
35 | #include <sound/mpu401.h>
|
---|
36 | #include <sound/opl3.h>
|
---|
37 | #include <sound/sb.h>
|
---|
38 | #include <sound/asoundef.h>
|
---|
39 | #define SNDRV_GET_ID
|
---|
40 | #include <sound/initval.h>
|
---|
41 |
|
---|
42 | MODULE_AUTHOR("Takashi Iwai <tiwai@suse.de>");
|
---|
43 | MODULE_DESCRIPTION("C-Media CMI8x38 PCI");
|
---|
44 | MODULE_LICENSE("GPL");
|
---|
45 | MODULE_CLASSES("{sound}");
|
---|
46 | MODULE_DEVICES("{{C-Media,CMI8738},"
|
---|
47 | "{C-Media,CMI8738B},"
|
---|
48 | "{C-Media,CMI8338A},"
|
---|
49 | "{C-Media,CMI8338B}}");
|
---|
50 |
|
---|
51 | extern int midi_port;
|
---|
52 |
|
---|
53 | static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */
|
---|
54 | static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */
|
---|
55 | static int enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_PNP; /* Enable switches */
|
---|
56 | //MPU disabled for now until it's fully supported by the MMPM2 driver
|
---|
57 | static long mpu_port[SNDRV_CARDS] = {-1,-1,-1,-1,-1,-1,-1,-1};
|
---|
58 | static long fm_port[SNDRV_CARDS] = {0x388, -1,-1,-1,-1,-1,-1,-1};
|
---|
59 |
|
---|
60 | static int soft_ac3[SNDRV_CARDS] = {0,1,1,1,1,1,1,1};
|
---|
61 |
|
---|
62 | MODULE_PARM(index, "1-" __MODULE_STRING(SNDRV_CARDS) "i");
|
---|
63 | MODULE_PARM_DESC(index, "Index value for C-Media PCI soundcard.");
|
---|
64 | MODULE_PARM_SYNTAX(index, SNDRV_INDEX_DESC);
|
---|
65 | MODULE_PARM(id, "1-" __MODULE_STRING(SNDRV_CARDS) "s");
|
---|
66 | MODULE_PARM_DESC(id, "ID string for C-Media PCI soundcard.");
|
---|
67 | MODULE_PARM_SYNTAX(id, SNDRV_ID_DESC);
|
---|
68 | MODULE_PARM(enable, "1-" __MODULE_STRING(SNDRV_CARDS) "i");
|
---|
69 | MODULE_PARM_DESC(enable, "Enable C-Media PCI soundcard.");
|
---|
70 | MODULE_PARM_SYNTAX(enable, SNDRV_ENABLE_DESC);
|
---|
71 | MODULE_PARM(mpu_port, "1-" __MODULE_STRING(SNDRV_CARDS) "l");
|
---|
72 | MODULE_PARM_DESC(mpu_port, "MPU-401 port.");
|
---|
73 | MODULE_PARM_SYNTAX(mpu_port, SNDRV_ENABLED ",allows:{{-1},{0x330},{0x320},{0x310},{0x300}},dialog:list");
|
---|
74 | MODULE_PARM(fm_port, "1-" __MODULE_STRING(SNDRV_CARDS) "l");
|
---|
75 | MODULE_PARM_DESC(fm_port, "FM port.");
|
---|
76 | MODULE_PARM_SYNTAX(fm_port, SNDRV_ENABLED ",allows:{{-1},{0x388},{0x3c8},{0x3e0},{0x3e8}},dialog:list");
|
---|
77 | #ifdef DO_SOFT_AC3
|
---|
78 | MODULE_PARM(soft_ac3, "1-" __MODULE_STRING(SNDRV_CARDS) "l");
|
---|
79 | MODULE_PARM_DESC(soft_ac3, "Sofware-conversion of raw SPDIF packets (model 033 only).");
|
---|
80 | MODULE_PARM_SYNTAX(soft_ac3, SNDRV_ENABLED "," SNDRV_BOOLEAN_TRUE_DESC);
|
---|
81 | #endif
|
---|
82 |
|
---|
83 | #ifndef PCI_DEVICE_ID_CMEDIA_CM8738
|
---|
84 | #define PCI_DEVICE_ID_CMEDIA_CM8738 0x0111
|
---|
85 | #endif
|
---|
86 | #ifndef PCI_DEVICE_ID_CMEDIA_CM8738B
|
---|
87 | #define PCI_DEVICE_ID_CMEDIA_CM8738B 0x0112
|
---|
88 | #endif
|
---|
89 |
|
---|
90 | //#define SIX_CH_HACK
|
---|
91 | /*
|
---|
92 | * CM8x38 registers definition
|
---|
93 | */
|
---|
94 |
|
---|
95 | #define CM_REG_FUNCTRL0 0x00
|
---|
96 | #define CM_RST_CH1 0x00080000
|
---|
97 | #define CM_RST_CH0 0x00040000
|
---|
98 | #define CM_CHEN1 0x00020000 /* ch1: enable */
|
---|
99 | #define CM_CHEN0 0x00010000 /* ch0: enable */
|
---|
100 | #define CM_PAUSE1 0x00000008 /* ch1: pause */
|
---|
101 | #define CM_PAUSE0 0x00000004 /* ch0: pause */
|
---|
102 | #define CM_CHADC1 0x00000002 /* ch1, 0:playback, 1:record */
|
---|
103 | #define CM_CHADC0 0x00000001 /* ch0, 0:playback, 1:record */
|
---|
104 |
|
---|
105 | #define CM_REG_FUNCTRL1 0x04
|
---|
106 | #define CM_ASFC_MASK 0x0000E000 /* ADC sampling frequency */
|
---|
107 | #define CM_ASFC_SHIFT 13
|
---|
108 | #define CM_DSFC_MASK 0x00001C00 /* DAC sampling frequency */
|
---|
109 | #define CM_DSFC_SHIFT 10
|
---|
110 | #define CM_SPDF_1 0x00000200 /* SPDIF IN/OUT at channel B */
|
---|
111 | #define CM_SPDF_0 0x00000100 /* SPDIF OUT only channel A */
|
---|
112 | #define CM_SPDFLOOP 0x00000080 /* ext. SPDIIF/OUT -> IN loopback */
|
---|
113 | #define CM_SPDO2DAC 0x00000040 /* SPDIF/OUT can be heard from internal DAC */
|
---|
114 | #define CM_INTRM 0x00000020 /* master control block (MCB) interrupt enabled */
|
---|
115 | #define CM_BREQ 0x00000010 /* bus master enabled */
|
---|
116 | #define CM_VOICE_EN 0x00000008 /* legacy voice (SB16,FM) */
|
---|
117 | #define CM_UART_EN 0x00000004 /* UART */
|
---|
118 | #define CM_JYSTK_EN 0x00000002 /* joy stick */
|
---|
119 |
|
---|
120 | #define CM_REG_CHFORMAT 0x08
|
---|
121 |
|
---|
122 | #define CM_CHB3D5C 0x80000000 /* 5,6 channels */
|
---|
123 | #define CM_CHB3D 0x20000000 /* 4 channels */
|
---|
124 |
|
---|
125 | #define CM_CHIP_MASK1 0x1f000000
|
---|
126 | #define CM_CHIP_037 0x01000000
|
---|
127 |
|
---|
128 | #define CM_SPDIF_SELECT1 0x00080000 /* for model <= 037 ? */
|
---|
129 | #define CM_AC3EN1 0x00100000 /* enable AC3: model 037 */
|
---|
130 | #define CM_SPD24SEL 0x00020000 /* 24bit spdif: model 037 */
|
---|
131 | /* #define CM_SPDIF_INVERSE 0x00010000 */ /* ??? */
|
---|
132 |
|
---|
133 | #define CM_ADCBITLEN_MASK 0x0000C000
|
---|
134 | #define CM_ADCBITLEN_16 0x00000000
|
---|
135 | #define CM_ADCBITLEN_15 0x00004000
|
---|
136 | #define CM_ADCBITLEN_14 0x00008000
|
---|
137 | #define CM_ADCBITLEN_13 0x0000C000
|
---|
138 |
|
---|
139 | #define CM_ADCDACLEN_MASK 0x00003000
|
---|
140 | #define CM_ADCDACLEN_060 0x00000000
|
---|
141 | #define CM_ADCDACLEN_066 0x00001000
|
---|
142 | #define CM_ADCDACLEN_130 0x00002000
|
---|
143 | #define CM_ADCDACLEN_280 0x00003000
|
---|
144 |
|
---|
145 | #define CM_CH1_SRATE_176K 0x00000800
|
---|
146 | #define CM_CH1_SRATE_88K 0x00000400
|
---|
147 | #define CM_CH0_SRATE_176K 0x00000200
|
---|
148 | #define CM_CH0_SRATE_88K 0x00000100
|
---|
149 |
|
---|
150 | #define CM_SPDIF_INVERSE2 0x00000080 /* model 055? */
|
---|
151 |
|
---|
152 | #define CM_CH1FMT_MASK 0x0000000C
|
---|
153 | #define CM_CH1FMT_SHIFT 2
|
---|
154 | #define CM_CH0FMT_MASK 0x00000003
|
---|
155 | #define CM_CH0FMT_SHIFT 0
|
---|
156 |
|
---|
157 | #define CM_REG_INT_HLDCLR 0x0C
|
---|
158 | #define CM_CHIP_MASK2 0xff000000
|
---|
159 | #define CM_CHIP_039 0x04000000
|
---|
160 | #define CM_CHIP_039_6CH 0x01000000
|
---|
161 | #define CM_CHIP_055 0x08000000
|
---|
162 | #define CM_CHIP_8768 0x20000000
|
---|
163 | #define CM_TDMA_INT_EN 0x00040000
|
---|
164 | #define CM_CH1_INT_EN 0x00020000
|
---|
165 | #define CM_CH0_INT_EN 0x00010000
|
---|
166 | #define CM_INT_HOLD 0x00000002
|
---|
167 | #define CM_INT_CLEAR 0x00000001
|
---|
168 |
|
---|
169 | #define CM_REG_INT_STATUS 0x10
|
---|
170 | #define CM_INTR 0x80000000
|
---|
171 | #define CM_VCO 0x08000000 /* Voice Control? CMI8738 */
|
---|
172 | #define CM_MCBINT 0x04000000 /* Master Control Block abort cond.? */
|
---|
173 | #define CM_UARTINT 0x00010000
|
---|
174 | #define CM_LTDMAINT 0x00008000
|
---|
175 | #define CM_HTDMAINT 0x00004000
|
---|
176 | #define CM_XDO46 0x00000080 /* Modell 033? Direct programming EEPROM (read data register) */
|
---|
177 | #define CM_LHBTOG 0x00000040 /* High/Low status from DMA ctrl register */
|
---|
178 | #define CM_LEG_HDMA 0x00000020 /* Legacy is in High DMA channel */
|
---|
179 | #define CM_LEG_STEREO 0x00000010 /* Legacy is in Stereo mode */
|
---|
180 | #define CM_CH1BUSY 0x00000008
|
---|
181 | #define CM_CH0BUSY 0x00000004
|
---|
182 | #define CM_CHINT1 0x00000002
|
---|
183 | #define CM_CHINT0 0x00000001
|
---|
184 |
|
---|
185 | #define CM_REG_LEGACY_CTRL 0x14
|
---|
186 | #define CM_NXCHG 0x80000000 /* h/w multi channels? */
|
---|
187 | #define CM_VMPU_MASK 0x60000000 /* MPU401 i/o port address */
|
---|
188 | #define CM_VMPU_330 0x00000000
|
---|
189 | #define CM_VMPU_320 0x20000000
|
---|
190 | #define CM_VMPU_310 0x40000000
|
---|
191 | #define CM_VMPU_300 0x60000000
|
---|
192 | #define CM_VSBSEL_MASK 0x0C000000 /* SB16 base address */
|
---|
193 | #define CM_VSBSEL_220 0x00000000
|
---|
194 | #define CM_VSBSEL_240 0x04000000
|
---|
195 | #define CM_VSBSEL_260 0x08000000
|
---|
196 | #define CM_VSBSEL_280 0x0C000000
|
---|
197 | #define CM_FMSEL_MASK 0x03000000 /* FM OPL3 base address */
|
---|
198 | #define CM_FMSEL_388 0x00000000
|
---|
199 | #define CM_FMSEL_3C8 0x01000000
|
---|
200 | #define CM_FMSEL_3E0 0x02000000
|
---|
201 | #define CM_FMSEL_3E8 0x03000000
|
---|
202 | #define CM_ENSPDOUT 0x00800000 /* enable XPDIF/OUT to I/O interface */
|
---|
203 | #define CM_SPDCOPYRHT 0x00400000 /* set copyright spdif in/out */
|
---|
204 | #define CM_DAC2SPDO 0x00200000 /* enable wave+fm_midi -> SPDIF/OUT */
|
---|
205 | #define CM_SETRETRY 0x00010000 /* 0: legacy i/o wait (default), 1: legacy i/o bus retry */
|
---|
206 | #define CM_CHB3D6C 0x00008000 /* 5.1 channels support */
|
---|
207 | #define CM_LINE_AS_BASS 0x00006000 /* use line-in as bass */
|
---|
208 |
|
---|
209 | #define CM_REG_MISC_CTRL 0x18
|
---|
210 | #define CM_PWD 0x80000000
|
---|
211 | #define CM_RESET 0x40000000
|
---|
212 | #define CM_SFIL_MASK 0x30000000
|
---|
213 | #define CM_TXVX 0x08000000
|
---|
214 | #define CM_N4SPK3D 0x04000000 /* 4ch output */
|
---|
215 | #define CM_SPDO5V 0x02000000 /* 5V spdif output (1 = 0.5v (coax)) */
|
---|
216 | #define CM_SPDIF48K 0x01000000 /* write */
|
---|
217 | #define CM_SPATUS48K 0x01000000 /* read */
|
---|
218 | #define CM_ENDBDAC 0x00800000 /* enable dual dac */
|
---|
219 | #define CM_XCHGDAC 0x00400000 /* 0: front=ch0, 1: front=ch1 */
|
---|
220 | #define CM_SPD32SEL 0x00200000 /* 0: 16bit SPDIF, 1: 32bit */
|
---|
221 | #define CM_SPDFLOOPI 0x00100000 /* int. SPDIF-IN -> int. OUT */
|
---|
222 | #define CM_FM_EN 0x00080000 /* enalbe FM */
|
---|
223 | #define CM_AC3EN2 0x00040000 /* enable AC3: model 039 */
|
---|
224 | #define CM_VIDWPDSB 0x00010000
|
---|
225 | #define CM_SPDF_AC97 0x00008000 /* 0: SPDIF/OUT 44.1K, 1: 48K */
|
---|
226 | #define CM_MASK_EN 0x00004000
|
---|
227 | #define CM_VIDWPPRT 0x00002000
|
---|
228 | #define CM_SFILENB 0x00001000
|
---|
229 | #define CM_MMODE_MASK 0x00000E00
|
---|
230 | #define CM_SPDIF_SELECT2 0x00000100 /* for model > 039 ? */
|
---|
231 | #define CM_ENCENTER 0x00000080
|
---|
232 | #define CM_FLINKON 0x00000040
|
---|
233 | #define CM_FLINKOFF 0x00000020
|
---|
234 | #define CM_MIDSMP 0x00000010
|
---|
235 | #define CM_UPDDMA_MASK 0x0000000C
|
---|
236 | #define CM_TWAIT_MASK 0x00000003
|
---|
237 |
|
---|
238 | /* byte */
|
---|
239 | #define CM_REG_MIXER0 0x20
|
---|
240 |
|
---|
241 | #define CM_REG_SB16_DATA 0x22
|
---|
242 | #define CM_REG_SB16_ADDR 0x23
|
---|
243 |
|
---|
244 | #define CM_REFFREQ_XIN (315*1000*1000)/22 /* 14.31818 Mhz reference clock frequency pin XIN */
|
---|
245 | #define CM_ADCMULT_XIN 512 /* Guessed (487 best for 44.1kHz, not for 88/176kHz) */
|
---|
246 | #define CM_TOLERANCE_RATE 0.001 /* Tolerance sample rate pitch (1000ppm) */
|
---|
247 | #define CM_MAXIMUM_RATE 80000000 /* Note more than 80MHz */
|
---|
248 |
|
---|
249 | #define CM_REG_MIXER1 0x24
|
---|
250 | #define CM_FMMUTE 0x80 /* mute FM */
|
---|
251 | #define CM_FMMUTE_SHIFT 7
|
---|
252 | #define CM_WSMUTE 0x40 /* mute PCM */
|
---|
253 | #define CM_WSMUTE_SHIFT 6
|
---|
254 | #define CM_SPK4 0x20 /* lin-in -> rear line out */
|
---|
255 | #define CM_SPK4_SHIFT 5
|
---|
256 | #define CM_REAR2FRONT 0x10 /* exchange rear/front */
|
---|
257 | #define CM_REAR2FRONT_SHIFT 4
|
---|
258 | #define CM_WAVEINL 0x08 /* digital wave rec. left chan */
|
---|
259 | #define CM_WAVEINL_SHIFT 3
|
---|
260 | #define CM_WAVEINR 0x04 /* digical wave rec. right */
|
---|
261 | #define CM_WAVEINR_SHIFT 2
|
---|
262 | #define CM_X3DEN 0x02 /* 3D surround enable */
|
---|
263 | #define CM_X3DEN_SHIFT 1
|
---|
264 | #define CM_CDPLAY 0x01 /* enable SPDIF/IN PCM -> DAC */
|
---|
265 | #define CM_CDPLAY_SHIFT 0
|
---|
266 |
|
---|
267 | #define CM_REG_MIXER2 0x25
|
---|
268 | #define CM_RAUXREN 0x80 /* AUX right capture */
|
---|
269 | #define CM_RAUXREN_SHIFT 7
|
---|
270 | #define CM_RAUXLEN 0x40 /* AUX left capture */
|
---|
271 | #define CM_RAUXLEN_SHIFT 6
|
---|
272 | #define CM_VAUXRM 0x20 /* AUX right mute */
|
---|
273 | #define CM_VAUXRM_SHIFT 5
|
---|
274 | #define CM_VAUXLM 0x10 /* AUX left mute */
|
---|
275 | #define CM_VAUXLM_SHIFT 4
|
---|
276 | #define CM_VADMIC_MASK 0x0e /* mic gain level (0-3) << 1 */
|
---|
277 | #define CM_VADMIC_SHIFT 1
|
---|
278 | #define CM_MICGAINZ 0x01 /* mic boost */
|
---|
279 | #define CM_MICGAINZ_SHIFT 0
|
---|
280 |
|
---|
281 | #define CM_REG_MIXER3 0x24
|
---|
282 | #define CM_REG_AUX_VOL 0x26
|
---|
283 | #define CM_VAUXL_MASK 0xf0
|
---|
284 | #define CM_VAUXR_MASK 0x0f
|
---|
285 |
|
---|
286 | #define CM_REG_MISC 0x27
|
---|
287 | #define CM_XGPO1 0x20
|
---|
288 | // #define CM_XGPBIO 0x04
|
---|
289 | #define CM_MIC_CENTER_LFE 0x04 /* mic as center/lfe out? (model 039 or later?) */
|
---|
290 | #define CM_SPDIF_INVERSE 0x04 /* spdif input phase inverse (model 037) */
|
---|
291 | #define CM_SPDVALID 0x02 /* spdif input valid check */
|
---|
292 | #define CM_DMAUTO 0x01
|
---|
293 |
|
---|
294 | #define CM_REG_AC97 0x28 /* hmmm.. do we have ac97 link? */
|
---|
295 | /*
|
---|
296 | * For CMI-8338 (0x28 - 0x2b) .. is this valid for CMI-8738
|
---|
297 | * or identical with AC97 codec?
|
---|
298 | */
|
---|
299 | #define CM_REG_EXTERN_CODEC CM_REG_AC97
|
---|
300 |
|
---|
301 | /*
|
---|
302 | * MPU401 pci port index address 0x40 - 0x4f (CMI-8738 spec ver. 0.6)
|
---|
303 | */
|
---|
304 | #define CM_REG_MPU_PCI 0x40
|
---|
305 |
|
---|
306 | /*
|
---|
307 | * FM pci port index address 0x50 - 0x5f (CMI-8738 spec ver. 0.6)
|
---|
308 | */
|
---|
309 | #define CM_REG_FM_PCI 0x50
|
---|
310 |
|
---|
311 | /*
|
---|
312 | * access from SB-mixer port
|
---|
313 | */
|
---|
314 | #define CM_REG_EXTENT_IND 0xf0
|
---|
315 | #define CM_VPHONE_MASK 0xe0 /* Phone volume control (0-3) << 5 */
|
---|
316 | #define CM_VPHONE_SHIFT 5
|
---|
317 | #define CM_VPHOM 0x10 /* Phone mute control */
|
---|
318 | #define CM_VSPKM 0x08 /* Speaker mute control, default high */
|
---|
319 | #define CM_RLOOPREN 0x04 /* Rec. R-channel enable */
|
---|
320 | #define CM_RLOOPLEN 0x02 /* Rec. L-channel enable */
|
---|
321 | #define CM_VADMIC3 0x01 /* Mic record boost */
|
---|
322 |
|
---|
323 | /*
|
---|
324 | * CMI-8338 spec ver 0.5 (this is not valid for CMI-8738):
|
---|
325 | * the 8 registers 0xf8 - 0xff are used for programming m/n counter by the PLL
|
---|
326 | * unit (readonly?).
|
---|
327 | */
|
---|
328 | #define CM_REG_PLL 0xf8
|
---|
329 |
|
---|
330 | /*
|
---|
331 | * extended registers
|
---|
332 | */
|
---|
333 | #define CM_REG_CH0_FRAME1 0x80 /* base address */
|
---|
334 | #define CM_REG_CH0_FRAME2 0x84
|
---|
335 | #define CM_REG_CH1_FRAME1 0x88 /* 0-15: count of samples at bus master; buffer size */
|
---|
336 | #define CM_REG_CH1_FRAME2 0x8C /* 16-31: count of samples at codec; fragment size */
|
---|
337 | #define CM_REG_EXT_MISC 0x90
|
---|
338 | #define CM_REG_MISC_CTRL_8768 0x92 /* reg. name the same as 0x18 */
|
---|
339 | #define CM_CHB3D8C 0x20 /* 7.1 channels support */
|
---|
340 | #define CM_SPD32FMT 0x10 /* SPDIF/IN 32k */
|
---|
341 | #define CM_ADC2SPDIF 0x08 /* ADC output to SPDIF/OUT */
|
---|
342 | #define CM_SHAREADC 0x04 /* DAC in ADC as Center/LFE */
|
---|
343 | #define CM_REALTCMP 0x02 /* monitor the CMPL/CMPR of ADC */
|
---|
344 | #define CM_INVLRCK 0x01 /* invert ZVPORT's LRCK */
|
---|
345 | /*
|
---|
346 | * size of i/o region
|
---|
347 | */
|
---|
348 | #define CM_EXTENT_CODEC 0x100
|
---|
349 | #define CM_EXTENT_MIDI 0x2
|
---|
350 | #define CM_EXTENT_SYNTH 0x4
|
---|
351 |
|
---|
352 | /*
|
---|
353 | * pci ids
|
---|
354 | */
|
---|
355 | #ifndef PCI_VENDOR_ID_CMEDIA
|
---|
356 | #define PCI_VENDOR_ID_CMEDIA 0x13F6
|
---|
357 | #endif
|
---|
358 | #ifndef PCI_DEVICE_ID_CMEDIA_CM8338A
|
---|
359 | #define PCI_DEVICE_ID_CMEDIA_CM8338A 0x0100
|
---|
360 | #endif
|
---|
361 | #ifndef PCI_DEVICE_ID_CMEDIA_CM8338B
|
---|
362 | #define PCI_DEVICE_ID_CMEDIA_CM8338B 0x0101
|
---|
363 | #endif
|
---|
364 | #ifndef PCI_DEVICE_ID_CMEDIA_CM8738
|
---|
365 | #define PCI_DEVICE_ID_CMEDIA_CM8738 0x0111
|
---|
366 | #endif
|
---|
367 | #ifndef PCI_DEVICE_ID_CMEDIA_CM8738B
|
---|
368 | #define PCI_DEVICE_ID_CMEDIA_CM8738B 0x0112
|
---|
369 | #endif
|
---|
370 |
|
---|
371 | /*
|
---|
372 | * channels for playback / capture
|
---|
373 | */
|
---|
374 | #define CM_CH_PLAY 0
|
---|
375 | #define CM_CH_CAPT 1
|
---|
376 |
|
---|
377 | /*
|
---|
378 | * flags to check device open/close
|
---|
379 | */
|
---|
380 | #define CM_OPEN_NONE 0
|
---|
381 | #define CM_OPEN_CH_MASK 0x01
|
---|
382 | #define CM_OPEN_DAC 0x10
|
---|
383 | #define CM_OPEN_ADC 0x20
|
---|
384 | #define CM_OPEN_SPDIF 0x40
|
---|
385 | #define CM_OPEN_MCHAN 0x80
|
---|
386 | #define CM_OPEN_PLAYBACK (CM_CH_PLAY | CM_OPEN_DAC)
|
---|
387 | #define CM_OPEN_PLAYBACK2 (CM_CH_CAPT | CM_OPEN_DAC)
|
---|
388 | #define CM_OPEN_PLAYBACK_MULTI (CM_CH_PLAY | CM_OPEN_DAC | CM_OPEN_MCHAN)
|
---|
389 | #define CM_OPEN_CAPTURE (CM_CH_CAPT | CM_OPEN_ADC)
|
---|
390 | #define CM_OPEN_SPDIF_PLAYBACK (CM_CH_PLAY | CM_OPEN_DAC | CM_OPEN_SPDIF)
|
---|
391 | #define CM_OPEN_SPDIF_CAPTURE (CM_CH_CAPT | CM_OPEN_ADC | CM_OPEN_SPDIF)
|
---|
392 |
|
---|
393 |
|
---|
394 | #if CM_CH_PLAY == 1
|
---|
395 | #define CM_PLAYBACK_SRATE_176K CM_CH1_SRATE_176K
|
---|
396 | #define CM_PLAYBACK_SPDF CM_SPDF_1
|
---|
397 | #define CM_CAPTURE_SPDF CM_SPDF_0
|
---|
398 | #else
|
---|
399 | #define CM_PLAYBACK_SRATE_176K CM_CH0_SRATE_176K
|
---|
400 | #define CM_PLAYBACK_SPDF CM_SPDF_0
|
---|
401 | #define CM_CAPTURE_SPDF CM_SPDF_1
|
---|
402 | #endif
|
---|
403 |
|
---|
404 |
|
---|
405 | /*
|
---|
406 | * driver data
|
---|
407 | */
|
---|
408 |
|
---|
409 | struct cmipci_pcm {
|
---|
410 | struct snd_pcm_substream *substream;
|
---|
411 | int running; /* dac/adc running? */
|
---|
412 | unsigned int dma_size; /* in frames */
|
---|
413 | unsigned int period_size; /* in frames */
|
---|
414 | unsigned int offset; /* physical address of the buffer */
|
---|
415 | unsigned int fmt; /* format bits */
|
---|
416 | int ch; /* channel (0/1) */
|
---|
417 | unsigned int is_dac; /* is dac? */
|
---|
418 | int bytes_per_frame;
|
---|
419 | int shift;
|
---|
420 | };
|
---|
421 |
|
---|
422 | /* mixer elements toggled/resumed during ac3 playback */
|
---|
423 | struct cmipci_mixer_auto_switches {
|
---|
424 | const char *name; /* switch to toggle */
|
---|
425 | int toggle_on; /* value to change when ac3 mode */
|
---|
426 | };
|
---|
427 | static const struct cmipci_mixer_auto_switches cm_saved_mixer[] = {
|
---|
428 | {"PCM Playback Switch", 0},
|
---|
429 | {"IEC958 Output Switch", 1},
|
---|
430 | {"IEC958 Mix Analog", 0},
|
---|
431 | // {"IEC958 Out To DAC", 1}, // no longer used
|
---|
432 | {"IEC958 Loop", 0},
|
---|
433 | };
|
---|
434 |
|
---|
435 | #define CM_SAVED_MIXERS ARRAY_SIZE(cm_saved_mixer)
|
---|
436 |
|
---|
437 | struct cmipci {
|
---|
438 | struct snd_card *card;
|
---|
439 |
|
---|
440 | struct pci_dev *pci;
|
---|
441 | unsigned int device; /* device ID */
|
---|
442 | int irq;
|
---|
443 |
|
---|
444 | unsigned long iobase;
|
---|
445 | unsigned int ctrl; /* FUNCTRL0 current value */
|
---|
446 |
|
---|
447 | struct snd_pcm *pcm; /* DAC/ADC PCM */
|
---|
448 | struct snd_pcm *pcm2; /* 2nd DAC */
|
---|
449 | struct snd_pcm *pcm_spdif; /* SPDIF */
|
---|
450 |
|
---|
451 | int chip_version;
|
---|
452 | int max_channels;
|
---|
453 | unsigned int has_dual_dac: 1;
|
---|
454 | unsigned int can_ac3_sw: 1;
|
---|
455 | unsigned int can_ac3_hw: 1;
|
---|
456 | unsigned int can_multi_ch: 1;
|
---|
457 | unsigned int do_soft_ac3: 1;
|
---|
458 |
|
---|
459 | unsigned int spdif_playback_avail: 1; /* spdif ready? */
|
---|
460 | unsigned int spdif_playback_enabled: 1; /* spdif switch enabled? */
|
---|
461 | int spdif_counter; /* for software AC3 */
|
---|
462 |
|
---|
463 | unsigned int dig_status;
|
---|
464 | unsigned int dig_pcm_status;
|
---|
465 |
|
---|
466 | struct snd_pcm_hardware_t *hw_info[3]; /* for playbacks */
|
---|
467 |
|
---|
468 | int opened[2]; /* open mode */
|
---|
469 | struct semaphore open_mutex;
|
---|
470 |
|
---|
471 | int mixer_insensitive: 1;
|
---|
472 | struct snd_kcontrol *mixer_res_ctl[CM_SAVED_MIXERS];
|
---|
473 | int mixer_res_status[CM_SAVED_MIXERS];
|
---|
474 |
|
---|
475 | struct cmipci_pcm channel[2]; /* ch0 - DAC, ch1 - ADC or 2nd DAC */
|
---|
476 |
|
---|
477 | /* external MIDI */
|
---|
478 | struct snd_rawmidi *rmidi;
|
---|
479 |
|
---|
480 | spinlock_t reg_lock;
|
---|
481 |
|
---|
482 | #ifdef CONFIG_PM
|
---|
483 | unsigned int saved_regs[0x20];
|
---|
484 | unsigned char saved_mixers[0x20];
|
---|
485 | #endif
|
---|
486 | };
|
---|
487 |
|
---|
488 |
|
---|
489 | /* read/write operations for dword register */
|
---|
490 | static inline void snd_cmipci_write(struct cmipci *cm, unsigned int cmd, unsigned int data)
|
---|
491 | {
|
---|
492 | outl(data, cm->iobase + cmd);
|
---|
493 | }
|
---|
494 |
|
---|
495 | static inline unsigned int snd_cmipci_read(struct cmipci *cm, unsigned int cmd)
|
---|
496 | {
|
---|
497 | return inl(cm->iobase + cmd);
|
---|
498 | }
|
---|
499 |
|
---|
500 | /* read/write operations for word register */
|
---|
501 | static inline void snd_cmipci_write_w(struct cmipci *cm, unsigned int cmd, unsigned short data)
|
---|
502 | {
|
---|
503 | outw(data, cm->iobase + cmd);
|
---|
504 | }
|
---|
505 |
|
---|
506 | static inline unsigned short snd_cmipci_read_w(struct cmipci *cm, unsigned int cmd)
|
---|
507 | {
|
---|
508 | return inw(cm->iobase + cmd);
|
---|
509 | }
|
---|
510 |
|
---|
511 | /* read/write operations for byte register */
|
---|
512 | static inline void snd_cmipci_write_b(struct cmipci *cm, unsigned int cmd, unsigned char data)
|
---|
513 | {
|
---|
514 | outb(data, cm->iobase + cmd);
|
---|
515 | }
|
---|
516 |
|
---|
517 | static inline unsigned char snd_cmipci_read_b(struct cmipci *cm, unsigned int cmd)
|
---|
518 | {
|
---|
519 | return inb(cm->iobase + cmd);
|
---|
520 | }
|
---|
521 |
|
---|
522 | /* bit operations for dword register */
|
---|
523 | static int snd_cmipci_set_bit(struct cmipci *cm, unsigned int cmd, unsigned int flag)
|
---|
524 | {
|
---|
525 | unsigned int val, oval;
|
---|
526 | val = oval = inl(cm->iobase + cmd);
|
---|
527 | val |= flag;
|
---|
528 | if (val == oval)
|
---|
529 | return 0;
|
---|
530 | outl(val, cm->iobase + cmd);
|
---|
531 | return 1;
|
---|
532 | }
|
---|
533 |
|
---|
534 | static int snd_cmipci_clear_bit(struct cmipci *cm, unsigned int cmd, unsigned int flag)
|
---|
535 | {
|
---|
536 | unsigned int val, oval;
|
---|
537 | val = oval = inl(cm->iobase + cmd);
|
---|
538 | val &= ~flag;
|
---|
539 | if (val == oval)
|
---|
540 | return 0;
|
---|
541 | outl(val, cm->iobase + cmd);
|
---|
542 | return 1;
|
---|
543 | }
|
---|
544 |
|
---|
545 | /* bit operations for byte register */
|
---|
546 | static int snd_cmipci_set_bit_b(struct cmipci *cm, unsigned int cmd, unsigned char flag)
|
---|
547 | {
|
---|
548 | unsigned char val, oval;
|
---|
549 | val = oval = inb(cm->iobase + cmd);
|
---|
550 | val |= flag;
|
---|
551 | if (val == oval)
|
---|
552 | return 0;
|
---|
553 | outb(val, cm->iobase + cmd);
|
---|
554 | return 1;
|
---|
555 | }
|
---|
556 |
|
---|
557 | static int snd_cmipci_clear_bit_b(struct cmipci *cm, unsigned int cmd, unsigned char flag)
|
---|
558 | {
|
---|
559 | unsigned char val, oval;
|
---|
560 | val = oval = inb(cm->iobase + cmd);
|
---|
561 | val &= ~flag;
|
---|
562 | if (val == oval)
|
---|
563 | return 0;
|
---|
564 | outb(val, cm->iobase + cmd);
|
---|
565 | return 1;
|
---|
566 | }
|
---|
567 |
|
---|
568 | /*
|
---|
569 | * PCM interface
|
---|
570 | */
|
---|
571 |
|
---|
572 | /*
|
---|
573 | * calculate frequency
|
---|
574 | */
|
---|
575 |
|
---|
576 | static unsigned int rates[] = { 5512, 11025, 22050, 44100, 8000, 16000, 32000, 48000 };
|
---|
577 |
|
---|
578 | static unsigned int snd_cmipci_rate_freq(unsigned int rate)
|
---|
579 | {
|
---|
580 | unsigned int i;
|
---|
581 | for (i = 0; i < ARRAY_SIZE(rates); i++) {
|
---|
582 | if (rates[i] == rate)
|
---|
583 | return i;
|
---|
584 | }
|
---|
585 | snd_BUG();
|
---|
586 | return 0;
|
---|
587 | }
|
---|
588 |
|
---|
589 | #ifdef USE_VAR48KRATE
|
---|
590 | /*
|
---|
591 | * Determine PLL values for frequency setup, maybe the CMI8338 (CMI8738???)
|
---|
592 | * does it this way .. maybe not. Never get any information from C-Media about
|
---|
593 | * that <werner@suse.de>.
|
---|
594 | */
|
---|
595 | static int snd_cmipci_pll_rmn(unsigned int rate, unsigned int adcmult, int *r, int *m, int *n)
|
---|
596 | {
|
---|
597 | unsigned int delta, tolerance;
|
---|
598 | int xm, xn, xr;
|
---|
599 |
|
---|
600 | for (*r = 0; rate < CM_MAXIMUM_RATE/adcmult; *r += (1<<5))
|
---|
601 | rate <<= 1;
|
---|
602 | *n = -1;
|
---|
603 | if (*r > 0xff)
|
---|
604 | goto out;
|
---|
605 | tolerance = rate*CM_TOLERANCE_RATE;
|
---|
606 |
|
---|
607 | for (xn = (1+2); xn < (0x1f+2); xn++) {
|
---|
608 | for (xm = (1+2); xm < (0xff+2); xm++) {
|
---|
609 | xr = ((CM_REFFREQ_XIN/adcmult) * xm) / xn;
|
---|
610 |
|
---|
611 | if (xr < rate)
|
---|
612 | delta = rate - xr;
|
---|
613 | else
|
---|
614 | delta = xr - rate;
|
---|
615 |
|
---|
616 | /*
|
---|
617 | * If we found one, remember this,
|
---|
618 | * and try to find a closer one
|
---|
619 | */
|
---|
620 | if (delta < tolerance) {
|
---|
621 | tolerance = delta;
|
---|
622 | *m = xm - 2;
|
---|
623 | *n = xn - 2;
|
---|
624 | }
|
---|
625 | }
|
---|
626 | }
|
---|
627 | out:
|
---|
628 | return (*n > -1);
|
---|
629 | }
|
---|
630 |
|
---|
631 | /*
|
---|
632 | * Program pll register bits, I assume that the 8 registers 0xf8 upto 0xff
|
---|
633 | * are mapped onto the 8 ADC/DAC sampling frequency which can be choosen
|
---|
634 | * at the register CM_REG_FUNCTRL1 (0x04).
|
---|
635 | * Problem: other ways are also possible (any information about that?)
|
---|
636 | */
|
---|
637 | static void snd_cmipci_set_pll(struct cmipci *cm, unsigned int rate, unsigned int slot)
|
---|
638 | {
|
---|
639 | unsigned int reg = CM_REG_PLL + slot;
|
---|
640 | /*
|
---|
641 | * Guess that this programs at reg. 0x04 the pos 15:13/12:10
|
---|
642 | * for DSFC/ASFC (000 upto 111).
|
---|
643 | */
|
---|
644 |
|
---|
645 | /* FIXME: Init (Do we've to set an other register first before programming?) */
|
---|
646 |
|
---|
647 | /* FIXME: Is this correct? Or shouldn't the m/n/r values be used for that? */
|
---|
648 | snd_cmipci_write_b(cm, reg, rate>>8);
|
---|
649 | snd_cmipci_write_b(cm, reg, rate&0xff);
|
---|
650 |
|
---|
651 | /* FIXME: Setup (Do we've to set an other register first to enable this?) */
|
---|
652 | }
|
---|
653 | #endif /* USE_VAR48KRATE */
|
---|
654 |
|
---|
655 | static int snd_cmipci_hw_params(struct snd_pcm_substream *substream,
|
---|
656 | struct snd_pcm_hw_params *hw_params)
|
---|
657 | {
|
---|
658 | return snd_pcm_lib_malloc_pages(substream, params_buffer_bytes(hw_params));
|
---|
659 | }
|
---|
660 |
|
---|
661 | static int snd_cmipci_playback2_hw_params(struct snd_pcm_substream *substream,
|
---|
662 | struct snd_pcm_hw_params *hw_params)
|
---|
663 | {
|
---|
664 | struct cmipci *cm = snd_pcm_substream_chip(substream);
|
---|
665 | if (params_channels(hw_params) > 2) {
|
---|
666 | down(&cm->open_mutex);
|
---|
667 | #if 0 // vladest
|
---|
668 | if (cm->opened[CM_CH_PLAY]) {
|
---|
669 | up(&cm->open_mutex);
|
---|
670 | return -EBUSY;
|
---|
671 | }
|
---|
672 | #endif
|
---|
673 | /* reserve the channel A */
|
---|
674 | cm->opened[CM_CH_PLAY] = CM_OPEN_PLAYBACK_MULTI;
|
---|
675 | up(&cm->open_mutex);
|
---|
676 | }
|
---|
677 | return snd_pcm_lib_malloc_pages(substream, params_buffer_bytes(hw_params));
|
---|
678 | }
|
---|
679 |
|
---|
680 | static void snd_cmipci_ch_reset(struct cmipci *cm, int ch)
|
---|
681 | {
|
---|
682 | int reset = CM_RST_CH0 << (cm->channel[ch].ch);
|
---|
683 | snd_cmipci_write(cm, CM_REG_FUNCTRL0, cm->ctrl | reset);
|
---|
684 | snd_cmipci_write(cm, CM_REG_FUNCTRL0, cm->ctrl & ~reset);
|
---|
685 | udelay(10);
|
---|
686 | }
|
---|
687 |
|
---|
688 | static int snd_cmipci_hw_free(struct snd_pcm_substream *substream)
|
---|
689 | {
|
---|
690 | return snd_pcm_lib_free_pages(substream);
|
---|
691 | }
|
---|
692 |
|
---|
693 |
|
---|
694 | /*
|
---|
695 | */
|
---|
696 |
|
---|
697 | static unsigned int hw_channels[] = {1, 2, 4, 5, 6, 8};
|
---|
698 | static struct snd_pcm_hw_constraint_list hw_constraints_channels_4 = {
|
---|
699 | .count = 3,
|
---|
700 | .list = hw_channels,
|
---|
701 | .mask = 0,
|
---|
702 | };
|
---|
703 | static struct snd_pcm_hw_constraint_list hw_constraints_channels_6 = {
|
---|
704 | .count = 5,
|
---|
705 | .list = hw_channels,
|
---|
706 | .mask = 0,
|
---|
707 | };
|
---|
708 | static struct snd_pcm_hw_constraint_list hw_constraints_channels_8 = {
|
---|
709 | .count = 6,
|
---|
710 | .list = hw_channels,
|
---|
711 | .mask = 0,
|
---|
712 | };
|
---|
713 |
|
---|
714 | static int set_dac_channels(struct cmipci *cm, struct cmipci_pcm *rec, int channels)
|
---|
715 | {
|
---|
716 | if (channels > 2) {
|
---|
717 | if (! cm->can_multi_ch)
|
---|
718 | return -EINVAL;
|
---|
719 | if (rec->fmt != 0x03) /* stereo 16bit only */
|
---|
720 | return -EINVAL;
|
---|
721 |
|
---|
722 | spin_lock_irq(&cm->reg_lock);
|
---|
723 | snd_cmipci_set_bit(cm, CM_REG_LEGACY_CTRL, CM_NXCHG);
|
---|
724 | snd_cmipci_set_bit(cm, CM_REG_MISC_CTRL, CM_XCHGDAC);
|
---|
725 | if (channels > 4) {
|
---|
726 | snd_cmipci_clear_bit(cm, CM_REG_CHFORMAT, CM_CHB3D);
|
---|
727 | snd_cmipci_set_bit(cm, CM_REG_CHFORMAT, CM_CHB3D5C);
|
---|
728 | } else {
|
---|
729 | snd_cmipci_clear_bit(cm, CM_REG_CHFORMAT, CM_CHB3D5C);
|
---|
730 | snd_cmipci_set_bit(cm, CM_REG_CHFORMAT, CM_CHB3D);
|
---|
731 | }
|
---|
732 | if (channels >= 6) {
|
---|
733 | snd_cmipci_set_bit(cm, CM_REG_LEGACY_CTRL, CM_CHB3D6C);
|
---|
734 | snd_cmipci_set_bit(cm, CM_REG_MISC_CTRL, CM_ENCENTER);
|
---|
735 | } else {
|
---|
736 | snd_cmipci_clear_bit(cm, CM_REG_LEGACY_CTRL, CM_CHB3D6C);
|
---|
737 | snd_cmipci_clear_bit(cm, CM_REG_MISC_CTRL, CM_ENCENTER);
|
---|
738 | }
|
---|
739 | if (cm->chip_version == 68) {
|
---|
740 | if (channels == 8) {
|
---|
741 | snd_cmipci_set_bit(cm, CM_REG_MISC_CTRL_8768, CM_CHB3D8C);
|
---|
742 | } else {
|
---|
743 | snd_cmipci_clear_bit(cm, CM_REG_MISC_CTRL_8768, CM_CHB3D8C);
|
---|
744 | }
|
---|
745 | }
|
---|
746 | spin_unlock_irq(&cm->reg_lock);
|
---|
747 |
|
---|
748 | } else {
|
---|
749 | if (cm->can_multi_ch) {
|
---|
750 | spin_lock_irq(&cm->reg_lock);
|
---|
751 | snd_cmipci_clear_bit(cm, CM_REG_LEGACY_CTRL, CM_NXCHG);
|
---|
752 | snd_cmipci_clear_bit(cm, CM_REG_CHFORMAT, CM_CHB3D);
|
---|
753 | snd_cmipci_clear_bit(cm, CM_REG_CHFORMAT, CM_CHB3D5C);
|
---|
754 | snd_cmipci_clear_bit(cm, CM_REG_LEGACY_CTRL, CM_CHB3D6C);
|
---|
755 | snd_cmipci_clear_bit(cm, CM_REG_MISC_CTRL, CM_ENCENTER);
|
---|
756 | snd_cmipci_clear_bit(cm, CM_REG_MISC_CTRL, CM_XCHGDAC);
|
---|
757 | spin_unlock_irq(&cm->reg_lock);
|
---|
758 | }
|
---|
759 | }
|
---|
760 | return 0;
|
---|
761 | }
|
---|
762 |
|
---|
763 |
|
---|
764 | /*
|
---|
765 | * prepare playback/capture channel
|
---|
766 | * channel to be used must have been set in rec->ch.
|
---|
767 | */
|
---|
768 | static int snd_cmipci_pcm_prepare(struct cmipci *cm, struct cmipci_pcm *rec,
|
---|
769 | struct snd_pcm_substream *substream)
|
---|
770 | {
|
---|
771 | unsigned int reg, freq, val;
|
---|
772 | struct snd_pcm_runtime *runtime = substream->runtime;
|
---|
773 |
|
---|
774 | rec->fmt = 0;
|
---|
775 | rec->shift = 0;
|
---|
776 | if (snd_pcm_format_width(runtime->format) >= 16) {
|
---|
777 | rec->fmt |= 0x02;
|
---|
778 | if (snd_pcm_format_width(runtime->format) > 16)
|
---|
779 | rec->shift++; /* 24/32bit */
|
---|
780 | }
|
---|
781 | if (runtime->channels > 1)
|
---|
782 | rec->fmt |= 0x01;
|
---|
783 | if (rec->is_dac && set_dac_channels(cm, rec, runtime->channels) < 0) {
|
---|
784 | snd_printd("cannot set dac channels\n");
|
---|
785 | return -EINVAL;
|
---|
786 | }
|
---|
787 |
|
---|
788 | rec->offset = runtime->dma_addr;
|
---|
789 | /* buffer and period sizes in frame */
|
---|
790 | rec->dma_size = runtime->buffer_size << rec->shift;
|
---|
791 | rec->period_size = runtime->period_size << rec->shift;
|
---|
792 | if (runtime->channels > 2) {
|
---|
793 | /* multi-channels */
|
---|
794 | rec->dma_size = (rec->dma_size * runtime->channels) / 2;
|
---|
795 | rec->period_size = (rec->period_size * runtime->channels) / 2;
|
---|
796 | }
|
---|
797 |
|
---|
798 | spin_lock_irq(&cm->reg_lock);
|
---|
799 |
|
---|
800 | /* set buffer address */
|
---|
801 | reg = rec->ch ? CM_REG_CH1_FRAME1 : CM_REG_CH0_FRAME1;
|
---|
802 | snd_cmipci_write(cm, reg, rec->offset);
|
---|
803 | /* program sample counts */
|
---|
804 | reg = rec->ch ? CM_REG_CH1_FRAME2 : CM_REG_CH0_FRAME2;
|
---|
805 | snd_cmipci_write_w(cm, reg, rec->dma_size - 1);
|
---|
806 | snd_cmipci_write_w(cm, reg + 2, rec->period_size - 1);
|
---|
807 |
|
---|
808 | /* set adc/dac flag */
|
---|
809 | val = rec->ch ? CM_CHADC1 : CM_CHADC0;
|
---|
810 | if (rec->is_dac)
|
---|
811 | cm->ctrl &= ~val;
|
---|
812 | else
|
---|
813 | cm->ctrl |= val;
|
---|
814 | snd_cmipci_write(cm, CM_REG_FUNCTRL0, cm->ctrl);
|
---|
815 | //snd_printd("cmipci: functrl0 = %08x\n", cm->ctrl);
|
---|
816 |
|
---|
817 | /* set sample rate */
|
---|
818 | freq = snd_cmipci_rate_freq(runtime->rate);
|
---|
819 | val = snd_cmipci_read(cm, CM_REG_FUNCTRL1);
|
---|
820 | if (rec->ch) {
|
---|
821 | val &= ~CM_ASFC_MASK;
|
---|
822 | val |= (freq << CM_ASFC_SHIFT) & CM_ASFC_MASK;
|
---|
823 | } else {
|
---|
824 | val &= ~CM_DSFC_MASK;
|
---|
825 | val |= (freq << CM_DSFC_SHIFT) & CM_DSFC_MASK;
|
---|
826 | }
|
---|
827 | snd_cmipci_write(cm, CM_REG_FUNCTRL1, val);
|
---|
828 | //snd_printd("cmipci: functrl1 = %08x\n", val);
|
---|
829 |
|
---|
830 | /* set format */
|
---|
831 | val = snd_cmipci_read(cm, CM_REG_CHFORMAT);
|
---|
832 | if (rec->ch) {
|
---|
833 | val &= ~CM_CH1FMT_MASK;
|
---|
834 | val |= rec->fmt << CM_CH1FMT_SHIFT;
|
---|
835 | } else {
|
---|
836 | val &= ~CM_CH0FMT_MASK;
|
---|
837 | val |= rec->fmt << CM_CH0FMT_SHIFT;
|
---|
838 | }
|
---|
839 | snd_cmipci_write(cm, CM_REG_CHFORMAT, val);
|
---|
840 | //snd_printd("cmipci: chformat = %08x\n", val);
|
---|
841 |
|
---|
842 | rec->running = 0;
|
---|
843 | spin_unlock_irq(&cm->reg_lock);
|
---|
844 |
|
---|
845 | return 0;
|
---|
846 | }
|
---|
847 |
|
---|
848 | /*
|
---|
849 | * PCM trigger/stop
|
---|
850 | */
|
---|
851 | static int snd_cmipci_pcm_trigger(struct cmipci *cm, struct cmipci_pcm *rec,
|
---|
852 | struct snd_pcm_substream *substream, int cmd)
|
---|
853 | {
|
---|
854 | unsigned int inthld, chen, reset, pause;
|
---|
855 | int result = 0;
|
---|
856 |
|
---|
857 | inthld = CM_CH0_INT_EN << rec->ch;
|
---|
858 | chen = CM_CHEN0 << rec->ch;
|
---|
859 | reset = CM_RST_CH0 << rec->ch;
|
---|
860 | pause = CM_PAUSE0 << rec->ch;
|
---|
861 |
|
---|
862 | spin_lock(&cm->reg_lock);
|
---|
863 | switch (cmd) {
|
---|
864 | case SNDRV_PCM_TRIGGER_START:
|
---|
865 | rec->running = 1;
|
---|
866 | /* set interrupt */
|
---|
867 | snd_cmipci_set_bit(cm, CM_REG_INT_HLDCLR, inthld);
|
---|
868 | cm->ctrl |= chen;
|
---|
869 | /* enable channel */
|
---|
870 | snd_cmipci_write(cm, CM_REG_FUNCTRL0, cm->ctrl);
|
---|
871 | //snd_printd("cmipci: functrl0 = %08x\n", cm->ctrl);
|
---|
872 | break;
|
---|
873 | case SNDRV_PCM_TRIGGER_STOP:
|
---|
874 | rec->running = 0;
|
---|
875 | /* disable interrupt */
|
---|
876 | snd_cmipci_clear_bit(cm, CM_REG_INT_HLDCLR, inthld);
|
---|
877 | /* reset */
|
---|
878 | cm->ctrl &= ~chen;
|
---|
879 | snd_cmipci_write(cm, CM_REG_FUNCTRL0, cm->ctrl | reset);
|
---|
880 | snd_cmipci_write(cm, CM_REG_FUNCTRL0, cm->ctrl & ~reset);
|
---|
881 | break;
|
---|
882 | case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
|
---|
883 | case SNDRV_PCM_TRIGGER_SUSPEND:
|
---|
884 | cm->ctrl |= pause;
|
---|
885 | snd_cmipci_write(cm, CM_REG_FUNCTRL0, cm->ctrl);
|
---|
886 | break;
|
---|
887 | case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
|
---|
888 | case SNDRV_PCM_TRIGGER_RESUME:
|
---|
889 | cm->ctrl &= ~pause;
|
---|
890 | snd_cmipci_write(cm, CM_REG_FUNCTRL0, cm->ctrl);
|
---|
891 | break;
|
---|
892 | default:
|
---|
893 | result = -EINVAL;
|
---|
894 | break;
|
---|
895 | }
|
---|
896 | spin_unlock(&cm->reg_lock);
|
---|
897 | return result;
|
---|
898 | }
|
---|
899 |
|
---|
900 | /*
|
---|
901 | * return the current pointer
|
---|
902 | */
|
---|
903 | static snd_pcm_uframes_t snd_cmipci_pcm_pointer(struct cmipci *cm, struct cmipci_pcm *rec,
|
---|
904 | struct snd_pcm_substream *substream)
|
---|
905 | {
|
---|
906 | size_t ptr;
|
---|
907 | unsigned int reg;
|
---|
908 | if (!rec->running)
|
---|
909 | return 0;
|
---|
910 | #if 1 // this seems better..
|
---|
911 | reg = rec->ch ? CM_REG_CH1_FRAME2 : CM_REG_CH0_FRAME2;
|
---|
912 | ptr = rec->dma_size - (snd_cmipci_read_w(cm, reg) + 1);
|
---|
913 | ptr >>= rec->shift;
|
---|
914 | #else
|
---|
915 | reg = rec->ch ? CM_REG_CH1_FRAME1 : CM_REG_CH0_FRAME1;
|
---|
916 | ptr = snd_cmipci_read(cm, reg) - rec->offset;
|
---|
917 | ptr = bytes_to_frames(substream->runtime, ptr);
|
---|
918 | #endif
|
---|
919 | if (substream->runtime->channels > 2)
|
---|
920 | ptr = (ptr * 2) / substream->runtime->channels;
|
---|
921 | return ptr;
|
---|
922 | }
|
---|
923 |
|
---|
924 | /*
|
---|
925 | * playback
|
---|
926 | */
|
---|
927 | static int snd_cmipci_playback_trigger(struct snd_pcm_substream *substream,
|
---|
928 | int cmd)
|
---|
929 | {
|
---|
930 | struct cmipci *cm = snd_pcm_substream_chip(substream);
|
---|
931 | return snd_cmipci_pcm_trigger(cm, &cm->channel[CM_CH_PLAY], substream, cmd);
|
---|
932 | }
|
---|
933 |
|
---|
934 | static snd_pcm_uframes_t snd_cmipci_playback_pointer(struct snd_pcm_substream *substream)
|
---|
935 | {
|
---|
936 | struct cmipci *cm = snd_pcm_substream_chip(substream);
|
---|
937 | return snd_cmipci_pcm_pointer(cm, &cm->channel[CM_CH_PLAY], substream);
|
---|
938 | }
|
---|
939 |
|
---|
940 |
|
---|
941 |
|
---|
942 | /*
|
---|
943 | * capture
|
---|
944 | */
|
---|
945 |
|
---|
946 | static int snd_cmipci_capture_trigger(struct snd_pcm_substream *substream,
|
---|
947 | int cmd)
|
---|
948 | {
|
---|
949 | struct cmipci *cm = snd_pcm_substream_chip(substream);
|
---|
950 | return snd_cmipci_pcm_trigger(cm, &cm->channel[CM_CH_CAPT], substream, cmd);
|
---|
951 | }
|
---|
952 |
|
---|
953 | static snd_pcm_uframes_t snd_cmipci_capture_pointer(struct snd_pcm_substream *substream)
|
---|
954 | {
|
---|
955 | struct cmipci *cm = snd_pcm_substream_chip(substream);
|
---|
956 | return snd_cmipci_pcm_pointer(cm, &cm->channel[CM_CH_CAPT], substream);
|
---|
957 | }
|
---|
958 |
|
---|
959 |
|
---|
960 | /*
|
---|
961 | * hw preparation for spdif
|
---|
962 | */
|
---|
963 |
|
---|
964 | static int snd_cmipci_spdif_default_info(struct snd_kcontrol *kcontrol,
|
---|
965 | struct snd_ctl_elem_info *uinfo)
|
---|
966 | {
|
---|
967 | uinfo->type = SNDRV_CTL_ELEM_TYPE_IEC958;
|
---|
968 | uinfo->count = 1;
|
---|
969 | return 0;
|
---|
970 | }
|
---|
971 |
|
---|
972 | static int snd_cmipci_spdif_default_get(struct snd_kcontrol *kcontrol,
|
---|
973 | struct snd_ctl_elem_value *ucontrol)
|
---|
974 | {
|
---|
975 | struct cmipci *chip = snd_kcontrol_chip(kcontrol);
|
---|
976 | int i;
|
---|
977 |
|
---|
978 | spin_lock_irq(&chip->reg_lock);
|
---|
979 | for (i = 0; i < 4; i++)
|
---|
980 | ucontrol->value.iec958.status[i] = (chip->dig_status >> (i * 8)) & 0xff;
|
---|
981 | spin_unlock_irq(&chip->reg_lock);
|
---|
982 | return 0;
|
---|
983 | }
|
---|
984 |
|
---|
985 | static int snd_cmipci_spdif_default_put(struct snd_kcontrol *kcontrol,
|
---|
986 | struct snd_ctl_elem_value *ucontrol)
|
---|
987 | {
|
---|
988 | struct cmipci *chip = snd_kcontrol_chip(kcontrol);
|
---|
989 | int i, change;
|
---|
990 | unsigned int val;
|
---|
991 |
|
---|
992 | val = 0;
|
---|
993 | spin_lock_irq(&chip->reg_lock);
|
---|
994 | for (i = 0; i < 4; i++)
|
---|
995 | val |= (unsigned int)ucontrol->value.iec958.status[i] << (i * 8);
|
---|
996 | change = val != chip->dig_status;
|
---|
997 | chip->dig_status = val;
|
---|
998 | spin_unlock_irq(&chip->reg_lock);
|
---|
999 | return change;
|
---|
1000 | }
|
---|
1001 |
|
---|
1002 | static struct snd_kcontrol_new snd_cmipci_spdif_default __devinitdata =
|
---|
1003 | {
|
---|
1004 | SNDRV_CTL_ELEM_IFACE_PCM,0,0,
|
---|
1005 | SNDRV_CTL_NAME_IEC958("",PLAYBACK,DEFAULT),0,0,0,
|
---|
1006 | snd_cmipci_spdif_default_info,
|
---|
1007 | snd_cmipci_spdif_default_get,
|
---|
1008 | snd_cmipci_spdif_default_put,0
|
---|
1009 | };
|
---|
1010 |
|
---|
1011 | static int snd_cmipci_spdif_mask_info(struct snd_kcontrol *kcontrol,
|
---|
1012 | struct snd_ctl_elem_info *uinfo)
|
---|
1013 | {
|
---|
1014 | uinfo->type = SNDRV_CTL_ELEM_TYPE_IEC958;
|
---|
1015 | uinfo->count = 1;
|
---|
1016 | return 0;
|
---|
1017 | }
|
---|
1018 |
|
---|
1019 | static int snd_cmipci_spdif_mask_get(struct snd_kcontrol *kcontrol,
|
---|
1020 | struct snd_ctl_elem_value *ucontrol)
|
---|
1021 | {
|
---|
1022 | ucontrol->value.iec958.status[0] = 0xff;
|
---|
1023 | ucontrol->value.iec958.status[1] = 0xff;
|
---|
1024 | ucontrol->value.iec958.status[2] = 0xff;
|
---|
1025 | ucontrol->value.iec958.status[3] = 0xff;
|
---|
1026 | return 0;
|
---|
1027 | }
|
---|
1028 |
|
---|
1029 | static struct snd_kcontrol_new snd_cmipci_spdif_mask __devinitdata =
|
---|
1030 | {
|
---|
1031 | SNDRV_CTL_ELEM_IFACE_MIXER,0,0,
|
---|
1032 | SNDRV_CTL_NAME_IEC958("",PLAYBACK,CON_MASK),0,
|
---|
1033 | SNDRV_CTL_ELEM_ACCESS_READ,0,
|
---|
1034 | snd_cmipci_spdif_mask_info,
|
---|
1035 | snd_cmipci_spdif_mask_get,0,0
|
---|
1036 | };
|
---|
1037 |
|
---|
1038 | static int snd_cmipci_spdif_stream_info(struct snd_kcontrol *kcontrol,
|
---|
1039 | struct snd_ctl_elem_info *uinfo)
|
---|
1040 | {
|
---|
1041 | uinfo->type = SNDRV_CTL_ELEM_TYPE_IEC958;
|
---|
1042 | uinfo->count = 1;
|
---|
1043 | return 0;
|
---|
1044 | }
|
---|
1045 |
|
---|
1046 | static int snd_cmipci_spdif_stream_get(struct snd_kcontrol *kcontrol,
|
---|
1047 | struct snd_ctl_elem_value *ucontrol)
|
---|
1048 | {
|
---|
1049 | struct cmipci *chip = snd_kcontrol_chip(kcontrol);
|
---|
1050 | int i;
|
---|
1051 |
|
---|
1052 | spin_lock_irq(&chip->reg_lock);
|
---|
1053 | for (i = 0; i < 4; i++)
|
---|
1054 | ucontrol->value.iec958.status[i] = (chip->dig_pcm_status >> (i * 8)) & 0xff;
|
---|
1055 | spin_unlock_irq(&chip->reg_lock);
|
---|
1056 | return 0;
|
---|
1057 | }
|
---|
1058 |
|
---|
1059 | static int snd_cmipci_spdif_stream_put(struct snd_kcontrol *kcontrol,
|
---|
1060 | struct snd_ctl_elem_value *ucontrol)
|
---|
1061 | {
|
---|
1062 | struct cmipci *chip = snd_kcontrol_chip(kcontrol);
|
---|
1063 | int i, change;
|
---|
1064 | unsigned int val;
|
---|
1065 |
|
---|
1066 | val = 0;
|
---|
1067 | spin_lock_irq(&chip->reg_lock);
|
---|
1068 | for (i = 0; i < 4; i++)
|
---|
1069 | val |= (unsigned int)ucontrol->value.iec958.status[i] << (i * 8);
|
---|
1070 | change = val != chip->dig_pcm_status;
|
---|
1071 | chip->dig_pcm_status = val;
|
---|
1072 | spin_unlock_irq(&chip->reg_lock);
|
---|
1073 | return change;
|
---|
1074 | }
|
---|
1075 |
|
---|
1076 | static struct snd_kcontrol_new snd_cmipci_spdif_stream __devinitdata =
|
---|
1077 | {
|
---|
1078 | SNDRV_CTL_ELEM_IFACE_PCM,0,0,
|
---|
1079 | SNDRV_CTL_NAME_IEC958("",PLAYBACK,PCM_STREAM),0,
|
---|
1080 | SNDRV_CTL_ELEM_ACCESS_READWRITE | SNDRV_CTL_ELEM_ACCESS_INACTIVE,0,
|
---|
1081 | snd_cmipci_spdif_stream_info,
|
---|
1082 | snd_cmipci_spdif_stream_get,
|
---|
1083 | snd_cmipci_spdif_stream_put,0
|
---|
1084 | };
|
---|
1085 |
|
---|
1086 | /*
|
---|
1087 | */
|
---|
1088 |
|
---|
1089 | /* save mixer setting and mute for AC3 playback */
|
---|
1090 | static int save_mixer_state(struct cmipci *cm)
|
---|
1091 | {
|
---|
1092 | if (! cm->mixer_insensitive) {
|
---|
1093 | struct snd_ctl_elem_value *val;
|
---|
1094 | unsigned int i;
|
---|
1095 | val = kmalloc(sizeof(*val), GFP_ATOMIC);
|
---|
1096 | if (!val)
|
---|
1097 | return -ENOMEM;
|
---|
1098 | for (i = 0; i < CM_SAVED_MIXERS; i++) {
|
---|
1099 | struct snd_kcontrol *ctl = cm->mixer_res_ctl[i];
|
---|
1100 | if (ctl) {
|
---|
1101 | int event;
|
---|
1102 | memset(val, 0, sizeof(*val));
|
---|
1103 | ctl->get(ctl, val);
|
---|
1104 | cm->mixer_res_status[i] = val->value.integer.value[0];
|
---|
1105 | val->value.integer.value[0] = cm_saved_mixer[i].toggle_on;
|
---|
1106 | event = SNDRV_CTL_EVENT_MASK_INFO;
|
---|
1107 | if (cm->mixer_res_status[i] != val->value.integer.value[0]) {
|
---|
1108 | ctl->put(ctl, val); /* toggle */
|
---|
1109 | event |= SNDRV_CTL_EVENT_MASK_VALUE;
|
---|
1110 | }
|
---|
1111 | ctl->vd[0].access |= SNDRV_CTL_ELEM_ACCESS_INACTIVE;
|
---|
1112 | snd_ctl_notify(cm->card, event, &ctl->id);
|
---|
1113 | }
|
---|
1114 | }
|
---|
1115 | kfree(val);
|
---|
1116 | cm->mixer_insensitive = 1;
|
---|
1117 | }
|
---|
1118 | return 0;
|
---|
1119 | }
|
---|
1120 |
|
---|
1121 |
|
---|
1122 | /* restore the previously saved mixer status */
|
---|
1123 | static void restore_mixer_state(struct cmipci *cm)
|
---|
1124 | {
|
---|
1125 | if (cm->mixer_insensitive) {
|
---|
1126 | struct snd_ctl_elem_value *val;
|
---|
1127 | unsigned int i;
|
---|
1128 |
|
---|
1129 | val = kmalloc(sizeof(*val), GFP_KERNEL);
|
---|
1130 | if (!val)
|
---|
1131 | return;
|
---|
1132 | cm->mixer_insensitive = 0; /* at first clear this;
|
---|
1133 | otherwise the changes will be ignored */
|
---|
1134 | for (i = 0; i < CM_SAVED_MIXERS; i++) {
|
---|
1135 | struct snd_kcontrol *ctl = cm->mixer_res_ctl[i];
|
---|
1136 | if (ctl) {
|
---|
1137 | int event;
|
---|
1138 |
|
---|
1139 | memset(val, 0, sizeof(*val));
|
---|
1140 | ctl->vd[0].access &= ~SNDRV_CTL_ELEM_ACCESS_INACTIVE;
|
---|
1141 | ctl->get(ctl, val);
|
---|
1142 | event = SNDRV_CTL_EVENT_MASK_INFO;
|
---|
1143 | if (val->value.integer.value[0] != cm->mixer_res_status[i]) {
|
---|
1144 | val->value.integer.value[0] = cm->mixer_res_status[i];
|
---|
1145 | ctl->put(ctl, val);
|
---|
1146 | event |= SNDRV_CTL_EVENT_MASK_VALUE;
|
---|
1147 | }
|
---|
1148 | snd_ctl_notify(cm->card, event, &ctl->id);
|
---|
1149 | }
|
---|
1150 | }
|
---|
1151 | kfree(val);
|
---|
1152 | }
|
---|
1153 | }
|
---|
1154 |
|
---|
1155 | /* spinlock held! */
|
---|
1156 | static void setup_ac3(struct cmipci *cm, struct snd_pcm_substream *subs, int do_ac3, int rate)
|
---|
1157 | {
|
---|
1158 | if (do_ac3) {
|
---|
1159 | /* AC3EN for 037 */
|
---|
1160 | snd_cmipci_set_bit(cm, CM_REG_CHFORMAT, CM_AC3EN1);
|
---|
1161 | /* AC3EN for 039 */
|
---|
1162 | snd_cmipci_set_bit(cm, CM_REG_MISC_CTRL, CM_AC3EN2);
|
---|
1163 |
|
---|
1164 | if (cm->can_ac3_hw) {
|
---|
1165 | /* SPD24SEL for 037, 0x02 */
|
---|
1166 | /* SPD24SEL for 039, 0x20, but cannot be set */
|
---|
1167 | snd_cmipci_set_bit(cm, CM_REG_CHFORMAT, CM_SPD24SEL);
|
---|
1168 | snd_cmipci_clear_bit(cm, CM_REG_MISC_CTRL, CM_SPD32SEL);
|
---|
1169 | } else { /* can_ac3_sw */
|
---|
1170 | /* SPD32SEL for 037 & 039, 0x20 */
|
---|
1171 | snd_cmipci_set_bit(cm, CM_REG_MISC_CTRL, CM_SPD32SEL);
|
---|
1172 | /* set 176K sample rate to fix 033 HW bug */
|
---|
1173 | if (cm->chip_version == 33) {
|
---|
1174 | if (rate >= 48000) {
|
---|
1175 | snd_cmipci_set_bit(cm, CM_REG_CHFORMAT, CM_PLAYBACK_SRATE_176K);
|
---|
1176 | } else {
|
---|
1177 | snd_cmipci_clear_bit(cm, CM_REG_CHFORMAT, CM_PLAYBACK_SRATE_176K);
|
---|
1178 | }
|
---|
1179 | }
|
---|
1180 | }
|
---|
1181 |
|
---|
1182 | } else {
|
---|
1183 | snd_cmipci_clear_bit(cm, CM_REG_CHFORMAT, CM_AC3EN1);
|
---|
1184 | snd_cmipci_clear_bit(cm, CM_REG_MISC_CTRL, CM_AC3EN2);
|
---|
1185 |
|
---|
1186 | if (cm->can_ac3_hw) {
|
---|
1187 | /* chip model >= 37 */
|
---|
1188 | if (snd_pcm_format_width(subs->runtime->format) > 16) {
|
---|
1189 | snd_cmipci_set_bit(cm, CM_REG_MISC_CTRL, CM_SPD32SEL);
|
---|
1190 | snd_cmipci_set_bit(cm, CM_REG_CHFORMAT, CM_SPD24SEL);
|
---|
1191 | } else {
|
---|
1192 | snd_cmipci_clear_bit(cm, CM_REG_MISC_CTRL, CM_SPD32SEL);
|
---|
1193 | snd_cmipci_clear_bit(cm, CM_REG_CHFORMAT, CM_SPD24SEL);
|
---|
1194 | }
|
---|
1195 | } else {
|
---|
1196 | snd_cmipci_clear_bit(cm, CM_REG_MISC_CTRL, CM_SPD32SEL);
|
---|
1197 | snd_cmipci_clear_bit(cm, CM_REG_CHFORMAT, CM_SPD24SEL);
|
---|
1198 | snd_cmipci_clear_bit(cm, CM_REG_CHFORMAT, CM_PLAYBACK_SRATE_176K);
|
---|
1199 | }
|
---|
1200 | }
|
---|
1201 | }
|
---|
1202 |
|
---|
1203 | static int setup_spdif_playback(struct cmipci *cm, struct snd_pcm_substream *subs, int up, int do_ac3)
|
---|
1204 | {
|
---|
1205 | int rate, err;
|
---|
1206 |
|
---|
1207 | rate = subs->runtime->rate;
|
---|
1208 |
|
---|
1209 | if (up && do_ac3)
|
---|
1210 | if ((err = save_mixer_state(cm)) < 0)
|
---|
1211 | return err;
|
---|
1212 |
|
---|
1213 | spin_lock_irq(&cm->reg_lock);
|
---|
1214 | cm->spdif_playback_avail = up;
|
---|
1215 | if (up) {
|
---|
1216 | /* they are controlled via "IEC958 Output Switch" */
|
---|
1217 | /* snd_cmipci_set_bit(cm, CM_REG_LEGACY_CTRL, CM_ENSPDOUT); */
|
---|
1218 | /* snd_cmipci_set_bit(cm, CM_REG_FUNCTRL1, CM_SPDO2DAC); */
|
---|
1219 | if (cm->spdif_playback_enabled)
|
---|
1220 | snd_cmipci_set_bit(cm, CM_REG_FUNCTRL1, CM_PLAYBACK_SPDF);
|
---|
1221 | setup_ac3(cm, subs, do_ac3, rate);
|
---|
1222 |
|
---|
1223 | if (rate == 48000)
|
---|
1224 | snd_cmipci_set_bit(cm, CM_REG_MISC_CTRL, CM_SPDIF48K | CM_SPDF_AC97);
|
---|
1225 | else
|
---|
1226 | snd_cmipci_clear_bit(cm, CM_REG_MISC_CTRL, CM_SPDIF48K | CM_SPDF_AC97);
|
---|
1227 |
|
---|
1228 | } else {
|
---|
1229 | /* they are controlled via "IEC958 Output Switch" */
|
---|
1230 | /* snd_cmipci_clear_bit(cm, CM_REG_LEGACY_CTRL, CM_ENSPDOUT); */
|
---|
1231 | /* snd_cmipci_clear_bit(cm, CM_REG_FUNCTRL1, CM_SPDO2DAC); */
|
---|
1232 | snd_cmipci_clear_bit(cm, CM_REG_FUNCTRL1, CM_PLAYBACK_SPDF);
|
---|
1233 | setup_ac3(cm, subs, 0, 0);
|
---|
1234 | }
|
---|
1235 | spin_unlock_irq(&cm->reg_lock);
|
---|
1236 | return 0;
|
---|
1237 | }
|
---|
1238 |
|
---|
1239 |
|
---|
1240 | /*
|
---|
1241 | * preparation
|
---|
1242 | */
|
---|
1243 |
|
---|
1244 | /* playback - enable spdif only on the certain condition */
|
---|
1245 | static int snd_cmipci_playback_prepare(struct snd_pcm_substream *substream)
|
---|
1246 | {
|
---|
1247 | struct cmipci *cm = snd_pcm_substream_chip(substream);
|
---|
1248 | int rate = substream->runtime->rate;
|
---|
1249 | int err, do_spdif, do_ac3 = 0;
|
---|
1250 | do_spdif = ((rate == 44100 || rate == 48000) &&
|
---|
1251 | substream->runtime->format == SNDRV_PCM_FORMAT_S16_LE &&
|
---|
1252 | substream->runtime->channels == 2);
|
---|
1253 | if (do_spdif && cm->can_ac3_hw)
|
---|
1254 | do_ac3 = cm->dig_pcm_status & IEC958_AES0_NONAUDIO;
|
---|
1255 | if ((err = setup_spdif_playback(cm, substream, do_spdif, do_ac3)) < 0)
|
---|
1256 | return err;
|
---|
1257 | return snd_cmipci_pcm_prepare(cm, &cm->channel[CM_CH_PLAY], substream);
|
---|
1258 | }
|
---|
1259 |
|
---|
1260 | /* playback (via device #2) - enable spdif always */
|
---|
1261 | static int snd_cmipci_playback_spdif_prepare(struct snd_pcm_substream *substream)
|
---|
1262 | {
|
---|
1263 | struct cmipci *cm = snd_pcm_substream_chip(substream);
|
---|
1264 | int err, do_ac3;
|
---|
1265 | if (cm->can_ac3_hw)
|
---|
1266 | do_ac3 = cm->dig_pcm_status & IEC958_AES0_NONAUDIO;
|
---|
1267 | else
|
---|
1268 | do_ac3 = 1; /* doesn't matter */
|
---|
1269 | if ((err = setup_spdif_playback(cm, substream, 1, do_ac3)) < 0)
|
---|
1270 | return err;
|
---|
1271 | return snd_cmipci_pcm_prepare(cm, &cm->channel[CM_CH_PLAY], substream);
|
---|
1272 | }
|
---|
1273 |
|
---|
1274 | static int snd_cmipci_playback_hw_free(struct snd_pcm_substream *substream)
|
---|
1275 | {
|
---|
1276 | struct cmipci *cm = snd_pcm_substream_chip(substream);
|
---|
1277 | setup_spdif_playback(cm, substream, 0, 0);
|
---|
1278 | restore_mixer_state(cm);
|
---|
1279 | return snd_cmipci_hw_free(substream);
|
---|
1280 | }
|
---|
1281 |
|
---|
1282 | /* capture */
|
---|
1283 | static int snd_cmipci_capture_prepare(struct snd_pcm_substream *substream)
|
---|
1284 | {
|
---|
1285 | struct cmipci *cm = snd_pcm_substream_chip(substream);
|
---|
1286 | return snd_cmipci_pcm_prepare(cm, &cm->channel[CM_CH_CAPT], substream);
|
---|
1287 | }
|
---|
1288 |
|
---|
1289 | /* capture with spdif (via device #2) */
|
---|
1290 | static int snd_cmipci_capture_spdif_prepare(struct snd_pcm_substream *substream)
|
---|
1291 | {
|
---|
1292 | struct cmipci *cm = snd_pcm_substream_chip(substream);
|
---|
1293 |
|
---|
1294 | spin_lock_irq(&cm->reg_lock);
|
---|
1295 | snd_cmipci_set_bit(cm, CM_REG_FUNCTRL1, CM_CAPTURE_SPDF);
|
---|
1296 | spin_unlock_irq(&cm->reg_lock);
|
---|
1297 |
|
---|
1298 | return snd_cmipci_pcm_prepare(cm, &cm->channel[CM_CH_CAPT], substream);
|
---|
1299 | }
|
---|
1300 |
|
---|
1301 | static int snd_cmipci_capture_spdif_hw_free(struct snd_pcm_substream *subs)
|
---|
1302 | {
|
---|
1303 | struct cmipci *cm = snd_pcm_substream_chip(subs);
|
---|
1304 |
|
---|
1305 | spin_lock_irq(&cm->reg_lock);
|
---|
1306 | snd_cmipci_clear_bit(cm, CM_REG_FUNCTRL1, CM_CAPTURE_SPDF);
|
---|
1307 | spin_unlock_irq(&cm->reg_lock);
|
---|
1308 |
|
---|
1309 | return snd_cmipci_hw_free(subs);
|
---|
1310 | }
|
---|
1311 |
|
---|
1312 |
|
---|
1313 | /*
|
---|
1314 | * interrupt handler
|
---|
1315 | */
|
---|
1316 | static irqreturn_t snd_cmipci_interrupt(int irq, void *dev_id, struct pt_regs *regs)
|
---|
1317 | {
|
---|
1318 | #ifdef TARGET_OS2
|
---|
1319 | int fOurIrq = FALSE;
|
---|
1320 | #endif
|
---|
1321 | struct cmipci *cm = dev_id;
|
---|
1322 | unsigned int status, mask = 0;
|
---|
1323 | #ifdef DEBUG
|
---|
1324 | // dprintf(("i"));
|
---|
1325 | #endif
|
---|
1326 | /* fastpath out, to ease interrupt sharing */
|
---|
1327 | status = snd_cmipci_read(cm, CM_REG_INT_STATUS);
|
---|
1328 | if (!(status & CM_INTR))
|
---|
1329 | return IRQ_NONE;
|
---|
1330 |
|
---|
1331 | #ifdef TARGET_OS2
|
---|
1332 | fOurIrq = TRUE;
|
---|
1333 | #endif
|
---|
1334 |
|
---|
1335 | /* acknowledge interrupt */
|
---|
1336 | spin_lock(&cm->reg_lock);
|
---|
1337 | if (status & CM_CHINT0)
|
---|
1338 | mask |= CM_CH0_INT_EN;
|
---|
1339 | if (status & CM_CHINT1)
|
---|
1340 | mask |= CM_CH1_INT_EN;
|
---|
1341 | snd_cmipci_clear_bit(cm, CM_REG_INT_HLDCLR, mask);
|
---|
1342 | snd_cmipci_set_bit(cm, CM_REG_INT_HLDCLR, mask);
|
---|
1343 | spin_unlock(&cm->reg_lock);
|
---|
1344 |
|
---|
1345 | if (cm->rmidi && (status & CM_UARTINT))
|
---|
1346 | snd_mpu401_uart_interrupt(irq, cm->rmidi->private_data, regs);
|
---|
1347 |
|
---|
1348 | if (cm->pcm) {
|
---|
1349 | if ((status & CM_CHINT0) && cm->channel[0].running)
|
---|
1350 | snd_pcm_period_elapsed(cm->channel[0].substream);
|
---|
1351 | if ((status & CM_CHINT1) && cm->channel[1].running)
|
---|
1352 | snd_pcm_period_elapsed(cm->channel[1].substream);
|
---|
1353 | }
|
---|
1354 | #ifdef TARGET_OS2
|
---|
1355 | if (fOurIrq) {
|
---|
1356 | eoi_irq(irq);
|
---|
1357 | }
|
---|
1358 | #endif //TARGET_OS2
|
---|
1359 | return IRQ_HANDLED;
|
---|
1360 | }
|
---|
1361 |
|
---|
1362 | /*
|
---|
1363 | * h/w infos
|
---|
1364 | */
|
---|
1365 |
|
---|
1366 | /* playback on channel A */
|
---|
1367 | static struct snd_pcm_hardware snd_cmipci_playback =
|
---|
1368 | {
|
---|
1369 | .info = (SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_INTERLEAVED |
|
---|
1370 | SNDRV_PCM_INFO_BLOCK_TRANSFER | SNDRV_PCM_INFO_PAUSE |
|
---|
1371 | SNDRV_PCM_INFO_RESUME | SNDRV_PCM_INFO_MMAP_VALID),
|
---|
1372 | .formats = SNDRV_PCM_FMTBIT_U8 | SNDRV_PCM_FMTBIT_S16_LE,
|
---|
1373 | .rates = SNDRV_PCM_RATE_5512 | SNDRV_PCM_RATE_8000_48000,
|
---|
1374 | .rate_min = 5512,
|
---|
1375 | .rate_max = 48000,
|
---|
1376 | .channels_min = 1,
|
---|
1377 | .channels_max = 2,
|
---|
1378 | .buffer_bytes_max = (128*1024),
|
---|
1379 | .period_bytes_min = 64,
|
---|
1380 | .period_bytes_max = (128*1024),
|
---|
1381 | .periods_min = 2,
|
---|
1382 | .periods_max = 1024,
|
---|
1383 | .fifo_size = 0,
|
---|
1384 | };
|
---|
1385 |
|
---|
1386 | /* capture on channel B */
|
---|
1387 | static struct snd_pcm_hardware snd_cmipci_capture =
|
---|
1388 | {
|
---|
1389 | .info = (SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_INTERLEAVED |
|
---|
1390 | SNDRV_PCM_INFO_BLOCK_TRANSFER | SNDRV_PCM_INFO_PAUSE |
|
---|
1391 | SNDRV_PCM_INFO_RESUME | SNDRV_PCM_INFO_MMAP_VALID),
|
---|
1392 | .formats = SNDRV_PCM_FMTBIT_U8 | SNDRV_PCM_FMTBIT_S16_LE,
|
---|
1393 | .rates = SNDRV_PCM_RATE_5512 | SNDRV_PCM_RATE_8000_48000,
|
---|
1394 | .rate_min = 5512,
|
---|
1395 | .rate_max = 48000,
|
---|
1396 | .channels_min = 1,
|
---|
1397 | .channels_max = 2,
|
---|
1398 | .buffer_bytes_max = (128*1024),
|
---|
1399 | .period_bytes_min = 64,
|
---|
1400 | .period_bytes_max = (128*1024),
|
---|
1401 | .periods_min = 2,
|
---|
1402 | .periods_max = 1024,
|
---|
1403 | .fifo_size = 0,
|
---|
1404 | };
|
---|
1405 |
|
---|
1406 | /* playback on channel B - stereo 16bit only? */
|
---|
1407 | static struct snd_pcm_hardware snd_cmipci_playback2 =
|
---|
1408 | {
|
---|
1409 | .info = (SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_INTERLEAVED |
|
---|
1410 | SNDRV_PCM_INFO_BLOCK_TRANSFER | SNDRV_PCM_INFO_PAUSE |
|
---|
1411 | SNDRV_PCM_INFO_RESUME | SNDRV_PCM_INFO_MMAP_VALID),
|
---|
1412 | .formats = SNDRV_PCM_FMTBIT_S16_LE,
|
---|
1413 | .rates = SNDRV_PCM_RATE_5512 | SNDRV_PCM_RATE_8000_48000,
|
---|
1414 | .rate_min = 5512,
|
---|
1415 | .rate_max = 48000,
|
---|
1416 | .channels_min = 2,
|
---|
1417 | .channels_max = 2,
|
---|
1418 | .buffer_bytes_max = (128*1024),
|
---|
1419 | .period_bytes_min = 64,
|
---|
1420 | .period_bytes_max = (128*1024),
|
---|
1421 | .periods_min = 2,
|
---|
1422 | .periods_max = 1024,
|
---|
1423 | .fifo_size = 0,
|
---|
1424 | };
|
---|
1425 |
|
---|
1426 | /* spdif playback on channel A */
|
---|
1427 | static struct snd_pcm_hardware snd_cmipci_playback_spdif =
|
---|
1428 | {
|
---|
1429 | .info = (SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_INTERLEAVED |
|
---|
1430 | SNDRV_PCM_INFO_BLOCK_TRANSFER | SNDRV_PCM_INFO_PAUSE |
|
---|
1431 | SNDRV_PCM_INFO_RESUME | SNDRV_PCM_INFO_MMAP_VALID),
|
---|
1432 | .formats = SNDRV_PCM_FMTBIT_S16_LE,
|
---|
1433 | .rates = SNDRV_PCM_RATE_44100 | SNDRV_PCM_RATE_48000,
|
---|
1434 | .rate_min = 44100,
|
---|
1435 | .rate_max = 48000,
|
---|
1436 | .channels_min = 2,
|
---|
1437 | .channels_max = 2,
|
---|
1438 | .buffer_bytes_max = (128*1024),
|
---|
1439 | .period_bytes_min = 64,
|
---|
1440 | .period_bytes_max = (128*1024),
|
---|
1441 | .periods_min = 2,
|
---|
1442 | .periods_max = 1024,
|
---|
1443 | .fifo_size = 0,
|
---|
1444 | };
|
---|
1445 |
|
---|
1446 | /* spdif playback on channel A (32bit, IEC958 subframes) */
|
---|
1447 | static struct snd_pcm_hardware snd_cmipci_playback_iec958_subframe =
|
---|
1448 | {
|
---|
1449 | .info = (SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_INTERLEAVED |
|
---|
1450 | SNDRV_PCM_INFO_BLOCK_TRANSFER | SNDRV_PCM_INFO_PAUSE |
|
---|
1451 | SNDRV_PCM_INFO_RESUME | SNDRV_PCM_INFO_MMAP_VALID),
|
---|
1452 | .formats = SNDRV_PCM_FMTBIT_IEC958_SUBFRAME_LE,
|
---|
1453 | .rates = SNDRV_PCM_RATE_44100 | SNDRV_PCM_RATE_48000,
|
---|
1454 | .rate_min = 44100,
|
---|
1455 | .rate_max = 48000,
|
---|
1456 | .channels_min = 2,
|
---|
1457 | .channels_max = 2,
|
---|
1458 | .buffer_bytes_max = (128*1024),
|
---|
1459 | .period_bytes_min = 64,
|
---|
1460 | .period_bytes_max = (128*1024),
|
---|
1461 | .periods_min = 2,
|
---|
1462 | .periods_max = 1024,
|
---|
1463 | .fifo_size = 0,
|
---|
1464 | };
|
---|
1465 |
|
---|
1466 | /* spdif capture on channel B */
|
---|
1467 | static struct snd_pcm_hardware snd_cmipci_capture_spdif =
|
---|
1468 | {
|
---|
1469 | .info = (SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_INTERLEAVED |
|
---|
1470 | SNDRV_PCM_INFO_BLOCK_TRANSFER | SNDRV_PCM_INFO_PAUSE |
|
---|
1471 | SNDRV_PCM_INFO_RESUME | SNDRV_PCM_INFO_MMAP_VALID),
|
---|
1472 | .formats = SNDRV_PCM_FMTBIT_S16_LE,
|
---|
1473 | .rates = SNDRV_PCM_RATE_44100 | SNDRV_PCM_RATE_48000,
|
---|
1474 | .rate_min = 44100,
|
---|
1475 | .rate_max = 48000,
|
---|
1476 | .channels_min = 2,
|
---|
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 |
|
---|
1487 | /*
|
---|
1488 | * check device open/close
|
---|
1489 | */
|
---|
1490 | static int open_device_check(struct cmipci *cm, int mode, struct snd_pcm_substream *subs)
|
---|
1491 | {
|
---|
1492 | int ch = mode & CM_OPEN_CH_MASK;
|
---|
1493 |
|
---|
1494 | /* FIXME: a file should wait until the device becomes free
|
---|
1495 | * when it's opened on blocking mode. however, since the current
|
---|
1496 | * pcm framework doesn't pass file pointer before actually opened,
|
---|
1497 | * we can't know whether blocking mode or not in open callback..
|
---|
1498 | */
|
---|
1499 | down(&cm->open_mutex);
|
---|
1500 | if (cm->opened[ch]) {
|
---|
1501 | up(&cm->open_mutex);
|
---|
1502 | return -EBUSY;
|
---|
1503 | }
|
---|
1504 | cm->opened[ch] = mode;
|
---|
1505 | cm->channel[ch].substream = subs;
|
---|
1506 | if (! (mode & CM_OPEN_DAC)) {
|
---|
1507 | /* disable dual DAC mode */
|
---|
1508 | cm->channel[ch].is_dac = 0;
|
---|
1509 | spin_lock_irq(&cm->reg_lock);
|
---|
1510 | snd_cmipci_clear_bit(cm, CM_REG_MISC_CTRL, CM_ENDBDAC);
|
---|
1511 | spin_unlock_irq(&cm->reg_lock);
|
---|
1512 | }
|
---|
1513 | up(&cm->open_mutex);
|
---|
1514 | return 0;
|
---|
1515 | }
|
---|
1516 |
|
---|
1517 | static void close_device_check(struct cmipci *cm, int mode)
|
---|
1518 | {
|
---|
1519 | int ch = mode & CM_OPEN_CH_MASK;
|
---|
1520 |
|
---|
1521 | down(&cm->open_mutex);
|
---|
1522 |
|
---|
1523 | if (cm->opened[ch] == mode) {
|
---|
1524 | if (cm->channel[ch].substream) {
|
---|
1525 | snd_cmipci_ch_reset(cm, ch);
|
---|
1526 | cm->channel[ch].running = 0;
|
---|
1527 | cm->channel[ch].substream = NULL;
|
---|
1528 | }
|
---|
1529 | cm->opened[ch] = 0;
|
---|
1530 | if (! cm->channel[ch].is_dac) {
|
---|
1531 | /* enable dual DAC mode again */
|
---|
1532 | cm->channel[ch].is_dac = 1;
|
---|
1533 | spin_lock_irq(&cm->reg_lock);
|
---|
1534 | snd_cmipci_set_bit(cm, CM_REG_MISC_CTRL, CM_ENDBDAC);
|
---|
1535 | spin_unlock_irq(&cm->reg_lock);
|
---|
1536 | }
|
---|
1537 | }
|
---|
1538 | up(&cm->open_mutex);
|
---|
1539 | }
|
---|
1540 |
|
---|
1541 | /*
|
---|
1542 | */
|
---|
1543 |
|
---|
1544 | static int snd_cmipci_playback_open(struct snd_pcm_substream *substream)
|
---|
1545 | {
|
---|
1546 | struct cmipci *cm = snd_pcm_substream_chip(substream);
|
---|
1547 | struct snd_pcm_runtime *runtime = substream->runtime;
|
---|
1548 | int err;
|
---|
1549 |
|
---|
1550 | if ((err = open_device_check(cm, CM_OPEN_PLAYBACK, substream)) < 0)
|
---|
1551 | return err;
|
---|
1552 | runtime->hw = snd_cmipci_playback;
|
---|
1553 | runtime->hw.channels_max = cm->max_channels;
|
---|
1554 | snd_pcm_hw_constraint_minmax(runtime, SNDRV_PCM_HW_PARAM_BUFFER_SIZE, 0, 0x10000);
|
---|
1555 | return 0;
|
---|
1556 | }
|
---|
1557 |
|
---|
1558 | static int snd_cmipci_capture_open(struct snd_pcm_substream *substream)
|
---|
1559 | {
|
---|
1560 | struct cmipci *cm = snd_pcm_substream_chip(substream);
|
---|
1561 | struct snd_pcm_runtime *runtime = substream->runtime;
|
---|
1562 | int err;
|
---|
1563 |
|
---|
1564 | if ((err = open_device_check(cm, CM_OPEN_CAPTURE, substream)) < 0)
|
---|
1565 | return err;
|
---|
1566 | runtime->hw = snd_cmipci_capture;
|
---|
1567 | if (cm->chip_version == 68) { // 8768 only supports 44k/48k recording
|
---|
1568 | runtime->hw.rate_min = 41000;
|
---|
1569 | runtime->hw.rates = SNDRV_PCM_RATE_44100 | SNDRV_PCM_RATE_48000;
|
---|
1570 | }
|
---|
1571 | snd_pcm_hw_constraint_minmax(runtime, SNDRV_PCM_HW_PARAM_BUFFER_SIZE, 0, 0x10000);
|
---|
1572 | return 0;
|
---|
1573 | }
|
---|
1574 |
|
---|
1575 | static int snd_cmipci_playback2_open(struct snd_pcm_substream *substream)
|
---|
1576 | {
|
---|
1577 | struct cmipci *cm = snd_pcm_substream_chip(substream);
|
---|
1578 | struct snd_pcm_runtime *runtime = substream->runtime;
|
---|
1579 | int err;
|
---|
1580 |
|
---|
1581 | if ((err = open_device_check(cm, CM_OPEN_PLAYBACK2, substream)) < 0) /* use channel B */
|
---|
1582 | return err;
|
---|
1583 | runtime->hw = snd_cmipci_playback2;
|
---|
1584 | down(&cm->open_mutex);
|
---|
1585 | //if (! cm->opened[CM_CH_PLAY]) {
|
---|
1586 | if (1) { /* f&%$&g uniaud16 doesnt close stream */
|
---|
1587 | if (cm->can_multi_ch) {
|
---|
1588 | runtime->hw.channels_max = cm->max_channels;
|
---|
1589 | if (cm->max_channels == 4)
|
---|
1590 | snd_pcm_hw_constraint_list(runtime, 0, SNDRV_PCM_HW_PARAM_CHANNELS, &hw_constraints_channels_4);
|
---|
1591 | else if (cm->max_channels == 6)
|
---|
1592 | snd_pcm_hw_constraint_list(runtime, 0, SNDRV_PCM_HW_PARAM_CHANNELS, &hw_constraints_channels_6);
|
---|
1593 | else if (cm->max_channels == 8)
|
---|
1594 | snd_pcm_hw_constraint_list(runtime, 0, SNDRV_PCM_HW_PARAM_CHANNELS, &hw_constraints_channels_8);
|
---|
1595 | }
|
---|
1596 | snd_pcm_hw_constraint_minmax(runtime, SNDRV_PCM_HW_PARAM_BUFFER_SIZE, 0, 0x10000);
|
---|
1597 | }
|
---|
1598 | up(&cm->open_mutex);
|
---|
1599 | // printk("opened: %i, can MC: %i, max ch: %i, hw max ch: %i\n",
|
---|
1600 | // cm->opened[CM_CH_PLAY], cm->can_multi_ch, cm->max_channels, runtime->hw.channels_max);
|
---|
1601 | return 0;
|
---|
1602 | }
|
---|
1603 |
|
---|
1604 | static int snd_cmipci_playback_spdif_open(struct snd_pcm_substream *substream)
|
---|
1605 | {
|
---|
1606 | struct cmipci *cm = snd_pcm_substream_chip(substream);
|
---|
1607 | struct snd_pcm_runtime *runtime = substream->runtime;
|
---|
1608 | int err;
|
---|
1609 |
|
---|
1610 | if ((err = open_device_check(cm, CM_OPEN_SPDIF_PLAYBACK, substream)) < 0) /* use channel A */
|
---|
1611 | return err;
|
---|
1612 | if (cm->can_ac3_hw) {
|
---|
1613 | runtime->hw = snd_cmipci_playback_spdif;
|
---|
1614 | if (cm->chip_version >= 37)
|
---|
1615 | runtime->hw.formats |= SNDRV_PCM_FMTBIT_S32_LE;
|
---|
1616 | } else {
|
---|
1617 | runtime->hw = snd_cmipci_playback_iec958_subframe;
|
---|
1618 | }
|
---|
1619 | snd_pcm_hw_constraint_minmax(runtime, SNDRV_PCM_HW_PARAM_BUFFER_SIZE, 0, 0x40000);
|
---|
1620 | cm->dig_pcm_status = cm->dig_status;
|
---|
1621 | return 0;
|
---|
1622 | }
|
---|
1623 |
|
---|
1624 | static int snd_cmipci_capture_spdif_open(struct snd_pcm_substream *substream)
|
---|
1625 | {
|
---|
1626 | struct cmipci *cm = snd_pcm_substream_chip(substream);
|
---|
1627 | struct snd_pcm_runtime *runtime = substream->runtime;
|
---|
1628 | int err;
|
---|
1629 |
|
---|
1630 | if ((err = open_device_check(cm, CM_OPEN_SPDIF_CAPTURE, substream)) < 0) /* use channel B */
|
---|
1631 | return err;
|
---|
1632 | runtime->hw = snd_cmipci_capture_spdif;
|
---|
1633 | snd_pcm_hw_constraint_minmax(runtime, SNDRV_PCM_HW_PARAM_BUFFER_SIZE, 0, 0x40000);
|
---|
1634 | return 0;
|
---|
1635 | }
|
---|
1636 |
|
---|
1637 |
|
---|
1638 | /*
|
---|
1639 | */
|
---|
1640 |
|
---|
1641 | static int snd_cmipci_playback_close(struct snd_pcm_substream *substream)
|
---|
1642 | {
|
---|
1643 | struct cmipci *cm = snd_pcm_substream_chip(substream);
|
---|
1644 | close_device_check(cm, CM_OPEN_PLAYBACK);
|
---|
1645 | return 0;
|
---|
1646 | }
|
---|
1647 |
|
---|
1648 | static int snd_cmipci_capture_close(struct snd_pcm_substream *substream)
|
---|
1649 | {
|
---|
1650 | struct cmipci *cm = snd_pcm_substream_chip(substream);
|
---|
1651 | close_device_check(cm, CM_OPEN_CAPTURE);
|
---|
1652 | return 0;
|
---|
1653 | }
|
---|
1654 |
|
---|
1655 | static int snd_cmipci_playback2_close(struct snd_pcm_substream *substream)
|
---|
1656 | {
|
---|
1657 | struct cmipci *cm = snd_pcm_substream_chip(substream);
|
---|
1658 | close_device_check(cm, CM_OPEN_PLAYBACK2);
|
---|
1659 | close_device_check(cm, CM_OPEN_PLAYBACK_MULTI);
|
---|
1660 | return 0;
|
---|
1661 | }
|
---|
1662 |
|
---|
1663 | static int snd_cmipci_playback_spdif_close(struct snd_pcm_substream *substream)
|
---|
1664 | {
|
---|
1665 | struct cmipci *cm = snd_pcm_substream_chip(substream);
|
---|
1666 | close_device_check(cm, CM_OPEN_SPDIF_PLAYBACK);
|
---|
1667 | return 0;
|
---|
1668 | }
|
---|
1669 |
|
---|
1670 | static int snd_cmipci_capture_spdif_close(struct snd_pcm_substream *substream)
|
---|
1671 | {
|
---|
1672 | struct cmipci *cm = snd_pcm_substream_chip(substream);
|
---|
1673 | close_device_check(cm, CM_OPEN_SPDIF_CAPTURE);
|
---|
1674 | return 0;
|
---|
1675 | }
|
---|
1676 |
|
---|
1677 |
|
---|
1678 | /*
|
---|
1679 | */
|
---|
1680 |
|
---|
1681 | static struct snd_pcm_ops snd_cmipci_playback_ops = {
|
---|
1682 | .open = snd_cmipci_playback_open,
|
---|
1683 | .close = snd_cmipci_playback_close,
|
---|
1684 | .ioctl = snd_pcm_lib_ioctl,
|
---|
1685 | .hw_params = snd_cmipci_hw_params,
|
---|
1686 | .hw_free = snd_cmipci_playback_hw_free,
|
---|
1687 | .prepare = snd_cmipci_playback_prepare,
|
---|
1688 | .trigger = snd_cmipci_playback_trigger,
|
---|
1689 | .pointer = snd_cmipci_playback_pointer,
|
---|
1690 | };
|
---|
1691 |
|
---|
1692 | static struct snd_pcm_ops snd_cmipci_capture_ops = {
|
---|
1693 | .open = snd_cmipci_capture_open,
|
---|
1694 | .close = snd_cmipci_capture_close,
|
---|
1695 | .ioctl = snd_pcm_lib_ioctl,
|
---|
1696 | .hw_params = snd_cmipci_hw_params,
|
---|
1697 | .hw_free = snd_cmipci_hw_free,
|
---|
1698 | .prepare = snd_cmipci_capture_prepare,
|
---|
1699 | .trigger = snd_cmipci_capture_trigger,
|
---|
1700 | .pointer = snd_cmipci_capture_pointer,
|
---|
1701 | };
|
---|
1702 |
|
---|
1703 | static struct snd_pcm_ops snd_cmipci_playback2_ops = {
|
---|
1704 | .open = snd_cmipci_playback2_open,
|
---|
1705 | .close = snd_cmipci_playback2_close,
|
---|
1706 | .ioctl = snd_pcm_lib_ioctl,
|
---|
1707 | .hw_params = snd_cmipci_playback2_hw_params,
|
---|
1708 | .hw_free = snd_cmipci_hw_free,
|
---|
1709 | .prepare = snd_cmipci_capture_prepare, /* channel B */
|
---|
1710 | .trigger = snd_cmipci_capture_trigger, /* channel B */
|
---|
1711 | .pointer = snd_cmipci_capture_pointer, /* channel B */
|
---|
1712 | };
|
---|
1713 |
|
---|
1714 | static struct snd_pcm_ops snd_cmipci_playback_spdif_ops = {
|
---|
1715 | .open = snd_cmipci_playback_spdif_open,
|
---|
1716 | .close = snd_cmipci_playback_spdif_close,
|
---|
1717 | .ioctl = snd_pcm_lib_ioctl,
|
---|
1718 | .hw_params = snd_cmipci_hw_params,
|
---|
1719 | .hw_free = snd_cmipci_playback_hw_free,
|
---|
1720 | .prepare = snd_cmipci_playback_spdif_prepare, /* set up rate */
|
---|
1721 | .trigger = snd_cmipci_playback_trigger,
|
---|
1722 | .pointer = snd_cmipci_playback_pointer,
|
---|
1723 | };
|
---|
1724 |
|
---|
1725 | static struct snd_pcm_ops snd_cmipci_capture_spdif_ops = {
|
---|
1726 | .open = snd_cmipci_capture_spdif_open,
|
---|
1727 | .close = snd_cmipci_capture_spdif_close,
|
---|
1728 | .ioctl = snd_pcm_lib_ioctl,
|
---|
1729 | .hw_params = snd_cmipci_hw_params,
|
---|
1730 | .hw_free = snd_cmipci_capture_spdif_hw_free,
|
---|
1731 | .prepare = snd_cmipci_capture_spdif_prepare,
|
---|
1732 | .trigger = snd_cmipci_capture_trigger,
|
---|
1733 | .pointer = snd_cmipci_capture_pointer,
|
---|
1734 | };
|
---|
1735 |
|
---|
1736 | /*
|
---|
1737 | */
|
---|
1738 |
|
---|
1739 | static void snd_cmipci_pcm_free(struct snd_pcm *pcm)
|
---|
1740 | {
|
---|
1741 | snd_pcm_lib_preallocate_free_for_all(pcm);
|
---|
1742 | }
|
---|
1743 |
|
---|
1744 | static int __devinit snd_cmipci_pcm_new(struct cmipci *cm, int device)
|
---|
1745 | {
|
---|
1746 | struct snd_pcm *pcm;
|
---|
1747 | int err;
|
---|
1748 |
|
---|
1749 | err = snd_pcm_new(cm->card, cm->card->driver, device, 1, 1, &pcm);
|
---|
1750 | if (err < 0)
|
---|
1751 | return err;
|
---|
1752 |
|
---|
1753 | snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &snd_cmipci_playback_ops);
|
---|
1754 | snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &snd_cmipci_capture_ops);
|
---|
1755 |
|
---|
1756 | pcm->private_data = cm;
|
---|
1757 | pcm->private_free = snd_cmipci_pcm_free;
|
---|
1758 | pcm->info_flags = 0;
|
---|
1759 | strcpy(pcm->name, "C-Media PCI DAC/ADC");
|
---|
1760 | cm->pcm = pcm;
|
---|
1761 |
|
---|
1762 | snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV,
|
---|
1763 | snd_dma_pci_data(cm->pci), 64*1024, 128*1024);
|
---|
1764 |
|
---|
1765 | return 0;
|
---|
1766 | }
|
---|
1767 |
|
---|
1768 | static int __devinit snd_cmipci_pcm2_new(struct cmipci *cm, int device)
|
---|
1769 | {
|
---|
1770 | struct snd_pcm *pcm;
|
---|
1771 | int err;
|
---|
1772 |
|
---|
1773 | err = snd_pcm_new(cm->card, cm->card->driver, device, 1, 0, &pcm);
|
---|
1774 | if (err < 0)
|
---|
1775 | return err;
|
---|
1776 | snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &snd_cmipci_playback2_ops);
|
---|
1777 | pcm->private_data = cm;
|
---|
1778 | pcm->private_free = snd_cmipci_pcm_free;
|
---|
1779 | pcm->info_flags = 0;
|
---|
1780 | strcpy(pcm->name, "C-Media PCI 2nd DAC");
|
---|
1781 | cm->pcm2 = pcm;
|
---|
1782 |
|
---|
1783 | snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV,
|
---|
1784 | snd_dma_pci_data(cm->pci), 64*1024, 128*1024);
|
---|
1785 |
|
---|
1786 | return 0;
|
---|
1787 | }
|
---|
1788 |
|
---|
1789 | static int __devinit snd_cmipci_pcm_spdif_new(struct cmipci *cm, int device)
|
---|
1790 | {
|
---|
1791 | struct snd_pcm *pcm;
|
---|
1792 | int err;
|
---|
1793 |
|
---|
1794 | err = snd_pcm_new(cm->card, cm->card->driver, device, 1, 1, &pcm);
|
---|
1795 | if (err < 0)
|
---|
1796 | return err;
|
---|
1797 |
|
---|
1798 | snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &snd_cmipci_playback_spdif_ops);
|
---|
1799 | snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &snd_cmipci_capture_spdif_ops);
|
---|
1800 |
|
---|
1801 | pcm->private_data = cm;
|
---|
1802 | pcm->private_free = snd_cmipci_pcm_free;
|
---|
1803 | pcm->info_flags = 0;
|
---|
1804 | strcpy(pcm->name, "C-Media PCI IEC958");
|
---|
1805 | cm->pcm_spdif = pcm;
|
---|
1806 |
|
---|
1807 | snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV,
|
---|
1808 | snd_dma_pci_data(cm->pci), 64*1024, 128*1024);
|
---|
1809 |
|
---|
1810 | return 0;
|
---|
1811 | }
|
---|
1812 |
|
---|
1813 | /*
|
---|
1814 | * mixer interface:
|
---|
1815 | * - CM8338/8738 has a compatible mixer interface with SB16, but
|
---|
1816 | * lack of some elements like tone control, i/o gain and AGC.
|
---|
1817 | * - Access to native registers:
|
---|
1818 | * - A 3D switch
|
---|
1819 | * - Output mute switches
|
---|
1820 | */
|
---|
1821 |
|
---|
1822 | static void snd_cmipci_mixer_write(struct cmipci *s, unsigned char idx, unsigned char data)
|
---|
1823 | {
|
---|
1824 | outb(idx, s->iobase + CM_REG_SB16_ADDR);
|
---|
1825 | outb(data, s->iobase + CM_REG_SB16_DATA);
|
---|
1826 | }
|
---|
1827 |
|
---|
1828 | static unsigned char snd_cmipci_mixer_read(struct cmipci *s, unsigned char idx)
|
---|
1829 | {
|
---|
1830 | unsigned char v;
|
---|
1831 |
|
---|
1832 | outb(idx, s->iobase + CM_REG_SB16_ADDR);
|
---|
1833 | v = inb(s->iobase + CM_REG_SB16_DATA);
|
---|
1834 | return v;
|
---|
1835 | }
|
---|
1836 |
|
---|
1837 | /*
|
---|
1838 | * general mixer element
|
---|
1839 | */
|
---|
1840 | struct cmipci_sb_reg {
|
---|
1841 | unsigned int left_reg, right_reg;
|
---|
1842 | unsigned int left_shift, right_shift;
|
---|
1843 | unsigned int mask;
|
---|
1844 | unsigned int invert: 1;
|
---|
1845 | unsigned int stereo: 1;
|
---|
1846 | };
|
---|
1847 |
|
---|
1848 | #define COMPOSE_SB_REG(lreg,rreg,lshift,rshift,mask,invert,stereo) \
|
---|
1849 | ((lreg) | ((rreg) << 8) | (lshift << 16) | (rshift << 19) | (mask << 24) | (invert << 22) | (stereo << 23))
|
---|
1850 |
|
---|
1851 | #define CMIPCI_DOUBLE(xname, left_reg, right_reg, left_shift, right_shift, mask, invert, stereo) \
|
---|
1852 | { SNDRV_CTL_ELEM_IFACE_MIXER, 0, 0, xname, 0, \
|
---|
1853 | 0, 0, snd_cmipci_info_volume, \
|
---|
1854 | snd_cmipci_get_volume, snd_cmipci_put_volume, \
|
---|
1855 | COMPOSE_SB_REG(left_reg, right_reg, left_shift, right_shift, mask, invert, stereo), \
|
---|
1856 | }
|
---|
1857 |
|
---|
1858 | #define CMIPCI_SB_VOL_STEREO(xname,reg,shift,mask) CMIPCI_DOUBLE(xname, reg, reg+1, shift, shift, mask, 0, 1)
|
---|
1859 | #define CMIPCI_SB_VOL_MONO(xname,reg,shift,mask) CMIPCI_DOUBLE(xname, reg, reg, shift, shift, mask, 0, 0)
|
---|
1860 | #define CMIPCI_SB_SW_STEREO(xname,lshift,rshift) CMIPCI_DOUBLE(xname, SB_DSP4_OUTPUT_SW, SB_DSP4_OUTPUT_SW, lshift, rshift, 1, 0, 1)
|
---|
1861 | #define CMIPCI_SB_SW_MONO(xname,shift) CMIPCI_DOUBLE(xname, SB_DSP4_OUTPUT_SW, SB_DSP4_OUTPUT_SW, shift, shift, 1, 0, 0)
|
---|
1862 |
|
---|
1863 | static void cmipci_sb_reg_decode(struct cmipci_sb_reg *r, unsigned long val)
|
---|
1864 | {
|
---|
1865 | r->left_reg = val & 0xff;
|
---|
1866 | r->right_reg = (val >> 8) & 0xff;
|
---|
1867 | r->left_shift = (val >> 16) & 0x07;
|
---|
1868 | r->right_shift = (val >> 19) & 0x07;
|
---|
1869 | r->invert = (val >> 22) & 1;
|
---|
1870 | r->stereo = (val >> 23) & 1;
|
---|
1871 | r->mask = (val >> 24) & 0xff;
|
---|
1872 | }
|
---|
1873 |
|
---|
1874 | static int snd_cmipci_info_volume(struct snd_kcontrol *kcontrol,
|
---|
1875 | struct snd_ctl_elem_info *uinfo)
|
---|
1876 | {
|
---|
1877 | struct cmipci_sb_reg reg;
|
---|
1878 |
|
---|
1879 | cmipci_sb_reg_decode(®, kcontrol->private_value);
|
---|
1880 | uinfo->type = reg.mask == 1 ? SNDRV_CTL_ELEM_TYPE_BOOLEAN : SNDRV_CTL_ELEM_TYPE_INTEGER;
|
---|
1881 | uinfo->count = reg.stereo + 1;
|
---|
1882 | uinfo->value.integer.min = 0;
|
---|
1883 | uinfo->value.integer.max = reg.mask;
|
---|
1884 | return 0;
|
---|
1885 | }
|
---|
1886 |
|
---|
1887 | static int snd_cmipci_get_volume(struct snd_kcontrol *kcontrol,
|
---|
1888 | struct snd_ctl_elem_value *ucontrol)
|
---|
1889 | {
|
---|
1890 | struct cmipci *cm = snd_kcontrol_chip(kcontrol);
|
---|
1891 | struct cmipci_sb_reg reg;
|
---|
1892 | int val;
|
---|
1893 |
|
---|
1894 | cmipci_sb_reg_decode(®, kcontrol->private_value);
|
---|
1895 | spin_lock_irq(&cm->reg_lock);
|
---|
1896 | val = (snd_cmipci_mixer_read(cm, reg.left_reg) >> reg.left_shift) & reg.mask;
|
---|
1897 | if (reg.invert)
|
---|
1898 | val = reg.mask - val;
|
---|
1899 | ucontrol->value.integer.value[0] = val;
|
---|
1900 | if (reg.stereo) {
|
---|
1901 | val = (snd_cmipci_mixer_read(cm, reg.right_reg) >> reg.right_shift) & reg.mask;
|
---|
1902 | if (reg.invert)
|
---|
1903 | val = reg.mask - val;
|
---|
1904 | ucontrol->value.integer.value[1] = val;
|
---|
1905 | }
|
---|
1906 | spin_unlock_irq(&cm->reg_lock);
|
---|
1907 | return 0;
|
---|
1908 | }
|
---|
1909 |
|
---|
1910 | static int snd_cmipci_put_volume(struct snd_kcontrol *kcontrol,
|
---|
1911 | struct snd_ctl_elem_value *ucontrol)
|
---|
1912 | {
|
---|
1913 | struct cmipci *cm = snd_kcontrol_chip(kcontrol);
|
---|
1914 | struct cmipci_sb_reg reg;
|
---|
1915 | int change;
|
---|
1916 | int left, right, oleft, oright;
|
---|
1917 |
|
---|
1918 | cmipci_sb_reg_decode(®, kcontrol->private_value);
|
---|
1919 | left = ucontrol->value.integer.value[0] & reg.mask;
|
---|
1920 | if (reg.invert)
|
---|
1921 | left = reg.mask - left;
|
---|
1922 | left <<= reg.left_shift;
|
---|
1923 | if (reg.stereo) {
|
---|
1924 | right = ucontrol->value.integer.value[1] & reg.mask;
|
---|
1925 | if (reg.invert)
|
---|
1926 | right = reg.mask - right;
|
---|
1927 | right <<= reg.right_shift;
|
---|
1928 | } else
|
---|
1929 | right = 0;
|
---|
1930 | spin_lock_irq(&cm->reg_lock);
|
---|
1931 | oleft = snd_cmipci_mixer_read(cm, reg.left_reg);
|
---|
1932 | left |= oleft & ~(reg.mask << reg.left_shift);
|
---|
1933 | change = left != oleft;
|
---|
1934 | if (reg.stereo) {
|
---|
1935 | if (reg.left_reg != reg.right_reg) {
|
---|
1936 | snd_cmipci_mixer_write(cm, reg.left_reg, left);
|
---|
1937 | oright = snd_cmipci_mixer_read(cm, reg.right_reg);
|
---|
1938 | } else
|
---|
1939 | oright = left;
|
---|
1940 | right |= oright & ~(reg.mask << reg.right_shift);
|
---|
1941 | change |= right != oright;
|
---|
1942 | snd_cmipci_mixer_write(cm, reg.right_reg, right);
|
---|
1943 | } else
|
---|
1944 | snd_cmipci_mixer_write(cm, reg.left_reg, left);
|
---|
1945 | spin_unlock_irq(&cm->reg_lock);
|
---|
1946 | return change;
|
---|
1947 | }
|
---|
1948 |
|
---|
1949 | /*
|
---|
1950 | * input route (left,right) -> (left,right)
|
---|
1951 | */
|
---|
1952 | #define CMIPCI_SB_INPUT_SW(xname, left_shift, right_shift) \
|
---|
1953 | { SNDRV_CTL_ELEM_IFACE_MIXER, 0, 0, xname, 0, \
|
---|
1954 | 0, 0, snd_cmipci_info_input_sw, \
|
---|
1955 | snd_cmipci_get_input_sw, snd_cmipci_put_input_sw, \
|
---|
1956 | COMPOSE_SB_REG(SB_DSP4_INPUT_LEFT, SB_DSP4_INPUT_RIGHT, left_shift, right_shift, 1, 0, 1), \
|
---|
1957 | }
|
---|
1958 | static int snd_cmipci_info_input_sw(struct snd_kcontrol *kcontrol,
|
---|
1959 | struct snd_ctl_elem_info *uinfo)
|
---|
1960 | {
|
---|
1961 | uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
|
---|
1962 | uinfo->count = 4;
|
---|
1963 | uinfo->value.integer.min = 0;
|
---|
1964 | uinfo->value.integer.max = 1;
|
---|
1965 | return 0;
|
---|
1966 | }
|
---|
1967 |
|
---|
1968 | static int snd_cmipci_get_input_sw(struct snd_kcontrol *kcontrol,
|
---|
1969 | struct snd_ctl_elem_value *ucontrol)
|
---|
1970 | {
|
---|
1971 | struct cmipci *cm = snd_kcontrol_chip(kcontrol);
|
---|
1972 | struct cmipci_sb_reg reg;
|
---|
1973 | int val1, val2;
|
---|
1974 |
|
---|
1975 | cmipci_sb_reg_decode(®, kcontrol->private_value);
|
---|
1976 | spin_lock_irq(&cm->reg_lock);
|
---|
1977 | val1 = snd_cmipci_mixer_read(cm, reg.left_reg);
|
---|
1978 | val2 = snd_cmipci_mixer_read(cm, reg.right_reg);
|
---|
1979 | spin_unlock_irq(&cm->reg_lock);
|
---|
1980 | ucontrol->value.integer.value[0] = (val1 >> reg.left_shift) & 1;
|
---|
1981 | ucontrol->value.integer.value[1] = (val2 >> reg.left_shift) & 1;
|
---|
1982 | ucontrol->value.integer.value[2] = (val1 >> reg.right_shift) & 1;
|
---|
1983 | ucontrol->value.integer.value[3] = (val2 >> reg.right_shift) & 1;
|
---|
1984 | return 0;
|
---|
1985 | }
|
---|
1986 |
|
---|
1987 | static int snd_cmipci_put_input_sw(struct snd_kcontrol *kcontrol,
|
---|
1988 | struct snd_ctl_elem_value *ucontrol)
|
---|
1989 | {
|
---|
1990 | struct cmipci *cm = snd_kcontrol_chip(kcontrol);
|
---|
1991 | struct cmipci_sb_reg reg;
|
---|
1992 | int change;
|
---|
1993 | int val1, val2, oval1, oval2;
|
---|
1994 |
|
---|
1995 | cmipci_sb_reg_decode(®, kcontrol->private_value);
|
---|
1996 | spin_lock_irq(&cm->reg_lock);
|
---|
1997 | oval1 = snd_cmipci_mixer_read(cm, reg.left_reg);
|
---|
1998 | oval2 = snd_cmipci_mixer_read(cm, reg.right_reg);
|
---|
1999 | val1 = oval1 & ~((1 << reg.left_shift) | (1 << reg.right_shift));
|
---|
2000 | val2 = oval2 & ~((1 << reg.left_shift) | (1 << reg.right_shift));
|
---|
2001 | val1 |= (ucontrol->value.integer.value[0] & 1) << reg.left_shift;
|
---|
2002 | val2 |= (ucontrol->value.integer.value[1] & 1) << reg.left_shift;
|
---|
2003 | val1 |= (ucontrol->value.integer.value[2] & 1) << reg.right_shift;
|
---|
2004 | val2 |= (ucontrol->value.integer.value[3] & 1) << reg.right_shift;
|
---|
2005 | change = val1 != oval1 || val2 != oval2;
|
---|
2006 | snd_cmipci_mixer_write(cm, reg.left_reg, val1);
|
---|
2007 | snd_cmipci_mixer_write(cm, reg.right_reg, val2);
|
---|
2008 | spin_unlock_irq(&cm->reg_lock);
|
---|
2009 | return change;
|
---|
2010 | }
|
---|
2011 |
|
---|
2012 | /*
|
---|
2013 | * native mixer switches/volumes
|
---|
2014 | */
|
---|
2015 |
|
---|
2016 | #define CMIPCI_MIXER_SW_STEREO(xname, reg, lshift, rshift, invert) \
|
---|
2017 | { SNDRV_CTL_ELEM_IFACE_MIXER, 0, 0, xname, 0, \
|
---|
2018 | 0, 0, snd_cmipci_info_native_mixer, \
|
---|
2019 | snd_cmipci_get_native_mixer, snd_cmipci_put_native_mixer, \
|
---|
2020 | COMPOSE_SB_REG(reg, reg, lshift, rshift, 1, invert, 1), \
|
---|
2021 | }
|
---|
2022 |
|
---|
2023 | #define CMIPCI_MIXER_SW_MONO(xname, reg, shift, invert) \
|
---|
2024 | { SNDRV_CTL_ELEM_IFACE_MIXER, 0, 0, xname, 0, \
|
---|
2025 | 0, 0, snd_cmipci_info_native_mixer, \
|
---|
2026 | snd_cmipci_get_native_mixer, snd_cmipci_put_native_mixer, \
|
---|
2027 | COMPOSE_SB_REG(reg, reg, shift, shift, 1, invert, 0), \
|
---|
2028 | }
|
---|
2029 |
|
---|
2030 | #define CMIPCI_MIXER_VOL_STEREO(xname, reg, lshift, rshift, mask) \
|
---|
2031 | { SNDRV_CTL_ELEM_IFACE_MIXER, 0, 0, xname, 0, \
|
---|
2032 | 0, 0, snd_cmipci_info_native_mixer, \
|
---|
2033 | snd_cmipci_get_native_mixer, snd_cmipci_put_native_mixer, \
|
---|
2034 | COMPOSE_SB_REG(reg, reg, lshift, rshift, mask, 0, 1), \
|
---|
2035 | }
|
---|
2036 |
|
---|
2037 | #define CMIPCI_MIXER_VOL_MONO(xname, reg, shift, mask) \
|
---|
2038 | { SNDRV_CTL_ELEM_IFACE_MIXER, 0, 0, xname, 0, \
|
---|
2039 | 0, 0, snd_cmipci_info_native_mixer, \
|
---|
2040 | snd_cmipci_get_native_mixer, snd_cmipci_put_native_mixer, \
|
---|
2041 | COMPOSE_SB_REG(reg, reg, shift, shift, mask, 0, 0), \
|
---|
2042 | }
|
---|
2043 |
|
---|
2044 | static int snd_cmipci_info_native_mixer(struct snd_kcontrol *kcontrol,
|
---|
2045 | struct snd_ctl_elem_info *uinfo)
|
---|
2046 | {
|
---|
2047 | struct cmipci_sb_reg reg;
|
---|
2048 |
|
---|
2049 | cmipci_sb_reg_decode(®, kcontrol->private_value);
|
---|
2050 | uinfo->type = reg.mask == 1 ? SNDRV_CTL_ELEM_TYPE_BOOLEAN : SNDRV_CTL_ELEM_TYPE_INTEGER;
|
---|
2051 | uinfo->count = reg.stereo + 1;
|
---|
2052 | uinfo->value.integer.min = 0;
|
---|
2053 | uinfo->value.integer.max = reg.mask;
|
---|
2054 | return 0;
|
---|
2055 |
|
---|
2056 | }
|
---|
2057 |
|
---|
2058 | static int snd_cmipci_get_native_mixer(struct snd_kcontrol *kcontrol,
|
---|
2059 | struct snd_ctl_elem_value *ucontrol)
|
---|
2060 | {
|
---|
2061 | struct cmipci *cm = snd_kcontrol_chip(kcontrol);
|
---|
2062 | struct cmipci_sb_reg reg;
|
---|
2063 | unsigned char oreg, val;
|
---|
2064 |
|
---|
2065 | cmipci_sb_reg_decode(®, kcontrol->private_value);
|
---|
2066 | spin_lock_irq(&cm->reg_lock);
|
---|
2067 | oreg = inb(cm->iobase + reg.left_reg);
|
---|
2068 | val = (oreg >> reg.left_shift) & reg.mask;
|
---|
2069 | if (reg.invert)
|
---|
2070 | val = reg.mask - val;
|
---|
2071 | ucontrol->value.integer.value[0] = val;
|
---|
2072 | if (reg.stereo) {
|
---|
2073 | val = (oreg >> reg.right_shift) & reg.mask;
|
---|
2074 | if (reg.invert)
|
---|
2075 | val = reg.mask - val;
|
---|
2076 | ucontrol->value.integer.value[1] = val;
|
---|
2077 | }
|
---|
2078 | spin_unlock_irq(&cm->reg_lock);
|
---|
2079 | return 0;
|
---|
2080 | }
|
---|
2081 |
|
---|
2082 | static int snd_cmipci_put_native_mixer(struct snd_kcontrol *kcontrol,
|
---|
2083 | struct snd_ctl_elem_value *ucontrol)
|
---|
2084 | {
|
---|
2085 | struct cmipci *cm = snd_kcontrol_chip(kcontrol);
|
---|
2086 | struct cmipci_sb_reg reg;
|
---|
2087 | unsigned char oreg, nreg, val;
|
---|
2088 |
|
---|
2089 | cmipci_sb_reg_decode(®, kcontrol->private_value);
|
---|
2090 | spin_lock_irq(&cm->reg_lock);
|
---|
2091 | oreg = inb(cm->iobase + reg.left_reg);
|
---|
2092 | val = ucontrol->value.integer.value[0] & reg.mask;
|
---|
2093 | if (reg.invert)
|
---|
2094 | val = reg.mask - val;
|
---|
2095 | nreg = oreg & ~(reg.mask << reg.left_shift);
|
---|
2096 | nreg |= (val << reg.left_shift);
|
---|
2097 | if (reg.stereo) {
|
---|
2098 | val = ucontrol->value.integer.value[1] & reg.mask;
|
---|
2099 | if (reg.invert)
|
---|
2100 | val = reg.mask - val;
|
---|
2101 | nreg &= ~(reg.mask << reg.right_shift);
|
---|
2102 | nreg |= (val << reg.right_shift);
|
---|
2103 | }
|
---|
2104 | outb(nreg, cm->iobase + reg.left_reg);
|
---|
2105 | spin_unlock_irq(&cm->reg_lock);
|
---|
2106 | return (nreg != oreg);
|
---|
2107 | }
|
---|
2108 |
|
---|
2109 | /*
|
---|
2110 | * special case - check mixer sensitivity
|
---|
2111 | */
|
---|
2112 | static int snd_cmipci_get_native_mixer_sensitive(struct snd_kcontrol *kcontrol,
|
---|
2113 | struct snd_ctl_elem_value *ucontrol)
|
---|
2114 | {
|
---|
2115 | //struct cmipci *cm = snd_kcontrol_chip(kcontrol);
|
---|
2116 | return snd_cmipci_get_native_mixer(kcontrol, ucontrol);
|
---|
2117 | }
|
---|
2118 |
|
---|
2119 | static int snd_cmipci_put_native_mixer_sensitive(struct snd_kcontrol *kcontrol,
|
---|
2120 | struct snd_ctl_elem_value *ucontrol)
|
---|
2121 | {
|
---|
2122 | struct cmipci *cm = snd_kcontrol_chip(kcontrol);
|
---|
2123 | if (cm->mixer_insensitive) {
|
---|
2124 | /* ignored */
|
---|
2125 | return 0;
|
---|
2126 | }
|
---|
2127 | return snd_cmipci_put_native_mixer(kcontrol, ucontrol);
|
---|
2128 | }
|
---|
2129 |
|
---|
2130 | static struct snd_kcontrol_new snd_cmipci_mixers[] __devinitdata = {
|
---|
2131 | CMIPCI_SB_VOL_STEREO("Master Playback Volume", SB_DSP4_MASTER_DEV, 3, 31),
|
---|
2132 | CMIPCI_MIXER_SW_MONO("3D Control - Switch", CM_REG_MIXER1, CM_X3DEN_SHIFT, 0),
|
---|
2133 | CMIPCI_SB_VOL_STEREO("PCM Playback Volume", SB_DSP4_PCM_DEV, 3, 31),
|
---|
2134 | //CMIPCI_MIXER_SW_MONO("PCM Playback Switch", CM_REG_MIXER1, CM_WSMUTE_SHIFT, 1),
|
---|
2135 | { /* switch with sensitivity */
|
---|
2136 | SNDRV_CTL_ELEM_IFACE_MIXER,0,0,
|
---|
2137 | "PCM Playback Switch",0,0,0,
|
---|
2138 | snd_cmipci_info_native_mixer,
|
---|
2139 | snd_cmipci_get_native_mixer_sensitive,
|
---|
2140 | snd_cmipci_put_native_mixer_sensitive,
|
---|
2141 | COMPOSE_SB_REG(CM_REG_MIXER1, CM_REG_MIXER1, CM_WSMUTE_SHIFT, CM_WSMUTE_SHIFT, 1, 1, 0),
|
---|
2142 | },
|
---|
2143 | CMIPCI_MIXER_SW_STEREO("PCM Capture Switch", CM_REG_MIXER1, CM_WAVEINL_SHIFT, CM_WAVEINR_SHIFT, 0),
|
---|
2144 | CMIPCI_SB_VOL_STEREO("Synth Playback Volume", SB_DSP4_SYNTH_DEV, 3, 31),
|
---|
2145 | CMIPCI_MIXER_SW_MONO("Synth Playback Switch", CM_REG_MIXER1, CM_FMMUTE_SHIFT, 1),
|
---|
2146 | CMIPCI_SB_INPUT_SW("Synth Capture Route", 6, 5),
|
---|
2147 | CMIPCI_SB_VOL_STEREO("CD Playback Volume", SB_DSP4_CD_DEV, 3, 31),
|
---|
2148 | CMIPCI_SB_SW_STEREO("CD Playback Switch", 2, 1),
|
---|
2149 | CMIPCI_SB_INPUT_SW("CD Capture Route", 2, 1),
|
---|
2150 | CMIPCI_SB_VOL_STEREO("Line Playback Volume", SB_DSP4_LINE_DEV, 3, 31),
|
---|
2151 | CMIPCI_SB_SW_STEREO("Line Playback Switch", 4, 3),
|
---|
2152 | CMIPCI_SB_INPUT_SW("Line Capture Route", 4, 3),
|
---|
2153 | CMIPCI_SB_VOL_MONO("Mic Playback Volume", SB_DSP4_MIC_DEV, 3, 31),
|
---|
2154 | CMIPCI_SB_SW_MONO("Mic Playback Switch", 0),
|
---|
2155 | CMIPCI_DOUBLE("Mic Capture Switch", SB_DSP4_INPUT_LEFT, SB_DSP4_INPUT_RIGHT, 0, 0, 1, 0, 0),
|
---|
2156 | CMIPCI_SB_VOL_MONO("PC Speaker Playback Volume", SB_DSP4_SPEAKER_DEV, 6, 3),
|
---|
2157 | CMIPCI_MIXER_VOL_STEREO("Aux Playback Volume", CM_REG_AUX_VOL, 4, 0, 15),
|
---|
2158 | CMIPCI_MIXER_SW_STEREO("Aux Playback Switch", CM_REG_MIXER2, CM_VAUXLM_SHIFT, CM_VAUXRM_SHIFT, 0),
|
---|
2159 | CMIPCI_MIXER_SW_STEREO("Aux Capture Switch", CM_REG_MIXER2, CM_RAUXLEN_SHIFT, CM_RAUXREN_SHIFT, 0),
|
---|
2160 | CMIPCI_MIXER_SW_MONO("Mic Boost Playback Switch", CM_REG_MIXER2, CM_MICGAINZ_SHIFT, 1),
|
---|
2161 | CMIPCI_MIXER_VOL_MONO("Mic Capture Volume", CM_REG_MIXER2, CM_VADMIC_SHIFT, 7),
|
---|
2162 | CMIPCI_SB_VOL_MONO("Phone Playback Volume", CM_REG_EXTENT_IND, 5, 7),
|
---|
2163 | CMIPCI_DOUBLE("Phone Playback Switch", CM_REG_EXTENT_IND, CM_REG_EXTENT_IND, 4, 4, 1, 0, 0),
|
---|
2164 | CMIPCI_DOUBLE("PC Speaker Playnack Switch", CM_REG_EXTENT_IND, CM_REG_EXTENT_IND, 3, 3, 1, 0, 0),
|
---|
2165 | CMIPCI_DOUBLE("Mic Boost Capture Switch", CM_REG_EXTENT_IND, CM_REG_EXTENT_IND, 0, 0, 1, 0, 0),
|
---|
2166 | };
|
---|
2167 |
|
---|
2168 | /*
|
---|
2169 | * other switches
|
---|
2170 | */
|
---|
2171 |
|
---|
2172 | struct cmipci_switch_args {
|
---|
2173 | int reg; /* register index */
|
---|
2174 | unsigned int mask; /* mask bits */
|
---|
2175 | unsigned int mask_on; /* mask bits to turn on */
|
---|
2176 | int is_byte: 1; /* byte access? */
|
---|
2177 | unsigned int ac3_sensitive: 1; /* access forbidden during
|
---|
2178 | * non-audio operation?
|
---|
2179 | */
|
---|
2180 | };
|
---|
2181 |
|
---|
2182 | static int snd_cmipci_uswitch_info(struct snd_kcontrol *kcontrol,
|
---|
2183 | struct snd_ctl_elem_info *uinfo)
|
---|
2184 | {
|
---|
2185 | uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
|
---|
2186 | uinfo->count = 1;
|
---|
2187 | uinfo->value.integer.min = 0;
|
---|
2188 | uinfo->value.integer.max = 1;
|
---|
2189 | return 0;
|
---|
2190 | }
|
---|
2191 |
|
---|
2192 | static int _snd_cmipci_uswitch_get(struct snd_kcontrol *kcontrol,
|
---|
2193 | struct snd_ctl_elem_value *ucontrol,
|
---|
2194 | struct cmipci_switch_args *args)
|
---|
2195 | {
|
---|
2196 | unsigned int val;
|
---|
2197 | struct cmipci *cm = snd_kcontrol_chip(kcontrol);
|
---|
2198 |
|
---|
2199 | spin_lock_irq(&cm->reg_lock);
|
---|
2200 | if (args->ac3_sensitive && cm->mixer_insensitive) {
|
---|
2201 | ucontrol->value.integer.value[0] = 0;
|
---|
2202 | spin_unlock_irq(&cm->reg_lock);
|
---|
2203 | return 0;
|
---|
2204 | }
|
---|
2205 | if (args->is_byte)
|
---|
2206 | val = inb(cm->iobase + args->reg);
|
---|
2207 | else
|
---|
2208 | val = snd_cmipci_read(cm, args->reg);
|
---|
2209 | ucontrol->value.integer.value[0] = ((val & args->mask) == args->mask_on) ? 1 : 0;
|
---|
2210 | spin_unlock_irq(&cm->reg_lock);
|
---|
2211 | return 0;
|
---|
2212 | }
|
---|
2213 |
|
---|
2214 | static int snd_cmipci_uswitch_get(struct snd_kcontrol *kcontrol,
|
---|
2215 | struct snd_ctl_elem_value *ucontrol)
|
---|
2216 | {
|
---|
2217 | struct cmipci_switch_args *args;
|
---|
2218 | args = (struct cmipci_switch_args *)kcontrol->private_value;
|
---|
2219 | snd_assert(args != NULL, return -EINVAL);
|
---|
2220 | return _snd_cmipci_uswitch_get(kcontrol, ucontrol, args);
|
---|
2221 | }
|
---|
2222 |
|
---|
2223 | static int _snd_cmipci_uswitch_put(struct snd_kcontrol *kcontrol,
|
---|
2224 | struct snd_ctl_elem_value *ucontrol,
|
---|
2225 | struct cmipci_switch_args *args)
|
---|
2226 | {
|
---|
2227 | unsigned int val;
|
---|
2228 | int change;
|
---|
2229 | struct cmipci *cm = snd_kcontrol_chip(kcontrol);
|
---|
2230 |
|
---|
2231 | spin_lock_irq(&cm->reg_lock);
|
---|
2232 | if (args->ac3_sensitive && cm->mixer_insensitive) {
|
---|
2233 | /* ignored */
|
---|
2234 | spin_unlock_irq(&cm->reg_lock);
|
---|
2235 | return 0;
|
---|
2236 | }
|
---|
2237 | if (args->is_byte)
|
---|
2238 | val = inb(cm->iobase + args->reg);
|
---|
2239 | else
|
---|
2240 | val = snd_cmipci_read(cm, args->reg);
|
---|
2241 | change = (val & args->mask) != (ucontrol->value.integer.value[0] ? args->mask : 0);
|
---|
2242 | if (change) {
|
---|
2243 | val &= ~args->mask;
|
---|
2244 | if (ucontrol->value.integer.value[0])
|
---|
2245 | val |= args->mask_on;
|
---|
2246 | else
|
---|
2247 | val |= (args->mask & ~args->mask_on);
|
---|
2248 | if (args->is_byte)
|
---|
2249 | outb((unsigned char)val, cm->iobase + args->reg);
|
---|
2250 | else
|
---|
2251 | snd_cmipci_write(cm, args->reg, val);
|
---|
2252 | }
|
---|
2253 | spin_unlock_irq(&cm->reg_lock);
|
---|
2254 | return change;
|
---|
2255 | }
|
---|
2256 |
|
---|
2257 | static int snd_cmipci_uswitch_put(struct snd_kcontrol *kcontrol,
|
---|
2258 | struct snd_ctl_elem_value *ucontrol)
|
---|
2259 | {
|
---|
2260 | struct cmipci_switch_args *args;
|
---|
2261 | args = (struct cmipci_switch_args *)kcontrol->private_value;
|
---|
2262 | snd_assert(args != NULL, return -EINVAL);
|
---|
2263 | return _snd_cmipci_uswitch_put(kcontrol, ucontrol, args);
|
---|
2264 | }
|
---|
2265 |
|
---|
2266 | #define DEFINE_SWITCH_ARG(sname, xreg, xmask, xmask_on, xis_byte, xac3) \
|
---|
2267 | static struct cmipci_switch_args cmipci_switch_arg_##sname = { \
|
---|
2268 | xreg, \
|
---|
2269 | xmask, \
|
---|
2270 | xmask_on, \
|
---|
2271 | xis_byte, \
|
---|
2272 | xac3, \
|
---|
2273 | }
|
---|
2274 |
|
---|
2275 | #define DEFINE_BIT_SWITCH_ARG(sname, xreg, xmask, xis_byte, xac3) \
|
---|
2276 | DEFINE_SWITCH_ARG(sname, xreg, xmask, xmask, xis_byte, xac3)
|
---|
2277 |
|
---|
2278 | #if 0 /* these will be controlled in pcm device */
|
---|
2279 | DEFINE_BIT_SWITCH_ARG(spdif_in, CM_REG_FUNCTRL1, CM_SPDF_1, 0, 0);
|
---|
2280 | DEFINE_BIT_SWITCH_ARG(spdif_out, CM_REG_FUNCTRL1, CM_SPDF_0, 0, 0);
|
---|
2281 | #endif
|
---|
2282 | DEFINE_BIT_SWITCH_ARG(spdif_in_sel1, CM_REG_CHFORMAT, CM_SPDIF_SELECT1, 0, 0);
|
---|
2283 | DEFINE_BIT_SWITCH_ARG(spdif_in_sel2, CM_REG_MISC_CTRL, CM_SPDIF_SELECT2, 0, 0);
|
---|
2284 | DEFINE_BIT_SWITCH_ARG(spdif_enable, CM_REG_LEGACY_CTRL, CM_ENSPDOUT, 0, 0);
|
---|
2285 | DEFINE_BIT_SWITCH_ARG(spdo2dac, CM_REG_FUNCTRL1, CM_SPDO2DAC, 0, 1);
|
---|
2286 | DEFINE_BIT_SWITCH_ARG(spdi_valid, CM_REG_MISC, CM_SPDVALID, 1, 0);
|
---|
2287 | DEFINE_BIT_SWITCH_ARG(spdif_copyright, CM_REG_LEGACY_CTRL, CM_SPDCOPYRHT, 0, 0);
|
---|
2288 | DEFINE_BIT_SWITCH_ARG(spdif_dac_out, CM_REG_LEGACY_CTRL, CM_DAC2SPDO, 0, 1);
|
---|
2289 | DEFINE_SWITCH_ARG(spdo_5v, CM_REG_MISC_CTRL, CM_SPDO5V, 0, 0, 0); /* inverse: 0 = 5V */
|
---|
2290 | // DEFINE_BIT_SWITCH_ARG(spdo_48k, CM_REG_MISC_CTRL, CM_SPDF_AC97|CM_SPDIF48K, 0, 1);
|
---|
2291 | DEFINE_BIT_SWITCH_ARG(spdif_loop, CM_REG_FUNCTRL1, CM_SPDFLOOP, 0, 1);
|
---|
2292 | DEFINE_BIT_SWITCH_ARG(spdi_monitor, CM_REG_MIXER1, CM_CDPLAY, 1, 0);
|
---|
2293 | /* DEFINE_BIT_SWITCH_ARG(spdi_phase, CM_REG_CHFORMAT, CM_SPDIF_INVERSE, 0, 0); */
|
---|
2294 | DEFINE_BIT_SWITCH_ARG(spdi_phase, CM_REG_MISC, CM_SPDIF_INVERSE, 1, 0);
|
---|
2295 | DEFINE_BIT_SWITCH_ARG(spdi_phase2, CM_REG_CHFORMAT, CM_SPDIF_INVERSE2, 0, 0);
|
---|
2296 | #if CM_CH_PLAY == 1
|
---|
2297 | DEFINE_SWITCH_ARG(exchange_dac, CM_REG_MISC_CTRL, CM_XCHGDAC, 0, 0, 0); /* reversed */
|
---|
2298 | #else
|
---|
2299 | DEFINE_SWITCH_ARG(exchange_dac, CM_REG_MISC_CTRL, CM_XCHGDAC, CM_XCHGDAC, 0, 0);
|
---|
2300 | #endif
|
---|
2301 | DEFINE_BIT_SWITCH_ARG(fourch, CM_REG_MISC_CTRL, CM_N4SPK3D, 0, 0);
|
---|
2302 | DEFINE_BIT_SWITCH_ARG(line_rear, CM_REG_MIXER1, CM_SPK4, 1, 0);
|
---|
2303 | DEFINE_BIT_SWITCH_ARG(line_bass, CM_REG_LEGACY_CTRL, CM_LINE_AS_BASS, 0, 0);
|
---|
2304 | DEFINE_BIT_SWITCH_ARG(joystick, CM_REG_FUNCTRL1, CM_JYSTK_EN, 0, 0);
|
---|
2305 | DEFINE_SWITCH_ARG(modem, CM_REG_MISC_CTRL, CM_FLINKON|CM_FLINKOFF, CM_FLINKON, 0, 0);
|
---|
2306 |
|
---|
2307 | //Can't compile in non-KEE mode without extra pointer in structure
|
---|
2308 | //(watcom complains it can't convert a far ptr to ulong even though it's
|
---|
2309 | // safe to do so in this case)
|
---|
2310 | #define DEFINE_SWITCH(sname, stype, sarg) \
|
---|
2311 | { stype, 0, 0, \
|
---|
2312 | sname, 0, 0, 0, \
|
---|
2313 | snd_cmipci_uswitch_info, \
|
---|
2314 | snd_cmipci_uswitch_get, \
|
---|
2315 | snd_cmipci_uswitch_put, \
|
---|
2316 | (unsigned long)&cmipci_switch_arg_##sarg,\
|
---|
2317 | }
|
---|
2318 |
|
---|
2319 | #define DEFINE_CARD_SWITCH(sname, sarg) DEFINE_SWITCH(sname, SNDRV_CTL_ELEM_IFACE_CARD, sarg)
|
---|
2320 | #define DEFINE_MIXER_SWITCH(sname, sarg) DEFINE_SWITCH(sname, SNDRV_CTL_ELEM_IFACE_MIXER, sarg)
|
---|
2321 |
|
---|
2322 |
|
---|
2323 | /*
|
---|
2324 | * callbacks for spdif output switch
|
---|
2325 | * needs toggle two registers..
|
---|
2326 | */
|
---|
2327 | static int snd_cmipci_spdout_enable_get(struct snd_kcontrol *kcontrol,
|
---|
2328 | struct snd_ctl_elem_value *ucontrol)
|
---|
2329 | {
|
---|
2330 | int changed;
|
---|
2331 | changed = _snd_cmipci_uswitch_get(kcontrol, ucontrol, &cmipci_switch_arg_spdif_enable);
|
---|
2332 | changed |= _snd_cmipci_uswitch_get(kcontrol, ucontrol, &cmipci_switch_arg_spdo2dac);
|
---|
2333 | return changed;
|
---|
2334 | }
|
---|
2335 |
|
---|
2336 | static int snd_cmipci_spdout_enable_put(struct snd_kcontrol *kcontrol,
|
---|
2337 | struct snd_ctl_elem_value *ucontrol)
|
---|
2338 | {
|
---|
2339 | struct cmipci *chip = snd_kcontrol_chip(kcontrol);
|
---|
2340 | int changed;
|
---|
2341 | changed = _snd_cmipci_uswitch_put(kcontrol, ucontrol, &cmipci_switch_arg_spdif_enable);
|
---|
2342 | changed |= _snd_cmipci_uswitch_put(kcontrol, ucontrol, &cmipci_switch_arg_spdo2dac);
|
---|
2343 | if (changed) {
|
---|
2344 | if (ucontrol->value.integer.value[0]) {
|
---|
2345 | if (chip->spdif_playback_avail)
|
---|
2346 | snd_cmipci_set_bit(chip, CM_REG_FUNCTRL1, CM_PLAYBACK_SPDF);
|
---|
2347 | } else {
|
---|
2348 | if (chip->spdif_playback_avail)
|
---|
2349 | snd_cmipci_clear_bit(chip, CM_REG_FUNCTRL1, CM_PLAYBACK_SPDF);
|
---|
2350 | }
|
---|
2351 | }
|
---|
2352 | chip->spdif_playback_enabled = ucontrol->value.integer.value[0];
|
---|
2353 | return changed;
|
---|
2354 | }
|
---|
2355 |
|
---|
2356 | static int snd_cmipci_line_in_mode_info(struct snd_kcontrol *kcontrol,
|
---|
2357 | struct snd_ctl_elem_info *uinfo)
|
---|
2358 | {
|
---|
2359 | struct cmipci *cm = snd_kcontrol_chip(kcontrol);
|
---|
2360 | static char *texts[3] = { "Line-In", "Rear Output", "Bass Output" };
|
---|
2361 | uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
|
---|
2362 | uinfo->count = 1;
|
---|
2363 | uinfo->value.enumerated.items = cm->chip_version >= 39 ? 3 : 2;
|
---|
2364 | if (uinfo->value.enumerated.item >= uinfo->value.enumerated.items)
|
---|
2365 | uinfo->value.enumerated.item = uinfo->value.enumerated.items - 1;
|
---|
2366 | strcpy(uinfo->value.enumerated.name, texts[uinfo->value.enumerated.item]);
|
---|
2367 | return 0;
|
---|
2368 | }
|
---|
2369 |
|
---|
2370 | static inline unsigned int get_line_in_mode(struct cmipci *cm)
|
---|
2371 | {
|
---|
2372 | unsigned int val;
|
---|
2373 | if (cm->chip_version >= 39) {
|
---|
2374 | val = snd_cmipci_read(cm, CM_REG_LEGACY_CTRL);
|
---|
2375 | if (val & CM_LINE_AS_BASS)
|
---|
2376 | return 2;
|
---|
2377 | }
|
---|
2378 | val = snd_cmipci_read_b(cm, CM_REG_MIXER1);
|
---|
2379 | if (val & CM_SPK4)
|
---|
2380 | return 1;
|
---|
2381 | return 0;
|
---|
2382 | }
|
---|
2383 |
|
---|
2384 | static int snd_cmipci_line_in_mode_get(struct snd_kcontrol *kcontrol,
|
---|
2385 | struct snd_ctl_elem_value *ucontrol)
|
---|
2386 | {
|
---|
2387 | struct cmipci *cm = snd_kcontrol_chip(kcontrol);
|
---|
2388 |
|
---|
2389 | spin_lock_irq(&cm->reg_lock);
|
---|
2390 | ucontrol->value.enumerated.item[0] = get_line_in_mode(cm);
|
---|
2391 | spin_unlock_irq(&cm->reg_lock);
|
---|
2392 | return 0;
|
---|
2393 | }
|
---|
2394 |
|
---|
2395 | static int snd_cmipci_line_in_mode_put(struct snd_kcontrol *kcontrol,
|
---|
2396 | struct snd_ctl_elem_value *ucontrol)
|
---|
2397 | {
|
---|
2398 | struct cmipci *cm = snd_kcontrol_chip(kcontrol);
|
---|
2399 | int change;
|
---|
2400 |
|
---|
2401 | spin_lock_irq(&cm->reg_lock);
|
---|
2402 | if (ucontrol->value.enumerated.item[0] == 2)
|
---|
2403 | change = snd_cmipci_set_bit(cm, CM_REG_LEGACY_CTRL, CM_LINE_AS_BASS);
|
---|
2404 | else
|
---|
2405 | change = snd_cmipci_clear_bit(cm, CM_REG_LEGACY_CTRL, CM_LINE_AS_BASS);
|
---|
2406 | if (ucontrol->value.enumerated.item[0] == 1)
|
---|
2407 | change |= snd_cmipci_set_bit_b(cm, CM_REG_MIXER1, CM_SPK4);
|
---|
2408 | else
|
---|
2409 | change |= snd_cmipci_clear_bit_b(cm, CM_REG_MIXER1, CM_SPK4);
|
---|
2410 | spin_unlock_irq(&cm->reg_lock);
|
---|
2411 | return change;
|
---|
2412 | }
|
---|
2413 |
|
---|
2414 | static int snd_cmipci_mic_in_mode_info(struct snd_kcontrol *kcontrol,
|
---|
2415 | struct snd_ctl_elem_info *uinfo)
|
---|
2416 | {
|
---|
2417 | static char *texts[2] = { "Mic-In", "Center/LFE Output" };
|
---|
2418 | uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
|
---|
2419 | uinfo->count = 1;
|
---|
2420 | uinfo->value.enumerated.items = 2;
|
---|
2421 | if (uinfo->value.enumerated.item >= uinfo->value.enumerated.items)
|
---|
2422 | uinfo->value.enumerated.item = uinfo->value.enumerated.items - 1;
|
---|
2423 | strcpy(uinfo->value.enumerated.name, texts[uinfo->value.enumerated.item]);
|
---|
2424 | return 0;
|
---|
2425 | }
|
---|
2426 |
|
---|
2427 | static int snd_cmipci_mic_in_mode_get(struct snd_kcontrol *kcontrol,
|
---|
2428 | struct snd_ctl_elem_value *ucontrol)
|
---|
2429 | {
|
---|
2430 | struct cmipci *cm = snd_kcontrol_chip(kcontrol);
|
---|
2431 | /* same bit as spdi_phase */
|
---|
2432 | spin_lock_irq(&cm->reg_lock);
|
---|
2433 | ucontrol->value.enumerated.item[0] =
|
---|
2434 | (snd_cmipci_read_b(cm, CM_REG_MISC) & CM_SPDIF_INVERSE) ? 1 : 0;
|
---|
2435 | spin_unlock_irq(&cm->reg_lock);
|
---|
2436 | return 0;
|
---|
2437 | }
|
---|
2438 |
|
---|
2439 | static int snd_cmipci_mic_in_mode_put(struct snd_kcontrol *kcontrol,
|
---|
2440 | struct snd_ctl_elem_value *ucontrol)
|
---|
2441 | {
|
---|
2442 | struct cmipci *cm = snd_kcontrol_chip(kcontrol);
|
---|
2443 | int change;
|
---|
2444 |
|
---|
2445 | spin_lock_irq(&cm->reg_lock);
|
---|
2446 | if (ucontrol->value.enumerated.item[0])
|
---|
2447 | change = snd_cmipci_set_bit_b(cm, CM_REG_MISC, CM_SPDIF_INVERSE);
|
---|
2448 | else
|
---|
2449 | change = snd_cmipci_clear_bit_b(cm, CM_REG_MISC, CM_SPDIF_INVERSE);
|
---|
2450 | spin_unlock_irq(&cm->reg_lock);
|
---|
2451 | return change;
|
---|
2452 | }
|
---|
2453 |
|
---|
2454 | /* both for CM8338/8738 */
|
---|
2455 | static struct snd_kcontrol_new snd_cmipci_mixer_switches[] __devinitdata = {
|
---|
2456 | DEFINE_MIXER_SWITCH("Four Channel Mode", fourch),
|
---|
2457 | {
|
---|
2458 | .name = "Line-In Mode",
|
---|
2459 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
|
---|
2460 | .info = snd_cmipci_line_in_mode_info,
|
---|
2461 | .get = snd_cmipci_line_in_mode_get,
|
---|
2462 | .put = snd_cmipci_line_in_mode_put,
|
---|
2463 | },
|
---|
2464 | };
|
---|
2465 |
|
---|
2466 | /* for non-multichannel chips */
|
---|
2467 | static struct snd_kcontrol_new snd_cmipci_nomulti_switch __devinitdata =
|
---|
2468 | DEFINE_MIXER_SWITCH("Exchange DAC", exchange_dac);
|
---|
2469 |
|
---|
2470 | /* only for CM8738 */
|
---|
2471 | static struct snd_kcontrol_new snd_cmipci_8738_mixer_switches[] __devinitdata = {
|
---|
2472 | #if 0 /* controlled in pcm device */
|
---|
2473 | DEFINE_MIXER_SWITCH("IEC958 In Record", spdif_in),
|
---|
2474 | DEFINE_MIXER_SWITCH("IEC958 Out", spdif_out),
|
---|
2475 | DEFINE_MIXER_SWITCH("IEC958 Out To DAC", spdo2dac),
|
---|
2476 | #endif
|
---|
2477 | // DEFINE_MIXER_SWITCH("IEC958 Output Switch", spdif_enable),
|
---|
2478 | {
|
---|
2479 | SNDRV_CTL_ELEM_IFACE_MIXER,0,0,
|
---|
2480 | "IEC958 Output Switch",0,0, 0,
|
---|
2481 | snd_cmipci_uswitch_info,
|
---|
2482 | snd_cmipci_spdout_enable_get,
|
---|
2483 | snd_cmipci_spdout_enable_put,0
|
---|
2484 | },
|
---|
2485 | DEFINE_MIXER_SWITCH("IEC958 In Valid", spdi_valid),
|
---|
2486 | DEFINE_MIXER_SWITCH("IEC958 Copyright", spdif_copyright),
|
---|
2487 | DEFINE_MIXER_SWITCH("IEC958 5V", spdo_5v),
|
---|
2488 | // DEFINE_MIXER_SWITCH("IEC958 In/Out 48KHz", spdo_48k),
|
---|
2489 | DEFINE_MIXER_SWITCH("IEC958 Loop", spdif_loop),
|
---|
2490 | DEFINE_MIXER_SWITCH("IEC958 In Monitor", spdi_monitor),
|
---|
2491 | };
|
---|
2492 |
|
---|
2493 | /* only for model 033/037 */
|
---|
2494 | static struct snd_kcontrol_new snd_cmipci_old_mixer_switches[] __devinitdata = {
|
---|
2495 | DEFINE_MIXER_SWITCH("IEC958 Mix Analog", spdif_dac_out),
|
---|
2496 | DEFINE_MIXER_SWITCH("IEC958 In Phase Inverse", spdi_phase),
|
---|
2497 | DEFINE_MIXER_SWITCH("IEC958 In Select", spdif_in_sel1),
|
---|
2498 | };
|
---|
2499 |
|
---|
2500 | /* only for model 039 or later */
|
---|
2501 | static struct snd_kcontrol_new snd_cmipci_extra_mixer_switches[] __devinitdata = {
|
---|
2502 | DEFINE_MIXER_SWITCH("IEC958 In Select", spdif_in_sel2),
|
---|
2503 | DEFINE_MIXER_SWITCH("IEC958 In Phase Inverse", spdi_phase2),
|
---|
2504 | {
|
---|
2505 | .name = "Mic-In Mode",
|
---|
2506 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
|
---|
2507 | .info = snd_cmipci_mic_in_mode_info,
|
---|
2508 | .get = snd_cmipci_mic_in_mode_get,
|
---|
2509 | .put = snd_cmipci_mic_in_mode_put,
|
---|
2510 | }
|
---|
2511 | };
|
---|
2512 |
|
---|
2513 | /* card control switches */
|
---|
2514 | static struct snd_kcontrol_new snd_cmipci_control_switches[] __devinitdata = {
|
---|
2515 | DEFINE_CARD_SWITCH("Joystick", joystick),
|
---|
2516 | DEFINE_CARD_SWITCH("Modem", modem),
|
---|
2517 | };
|
---|
2518 |
|
---|
2519 | static int __devinit snd_cmipci_mixer_new(struct cmipci *cm, int pcm_spdif_device)
|
---|
2520 | {
|
---|
2521 | struct snd_card *card;
|
---|
2522 | struct snd_kcontrol_new *sw;
|
---|
2523 | struct snd_kcontrol *kctl;
|
---|
2524 | unsigned int idx;
|
---|
2525 | int err;
|
---|
2526 |
|
---|
2527 | snd_assert(cm != NULL && cm->card != NULL, return -EINVAL);
|
---|
2528 |
|
---|
2529 | card = cm->card;
|
---|
2530 |
|
---|
2531 | strcpy(card->mixername, "CMedia PCI");
|
---|
2532 |
|
---|
2533 | spin_lock_irq(&cm->reg_lock);
|
---|
2534 | snd_cmipci_mixer_write(cm, 0x00, 0x00); /* mixer reset */
|
---|
2535 | spin_unlock_irq(&cm->reg_lock);
|
---|
2536 |
|
---|
2537 | for (idx = 0; idx < ARRAY_SIZE(snd_cmipci_mixers); idx++) {
|
---|
2538 | if (cm->chip_version == 68) { // 8768 has no PCM volume
|
---|
2539 | if (!strcmp(snd_cmipci_mixers[idx].name,
|
---|
2540 | "PCM Playback Volume"))
|
---|
2541 | continue;
|
---|
2542 | }
|
---|
2543 | if ((err = snd_ctl_add(card, snd_ctl_new1(&snd_cmipci_mixers[idx], cm))) < 0)
|
---|
2544 | return err;
|
---|
2545 | }
|
---|
2546 |
|
---|
2547 | /* mixer switches */
|
---|
2548 | sw = snd_cmipci_mixer_switches;
|
---|
2549 | for (idx = 0; idx < ARRAY_SIZE(snd_cmipci_mixer_switches); idx++, sw++) {
|
---|
2550 | err = snd_ctl_add(cm->card, snd_ctl_new1(sw, cm));
|
---|
2551 | if (err < 0)
|
---|
2552 | return err;
|
---|
2553 | }
|
---|
2554 | if (! cm->can_multi_ch) {
|
---|
2555 | err = snd_ctl_add(cm->card, snd_ctl_new1(&snd_cmipci_nomulti_switch, cm));
|
---|
2556 | if (err < 0)
|
---|
2557 | return err;
|
---|
2558 | }
|
---|
2559 | if (cm->device == PCI_DEVICE_ID_CMEDIA_CM8738 ||
|
---|
2560 | cm->device == PCI_DEVICE_ID_CMEDIA_CM8738B) {
|
---|
2561 | sw = snd_cmipci_8738_mixer_switches;
|
---|
2562 | for (idx = 0; idx < ARRAY_SIZE(snd_cmipci_8738_mixer_switches); idx++, sw++) {
|
---|
2563 | err = snd_ctl_add(cm->card, snd_ctl_new1(sw, cm));
|
---|
2564 | if (err < 0)
|
---|
2565 | return err;
|
---|
2566 | }
|
---|
2567 | if (cm->can_ac3_hw) {
|
---|
2568 | if ((err = snd_ctl_add(card, kctl = snd_ctl_new1(&snd_cmipci_spdif_default, cm))) < 0)
|
---|
2569 | return err;
|
---|
2570 | kctl->id.device = pcm_spdif_device;
|
---|
2571 | if ((err = snd_ctl_add(card, kctl = snd_ctl_new1(&snd_cmipci_spdif_mask, cm))) < 0)
|
---|
2572 | return err;
|
---|
2573 | kctl->id.device = pcm_spdif_device;
|
---|
2574 | if ((err = snd_ctl_add(card, kctl = snd_ctl_new1(&snd_cmipci_spdif_stream, cm))) < 0)
|
---|
2575 | return err;
|
---|
2576 | kctl->id.device = pcm_spdif_device;
|
---|
2577 | }
|
---|
2578 | if (cm->chip_version <= 37) {
|
---|
2579 | sw = snd_cmipci_old_mixer_switches;
|
---|
2580 | for (idx = 0; idx < ARRAY_SIZE(snd_cmipci_old_mixer_switches); idx++, sw++) {
|
---|
2581 | err = snd_ctl_add(cm->card, snd_ctl_new1(sw, cm));
|
---|
2582 | if (err < 0)
|
---|
2583 | return err;
|
---|
2584 | }
|
---|
2585 | }
|
---|
2586 | }
|
---|
2587 | if (cm->chip_version >= 39) {
|
---|
2588 | sw = snd_cmipci_extra_mixer_switches;
|
---|
2589 | for (idx = 0; idx < ARRAY_SIZE(snd_cmipci_extra_mixer_switches); idx++, sw++) {
|
---|
2590 | err = snd_ctl_add(cm->card, snd_ctl_new1(sw, cm));
|
---|
2591 | if (err < 0)
|
---|
2592 | return err;
|
---|
2593 | }
|
---|
2594 | }
|
---|
2595 |
|
---|
2596 | /* card switches */
|
---|
2597 | sw = snd_cmipci_control_switches;
|
---|
2598 | for (idx = 0; idx < ARRAY_SIZE(snd_cmipci_control_switches); idx++, sw++) {
|
---|
2599 | err = snd_ctl_add(cm->card, snd_ctl_new1(sw, cm));
|
---|
2600 | if (err < 0)
|
---|
2601 | return err;
|
---|
2602 | }
|
---|
2603 |
|
---|
2604 | for (idx = 0; idx < CM_SAVED_MIXERS; idx++) {
|
---|
2605 | struct snd_ctl_elem_id id;
|
---|
2606 | struct snd_kcontrol *ctl;
|
---|
2607 | memset(&id, 0, sizeof(id));
|
---|
2608 | id.iface = SNDRV_CTL_ELEM_IFACE_MIXER;
|
---|
2609 | strcpy(id.name, cm_saved_mixer[idx].name);
|
---|
2610 | if ((ctl = snd_ctl_find_id(cm->card, &id)) != NULL)
|
---|
2611 | cm->mixer_res_ctl[idx] = ctl;
|
---|
2612 | }
|
---|
2613 |
|
---|
2614 | return 0;
|
---|
2615 | }
|
---|
2616 |
|
---|
2617 |
|
---|
2618 | /*
|
---|
2619 | * proc interface
|
---|
2620 | */
|
---|
2621 |
|
---|
2622 | static void snd_cmipci_proc_read(struct snd_info_entry *entry,
|
---|
2623 | struct snd_info_buffer *buffer)
|
---|
2624 | {
|
---|
2625 | struct cmipci *cm = entry->private_data;
|
---|
2626 | int i;
|
---|
2627 |
|
---|
2628 | snd_iprintf(buffer, "%s\n\n", cm->card->longname);
|
---|
2629 | for (i = 0; i < 0x40; i++) {
|
---|
2630 | int v = inb(cm->iobase + i);
|
---|
2631 | if (i % 4 == 0)
|
---|
2632 | snd_iprintf(buffer, "%02x: ", i);
|
---|
2633 | snd_iprintf(buffer, "%02x", v);
|
---|
2634 | if (i % 4 == 3)
|
---|
2635 | snd_iprintf(buffer, "\n");
|
---|
2636 | else
|
---|
2637 | snd_iprintf(buffer, " ");
|
---|
2638 | }
|
---|
2639 | }
|
---|
2640 |
|
---|
2641 | static void __devinit snd_cmipci_proc_init(struct cmipci *cm)
|
---|
2642 | {
|
---|
2643 | struct snd_info_entry *entry;
|
---|
2644 | if (! snd_card_proc_new(cm->card, "cmipci", &entry))
|
---|
2645 | snd_info_set_text_ops(entry, cm, 1024, snd_cmipci_proc_read);
|
---|
2646 | }
|
---|
2647 |
|
---|
2648 | static struct pci_device_id snd_cmipci_ids[] __devinitdata = {
|
---|
2649 | {PCI_VENDOR_ID_CMEDIA, PCI_DEVICE_ID_CMEDIA_CM8338A, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
|
---|
2650 | {PCI_VENDOR_ID_CMEDIA, PCI_DEVICE_ID_CMEDIA_CM8338B, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
|
---|
2651 | {PCI_VENDOR_ID_CMEDIA, PCI_DEVICE_ID_CMEDIA_CM8738, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
|
---|
2652 | {PCI_VENDOR_ID_CMEDIA, PCI_DEVICE_ID_CMEDIA_CM8738B, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
|
---|
2653 | {PCI_VENDOR_ID_AL, PCI_DEVICE_ID_CMEDIA_CM8738, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
|
---|
2654 | {0,},
|
---|
2655 | };
|
---|
2656 |
|
---|
2657 |
|
---|
2658 | /*
|
---|
2659 | * check chip version and capabilities
|
---|
2660 | * driver name is modified according to the chip model
|
---|
2661 | */
|
---|
2662 | static void __devinit query_chip(struct cmipci *cm)
|
---|
2663 | {
|
---|
2664 | unsigned int detect;
|
---|
2665 |
|
---|
2666 | /* check reg 0Ch, bit 24-31 */
|
---|
2667 | detect = snd_cmipci_read(cm, CM_REG_INT_HLDCLR) & CM_CHIP_MASK2;
|
---|
2668 | if (! detect) {
|
---|
2669 | /* check reg 08h, bit 24-28 */
|
---|
2670 | detect = snd_cmipci_read(cm, CM_REG_CHFORMAT) & CM_CHIP_MASK1;
|
---|
2671 | if (! detect) {
|
---|
2672 | cm->chip_version = 33;
|
---|
2673 | cm->max_channels = 4;
|
---|
2674 | if (cm->do_soft_ac3)
|
---|
2675 | cm->can_ac3_sw = 1;
|
---|
2676 | else
|
---|
2677 | cm->can_ac3_hw = 1;
|
---|
2678 | cm->has_dual_dac = 1;
|
---|
2679 | } else {
|
---|
2680 | // printk("detect = %x\n", detect);
|
---|
2681 |
|
---|
2682 | cm->chip_version = 37;
|
---|
2683 | cm->max_channels = 4;
|
---|
2684 | cm->can_ac3_hw = 1;
|
---|
2685 | cm->has_dual_dac = 1;
|
---|
2686 | cm->can_multi_ch = 1;
|
---|
2687 | }
|
---|
2688 | } else {
|
---|
2689 | /* check reg 0Ch, bit 26 */
|
---|
2690 | if (detect & CM_CHIP_8768) {
|
---|
2691 | cm->chip_version = 68;
|
---|
2692 | cm->max_channels = 8;
|
---|
2693 | cm->can_ac3_hw = 1;
|
---|
2694 | cm->has_dual_dac = 1;
|
---|
2695 | cm->can_multi_ch = 1;
|
---|
2696 | } else if (detect & CM_CHIP_055) {
|
---|
2697 | cm->chip_version = 55;
|
---|
2698 | cm->max_channels = 6;
|
---|
2699 | cm->can_ac3_hw = 1;
|
---|
2700 | cm->has_dual_dac = 1;
|
---|
2701 | cm->can_multi_ch = 1;
|
---|
2702 | } else if (detect & CM_CHIP_039) {
|
---|
2703 | cm->chip_version = 39;
|
---|
2704 | if (detect & CM_CHIP_039_6CH) /* 4 or 6 channels */
|
---|
2705 | cm->max_channels = 6;
|
---|
2706 | else
|
---|
2707 | cm->max_channels = 4;
|
---|
2708 | cm->can_ac3_hw = 1;
|
---|
2709 | cm->has_dual_dac = 1;
|
---|
2710 | cm->can_multi_ch = 1;
|
---|
2711 | } else {
|
---|
2712 | printk(KERN_ERR "chip %x version not supported\n", detect);
|
---|
2713 | }
|
---|
2714 | }
|
---|
2715 | }
|
---|
2716 |
|
---|
2717 | static int snd_cmipci_free(struct cmipci *cm)
|
---|
2718 | {
|
---|
2719 | if (cm->irq >= 0) {
|
---|
2720 | snd_cmipci_clear_bit(cm, CM_REG_MISC_CTRL, CM_FM_EN);
|
---|
2721 | snd_cmipci_clear_bit(cm, CM_REG_LEGACY_CTRL, CM_ENSPDOUT);
|
---|
2722 | snd_cmipci_write(cm, CM_REG_INT_HLDCLR, 0); /* disable ints */
|
---|
2723 | snd_cmipci_ch_reset(cm, CM_CH_PLAY);
|
---|
2724 | snd_cmipci_ch_reset(cm, CM_CH_CAPT);
|
---|
2725 | snd_cmipci_write(cm, CM_REG_FUNCTRL0, 0); /* disable channels */
|
---|
2726 | snd_cmipci_write(cm, CM_REG_FUNCTRL1, 0);
|
---|
2727 |
|
---|
2728 | /* reset mixer */
|
---|
2729 | snd_cmipci_mixer_write(cm, 0, 0);
|
---|
2730 |
|
---|
2731 | synchronize_irq(cm->irq);
|
---|
2732 |
|
---|
2733 | free_irq(cm->irq, cm);
|
---|
2734 | }
|
---|
2735 | pci_release_regions(cm->pci);
|
---|
2736 | kfree(cm);
|
---|
2737 | return 0;
|
---|
2738 | }
|
---|
2739 |
|
---|
2740 | static int snd_cmipci_dev_free(struct snd_device *device)
|
---|
2741 | {
|
---|
2742 | struct cmipci *cm = device->device_data;
|
---|
2743 | return snd_cmipci_free(cm);
|
---|
2744 | }
|
---|
2745 |
|
---|
2746 | static int __devinit snd_cmipci_create_fm(struct cmipci *cm, long fm_port)
|
---|
2747 | {
|
---|
2748 | long iosynth;
|
---|
2749 | unsigned int val;
|
---|
2750 | struct snd_opl3 *opl3;
|
---|
2751 | int err;
|
---|
2752 |
|
---|
2753 | /* first try FM regs in PCI port range */
|
---|
2754 | iosynth = cm->iobase + CM_REG_FM_PCI;
|
---|
2755 | err = snd_opl3_create(cm->card, iosynth, iosynth + 2,
|
---|
2756 | OPL3_HW_OPL3, 1, &opl3);
|
---|
2757 | if (err < 0) {
|
---|
2758 | /* then try legacy ports */
|
---|
2759 | val = snd_cmipci_read(cm, CM_REG_LEGACY_CTRL) & ~CM_FMSEL_MASK;
|
---|
2760 | iosynth = fm_port;
|
---|
2761 | switch (iosynth) {
|
---|
2762 | case 0x3E8: val |= CM_FMSEL_3E8; break;
|
---|
2763 | case 0x3E0: val |= CM_FMSEL_3E0; break;
|
---|
2764 | case 0x3C8: val |= CM_FMSEL_3C8; break;
|
---|
2765 | case 0x388: val |= CM_FMSEL_388; break;
|
---|
2766 | default:
|
---|
2767 | return 0;
|
---|
2768 | }
|
---|
2769 | snd_cmipci_write(cm, CM_REG_LEGACY_CTRL, val);
|
---|
2770 | /* enable FM */
|
---|
2771 | snd_cmipci_set_bit(cm, CM_REG_MISC_CTRL, CM_FM_EN);
|
---|
2772 |
|
---|
2773 | if (snd_opl3_create(cm->card, iosynth, iosynth + 2,
|
---|
2774 | OPL3_HW_OPL3, 0, &opl3) < 0) {
|
---|
2775 | printk(KERN_ERR "cmipci: no OPL device at %#lx, "
|
---|
2776 | "skipping...\n", iosynth);
|
---|
2777 | /* disable FM */
|
---|
2778 | snd_cmipci_write(cm, CM_REG_LEGACY_CTRL,
|
---|
2779 | val & ~CM_FMSEL_MASK);
|
---|
2780 | snd_cmipci_clear_bit(cm, CM_REG_MISC_CTRL, CM_FM_EN);
|
---|
2781 | return 0;
|
---|
2782 | }
|
---|
2783 | }
|
---|
2784 | if ((err = snd_opl3_hwdep_new(opl3, 0, 1, NULL)) < 0) {
|
---|
2785 | printk(KERN_ERR "cmipci: cannot create OPL3 hwdep\n");
|
---|
2786 | return err;
|
---|
2787 | }
|
---|
2788 | return 0;
|
---|
2789 | }
|
---|
2790 |
|
---|
2791 | static int __devinit snd_cmipci_create(struct snd_card *card, struct pci_dev *pci,
|
---|
2792 | int dev, struct cmipci **rcmipci)
|
---|
2793 | {
|
---|
2794 | struct cmipci *cm;
|
---|
2795 | int err;
|
---|
2796 | static struct snd_device_ops ops = {
|
---|
2797 | .dev_free = snd_cmipci_dev_free,
|
---|
2798 | };
|
---|
2799 | unsigned int val = 0;
|
---|
2800 | unsigned long iomidi;
|
---|
2801 | int integrated_midi;
|
---|
2802 | int pcm_index, pcm_spdif_index;
|
---|
2803 |
|
---|
2804 | *rcmipci = NULL;
|
---|
2805 |
|
---|
2806 | if ((err = pci_enable_device(pci)) < 0)
|
---|
2807 | return err;
|
---|
2808 |
|
---|
2809 | cm = kcalloc(1, sizeof(*cm), GFP_KERNEL);
|
---|
2810 | if (cm == NULL)
|
---|
2811 | return -ENOMEM;
|
---|
2812 |
|
---|
2813 | spin_lock_init(&cm->reg_lock);
|
---|
2814 | init_MUTEX(&cm->open_mutex);
|
---|
2815 | cm->device = pci->device;
|
---|
2816 | cm->card = card;
|
---|
2817 | cm->pci = pci;
|
---|
2818 | cm->irq = -1;
|
---|
2819 | cm->channel[0].ch = 0;
|
---|
2820 | cm->channel[1].ch = 1;
|
---|
2821 | cm->channel[0].is_dac = cm->channel[1].is_dac = 1; /* dual DAC mode */
|
---|
2822 |
|
---|
2823 | if ((err = pci_request_regions(pci, card->driver)) < 0) {
|
---|
2824 | kfree(cm);
|
---|
2825 | return err;
|
---|
2826 | }
|
---|
2827 | cm->iobase = pci_resource_start(pci, 0);
|
---|
2828 | if (request_irq(pci->irq, snd_cmipci_interrupt, SA_INTERRUPT|SA_SHIRQ, card->driver, cm)) {
|
---|
2829 | snd_printk("unable to grab IRQ %d\n", pci->irq);
|
---|
2830 | err = -EBUSY;
|
---|
2831 | goto __error;
|
---|
2832 | }
|
---|
2833 | cm->irq = pci->irq;
|
---|
2834 |
|
---|
2835 | pci_set_master(cm->pci);
|
---|
2836 |
|
---|
2837 | /*
|
---|
2838 | * check chip version, max channels and capabilities
|
---|
2839 | */
|
---|
2840 |
|
---|
2841 | cm->chip_version = 0;
|
---|
2842 | cm->max_channels = 2;
|
---|
2843 | cm->do_soft_ac3 = soft_ac3[dev];
|
---|
2844 | if (pci->device != PCI_DEVICE_ID_CMEDIA_CM8338A &&
|
---|
2845 | pci->device != PCI_DEVICE_ID_CMEDIA_CM8338B)
|
---|
2846 | query_chip(cm);
|
---|
2847 | /* added -MCx suffix for chip supporting multi-channels */
|
---|
2848 | if (cm->can_multi_ch)
|
---|
2849 | sprintf(cm->card->driver + strlen(cm->card->driver),
|
---|
2850 | "-MC%d", cm->max_channels);
|
---|
2851 | else if (cm->can_ac3_sw)
|
---|
2852 | strcpy(cm->card->driver + strlen(cm->card->driver), "-SWIEC");
|
---|
2853 | cm->dig_status = SNDRV_PCM_DEFAULT_CON_SPDIF;
|
---|
2854 | cm->dig_pcm_status = SNDRV_PCM_DEFAULT_CON_SPDIF;
|
---|
2855 |
|
---|
2856 | #if CM_CH_PLAY == 1
|
---|
2857 | cm->ctrl = CM_CHADC0; /* default FUNCNTRL0 */
|
---|
2858 | #else
|
---|
2859 | cm->ctrl = CM_CHADC1; /* default FUNCNTRL0 */
|
---|
2860 | #endif
|
---|
2861 |
|
---|
2862 | /* initialize codec registers */
|
---|
2863 | snd_cmipci_write(cm, CM_REG_INT_HLDCLR, 0); /* disable ints */
|
---|
2864 | snd_cmipci_ch_reset(cm, CM_CH_PLAY);
|
---|
2865 | snd_cmipci_ch_reset(cm, CM_CH_CAPT);
|
---|
2866 | snd_cmipci_write(cm, CM_REG_FUNCTRL0, 0); /* disable channels */
|
---|
2867 | snd_cmipci_write(cm, CM_REG_FUNCTRL1, 0);
|
---|
2868 |
|
---|
2869 | snd_cmipci_write(cm, CM_REG_CHFORMAT, 0);
|
---|
2870 | snd_cmipci_set_bit(cm, CM_REG_MISC_CTRL, CM_ENDBDAC|CM_N4SPK3D);
|
---|
2871 | #if CM_CH_PLAY == 1
|
---|
2872 | snd_cmipci_set_bit(cm, CM_REG_MISC_CTRL, CM_XCHGDAC);
|
---|
2873 | #else
|
---|
2874 | snd_cmipci_clear_bit(cm, CM_REG_MISC_CTRL, CM_XCHGDAC);
|
---|
2875 | #endif
|
---|
2876 | /* Set Bus Master Request */
|
---|
2877 | snd_cmipci_set_bit(cm, CM_REG_FUNCTRL1, CM_BREQ);
|
---|
2878 |
|
---|
2879 | /* Assume TX and compatible chip set (Autodetection required for VX chip sets) */
|
---|
2880 | switch (pci->device) {
|
---|
2881 | case PCI_DEVICE_ID_CMEDIA_CM8738:
|
---|
2882 | case PCI_DEVICE_ID_CMEDIA_CM8738B:
|
---|
2883 | /* PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82437VX */
|
---|
2884 | if (! pci_find_device(0x8086, 0x7030, NULL))
|
---|
2885 | snd_cmipci_set_bit(cm, CM_REG_MISC_CTRL, CM_TXVX);
|
---|
2886 | break;
|
---|
2887 | default:
|
---|
2888 | break;
|
---|
2889 | }
|
---|
2890 |
|
---|
2891 | integrated_midi = snd_cmipci_read_b(cm, CM_REG_MPU_PCI) != 0xff;
|
---|
2892 | if (integrated_midi)
|
---|
2893 | iomidi = cm->iobase + CM_REG_MPU_PCI;
|
---|
2894 | else {
|
---|
2895 | iomidi = mpu_port[dev];
|
---|
2896 | switch (iomidi) {
|
---|
2897 | case 0x320: val = CM_VMPU_320; break;
|
---|
2898 | case 0x310: val = CM_VMPU_310; break;
|
---|
2899 | case 0x300: val = CM_VMPU_300; break;
|
---|
2900 | case 0x330: val = CM_VMPU_330; break;
|
---|
2901 | default:
|
---|
2902 | iomidi = 0; break;
|
---|
2903 | }
|
---|
2904 | if (iomidi > 0) {
|
---|
2905 | snd_cmipci_write(cm, CM_REG_LEGACY_CTRL, val);
|
---|
2906 | /* enable UART */
|
---|
2907 | snd_cmipci_set_bit(cm, CM_REG_FUNCTRL1, CM_UART_EN);
|
---|
2908 | }
|
---|
2909 | }
|
---|
2910 |
|
---|
2911 | if ((err = snd_cmipci_create_fm(cm, fm_port[dev])) < 0)
|
---|
2912 | return err;
|
---|
2913 |
|
---|
2914 | /* reset mixer */
|
---|
2915 | snd_cmipci_mixer_write(cm, 0, 0);
|
---|
2916 |
|
---|
2917 | snd_cmipci_proc_init(cm);
|
---|
2918 |
|
---|
2919 | /* create pcm devices */
|
---|
2920 | pcm_index = pcm_spdif_index = 0;
|
---|
2921 | #ifdef SIX_CH_HACK
|
---|
2922 | if (cm->has_dual_dac) {
|
---|
2923 | if ((err = snd_cmipci_pcm2_new(cm, pcm_index)) < 0)
|
---|
2924 | goto __error;
|
---|
2925 | pcm_index++;
|
---|
2926 | }
|
---|
2927 |
|
---|
2928 | if ((err = snd_cmipci_pcm_new(cm, pcm_index)) < 0)
|
---|
2929 | goto __error;
|
---|
2930 | pcm_index++;
|
---|
2931 | #else
|
---|
2932 | if ((err = snd_cmipci_pcm_new(cm, pcm_index)) < 0)
|
---|
2933 | goto __error;
|
---|
2934 | pcm_index++;
|
---|
2935 |
|
---|
2936 | if (cm->has_dual_dac) {
|
---|
2937 | if ((err = snd_cmipci_pcm2_new(cm, pcm_index)) < 0)
|
---|
2938 | goto __error;
|
---|
2939 | pcm_index++;
|
---|
2940 | }
|
---|
2941 | #endif
|
---|
2942 | if (cm->can_ac3_hw || cm->can_ac3_sw) {
|
---|
2943 | pcm_spdif_index = pcm_index;
|
---|
2944 | if ((err = snd_cmipci_pcm_spdif_new(cm, pcm_index)) < 0)
|
---|
2945 | goto __error;
|
---|
2946 | }
|
---|
2947 |
|
---|
2948 | /* create mixer interface & switches */
|
---|
2949 | if ((err = snd_cmipci_mixer_new(cm, pcm_spdif_index)) < 0)
|
---|
2950 | goto __error;
|
---|
2951 |
|
---|
2952 | if (iomidi > 0) {
|
---|
2953 | if ((err = snd_mpu401_uart_new(card, 0, MPU401_HW_CMIPCI,
|
---|
2954 | iomidi, integrated_midi,
|
---|
2955 | cm->irq, 0, &cm->rmidi)) < 0) {
|
---|
2956 | printk(KERN_ERR "cmipci: no UART401 device at 0x%lx\n", iomidi);
|
---|
2957 | }
|
---|
2958 | }
|
---|
2959 |
|
---|
2960 | if ((err = snd_device_new(card, SNDRV_DEV_LOWLEVEL, cm, &ops)) < 0) {
|
---|
2961 | snd_cmipci_free(cm);
|
---|
2962 | return err;
|
---|
2963 | }
|
---|
2964 | #ifdef USE_VAR48KRATE
|
---|
2965 | for (val = 0; val < ARRAY_SIZE(rates); val++)
|
---|
2966 | snd_cmipci_set_pll(cm, rates[val], val);
|
---|
2967 |
|
---|
2968 | /*
|
---|
2969 | * (Re-)Enable external switch spdo_48k
|
---|
2970 | */
|
---|
2971 | snd_cmipci_set_bit(cm, CM_REG_MISC_CTRL, CM_SPDIF48K|CM_SPDF_AC97);
|
---|
2972 | #endif /* USE_VAR48KRATE */
|
---|
2973 |
|
---|
2974 | *rcmipci = cm;
|
---|
2975 | return 0;
|
---|
2976 |
|
---|
2977 | __error:
|
---|
2978 | snd_cmipci_free(cm);
|
---|
2979 | return err;
|
---|
2980 | }
|
---|
2981 |
|
---|
2982 | /*
|
---|
2983 | */
|
---|
2984 |
|
---|
2985 | MODULE_DEVICE_TABLE(pci, snd_cmipci_ids);
|
---|
2986 |
|
---|
2987 | static int __devinit snd_cmipci_probe(struct pci_dev *pci,
|
---|
2988 | const struct pci_device_id *pci_id)
|
---|
2989 | {
|
---|
2990 | static int dev;
|
---|
2991 | struct snd_card *card;
|
---|
2992 | struct cmipci *cm;
|
---|
2993 | int err;
|
---|
2994 | #ifdef DEBUG
|
---|
2995 | dprintf(("snd_cmipci_probe"));
|
---|
2996 | #endif
|
---|
2997 | if (dev >= SNDRV_CARDS)
|
---|
2998 | return -ENODEV;
|
---|
2999 | if (! enable[dev]) {
|
---|
3000 | dev++;
|
---|
3001 | return -ENOENT;
|
---|
3002 | }
|
---|
3003 |
|
---|
3004 | card = snd_card_new(index[dev], id[dev], THIS_MODULE, 0);
|
---|
3005 | if (card == NULL)
|
---|
3006 | return -ENOMEM;
|
---|
3007 |
|
---|
3008 | switch (pci->device) {
|
---|
3009 | case PCI_DEVICE_ID_CMEDIA_CM8738:
|
---|
3010 | case PCI_DEVICE_ID_CMEDIA_CM8738B:
|
---|
3011 | strcpy(card->driver, "CMI8738");
|
---|
3012 | break;
|
---|
3013 | case PCI_DEVICE_ID_CMEDIA_CM8338A:
|
---|
3014 | case PCI_DEVICE_ID_CMEDIA_CM8338B:
|
---|
3015 | strcpy(card->driver, "CMI8338");
|
---|
3016 | break;
|
---|
3017 | default:
|
---|
3018 | strcpy(card->driver, "CMIPCI");
|
---|
3019 | break;
|
---|
3020 | }
|
---|
3021 |
|
---|
3022 | if ((err = snd_cmipci_create(card, pci, dev, &cm)) < 0) {
|
---|
3023 | snd_card_free(card);
|
---|
3024 | return err;
|
---|
3025 | }
|
---|
3026 | card->private_data = cm;
|
---|
3027 |
|
---|
3028 | sprintf(card->shortname, "C-Media PCI %s", card->driver);
|
---|
3029 | sprintf(card->longname, "%s (model %d) at 0x%lx, irq %i",
|
---|
3030 | card->shortname,
|
---|
3031 | cm->chip_version,
|
---|
3032 | cm->iobase,
|
---|
3033 | cm->irq);
|
---|
3034 |
|
---|
3035 |
|
---|
3036 | #ifdef DEBUG
|
---|
3037 | dprintf(("%s is detected\n", card->longname));
|
---|
3038 | #endif
|
---|
3039 |
|
---|
3040 | if ((err = snd_card_register(card)) < 0) {
|
---|
3041 | snd_card_free(card);
|
---|
3042 | return err;
|
---|
3043 | }
|
---|
3044 |
|
---|
3045 | pci_set_drvdata(pci, card);
|
---|
3046 | dev++;
|
---|
3047 |
|
---|
3048 | return 0;
|
---|
3049 |
|
---|
3050 | }
|
---|
3051 |
|
---|
3052 | static void __devexit snd_cmipci_remove(struct pci_dev *pci)
|
---|
3053 | {
|
---|
3054 | snd_card_free(pci_get_drvdata(pci));
|
---|
3055 | pci_set_drvdata(pci, NULL);
|
---|
3056 | }
|
---|
3057 |
|
---|
3058 | #ifdef CONFIG_PM
|
---|
3059 | /*
|
---|
3060 | * power management
|
---|
3061 | */
|
---|
3062 | static unsigned char saved_regs[] = {
|
---|
3063 | CM_REG_FUNCTRL1, CM_REG_CHFORMAT, CM_REG_LEGACY_CTRL, CM_REG_MISC_CTRL,
|
---|
3064 | CM_REG_MIXER0, CM_REG_MIXER1, CM_REG_MIXER2, CM_REG_MIXER3, CM_REG_PLL,
|
---|
3065 | CM_REG_CH0_FRAME1, CM_REG_CH0_FRAME2,
|
---|
3066 | CM_REG_CH1_FRAME1, CM_REG_CH1_FRAME2, CM_REG_EXT_MISC,
|
---|
3067 | CM_REG_INT_STATUS, CM_REG_INT_HLDCLR, CM_REG_FUNCTRL0,
|
---|
3068 | };
|
---|
3069 |
|
---|
3070 | static unsigned char saved_mixers[] = {
|
---|
3071 | SB_DSP4_MASTER_DEV, SB_DSP4_MASTER_DEV + 1,
|
---|
3072 | SB_DSP4_PCM_DEV, SB_DSP4_PCM_DEV + 1,
|
---|
3073 | SB_DSP4_SYNTH_DEV, SB_DSP4_SYNTH_DEV + 1,
|
---|
3074 | SB_DSP4_CD_DEV, SB_DSP4_CD_DEV + 1,
|
---|
3075 | SB_DSP4_LINE_DEV, SB_DSP4_LINE_DEV + 1,
|
---|
3076 | SB_DSP4_MIC_DEV, SB_DSP4_SPEAKER_DEV,
|
---|
3077 | CM_REG_EXTENT_IND, SB_DSP4_OUTPUT_SW,
|
---|
3078 | SB_DSP4_INPUT_LEFT, SB_DSP4_INPUT_RIGHT,
|
---|
3079 | };
|
---|
3080 |
|
---|
3081 | static int snd_cmipci_suspend(struct pci_dev *pci, pm_message_t state)
|
---|
3082 | {
|
---|
3083 | struct snd_card *card = pci_get_drvdata(pci);
|
---|
3084 | struct cmipci *cm = card->private_data;
|
---|
3085 | int i;
|
---|
3086 |
|
---|
3087 | snd_power_change_state(card, SNDRV_CTL_POWER_D3hot);
|
---|
3088 |
|
---|
3089 | snd_pcm_suspend_all(cm->pcm);
|
---|
3090 | snd_pcm_suspend_all(cm->pcm2);
|
---|
3091 | snd_pcm_suspend_all(cm->pcm_spdif);
|
---|
3092 |
|
---|
3093 | /* save registers */
|
---|
3094 | for (i = 0; i < ARRAY_SIZE(saved_regs); i++)
|
---|
3095 | cm->saved_regs[i] = snd_cmipci_read(cm, saved_regs[i]);
|
---|
3096 | for (i = 0; i < ARRAY_SIZE(saved_mixers); i++)
|
---|
3097 | cm->saved_mixers[i] = snd_cmipci_mixer_read(cm, saved_mixers[i]);
|
---|
3098 |
|
---|
3099 | /* disable ints */
|
---|
3100 | snd_cmipci_write(cm, CM_REG_INT_HLDCLR, 0);
|
---|
3101 |
|
---|
3102 | pci_set_power_state(pci, PCI_D3hot);
|
---|
3103 | pci_disable_device(pci);
|
---|
3104 | pci_save_state(pci);
|
---|
3105 | return 0;
|
---|
3106 | }
|
---|
3107 |
|
---|
3108 | static int snd_cmipci_resume(struct pci_dev *pci)
|
---|
3109 | {
|
---|
3110 | struct snd_card *card = pci_get_drvdata(pci);
|
---|
3111 | struct cmipci *cm = card->private_data;
|
---|
3112 | int i;
|
---|
3113 |
|
---|
3114 | pci_restore_state(pci);
|
---|
3115 | pci_enable_device(pci);
|
---|
3116 | pci_set_power_state(pci, PCI_D0);
|
---|
3117 | pci_set_master(pci);
|
---|
3118 |
|
---|
3119 | /* reset / initialize to a sane state */
|
---|
3120 | snd_cmipci_write(cm, CM_REG_INT_HLDCLR, 0);
|
---|
3121 | snd_cmipci_ch_reset(cm, CM_CH_PLAY);
|
---|
3122 | snd_cmipci_ch_reset(cm, CM_CH_CAPT);
|
---|
3123 | snd_cmipci_mixer_write(cm, 0, 0);
|
---|
3124 |
|
---|
3125 | /* restore registers */
|
---|
3126 | for (i = 0; i < ARRAY_SIZE(saved_regs); i++)
|
---|
3127 | snd_cmipci_write(cm, saved_regs[i], cm->saved_regs[i]);
|
---|
3128 | for (i = 0; i < ARRAY_SIZE(saved_mixers); i++)
|
---|
3129 | snd_cmipci_mixer_write(cm, saved_mixers[i], cm->saved_mixers[i]);
|
---|
3130 |
|
---|
3131 | snd_power_change_state(card, SNDRV_CTL_POWER_D0);
|
---|
3132 | return 0;
|
---|
3133 | }
|
---|
3134 | #endif /* CONFIG_PM */
|
---|
3135 |
|
---|
3136 | static struct pci_driver driver = {
|
---|
3137 | .name = "C-Media PCI",
|
---|
3138 | .id_table = snd_cmipci_ids,
|
---|
3139 | .probe = snd_cmipci_probe,
|
---|
3140 | .remove = snd_cmipci_remove,
|
---|
3141 | #ifdef CONFIG_PM
|
---|
3142 | .suspend = snd_cmipci_suspend,
|
---|
3143 | .resume = snd_cmipci_resume,
|
---|
3144 | #endif
|
---|
3145 | };
|
---|
3146 |
|
---|
3147 | static int __init alsa_card_cmipci_init(void)
|
---|
3148 | {
|
---|
3149 | int err;
|
---|
3150 |
|
---|
3151 | #ifdef TARGET_OS2
|
---|
3152 | if (midi_port > 0) mpu_port[0] = midi_port;
|
---|
3153 | #endif
|
---|
3154 |
|
---|
3155 | if ((err = pci_module_init(&driver)) < 0) {
|
---|
3156 | #ifdef MODULE
|
---|
3157 | // printk(KERN_ERR "C-Media PCI soundcard not found or device busy\n");
|
---|
3158 | #endif
|
---|
3159 | return err;
|
---|
3160 | }
|
---|
3161 | return 0;
|
---|
3162 | }
|
---|
3163 |
|
---|
3164 | static void __exit alsa_card_cmipci_exit(void)
|
---|
3165 | {
|
---|
3166 | pci_unregister_driver(&driver);
|
---|
3167 | }
|
---|
3168 |
|
---|
3169 | module_init(alsa_card_cmipci_init)
|
---|
3170 | module_exit(alsa_card_cmipci_exit)
|
---|
3171 |
|
---|
3172 | #ifndef MODULE
|
---|
3173 |
|
---|
3174 | /* format is: snd-cmipci=enable,index,id,
|
---|
3175 | mpu_port,fm_port */
|
---|
3176 |
|
---|
3177 | static int __init alsa_card_cmipci_setup(char *str)
|
---|
3178 | {
|
---|
3179 | static unsigned __initdata nr_dev = 0;
|
---|
3180 |
|
---|
3181 | if (nr_dev >= SNDRV_CARDS)
|
---|
3182 | return 0;
|
---|
3183 | (void)(get_option(&str,&enable[nr_dev]) == 2 &&
|
---|
3184 | get_option(&str,&index[nr_dev]) == 2 &&
|
---|
3185 | get_id(&str,&id[nr_dev]) == 2 &&
|
---|
3186 | get_option(&str,(int *)&mpu_port[nr_dev]) == 2 &&
|
---|
3187 | get_option(&str,(int *)&fm_port[nr_dev]) == 2);
|
---|
3188 | nr_dev++;
|
---|
3189 | return 1;
|
---|
3190 | }
|
---|
3191 |
|
---|
3192 | __setup("snd-cmipci=", alsa_card_cmipci_setup);
|
---|
3193 |
|
---|
3194 | #endif /* ifndef MODULE */
|
---|