Blame view

sound/pci/atiixp.c 44 KB
1a59d1b8e   Thomas Gleixner   treewide: Replace...
1
  // SPDX-License-Identifier: GPL-2.0-or-later
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2
3
4
5
  /*
   *   ALSA driver for ATI IXP 150/200/250/300 AC97 controllers
   *
   *	Copyright (c) 2004 Takashi Iwai <tiwai@suse.de>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
6
   */
6cbbfe1c8   Takashi Iwai   ALSA: Include lin...
7
  #include <linux/io.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
8
9
10
11
12
  #include <linux/delay.h>
  #include <linux/interrupt.h>
  #include <linux/init.h>
  #include <linux/pci.h>
  #include <linux/slab.h>
65a772172   Paul Gortmaker   sound: fix driver...
13
  #include <linux/module.h>
62932df8f   Ingo Molnar   [ALSA] semaphore ...
14
  #include <linux/mutex.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
15
16
17
18
19
20
21
22
23
24
  #include <sound/core.h>
  #include <sound/pcm.h>
  #include <sound/pcm_params.h>
  #include <sound/info.h>
  #include <sound/ac97_codec.h>
  #include <sound/initval.h>
  
  MODULE_AUTHOR("Takashi Iwai <tiwai@suse.de>");
  MODULE_DESCRIPTION("ATI IXP AC97 controller");
  MODULE_LICENSE("GPL");
f4446ea04   Takashi Iwai   ALSA: atiixp - Ad...
25
  MODULE_SUPPORTED_DEVICE("{{ATI,IXP150/200/250/300/400/600}}");
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
26

b7fe46220   Clemens Ladisch   [ALSA] highlander...
27
28
29
30
  static int index = SNDRV_DEFAULT_IDX1;	/* Index 0-MAX */
  static char *id = SNDRV_DEFAULT_STR1;	/* ID for this card */
  static int ac97_clock = 48000;
  static char *ac97_quirk;
a67ff6a54   Rusty Russell   ALSA: module_para...
31
  static bool spdif_aclink = 1;
14e1d357e   Dan Carpenter   [ALSA] atiixp - A...
32
  static int ac97_codec = -1;
b7fe46220   Clemens Ladisch   [ALSA] highlander...
33
34
  
  module_param(index, int, 0444);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
35
  MODULE_PARM_DESC(index, "Index value for ATI IXP controller.");
b7fe46220   Clemens Ladisch   [ALSA] highlander...
36
  module_param(id, charp, 0444);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
37
  MODULE_PARM_DESC(id, "ID string for ATI IXP controller.");
b7fe46220   Clemens Ladisch   [ALSA] highlander...
38
  module_param(ac97_clock, int, 0444);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
39
  MODULE_PARM_DESC(ac97_clock, "AC'97 codec clock (default 48000Hz).");
b7fe46220   Clemens Ladisch   [ALSA] highlander...
40
  module_param(ac97_quirk, charp, 0444);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
41
  MODULE_PARM_DESC(ac97_quirk, "AC'97 workaround for strange hardware.");
14e1d357e   Dan Carpenter   [ALSA] atiixp - A...
42
43
  module_param(ac97_codec, int, 0444);
  MODULE_PARM_DESC(ac97_codec, "Specify codec instead of probing.");
b7fe46220   Clemens Ladisch   [ALSA] highlander...
44
  module_param(spdif_aclink, bool, 0444);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
45
  MODULE_PARM_DESC(spdif_aclink, "S/PDIF over AC-link.");
2b3e584b9   Takashi Iwai   [ALSA] Add dummy ...
46
  /* just for backward compatibility */
a67ff6a54   Rusty Russell   ALSA: module_para...
47
  static bool enable;
698444f31   Takashi Iwai   [ALSA] Fix the ty...
48
  module_param(enable, bool, 0444);
2b3e584b9   Takashi Iwai   [ALSA] Add dummy ...
49

1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
  
  /*
   */
  
  #define ATI_REG_ISR			0x00	/* interrupt source */
  #define  ATI_REG_ISR_IN_XRUN		(1U<<0)
  #define  ATI_REG_ISR_IN_STATUS		(1U<<1)
  #define  ATI_REG_ISR_OUT_XRUN		(1U<<2)
  #define  ATI_REG_ISR_OUT_STATUS		(1U<<3)
  #define  ATI_REG_ISR_SPDF_XRUN		(1U<<4)
  #define  ATI_REG_ISR_SPDF_STATUS	(1U<<5)
  #define  ATI_REG_ISR_PHYS_INTR		(1U<<8)
  #define  ATI_REG_ISR_PHYS_MISMATCH	(1U<<9)
  #define  ATI_REG_ISR_CODEC0_NOT_READY	(1U<<10)
  #define  ATI_REG_ISR_CODEC1_NOT_READY	(1U<<11)
  #define  ATI_REG_ISR_CODEC2_NOT_READY	(1U<<12)
  #define  ATI_REG_ISR_NEW_FRAME		(1U<<13)
  
  #define ATI_REG_IER			0x04	/* interrupt enable */
  #define  ATI_REG_IER_IN_XRUN_EN		(1U<<0)
  #define  ATI_REG_IER_IO_STATUS_EN	(1U<<1)
  #define  ATI_REG_IER_OUT_XRUN_EN	(1U<<2)
  #define  ATI_REG_IER_OUT_XRUN_COND	(1U<<3)
  #define  ATI_REG_IER_SPDF_XRUN_EN	(1U<<4)
  #define  ATI_REG_IER_SPDF_STATUS_EN	(1U<<5)
  #define  ATI_REG_IER_PHYS_INTR_EN	(1U<<8)
  #define  ATI_REG_IER_PHYS_MISMATCH_EN	(1U<<9)
  #define  ATI_REG_IER_CODEC0_INTR_EN	(1U<<10)
  #define  ATI_REG_IER_CODEC1_INTR_EN	(1U<<11)
  #define  ATI_REG_IER_CODEC2_INTR_EN	(1U<<12)
  #define  ATI_REG_IER_NEW_FRAME_EN	(1U<<13)	/* (RO */
  #define  ATI_REG_IER_SET_BUS_BUSY	(1U<<14)	/* (WO) audio is running */
  
  #define ATI_REG_CMD			0x08	/* command */
  #define  ATI_REG_CMD_POWERDOWN		(1U<<0)
  #define  ATI_REG_CMD_RECEIVE_EN		(1U<<1)
  #define  ATI_REG_CMD_SEND_EN		(1U<<2)
  #define  ATI_REG_CMD_STATUS_MEM		(1U<<3)
  #define  ATI_REG_CMD_SPDF_OUT_EN	(1U<<4)
  #define  ATI_REG_CMD_SPDF_STATUS_MEM	(1U<<5)
  #define  ATI_REG_CMD_SPDF_THRESHOLD	(3U<<6)
  #define  ATI_REG_CMD_SPDF_THRESHOLD_SHIFT	6
  #define  ATI_REG_CMD_IN_DMA_EN		(1U<<8)
  #define  ATI_REG_CMD_OUT_DMA_EN		(1U<<9)
  #define  ATI_REG_CMD_SPDF_DMA_EN	(1U<<10)
  #define  ATI_REG_CMD_SPDF_OUT_STOPPED	(1U<<11)
  #define  ATI_REG_CMD_SPDF_CONFIG_MASK	(7U<<12)
  #define   ATI_REG_CMD_SPDF_CONFIG_34	(1U<<12)
  #define   ATI_REG_CMD_SPDF_CONFIG_78	(2U<<12)
  #define   ATI_REG_CMD_SPDF_CONFIG_69	(3U<<12)
  #define   ATI_REG_CMD_SPDF_CONFIG_01	(4U<<12)
  #define  ATI_REG_CMD_INTERLEAVE_SPDF	(1U<<16)
  #define  ATI_REG_CMD_AUDIO_PRESENT	(1U<<20)
  #define  ATI_REG_CMD_INTERLEAVE_IN	(1U<<21)
  #define  ATI_REG_CMD_INTERLEAVE_OUT	(1U<<22)
  #define  ATI_REG_CMD_LOOPBACK_EN	(1U<<23)
  #define  ATI_REG_CMD_PACKED_DIS		(1U<<24)
  #define  ATI_REG_CMD_BURST_EN		(1U<<25)
  #define  ATI_REG_CMD_PANIC_EN		(1U<<26)
  #define  ATI_REG_CMD_MODEM_PRESENT	(1U<<27)
  #define  ATI_REG_CMD_ACLINK_ACTIVE	(1U<<28)
  #define  ATI_REG_CMD_AC_SOFT_RESET	(1U<<29)
  #define  ATI_REG_CMD_AC_SYNC		(1U<<30)
  #define  ATI_REG_CMD_AC_RESET		(1U<<31)
  
  #define ATI_REG_PHYS_OUT_ADDR		0x0c
  #define  ATI_REG_PHYS_OUT_CODEC_MASK	(3U<<0)
  #define  ATI_REG_PHYS_OUT_RW		(1U<<2)
  #define  ATI_REG_PHYS_OUT_ADDR_EN	(1U<<8)
  #define  ATI_REG_PHYS_OUT_ADDR_SHIFT	9
  #define  ATI_REG_PHYS_OUT_DATA_SHIFT	16
  
  #define ATI_REG_PHYS_IN_ADDR		0x10
  #define  ATI_REG_PHYS_IN_READ_FLAG	(1U<<8)
  #define  ATI_REG_PHYS_IN_ADDR_SHIFT	9
  #define  ATI_REG_PHYS_IN_DATA_SHIFT	16
  
  #define ATI_REG_SLOTREQ			0x14
  
  #define ATI_REG_COUNTER			0x18
  #define  ATI_REG_COUNTER_SLOT		(3U<<0)	/* slot # */
  #define  ATI_REG_COUNTER_BITCLOCK	(31U<<8)
  
  #define ATI_REG_IN_FIFO_THRESHOLD	0x1c
  
  #define ATI_REG_IN_DMA_LINKPTR		0x20
  #define ATI_REG_IN_DMA_DT_START		0x24	/* RO */
  #define ATI_REG_IN_DMA_DT_NEXT		0x28	/* RO */
  #define ATI_REG_IN_DMA_DT_CUR		0x2c	/* RO */
  #define ATI_REG_IN_DMA_DT_SIZE		0x30
  
  #define ATI_REG_OUT_DMA_SLOT		0x34
  #define  ATI_REG_OUT_DMA_SLOT_BIT(x)	(1U << ((x) - 3))
  #define  ATI_REG_OUT_DMA_SLOT_MASK	0x1ff
  #define  ATI_REG_OUT_DMA_THRESHOLD_MASK	0xf800
  #define  ATI_REG_OUT_DMA_THRESHOLD_SHIFT	11
  
  #define ATI_REG_OUT_DMA_LINKPTR		0x38
  #define ATI_REG_OUT_DMA_DT_START	0x3c	/* RO */
  #define ATI_REG_OUT_DMA_DT_NEXT		0x40	/* RO */
  #define ATI_REG_OUT_DMA_DT_CUR		0x44	/* RO */
  #define ATI_REG_OUT_DMA_DT_SIZE		0x48
  
  #define ATI_REG_SPDF_CMD		0x4c
  #define  ATI_REG_SPDF_CMD_LFSR		(1U<<4)
  #define  ATI_REG_SPDF_CMD_SINGLE_CH	(1U<<5)
  #define  ATI_REG_SPDF_CMD_LFSR_ACC	(0xff<<8)	/* RO */
  
  #define ATI_REG_SPDF_DMA_LINKPTR	0x50
  #define ATI_REG_SPDF_DMA_DT_START	0x54	/* RO */
  #define ATI_REG_SPDF_DMA_DT_NEXT	0x58	/* RO */
  #define ATI_REG_SPDF_DMA_DT_CUR		0x5c	/* RO */
  #define ATI_REG_SPDF_DMA_DT_SIZE	0x60
  
  #define ATI_REG_MODEM_MIRROR		0x7c
  #define ATI_REG_AUDIO_MIRROR		0x80
  
  #define ATI_REG_6CH_REORDER		0x84	/* reorder slots for 6ch */
  #define  ATI_REG_6CH_REORDER_EN		(1U<<0)	/* 3,4,7,8,6,9 -> 3,4,6,9,7,8 */
  
  #define ATI_REG_FIFO_FLUSH		0x88
  #define  ATI_REG_FIFO_OUT_FLUSH		(1U<<0)
  #define  ATI_REG_FIFO_IN_FLUSH		(1U<<1)
  
  /* LINKPTR */
  #define  ATI_REG_LINKPTR_EN		(1U<<0)
  
  /* [INT|OUT|SPDIF]_DMA_DT_SIZE */
  #define  ATI_REG_DMA_DT_SIZE		(0xffffU<<0)
  #define  ATI_REG_DMA_FIFO_USED		(0x1fU<<16)
  #define  ATI_REG_DMA_FIFO_FREE		(0x1fU<<21)
  #define  ATI_REG_DMA_STATE		(7U<<26)
  
  
  #define ATI_MAX_DESCRIPTORS	256	/* max number of descriptor packets */
74ee4ff1e   Takashi Iwai   [ALSA] Remove xxx...
185
  struct atiixp;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
186
187
188
189
  
  /*
   * DMA packate descriptor
   */
74ee4ff1e   Takashi Iwai   [ALSA] Remove xxx...
190
  struct atiixp_dma_desc {
c44a81a40   Takashi Iwai   ALSA: atiixp: Pro...
191
  	__le32 addr;	/* DMA buffer address */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
192
193
  	u16 status;	/* status bits */
  	u16 size;	/* size of the packet in dwords */
c44a81a40   Takashi Iwai   ALSA: atiixp: Pro...
194
  	__le32 next;	/* address of the next packet descriptor */
74ee4ff1e   Takashi Iwai   [ALSA] Remove xxx...
195
  };
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
196
197
198
199
200
201
202
203
204
205
206
207
208
209
  
  /*
   * stream enum
   */
  enum { ATI_DMA_PLAYBACK, ATI_DMA_CAPTURE, ATI_DMA_SPDIF, NUM_ATI_DMAS }; /* DMAs */
  enum { ATI_PCM_OUT, ATI_PCM_IN, ATI_PCM_SPDIF, NUM_ATI_PCMS }; /* AC97 pcm slots */
  enum { ATI_PCMDEV_ANALOG, ATI_PCMDEV_DIGITAL, NUM_ATI_PCMDEVS }; /* pcm devices */
  
  #define NUM_ATI_CODECS	3
  
  
  /*
   * constants and callbacks for each DMA type
   */
74ee4ff1e   Takashi Iwai   [ALSA] Remove xxx...
210
  struct atiixp_dma_ops {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
211
212
213
  	int type;			/* ATI_DMA_XXX */
  	unsigned int llp_offset;	/* LINKPTR offset */
  	unsigned int dt_cur;		/* DT_CUR offset */
74ee4ff1e   Takashi Iwai   [ALSA] Remove xxx...
214
215
216
217
218
219
  	/* called from open callback */
  	void (*enable_dma)(struct atiixp *chip, int on);
  	/* called from trigger (START/STOP) */
  	void (*enable_transfer)(struct atiixp *chip, int on);
   	/* called from trigger (STOP only) */
  	void (*flush_dma)(struct atiixp *chip);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
220
221
222
223
224
  };
  
  /*
   * DMA stream
   */
74ee4ff1e   Takashi Iwai   [ALSA] Remove xxx...
225
226
  struct atiixp_dma {
  	const struct atiixp_dma_ops *ops;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
227
  	struct snd_dma_buffer desc_buf;
74ee4ff1e   Takashi Iwai   [ALSA] Remove xxx...
228
  	struct snd_pcm_substream *substream;	/* assigned PCM substream */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
229
230
231
232
  	unsigned int buf_addr, buf_bytes;	/* DMA buffer address, bytes */
  	unsigned int period_bytes, periods;
  	int opened;
  	int running;
41e4845c4   Jaroslav Kysela   [ALSA] PCM resume...
233
  	int suspended;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
234
235
236
237
238
239
240
241
  	int pcm_open_flag;
  	int ac97_pcm_type;	/* index # of ac97_pcm to access, -1 = not used */
  	unsigned int saved_curptr;
  };
  
  /*
   * ATI IXP chip
   */
74ee4ff1e   Takashi Iwai   [ALSA] Remove xxx...
242
243
  struct atiixp {
  	struct snd_card *card;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
244
245
246
247
248
249
  	struct pci_dev *pci;
  
  	unsigned long addr;
  	void __iomem *remap_addr;
  	int irq;
  	
74ee4ff1e   Takashi Iwai   [ALSA] Remove xxx...
250
251
  	struct snd_ac97_bus *ac97_bus;
  	struct snd_ac97 *ac97[NUM_ATI_CODECS];
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
252
253
  
  	spinlock_t reg_lock;
74ee4ff1e   Takashi Iwai   [ALSA] Remove xxx...
254
  	struct atiixp_dma dmas[NUM_ATI_DMAS];
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
255
  	struct ac97_pcm *pcms[NUM_ATI_PCMS];
74ee4ff1e   Takashi Iwai   [ALSA] Remove xxx...
256
  	struct snd_pcm *pcmdevs[NUM_ATI_PCMDEVS];
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
257
258
259
260
261
262
  
  	int max_channels;		/* max. channels for PCM out */
  
  	unsigned int codec_not_ready_bits;	/* for codec detection */
  
  	int spdif_over_aclink;		/* passed from the module option */
62932df8f   Ingo Molnar   [ALSA] semaphore ...
263
  	struct mutex open_mutex;	/* playback open mutex */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
264
265
266
267
268
  };
  
  
  /*
   */
9baa3c34a   Benoit Taine   PCI: Remove DEFIN...
269
  static const struct pci_device_id snd_atiixp_ids[] = {
28d27aae9   Joe Perches   sound: Use PCI_VD...
270
271
272
273
  	{ PCI_VDEVICE(ATI, 0x4341), 0 }, /* SB200 */
  	{ PCI_VDEVICE(ATI, 0x4361), 0 }, /* SB300 */
  	{ PCI_VDEVICE(ATI, 0x4370), 0 }, /* SB400 */
  	{ PCI_VDEVICE(ATI, 0x4382), 0 }, /* SB600 */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
274
275
276
277
  	{ 0, }
  };
  
  MODULE_DEVICE_TABLE(pci, snd_atiixp_ids);
88e540a87   Takashi Iwai   ALSA: pci: Consti...
278
  static const struct snd_pci_quirk atiixp_quirks[] = {
dfb12eeb0   Daniel T Chen   ALSA: atiixp: Spe...
279
  	SND_PCI_QUIRK(0x105b, 0x0c81, "Foxconn RC4107MA-RS2", 0),
f41bea84c   Takashi Iwai   [ALSA] atiixp - U...
280
281
  	SND_PCI_QUIRK(0x15bd, 0x3100, "DFI RS482", 0),
  	{ } /* terminator */
14e1d357e   Dan Carpenter   [ALSA] atiixp - A...
282
  };
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
283
284
285
286
287
288
289
290
291
  
  /*
   * lowlevel functions
   */
  
  /*
   * update the bits of the given register.
   * return 1 if the bits changed.
   */
74ee4ff1e   Takashi Iwai   [ALSA] Remove xxx...
292
  static int snd_atiixp_update_bits(struct atiixp *chip, unsigned int reg,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
  				 unsigned int mask, unsigned int value)
  {
  	void __iomem *addr = chip->remap_addr + reg;
  	unsigned int data, old_data;
  	old_data = data = readl(addr);
  	data &= ~mask;
  	data |= value;
  	if (old_data == data)
  		return 0;
  	writel(data, addr);
  	return 1;
  }
  
  /*
   * macros for easy use
   */
  #define atiixp_write(chip,reg,value) \
  	writel(value, chip->remap_addr + ATI_REG_##reg)
  #define atiixp_read(chip,reg) \
  	readl(chip->remap_addr + ATI_REG_##reg)
  #define atiixp_update(chip,reg,mask,val) \
  	snd_atiixp_update_bits(chip, ATI_REG_##reg, mask, val)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
315
316
317
318
319
320
321
322
  /*
   * handling DMA packets
   *
   * we allocate a linear buffer for the DMA, and split it to  each packet.
   * in a future version, a scatter-gather buffer should be implemented.
   */
  
  #define ATI_DESC_LIST_SIZE \
74ee4ff1e   Takashi Iwai   [ALSA] Remove xxx...
323
  	PAGE_ALIGN(ATI_MAX_DESCRIPTORS * sizeof(struct atiixp_dma_desc))
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
324
325
326
327
328
329
330
331
332
333
  
  /*
   * build packets ring for the given buffer size.
   *
   * IXP handles the buffer descriptors, which are connected as a linked
   * list.  although we can change the list dynamically, in this version,
   * a static RING of buffer descriptors is used.
   *
   * the ring is built in this function, and is set up to the hardware. 
   */
74ee4ff1e   Takashi Iwai   [ALSA] Remove xxx...
334
335
336
337
  static int atiixp_build_dma_packets(struct atiixp *chip, struct atiixp_dma *dma,
  				    struct snd_pcm_substream *substream,
  				    unsigned int periods,
  				    unsigned int period_bytes)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
338
339
340
341
342
343
344
345
346
  {
  	unsigned int i;
  	u32 addr, desc_addr;
  	unsigned long flags;
  
  	if (periods > ATI_MAX_DESCRIPTORS)
  		return -ENOMEM;
  
  	if (dma->desc_buf.area == NULL) {
74ee4ff1e   Takashi Iwai   [ALSA] Remove xxx...
347
  		if (snd_dma_alloc_pages(SNDRV_DMA_TYPE_DEV,
6974f8ad4   Takashi Iwai   ALSA: pci: Avoid ...
348
  					&chip->pci->dev,
74ee4ff1e   Takashi Iwai   [ALSA] Remove xxx...
349
350
  					ATI_DESC_LIST_SIZE,
  					&dma->desc_buf) < 0)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
  			return -ENOMEM;
  		dma->period_bytes = dma->periods = 0; /* clear */
  	}
  
  	if (dma->periods == periods && dma->period_bytes == period_bytes)
  		return 0;
  
  	/* reset DMA before changing the descriptor table */
  	spin_lock_irqsave(&chip->reg_lock, flags);
  	writel(0, chip->remap_addr + dma->ops->llp_offset);
  	dma->ops->enable_dma(chip, 0);
  	dma->ops->enable_dma(chip, 1);
  	spin_unlock_irqrestore(&chip->reg_lock, flags);
  
  	/* fill the entries */
  	addr = (u32)substream->runtime->dma_addr;
  	desc_addr = (u32)dma->desc_buf.addr;
  	for (i = 0; i < periods; i++) {
74ee4ff1e   Takashi Iwai   [ALSA] Remove xxx...
369
370
  		struct atiixp_dma_desc *desc;
  		desc = &((struct atiixp_dma_desc *)dma->desc_buf.area)[i];
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
371
372
373
  		desc->addr = cpu_to_le32(addr);
  		desc->status = 0;
  		desc->size = period_bytes >> 2; /* in dwords */
74ee4ff1e   Takashi Iwai   [ALSA] Remove xxx...
374
  		desc_addr += sizeof(struct atiixp_dma_desc);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
  		if (i == periods - 1)
  			desc->next = cpu_to_le32((u32)dma->desc_buf.addr);
  		else
  			desc->next = cpu_to_le32(desc_addr);
  		addr += period_bytes;
  	}
  
  	writel((u32)dma->desc_buf.addr | ATI_REG_LINKPTR_EN,
  	       chip->remap_addr + dma->ops->llp_offset);
  
  	dma->period_bytes = period_bytes;
  	dma->periods = periods;
  
  	return 0;
  }
  
  /*
   * remove the ring buffer and release it if assigned
   */
74ee4ff1e   Takashi Iwai   [ALSA] Remove xxx...
394
395
  static void atiixp_clear_dma_packets(struct atiixp *chip, struct atiixp_dma *dma,
  				     struct snd_pcm_substream *substream)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
396
397
398
399
400
401
402
403
404
405
406
  {
  	if (dma->desc_buf.area) {
  		writel(0, chip->remap_addr + dma->ops->llp_offset);
  		snd_dma_free_pages(&dma->desc_buf);
  		dma->desc_buf.area = NULL;
  	}
  }
  
  /*
   * AC97 interface
   */
74ee4ff1e   Takashi Iwai   [ALSA] Remove xxx...
407
  static int snd_atiixp_acquire_codec(struct atiixp *chip)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
408
409
410
411
412
  {
  	int timeout = 1000;
  
  	while (atiixp_read(chip, PHYS_OUT_ADDR) & ATI_REG_PHYS_OUT_ADDR_EN) {
  		if (! timeout--) {
25135fdcd   Takashi Iwai   ALSA: atiixp: Use...
413
414
  			dev_warn(chip->card->dev, "codec acquire timeout
  ");
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
415
416
417
418
419
420
  			return -EBUSY;
  		}
  		udelay(1);
  	}
  	return 0;
  }
74ee4ff1e   Takashi Iwai   [ALSA] Remove xxx...
421
  static unsigned short snd_atiixp_codec_read(struct atiixp *chip, unsigned short codec, unsigned short reg)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
  {
  	unsigned int data;
  	int timeout;
  
  	if (snd_atiixp_acquire_codec(chip) < 0)
  		return 0xffff;
  	data = (reg << ATI_REG_PHYS_OUT_ADDR_SHIFT) |
  		ATI_REG_PHYS_OUT_ADDR_EN |
  		ATI_REG_PHYS_OUT_RW |
  		codec;
  	atiixp_write(chip, PHYS_OUT_ADDR, data);
  	if (snd_atiixp_acquire_codec(chip) < 0)
  		return 0xffff;
  	timeout = 1000;
  	do {
  		data = atiixp_read(chip, PHYS_IN_ADDR);
  		if (data & ATI_REG_PHYS_IN_READ_FLAG)
  			return data >> ATI_REG_PHYS_IN_DATA_SHIFT;
  		udelay(1);
  	} while (--timeout);
  	/* time out may happen during reset */
  	if (reg < 0x7c)
25135fdcd   Takashi Iwai   ALSA: atiixp: Use...
444
445
  		dev_warn(chip->card->dev, "codec read timeout (reg %x)
  ", reg);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
446
447
  	return 0xffff;
  }
74ee4ff1e   Takashi Iwai   [ALSA] Remove xxx...
448
449
  static void snd_atiixp_codec_write(struct atiixp *chip, unsigned short codec,
  				   unsigned short reg, unsigned short val)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
450
451
452
453
454
455
456
457
458
459
  {
  	unsigned int data;
      
  	if (snd_atiixp_acquire_codec(chip) < 0)
  		return;
  	data = ((unsigned int)val << ATI_REG_PHYS_OUT_DATA_SHIFT) |
  		((unsigned int)reg << ATI_REG_PHYS_OUT_ADDR_SHIFT) |
  		ATI_REG_PHYS_OUT_ADDR_EN | codec;
  	atiixp_write(chip, PHYS_OUT_ADDR, data);
  }
74ee4ff1e   Takashi Iwai   [ALSA] Remove xxx...
460
461
  static unsigned short snd_atiixp_ac97_read(struct snd_ac97 *ac97,
  					   unsigned short reg)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
462
  {
74ee4ff1e   Takashi Iwai   [ALSA] Remove xxx...
463
  	struct atiixp *chip = ac97->private_data;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
464
465
466
  	return snd_atiixp_codec_read(chip, ac97->num, reg);
      
  }
74ee4ff1e   Takashi Iwai   [ALSA] Remove xxx...
467
468
  static void snd_atiixp_ac97_write(struct snd_ac97 *ac97, unsigned short reg,
  				  unsigned short val)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
469
  {
74ee4ff1e   Takashi Iwai   [ALSA] Remove xxx...
470
  	struct atiixp *chip = ac97->private_data;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
471
472
473
474
475
476
  	snd_atiixp_codec_write(chip, ac97->num, reg, val);
  }
  
  /*
   * reset AC link
   */
74ee4ff1e   Takashi Iwai   [ALSA] Remove xxx...
477
  static int snd_atiixp_aclink_reset(struct atiixp *chip)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
  {
  	int timeout;
  
  	/* reset powerdoewn */
  	if (atiixp_update(chip, CMD, ATI_REG_CMD_POWERDOWN, 0))
  		udelay(10);
  
  	/* perform a software reset */
  	atiixp_update(chip, CMD, ATI_REG_CMD_AC_SOFT_RESET, ATI_REG_CMD_AC_SOFT_RESET);
  	atiixp_read(chip, CMD);
  	udelay(10);
  	atiixp_update(chip, CMD, ATI_REG_CMD_AC_SOFT_RESET, 0);
      
  	timeout = 10;
  	while (! (atiixp_read(chip, CMD) & ATI_REG_CMD_ACLINK_ACTIVE)) {
  		/* do a hard reset */
  		atiixp_update(chip, CMD, ATI_REG_CMD_AC_SYNC|ATI_REG_CMD_AC_RESET,
  			      ATI_REG_CMD_AC_SYNC);
  		atiixp_read(chip, CMD);
74ee4ff1e   Takashi Iwai   [ALSA] Remove xxx...
497
  		mdelay(1);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
498
  		atiixp_update(chip, CMD, ATI_REG_CMD_AC_RESET, ATI_REG_CMD_AC_RESET);
7e79443ce   Takashi Iwai   ALSA: atiixp - Fi...
499
  		if (!--timeout) {
25135fdcd   Takashi Iwai   ALSA: atiixp: Use...
500
501
  			dev_err(chip->card->dev, "codec reset timeout
  ");
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
502
503
504
505
506
507
508
509
510
511
  			break;
  		}
  	}
  
  	/* deassert RESET and assert SYNC to make sure */
  	atiixp_update(chip, CMD, ATI_REG_CMD_AC_SYNC|ATI_REG_CMD_AC_RESET,
  		      ATI_REG_CMD_AC_SYNC|ATI_REG_CMD_AC_RESET);
  
  	return 0;
  }
c7561cd80   Takashi Iwai   ALSA: PCI: Replac...
512
  #ifdef CONFIG_PM_SLEEP
74ee4ff1e   Takashi Iwai   [ALSA] Remove xxx...
513
  static int snd_atiixp_aclink_down(struct atiixp *chip)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
  {
  	// if (atiixp_read(chip, MODEM_MIRROR) & 0x1) /* modem running, too? */
  	//	return -EBUSY;
  	atiixp_update(chip, CMD,
  		     ATI_REG_CMD_POWERDOWN | ATI_REG_CMD_AC_RESET,
  		     ATI_REG_CMD_POWERDOWN);
  	return 0;
  }
  #endif
  
  /*
   * auto-detection of codecs
   *
   * the IXP chip can generate interrupts for the non-existing codecs.
   * NEW_FRAME interrupt is used to make sure that the interrupt is generated
   * even if all three codecs are connected.
   */
  
  #define ALL_CODEC_NOT_READY \
  	    (ATI_REG_ISR_CODEC0_NOT_READY |\
  	     ATI_REG_ISR_CODEC1_NOT_READY |\
  	     ATI_REG_ISR_CODEC2_NOT_READY)
  #define CODEC_CHECK_BITS (ALL_CODEC_NOT_READY|ATI_REG_ISR_NEW_FRAME)
e23e7a143   Bill Pemberton   ALSA: pci: remove...
537
  static int ac97_probing_bugs(struct pci_dev *pci)
14e1d357e   Dan Carpenter   [ALSA] atiixp - A...
538
  {
f41bea84c   Takashi Iwai   [ALSA] atiixp - U...
539
540
541
542
  	const struct snd_pci_quirk *q;
  
  	q = snd_pci_quirk_lookup(pci, atiixp_quirks);
  	if (q) {
25135fdcd   Takashi Iwai   ALSA: atiixp: Use...
543
544
545
  		dev_dbg(&pci->dev, "atiixp quirk for %s.  Forcing codec %d
  ",
  			snd_pci_quirk_name(q), q->value);
f41bea84c   Takashi Iwai   [ALSA] atiixp - U...
546
  		return q->value;
14e1d357e   Dan Carpenter   [ALSA] atiixp - A...
547
548
549
550
  	}
  	/* this hardware doesn't need workarounds.  Probe for codec */
  	return -1;
  }
e23e7a143   Bill Pemberton   ALSA: pci: remove...
551
  static int snd_atiixp_codec_detect(struct atiixp *chip)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
552
553
554
555
  {
  	int timeout;
  
  	chip->codec_not_ready_bits = 0;
14e1d357e   Dan Carpenter   [ALSA] atiixp - A...
556
557
558
559
560
561
562
  	if (ac97_codec == -1)
  		ac97_codec = ac97_probing_bugs(chip->pci);
  	if (ac97_codec >= 0) {
  		chip->codec_not_ready_bits |= 
  			CODEC_CHECK_BITS ^ (1 << (ac97_codec + 10));
  		return 0;
  	}
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
563
564
  	atiixp_write(chip, IER, CODEC_CHECK_BITS);
  	/* wait for the interrupts */
bfdcbace6   Takashi Iwai   [ALSA] Remove sup...
565
  	timeout = 50;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
566
  	while (timeout-- > 0) {
74ee4ff1e   Takashi Iwai   [ALSA] Remove xxx...
567
  		mdelay(1);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
568
569
570
571
572
573
  		if (chip->codec_not_ready_bits)
  			break;
  	}
  	atiixp_write(chip, IER, 0); /* disable irqs */
  
  	if ((chip->codec_not_ready_bits & ALL_CODEC_NOT_READY) == ALL_CODEC_NOT_READY) {
25135fdcd   Takashi Iwai   ALSA: atiixp: Use...
574
575
  		dev_err(chip->card->dev, "no codec detected!
  ");
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
576
577
578
579
580
581
582
583
584
  		return -ENXIO;
  	}
  	return 0;
  }
  
  
  /*
   * enable DMA and irqs
   */
74ee4ff1e   Takashi Iwai   [ALSA] Remove xxx...
585
  static int snd_atiixp_chip_start(struct atiixp *chip)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
  {
  	unsigned int reg;
  
  	/* set up spdif, enable burst mode */
  	reg = atiixp_read(chip, CMD);
  	reg |= 0x02 << ATI_REG_CMD_SPDF_THRESHOLD_SHIFT;
  	reg |= ATI_REG_CMD_BURST_EN;
  	atiixp_write(chip, CMD, reg);
  
  	reg = atiixp_read(chip, SPDF_CMD);
  	reg &= ~(ATI_REG_SPDF_CMD_LFSR|ATI_REG_SPDF_CMD_SINGLE_CH);
  	atiixp_write(chip, SPDF_CMD, reg);
  
  	/* clear all interrupt source */
  	atiixp_write(chip, ISR, 0xffffffff);
  	/* enable irqs */
  	atiixp_write(chip, IER,
  		     ATI_REG_IER_IO_STATUS_EN |
  		     ATI_REG_IER_IN_XRUN_EN |
  		     ATI_REG_IER_OUT_XRUN_EN |
  		     ATI_REG_IER_SPDF_XRUN_EN |
  		     ATI_REG_IER_SPDF_STATUS_EN);
  	return 0;
  }
  
  
  /*
   * disable DMA and IRQs
   */
74ee4ff1e   Takashi Iwai   [ALSA] Remove xxx...
615
  static int snd_atiixp_chip_stop(struct atiixp *chip)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
  {
  	/* clear interrupt source */
  	atiixp_write(chip, ISR, atiixp_read(chip, ISR));
  	/* disable irqs */
  	atiixp_write(chip, IER, 0);
  	return 0;
  }
  
  
  /*
   * PCM section
   */
  
  /*
   * pointer callback simplly reads XXX_DMA_DT_CUR register as the current
   * position.  when SG-buffer is implemented, the offset must be calculated
   * correctly...
   */
74ee4ff1e   Takashi Iwai   [ALSA] Remove xxx...
634
  static snd_pcm_uframes_t snd_atiixp_pcm_pointer(struct snd_pcm_substream *substream)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
635
  {
74ee4ff1e   Takashi Iwai   [ALSA] Remove xxx...
636
637
638
  	struct atiixp *chip = snd_pcm_substream_chip(substream);
  	struct snd_pcm_runtime *runtime = substream->runtime;
  	struct atiixp_dma *dma = runtime->private_data;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
639
640
641
642
643
644
645
646
647
648
649
650
  	unsigned int curptr;
  	int timeout = 1000;
  
  	while (timeout--) {
  		curptr = readl(chip->remap_addr + dma->ops->dt_cur);
  		if (curptr < dma->buf_addr)
  			continue;
  		curptr -= dma->buf_addr;
  		if (curptr >= dma->buf_bytes)
  			continue;
  		return bytes_to_frames(runtime, curptr);
  	}
25135fdcd   Takashi Iwai   ALSA: atiixp: Use...
651
652
  	dev_dbg(chip->card->dev, "invalid DMA pointer read 0x%x (buf=%x)
  ",
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
653
654
655
656
657
658
659
  		   readl(chip->remap_addr + dma->ops->dt_cur), dma->buf_addr);
  	return 0;
  }
  
  /*
   * XRUN detected, and stop the PCM substream
   */
74ee4ff1e   Takashi Iwai   [ALSA] Remove xxx...
660
  static void snd_atiixp_xrun_dma(struct atiixp *chip, struct atiixp_dma *dma)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
661
662
663
  {
  	if (! dma->substream || ! dma->running)
  		return;
25135fdcd   Takashi Iwai   ALSA: atiixp: Use...
664
665
  	dev_dbg(chip->card->dev, "XRUN detected (DMA %d)
  ", dma->ops->type);
1fb8510cd   Takashi Iwai   ALSA: pcm: Add sn...
666
  	snd_pcm_stop_xrun(dma->substream);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
667
668
669
670
671
  }
  
  /*
   * the period ack.  update the substream.
   */
74ee4ff1e   Takashi Iwai   [ALSA] Remove xxx...
672
  static void snd_atiixp_update_dma(struct atiixp *chip, struct atiixp_dma *dma)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
673
674
675
676
677
678
679
680
  {
  	if (! dma->substream || ! dma->running)
  		return;
  	snd_pcm_period_elapsed(dma->substream);
  }
  
  /* set BUS_BUSY interrupt bit if any DMA is running */
  /* call with spinlock held */
74ee4ff1e   Takashi Iwai   [ALSA] Remove xxx...
681
  static void snd_atiixp_check_bus_busy(struct atiixp *chip)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
682
683
684
685
686
687
688
689
690
691
692
693
694
695
  {
  	unsigned int bus_busy;
  	if (atiixp_read(chip, CMD) & (ATI_REG_CMD_SEND_EN |
  				      ATI_REG_CMD_RECEIVE_EN |
  				      ATI_REG_CMD_SPDF_OUT_EN))
  		bus_busy = ATI_REG_IER_SET_BUS_BUSY;
  	else
  		bus_busy = 0;
  	atiixp_update(chip, IER, ATI_REG_IER_SET_BUS_BUSY, bus_busy);
  }
  
  /* common trigger callback
   * calling the lowlevel callbacks in it
   */
74ee4ff1e   Takashi Iwai   [ALSA] Remove xxx...
696
  static int snd_atiixp_pcm_trigger(struct snd_pcm_substream *substream, int cmd)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
697
  {
74ee4ff1e   Takashi Iwai   [ALSA] Remove xxx...
698
699
  	struct atiixp *chip = snd_pcm_substream_chip(substream);
  	struct atiixp_dma *dma = substream->runtime->private_data;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
700
  	int err = 0;
da3cec35d   Takashi Iwai   ALSA: Kill snd_as...
701
702
703
  	if (snd_BUG_ON(!dma->ops->enable_transfer ||
  		       !dma->ops->flush_dma))
  		return -EINVAL;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
704
705
706
707
  
  	spin_lock(&chip->reg_lock);
  	switch (cmd) {
  	case SNDRV_PCM_TRIGGER_START:
41e4845c4   Jaroslav Kysela   [ALSA] PCM resume...
708
709
  	case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
  	case SNDRV_PCM_TRIGGER_RESUME:
435e25c67   Takashi Iwai   ALSA: atiixp: Mov...
710
711
712
713
  		if (dma->running && dma->suspended &&
  		    cmd == SNDRV_PCM_TRIGGER_RESUME)
  			writel(dma->saved_curptr, chip->remap_addr +
  			       dma->ops->dt_cur);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
714
715
  		dma->ops->enable_transfer(chip, 1);
  		dma->running = 1;
41e4845c4   Jaroslav Kysela   [ALSA] PCM resume...
716
  		dma->suspended = 0;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
717
718
  		break;
  	case SNDRV_PCM_TRIGGER_STOP:
41e4845c4   Jaroslav Kysela   [ALSA] PCM resume...
719
720
  	case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
  	case SNDRV_PCM_TRIGGER_SUSPEND:
435e25c67   Takashi Iwai   ALSA: atiixp: Mov...
721
722
723
724
  		dma->suspended = cmd == SNDRV_PCM_TRIGGER_SUSPEND;
  		if (dma->running && dma->suspended)
  			dma->saved_curptr = readl(chip->remap_addr +
  						  dma->ops->dt_cur);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
  		dma->ops->enable_transfer(chip, 0);
  		dma->running = 0;
  		break;
  	default:
  		err = -EINVAL;
  		break;
  	}
  	if (! err) {
  		snd_atiixp_check_bus_busy(chip);
  		if (cmd == SNDRV_PCM_TRIGGER_STOP) {
  			dma->ops->flush_dma(chip);
  			snd_atiixp_check_bus_busy(chip);
  		}
  	}
  	spin_unlock(&chip->reg_lock);
  	return err;
  }
  
  
  /*
   * lowlevel callbacks for each DMA type
   *
   * every callback is supposed to be called in chip->reg_lock spinlock
   */
  
  /* flush FIFO of analog OUT DMA */
74ee4ff1e   Takashi Iwai   [ALSA] Remove xxx...
751
  static void atiixp_out_flush_dma(struct atiixp *chip)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
752
753
754
755
756
  {
  	atiixp_write(chip, FIFO_FLUSH, ATI_REG_FIFO_OUT_FLUSH);
  }
  
  /* enable/disable analog OUT DMA */
74ee4ff1e   Takashi Iwai   [ALSA] Remove xxx...
757
  static void atiixp_out_enable_dma(struct atiixp *chip, int on)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
758
759
760
761
762
763
764
765
766
767
768
769
770
771
  {
  	unsigned int data;
  	data = atiixp_read(chip, CMD);
  	if (on) {
  		if (data & ATI_REG_CMD_OUT_DMA_EN)
  			return;
  		atiixp_out_flush_dma(chip);
  		data |= ATI_REG_CMD_OUT_DMA_EN;
  	} else
  		data &= ~ATI_REG_CMD_OUT_DMA_EN;
  	atiixp_write(chip, CMD, data);
  }
  
  /* start/stop transfer over OUT DMA */
74ee4ff1e   Takashi Iwai   [ALSA] Remove xxx...
772
  static void atiixp_out_enable_transfer(struct atiixp *chip, int on)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
773
774
775
776
777
778
  {
  	atiixp_update(chip, CMD, ATI_REG_CMD_SEND_EN,
  		      on ? ATI_REG_CMD_SEND_EN : 0);
  }
  
  /* enable/disable analog IN DMA */
74ee4ff1e   Takashi Iwai   [ALSA] Remove xxx...
779
  static void atiixp_in_enable_dma(struct atiixp *chip, int on)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
780
781
782
783
784
785
  {
  	atiixp_update(chip, CMD, ATI_REG_CMD_IN_DMA_EN,
  		      on ? ATI_REG_CMD_IN_DMA_EN : 0);
  }
  
  /* start/stop analog IN DMA */
74ee4ff1e   Takashi Iwai   [ALSA] Remove xxx...
786
  static void atiixp_in_enable_transfer(struct atiixp *chip, int on)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
  {
  	if (on) {
  		unsigned int data = atiixp_read(chip, CMD);
  		if (! (data & ATI_REG_CMD_RECEIVE_EN)) {
  			data |= ATI_REG_CMD_RECEIVE_EN;
  #if 0 /* FIXME: this causes the endless loop */
  			/* wait until slot 3/4 are finished */
  			while ((atiixp_read(chip, COUNTER) &
  				ATI_REG_COUNTER_SLOT) != 5)
  				;
  #endif
  			atiixp_write(chip, CMD, data);
  		}
  	} else
  		atiixp_update(chip, CMD, ATI_REG_CMD_RECEIVE_EN, 0);
  }
  
  /* flush FIFO of analog IN DMA */
74ee4ff1e   Takashi Iwai   [ALSA] Remove xxx...
805
  static void atiixp_in_flush_dma(struct atiixp *chip)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
806
807
808
809
810
  {
  	atiixp_write(chip, FIFO_FLUSH, ATI_REG_FIFO_IN_FLUSH);
  }
  
  /* enable/disable SPDIF OUT DMA */
74ee4ff1e   Takashi Iwai   [ALSA] Remove xxx...
811
  static void atiixp_spdif_enable_dma(struct atiixp *chip, int on)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
812
813
814
815
816
817
  {
  	atiixp_update(chip, CMD, ATI_REG_CMD_SPDF_DMA_EN,
  		      on ? ATI_REG_CMD_SPDF_DMA_EN : 0);
  }
  
  /* start/stop SPDIF OUT DMA */
74ee4ff1e   Takashi Iwai   [ALSA] Remove xxx...
818
  static void atiixp_spdif_enable_transfer(struct atiixp *chip, int on)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
819
820
821
822
823
824
825
826
827
828
829
  {
  	unsigned int data;
  	data = atiixp_read(chip, CMD);
  	if (on)
  		data |= ATI_REG_CMD_SPDF_OUT_EN;
  	else
  		data &= ~ATI_REG_CMD_SPDF_OUT_EN;
  	atiixp_write(chip, CMD, data);
  }
  
  /* flush FIFO of SPDIF OUT DMA */
74ee4ff1e   Takashi Iwai   [ALSA] Remove xxx...
830
  static void atiixp_spdif_flush_dma(struct atiixp *chip)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
  {
  	int timeout;
  
  	/* DMA off, transfer on */
  	atiixp_spdif_enable_dma(chip, 0);
  	atiixp_spdif_enable_transfer(chip, 1);
  	
  	timeout = 100;
  	do {
  		if (! (atiixp_read(chip, SPDF_DMA_DT_SIZE) & ATI_REG_DMA_FIFO_USED))
  			break;
  		udelay(1);
  	} while (timeout-- > 0);
  
  	atiixp_spdif_enable_transfer(chip, 0);
  }
  
  /* set up slots and formats for SPDIF OUT */
74ee4ff1e   Takashi Iwai   [ALSA] Remove xxx...
849
  static int snd_atiixp_spdif_prepare(struct snd_pcm_substream *substream)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
850
  {
74ee4ff1e   Takashi Iwai   [ALSA] Remove xxx...
851
  	struct atiixp *chip = snd_pcm_substream_chip(substream);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
  
  	spin_lock_irq(&chip->reg_lock);
  	if (chip->spdif_over_aclink) {
  		unsigned int data;
  		/* enable slots 10/11 */
  		atiixp_update(chip, CMD, ATI_REG_CMD_SPDF_CONFIG_MASK,
  			      ATI_REG_CMD_SPDF_CONFIG_01);
  		data = atiixp_read(chip, OUT_DMA_SLOT) & ~ATI_REG_OUT_DMA_SLOT_MASK;
  		data |= ATI_REG_OUT_DMA_SLOT_BIT(10) |
  			ATI_REG_OUT_DMA_SLOT_BIT(11);
  		data |= 0x04 << ATI_REG_OUT_DMA_THRESHOLD_SHIFT;
  		atiixp_write(chip, OUT_DMA_SLOT, data);
  		atiixp_update(chip, CMD, ATI_REG_CMD_INTERLEAVE_OUT,
  			      substream->runtime->format == SNDRV_PCM_FORMAT_S16_LE ?
  			      ATI_REG_CMD_INTERLEAVE_OUT : 0);
  	} else {
  		atiixp_update(chip, CMD, ATI_REG_CMD_SPDF_CONFIG_MASK, 0);
  		atiixp_update(chip, CMD, ATI_REG_CMD_INTERLEAVE_SPDF, 0);
  	}
  	spin_unlock_irq(&chip->reg_lock);
  	return 0;
  }
  
  /* set up slots and formats for analog OUT */
74ee4ff1e   Takashi Iwai   [ALSA] Remove xxx...
876
  static int snd_atiixp_playback_prepare(struct snd_pcm_substream *substream)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
877
  {
74ee4ff1e   Takashi Iwai   [ALSA] Remove xxx...
878
  	struct atiixp *chip = snd_pcm_substream_chip(substream);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
879
880
881
882
883
884
885
886
  	unsigned int data;
  
  	spin_lock_irq(&chip->reg_lock);
  	data = atiixp_read(chip, OUT_DMA_SLOT) & ~ATI_REG_OUT_DMA_SLOT_MASK;
  	switch (substream->runtime->channels) {
  	case 8:
  		data |= ATI_REG_OUT_DMA_SLOT_BIT(10) |
  			ATI_REG_OUT_DMA_SLOT_BIT(11);
c0dbbdad4   Gustavo A. R. Silva   ALSA: Use fallthr...
887
  		fallthrough;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
888
889
890
  	case 6:
  		data |= ATI_REG_OUT_DMA_SLOT_BIT(7) |
  			ATI_REG_OUT_DMA_SLOT_BIT(8);
c0dbbdad4   Gustavo A. R. Silva   ALSA: Use fallthr...
891
  		fallthrough;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
892
893
894
  	case 4:
  		data |= ATI_REG_OUT_DMA_SLOT_BIT(6) |
  			ATI_REG_OUT_DMA_SLOT_BIT(9);
c0dbbdad4   Gustavo A. R. Silva   ALSA: Use fallthr...
895
  		fallthrough;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
  	default:
  		data |= ATI_REG_OUT_DMA_SLOT_BIT(3) |
  			ATI_REG_OUT_DMA_SLOT_BIT(4);
  		break;
  	}
  
  	/* set output threshold */
  	data |= 0x04 << ATI_REG_OUT_DMA_THRESHOLD_SHIFT;
  	atiixp_write(chip, OUT_DMA_SLOT, data);
  
  	atiixp_update(chip, CMD, ATI_REG_CMD_INTERLEAVE_OUT,
  		      substream->runtime->format == SNDRV_PCM_FORMAT_S16_LE ?
  		      ATI_REG_CMD_INTERLEAVE_OUT : 0);
  
  	/*
  	 * enable 6 channel re-ordering bit if needed
  	 */
  	atiixp_update(chip, 6CH_REORDER, ATI_REG_6CH_REORDER_EN,
  		      substream->runtime->channels >= 6 ? ATI_REG_6CH_REORDER_EN: 0);
      
  	spin_unlock_irq(&chip->reg_lock);
  	return 0;
  }
  
  /* set up slots and formats for analog IN */
74ee4ff1e   Takashi Iwai   [ALSA] Remove xxx...
921
  static int snd_atiixp_capture_prepare(struct snd_pcm_substream *substream)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
922
  {
74ee4ff1e   Takashi Iwai   [ALSA] Remove xxx...
923
  	struct atiixp *chip = snd_pcm_substream_chip(substream);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
924
925
926
927
928
929
930
931
932
933
934
935
  
  	spin_lock_irq(&chip->reg_lock);
  	atiixp_update(chip, CMD, ATI_REG_CMD_INTERLEAVE_IN,
  		      substream->runtime->format == SNDRV_PCM_FORMAT_S16_LE ?
  		      ATI_REG_CMD_INTERLEAVE_IN : 0);
  	spin_unlock_irq(&chip->reg_lock);
  	return 0;
  }
  
  /*
   * hw_params - allocate the buffer and set up buffer descriptors
   */
74ee4ff1e   Takashi Iwai   [ALSA] Remove xxx...
936
937
  static int snd_atiixp_pcm_hw_params(struct snd_pcm_substream *substream,
  				    struct snd_pcm_hw_params *hw_params)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
938
  {
74ee4ff1e   Takashi Iwai   [ALSA] Remove xxx...
939
940
  	struct atiixp *chip = snd_pcm_substream_chip(substream);
  	struct atiixp_dma *dma = substream->runtime->private_data;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
941
  	int err;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
  	dma->buf_addr = substream->runtime->dma_addr;
  	dma->buf_bytes = params_buffer_bytes(hw_params);
  
  	err = atiixp_build_dma_packets(chip, dma, substream,
  				       params_periods(hw_params),
  				       params_period_bytes(hw_params));
  	if (err < 0)
  		return err;
  
  	if (dma->ac97_pcm_type >= 0) {
  		struct ac97_pcm *pcm = chip->pcms[dma->ac97_pcm_type];
  		/* PCM is bound to AC97 codec(s)
  		 * set up the AC97 codecs
  		 */
  		if (dma->pcm_open_flag) {
  			snd_ac97_pcm_close(pcm);
  			dma->pcm_open_flag = 0;
  		}
  		err = snd_ac97_pcm_open(pcm, params_rate(hw_params),
  					params_channels(hw_params),
  					pcm->r[0].slots);
  		if (err >= 0)
  			dma->pcm_open_flag = 1;
  	}
  
  	return err;
  }
74ee4ff1e   Takashi Iwai   [ALSA] Remove xxx...
969
  static int snd_atiixp_pcm_hw_free(struct snd_pcm_substream *substream)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
970
  {
74ee4ff1e   Takashi Iwai   [ALSA] Remove xxx...
971
972
  	struct atiixp *chip = snd_pcm_substream_chip(substream);
  	struct atiixp_dma *dma = substream->runtime->private_data;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
973
974
975
976
977
978
979
  
  	if (dma->pcm_open_flag) {
  		struct ac97_pcm *pcm = chip->pcms[dma->ac97_pcm_type];
  		snd_ac97_pcm_close(pcm);
  		dma->pcm_open_flag = 0;
  	}
  	atiixp_clear_dma_packets(chip, dma, substream);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
980
981
982
983
984
985
986
  	return 0;
  }
  
  
  /*
   * pcm hardware definition, identical for all DMA types
   */
dee49895b   Bhumika Goyal   ALSA: pci: make s...
987
  static const struct snd_pcm_hardware snd_atiixp_pcm_hw =
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
988
989
990
  {
  	.info =			(SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_INTERLEAVED |
  				 SNDRV_PCM_INFO_BLOCK_TRANSFER |
41e4845c4   Jaroslav Kysela   [ALSA] PCM resume...
991
  				 SNDRV_PCM_INFO_PAUSE |
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
  				 SNDRV_PCM_INFO_RESUME |
  				 SNDRV_PCM_INFO_MMAP_VALID),
  	.formats =		SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S32_LE,
  	.rates =		SNDRV_PCM_RATE_48000,
  	.rate_min =		48000,
  	.rate_max =		48000,
  	.channels_min =		2,
  	.channels_max =		2,
  	.buffer_bytes_max =	256 * 1024,
  	.period_bytes_min =	32,
  	.period_bytes_max =	128 * 1024,
  	.periods_min =		2,
  	.periods_max =		ATI_MAX_DESCRIPTORS,
  };
74ee4ff1e   Takashi Iwai   [ALSA] Remove xxx...
1006
1007
  static int snd_atiixp_pcm_open(struct snd_pcm_substream *substream,
  			       struct atiixp_dma *dma, int pcm_type)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1008
  {
74ee4ff1e   Takashi Iwai   [ALSA] Remove xxx...
1009
1010
  	struct atiixp *chip = snd_pcm_substream_chip(substream);
  	struct snd_pcm_runtime *runtime = substream->runtime;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1011
  	int err;
da3cec35d   Takashi Iwai   ALSA: Kill snd_as...
1012
1013
  	if (snd_BUG_ON(!dma->ops || !dma->ops->enable_dma))
  		return -EINVAL;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
  
  	if (dma->opened)
  		return -EBUSY;
  	dma->substream = substream;
  	runtime->hw = snd_atiixp_pcm_hw;
  	dma->ac97_pcm_type = pcm_type;
  	if (pcm_type >= 0) {
  		runtime->hw.rates = chip->pcms[pcm_type]->rates;
  		snd_pcm_limit_hw_rates(runtime);
  	} else {
  		/* direct SPDIF */
  		runtime->hw.formats = SNDRV_PCM_FMTBIT_IEC958_SUBFRAME_LE;
  	}
  	if ((err = snd_pcm_hw_constraint_integer(runtime, SNDRV_PCM_HW_PARAM_PERIODS)) < 0)
  		return err;
  	runtime->private_data = dma;
  
  	/* enable DMA bits */
  	spin_lock_irq(&chip->reg_lock);
  	dma->ops->enable_dma(chip, 1);
  	spin_unlock_irq(&chip->reg_lock);
  	dma->opened = 1;
  
  	return 0;
  }
74ee4ff1e   Takashi Iwai   [ALSA] Remove xxx...
1039
1040
  static int snd_atiixp_pcm_close(struct snd_pcm_substream *substream,
  				struct atiixp_dma *dma)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1041
  {
74ee4ff1e   Takashi Iwai   [ALSA] Remove xxx...
1042
  	struct atiixp *chip = snd_pcm_substream_chip(substream);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1043
  	/* disable DMA bits */
da3cec35d   Takashi Iwai   ALSA: Kill snd_as...
1044
1045
  	if (snd_BUG_ON(!dma->ops || !dma->ops->enable_dma))
  		return -EINVAL;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
  	spin_lock_irq(&chip->reg_lock);
  	dma->ops->enable_dma(chip, 0);
  	spin_unlock_irq(&chip->reg_lock);
  	dma->substream = NULL;
  	dma->opened = 0;
  	return 0;
  }
  
  /*
   */
74ee4ff1e   Takashi Iwai   [ALSA] Remove xxx...
1056
  static int snd_atiixp_playback_open(struct snd_pcm_substream *substream)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1057
  {
74ee4ff1e   Takashi Iwai   [ALSA] Remove xxx...
1058
  	struct atiixp *chip = snd_pcm_substream_chip(substream);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1059
  	int err;
62932df8f   Ingo Molnar   [ALSA] semaphore ...
1060
  	mutex_lock(&chip->open_mutex);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1061
  	err = snd_atiixp_pcm_open(substream, &chip->dmas[ATI_DMA_PLAYBACK], 0);
62932df8f   Ingo Molnar   [ALSA] semaphore ...
1062
  	mutex_unlock(&chip->open_mutex);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1063
1064
1065
1066
1067
1068
1069
1070
1071
  	if (err < 0)
  		return err;
  	substream->runtime->hw.channels_max = chip->max_channels;
  	if (chip->max_channels > 2)
  		/* channels must be even */
  		snd_pcm_hw_constraint_step(substream->runtime, 0,
  					   SNDRV_PCM_HW_PARAM_CHANNELS, 2);
  	return 0;
  }
74ee4ff1e   Takashi Iwai   [ALSA] Remove xxx...
1072
  static int snd_atiixp_playback_close(struct snd_pcm_substream *substream)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1073
  {
74ee4ff1e   Takashi Iwai   [ALSA] Remove xxx...
1074
  	struct atiixp *chip = snd_pcm_substream_chip(substream);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1075
  	int err;
62932df8f   Ingo Molnar   [ALSA] semaphore ...
1076
  	mutex_lock(&chip->open_mutex);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1077
  	err = snd_atiixp_pcm_close(substream, &chip->dmas[ATI_DMA_PLAYBACK]);
62932df8f   Ingo Molnar   [ALSA] semaphore ...
1078
  	mutex_unlock(&chip->open_mutex);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1079
1080
  	return err;
  }
74ee4ff1e   Takashi Iwai   [ALSA] Remove xxx...
1081
  static int snd_atiixp_capture_open(struct snd_pcm_substream *substream)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1082
  {
74ee4ff1e   Takashi Iwai   [ALSA] Remove xxx...
1083
  	struct atiixp *chip = snd_pcm_substream_chip(substream);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1084
1085
  	return snd_atiixp_pcm_open(substream, &chip->dmas[ATI_DMA_CAPTURE], 1);
  }
74ee4ff1e   Takashi Iwai   [ALSA] Remove xxx...
1086
  static int snd_atiixp_capture_close(struct snd_pcm_substream *substream)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1087
  {
74ee4ff1e   Takashi Iwai   [ALSA] Remove xxx...
1088
  	struct atiixp *chip = snd_pcm_substream_chip(substream);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1089
1090
  	return snd_atiixp_pcm_close(substream, &chip->dmas[ATI_DMA_CAPTURE]);
  }
74ee4ff1e   Takashi Iwai   [ALSA] Remove xxx...
1091
  static int snd_atiixp_spdif_open(struct snd_pcm_substream *substream)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1092
  {
74ee4ff1e   Takashi Iwai   [ALSA] Remove xxx...
1093
  	struct atiixp *chip = snd_pcm_substream_chip(substream);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1094
  	int err;
62932df8f   Ingo Molnar   [ALSA] semaphore ...
1095
  	mutex_lock(&chip->open_mutex);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1096
1097
1098
1099
  	if (chip->spdif_over_aclink) /* share DMA_PLAYBACK */
  		err = snd_atiixp_pcm_open(substream, &chip->dmas[ATI_DMA_PLAYBACK], 2);
  	else
  		err = snd_atiixp_pcm_open(substream, &chip->dmas[ATI_DMA_SPDIF], -1);
62932df8f   Ingo Molnar   [ALSA] semaphore ...
1100
  	mutex_unlock(&chip->open_mutex);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1101
1102
  	return err;
  }
74ee4ff1e   Takashi Iwai   [ALSA] Remove xxx...
1103
  static int snd_atiixp_spdif_close(struct snd_pcm_substream *substream)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1104
  {
74ee4ff1e   Takashi Iwai   [ALSA] Remove xxx...
1105
  	struct atiixp *chip = snd_pcm_substream_chip(substream);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1106
  	int err;
62932df8f   Ingo Molnar   [ALSA] semaphore ...
1107
  	mutex_lock(&chip->open_mutex);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1108
1109
1110
1111
  	if (chip->spdif_over_aclink)
  		err = snd_atiixp_pcm_close(substream, &chip->dmas[ATI_DMA_PLAYBACK]);
  	else
  		err = snd_atiixp_pcm_close(substream, &chip->dmas[ATI_DMA_SPDIF]);
62932df8f   Ingo Molnar   [ALSA] semaphore ...
1112
  	mutex_unlock(&chip->open_mutex);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1113
1114
1115
1116
  	return err;
  }
  
  /* AC97 playback */
6769e988b   Julia Lawall   ALSA: constify sn...
1117
  static const struct snd_pcm_ops snd_atiixp_playback_ops = {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1118
1119
  	.open =		snd_atiixp_playback_open,
  	.close =	snd_atiixp_playback_close,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1120
1121
1122
1123
1124
1125
1126
1127
  	.hw_params =	snd_atiixp_pcm_hw_params,
  	.hw_free =	snd_atiixp_pcm_hw_free,
  	.prepare =	snd_atiixp_playback_prepare,
  	.trigger =	snd_atiixp_pcm_trigger,
  	.pointer =	snd_atiixp_pcm_pointer,
  };
  
  /* AC97 capture */
6769e988b   Julia Lawall   ALSA: constify sn...
1128
  static const struct snd_pcm_ops snd_atiixp_capture_ops = {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1129
1130
  	.open =		snd_atiixp_capture_open,
  	.close =	snd_atiixp_capture_close,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1131
1132
1133
1134
1135
1136
1137
1138
  	.hw_params =	snd_atiixp_pcm_hw_params,
  	.hw_free =	snd_atiixp_pcm_hw_free,
  	.prepare =	snd_atiixp_capture_prepare,
  	.trigger =	snd_atiixp_pcm_trigger,
  	.pointer =	snd_atiixp_pcm_pointer,
  };
  
  /* SPDIF playback */
6769e988b   Julia Lawall   ALSA: constify sn...
1139
  static const struct snd_pcm_ops snd_atiixp_spdif_ops = {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1140
1141
  	.open =		snd_atiixp_spdif_open,
  	.close =	snd_atiixp_spdif_close,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1142
1143
1144
1145
1146
1147
  	.hw_params =	snd_atiixp_pcm_hw_params,
  	.hw_free =	snd_atiixp_pcm_hw_free,
  	.prepare =	snd_atiixp_spdif_prepare,
  	.trigger =	snd_atiixp_pcm_trigger,
  	.pointer =	snd_atiixp_pcm_pointer,
  };
9715f0bdb   Arvind Yadav   ALSA: atiixp: con...
1148
  static const struct ac97_pcm atiixp_pcm_defs[] = {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
  	/* front PCM */
  	{
  		.exclusive = 1,
  		.r = {	{
  				.slots = (1 << AC97_SLOT_PCM_LEFT) |
  					 (1 << AC97_SLOT_PCM_RIGHT) |
  					 (1 << AC97_SLOT_PCM_CENTER) |
  					 (1 << AC97_SLOT_PCM_SLEFT) |
  					 (1 << AC97_SLOT_PCM_SRIGHT) |
  					 (1 << AC97_SLOT_LFE)
  			}
  		}
  	},
  	/* PCM IN #1 */
  	{
  		.stream = 1,
  		.exclusive = 1,
  		.r = {	{
  				.slots = (1 << AC97_SLOT_PCM_LEFT) |
  					 (1 << AC97_SLOT_PCM_RIGHT)
  			}
  		}
  	},
  	/* S/PDIF OUT (optional) */
  	{
  		.exclusive = 1,
  		.spdif = 1,
  		.r = {	{
  				.slots = (1 << AC97_SLOT_SPDIF_LEFT2) |
  					 (1 << AC97_SLOT_SPDIF_RIGHT2)
  			}
  		}
  	},
  };
064e186f8   Julia Lawall   ALSA: atiixp: con...
1183
  static const struct atiixp_dma_ops snd_atiixp_playback_dma_ops = {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1184
1185
1186
1187
1188
1189
1190
1191
  	.type = ATI_DMA_PLAYBACK,
  	.llp_offset = ATI_REG_OUT_DMA_LINKPTR,
  	.dt_cur = ATI_REG_OUT_DMA_DT_CUR,
  	.enable_dma = atiixp_out_enable_dma,
  	.enable_transfer = atiixp_out_enable_transfer,
  	.flush_dma = atiixp_out_flush_dma,
  };
  	
064e186f8   Julia Lawall   ALSA: atiixp: con...
1192
  static const struct atiixp_dma_ops snd_atiixp_capture_dma_ops = {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1193
1194
1195
1196
1197
1198
1199
1200
  	.type = ATI_DMA_CAPTURE,
  	.llp_offset = ATI_REG_IN_DMA_LINKPTR,
  	.dt_cur = ATI_REG_IN_DMA_DT_CUR,
  	.enable_dma = atiixp_in_enable_dma,
  	.enable_transfer = atiixp_in_enable_transfer,
  	.flush_dma = atiixp_in_flush_dma,
  };
  	
064e186f8   Julia Lawall   ALSA: atiixp: con...
1201
  static const struct atiixp_dma_ops snd_atiixp_spdif_dma_ops = {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1202
1203
1204
1205
1206
1207
1208
1209
  	.type = ATI_DMA_SPDIF,
  	.llp_offset = ATI_REG_SPDF_DMA_LINKPTR,
  	.dt_cur = ATI_REG_SPDF_DMA_DT_CUR,
  	.enable_dma = atiixp_spdif_enable_dma,
  	.enable_transfer = atiixp_spdif_enable_transfer,
  	.flush_dma = atiixp_spdif_flush_dma,
  };
  	
e23e7a143   Bill Pemberton   ALSA: pci: remove...
1210
  static int snd_atiixp_pcm_new(struct atiixp *chip)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1211
  {
74ee4ff1e   Takashi Iwai   [ALSA] Remove xxx...
1212
  	struct snd_pcm *pcm;
e36e3b86c   Takashi Iwai   ALSA: Implement c...
1213
  	struct snd_pcm_chmap *chmap;
74ee4ff1e   Takashi Iwai   [ALSA] Remove xxx...
1214
  	struct snd_ac97_bus *pbus = chip->ac97_bus;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
  	int err, i, num_pcms;
  
  	/* initialize constants */
  	chip->dmas[ATI_DMA_PLAYBACK].ops = &snd_atiixp_playback_dma_ops;
  	chip->dmas[ATI_DMA_CAPTURE].ops = &snd_atiixp_capture_dma_ops;
  	if (! chip->spdif_over_aclink)
  		chip->dmas[ATI_DMA_SPDIF].ops = &snd_atiixp_spdif_dma_ops;
  
  	/* assign AC97 pcm */
  	if (chip->spdif_over_aclink)
  		num_pcms = 3;
  	else
  		num_pcms = 2;
  	err = snd_ac97_pcm_assign(pbus, num_pcms, atiixp_pcm_defs);
  	if (err < 0)
  		return err;
  	for (i = 0; i < num_pcms; i++)
  		chip->pcms[i] = &pbus->pcms[i];
  
  	chip->max_channels = 2;
  	if (pbus->pcms[ATI_PCM_OUT].r[0].slots & (1 << AC97_SLOT_PCM_SLEFT)) {
  		if (pbus->pcms[ATI_PCM_OUT].r[0].slots & (1 << AC97_SLOT_LFE))
  			chip->max_channels = 6;
  		else
  			chip->max_channels = 4;
  	}
  
  	/* PCM #0: analog I/O */
74ee4ff1e   Takashi Iwai   [ALSA] Remove xxx...
1243
1244
  	err = snd_pcm_new(chip->card, "ATI IXP AC97",
  			  ATI_PCMDEV_ANALOG, 1, 1, &pcm);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1245
1246
1247
1248
1249
1250
1251
  	if (err < 0)
  		return err;
  	snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &snd_atiixp_playback_ops);
  	snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &snd_atiixp_capture_ops);
  	pcm->private_data = chip;
  	strcpy(pcm->name, "ATI IXP AC97");
  	chip->pcmdevs[ATI_PCMDEV_ANALOG] = pcm;
801bf0574   Takashi Iwai   ALSA: atiixp: Use...
1252
1253
  	snd_pcm_set_managed_buffer_all(pcm, SNDRV_DMA_TYPE_DEV,
  				       &chip->pci->dev, 64*1024, 128*1024);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1254

e36e3b86c   Takashi Iwai   ALSA: Implement c...
1255
1256
1257
1258
1259
1260
1261
  	err = snd_pcm_add_chmap_ctls(pcm, SNDRV_PCM_STREAM_PLAYBACK,
  				     snd_pcm_alt_chmaps, chip->max_channels, 0,
  				     &chmap);
  	if (err < 0)
  		return err;
  	chmap->channel_mask = SND_PCM_CHMAP_MASK_2468;
  	chip->ac97[0]->chmaps[SNDRV_PCM_STREAM_PLAYBACK] = chmap;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1262
1263
1264
1265
1266
1267
1268
1269
1270
  	/* no SPDIF support on codec? */
  	if (chip->pcms[ATI_PCM_SPDIF] && ! chip->pcms[ATI_PCM_SPDIF]->rates)
  		return 0;
  		
  	/* FIXME: non-48k sample rate doesn't work on my test machine with AD1888 */
  	if (chip->pcms[ATI_PCM_SPDIF])
  		chip->pcms[ATI_PCM_SPDIF]->rates = SNDRV_PCM_RATE_48000;
  
  	/* PCM #1: spdif playback */
74ee4ff1e   Takashi Iwai   [ALSA] Remove xxx...
1271
1272
  	err = snd_pcm_new(chip->card, "ATI IXP IEC958",
  			  ATI_PCMDEV_DIGITAL, 1, 0, &pcm);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1273
1274
1275
1276
1277
1278
1279
1280
1281
  	if (err < 0)
  		return err;
  	snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &snd_atiixp_spdif_ops);
  	pcm->private_data = chip;
  	if (chip->spdif_over_aclink)
  		strcpy(pcm->name, "ATI IXP IEC958 (AC97)");
  	else
  		strcpy(pcm->name, "ATI IXP IEC958 (Direct)");
  	chip->pcmdevs[ATI_PCMDEV_DIGITAL] = pcm;
801bf0574   Takashi Iwai   ALSA: atiixp: Use...
1282
1283
  	snd_pcm_set_managed_buffer_all(pcm, SNDRV_DMA_TYPE_DEV,
  				       &chip->pci->dev, 64*1024, 128*1024);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1284
1285
1286
1287
  
  	/* pre-select AC97 SPDIF slots 10/11 */
  	for (i = 0; i < NUM_ATI_CODECS; i++) {
  		if (chip->ac97[i])
74ee4ff1e   Takashi Iwai   [ALSA] Remove xxx...
1288
1289
1290
  			snd_ac97_update_bits(chip->ac97[i],
  					     AC97_EXTENDED_STATUS,
  					     0x03 << 4, 0x03 << 4);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
  	}
  
  	return 0;
  }
  
  
  
  /*
   * interrupt handler
   */
7d12e780e   David Howells   IRQ: Maintain reg...
1301
  static irqreturn_t snd_atiixp_interrupt(int irq, void *dev_id)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1302
  {
74ee4ff1e   Takashi Iwai   [ALSA] Remove xxx...
1303
  	struct atiixp *chip = dev_id;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
  	unsigned int status;
  
  	status = atiixp_read(chip, ISR);
  
  	if (! status)
  		return IRQ_NONE;
  
  	/* process audio DMA */
  	if (status & ATI_REG_ISR_OUT_XRUN)
  		snd_atiixp_xrun_dma(chip,  &chip->dmas[ATI_DMA_PLAYBACK]);
  	else if (status & ATI_REG_ISR_OUT_STATUS)
  		snd_atiixp_update_dma(chip, &chip->dmas[ATI_DMA_PLAYBACK]);
  	if (status & ATI_REG_ISR_IN_XRUN)
  		snd_atiixp_xrun_dma(chip,  &chip->dmas[ATI_DMA_CAPTURE]);
  	else if (status & ATI_REG_ISR_IN_STATUS)
  		snd_atiixp_update_dma(chip, &chip->dmas[ATI_DMA_CAPTURE]);
  	if (! chip->spdif_over_aclink) {
  		if (status & ATI_REG_ISR_SPDF_XRUN)
  			snd_atiixp_xrun_dma(chip,  &chip->dmas[ATI_DMA_SPDIF]);
  		else if (status & ATI_REG_ISR_SPDF_STATUS)
  			snd_atiixp_update_dma(chip, &chip->dmas[ATI_DMA_SPDIF]);
  	}
  
  	/* for codec detection */
  	if (status & CODEC_CHECK_BITS) {
  		unsigned int detected;
  		detected = status & CODEC_CHECK_BITS;
  		spin_lock(&chip->reg_lock);
  		chip->codec_not_ready_bits |= detected;
  		atiixp_update(chip, IER, detected, 0); /* disable the detected irqs */
  		spin_unlock(&chip->reg_lock);
  	}
  
  	/* ack */
  	atiixp_write(chip, ISR, status);
  
  	return IRQ_HANDLED;
  }
  
  
  /*
   * ac97 mixer section
   */
eab0fbfa4   Joe Perches   ALSA: Use const s...
1347
  static const struct ac97_quirk ac97_quirks[] = {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1348
  	{
69ad07cf9   Jaroslav Kysela   [ALSA] AC97 - ren...
1349
1350
  		.subvendor = 0x103c,
  		.subdevice = 0x006b,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1351
1352
1353
  		.name = "HP Pavilion ZV5030US",
  		.type = AC97_TUNE_MUTE_LED
  	},
a0faefedf   Matthew Garrett   [ALSA] Add a new ...
1354
1355
1356
1357
1358
1359
  	{
  		.subvendor = 0x103c,
  		.subdevice = 0x308b,
  		.name = "HP nx6125",
  		.type = AC97_TUNE_MUTE_LED
  	},
e3ba906ad   Daniel T Chen   ALSA: Atiixp: Add...
1360
1361
1362
1363
1364
1365
  	{
  		.subvendor = 0x103c,
  		.subdevice = 0x3091,
  		.name = "unknown HP",
  		.type = AC97_TUNE_MUTE_LED
  	},
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1366
1367
  	{ } /* terminator */
  };
e23e7a143   Bill Pemberton   ALSA: pci: remove...
1368
1369
  static int snd_atiixp_mixer_new(struct atiixp *chip, int clock,
  				const char *quirk_override)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1370
  {
74ee4ff1e   Takashi Iwai   [ALSA] Remove xxx...
1371
1372
  	struct snd_ac97_bus *pbus;
  	struct snd_ac97_template ac97;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1373
1374
  	int i, err;
  	int codec_count;
51055da51   Takashi Iwai   ALSA: pci: Consti...
1375
  	static const struct snd_ac97_bus_ops ops = {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1376
1377
1378
  		.write = snd_atiixp_ac97_write,
  		.read = snd_atiixp_ac97_read,
  	};
066c044b0   Takashi Iwai   ALSA: atiixp: Mor...
1379
  	static const unsigned int codec_skip[NUM_ATI_CODECS] = {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
  		ATI_REG_ISR_CODEC0_NOT_READY,
  		ATI_REG_ISR_CODEC1_NOT_READY,
  		ATI_REG_ISR_CODEC2_NOT_READY,
  	};
  
  	if (snd_atiixp_codec_detect(chip) < 0)
  		return -ENXIO;
  
  	if ((err = snd_ac97_bus(chip->card, 0, &ops, chip, &pbus)) < 0)
  		return err;
  	pbus->clock = clock;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
  	chip->ac97_bus = pbus;
  
  	codec_count = 0;
  	for (i = 0; i < NUM_ATI_CODECS; i++) {
  		if (chip->codec_not_ready_bits & codec_skip[i])
  			continue;
  		memset(&ac97, 0, sizeof(ac97));
  		ac97.private_data = chip;
  		ac97.pci = chip->pci;
  		ac97.num = i;
f1a63a38d   Takashi Iwai   [ALSA] ac97 - Sup...
1401
  		ac97.scaps = AC97_SCAP_SKIP_MODEM | AC97_SCAP_POWER_SAVE;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1402
1403
1404
1405
  		if (! chip->spdif_over_aclink)
  			ac97.scaps |= AC97_SCAP_NO_SPDIF;
  		if ((err = snd_ac97_mixer(pbus, &ac97, &chip->ac97[i])) < 0) {
  			chip->ac97[i] = NULL; /* to be sure */
25135fdcd   Takashi Iwai   ALSA: atiixp: Use...
1406
1407
1408
  			dev_dbg(chip->card->dev,
  				"codec %d not available for audio
  ", i);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1409
1410
1411
1412
1413
1414
  			continue;
  		}
  		codec_count++;
  	}
  
  	if (! codec_count) {
25135fdcd   Takashi Iwai   ALSA: atiixp: Use...
1415
1416
  		dev_err(chip->card->dev, "no codec available
  ");
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1417
1418
1419
1420
1421
1422
1423
  		return -ENODEV;
  	}
  
  	snd_ac97_tune_hardware(chip->ac97[0], ac97_quirks, quirk_override);
  
  	return 0;
  }
c7561cd80   Takashi Iwai   ALSA: PCI: Replac...
1424
  #ifdef CONFIG_PM_SLEEP
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1425
1426
1427
  /*
   * power management
   */
68cb2b559   Takashi Iwai   ALSA: Convert to ...
1428
  static int snd_atiixp_suspend(struct device *dev)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1429
  {
68cb2b559   Takashi Iwai   ALSA: Convert to ...
1430
  	struct snd_card *card = dev_get_drvdata(dev);
92304cc7e   Takashi Iwai   [ALSA] atiixp - F...
1431
  	struct atiixp *chip = card->private_data;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1432
  	int i;
92304cc7e   Takashi Iwai   [ALSA] atiixp - F...
1433
  	snd_power_change_state(card, SNDRV_CTL_POWER_D3hot);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1434
  	for (i = 0; i < NUM_ATI_CODECS; i++)
92304cc7e   Takashi Iwai   [ALSA] atiixp - F...
1435
  		snd_ac97_suspend(chip->ac97[i]);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1436
1437
  	snd_atiixp_aclink_down(chip);
  	snd_atiixp_chip_stop(chip);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1438
1439
  	return 0;
  }
68cb2b559   Takashi Iwai   ALSA: Convert to ...
1440
  static int snd_atiixp_resume(struct device *dev)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1441
  {
68cb2b559   Takashi Iwai   ALSA: Convert to ...
1442
  	struct snd_card *card = dev_get_drvdata(dev);
92304cc7e   Takashi Iwai   [ALSA] atiixp - F...
1443
  	struct atiixp *chip = card->private_data;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1444
  	int i;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1445
1446
1447
1448
  	snd_atiixp_aclink_reset(chip);
  	snd_atiixp_chip_start(chip);
  
  	for (i = 0; i < NUM_ATI_CODECS; i++)
92304cc7e   Takashi Iwai   [ALSA] atiixp - F...
1449
  		snd_ac97_resume(chip->ac97[i]);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1450
1451
1452
  
  	for (i = 0; i < NUM_ATI_PCMDEVS; i++)
  		if (chip->pcmdevs[i]) {
74ee4ff1e   Takashi Iwai   [ALSA] Remove xxx...
1453
  			struct atiixp_dma *dma = &chip->dmas[i];
41e4845c4   Jaroslav Kysela   [ALSA] PCM resume...
1454
  			if (dma->substream && dma->suspended) {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1455
  				dma->ops->enable_dma(chip, 1);
8e3d759d4   Takashi Iwai   [ALSA] atiixp - F...
1456
  				dma->substream->ops->prepare(dma->substream);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1457
1458
  				writel((u32)dma->desc_buf.addr | ATI_REG_LINKPTR_EN,
  				       chip->remap_addr + dma->ops->llp_offset);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1459
1460
  			}
  		}
92304cc7e   Takashi Iwai   [ALSA] atiixp - F...
1461
  	snd_power_change_state(card, SNDRV_CTL_POWER_D0);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1462
1463
  	return 0;
  }
68cb2b559   Takashi Iwai   ALSA: Convert to ...
1464
1465
1466
1467
1468
  
  static SIMPLE_DEV_PM_OPS(snd_atiixp_pm, snd_atiixp_suspend, snd_atiixp_resume);
  #define SND_ATIIXP_PM_OPS	&snd_atiixp_pm
  #else
  #define SND_ATIIXP_PM_OPS	NULL
c7561cd80   Takashi Iwai   ALSA: PCI: Replac...
1469
  #endif /* CONFIG_PM_SLEEP */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1470
1471
1472
1473
1474
  
  
  /*
   * proc interface for register dump
   */
74ee4ff1e   Takashi Iwai   [ALSA] Remove xxx...
1475
1476
  static void snd_atiixp_proc_read(struct snd_info_entry *entry,
  				 struct snd_info_buffer *buffer)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1477
  {
74ee4ff1e   Takashi Iwai   [ALSA] Remove xxx...
1478
  	struct atiixp *chip = entry->private_data;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1479
1480
1481
1482
1483
1484
  	int i;
  
  	for (i = 0; i < 256; i += 4)
  		snd_iprintf(buffer, "%02x: %08x
  ", i, readl(chip->remap_addr + i));
  }
e23e7a143   Bill Pemberton   ALSA: pci: remove...
1485
  static void snd_atiixp_proc_init(struct atiixp *chip)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1486
  {
47f2769b4   Takashi Iwai   ALSA: pci: Clean ...
1487
  	snd_card_ro_proc_new(chip->card, "atiixp", chip, snd_atiixp_proc_read);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1488
  }
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1489
1490
1491
1492
1493
  
  
  /*
   * destructor
   */
74ee4ff1e   Takashi Iwai   [ALSA] Remove xxx...
1494
  static int snd_atiixp_free(struct atiixp *chip)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1495
1496
1497
1498
  {
  	if (chip->irq < 0)
  		goto __hw_end;
  	snd_atiixp_chip_stop(chip);
f000fd809   Jeff Garzik   [ALSA] Fix synchr...
1499

1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1500
1501
        __hw_end:
  	if (chip->irq >= 0)
74ee4ff1e   Takashi Iwai   [ALSA] Remove xxx...
1502
  		free_irq(chip->irq, chip);
ff6defa6a   Markus Elfring   ALSA: Deletion of...
1503
  	iounmap(chip->remap_addr);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1504
1505
1506
1507
1508
  	pci_release_regions(chip->pci);
  	pci_disable_device(chip->pci);
  	kfree(chip);
  	return 0;
  }
74ee4ff1e   Takashi Iwai   [ALSA] Remove xxx...
1509
  static int snd_atiixp_dev_free(struct snd_device *device)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1510
  {
74ee4ff1e   Takashi Iwai   [ALSA] Remove xxx...
1511
  	struct atiixp *chip = device->device_data;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1512
1513
1514
1515
1516
1517
  	return snd_atiixp_free(chip);
  }
  
  /*
   * constructor for chip instance
   */
e23e7a143   Bill Pemberton   ALSA: pci: remove...
1518
1519
1520
  static int snd_atiixp_create(struct snd_card *card,
  			     struct pci_dev *pci,
  			     struct atiixp **r_chip)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1521
  {
efb0ad25d   Takashi Iwai   ALSA: pci: Consti...
1522
  	static const struct snd_device_ops ops = {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1523
1524
  		.dev_free =	snd_atiixp_dev_free,
  	};
74ee4ff1e   Takashi Iwai   [ALSA] Remove xxx...
1525
  	struct atiixp *chip;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1526
1527
1528
1529
  	int err;
  
  	if ((err = pci_enable_device(pci)) < 0)
  		return err;
e560d8d83   Takashi Iwai   [ALSA] Replace wi...
1530
  	chip = kzalloc(sizeof(*chip), GFP_KERNEL);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1531
1532
1533
1534
1535
1536
  	if (chip == NULL) {
  		pci_disable_device(pci);
  		return -ENOMEM;
  	}
  
  	spin_lock_init(&chip->reg_lock);
62932df8f   Ingo Molnar   [ALSA] semaphore ...
1537
  	mutex_init(&chip->open_mutex);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1538
1539
1540
1541
1542
1543
1544
1545
1546
  	chip->card = card;
  	chip->pci = pci;
  	chip->irq = -1;
  	if ((err = pci_request_regions(pci, "ATI IXP AC97")) < 0) {
  		pci_disable_device(pci);
  		kfree(chip);
  		return err;
  	}
  	chip->addr = pci_resource_start(pci, 0);
2f5ad54ea   Arjan van de Ven   pci: use pci_iore...
1547
  	chip->remap_addr = pci_ioremap_bar(pci, 0);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1548
  	if (chip->remap_addr == NULL) {
25135fdcd   Takashi Iwai   ALSA: atiixp: Use...
1549
1550
  		dev_err(card->dev, "AC'97 space ioremap problem
  ");
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1551
1552
1553
  		snd_atiixp_free(chip);
  		return -EIO;
  	}
437a5a460   Takashi Iwai   [ALSA] Remove IRQ...
1554
  	if (request_irq(pci->irq, snd_atiixp_interrupt, IRQF_SHARED,
934c2b6d0   Takashi Iwai   ALSA: use KBUILD_...
1555
  			KBUILD_MODNAME, chip)) {
25135fdcd   Takashi Iwai   ALSA: atiixp: Use...
1556
1557
  		dev_err(card->dev, "unable to grab IRQ %d
  ", pci->irq);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1558
1559
1560
1561
  		snd_atiixp_free(chip);
  		return -EBUSY;
  	}
  	chip->irq = pci->irq;
4504487d9   Takashi Iwai   ALSA: atiixp: Sup...
1562
  	card->sync_irq = chip->irq;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1563
  	pci_set_master(pci);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1564
1565
1566
1567
1568
  
  	if ((err = snd_device_new(card, SNDRV_DEV_LOWLEVEL, chip, &ops)) < 0) {
  		snd_atiixp_free(chip);
  		return err;
  	}
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1569
1570
1571
  	*r_chip = chip;
  	return 0;
  }
e23e7a143   Bill Pemberton   ALSA: pci: remove...
1572
1573
  static int snd_atiixp_probe(struct pci_dev *pci,
  			    const struct pci_device_id *pci_id)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1574
  {
74ee4ff1e   Takashi Iwai   [ALSA] Remove xxx...
1575
1576
  	struct snd_card *card;
  	struct atiixp *chip;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1577
  	int err;
60c5772b5   Takashi Iwai   ALSA: pci: Conver...
1578
  	err = snd_card_new(&pci->dev, index, id, THIS_MODULE, 0, &card);
e58de7baf   Takashi Iwai   ALSA: Convert to ...
1579
1580
  	if (err < 0)
  		return err;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1581

b7fe46220   Clemens Ladisch   [ALSA] highlander...
1582
  	strcpy(card->driver, spdif_aclink ? "ATIIXP" : "ATIIXP-SPDMA");
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1583
1584
1585
  	strcpy(card->shortname, "ATI IXP");
  	if ((err = snd_atiixp_create(card, pci, &chip)) < 0)
  		goto __error;
92304cc7e   Takashi Iwai   [ALSA] atiixp - F...
1586
  	card->private_data = chip;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1587
1588
1589
  
  	if ((err = snd_atiixp_aclink_reset(chip)) < 0)
  		goto __error;
b7fe46220   Clemens Ladisch   [ALSA] highlander...
1590
  	chip->spdif_over_aclink = spdif_aclink;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1591

b7fe46220   Clemens Ladisch   [ALSA] highlander...
1592
  	if ((err = snd_atiixp_mixer_new(chip, ac97_clock, ac97_quirk)) < 0)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
  		goto __error;
  
  	if ((err = snd_atiixp_pcm_new(chip)) < 0)
  		goto __error;
  	
  	snd_atiixp_proc_init(chip);
  
  	snd_atiixp_chip_start(chip);
  
  	snprintf(card->longname, sizeof(card->longname),
44c10138f   Auke Kok   PCI: Change all d...
1603
1604
  		 "%s rev %x with %s at %#lx, irq %i", card->shortname,
  		 pci->revision,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1605
1606
  		 chip->ac97[0] ? snd_ac97_get_short_name(chip->ac97[0]) : "?",
  		 chip->addr, chip->irq);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1607
1608
1609
1610
  	if ((err = snd_card_register(card)) < 0)
  		goto __error;
  
  	pci_set_drvdata(pci, card);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1611
1612
1613
1614
1615
1616
  	return 0;
  
   __error:
  	snd_card_free(card);
  	return err;
  }
e23e7a143   Bill Pemberton   ALSA: pci: remove...
1617
  static void snd_atiixp_remove(struct pci_dev *pci)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1618
1619
  {
  	snd_card_free(pci_get_drvdata(pci));
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1620
  }
e9f66d9b9   Takashi Iwai   ALSA: pci: clean ...
1621
  static struct pci_driver atiixp_driver = {
3733e424c   Takashi Iwai   ALSA: Use KBUILD_...
1622
  	.name = KBUILD_MODNAME,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1623
1624
  	.id_table = snd_atiixp_ids,
  	.probe = snd_atiixp_probe,
e23e7a143   Bill Pemberton   ALSA: pci: remove...
1625
  	.remove = snd_atiixp_remove,
68cb2b559   Takashi Iwai   ALSA: Convert to ...
1626
1627
1628
  	.driver = {
  		.pm = SND_ATIIXP_PM_OPS,
  	},
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1629
  };
e9f66d9b9   Takashi Iwai   ALSA: pci: clean ...
1630
  module_pci_driver(atiixp_driver);