blob: 1b740dd4825b53f0c2f29f47405dcaf56c50b1c2 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * ALSA driver for VIA VT82xx (South Bridge)
3 *
4 * VT82C686A/B/C, VT8233A/C, VT8235
5 *
6 * Copyright (c) 2000 Jaroslav Kysela <perex@suse.cz>
7 * Tjeerd.Mulder <Tjeerd.Mulder@fujitsu-siemens.com>
8 * 2002 Takashi Iwai <tiwai@suse.de>
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 *
24 */
25
26/*
27 * Changes:
28 *
29 * Dec. 19, 2002 Takashi Iwai <tiwai@suse.de>
30 * - use the DSX channels for the first pcm playback.
31 * (on VIA8233, 8233C and 8235 only)
32 * this will allow you play simultaneously up to 4 streams.
33 * multi-channel playback is assigned to the second device
34 * on these chips.
35 * - support the secondary capture (on VIA8233/C,8235)
36 * - SPDIF support
37 * the DSX3 channel can be used for SPDIF output.
38 * on VIA8233A, this channel is assigned to the second pcm
39 * playback.
40 * the card config of alsa-lib will assign the correct
41 * device for applications.
42 * - clean up the code, separate low-level initialization
43 * routines for each chipset.
Karsten Wiese4f550df2005-10-18 14:31:07 +020044 *
45 * Sep. 26, 2005 Karsten Wiese <annabellesgarden@yahoo.de>
46 * - Optimize position calculation for the 823x chips.
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 */
48
49#include <sound/driver.h>
50#include <asm/io.h>
51#include <linux/delay.h>
52#include <linux/interrupt.h>
53#include <linux/init.h>
54#include <linux/pci.h>
55#include <linux/slab.h>
56#include <linux/gameport.h>
57#include <linux/moduleparam.h>
58#include <sound/core.h>
59#include <sound/pcm.h>
60#include <sound/pcm_params.h>
61#include <sound/info.h>
62#include <sound/ac97_codec.h>
63#include <sound/mpu401.h>
64#include <sound/initval.h>
65
66#if 0
67#define POINTER_DEBUG
68#endif
69
70MODULE_AUTHOR("Jaroslav Kysela <perex@suse.cz>");
71MODULE_DESCRIPTION("VIA VT82xx audio");
72MODULE_LICENSE("GPL");
73MODULE_SUPPORTED_DEVICE("{{VIA,VT82C686A/B/C,pci},{VIA,VT8233A/C,8235}}");
74
75#if defined(CONFIG_GAMEPORT) || (defined(MODULE) && defined(CONFIG_GAMEPORT_MODULE))
76#define SUPPORT_JOYSTICK 1
77#endif
78
Clemens Ladischb7fe4622005-10-04 08:46:51 +020079static int index = SNDRV_DEFAULT_IDX1; /* Index 0-MAX */
80static char *id = SNDRV_DEFAULT_STR1; /* ID for this card */
81static long mpu_port;
Linus Torvalds1da177e2005-04-16 15:20:36 -070082#ifdef SUPPORT_JOYSTICK
Clemens Ladischb7fe4622005-10-04 08:46:51 +020083static int joystick;
Linus Torvalds1da177e2005-04-16 15:20:36 -070084#endif
Clemens Ladischb7fe4622005-10-04 08:46:51 +020085static int ac97_clock = 48000;
86static char *ac97_quirk;
87static int dxs_support;
Linus Torvalds1da177e2005-04-16 15:20:36 -070088
Clemens Ladischb7fe4622005-10-04 08:46:51 +020089module_param(index, int, 0444);
Linus Torvalds1da177e2005-04-16 15:20:36 -070090MODULE_PARM_DESC(index, "Index value for VIA 82xx bridge.");
Clemens Ladischb7fe4622005-10-04 08:46:51 +020091module_param(id, charp, 0444);
Linus Torvalds1da177e2005-04-16 15:20:36 -070092MODULE_PARM_DESC(id, "ID string for VIA 82xx bridge.");
Clemens Ladischb7fe4622005-10-04 08:46:51 +020093module_param(mpu_port, long, 0444);
Linus Torvalds1da177e2005-04-16 15:20:36 -070094MODULE_PARM_DESC(mpu_port, "MPU-401 port. (VT82C686x only)");
95#ifdef SUPPORT_JOYSTICK
Clemens Ladischb7fe4622005-10-04 08:46:51 +020096module_param(joystick, bool, 0444);
Linus Torvalds1da177e2005-04-16 15:20:36 -070097MODULE_PARM_DESC(joystick, "Enable joystick. (VT82C686x only)");
98#endif
Clemens Ladischb7fe4622005-10-04 08:46:51 +020099module_param(ac97_clock, int, 0444);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100MODULE_PARM_DESC(ac97_clock, "AC'97 codec clock (default 48000Hz).");
Clemens Ladischb7fe4622005-10-04 08:46:51 +0200101module_param(ac97_quirk, charp, 0444);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102MODULE_PARM_DESC(ac97_quirk, "AC'97 workaround for strange hardware.");
Clemens Ladischb7fe4622005-10-04 08:46:51 +0200103module_param(dxs_support, int, 0444);
Sergey Vlasov2d7eb7c2005-04-11 15:04:33 +0200104MODULE_PARM_DESC(dxs_support, "Support for DXS channels (0 = auto, 1 = enable, 2 = disable, 3 = 48k only, 4 = no VRA, 5 = enable any sample rate)");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105
Takashi Iwai2b3e5842005-10-06 13:47:23 +0200106/* just for backward compatibility */
107static int enable;
Takashi Iwai698444f2005-10-20 16:53:49 +0200108module_param(enable, bool, 0444);
Takashi Iwai2b3e5842005-10-06 13:47:23 +0200109
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111/* revision numbers for via686 */
112#define VIA_REV_686_A 0x10
113#define VIA_REV_686_B 0x11
114#define VIA_REV_686_C 0x12
115#define VIA_REV_686_D 0x13
116#define VIA_REV_686_E 0x14
117#define VIA_REV_686_H 0x20
118
119/* revision numbers for via8233 */
120#define VIA_REV_PRE_8233 0x10 /* not in market */
121#define VIA_REV_8233C 0x20 /* 2 rec, 4 pb, 1 multi-pb */
122#define VIA_REV_8233 0x30 /* 2 rec, 4 pb, 1 multi-pb, spdif */
123#define VIA_REV_8233A 0x40 /* 1 rec, 1 multi-pb, spdf */
124#define VIA_REV_8235 0x50 /* 2 rec, 4 pb, 1 multi-pb, spdif */
125#define VIA_REV_8237 0x60
Bastiaan Jacques8263c652006-04-18 17:04:04 +0200126#define VIA_REV_8251 0x70
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127
128/*
129 * Direct registers
130 */
131
132#define VIAREG(via, x) ((via)->port + VIA_REG_##x)
133#define VIADEV_REG(viadev, x) ((viadev)->port + VIA_REG_##x)
134
135/* common offsets */
136#define VIA_REG_OFFSET_STATUS 0x00 /* byte - channel status */
137#define VIA_REG_STAT_ACTIVE 0x80 /* RO */
Karsten Wiese4f550df2005-10-18 14:31:07 +0200138#define VIA8233_SHADOW_STAT_ACTIVE 0x08 /* RO */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139#define VIA_REG_STAT_PAUSED 0x40 /* RO */
140#define VIA_REG_STAT_TRIGGER_QUEUED 0x08 /* RO */
141#define VIA_REG_STAT_STOPPED 0x04 /* RWC */
142#define VIA_REG_STAT_EOL 0x02 /* RWC */
143#define VIA_REG_STAT_FLAG 0x01 /* RWC */
144#define VIA_REG_OFFSET_CONTROL 0x01 /* byte - channel control */
145#define VIA_REG_CTRL_START 0x80 /* WO */
146#define VIA_REG_CTRL_TERMINATE 0x40 /* WO */
147#define VIA_REG_CTRL_AUTOSTART 0x20
148#define VIA_REG_CTRL_PAUSE 0x08 /* RW */
149#define VIA_REG_CTRL_INT_STOP 0x04
150#define VIA_REG_CTRL_INT_EOL 0x02
151#define VIA_REG_CTRL_INT_FLAG 0x01
152#define VIA_REG_CTRL_RESET 0x01 /* RW - probably reset? undocumented */
153#define VIA_REG_CTRL_INT (VIA_REG_CTRL_INT_FLAG | VIA_REG_CTRL_INT_EOL | VIA_REG_CTRL_AUTOSTART)
154#define VIA_REG_OFFSET_TYPE 0x02 /* byte - channel type (686 only) */
155#define VIA_REG_TYPE_AUTOSTART 0x80 /* RW - autostart at EOL */
156#define VIA_REG_TYPE_16BIT 0x20 /* RW */
157#define VIA_REG_TYPE_STEREO 0x10 /* RW */
158#define VIA_REG_TYPE_INT_LLINE 0x00
159#define VIA_REG_TYPE_INT_LSAMPLE 0x04
160#define VIA_REG_TYPE_INT_LESSONE 0x08
161#define VIA_REG_TYPE_INT_MASK 0x0c
162#define VIA_REG_TYPE_INT_EOL 0x02
163#define VIA_REG_TYPE_INT_FLAG 0x01
164#define VIA_REG_OFFSET_TABLE_PTR 0x04 /* dword - channel table pointer */
165#define VIA_REG_OFFSET_CURR_PTR 0x04 /* dword - channel current pointer */
166#define VIA_REG_OFFSET_STOP_IDX 0x08 /* dword - stop index, channel type, sample rate */
167#define VIA8233_REG_TYPE_16BIT 0x00200000 /* RW */
168#define VIA8233_REG_TYPE_STEREO 0x00100000 /* RW */
169#define VIA_REG_OFFSET_CURR_COUNT 0x0c /* dword - channel current count (24 bit) */
170#define VIA_REG_OFFSET_CURR_INDEX 0x0f /* byte - channel current index (for via8233 only) */
171
172#define DEFINE_VIA_REGSET(name,val) \
173enum {\
174 VIA_REG_##name##_STATUS = (val),\
175 VIA_REG_##name##_CONTROL = (val) + 0x01,\
176 VIA_REG_##name##_TYPE = (val) + 0x02,\
177 VIA_REG_##name##_TABLE_PTR = (val) + 0x04,\
178 VIA_REG_##name##_CURR_PTR = (val) + 0x04,\
179 VIA_REG_##name##_STOP_IDX = (val) + 0x08,\
180 VIA_REG_##name##_CURR_COUNT = (val) + 0x0c,\
181}
182
183/* playback block */
184DEFINE_VIA_REGSET(PLAYBACK, 0x00);
185DEFINE_VIA_REGSET(CAPTURE, 0x10);
186DEFINE_VIA_REGSET(FM, 0x20);
187
188/* AC'97 */
189#define VIA_REG_AC97 0x80 /* dword */
190#define VIA_REG_AC97_CODEC_ID_MASK (3<<30)
191#define VIA_REG_AC97_CODEC_ID_SHIFT 30
192#define VIA_REG_AC97_CODEC_ID_PRIMARY 0x00
193#define VIA_REG_AC97_CODEC_ID_SECONDARY 0x01
194#define VIA_REG_AC97_SECONDARY_VALID (1<<27)
195#define VIA_REG_AC97_PRIMARY_VALID (1<<25)
196#define VIA_REG_AC97_BUSY (1<<24)
197#define VIA_REG_AC97_READ (1<<23)
198#define VIA_REG_AC97_CMD_SHIFT 16
199#define VIA_REG_AC97_CMD_MASK 0x7e
200#define VIA_REG_AC97_DATA_SHIFT 0
201#define VIA_REG_AC97_DATA_MASK 0xffff
202
203#define VIA_REG_SGD_SHADOW 0x84 /* dword */
204/* via686 */
205#define VIA_REG_SGD_STAT_PB_FLAG (1<<0)
206#define VIA_REG_SGD_STAT_CP_FLAG (1<<1)
207#define VIA_REG_SGD_STAT_FM_FLAG (1<<2)
208#define VIA_REG_SGD_STAT_PB_EOL (1<<4)
209#define VIA_REG_SGD_STAT_CP_EOL (1<<5)
210#define VIA_REG_SGD_STAT_FM_EOL (1<<6)
211#define VIA_REG_SGD_STAT_PB_STOP (1<<8)
212#define VIA_REG_SGD_STAT_CP_STOP (1<<9)
213#define VIA_REG_SGD_STAT_FM_STOP (1<<10)
214#define VIA_REG_SGD_STAT_PB_ACTIVE (1<<12)
215#define VIA_REG_SGD_STAT_CP_ACTIVE (1<<13)
216#define VIA_REG_SGD_STAT_FM_ACTIVE (1<<14)
217/* via8233 */
218#define VIA8233_REG_SGD_STAT_FLAG (1<<0)
219#define VIA8233_REG_SGD_STAT_EOL (1<<1)
220#define VIA8233_REG_SGD_STAT_STOP (1<<2)
221#define VIA8233_REG_SGD_STAT_ACTIVE (1<<3)
222#define VIA8233_INTR_MASK(chan) ((VIA8233_REG_SGD_STAT_FLAG|VIA8233_REG_SGD_STAT_EOL) << ((chan) * 4))
223#define VIA8233_REG_SGD_CHAN_SDX 0
224#define VIA8233_REG_SGD_CHAN_MULTI 4
225#define VIA8233_REG_SGD_CHAN_REC 6
226#define VIA8233_REG_SGD_CHAN_REC1 7
227
228#define VIA_REG_GPI_STATUS 0x88
229#define VIA_REG_GPI_INTR 0x8c
230
231/* multi-channel and capture registers for via8233 */
232DEFINE_VIA_REGSET(MULTPLAY, 0x40);
233DEFINE_VIA_REGSET(CAPTURE_8233, 0x60);
234
235/* via8233-specific registers */
236#define VIA_REG_OFS_PLAYBACK_VOLUME_L 0x02 /* byte */
237#define VIA_REG_OFS_PLAYBACK_VOLUME_R 0x03 /* byte */
238#define VIA_REG_OFS_MULTPLAY_FORMAT 0x02 /* byte - format and channels */
239#define VIA_REG_MULTPLAY_FMT_8BIT 0x00
240#define VIA_REG_MULTPLAY_FMT_16BIT 0x80
241#define VIA_REG_MULTPLAY_FMT_CH_MASK 0x70 /* # channels << 4 (valid = 1,2,4,6) */
242#define VIA_REG_OFS_CAPTURE_FIFO 0x02 /* byte - bit 6 = fifo enable */
243#define VIA_REG_CAPTURE_FIFO_ENABLE 0x40
244
245#define VIA_DXS_MAX_VOLUME 31 /* max. volume (attenuation) of reg 0x32/33 */
246
247#define VIA_REG_CAPTURE_CHANNEL 0x63 /* byte - input select */
248#define VIA_REG_CAPTURE_CHANNEL_MIC 0x4
249#define VIA_REG_CAPTURE_CHANNEL_LINE 0
250#define VIA_REG_CAPTURE_SELECT_CODEC 0x03 /* recording source codec (0 = primary) */
251
252#define VIA_TBL_BIT_FLAG 0x40000000
253#define VIA_TBL_BIT_EOL 0x80000000
254
255/* pci space */
256#define VIA_ACLINK_STAT 0x40
257#define VIA_ACLINK_C11_READY 0x20
258#define VIA_ACLINK_C10_READY 0x10
259#define VIA_ACLINK_C01_READY 0x04 /* secondary codec ready */
260#define VIA_ACLINK_LOWPOWER 0x02 /* low-power state */
261#define VIA_ACLINK_C00_READY 0x01 /* primary codec ready */
262#define VIA_ACLINK_CTRL 0x41
263#define VIA_ACLINK_CTRL_ENABLE 0x80 /* 0: disable, 1: enable */
264#define VIA_ACLINK_CTRL_RESET 0x40 /* 0: assert, 1: de-assert */
265#define VIA_ACLINK_CTRL_SYNC 0x20 /* 0: release SYNC, 1: force SYNC hi */
266#define VIA_ACLINK_CTRL_SDO 0x10 /* 0: release SDO, 1: force SDO hi */
267#define VIA_ACLINK_CTRL_VRA 0x08 /* 0: disable VRA, 1: enable VRA */
268#define VIA_ACLINK_CTRL_PCM 0x04 /* 0: disable PCM, 1: enable PCM */
269#define VIA_ACLINK_CTRL_FM 0x02 /* via686 only */
270#define VIA_ACLINK_CTRL_SB 0x01 /* via686 only */
271#define VIA_ACLINK_CTRL_INIT (VIA_ACLINK_CTRL_ENABLE|\
272 VIA_ACLINK_CTRL_RESET|\
273 VIA_ACLINK_CTRL_PCM|\
274 VIA_ACLINK_CTRL_VRA)
275#define VIA_FUNC_ENABLE 0x42
276#define VIA_FUNC_MIDI_PNP 0x80 /* FIXME: it's 0x40 in the datasheet! */
277#define VIA_FUNC_MIDI_IRQMASK 0x40 /* FIXME: not documented! */
278#define VIA_FUNC_RX2C_WRITE 0x20
279#define VIA_FUNC_SB_FIFO_EMPTY 0x10
280#define VIA_FUNC_ENABLE_GAME 0x08
281#define VIA_FUNC_ENABLE_FM 0x04
282#define VIA_FUNC_ENABLE_MIDI 0x02
283#define VIA_FUNC_ENABLE_SB 0x01
284#define VIA_PNP_CONTROL 0x43
285#define VIA_FM_NMI_CTRL 0x48
286#define VIA8233_VOLCHG_CTRL 0x48
287#define VIA8233_SPDIF_CTRL 0x49
288#define VIA8233_SPDIF_DX3 0x08
289#define VIA8233_SPDIF_SLOT_MASK 0x03
290#define VIA8233_SPDIF_SLOT_1011 0x00
291#define VIA8233_SPDIF_SLOT_34 0x01
292#define VIA8233_SPDIF_SLOT_78 0x02
293#define VIA8233_SPDIF_SLOT_69 0x03
294
295/*
296 */
297
298#define VIA_DXS_AUTO 0
299#define VIA_DXS_ENABLE 1
300#define VIA_DXS_DISABLE 2
301#define VIA_DXS_48K 3
302#define VIA_DXS_NO_VRA 4
Sergey Vlasov2d7eb7c2005-04-11 15:04:33 +0200303#define VIA_DXS_SRC 5
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304
305
306/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 * pcm stream
308 */
309
310struct snd_via_sg_table {
311 unsigned int offset;
312 unsigned int size;
313} ;
314
315#define VIA_TABLE_SIZE 255
316
Takashi Iwaie437e3d2005-11-17 15:06:15 +0100317struct viadev {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 unsigned int reg_offset;
319 unsigned long port;
320 int direction; /* playback = 0, capture = 1 */
Takashi Iwaie437e3d2005-11-17 15:06:15 +0100321 struct snd_pcm_substream *substream;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 int running;
323 unsigned int tbl_entries; /* # descriptors */
324 struct snd_dma_buffer table;
325 struct snd_via_sg_table *idx_table;
326 /* for recovery from the unexpected pointer */
327 unsigned int lastpos;
328 unsigned int fragsize;
329 unsigned int bufsize;
330 unsigned int bufsize2;
Karsten Wiese4f550df2005-10-18 14:31:07 +0200331 int hwptr_done; /* processed frame position in the buffer */
332 int in_interrupt;
333 int shadow_shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334};
335
336
337enum { TYPE_CARD_VIA686 = 1, TYPE_CARD_VIA8233 };
338enum { TYPE_VIA686, TYPE_VIA8233, TYPE_VIA8233A };
339
340#define VIA_MAX_DEVS 7 /* 4 playback, 1 multi, 2 capture */
341
342struct via_rate_lock {
343 spinlock_t lock;
344 int rate;
345 int used;
346};
347
Takashi Iwaie437e3d2005-11-17 15:06:15 +0100348struct via82xx {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 int irq;
350
351 unsigned long port;
352 struct resource *mpu_res;
353 int chip_type;
354 unsigned char revision;
355
356 unsigned char old_legacy;
357 unsigned char old_legacy_cfg;
358#ifdef CONFIG_PM
359 unsigned char legacy_saved;
360 unsigned char legacy_cfg_saved;
361 unsigned char spdif_ctrl_saved;
362 unsigned char capture_src_saved[2];
363 unsigned int mpu_port_saved;
364#endif
365
Honza Maly00f226d2005-10-14 18:18:01 +0200366 unsigned char playback_volume[4][2]; /* for VIA8233/C/8235; default = 0 */
367 unsigned char playback_volume_c[2]; /* for VIA8233/C/8235; default = 0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368
369 unsigned int intr_mask; /* SGD_SHADOW mask to check interrupts */
370
371 struct pci_dev *pci;
Takashi Iwaie437e3d2005-11-17 15:06:15 +0100372 struct snd_card *card;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373
374 unsigned int num_devs;
375 unsigned int playback_devno, multi_devno, capture_devno;
Takashi Iwaie437e3d2005-11-17 15:06:15 +0100376 struct viadev devs[VIA_MAX_DEVS];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 struct via_rate_lock rates[2]; /* playback and capture */
378 unsigned int dxs_fixed: 1; /* DXS channel accepts only 48kHz */
379 unsigned int no_vra: 1; /* no need to set VRA on DXS channels */
Sergey Vlasov2d7eb7c2005-04-11 15:04:33 +0200380 unsigned int dxs_src: 1; /* use full SRC capabilities of DXS */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 unsigned int spdif_on: 1; /* only spdif rates work to external DACs */
382
Takashi Iwaie437e3d2005-11-17 15:06:15 +0100383 struct snd_pcm *pcms[2];
384 struct snd_rawmidi *rmidi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385
Takashi Iwaie437e3d2005-11-17 15:06:15 +0100386 struct snd_ac97_bus *ac97_bus;
387 struct snd_ac97 *ac97;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 unsigned int ac97_clock;
389 unsigned int ac97_secondary; /* secondary AC'97 codec is present */
390
391 spinlock_t reg_lock;
Takashi Iwaie437e3d2005-11-17 15:06:15 +0100392 struct snd_info_entry *proc_entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393
394#ifdef SUPPORT_JOYSTICK
395 struct gameport *gameport;
396#endif
397};
398
399static struct pci_device_id snd_via82xx_ids[] = {
Karsten Wiese4f550df2005-10-18 14:31:07 +0200400 /* 0x1106, 0x3058 */
401 { PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_82C686_5, PCI_ANY_ID, PCI_ANY_ID, 0, 0, TYPE_CARD_VIA686, }, /* 686A */
402 /* 0x1106, 0x3059 */
403 { PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_8233_5, PCI_ANY_ID, PCI_ANY_ID, 0, 0, TYPE_CARD_VIA8233, }, /* VT8233 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 { 0, }
405};
406
407MODULE_DEVICE_TABLE(pci, snd_via82xx_ids);
408
409/*
410 */
411
412/*
413 * allocate and initialize the descriptor buffers
414 * periods = number of periods
415 * fragsize = period size in bytes
416 */
Takashi Iwaie437e3d2005-11-17 15:06:15 +0100417static int build_via_table(struct viadev *dev, struct snd_pcm_substream *substream,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 struct pci_dev *pci,
419 unsigned int periods, unsigned int fragsize)
420{
421 unsigned int i, idx, ofs, rest;
Takashi Iwaie437e3d2005-11-17 15:06:15 +0100422 struct via82xx *chip = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 struct snd_sg_buf *sgbuf = snd_pcm_substream_sgbuf(substream);
424
425 if (dev->table.area == NULL) {
426 /* the start of each lists must be aligned to 8 bytes,
427 * but the kernel pages are much bigger, so we don't care
428 */
429 if (snd_dma_alloc_pages(SNDRV_DMA_TYPE_DEV, snd_dma_pci_data(chip->pci),
430 PAGE_ALIGN(VIA_TABLE_SIZE * 2 * 8),
431 &dev->table) < 0)
432 return -ENOMEM;
433 }
434 if (! dev->idx_table) {
435 dev->idx_table = kmalloc(sizeof(*dev->idx_table) * VIA_TABLE_SIZE, GFP_KERNEL);
436 if (! dev->idx_table)
437 return -ENOMEM;
438 }
439
440 /* fill the entries */
441 idx = 0;
442 ofs = 0;
443 for (i = 0; i < periods; i++) {
444 rest = fragsize;
445 /* fill descriptors for a period.
446 * a period can be split to several descriptors if it's
447 * over page boundary.
448 */
449 do {
450 unsigned int r;
451 unsigned int flag;
452
453 if (idx >= VIA_TABLE_SIZE) {
454 snd_printk(KERN_ERR "via82xx: too much table size!\n");
455 return -EINVAL;
456 }
457 ((u32 *)dev->table.area)[idx << 1] = cpu_to_le32((u32)snd_pcm_sgbuf_get_addr(sgbuf, ofs));
458 r = PAGE_SIZE - (ofs % PAGE_SIZE);
459 if (rest < r)
460 r = rest;
461 rest -= r;
462 if (! rest) {
463 if (i == periods - 1)
464 flag = VIA_TBL_BIT_EOL; /* buffer boundary */
465 else
466 flag = VIA_TBL_BIT_FLAG; /* period boundary */
467 } else
468 flag = 0; /* period continues to the next */
469 // printk("via: tbl %d: at %d size %d (rest %d)\n", idx, ofs, r, rest);
470 ((u32 *)dev->table.area)[(idx<<1) + 1] = cpu_to_le32(r | flag);
471 dev->idx_table[idx].offset = ofs;
472 dev->idx_table[idx].size = r;
473 ofs += r;
474 idx++;
475 } while (rest > 0);
476 }
477 dev->tbl_entries = idx;
478 dev->bufsize = periods * fragsize;
479 dev->bufsize2 = dev->bufsize / 2;
480 dev->fragsize = fragsize;
481 return 0;
482}
483
484
Takashi Iwaie437e3d2005-11-17 15:06:15 +0100485static int clean_via_table(struct viadev *dev, struct snd_pcm_substream *substream,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 struct pci_dev *pci)
487{
488 if (dev->table.area) {
489 snd_dma_free_pages(&dev->table);
490 dev->table.area = NULL;
491 }
Jesper Juhl4d572772005-05-30 17:30:32 +0200492 kfree(dev->idx_table);
493 dev->idx_table = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 return 0;
495}
496
497/*
498 * Basic I/O
499 */
500
Takashi Iwaie437e3d2005-11-17 15:06:15 +0100501static inline unsigned int snd_via82xx_codec_xread(struct via82xx *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502{
503 return inl(VIAREG(chip, AC97));
504}
505
Takashi Iwaie437e3d2005-11-17 15:06:15 +0100506static inline void snd_via82xx_codec_xwrite(struct via82xx *chip, unsigned int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507{
508 outl(val, VIAREG(chip, AC97));
509}
510
Takashi Iwaie437e3d2005-11-17 15:06:15 +0100511static int snd_via82xx_codec_ready(struct via82xx *chip, int secondary)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512{
513 unsigned int timeout = 1000; /* 1ms */
514 unsigned int val;
515
516 while (timeout-- > 0) {
517 udelay(1);
518 if (!((val = snd_via82xx_codec_xread(chip)) & VIA_REG_AC97_BUSY))
519 return val & 0xffff;
520 }
Takashi Iwaie437e3d2005-11-17 15:06:15 +0100521 snd_printk(KERN_ERR "codec_ready: codec %i is not ready [0x%x]\n",
522 secondary, snd_via82xx_codec_xread(chip));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 return -EIO;
524}
525
Takashi Iwaie437e3d2005-11-17 15:06:15 +0100526static int snd_via82xx_codec_valid(struct via82xx *chip, int secondary)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527{
528 unsigned int timeout = 1000; /* 1ms */
529 unsigned int val, val1;
530 unsigned int stat = !secondary ? VIA_REG_AC97_PRIMARY_VALID :
531 VIA_REG_AC97_SECONDARY_VALID;
532
533 while (timeout-- > 0) {
534 val = snd_via82xx_codec_xread(chip);
535 val1 = val & (VIA_REG_AC97_BUSY | stat);
536 if (val1 == stat)
537 return val & 0xffff;
538 udelay(1);
539 }
540 return -EIO;
541}
542
Takashi Iwaie437e3d2005-11-17 15:06:15 +0100543static void snd_via82xx_codec_wait(struct snd_ac97 *ac97)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544{
Takashi Iwaie437e3d2005-11-17 15:06:15 +0100545 struct via82xx *chip = ac97->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 int err;
547 err = snd_via82xx_codec_ready(chip, ac97->num);
548 /* here we need to wait fairly for long time.. */
Nishanth Aravamudanef21ca22005-07-09 10:13:22 +0200549 msleep(500);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550}
551
Takashi Iwaie437e3d2005-11-17 15:06:15 +0100552static void snd_via82xx_codec_write(struct snd_ac97 *ac97,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 unsigned short reg,
554 unsigned short val)
555{
Takashi Iwaie437e3d2005-11-17 15:06:15 +0100556 struct via82xx *chip = ac97->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 unsigned int xval;
Karsten Wiese4f550df2005-10-18 14:31:07 +0200558
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 xval = !ac97->num ? VIA_REG_AC97_CODEC_ID_PRIMARY : VIA_REG_AC97_CODEC_ID_SECONDARY;
560 xval <<= VIA_REG_AC97_CODEC_ID_SHIFT;
561 xval |= reg << VIA_REG_AC97_CMD_SHIFT;
562 xval |= val << VIA_REG_AC97_DATA_SHIFT;
563 snd_via82xx_codec_xwrite(chip, xval);
564 snd_via82xx_codec_ready(chip, ac97->num);
565}
566
Takashi Iwaie437e3d2005-11-17 15:06:15 +0100567static unsigned short snd_via82xx_codec_read(struct snd_ac97 *ac97, unsigned short reg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568{
Takashi Iwaie437e3d2005-11-17 15:06:15 +0100569 struct via82xx *chip = ac97->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 unsigned int xval, val = 0xffff;
571 int again = 0;
572
573 xval = ac97->num << VIA_REG_AC97_CODEC_ID_SHIFT;
574 xval |= ac97->num ? VIA_REG_AC97_SECONDARY_VALID : VIA_REG_AC97_PRIMARY_VALID;
575 xval |= VIA_REG_AC97_READ;
576 xval |= (reg & 0x7f) << VIA_REG_AC97_CMD_SHIFT;
577 while (1) {
578 if (again++ > 3) {
Takashi Iwaie437e3d2005-11-17 15:06:15 +0100579 snd_printk(KERN_ERR "codec_read: codec %i is not valid [0x%x]\n",
580 ac97->num, snd_via82xx_codec_xread(chip));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 return 0xffff;
582 }
583 snd_via82xx_codec_xwrite(chip, xval);
584 udelay (20);
585 if (snd_via82xx_codec_valid(chip, ac97->num) >= 0) {
586 udelay(25);
587 val = snd_via82xx_codec_xread(chip);
588 break;
589 }
590 }
591 return val & 0xffff;
592}
593
Takashi Iwaie437e3d2005-11-17 15:06:15 +0100594static void snd_via82xx_channel_reset(struct via82xx *chip, struct viadev *viadev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595{
596 outb(VIA_REG_CTRL_PAUSE | VIA_REG_CTRL_TERMINATE | VIA_REG_CTRL_RESET,
597 VIADEV_REG(viadev, OFFSET_CONTROL));
598 inb(VIADEV_REG(viadev, OFFSET_CONTROL));
599 udelay(50);
600 /* disable interrupts */
601 outb(0x00, VIADEV_REG(viadev, OFFSET_CONTROL));
602 /* clear interrupts */
603 outb(0x03, VIADEV_REG(viadev, OFFSET_STATUS));
604 outb(0x00, VIADEV_REG(viadev, OFFSET_TYPE)); /* for via686 */
605 // outl(0, VIADEV_REG(viadev, OFFSET_CURR_PTR));
606 viadev->lastpos = 0;
Karsten Wiese4f550df2005-10-18 14:31:07 +0200607 viadev->hwptr_done = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608}
609
610
611/*
612 * Interrupt handler
Karsten Wiese4f550df2005-10-18 14:31:07 +0200613 * Used for 686 and 8233A
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 */
Karsten Wiese4f550df2005-10-18 14:31:07 +0200615static irqreturn_t snd_via686_interrupt(int irq, void *dev_id, struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616{
Takashi Iwaie437e3d2005-11-17 15:06:15 +0100617 struct via82xx *chip = dev_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 unsigned int status;
619 unsigned int i;
620
621 status = inl(VIAREG(chip, SGD_SHADOW));
622 if (! (status & chip->intr_mask)) {
623 if (chip->rmidi)
624 /* check mpu401 interrupt */
625 return snd_mpu401_uart_interrupt(irq, chip->rmidi->private_data, regs);
626 return IRQ_NONE;
627 }
628
629 /* check status for each stream */
630 spin_lock(&chip->reg_lock);
631 for (i = 0; i < chip->num_devs; i++) {
Takashi Iwaie437e3d2005-11-17 15:06:15 +0100632 struct viadev *viadev = &chip->devs[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 unsigned char c_status = inb(VIADEV_REG(viadev, OFFSET_STATUS));
Karsten Wiese4f550df2005-10-18 14:31:07 +0200634 if (! (c_status & (VIA_REG_STAT_EOL|VIA_REG_STAT_FLAG|VIA_REG_STAT_STOPPED)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 continue;
636 if (viadev->substream && viadev->running) {
Karsten Wiese4f550df2005-10-18 14:31:07 +0200637 /*
638 * Update hwptr_done based on 'period elapsed'
639 * interrupts. We'll use it, when the chip returns 0
640 * for OFFSET_CURR_COUNT.
641 */
642 if (c_status & VIA_REG_STAT_EOL)
643 viadev->hwptr_done = 0;
644 else
645 viadev->hwptr_done += viadev->fragsize;
646 viadev->in_interrupt = c_status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 spin_unlock(&chip->reg_lock);
648 snd_pcm_period_elapsed(viadev->substream);
649 spin_lock(&chip->reg_lock);
Karsten Wiese4f550df2005-10-18 14:31:07 +0200650 viadev->in_interrupt = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 }
652 outb(c_status, VIADEV_REG(viadev, OFFSET_STATUS)); /* ack */
653 }
654 spin_unlock(&chip->reg_lock);
655 return IRQ_HANDLED;
656}
657
658/*
Karsten Wiese4f550df2005-10-18 14:31:07 +0200659 * Interrupt handler
660 */
661static irqreturn_t snd_via8233_interrupt(int irq, void *dev_id, struct pt_regs *regs)
662{
Takashi Iwaie437e3d2005-11-17 15:06:15 +0100663 struct via82xx *chip = dev_id;
Karsten Wiese4f550df2005-10-18 14:31:07 +0200664 unsigned int status;
665 unsigned int i;
666 int irqreturn = 0;
667
668 /* check status for each stream */
669 spin_lock(&chip->reg_lock);
670 status = inl(VIAREG(chip, SGD_SHADOW));
671
672 for (i = 0; i < chip->num_devs; i++) {
Takashi Iwaie437e3d2005-11-17 15:06:15 +0100673 struct viadev *viadev = &chip->devs[i];
674 struct snd_pcm_substream *substream;
Karsten Wiese4f550df2005-10-18 14:31:07 +0200675 unsigned char c_status, shadow_status;
676
677 shadow_status = (status >> viadev->shadow_shift) &
678 (VIA8233_SHADOW_STAT_ACTIVE|VIA_REG_STAT_EOL|
679 VIA_REG_STAT_FLAG);
680 c_status = shadow_status & (VIA_REG_STAT_EOL|VIA_REG_STAT_FLAG);
681 if (!c_status)
682 continue;
683
684 substream = viadev->substream;
685 if (substream && viadev->running) {
686 /*
687 * Update hwptr_done based on 'period elapsed'
688 * interrupts. We'll use it, when the chip returns 0
689 * for OFFSET_CURR_COUNT.
690 */
691 if (c_status & VIA_REG_STAT_EOL)
692 viadev->hwptr_done = 0;
693 else
694 viadev->hwptr_done += viadev->fragsize;
695 viadev->in_interrupt = c_status;
696 if (shadow_status & VIA8233_SHADOW_STAT_ACTIVE)
697 viadev->in_interrupt |= VIA_REG_STAT_ACTIVE;
698 spin_unlock(&chip->reg_lock);
699
700 snd_pcm_period_elapsed(substream);
701
702 spin_lock(&chip->reg_lock);
703 viadev->in_interrupt = 0;
704 }
705 outb(c_status, VIADEV_REG(viadev, OFFSET_STATUS)); /* ack */
706 irqreturn = 1;
707 }
708 spin_unlock(&chip->reg_lock);
709 return IRQ_RETVAL(irqreturn);
710}
711
712/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 * PCM callbacks
714 */
715
716/*
717 * trigger callback
718 */
Takashi Iwaie437e3d2005-11-17 15:06:15 +0100719static int snd_via82xx_pcm_trigger(struct snd_pcm_substream *substream, int cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720{
Takashi Iwaie437e3d2005-11-17 15:06:15 +0100721 struct via82xx *chip = snd_pcm_substream_chip(substream);
722 struct viadev *viadev = substream->runtime->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 unsigned char val;
724
725 if (chip->chip_type != TYPE_VIA686)
726 val = VIA_REG_CTRL_INT;
727 else
728 val = 0;
729 switch (cmd) {
730 case SNDRV_PCM_TRIGGER_START:
Jaroslav Kysela41e48452005-08-18 13:43:12 +0200731 case SNDRV_PCM_TRIGGER_RESUME:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 val |= VIA_REG_CTRL_START;
733 viadev->running = 1;
734 break;
735 case SNDRV_PCM_TRIGGER_STOP:
Jaroslav Kysela41e48452005-08-18 13:43:12 +0200736 case SNDRV_PCM_TRIGGER_SUSPEND:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 val = VIA_REG_CTRL_TERMINATE;
738 viadev->running = 0;
739 break;
740 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
741 val |= VIA_REG_CTRL_PAUSE;
742 viadev->running = 0;
743 break;
744 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
745 viadev->running = 1;
746 break;
747 default:
748 return -EINVAL;
749 }
750 outb(val, VIADEV_REG(viadev, OFFSET_CONTROL));
751 if (cmd == SNDRV_PCM_TRIGGER_STOP)
752 snd_via82xx_channel_reset(chip, viadev);
753 return 0;
754}
755
756
757/*
758 * pointer callbacks
759 */
760
761/*
762 * calculate the linear position at the given sg-buffer index and the rest count
763 */
764
765#define check_invalid_pos(viadev,pos) \
Takashi Iwaie437e3d2005-11-17 15:06:15 +0100766 ((pos) < viadev->lastpos && ((pos) >= viadev->bufsize2 ||\
767 viadev->lastpos < viadev->bufsize2))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768
Takashi Iwaie437e3d2005-11-17 15:06:15 +0100769static inline unsigned int calc_linear_pos(struct viadev *viadev, unsigned int idx,
770 unsigned int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771{
772 unsigned int size, base, res;
773
774 size = viadev->idx_table[idx].size;
775 base = viadev->idx_table[idx].offset;
776 res = base + size - count;
Karsten Wiese4f550df2005-10-18 14:31:07 +0200777 if (res >= viadev->bufsize)
778 res -= viadev->bufsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779
780 /* check the validity of the calculated position */
781 if (size < count) {
Takashi Iwaie437e3d2005-11-17 15:06:15 +0100782 snd_printd(KERN_ERR "invalid via82xx_cur_ptr (size = %d, count = %d)\n",
783 (int)size, (int)count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 res = viadev->lastpos;
785 } else {
786 if (! count) {
787 /* Some mobos report count = 0 on the DMA boundary,
788 * i.e. count = size indeed.
789 * Let's check whether this step is above the expected size.
790 */
791 int delta = res - viadev->lastpos;
792 if (delta < 0)
793 delta += viadev->bufsize;
794 if ((unsigned int)delta > viadev->fragsize)
795 res = base;
796 }
797 if (check_invalid_pos(viadev, res)) {
798#ifdef POINTER_DEBUG
Takashi Iwaie437e3d2005-11-17 15:06:15 +0100799 printk(KERN_DEBUG "fail: idx = %i/%i, lastpos = 0x%x, "
800 "bufsize2 = 0x%x, offsize = 0x%x, size = 0x%x, "
801 "count = 0x%x\n", idx, viadev->tbl_entries,
802 viadev->lastpos, viadev->bufsize2,
803 viadev->idx_table[idx].offset,
804 viadev->idx_table[idx].size, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805#endif
806 /* count register returns full size when end of buffer is reached */
807 res = base + size;
808 if (check_invalid_pos(viadev, res)) {
Takashi Iwaie437e3d2005-11-17 15:06:15 +0100809 snd_printd(KERN_ERR "invalid via82xx_cur_ptr (2), "
810 "using last valid pointer\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 res = viadev->lastpos;
812 }
813 }
814 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 return res;
816}
817
818/*
819 * get the current pointer on via686
820 */
Takashi Iwaie437e3d2005-11-17 15:06:15 +0100821static snd_pcm_uframes_t snd_via686_pcm_pointer(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822{
Takashi Iwaie437e3d2005-11-17 15:06:15 +0100823 struct via82xx *chip = snd_pcm_substream_chip(substream);
824 struct viadev *viadev = substream->runtime->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 unsigned int idx, ptr, count, res;
826
827 snd_assert(viadev->tbl_entries, return 0);
828 if (!(inb(VIADEV_REG(viadev, OFFSET_STATUS)) & VIA_REG_STAT_ACTIVE))
829 return 0;
830
831 spin_lock(&chip->reg_lock);
832 count = inl(VIADEV_REG(viadev, OFFSET_CURR_COUNT)) & 0xffffff;
833 /* The via686a does not have the current index register,
834 * so we need to calculate the index from CURR_PTR.
835 */
836 ptr = inl(VIADEV_REG(viadev, OFFSET_CURR_PTR));
837 if (ptr <= (unsigned int)viadev->table.addr)
838 idx = 0;
839 else /* CURR_PTR holds the address + 8 */
840 idx = ((ptr - (unsigned int)viadev->table.addr) / 8 - 1) % viadev->tbl_entries;
841 res = calc_linear_pos(viadev, idx, count);
Karsten Wiese4f550df2005-10-18 14:31:07 +0200842 viadev->lastpos = res; /* remember the last position */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 spin_unlock(&chip->reg_lock);
844
845 return bytes_to_frames(substream->runtime, res);
846}
847
848/*
849 * get the current pointer on via823x
850 */
Takashi Iwaie437e3d2005-11-17 15:06:15 +0100851static snd_pcm_uframes_t snd_via8233_pcm_pointer(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852{
Takashi Iwaie437e3d2005-11-17 15:06:15 +0100853 struct via82xx *chip = snd_pcm_substream_chip(substream);
854 struct viadev *viadev = substream->runtime->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 unsigned int idx, count, res;
Karsten Wiese4f550df2005-10-18 14:31:07 +0200856 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857
858 snd_assert(viadev->tbl_entries, return 0);
Karsten Wiese4f550df2005-10-18 14:31:07 +0200859
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 spin_lock(&chip->reg_lock);
Karsten Wiese4f550df2005-10-18 14:31:07 +0200861 count = inl(VIADEV_REG(viadev, OFFSET_CURR_COUNT));
862 status = viadev->in_interrupt;
863 if (!status)
864 status = inb(VIADEV_REG(viadev, OFFSET_STATUS));
865
866 if (!(status & VIA_REG_STAT_ACTIVE)) {
Bastiaan Jacques8263c652006-04-18 17:04:04 +0200867 /* An apparent bug in the 8251 is worked around by sending
868 * a REG_CTRL_START. */
869 if (chip->revision == VIA_REV_8251)
870 snd_via82xx_pcm_trigger(substream,
871 SNDRV_PCM_TRIGGER_START);
872 else {
873 res = 0;
874 goto unlock;
875 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 }
Karsten Wiese4f550df2005-10-18 14:31:07 +0200877 if (count & 0xffffff) {
878 idx = count >> 24;
879 if (idx >= viadev->tbl_entries) {
880#ifdef POINTER_DEBUG
Takashi Iwaie437e3d2005-11-17 15:06:15 +0100881 printk(KERN_DEBUG "fail: invalid idx = %i/%i\n", idx,
882 viadev->tbl_entries);
Karsten Wiese4f550df2005-10-18 14:31:07 +0200883#endif
884 res = viadev->lastpos;
885 } else {
886 count &= 0xffffff;
887 res = calc_linear_pos(viadev, idx, count);
888 }
889 } else {
890 res = viadev->hwptr_done;
891 if (!viadev->in_interrupt) {
892 if (status & VIA_REG_STAT_EOL) {
893 res = 0;
894 } else
895 if (status & VIA_REG_STAT_FLAG) {
896 res += viadev->fragsize;
897 }
898 }
899 }
900unlock:
901 viadev->lastpos = res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 spin_unlock(&chip->reg_lock);
903
904 return bytes_to_frames(substream->runtime, res);
905}
906
907
908/*
909 * hw_params callback:
910 * allocate the buffer and build up the buffer description table
911 */
Takashi Iwaie437e3d2005-11-17 15:06:15 +0100912static int snd_via82xx_hw_params(struct snd_pcm_substream *substream,
913 struct snd_pcm_hw_params *hw_params)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914{
Takashi Iwaie437e3d2005-11-17 15:06:15 +0100915 struct via82xx *chip = snd_pcm_substream_chip(substream);
916 struct viadev *viadev = substream->runtime->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 int err;
918
919 err = snd_pcm_lib_malloc_pages(substream, params_buffer_bytes(hw_params));
920 if (err < 0)
921 return err;
922 err = build_via_table(viadev, substream, chip->pci,
923 params_periods(hw_params),
924 params_period_bytes(hw_params));
925 if (err < 0)
926 return err;
927
928 return 0;
929}
930
931/*
932 * hw_free callback:
933 * clean up the buffer description table and release the buffer
934 */
Takashi Iwaie437e3d2005-11-17 15:06:15 +0100935static int snd_via82xx_hw_free(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936{
Takashi Iwaie437e3d2005-11-17 15:06:15 +0100937 struct via82xx *chip = snd_pcm_substream_chip(substream);
938 struct viadev *viadev = substream->runtime->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939
940 clean_via_table(viadev, substream, chip->pci);
941 snd_pcm_lib_free_pages(substream);
942 return 0;
943}
944
945
946/*
947 * set up the table pointer
948 */
Takashi Iwaie437e3d2005-11-17 15:06:15 +0100949static void snd_via82xx_set_table_ptr(struct via82xx *chip, struct viadev *viadev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950{
951 snd_via82xx_codec_ready(chip, 0);
952 outl((u32)viadev->table.addr, VIADEV_REG(viadev, OFFSET_TABLE_PTR));
953 udelay(20);
954 snd_via82xx_codec_ready(chip, 0);
955}
956
957/*
958 * prepare callback for playback and capture on via686
959 */
Takashi Iwaie437e3d2005-11-17 15:06:15 +0100960static void via686_setup_format(struct via82xx *chip, struct viadev *viadev,
961 struct snd_pcm_runtime *runtime)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962{
963 snd_via82xx_channel_reset(chip, viadev);
964 /* this must be set after channel_reset */
965 snd_via82xx_set_table_ptr(chip, viadev);
966 outb(VIA_REG_TYPE_AUTOSTART |
967 (runtime->format == SNDRV_PCM_FORMAT_S16_LE ? VIA_REG_TYPE_16BIT : 0) |
968 (runtime->channels > 1 ? VIA_REG_TYPE_STEREO : 0) |
969 ((viadev->reg_offset & 0x10) == 0 ? VIA_REG_TYPE_INT_LSAMPLE : 0) |
970 VIA_REG_TYPE_INT_EOL |
971 VIA_REG_TYPE_INT_FLAG, VIADEV_REG(viadev, OFFSET_TYPE));
972}
973
Takashi Iwaie437e3d2005-11-17 15:06:15 +0100974static int snd_via686_playback_prepare(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975{
Takashi Iwaie437e3d2005-11-17 15:06:15 +0100976 struct via82xx *chip = snd_pcm_substream_chip(substream);
977 struct viadev *viadev = substream->runtime->private_data;
978 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979
980 snd_ac97_set_rate(chip->ac97, AC97_PCM_FRONT_DAC_RATE, runtime->rate);
981 snd_ac97_set_rate(chip->ac97, AC97_SPDIF, runtime->rate);
982 via686_setup_format(chip, viadev, runtime);
983 return 0;
984}
985
Takashi Iwaie437e3d2005-11-17 15:06:15 +0100986static int snd_via686_capture_prepare(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987{
Takashi Iwaie437e3d2005-11-17 15:06:15 +0100988 struct via82xx *chip = snd_pcm_substream_chip(substream);
989 struct viadev *viadev = substream->runtime->private_data;
990 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991
992 snd_ac97_set_rate(chip->ac97, AC97_PCM_LR_ADC_RATE, runtime->rate);
993 via686_setup_format(chip, viadev, runtime);
994 return 0;
995}
996
997/*
998 * lock the current rate
999 */
1000static int via_lock_rate(struct via_rate_lock *rec, int rate)
1001{
1002 int changed = 0;
1003
1004 spin_lock_irq(&rec->lock);
1005 if (rec->rate != rate) {
1006 if (rec->rate && rec->used > 1) /* already set */
1007 changed = -EINVAL;
1008 else {
1009 rec->rate = rate;
1010 changed = 1;
1011 }
1012 }
1013 spin_unlock_irq(&rec->lock);
1014 return changed;
1015}
1016
1017/*
1018 * prepare callback for DSX playback on via823x
1019 */
Takashi Iwaie437e3d2005-11-17 15:06:15 +01001020static int snd_via8233_playback_prepare(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021{
Takashi Iwaie437e3d2005-11-17 15:06:15 +01001022 struct via82xx *chip = snd_pcm_substream_chip(substream);
1023 struct viadev *viadev = substream->runtime->private_data;
1024 struct snd_pcm_runtime *runtime = substream->runtime;
Sergey Vlasov2d7eb7c2005-04-11 15:04:33 +02001025 int ac97_rate = chip->dxs_src ? 48000 : runtime->rate;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 int rate_changed;
1027 u32 rbits;
1028
Sergey Vlasov2d7eb7c2005-04-11 15:04:33 +02001029 if ((rate_changed = via_lock_rate(&chip->rates[0], ac97_rate)) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 return rate_changed;
Takashi Iwai16d3f142005-08-15 15:02:28 +02001031 if (rate_changed)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 snd_ac97_set_rate(chip->ac97, AC97_PCM_FRONT_DAC_RATE,
1033 chip->no_vra ? 48000 : runtime->rate);
Takashi Iwai16d3f142005-08-15 15:02:28 +02001034 if (chip->spdif_on && viadev->reg_offset == 0x30)
1035 snd_ac97_set_rate(chip->ac97, AC97_SPDIF, runtime->rate);
1036
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 if (runtime->rate == 48000)
1038 rbits = 0xfffff;
1039 else
Takashi Iwaie437e3d2005-11-17 15:06:15 +01001040 rbits = (0x100000 / 48000) * runtime->rate +
1041 ((0x100000 % 48000) * runtime->rate) / 48000;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 snd_assert((rbits & ~0xfffff) == 0, return -EINVAL);
1043 snd_via82xx_channel_reset(chip, viadev);
1044 snd_via82xx_set_table_ptr(chip, viadev);
Takashi Iwaie437e3d2005-11-17 15:06:15 +01001045 outb(chip->playback_volume[viadev->reg_offset / 0x10][0],
1046 VIADEV_REG(viadev, OFS_PLAYBACK_VOLUME_L));
1047 outb(chip->playback_volume[viadev->reg_offset / 0x10][1],
1048 VIADEV_REG(viadev, OFS_PLAYBACK_VOLUME_R));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 outl((runtime->format == SNDRV_PCM_FORMAT_S16_LE ? VIA8233_REG_TYPE_16BIT : 0) | /* format */
1050 (runtime->channels > 1 ? VIA8233_REG_TYPE_STEREO : 0) | /* stereo */
1051 rbits | /* rate */
1052 0xff000000, /* STOP index is never reached */
1053 VIADEV_REG(viadev, OFFSET_STOP_IDX));
1054 udelay(20);
1055 snd_via82xx_codec_ready(chip, 0);
1056 return 0;
1057}
1058
1059/*
1060 * prepare callback for multi-channel playback on via823x
1061 */
Takashi Iwaie437e3d2005-11-17 15:06:15 +01001062static int snd_via8233_multi_prepare(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063{
Takashi Iwaie437e3d2005-11-17 15:06:15 +01001064 struct via82xx *chip = snd_pcm_substream_chip(substream);
1065 struct viadev *viadev = substream->runtime->private_data;
1066 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 unsigned int slots;
1068 int fmt;
1069
1070 if (via_lock_rate(&chip->rates[0], runtime->rate) < 0)
1071 return -EINVAL;
1072 snd_ac97_set_rate(chip->ac97, AC97_PCM_FRONT_DAC_RATE, runtime->rate);
1073 snd_ac97_set_rate(chip->ac97, AC97_PCM_SURR_DAC_RATE, runtime->rate);
1074 snd_ac97_set_rate(chip->ac97, AC97_PCM_LFE_DAC_RATE, runtime->rate);
1075 snd_ac97_set_rate(chip->ac97, AC97_SPDIF, runtime->rate);
1076 snd_via82xx_channel_reset(chip, viadev);
1077 snd_via82xx_set_table_ptr(chip, viadev);
1078
Takashi Iwaie437e3d2005-11-17 15:06:15 +01001079 fmt = (runtime->format == SNDRV_PCM_FORMAT_S16_LE) ?
1080 VIA_REG_MULTPLAY_FMT_16BIT : VIA_REG_MULTPLAY_FMT_8BIT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 fmt |= runtime->channels << 4;
1082 outb(fmt, VIADEV_REG(viadev, OFS_MULTPLAY_FORMAT));
1083#if 0
1084 if (chip->revision == VIA_REV_8233A)
1085 slots = 0;
1086 else
1087#endif
1088 {
1089 /* set sample number to slot 3, 4, 7, 8, 6, 9 (for VIA8233/C,8235) */
1090 /* corresponding to FL, FR, RL, RR, C, LFE ?? */
1091 switch (runtime->channels) {
1092 case 1: slots = (1<<0) | (1<<4); break;
1093 case 2: slots = (1<<0) | (2<<4); break;
1094 case 3: slots = (1<<0) | (2<<4) | (5<<8); break;
1095 case 4: slots = (1<<0) | (2<<4) | (3<<8) | (4<<12); break;
1096 case 5: slots = (1<<0) | (2<<4) | (3<<8) | (4<<12) | (5<<16); break;
1097 case 6: slots = (1<<0) | (2<<4) | (3<<8) | (4<<12) | (5<<16) | (6<<20); break;
1098 default: slots = 0; break;
1099 }
1100 }
1101 /* STOP index is never reached */
1102 outl(0xff000000 | slots, VIADEV_REG(viadev, OFFSET_STOP_IDX));
1103 udelay(20);
1104 snd_via82xx_codec_ready(chip, 0);
1105 return 0;
1106}
1107
1108/*
1109 * prepare callback for capture on via823x
1110 */
Takashi Iwaie437e3d2005-11-17 15:06:15 +01001111static int snd_via8233_capture_prepare(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112{
Takashi Iwaie437e3d2005-11-17 15:06:15 +01001113 struct via82xx *chip = snd_pcm_substream_chip(substream);
1114 struct viadev *viadev = substream->runtime->private_data;
1115 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116
1117 if (via_lock_rate(&chip->rates[1], runtime->rate) < 0)
1118 return -EINVAL;
1119 snd_ac97_set_rate(chip->ac97, AC97_PCM_LR_ADC_RATE, runtime->rate);
1120 snd_via82xx_channel_reset(chip, viadev);
1121 snd_via82xx_set_table_ptr(chip, viadev);
1122 outb(VIA_REG_CAPTURE_FIFO_ENABLE, VIADEV_REG(viadev, OFS_CAPTURE_FIFO));
1123 outl((runtime->format == SNDRV_PCM_FORMAT_S16_LE ? VIA8233_REG_TYPE_16BIT : 0) |
1124 (runtime->channels > 1 ? VIA8233_REG_TYPE_STEREO : 0) |
1125 0xff000000, /* STOP index is never reached */
1126 VIADEV_REG(viadev, OFFSET_STOP_IDX));
1127 udelay(20);
1128 snd_via82xx_codec_ready(chip, 0);
1129 return 0;
1130}
1131
1132
1133/*
1134 * pcm hardware definition, identical for both playback and capture
1135 */
Takashi Iwaie437e3d2005-11-17 15:06:15 +01001136static struct snd_pcm_hardware snd_via82xx_hw =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137{
1138 .info = (SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_INTERLEAVED |
1139 SNDRV_PCM_INFO_BLOCK_TRANSFER |
1140 SNDRV_PCM_INFO_MMAP_VALID |
Jaroslav Kysela41e48452005-08-18 13:43:12 +02001141 /* SNDRV_PCM_INFO_RESUME | */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 SNDRV_PCM_INFO_PAUSE),
1143 .formats = SNDRV_PCM_FMTBIT_U8 | SNDRV_PCM_FMTBIT_S16_LE,
1144 .rates = SNDRV_PCM_RATE_48000,
1145 .rate_min = 48000,
1146 .rate_max = 48000,
1147 .channels_min = 1,
1148 .channels_max = 2,
1149 .buffer_bytes_max = 128 * 1024,
1150 .period_bytes_min = 32,
1151 .period_bytes_max = 128 * 1024,
1152 .periods_min = 2,
1153 .periods_max = VIA_TABLE_SIZE / 2,
1154 .fifo_size = 0,
1155};
1156
1157
1158/*
1159 * open callback skeleton
1160 */
Takashi Iwaie437e3d2005-11-17 15:06:15 +01001161static int snd_via82xx_pcm_open(struct via82xx *chip, struct viadev *viadev,
1162 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163{
Takashi Iwaie437e3d2005-11-17 15:06:15 +01001164 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165 int err;
1166 struct via_rate_lock *ratep;
1167
1168 runtime->hw = snd_via82xx_hw;
1169
1170 /* set the hw rate condition */
1171 ratep = &chip->rates[viadev->direction];
1172 spin_lock_irq(&ratep->lock);
1173 ratep->used++;
1174 if (chip->spdif_on && viadev->reg_offset == 0x30) {
1175 /* DXS#3 and spdif is on */
1176 runtime->hw.rates = chip->ac97->rates[AC97_RATES_SPDIF];
1177 snd_pcm_limit_hw_rates(runtime);
1178 } else if (chip->dxs_fixed && viadev->reg_offset < 0x40) {
1179 /* fixed DXS playback rate */
1180 runtime->hw.rates = SNDRV_PCM_RATE_48000;
1181 runtime->hw.rate_min = runtime->hw.rate_max = 48000;
Sergey Vlasov2d7eb7c2005-04-11 15:04:33 +02001182 } else if (chip->dxs_src && viadev->reg_offset < 0x40) {
1183 /* use full SRC capabilities of DXS */
1184 runtime->hw.rates = (SNDRV_PCM_RATE_CONTINUOUS |
1185 SNDRV_PCM_RATE_8000_48000);
1186 runtime->hw.rate_min = 8000;
1187 runtime->hw.rate_max = 48000;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188 } else if (! ratep->rate) {
1189 int idx = viadev->direction ? AC97_RATES_ADC : AC97_RATES_FRONT_DAC;
1190 runtime->hw.rates = chip->ac97->rates[idx];
1191 snd_pcm_limit_hw_rates(runtime);
1192 } else {
1193 /* a fixed rate */
1194 runtime->hw.rates = SNDRV_PCM_RATE_KNOT;
1195 runtime->hw.rate_max = runtime->hw.rate_min = ratep->rate;
1196 }
1197 spin_unlock_irq(&ratep->lock);
1198
1199 /* we may remove following constaint when we modify table entries
1200 in interrupt */
1201 if ((err = snd_pcm_hw_constraint_integer(runtime, SNDRV_PCM_HW_PARAM_PERIODS)) < 0)
1202 return err;
1203
1204 runtime->private_data = viadev;
1205 viadev->substream = substream;
1206
1207 return 0;
1208}
1209
1210
1211/*
1212 * open callback for playback on via686 and via823x DSX
1213 */
Takashi Iwaie437e3d2005-11-17 15:06:15 +01001214static int snd_via82xx_playback_open(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215{
Takashi Iwaie437e3d2005-11-17 15:06:15 +01001216 struct via82xx *chip = snd_pcm_substream_chip(substream);
1217 struct viadev *viadev = &chip->devs[chip->playback_devno + substream->number];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218 int err;
1219
1220 if ((err = snd_via82xx_pcm_open(chip, viadev, substream)) < 0)
1221 return err;
1222 return 0;
1223}
1224
1225/*
1226 * open callback for playback on via823x multi-channel
1227 */
Takashi Iwaie437e3d2005-11-17 15:06:15 +01001228static int snd_via8233_multi_open(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229{
Takashi Iwaie437e3d2005-11-17 15:06:15 +01001230 struct via82xx *chip = snd_pcm_substream_chip(substream);
1231 struct viadev *viadev = &chip->devs[chip->multi_devno];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 int err;
1233 /* channels constraint for VIA8233A
1234 * 3 and 5 channels are not supported
1235 */
1236 static unsigned int channels[] = {
1237 1, 2, 4, 6
1238 };
Takashi Iwaie437e3d2005-11-17 15:06:15 +01001239 static struct snd_pcm_hw_constraint_list hw_constraints_channels = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 .count = ARRAY_SIZE(channels),
1241 .list = channels,
1242 .mask = 0,
1243 };
1244
1245 if ((err = snd_via82xx_pcm_open(chip, viadev, substream)) < 0)
1246 return err;
1247 substream->runtime->hw.channels_max = 6;
1248 if (chip->revision == VIA_REV_8233A)
Takashi Iwaie437e3d2005-11-17 15:06:15 +01001249 snd_pcm_hw_constraint_list(substream->runtime, 0,
1250 SNDRV_PCM_HW_PARAM_CHANNELS,
1251 &hw_constraints_channels);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252 return 0;
1253}
1254
1255/*
1256 * open callback for capture on via686 and via823x
1257 */
Takashi Iwaie437e3d2005-11-17 15:06:15 +01001258static int snd_via82xx_capture_open(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259{
Takashi Iwaie437e3d2005-11-17 15:06:15 +01001260 struct via82xx *chip = snd_pcm_substream_chip(substream);
1261 struct viadev *viadev = &chip->devs[chip->capture_devno + substream->pcm->device];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262
1263 return snd_via82xx_pcm_open(chip, viadev, substream);
1264}
1265
1266/*
1267 * close callback
1268 */
Takashi Iwaie437e3d2005-11-17 15:06:15 +01001269static int snd_via82xx_pcm_close(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270{
Takashi Iwaie437e3d2005-11-17 15:06:15 +01001271 struct via82xx *chip = snd_pcm_substream_chip(substream);
1272 struct viadev *viadev = substream->runtime->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 struct via_rate_lock *ratep;
1274
1275 /* release the rate lock */
1276 ratep = &chip->rates[viadev->direction];
1277 spin_lock_irq(&ratep->lock);
1278 ratep->used--;
1279 if (! ratep->used)
1280 ratep->rate = 0;
1281 spin_unlock_irq(&ratep->lock);
1282
1283 viadev->substream = NULL;
1284 return 0;
1285}
1286
1287
1288/* via686 playback callbacks */
Takashi Iwaie437e3d2005-11-17 15:06:15 +01001289static struct snd_pcm_ops snd_via686_playback_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290 .open = snd_via82xx_playback_open,
1291 .close = snd_via82xx_pcm_close,
1292 .ioctl = snd_pcm_lib_ioctl,
1293 .hw_params = snd_via82xx_hw_params,
1294 .hw_free = snd_via82xx_hw_free,
1295 .prepare = snd_via686_playback_prepare,
1296 .trigger = snd_via82xx_pcm_trigger,
1297 .pointer = snd_via686_pcm_pointer,
1298 .page = snd_pcm_sgbuf_ops_page,
1299};
1300
1301/* via686 capture callbacks */
Takashi Iwaie437e3d2005-11-17 15:06:15 +01001302static struct snd_pcm_ops snd_via686_capture_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303 .open = snd_via82xx_capture_open,
1304 .close = snd_via82xx_pcm_close,
1305 .ioctl = snd_pcm_lib_ioctl,
1306 .hw_params = snd_via82xx_hw_params,
1307 .hw_free = snd_via82xx_hw_free,
1308 .prepare = snd_via686_capture_prepare,
1309 .trigger = snd_via82xx_pcm_trigger,
1310 .pointer = snd_via686_pcm_pointer,
1311 .page = snd_pcm_sgbuf_ops_page,
1312};
1313
1314/* via823x DSX playback callbacks */
Takashi Iwaie437e3d2005-11-17 15:06:15 +01001315static struct snd_pcm_ops snd_via8233_playback_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316 .open = snd_via82xx_playback_open,
1317 .close = snd_via82xx_pcm_close,
1318 .ioctl = snd_pcm_lib_ioctl,
1319 .hw_params = snd_via82xx_hw_params,
1320 .hw_free = snd_via82xx_hw_free,
1321 .prepare = snd_via8233_playback_prepare,
1322 .trigger = snd_via82xx_pcm_trigger,
1323 .pointer = snd_via8233_pcm_pointer,
1324 .page = snd_pcm_sgbuf_ops_page,
1325};
1326
1327/* via823x multi-channel playback callbacks */
Takashi Iwaie437e3d2005-11-17 15:06:15 +01001328static struct snd_pcm_ops snd_via8233_multi_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329 .open = snd_via8233_multi_open,
1330 .close = snd_via82xx_pcm_close,
1331 .ioctl = snd_pcm_lib_ioctl,
1332 .hw_params = snd_via82xx_hw_params,
1333 .hw_free = snd_via82xx_hw_free,
1334 .prepare = snd_via8233_multi_prepare,
1335 .trigger = snd_via82xx_pcm_trigger,
1336 .pointer = snd_via8233_pcm_pointer,
1337 .page = snd_pcm_sgbuf_ops_page,
1338};
1339
1340/* via823x capture callbacks */
Takashi Iwaie437e3d2005-11-17 15:06:15 +01001341static struct snd_pcm_ops snd_via8233_capture_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 .open = snd_via82xx_capture_open,
1343 .close = snd_via82xx_pcm_close,
1344 .ioctl = snd_pcm_lib_ioctl,
1345 .hw_params = snd_via82xx_hw_params,
1346 .hw_free = snd_via82xx_hw_free,
1347 .prepare = snd_via8233_capture_prepare,
1348 .trigger = snd_via82xx_pcm_trigger,
1349 .pointer = snd_via8233_pcm_pointer,
1350 .page = snd_pcm_sgbuf_ops_page,
1351};
1352
1353
Takashi Iwaie437e3d2005-11-17 15:06:15 +01001354static void init_viadev(struct via82xx *chip, int idx, unsigned int reg_offset,
1355 int shadow_pos, int direction)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356{
1357 chip->devs[idx].reg_offset = reg_offset;
Karsten Wiese4f550df2005-10-18 14:31:07 +02001358 chip->devs[idx].shadow_shift = shadow_pos * 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 chip->devs[idx].direction = direction;
1360 chip->devs[idx].port = chip->port + reg_offset;
1361}
1362
1363/*
1364 * create pcm instances for VIA8233, 8233C and 8235 (not 8233A)
1365 */
Takashi Iwaie437e3d2005-11-17 15:06:15 +01001366static int __devinit snd_via8233_pcm_new(struct via82xx *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367{
Takashi Iwaie437e3d2005-11-17 15:06:15 +01001368 struct snd_pcm *pcm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369 int i, err;
1370
1371 chip->playback_devno = 0; /* x 4 */
1372 chip->multi_devno = 4; /* x 1 */
1373 chip->capture_devno = 5; /* x 2 */
1374 chip->num_devs = 7;
1375 chip->intr_mask = 0x33033333; /* FLAG|EOL for rec0-1, mc, sdx0-3 */
1376
1377 /* PCM #0: 4 DSX playbacks and 1 capture */
1378 err = snd_pcm_new(chip->card, chip->card->shortname, 0, 4, 1, &pcm);
1379 if (err < 0)
1380 return err;
1381 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &snd_via8233_playback_ops);
1382 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &snd_via8233_capture_ops);
1383 pcm->private_data = chip;
1384 strcpy(pcm->name, chip->card->shortname);
1385 chip->pcms[0] = pcm;
1386 /* set up playbacks */
1387 for (i = 0; i < 4; i++)
Karsten Wiese4f550df2005-10-18 14:31:07 +02001388 init_viadev(chip, i, 0x10 * i, i, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389 /* capture */
Karsten Wiese4f550df2005-10-18 14:31:07 +02001390 init_viadev(chip, chip->capture_devno, VIA_REG_CAPTURE_8233_STATUS, 6, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391
1392 if ((err = snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV_SG,
Takashi Iwaie437e3d2005-11-17 15:06:15 +01001393 snd_dma_pci_data(chip->pci),
1394 64*1024, 128*1024)) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395 return err;
1396
1397 /* PCM #1: multi-channel playback and 2nd capture */
1398 err = snd_pcm_new(chip->card, chip->card->shortname, 1, 1, 1, &pcm);
1399 if (err < 0)
1400 return err;
1401 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &snd_via8233_multi_ops);
1402 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &snd_via8233_capture_ops);
1403 pcm->private_data = chip;
1404 strcpy(pcm->name, chip->card->shortname);
1405 chip->pcms[1] = pcm;
1406 /* set up playback */
Karsten Wiese4f550df2005-10-18 14:31:07 +02001407 init_viadev(chip, chip->multi_devno, VIA_REG_MULTPLAY_STATUS, 4, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 /* set up capture */
Karsten Wiese4f550df2005-10-18 14:31:07 +02001409 init_viadev(chip, chip->capture_devno + 1, VIA_REG_CAPTURE_8233_STATUS + 0x10, 7, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410
1411 if ((err = snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV_SG,
Takashi Iwaie437e3d2005-11-17 15:06:15 +01001412 snd_dma_pci_data(chip->pci),
1413 64*1024, 128*1024)) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414 return err;
1415
1416 return 0;
1417}
1418
1419/*
1420 * create pcm instances for VIA8233A
1421 */
Takashi Iwaie437e3d2005-11-17 15:06:15 +01001422static int __devinit snd_via8233a_pcm_new(struct via82xx *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423{
Takashi Iwaie437e3d2005-11-17 15:06:15 +01001424 struct snd_pcm *pcm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425 int err;
1426
1427 chip->multi_devno = 0;
1428 chip->playback_devno = 1;
1429 chip->capture_devno = 2;
1430 chip->num_devs = 3;
1431 chip->intr_mask = 0x03033000; /* FLAG|EOL for rec0, mc, sdx3 */
1432
1433 /* PCM #0: multi-channel playback and capture */
1434 err = snd_pcm_new(chip->card, chip->card->shortname, 0, 1, 1, &pcm);
1435 if (err < 0)
1436 return err;
1437 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &snd_via8233_multi_ops);
1438 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &snd_via8233_capture_ops);
1439 pcm->private_data = chip;
1440 strcpy(pcm->name, chip->card->shortname);
1441 chip->pcms[0] = pcm;
1442 /* set up playback */
Karsten Wiese4f550df2005-10-18 14:31:07 +02001443 init_viadev(chip, chip->multi_devno, VIA_REG_MULTPLAY_STATUS, 4, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444 /* capture */
Karsten Wiese4f550df2005-10-18 14:31:07 +02001445 init_viadev(chip, chip->capture_devno, VIA_REG_CAPTURE_8233_STATUS, 6, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446
1447 if ((err = snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV_SG,
Takashi Iwaie437e3d2005-11-17 15:06:15 +01001448 snd_dma_pci_data(chip->pci),
1449 64*1024, 128*1024)) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450 return err;
1451
1452 /* SPDIF supported? */
1453 if (! ac97_can_spdif(chip->ac97))
1454 return 0;
1455
1456 /* PCM #1: DXS3 playback (for spdif) */
1457 err = snd_pcm_new(chip->card, chip->card->shortname, 1, 1, 0, &pcm);
1458 if (err < 0)
1459 return err;
1460 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &snd_via8233_playback_ops);
1461 pcm->private_data = chip;
1462 strcpy(pcm->name, chip->card->shortname);
1463 chip->pcms[1] = pcm;
1464 /* set up playback */
Karsten Wiese4f550df2005-10-18 14:31:07 +02001465 init_viadev(chip, chip->playback_devno, 0x30, 3, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466
1467 if ((err = snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV_SG,
Takashi Iwaie437e3d2005-11-17 15:06:15 +01001468 snd_dma_pci_data(chip->pci),
1469 64*1024, 128*1024)) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470 return err;
1471
1472 return 0;
1473}
1474
1475/*
1476 * create a pcm instance for via686a/b
1477 */
Takashi Iwaie437e3d2005-11-17 15:06:15 +01001478static int __devinit snd_via686_pcm_new(struct via82xx *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479{
Takashi Iwaie437e3d2005-11-17 15:06:15 +01001480 struct snd_pcm *pcm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481 int err;
1482
1483 chip->playback_devno = 0;
1484 chip->capture_devno = 1;
1485 chip->num_devs = 2;
1486 chip->intr_mask = 0x77; /* FLAG | EOL for PB, CP, FM */
1487
1488 err = snd_pcm_new(chip->card, chip->card->shortname, 0, 1, 1, &pcm);
1489 if (err < 0)
1490 return err;
1491 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &snd_via686_playback_ops);
1492 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &snd_via686_capture_ops);
1493 pcm->private_data = chip;
1494 strcpy(pcm->name, chip->card->shortname);
1495 chip->pcms[0] = pcm;
Karsten Wiese4f550df2005-10-18 14:31:07 +02001496 init_viadev(chip, 0, VIA_REG_PLAYBACK_STATUS, 0, 0);
1497 init_viadev(chip, 1, VIA_REG_CAPTURE_STATUS, 0, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498
1499 if ((err = snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV_SG,
Takashi Iwaie437e3d2005-11-17 15:06:15 +01001500 snd_dma_pci_data(chip->pci),
1501 64*1024, 128*1024)) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502 return err;
1503
1504 return 0;
1505}
1506
1507
1508/*
1509 * Mixer part
1510 */
1511
Takashi Iwaie437e3d2005-11-17 15:06:15 +01001512static int snd_via8233_capture_source_info(struct snd_kcontrol *kcontrol,
1513 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514{
1515 /* formerly they were "Line" and "Mic", but it looks like that they
1516 * have nothing to do with the actual physical connections...
1517 */
1518 static char *texts[2] = {
1519 "Input1", "Input2"
1520 };
1521 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
1522 uinfo->count = 1;
1523 uinfo->value.enumerated.items = 2;
1524 if (uinfo->value.enumerated.item >= 2)
1525 uinfo->value.enumerated.item = 1;
1526 strcpy(uinfo->value.enumerated.name, texts[uinfo->value.enumerated.item]);
1527 return 0;
1528}
1529
Takashi Iwaie437e3d2005-11-17 15:06:15 +01001530static int snd_via8233_capture_source_get(struct snd_kcontrol *kcontrol,
1531 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532{
Takashi Iwaie437e3d2005-11-17 15:06:15 +01001533 struct via82xx *chip = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534 unsigned long port = chip->port + (kcontrol->id.index ? (VIA_REG_CAPTURE_CHANNEL + 0x10) : VIA_REG_CAPTURE_CHANNEL);
1535 ucontrol->value.enumerated.item[0] = inb(port) & VIA_REG_CAPTURE_CHANNEL_MIC ? 1 : 0;
1536 return 0;
1537}
1538
Takashi Iwaie437e3d2005-11-17 15:06:15 +01001539static int snd_via8233_capture_source_put(struct snd_kcontrol *kcontrol,
1540 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541{
Takashi Iwaie437e3d2005-11-17 15:06:15 +01001542 struct via82xx *chip = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543 unsigned long port = chip->port + (kcontrol->id.index ? (VIA_REG_CAPTURE_CHANNEL + 0x10) : VIA_REG_CAPTURE_CHANNEL);
1544 u8 val, oval;
1545
1546 spin_lock_irq(&chip->reg_lock);
1547 oval = inb(port);
1548 val = oval & ~VIA_REG_CAPTURE_CHANNEL_MIC;
1549 if (ucontrol->value.enumerated.item[0])
1550 val |= VIA_REG_CAPTURE_CHANNEL_MIC;
1551 if (val != oval)
1552 outb(val, port);
1553 spin_unlock_irq(&chip->reg_lock);
1554 return val != oval;
1555}
1556
Takashi Iwaie437e3d2005-11-17 15:06:15 +01001557static struct snd_kcontrol_new snd_via8233_capture_source __devinitdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558 .name = "Input Source Select",
1559 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1560 .info = snd_via8233_capture_source_info,
1561 .get = snd_via8233_capture_source_get,
1562 .put = snd_via8233_capture_source_put,
1563};
1564
Takashi Iwaie437e3d2005-11-17 15:06:15 +01001565static int snd_via8233_dxs3_spdif_info(struct snd_kcontrol *kcontrol,
1566 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567{
1568 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
1569 uinfo->count = 1;
1570 uinfo->value.integer.min = 0;
1571 uinfo->value.integer.max = 1;
1572 return 0;
1573}
1574
Takashi Iwaie437e3d2005-11-17 15:06:15 +01001575static int snd_via8233_dxs3_spdif_get(struct snd_kcontrol *kcontrol,
1576 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577{
Takashi Iwaie437e3d2005-11-17 15:06:15 +01001578 struct via82xx *chip = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579 u8 val;
1580
1581 pci_read_config_byte(chip->pci, VIA8233_SPDIF_CTRL, &val);
1582 ucontrol->value.integer.value[0] = (val & VIA8233_SPDIF_DX3) ? 1 : 0;
1583 return 0;
1584}
1585
Takashi Iwaie437e3d2005-11-17 15:06:15 +01001586static int snd_via8233_dxs3_spdif_put(struct snd_kcontrol *kcontrol,
1587 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588{
Takashi Iwaie437e3d2005-11-17 15:06:15 +01001589 struct via82xx *chip = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590 u8 val, oval;
1591
1592 pci_read_config_byte(chip->pci, VIA8233_SPDIF_CTRL, &oval);
1593 val = oval & ~VIA8233_SPDIF_DX3;
1594 if (ucontrol->value.integer.value[0])
1595 val |= VIA8233_SPDIF_DX3;
1596 /* save the spdif flag for rate filtering */
1597 chip->spdif_on = ucontrol->value.integer.value[0] ? 1 : 0;
1598 if (val != oval) {
1599 pci_write_config_byte(chip->pci, VIA8233_SPDIF_CTRL, val);
1600 return 1;
1601 }
1602 return 0;
1603}
1604
Takashi Iwaie437e3d2005-11-17 15:06:15 +01001605static struct snd_kcontrol_new snd_via8233_dxs3_spdif_control __devinitdata = {
Clemens Ladisch10e8d782005-08-03 13:40:08 +02001606 .name = SNDRV_CTL_NAME_IEC958("Output ",NONE,SWITCH),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1608 .info = snd_via8233_dxs3_spdif_info,
1609 .get = snd_via8233_dxs3_spdif_get,
1610 .put = snd_via8233_dxs3_spdif_put,
1611};
1612
Takashi Iwaie437e3d2005-11-17 15:06:15 +01001613static int snd_via8233_dxs_volume_info(struct snd_kcontrol *kcontrol,
1614 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615{
1616 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
1617 uinfo->count = 2;
1618 uinfo->value.integer.min = 0;
1619 uinfo->value.integer.max = VIA_DXS_MAX_VOLUME;
1620 return 0;
1621}
1622
Takashi Iwaie437e3d2005-11-17 15:06:15 +01001623static int snd_via8233_dxs_volume_get(struct snd_kcontrol *kcontrol,
1624 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625{
Takashi Iwaie437e3d2005-11-17 15:06:15 +01001626 struct via82xx *chip = snd_kcontrol_chip(kcontrol);
Honza Maly00f226d2005-10-14 18:18:01 +02001627 unsigned int idx = snd_ctl_get_ioff(kcontrol, &ucontrol->id);
1628
1629 ucontrol->value.integer.value[0] = VIA_DXS_MAX_VOLUME - chip->playback_volume[idx][0];
1630 ucontrol->value.integer.value[1] = VIA_DXS_MAX_VOLUME - chip->playback_volume[idx][1];
1631 return 0;
1632}
1633
Takashi Iwaie437e3d2005-11-17 15:06:15 +01001634static int snd_via8233_pcmdxs_volume_get(struct snd_kcontrol *kcontrol,
1635 struct snd_ctl_elem_value *ucontrol)
Honza Maly00f226d2005-10-14 18:18:01 +02001636{
Takashi Iwaie437e3d2005-11-17 15:06:15 +01001637 struct via82xx *chip = snd_kcontrol_chip(kcontrol);
Honza Maly00f226d2005-10-14 18:18:01 +02001638 ucontrol->value.integer.value[0] = VIA_DXS_MAX_VOLUME - chip->playback_volume_c[0];
1639 ucontrol->value.integer.value[1] = VIA_DXS_MAX_VOLUME - chip->playback_volume_c[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640 return 0;
1641}
1642
Takashi Iwaie437e3d2005-11-17 15:06:15 +01001643static int snd_via8233_dxs_volume_put(struct snd_kcontrol *kcontrol,
1644 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645{
Takashi Iwaie437e3d2005-11-17 15:06:15 +01001646 struct via82xx *chip = snd_kcontrol_chip(kcontrol);
Honza Maly00f226d2005-10-14 18:18:01 +02001647 unsigned int idx = snd_ctl_get_ioff(kcontrol, &ucontrol->id);
1648 unsigned long port = chip->port + 0x10 * idx;
1649 unsigned char val;
1650 int i, change = 0;
1651
1652 for (i = 0; i < 2; i++) {
1653 val = ucontrol->value.integer.value[i];
1654 if (val > VIA_DXS_MAX_VOLUME)
1655 val = VIA_DXS_MAX_VOLUME;
1656 val = VIA_DXS_MAX_VOLUME - val;
1657 change |= val != chip->playback_volume[idx][i];
1658 if (change) {
1659 chip->playback_volume[idx][i] = val;
1660 outb(val, port + VIA_REG_OFS_PLAYBACK_VOLUME_L + i);
1661 }
1662 }
1663 return change;
1664}
1665
Takashi Iwaie437e3d2005-11-17 15:06:15 +01001666static int snd_via8233_pcmdxs_volume_put(struct snd_kcontrol *kcontrol,
1667 struct snd_ctl_elem_value *ucontrol)
Honza Maly00f226d2005-10-14 18:18:01 +02001668{
Takashi Iwaie437e3d2005-11-17 15:06:15 +01001669 struct via82xx *chip = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670 unsigned int idx;
1671 unsigned char val;
1672 int i, change = 0;
1673
1674 for (i = 0; i < 2; i++) {
1675 val = ucontrol->value.integer.value[i];
1676 if (val > VIA_DXS_MAX_VOLUME)
1677 val = VIA_DXS_MAX_VOLUME;
1678 val = VIA_DXS_MAX_VOLUME - val;
Honza Maly00f226d2005-10-14 18:18:01 +02001679 if (val != chip->playback_volume_c[i]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680 change = 1;
Honza Maly00f226d2005-10-14 18:18:01 +02001681 chip->playback_volume_c[i] = val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682 for (idx = 0; idx < 4; idx++) {
1683 unsigned long port = chip->port + 0x10 * idx;
Honza Maly00f226d2005-10-14 18:18:01 +02001684 chip->playback_volume[idx][i] = val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685 outb(val, port + VIA_REG_OFS_PLAYBACK_VOLUME_L + i);
1686 }
1687 }
1688 }
1689 return change;
1690}
1691
Takashi Iwaie437e3d2005-11-17 15:06:15 +01001692static struct snd_kcontrol_new snd_via8233_pcmdxs_volume_control __devinitdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693 .name = "PCM Playback Volume",
1694 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1695 .info = snd_via8233_dxs_volume_info,
Honza Maly00f226d2005-10-14 18:18:01 +02001696 .get = snd_via8233_pcmdxs_volume_get,
1697 .put = snd_via8233_pcmdxs_volume_put,
1698};
1699
Takashi Iwaie437e3d2005-11-17 15:06:15 +01001700static struct snd_kcontrol_new snd_via8233_dxs_volume_control __devinitdata = {
Honza Maly00f226d2005-10-14 18:18:01 +02001701 .name = "VIA DXS Playback Volume",
1702 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1703 .count = 4,
1704 .info = snd_via8233_dxs_volume_info,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705 .get = snd_via8233_dxs_volume_get,
1706 .put = snd_via8233_dxs_volume_put,
1707};
1708
1709/*
1710 */
1711
Takashi Iwaie437e3d2005-11-17 15:06:15 +01001712static void snd_via82xx_mixer_free_ac97_bus(struct snd_ac97_bus *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713{
Takashi Iwaie437e3d2005-11-17 15:06:15 +01001714 struct via82xx *chip = bus->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715 chip->ac97_bus = NULL;
1716}
1717
Takashi Iwaie437e3d2005-11-17 15:06:15 +01001718static void snd_via82xx_mixer_free_ac97(struct snd_ac97 *ac97)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719{
Takashi Iwaie437e3d2005-11-17 15:06:15 +01001720 struct via82xx *chip = ac97->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721 chip->ac97 = NULL;
1722}
1723
1724static struct ac97_quirk ac97_quirks[] = {
1725 {
Jaroslav Kysela69ad07c2005-05-30 14:48:16 +02001726 .subvendor = 0x1106,
1727 .subdevice = 0x4161,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728 .codec_id = 0x56494161, /* VT1612A */
1729 .name = "Soltek SL-75DRV5",
1730 .type = AC97_TUNE_NONE
1731 },
1732 { /* FIXME: which codec? */
Jaroslav Kysela69ad07c2005-05-30 14:48:16 +02001733 .subvendor = 0x1106,
1734 .subdevice = 0x4161,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735 .name = "ASRock K7VT2",
1736 .type = AC97_TUNE_HP_ONLY
1737 },
1738 {
Jaroslav Kysela69ad07c2005-05-30 14:48:16 +02001739 .subvendor = 0x1019,
1740 .subdevice = 0x0a81,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741 .name = "ECS K7VTA3",
1742 .type = AC97_TUNE_HP_ONLY
1743 },
1744 {
Jaroslav Kysela69ad07c2005-05-30 14:48:16 +02001745 .subvendor = 0x1019,
1746 .subdevice = 0x0a85,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747 .name = "ECS L7VMM2",
1748 .type = AC97_TUNE_HP_ONLY
1749 },
1750 {
Jaroslav Kysela69ad07c2005-05-30 14:48:16 +02001751 .subvendor = 0x1849,
1752 .subdevice = 0x3059,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753 .name = "ASRock K7VM2",
1754 .type = AC97_TUNE_HP_ONLY /* VT1616 */
1755 },
1756 {
Jaroslav Kysela69ad07c2005-05-30 14:48:16 +02001757 .subvendor = 0x14cd,
1758 .subdevice = 0x7002,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759 .name = "Unknown",
1760 .type = AC97_TUNE_ALC_JACK
1761 },
1762 {
Jaroslav Kysela69ad07c2005-05-30 14:48:16 +02001763 .subvendor = 0x1071,
1764 .subdevice = 0x8590,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765 .name = "Mitac Mobo",
1766 .type = AC97_TUNE_ALC_JACK
1767 },
1768 {
Jaroslav Kysela69ad07c2005-05-30 14:48:16 +02001769 .subvendor = 0x161f,
1770 .subdevice = 0x202b,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771 .name = "Arima Notebook",
1772 .type = AC97_TUNE_HP_ONLY,
1773 },
Takashi Iwaidac8ddd2005-12-14 12:00:46 +01001774 {
1775 .subvendor = 0x161f,
1776 .subdevice = 0x2032,
1777 .name = "Targa Traveller 811",
1778 .type = AC97_TUNE_HP_ONLY,
1779 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780 { } /* terminator */
1781};
1782
Takashi Iwaie437e3d2005-11-17 15:06:15 +01001783static int __devinit snd_via82xx_mixer_new(struct via82xx *chip, const char *quirk_override)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784{
Takashi Iwaie437e3d2005-11-17 15:06:15 +01001785 struct snd_ac97_template ac97;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786 int err;
Takashi Iwaie437e3d2005-11-17 15:06:15 +01001787 static struct snd_ac97_bus_ops ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788 .write = snd_via82xx_codec_write,
1789 .read = snd_via82xx_codec_read,
1790 .wait = snd_via82xx_codec_wait,
1791 };
1792
1793 if ((err = snd_ac97_bus(chip->card, 0, &ops, chip, &chip->ac97_bus)) < 0)
1794 return err;
1795 chip->ac97_bus->private_free = snd_via82xx_mixer_free_ac97_bus;
1796 chip->ac97_bus->clock = chip->ac97_clock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797
1798 memset(&ac97, 0, sizeof(ac97));
1799 ac97.private_data = chip;
1800 ac97.private_free = snd_via82xx_mixer_free_ac97;
1801 ac97.pci = chip->pci;
Sasha Khapyorsky2ba71972005-09-29 12:58:24 +02001802 ac97.scaps = AC97_SCAP_SKIP_MODEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803 if ((err = snd_ac97_mixer(chip->ac97_bus, &ac97, &chip->ac97)) < 0)
1804 return err;
1805
1806 snd_ac97_tune_hardware(chip->ac97, ac97_quirks, quirk_override);
1807
1808 if (chip->chip_type != TYPE_VIA686) {
1809 /* use slot 10/11 */
1810 snd_ac97_update_bits(chip->ac97, AC97_EXTENDED_STATUS, 0x03 << 4, 0x03 << 4);
1811 }
1812
1813 return 0;
1814}
1815
1816#ifdef SUPPORT_JOYSTICK
1817#define JOYSTICK_ADDR 0x200
Takashi Iwaie437e3d2005-11-17 15:06:15 +01001818static int __devinit snd_via686_create_gameport(struct via82xx *chip, unsigned char *legacy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819{
1820 struct gameport *gp;
1821 struct resource *r;
1822
Clemens Ladischb7fe4622005-10-04 08:46:51 +02001823 if (!joystick)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824 return -ENODEV;
1825
1826 r = request_region(JOYSTICK_ADDR, 8, "VIA686 gameport");
1827 if (!r) {
Takashi Iwaie437e3d2005-11-17 15:06:15 +01001828 printk(KERN_WARNING "via82xx: cannot reserve joystick port 0x%#x\n",
1829 JOYSTICK_ADDR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830 return -EBUSY;
1831 }
1832
1833 chip->gameport = gp = gameport_allocate_port();
1834 if (!gp) {
1835 printk(KERN_ERR "via82xx: cannot allocate memory for gameport\n");
Takashi Iwaib1d57762005-10-10 11:56:31 +02001836 release_and_free_resource(r);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837 return -ENOMEM;
1838 }
1839
1840 gameport_set_name(gp, "VIA686 Gameport");
1841 gameport_set_phys(gp, "pci%s/gameport0", pci_name(chip->pci));
1842 gameport_set_dev_parent(gp, &chip->pci->dev);
1843 gp->io = JOYSTICK_ADDR;
1844 gameport_set_port_data(gp, r);
1845
1846 /* Enable legacy joystick port */
1847 *legacy |= VIA_FUNC_ENABLE_GAME;
1848 pci_write_config_byte(chip->pci, VIA_FUNC_ENABLE, *legacy);
1849
1850 gameport_register_port(chip->gameport);
1851
1852 return 0;
1853}
1854
Takashi Iwaie437e3d2005-11-17 15:06:15 +01001855static void snd_via686_free_gameport(struct via82xx *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856{
1857 if (chip->gameport) {
1858 struct resource *r = gameport_get_port_data(chip->gameport);
1859
1860 gameport_unregister_port(chip->gameport);
1861 chip->gameport = NULL;
Takashi Iwaib1d57762005-10-10 11:56:31 +02001862 release_and_free_resource(r);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863 }
1864}
1865#else
Takashi Iwaie437e3d2005-11-17 15:06:15 +01001866static inline int snd_via686_create_gameport(struct via82xx *chip, unsigned char *legacy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867{
1868 return -ENOSYS;
1869}
Takashi Iwaie437e3d2005-11-17 15:06:15 +01001870static inline void snd_via686_free_gameport(struct via82xx *chip) { }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871#endif
1872
1873
1874/*
1875 *
1876 */
1877
Takashi Iwaie437e3d2005-11-17 15:06:15 +01001878static int __devinit snd_via8233_init_misc(struct via82xx *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879{
1880 int i, err, caps;
1881 unsigned char val;
1882
1883 caps = chip->chip_type == TYPE_VIA8233A ? 1 : 2;
1884 for (i = 0; i < caps; i++) {
1885 snd_via8233_capture_source.index = i;
1886 err = snd_ctl_add(chip->card, snd_ctl_new1(&snd_via8233_capture_source, chip));
1887 if (err < 0)
1888 return err;
1889 }
1890 if (ac97_can_spdif(chip->ac97)) {
1891 err = snd_ctl_add(chip->card, snd_ctl_new1(&snd_via8233_dxs3_spdif_control, chip));
1892 if (err < 0)
1893 return err;
1894 }
1895 if (chip->chip_type != TYPE_VIA8233A) {
1896 /* when no h/w PCM volume control is found, use DXS volume control
1897 * as the PCM vol control
1898 */
Takashi Iwaie437e3d2005-11-17 15:06:15 +01001899 struct snd_ctl_elem_id sid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900 memset(&sid, 0, sizeof(sid));
1901 strcpy(sid.name, "PCM Playback Volume");
1902 sid.iface = SNDRV_CTL_ELEM_IFACE_MIXER;
1903 if (! snd_ctl_find_id(chip->card, &sid)) {
Honza Maly00f226d2005-10-14 18:18:01 +02001904 snd_printd(KERN_INFO "Using DXS as PCM Playback\n");
1905 err = snd_ctl_add(chip->card, snd_ctl_new1(&snd_via8233_pcmdxs_volume_control, chip));
1906 if (err < 0)
1907 return err;
1908 }
1909 else /* Using DXS when PCM emulation is enabled is really weird */
1910 {
1911 /* Standalone DXS controls */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912 err = snd_ctl_add(chip->card, snd_ctl_new1(&snd_via8233_dxs_volume_control, chip));
1913 if (err < 0)
1914 return err;
1915 }
1916 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917 /* select spdif data slot 10/11 */
1918 pci_read_config_byte(chip->pci, VIA8233_SPDIF_CTRL, &val);
1919 val = (val & ~VIA8233_SPDIF_SLOT_MASK) | VIA8233_SPDIF_SLOT_1011;
1920 val &= ~VIA8233_SPDIF_DX3; /* SPDIF off as default */
1921 pci_write_config_byte(chip->pci, VIA8233_SPDIF_CTRL, val);
1922
1923 return 0;
1924}
1925
Takashi Iwaie437e3d2005-11-17 15:06:15 +01001926static int __devinit snd_via686_init_misc(struct via82xx *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927{
1928 unsigned char legacy, legacy_cfg;
1929 int rev_h = 0;
1930
1931 legacy = chip->old_legacy;
1932 legacy_cfg = chip->old_legacy_cfg;
1933 legacy |= VIA_FUNC_MIDI_IRQMASK; /* FIXME: correct? (disable MIDI) */
1934 legacy &= ~VIA_FUNC_ENABLE_GAME; /* disable joystick */
1935 if (chip->revision >= VIA_REV_686_H) {
1936 rev_h = 1;
Clemens Ladischb7fe4622005-10-04 08:46:51 +02001937 if (mpu_port >= 0x200) { /* force MIDI */
1938 mpu_port &= 0xfffc;
1939 pci_write_config_dword(chip->pci, 0x18, mpu_port | 0x01);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940#ifdef CONFIG_PM
Clemens Ladischb7fe4622005-10-04 08:46:51 +02001941 chip->mpu_port_saved = mpu_port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942#endif
1943 } else {
Clemens Ladischb7fe4622005-10-04 08:46:51 +02001944 mpu_port = pci_resource_start(chip->pci, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945 }
1946 } else {
Clemens Ladischb7fe4622005-10-04 08:46:51 +02001947 switch (mpu_port) { /* force MIDI */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948 case 0x300:
1949 case 0x310:
1950 case 0x320:
1951 case 0x330:
1952 legacy_cfg &= ~(3 << 2);
Clemens Ladischb7fe4622005-10-04 08:46:51 +02001953 legacy_cfg |= (mpu_port & 0x0030) >> 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954 break;
1955 default: /* no, use BIOS settings */
1956 if (legacy & VIA_FUNC_ENABLE_MIDI)
Clemens Ladischb7fe4622005-10-04 08:46:51 +02001957 mpu_port = 0x300 + ((legacy_cfg & 0x000c) << 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958 break;
1959 }
1960 }
Clemens Ladischb7fe4622005-10-04 08:46:51 +02001961 if (mpu_port >= 0x200 &&
1962 (chip->mpu_res = request_region(mpu_port, 2, "VIA82xx MPU401"))
1963 != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964 if (rev_h)
1965 legacy |= VIA_FUNC_MIDI_PNP; /* enable PCI I/O 2 */
1966 legacy |= VIA_FUNC_ENABLE_MIDI;
1967 } else {
1968 if (rev_h)
1969 legacy &= ~VIA_FUNC_MIDI_PNP; /* disable PCI I/O 2 */
1970 legacy &= ~VIA_FUNC_ENABLE_MIDI;
Clemens Ladischb7fe4622005-10-04 08:46:51 +02001971 mpu_port = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972 }
1973
1974 pci_write_config_byte(chip->pci, VIA_FUNC_ENABLE, legacy);
1975 pci_write_config_byte(chip->pci, VIA_PNP_CONTROL, legacy_cfg);
1976 if (chip->mpu_res) {
1977 if (snd_mpu401_uart_new(chip->card, 0, MPU401_HW_VIA686A,
Clemens Ladischb7fe4622005-10-04 08:46:51 +02001978 mpu_port, 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979 chip->irq, 0, &chip->rmidi) < 0) {
Clemens Ladischb7fe4622005-10-04 08:46:51 +02001980 printk(KERN_WARNING "unable to initialize MPU-401"
1981 " at 0x%lx, skipping\n", mpu_port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982 legacy &= ~VIA_FUNC_ENABLE_MIDI;
1983 } else {
1984 legacy &= ~VIA_FUNC_MIDI_IRQMASK; /* enable MIDI interrupt */
1985 }
1986 pci_write_config_byte(chip->pci, VIA_FUNC_ENABLE, legacy);
1987 }
1988
Clemens Ladischb7fe4622005-10-04 08:46:51 +02001989 snd_via686_create_gameport(chip, &legacy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990
1991#ifdef CONFIG_PM
1992 chip->legacy_saved = legacy;
1993 chip->legacy_cfg_saved = legacy_cfg;
1994#endif
1995
1996 return 0;
1997}
1998
1999
2000/*
2001 * proc interface
2002 */
Takashi Iwaie437e3d2005-11-17 15:06:15 +01002003static void snd_via82xx_proc_read(struct snd_info_entry *entry,
2004 struct snd_info_buffer *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005{
Takashi Iwaie437e3d2005-11-17 15:06:15 +01002006 struct via82xx *chip = entry->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007 int i;
2008
2009 snd_iprintf(buffer, "%s\n\n", chip->card->longname);
2010 for (i = 0; i < 0xa0; i += 4) {
2011 snd_iprintf(buffer, "%02x: %08x\n", i, inl(chip->port + i));
2012 }
2013}
2014
Takashi Iwaie437e3d2005-11-17 15:06:15 +01002015static void __devinit snd_via82xx_proc_init(struct via82xx *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016{
Takashi Iwaie437e3d2005-11-17 15:06:15 +01002017 struct snd_info_entry *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018
2019 if (! snd_card_proc_new(chip->card, "via82xx", &entry))
2020 snd_info_set_text_ops(entry, chip, 1024, snd_via82xx_proc_read);
2021}
2022
2023/*
2024 *
2025 */
2026
Takashi Iwaie437e3d2005-11-17 15:06:15 +01002027static int snd_via82xx_chip_init(struct via82xx *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028{
2029 unsigned int val;
Nishanth Aravamudanef21ca22005-07-09 10:13:22 +02002030 unsigned long end_time;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031 unsigned char pval;
2032
2033#if 0 /* broken on K7M? */
2034 if (chip->chip_type == TYPE_VIA686)
2035 /* disable all legacy ports */
2036 pci_write_config_byte(chip->pci, VIA_FUNC_ENABLE, 0);
2037#endif
2038 pci_read_config_byte(chip->pci, VIA_ACLINK_STAT, &pval);
2039 if (! (pval & VIA_ACLINK_C00_READY)) { /* codec not ready? */
2040 /* deassert ACLink reset, force SYNC */
2041 pci_write_config_byte(chip->pci, VIA_ACLINK_CTRL,
2042 VIA_ACLINK_CTRL_ENABLE |
2043 VIA_ACLINK_CTRL_RESET |
2044 VIA_ACLINK_CTRL_SYNC);
2045 udelay(100);
2046#if 1 /* FIXME: should we do full reset here for all chip models? */
2047 pci_write_config_byte(chip->pci, VIA_ACLINK_CTRL, 0x00);
2048 udelay(100);
2049#else
2050 /* deassert ACLink reset, force SYNC (warm AC'97 reset) */
2051 pci_write_config_byte(chip->pci, VIA_ACLINK_CTRL,
2052 VIA_ACLINK_CTRL_RESET|VIA_ACLINK_CTRL_SYNC);
2053 udelay(2);
2054#endif
2055 /* ACLink on, deassert ACLink reset, VSR, SGD data out */
2056 /* note - FM data out has trouble with non VRA codecs !! */
2057 pci_write_config_byte(chip->pci, VIA_ACLINK_CTRL, VIA_ACLINK_CTRL_INIT);
2058 udelay(100);
2059 }
2060
2061 /* Make sure VRA is enabled, in case we didn't do a
2062 * complete codec reset, above */
2063 pci_read_config_byte(chip->pci, VIA_ACLINK_CTRL, &pval);
2064 if ((pval & VIA_ACLINK_CTRL_INIT) != VIA_ACLINK_CTRL_INIT) {
2065 /* ACLink on, deassert ACLink reset, VSR, SGD data out */
2066 /* note - FM data out has trouble with non VRA codecs !! */
2067 pci_write_config_byte(chip->pci, VIA_ACLINK_CTRL, VIA_ACLINK_CTRL_INIT);
2068 udelay(100);
2069 }
2070
2071 /* wait until codec ready */
Nishanth Aravamudanef21ca22005-07-09 10:13:22 +02002072 end_time = jiffies + msecs_to_jiffies(750);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073 do {
2074 pci_read_config_byte(chip->pci, VIA_ACLINK_STAT, &pval);
2075 if (pval & VIA_ACLINK_C00_READY) /* primary codec ready */
2076 break;
Nishanth Aravamudan8433a502005-10-24 15:02:37 +02002077 schedule_timeout_uninterruptible(1);
Nishanth Aravamudanef21ca22005-07-09 10:13:22 +02002078 } while (time_before(jiffies, end_time));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079
2080 if ((val = snd_via82xx_codec_xread(chip)) & VIA_REG_AC97_BUSY)
Takashi Iwai99b359b2005-10-20 18:26:44 +02002081 snd_printk(KERN_ERR "AC'97 codec is not ready [0x%x]\n", val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082
2083#if 0 /* FIXME: we don't support the second codec yet so skip the detection now.. */
2084 snd_via82xx_codec_xwrite(chip, VIA_REG_AC97_READ |
2085 VIA_REG_AC97_SECONDARY_VALID |
2086 (VIA_REG_AC97_CODEC_ID_SECONDARY << VIA_REG_AC97_CODEC_ID_SHIFT));
Nishanth Aravamudanef21ca22005-07-09 10:13:22 +02002087 end_time = jiffies + msecs_to_jiffies(750);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088 snd_via82xx_codec_xwrite(chip, VIA_REG_AC97_READ |
2089 VIA_REG_AC97_SECONDARY_VALID |
2090 (VIA_REG_AC97_CODEC_ID_SECONDARY << VIA_REG_AC97_CODEC_ID_SHIFT));
2091 do {
2092 if ((val = snd_via82xx_codec_xread(chip)) & VIA_REG_AC97_SECONDARY_VALID) {
2093 chip->ac97_secondary = 1;
2094 goto __ac97_ok2;
2095 }
Nishanth Aravamudan8433a502005-10-24 15:02:37 +02002096 schedule_timeout_interruptible(1);
Nishanth Aravamudanef21ca22005-07-09 10:13:22 +02002097 } while (time_before(jiffies, end_time));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098 /* This is ok, the most of motherboards have only one codec */
2099
2100 __ac97_ok2:
2101#endif
2102
2103 if (chip->chip_type == TYPE_VIA686) {
2104 /* route FM trap to IRQ, disable FM trap */
2105 pci_write_config_byte(chip->pci, VIA_FM_NMI_CTRL, 0);
2106 /* disable all GPI interrupts */
2107 outl(0, VIAREG(chip, GPI_INTR));
2108 }
2109
2110 if (chip->chip_type != TYPE_VIA686) {
2111 /* Workaround for Award BIOS bug:
2112 * DXS channels don't work properly with VRA if MC97 is disabled.
2113 */
2114 struct pci_dev *pci;
Jiri Slaby0dd119f2005-09-07 14:28:33 +02002115 pci = pci_get_device(0x1106, 0x3068, NULL); /* MC97 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116 if (pci) {
2117 unsigned char data;
2118 pci_read_config_byte(pci, 0x44, &data);
2119 pci_write_config_byte(pci, 0x44, data | 0x40);
Jiri Slaby0dd119f2005-09-07 14:28:33 +02002120 pci_dev_put(pci);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121 }
2122 }
2123
2124 if (chip->chip_type != TYPE_VIA8233A) {
2125 int i, idx;
2126 for (idx = 0; idx < 4; idx++) {
2127 unsigned long port = chip->port + 0x10 * idx;
Honza Maly00f226d2005-10-14 18:18:01 +02002128 for (i = 0; i < 2; i++) {
2129 chip->playback_volume[idx][i]=chip->playback_volume_c[i];
Takashi Iwaie437e3d2005-11-17 15:06:15 +01002130 outb(chip->playback_volume_c[i],
2131 port + VIA_REG_OFS_PLAYBACK_VOLUME_L + i);
Honza Maly00f226d2005-10-14 18:18:01 +02002132 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133 }
2134 }
2135
2136 return 0;
2137}
2138
2139#ifdef CONFIG_PM
2140/*
2141 * power management
2142 */
Takashi Iwai57feb832005-11-17 16:10:35 +01002143static int snd_via82xx_suspend(struct pci_dev *pci, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144{
Takashi Iwai57feb832005-11-17 16:10:35 +01002145 struct snd_card *card = pci_get_drvdata(pci);
2146 struct via82xx *chip = card->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147 int i;
2148
Takashi Iwai57feb832005-11-17 16:10:35 +01002149 snd_power_change_state(card, SNDRV_CTL_POWER_D3hot);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150 for (i = 0; i < 2; i++)
Takashi Iwai57feb832005-11-17 16:10:35 +01002151 snd_pcm_suspend_all(chip->pcms[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152 for (i = 0; i < chip->num_devs; i++)
2153 snd_via82xx_channel_reset(chip, &chip->devs[i]);
2154 synchronize_irq(chip->irq);
2155 snd_ac97_suspend(chip->ac97);
2156
2157 /* save misc values */
2158 if (chip->chip_type != TYPE_VIA686) {
2159 pci_read_config_byte(chip->pci, VIA8233_SPDIF_CTRL, &chip->spdif_ctrl_saved);
2160 chip->capture_src_saved[0] = inb(chip->port + VIA_REG_CAPTURE_CHANNEL);
2161 chip->capture_src_saved[1] = inb(chip->port + VIA_REG_CAPTURE_CHANNEL + 0x10);
2162 }
2163
Takashi Iwai57feb832005-11-17 16:10:35 +01002164 pci_set_power_state(pci, PCI_D3hot);
2165 pci_disable_device(pci);
2166 pci_save_state(pci);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167 return 0;
2168}
2169
Takashi Iwai57feb832005-11-17 16:10:35 +01002170static int snd_via82xx_resume(struct pci_dev *pci)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171{
Takashi Iwai57feb832005-11-17 16:10:35 +01002172 struct snd_card *card = pci_get_drvdata(pci);
2173 struct via82xx *chip = card->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174 int i;
2175
Takashi Iwai57feb832005-11-17 16:10:35 +01002176 pci_restore_state(pci);
2177 pci_enable_device(pci);
2178 pci_set_power_state(pci, PCI_D0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179
2180 snd_via82xx_chip_init(chip);
2181
2182 if (chip->chip_type == TYPE_VIA686) {
2183 if (chip->mpu_port_saved)
2184 pci_write_config_dword(chip->pci, 0x18, chip->mpu_port_saved | 0x01);
2185 pci_write_config_byte(chip->pci, VIA_FUNC_ENABLE, chip->legacy_saved);
2186 pci_write_config_byte(chip->pci, VIA_PNP_CONTROL, chip->legacy_cfg_saved);
2187 } else {
2188 pci_write_config_byte(chip->pci, VIA8233_SPDIF_CTRL, chip->spdif_ctrl_saved);
2189 outb(chip->capture_src_saved[0], chip->port + VIA_REG_CAPTURE_CHANNEL);
2190 outb(chip->capture_src_saved[1], chip->port + VIA_REG_CAPTURE_CHANNEL + 0x10);
2191 }
2192
2193 snd_ac97_resume(chip->ac97);
2194
2195 for (i = 0; i < chip->num_devs; i++)
2196 snd_via82xx_channel_reset(chip, &chip->devs[i]);
2197
Takashi Iwai57feb832005-11-17 16:10:35 +01002198 snd_power_change_state(card, SNDRV_CTL_POWER_D0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199 return 0;
2200}
2201#endif /* CONFIG_PM */
2202
Takashi Iwaie437e3d2005-11-17 15:06:15 +01002203static int snd_via82xx_free(struct via82xx *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204{
2205 unsigned int i;
2206
2207 if (chip->irq < 0)
2208 goto __end_hw;
2209 /* disable interrupts */
2210 for (i = 0; i < chip->num_devs; i++)
2211 snd_via82xx_channel_reset(chip, &chip->devs[i]);
2212 synchronize_irq(chip->irq);
2213 __end_hw:
2214 if (chip->irq >= 0)
Takashi Iwaie437e3d2005-11-17 15:06:15 +01002215 free_irq(chip->irq, chip);
Takashi Iwaib1d57762005-10-10 11:56:31 +02002216 release_and_free_resource(chip->mpu_res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217 pci_release_regions(chip->pci);
2218
2219 if (chip->chip_type == TYPE_VIA686) {
2220 snd_via686_free_gameport(chip);
2221 pci_write_config_byte(chip->pci, VIA_FUNC_ENABLE, chip->old_legacy);
2222 pci_write_config_byte(chip->pci, VIA_PNP_CONTROL, chip->old_legacy_cfg);
2223 }
2224 pci_disable_device(chip->pci);
2225 kfree(chip);
2226 return 0;
2227}
2228
Takashi Iwaie437e3d2005-11-17 15:06:15 +01002229static int snd_via82xx_dev_free(struct snd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230{
Takashi Iwaie437e3d2005-11-17 15:06:15 +01002231 struct via82xx *chip = device->device_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232 return snd_via82xx_free(chip);
2233}
2234
Takashi Iwaie437e3d2005-11-17 15:06:15 +01002235static int __devinit snd_via82xx_create(struct snd_card *card,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236 struct pci_dev *pci,
2237 int chip_type,
2238 int revision,
2239 unsigned int ac97_clock,
Takashi Iwaie437e3d2005-11-17 15:06:15 +01002240 struct via82xx ** r_via)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241{
Takashi Iwaie437e3d2005-11-17 15:06:15 +01002242 struct via82xx *chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243 int err;
Takashi Iwaie437e3d2005-11-17 15:06:15 +01002244 static struct snd_device_ops ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245 .dev_free = snd_via82xx_dev_free,
2246 };
2247
2248 if ((err = pci_enable_device(pci)) < 0)
2249 return err;
2250
Takashi Iwaie560d8d2005-09-09 14:21:46 +02002251 if ((chip = kzalloc(sizeof(*chip), GFP_KERNEL)) == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002252 pci_disable_device(pci);
2253 return -ENOMEM;
2254 }
2255
2256 chip->chip_type = chip_type;
2257 chip->revision = revision;
2258
2259 spin_lock_init(&chip->reg_lock);
2260 spin_lock_init(&chip->rates[0].lock);
2261 spin_lock_init(&chip->rates[1].lock);
2262 chip->card = card;
2263 chip->pci = pci;
2264 chip->irq = -1;
2265
2266 pci_read_config_byte(pci, VIA_FUNC_ENABLE, &chip->old_legacy);
2267 pci_read_config_byte(pci, VIA_PNP_CONTROL, &chip->old_legacy_cfg);
2268 pci_write_config_byte(chip->pci, VIA_FUNC_ENABLE,
2269 chip->old_legacy & ~(VIA_FUNC_ENABLE_SB|VIA_FUNC_ENABLE_FM));
2270
2271 if ((err = pci_request_regions(pci, card->driver)) < 0) {
2272 kfree(chip);
2273 pci_disable_device(pci);
2274 return err;
2275 }
2276 chip->port = pci_resource_start(pci, 0);
Karsten Wiese4f550df2005-10-18 14:31:07 +02002277 if (request_irq(pci->irq,
2278 chip_type == TYPE_VIA8233 ?
2279 snd_via8233_interrupt : snd_via686_interrupt,
2280 SA_INTERRUPT|SA_SHIRQ,
Takashi Iwaie437e3d2005-11-17 15:06:15 +01002281 card->driver, chip)) {
Takashi Iwai99b359b2005-10-20 18:26:44 +02002282 snd_printk(KERN_ERR "unable to grab IRQ %d\n", pci->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283 snd_via82xx_free(chip);
2284 return -EBUSY;
2285 }
2286 chip->irq = pci->irq;
2287 if (ac97_clock >= 8000 && ac97_clock <= 48000)
2288 chip->ac97_clock = ac97_clock;
2289 synchronize_irq(chip->irq);
2290
2291 if ((err = snd_via82xx_chip_init(chip)) < 0) {
2292 snd_via82xx_free(chip);
2293 return err;
2294 }
2295
2296 if ((err = snd_device_new(card, SNDRV_DEV_LOWLEVEL, chip, &ops)) < 0) {
2297 snd_via82xx_free(chip);
2298 return err;
2299 }
2300
2301 /* The 8233 ac97 controller does not implement the master bit
2302 * in the pci command register. IMHO this is a violation of the PCI spec.
2303 * We call pci_set_master here because it does not hurt. */
2304 pci_set_master(pci);
2305
2306 snd_card_set_dev(card, &pci->dev);
2307
2308 *r_via = chip;
2309 return 0;
2310}
2311
2312struct via823x_info {
2313 int revision;
2314 char *name;
2315 int type;
2316};
2317static struct via823x_info via823x_cards[] __devinitdata = {
2318 { VIA_REV_PRE_8233, "VIA 8233-Pre", TYPE_VIA8233 },
2319 { VIA_REV_8233C, "VIA 8233C", TYPE_VIA8233 },
2320 { VIA_REV_8233, "VIA 8233", TYPE_VIA8233 },
2321 { VIA_REV_8233A, "VIA 8233A", TYPE_VIA8233A },
2322 { VIA_REV_8235, "VIA 8235", TYPE_VIA8233 },
2323 { VIA_REV_8237, "VIA 8237", TYPE_VIA8233 },
Bastiaan Jacques8263c652006-04-18 17:04:04 +02002324 { VIA_REV_8251, "VIA 8251", TYPE_VIA8233 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002325};
2326
2327/*
2328 * auto detection of DXS channel supports.
2329 */
2330struct dxs_whitelist {
Jaroslav Kysela69ad07c2005-05-30 14:48:16 +02002331 unsigned short subvendor;
2332 unsigned short subdevice;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002333 unsigned short mask;
2334 short action; /* new dxs_support value */
2335};
2336
2337static int __devinit check_dxs_list(struct pci_dev *pci)
2338{
2339 static struct dxs_whitelist whitelist[] = {
Jaroslav Kysela69ad07c2005-05-30 14:48:16 +02002340 { .subvendor = 0x1005, .subdevice = 0x4710, .action = VIA_DXS_ENABLE }, /* Avance Logic Mobo */
2341 { .subvendor = 0x1019, .subdevice = 0x0996, .action = VIA_DXS_48K },
2342 { .subvendor = 0x1019, .subdevice = 0x0a81, .action = VIA_DXS_NO_VRA }, /* ECS K7VTA3 v8.0 */
2343 { .subvendor = 0x1019, .subdevice = 0x0a85, .action = VIA_DXS_NO_VRA }, /* ECS L7VMM2 */
Takashi Iwaidb990552005-09-16 19:07:52 +02002344 { .subvendor = 0x1019, .subdevice = 0xa101, .action = VIA_DXS_SRC },
Takashi Iwaia26e9d92006-04-06 19:59:21 +02002345 { .subvendor = 0x1019, .subdevice = 0xaa01, .action = VIA_DXS_SRC }, /* ECS K8T890-A */
Jaroslav Kysela69ad07c2005-05-30 14:48:16 +02002346 { .subvendor = 0x1025, .subdevice = 0x0033, .action = VIA_DXS_NO_VRA }, /* Acer Inspire 1353LM */
Takashi Iwaif347c772005-08-12 16:47:49 +02002347 { .subvendor = 0x1025, .subdevice = 0x0046, .action = VIA_DXS_SRC }, /* Acer Aspire 1524 WLMi */
Jaroslav Kysela69ad07c2005-05-30 14:48:16 +02002348 { .subvendor = 0x1043, .subdevice = 0x8095, .action = VIA_DXS_NO_VRA }, /* ASUS A7V8X (FIXME: possibly VIA_DXS_ENABLE?)*/
2349 { .subvendor = 0x1043, .subdevice = 0x80a1, .action = VIA_DXS_NO_VRA }, /* ASUS A7V8-X */
2350 { .subvendor = 0x1043, .subdevice = 0x80b0, .action = VIA_DXS_NO_VRA }, /* ASUS A7V600 & K8V*/
Takashi Iwaic66186e2005-09-29 13:49:44 +02002351 { .subvendor = 0x1043, .subdevice = 0x810d, .action = VIA_DXS_SRC }, /* ASUS */
Jaroslav Kysela69ad07c2005-05-30 14:48:16 +02002352 { .subvendor = 0x1043, .subdevice = 0x812a, .action = VIA_DXS_SRC }, /* ASUS A8V Deluxe */
Takashi Iwai6c1080c2006-01-04 12:15:07 +01002353 { .subvendor = 0x1043, .subdevice = 0x8174, .action = VIA_DXS_SRC }, /* ASUS */
Bastiaan Jacques8263c652006-04-18 17:04:04 +02002354 { .subvendor = 0x1043, .subdevice = 0x81b9, .action = VIA_DXS_SRC }, /* ASUS A8V-MX */
Jaroslav Kysela69ad07c2005-05-30 14:48:16 +02002355 { .subvendor = 0x1071, .subdevice = 0x8375, .action = VIA_DXS_NO_VRA }, /* Vobis/Yakumo/Mitac notebook */
Jaroslav Kysela96d07812005-06-07 08:56:24 +02002356 { .subvendor = 0x1071, .subdevice = 0x8399, .action = VIA_DXS_NO_VRA }, /* Umax AB 595T (VIA K8N800A - VT8237) */
Jaroslav Kysela69ad07c2005-05-30 14:48:16 +02002357 { .subvendor = 0x10cf, .subdevice = 0x118e, .action = VIA_DXS_ENABLE }, /* FSC laptop */
2358 { .subvendor = 0x1106, .subdevice = 0x4161, .action = VIA_DXS_NO_VRA }, /* ASRock K7VT2 */
2359 { .subvendor = 0x1106, .subdevice = 0x4552, .action = VIA_DXS_NO_VRA }, /* QDI Kudoz 7X/600-6AL */
2360 { .subvendor = 0x1106, .subdevice = 0xaa01, .action = VIA_DXS_NO_VRA }, /* EPIA MII */
2361 { .subvendor = 0x1106, .subdevice = 0xc001, .action = VIA_DXS_SRC }, /* Insight P4-ITX */
2362 { .subvendor = 0x1297, .subdevice = 0xa232, .action = VIA_DXS_ENABLE }, /* Shuttle ?? */
2363 { .subvendor = 0x1297, .subdevice = 0xc160, .action = VIA_DXS_ENABLE }, /* Shuttle SK41G */
2364 { .subvendor = 0x1458, .subdevice = 0xa002, .action = VIA_DXS_ENABLE }, /* Gigabyte GA-7VAXP */
2365 { .subvendor = 0x1462, .subdevice = 0x0080, .action = VIA_DXS_SRC }, /* MSI K8T Neo-FIS2R */
Takashi Iwai352dbfd2005-08-19 17:49:10 +02002366 { .subvendor = 0x1462, .subdevice = 0x0430, .action = VIA_DXS_SRC }, /* MSI 7142 (K8MM-V) */
Takashi Iwaic1b8f5f2005-11-08 17:44:37 +01002367 { .subvendor = 0x1462, .subdevice = 0x0470, .action = VIA_DXS_SRC }, /* MSI KT880 Delta-FSR */
Jaroslav Kysela69ad07c2005-05-30 14:48:16 +02002368 { .subvendor = 0x1462, .subdevice = 0x3800, .action = VIA_DXS_ENABLE }, /* MSI KT266 */
2369 { .subvendor = 0x1462, .subdevice = 0x5901, .action = VIA_DXS_NO_VRA }, /* MSI KT6 Delta-SR */
2370 { .subvendor = 0x1462, .subdevice = 0x7023, .action = VIA_DXS_NO_VRA }, /* MSI K8T Neo2-FI */
2371 { .subvendor = 0x1462, .subdevice = 0x7120, .action = VIA_DXS_ENABLE }, /* MSI KT4V */
Takashi Iwaif347c772005-08-12 16:47:49 +02002372 { .subvendor = 0x1462, .subdevice = 0x7142, .action = VIA_DXS_ENABLE }, /* MSI K8MM-V */
Takashi Iwai802c00f2006-01-23 15:31:11 +01002373 { .subvendor = 0x1462, .subdevice = 0xb012, .action = VIA_DXS_SRC }, /* P4M800/VIA8237R */
Jaroslav Kysela69ad07c2005-05-30 14:48:16 +02002374 { .subvendor = 0x147b, .subdevice = 0x1401, .action = VIA_DXS_ENABLE }, /* ABIT KD7(-RAID) */
2375 { .subvendor = 0x147b, .subdevice = 0x1411, .action = VIA_DXS_ENABLE }, /* ABIT VA-20 */
2376 { .subvendor = 0x147b, .subdevice = 0x1413, .action = VIA_DXS_ENABLE }, /* ABIT KV8 Pro */
2377 { .subvendor = 0x147b, .subdevice = 0x1415, .action = VIA_DXS_NO_VRA }, /* Abit AV8 */
2378 { .subvendor = 0x14ff, .subdevice = 0x0403, .action = VIA_DXS_ENABLE }, /* Twinhead mobo */
Takashi Iwai69c3e5f2005-07-27 17:30:14 +02002379 { .subvendor = 0x14ff, .subdevice = 0x0408, .action = VIA_DXS_SRC }, /* Twinhead laptop */
Takashi Iwai94651a52005-10-10 12:08:01 +02002380 { .subvendor = 0x1558, .subdevice = 0x4701, .action = VIA_DXS_SRC }, /* Clevo D470 */
Jaroslav Kysela69ad07c2005-05-30 14:48:16 +02002381 { .subvendor = 0x1584, .subdevice = 0x8120, .action = VIA_DXS_ENABLE }, /* Gericom/Targa/Vobis/Uniwill laptop */
2382 { .subvendor = 0x1584, .subdevice = 0x8123, .action = VIA_DXS_NO_VRA }, /* Uniwill (Targa Visionary XP-210) */
2383 { .subvendor = 0x161f, .subdevice = 0x202b, .action = VIA_DXS_NO_VRA }, /* Amira Note book */
2384 { .subvendor = 0x161f, .subdevice = 0x2032, .action = VIA_DXS_48K }, /* m680x machines */
2385 { .subvendor = 0x1631, .subdevice = 0xe004, .action = VIA_DXS_ENABLE }, /* Easy Note 3174, Packard Bell */
2386 { .subvendor = 0x1695, .subdevice = 0x3005, .action = VIA_DXS_ENABLE }, /* EPoX EP-8K9A */
Takashi Iwaic04d0922006-03-23 17:11:32 +01002387 { .subvendor = 0x1695, .subdevice = 0x300c, .action = VIA_DXS_SRC }, /* EPoX EP-8KRAI */
Takashi Iwaicacd3342006-01-16 13:00:50 +01002388 { .subvendor = 0x1695, .subdevice = 0x300e, .action = VIA_DXS_SRC }, /* EPoX 9HEAI */
Takashi Iwaid0bd41e2006-01-09 12:36:53 +01002389 { .subvendor = 0x16f3, .subdevice = 0x6405, .action = VIA_DXS_SRC }, /* Jetway K8M8MS */
Takashi Iwaibd84b0c2006-02-09 12:04:36 +01002390 { .subvendor = 0x1734, .subdevice = 0x1078, .action = VIA_DXS_SRC }, /* FSC Amilo L7300 */
Takashi Iwai51c2bbf2006-01-23 15:20:03 +01002391 { .subvendor = 0x1734, .subdevice = 0x1093, .action = VIA_DXS_SRC }, /* FSC */
Jaroslav Kysela69ad07c2005-05-30 14:48:16 +02002392 { .subvendor = 0x1849, .subdevice = 0x3059, .action = VIA_DXS_NO_VRA }, /* ASRock K7VM2 */
Takashi Iwai42611c02006-03-01 19:52:23 +01002393 { .subvendor = 0x1849, .subdevice = 0x9739, .action = VIA_DXS_SRC }, /* ASRock mobo(?) */
Takashi Iwai46a17362005-12-05 21:16:37 +01002394 { .subvendor = 0x1849, .subdevice = 0x9761, .action = VIA_DXS_SRC }, /* ASRock mobo(?) */
Takashi Iwaib3e28ce2005-06-17 11:54:50 +02002395 { .subvendor = 0x1919, .subdevice = 0x200a, .action = VIA_DXS_NO_VRA }, /* Soltek SL-K8Tpro-939 */
Jaroslav Kysela22019872005-07-05 10:27:09 +02002396 { .subvendor = 0x4005, .subdevice = 0x4710, .action = VIA_DXS_SRC }, /* MSI K7T266 Pro2 (MS-6380 V2.0) BIOS 3.7 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002397 { } /* terminator */
2398 };
2399 struct dxs_whitelist *w;
2400 unsigned short subsystem_vendor;
2401 unsigned short subsystem_device;
2402
2403 pci_read_config_word(pci, PCI_SUBSYSTEM_VENDOR_ID, &subsystem_vendor);
2404 pci_read_config_word(pci, PCI_SUBSYSTEM_ID, &subsystem_device);
2405
Jaroslav Kysela69ad07c2005-05-30 14:48:16 +02002406 for (w = whitelist; w->subvendor; w++) {
2407 if (w->subvendor != subsystem_vendor)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002408 continue;
2409 if (w->mask) {
Jaroslav Kysela69ad07c2005-05-30 14:48:16 +02002410 if ((w->mask & subsystem_device) == w->subdevice)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002411 return w->action;
2412 } else {
Jaroslav Kysela69ad07c2005-05-30 14:48:16 +02002413 if (subsystem_device == w->subdevice)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002414 return w->action;
2415 }
2416 }
2417
2418 /*
2419 * not detected, try 48k rate only to be sure.
2420 */
2421 printk(KERN_INFO "via82xx: Assuming DXS channels with 48k fixed sample rate.\n");
Takashi Iwaiee3b4c62005-06-14 10:18:20 +02002422 printk(KERN_INFO " Please try dxs_support=5 option\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002423 printk(KERN_INFO " and report if it works on your machine.\n");
Takashi Iwaiee3b4c62005-06-14 10:18:20 +02002424 printk(KERN_INFO " For more details, read ALSA-Configuration.txt.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002425 return VIA_DXS_48K;
2426};
2427
2428static int __devinit snd_via82xx_probe(struct pci_dev *pci,
2429 const struct pci_device_id *pci_id)
2430{
Takashi Iwaie437e3d2005-11-17 15:06:15 +01002431 struct snd_card *card;
2432 struct via82xx *chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002433 unsigned char revision;
2434 int chip_type = 0, card_type;
2435 unsigned int i;
2436 int err;
2437
Clemens Ladischb7fe4622005-10-04 08:46:51 +02002438 card = snd_card_new(index, id, THIS_MODULE, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002439 if (card == NULL)
2440 return -ENOMEM;
2441
2442 card_type = pci_id->driver_data;
2443 pci_read_config_byte(pci, PCI_REVISION_ID, &revision);
2444 switch (card_type) {
2445 case TYPE_CARD_VIA686:
2446 strcpy(card->driver, "VIA686A");
2447 sprintf(card->shortname, "VIA 82C686A/B rev%x", revision);
2448 chip_type = TYPE_VIA686;
2449 break;
2450 case TYPE_CARD_VIA8233:
2451 chip_type = TYPE_VIA8233;
2452 sprintf(card->shortname, "VIA 823x rev%x", revision);
2453 for (i = 0; i < ARRAY_SIZE(via823x_cards); i++) {
2454 if (revision == via823x_cards[i].revision) {
2455 chip_type = via823x_cards[i].type;
2456 strcpy(card->shortname, via823x_cards[i].name);
2457 break;
2458 }
2459 }
2460 if (chip_type != TYPE_VIA8233A) {
Clemens Ladischb7fe4622005-10-04 08:46:51 +02002461 if (dxs_support == VIA_DXS_AUTO)
2462 dxs_support = check_dxs_list(pci);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002463 /* force to use VIA8233 or 8233A model according to
2464 * dxs_support module option
2465 */
Clemens Ladischb7fe4622005-10-04 08:46:51 +02002466 if (dxs_support == VIA_DXS_DISABLE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002467 chip_type = TYPE_VIA8233A;
2468 else
2469 chip_type = TYPE_VIA8233;
2470 }
2471 if (chip_type == TYPE_VIA8233A)
2472 strcpy(card->driver, "VIA8233A");
2473 else if (revision >= VIA_REV_8237)
2474 strcpy(card->driver, "VIA8237"); /* no slog assignment */
2475 else
2476 strcpy(card->driver, "VIA8233");
2477 break;
2478 default:
2479 snd_printk(KERN_ERR "invalid card type %d\n", card_type);
2480 err = -EINVAL;
2481 goto __error;
2482 }
2483
Clemens Ladischb7fe4622005-10-04 08:46:51 +02002484 if ((err = snd_via82xx_create(card, pci, chip_type, revision,
2485 ac97_clock, &chip)) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486 goto __error;
Takashi Iwai57feb832005-11-17 16:10:35 +01002487 card->private_data = chip;
Clemens Ladischb7fe4622005-10-04 08:46:51 +02002488 if ((err = snd_via82xx_mixer_new(chip, ac97_quirk)) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002489 goto __error;
2490
2491 if (chip_type == TYPE_VIA686) {
2492 if ((err = snd_via686_pcm_new(chip)) < 0 ||
Clemens Ladischb7fe4622005-10-04 08:46:51 +02002493 (err = snd_via686_init_misc(chip)) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002494 goto __error;
2495 } else {
2496 if (chip_type == TYPE_VIA8233A) {
2497 if ((err = snd_via8233a_pcm_new(chip)) < 0)
2498 goto __error;
2499 // chip->dxs_fixed = 1; /* FIXME: use 48k for DXS #3? */
2500 } else {
2501 if ((err = snd_via8233_pcm_new(chip)) < 0)
2502 goto __error;
Clemens Ladischb7fe4622005-10-04 08:46:51 +02002503 if (dxs_support == VIA_DXS_48K)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002504 chip->dxs_fixed = 1;
Clemens Ladischb7fe4622005-10-04 08:46:51 +02002505 else if (dxs_support == VIA_DXS_NO_VRA)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506 chip->no_vra = 1;
Clemens Ladischb7fe4622005-10-04 08:46:51 +02002507 else if (dxs_support == VIA_DXS_SRC) {
Sergey Vlasov2d7eb7c2005-04-11 15:04:33 +02002508 chip->no_vra = 1;
2509 chip->dxs_src = 1;
2510 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002511 }
Clemens Ladischb7fe4622005-10-04 08:46:51 +02002512 if ((err = snd_via8233_init_misc(chip)) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002513 goto __error;
2514 }
2515
Linus Torvalds1da177e2005-04-16 15:20:36 -07002516 /* disable interrupts */
2517 for (i = 0; i < chip->num_devs; i++)
2518 snd_via82xx_channel_reset(chip, &chip->devs[i]);
2519
2520 snprintf(card->longname, sizeof(card->longname),
2521 "%s with %s at %#lx, irq %d", card->shortname,
2522 snd_ac97_get_short_name(chip->ac97), chip->port, chip->irq);
2523
2524 snd_via82xx_proc_init(chip);
2525
2526 if ((err = snd_card_register(card)) < 0) {
2527 snd_card_free(card);
2528 return err;
2529 }
2530 pci_set_drvdata(pci, card);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002531 return 0;
2532
2533 __error:
2534 snd_card_free(card);
2535 return err;
2536}
2537
2538static void __devexit snd_via82xx_remove(struct pci_dev *pci)
2539{
2540 snd_card_free(pci_get_drvdata(pci));
2541 pci_set_drvdata(pci, NULL);
2542}
2543
2544static struct pci_driver driver = {
2545 .name = "VIA 82xx Audio",
2546 .id_table = snd_via82xx_ids,
2547 .probe = snd_via82xx_probe,
2548 .remove = __devexit_p(snd_via82xx_remove),
Takashi Iwai57feb832005-11-17 16:10:35 +01002549#ifdef CONFIG_PM
2550 .suspend = snd_via82xx_suspend,
2551 .resume = snd_via82xx_resume,
2552#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002553};
2554
2555static int __init alsa_card_via82xx_init(void)
2556{
Takashi Iwai01d25d42005-04-11 16:58:24 +02002557 return pci_register_driver(&driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002558}
2559
2560static void __exit alsa_card_via82xx_exit(void)
2561{
2562 pci_unregister_driver(&driver);
2563}
2564
2565module_init(alsa_card_via82xx_init)
2566module_exit(alsa_card_via82xx_exit)