Blame view

sound/mips/au1x00.c 18.8 KB
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
  /*
   * BRIEF MODULE DESCRIPTION
   *  Driver for AMD Au1000 MIPS Processor, AC'97 Sound Port
   *
   * Copyright 2004 Cooper Street Innovations Inc.
   * Author: Charles Eidsness	<charles@cooper-street.com>
   *
   *  This program is free software; you can redistribute  it and/or modify it
   *  under  the terms of  the GNU General  Public License as published by the
   *  Free Software Foundation;  either version 2 of the  License, or (at your
   *  option) any later version.
   *
   *  THIS  SOFTWARE  IS PROVIDED   ``AS  IS'' AND   ANY  EXPRESS OR IMPLIED
   *  WARRANTIES,   INCLUDING, BUT NOT  LIMITED  TO, THE IMPLIED WARRANTIES OF
   *  MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN
   *  NO  EVENT  SHALL   THE AUTHOR  BE    LIABLE FOR ANY   DIRECT, INDIRECT,
   *  INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
   *  NOT LIMITED   TO, PROCUREMENT OF  SUBSTITUTE GOODS  OR SERVICES; LOSS OF
   *  USE, DATA,  OR PROFITS; OR  BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
   *  ANY THEORY OF LIABILITY, WHETHER IN  CONTRACT, STRICT LIABILITY, OR TORT
   *  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
   *  THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
   *
   *  You should have received a copy of the  GNU General Public License along
   *  with this program; if not, write  to the Free Software Foundation, Inc.,
   *  675 Mass Ave, Cambridge, MA 02139, USA.
   *
   * History:
   *
   * 2004-09-09 Charles Eidsness	-- Original verion -- based on
   * 				  sa11xx-uda1341.c ALSA driver and the
   *				  au1000.c OSS driver.
   * 2004-09-09 Matt Porter	-- Added support for ALSA 1.0.6
   *
   */
  
  #include <linux/ioport.h>
  #include <linux/interrupt.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
39
40
  #include <linux/init.h>
  #include <linux/slab.h>
da155d5b4   Paul Gortmaker   sound: Add module...
41
  #include <linux/module.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
42
43
44
  #include <sound/core.h>
  #include <sound/initval.h>
  #include <sound/pcm.h>
d8327c784   Sergei Shtylylov   [ALSA] AMD Au1x00...
45
  #include <sound/pcm_params.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
46
47
48
49
50
51
52
  #include <sound/ac97_codec.h>
  #include <asm/mach-au1x00/au1000.h>
  #include <asm/mach-au1x00/au1000_dma.h>
  
  MODULE_AUTHOR("Charles Eidsness <charles@cooper-street.com>");
  MODULE_DESCRIPTION("Au1000 AC'97 ALSA Driver");
  MODULE_LICENSE("GPL");
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
53
  MODULE_SUPPORTED_DEVICE("{{AMD,Au1000 AC'97}}");
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
54

1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
55
56
57
58
59
60
61
62
63
64
  #define PLAYBACK 0
  #define CAPTURE 1
  #define AC97_SLOT_3 0x01
  #define AC97_SLOT_4 0x02
  #define AC97_SLOT_6 0x08
  #define AC97_CMD_IRQ 31
  #define READ 0
  #define WRITE 1
  #define READ_WAIT 2
  #define RW_DONE 3
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
65
66
67
68
  struct au1000_period
  {
  	u32 start;
  	u32 relative_end;	/*realtive to start of buffer*/
a0d6f880f   Takashi Iwai   [ALSA] Remove xxx...
69
  	struct au1000_period * next;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
70
71
72
  };
  
  /*Au1000 AC97 Port Control Reisters*/
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
73
74
75
76
77
78
79
  struct au1000_ac97_reg {
  	u32 volatile config;
  	u32 volatile status;
  	u32 volatile data;
  	u32 volatile cmd;
  	u32 volatile cntrl;
  };
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
80
  struct audio_stream {
a0d6f880f   Takashi Iwai   [ALSA] Remove xxx...
81
  	struct snd_pcm_substream *substream;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
82
83
  	int dma;
  	spinlock_t dma_lock;
a0d6f880f   Takashi Iwai   [ALSA] Remove xxx...
84
  	struct au1000_period * buffer;
33ea25c11   Takashi Iwai   [ALSA] au1x00 - C...
85
86
  	unsigned int period_size;
  	unsigned int periods;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
87
  };
a0d6f880f   Takashi Iwai   [ALSA] Remove xxx...
88
89
90
  struct snd_au1000 {
  	struct snd_card *card;
  	struct au1000_ac97_reg volatile *ac97_ioport;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
91
92
93
  
  	struct resource *ac97_res_port;
  	spinlock_t ac97_lock;
a0d6f880f   Takashi Iwai   [ALSA] Remove xxx...
94
  	struct snd_ac97 *ac97;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
95

a0d6f880f   Takashi Iwai   [ALSA] Remove xxx...
96
97
98
  	struct snd_pcm *pcm;
  	struct audio_stream *stream[2];	/* playback & capture */
  };
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
99

1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
100
101
  /*--------------------------- Local Functions --------------------------------*/
  static void
a0d6f880f   Takashi Iwai   [ALSA] Remove xxx...
102
  au1000_set_ac97_xmit_slots(struct snd_au1000 *au1000, long xmit_slots)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
103
104
105
106
107
108
109
110
111
112
113
114
  {
  	u32 volatile ac97_config;
  
  	spin_lock(&au1000->ac97_lock);
  	ac97_config = au1000->ac97_ioport->config;
  	ac97_config = ac97_config & ~AC97C_XMIT_SLOTS_MASK;
  	ac97_config |= (xmit_slots << AC97C_XMIT_SLOTS_BIT);
  	au1000->ac97_ioport->config = ac97_config;
  	spin_unlock(&au1000->ac97_lock);
  }
  
  static void
a0d6f880f   Takashi Iwai   [ALSA] Remove xxx...
115
  au1000_set_ac97_recv_slots(struct snd_au1000 *au1000, long recv_slots)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
116
117
118
119
120
121
122
123
124
125
126
127
128
  {
  	u32 volatile ac97_config;
  
  	spin_lock(&au1000->ac97_lock);
  	ac97_config = au1000->ac97_ioport->config;
  	ac97_config = ac97_config & ~AC97C_RECV_SLOTS_MASK;
  	ac97_config |= (recv_slots << AC97C_RECV_SLOTS_BIT);
  	au1000->ac97_ioport->config = ac97_config;
  	spin_unlock(&au1000->ac97_lock);
  }
  
  
  static void
a0d6f880f   Takashi Iwai   [ALSA] Remove xxx...
129
  au1000_release_dma_link(struct audio_stream *stream)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
130
  {
a0d6f880f   Takashi Iwai   [ALSA] Remove xxx...
131
132
  	struct au1000_period * pointer;
  	struct au1000_period * pointer_next;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
133

33ea25c11   Takashi Iwai   [ALSA] au1x00 - C...
134
135
136
137
138
139
140
141
142
143
144
145
146
147
  	stream->period_size = 0;
  	stream->periods = 0;
  	pointer = stream->buffer;
  	if (! pointer)
  		return;
  	do {
  		pointer_next = pointer->next;
  		kfree(pointer);
  		pointer = pointer_next;
  	} while (pointer != stream->buffer);
  	stream->buffer = NULL;
  }
  
  static int
a0d6f880f   Takashi Iwai   [ALSA] Remove xxx...
148
  au1000_setup_dma_link(struct audio_stream *stream, unsigned int period_bytes,
33ea25c11   Takashi Iwai   [ALSA] au1x00 - C...
149
150
  		      unsigned int periods)
  {
a0d6f880f   Takashi Iwai   [ALSA] Remove xxx...
151
152
  	struct snd_pcm_substream *substream = stream->substream;
  	struct snd_pcm_runtime *runtime = substream->runtime;
d8327c784   Sergei Shtylylov   [ALSA] AMD Au1x00...
153
  	struct au1000_period *pointer;
33ea25c11   Takashi Iwai   [ALSA] au1x00 - C...
154
155
156
157
  	unsigned long dma_start;
  	int i;
  
  	dma_start = virt_to_phys(runtime->dma_area);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
158

33ea25c11   Takashi Iwai   [ALSA] au1x00 - C...
159
160
161
  	if (stream->period_size == period_bytes &&
  	    stream->periods == periods)
  		return 0; /* not changed */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
162

33ea25c11   Takashi Iwai   [ALSA] au1x00 - C...
163
  	au1000_release_dma_link(stream);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
164

33ea25c11   Takashi Iwai   [ALSA] au1x00 - C...
165
166
  	stream->period_size = period_bytes;
  	stream->periods = periods;
a0d6f880f   Takashi Iwai   [ALSA] Remove xxx...
167
  	stream->buffer = kmalloc(sizeof(struct au1000_period), GFP_KERNEL);
33ea25c11   Takashi Iwai   [ALSA] au1x00 - C...
168
169
170
171
172
173
174
175
176
177
178
179
180
181
  	if (! stream->buffer)
  		return -ENOMEM;
  	pointer = stream->buffer;
  	for (i = 0; i < periods; i++) {
  		pointer->start = (u32)(dma_start + (i * period_bytes));
  		pointer->relative_end = (u32) (((i+1) * period_bytes) - 0x1);
  		if (i < periods - 1) {
  			pointer->next = kmalloc(sizeof(struct au1000_period), GFP_KERNEL);
  			if (! pointer->next) {
  				au1000_release_dma_link(stream);
  				return -ENOMEM;
  			}
  			pointer = pointer->next;
  		}
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
182
  	}
33ea25c11   Takashi Iwai   [ALSA] au1x00 - C...
183
184
  	pointer->next = stream->buffer;
  	return 0;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
185
186
187
  }
  
  static void
a0d6f880f   Takashi Iwai   [ALSA] Remove xxx...
188
  au1000_dma_stop(struct audio_stream *stream)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
189
  {
5e246b850   Takashi Iwai   ALSA: Kill snd_as...
190
191
  	if (snd_BUG_ON(!stream->buffer))
  		return;
33ea25c11   Takashi Iwai   [ALSA] au1x00 - C...
192
193
  	disable_dma(stream->dma);
  }
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
194

33ea25c11   Takashi Iwai   [ALSA] au1x00 - C...
195
  static void
a0d6f880f   Takashi Iwai   [ALSA] Remove xxx...
196
  au1000_dma_start(struct audio_stream *stream)
33ea25c11   Takashi Iwai   [ALSA] au1x00 - C...
197
  {
5e246b850   Takashi Iwai   ALSA: Kill snd_as...
198
199
  	if (snd_BUG_ON(!stream->buffer))
  		return;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
200

33ea25c11   Takashi Iwai   [ALSA] au1x00 - C...
201
202
203
204
205
206
207
208
209
210
211
212
213
  	init_dma(stream->dma);
  	if (get_dma_active_buffer(stream->dma) == 0) {
  		clear_dma_done0(stream->dma);
  		set_dma_addr0(stream->dma, stream->buffer->start);
  		set_dma_count0(stream->dma, stream->period_size >> 1);
  		set_dma_addr1(stream->dma, stream->buffer->next->start);
  		set_dma_count1(stream->dma, stream->period_size >> 1);
  	} else {
  		clear_dma_done1(stream->dma);
  		set_dma_addr1(stream->dma, stream->buffer->start);
  		set_dma_count1(stream->dma, stream->period_size >> 1);
  		set_dma_addr0(stream->dma, stream->buffer->next->start);
  		set_dma_count0(stream->dma, stream->period_size >> 1);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
214
  	}
33ea25c11   Takashi Iwai   [ALSA] au1x00 - C...
215
216
  	enable_dma_buffers(stream->dma);
  	start_dma(stream->dma);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
217
218
219
  }
  
  static irqreturn_t
7d12e780e   David Howells   IRQ: Maintain reg...
220
  au1000_dma_interrupt(int irq, void *dev_id)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
221
  {
a0d6f880f   Takashi Iwai   [ALSA] Remove xxx...
222
223
  	struct audio_stream *stream = (struct audio_stream *) dev_id;
  	struct snd_pcm_substream *substream = stream->substream;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
  
  	spin_lock(&stream->dma_lock);
  	switch (get_dma_buffer_done(stream->dma)) {
  	case DMA_D0:
  		stream->buffer = stream->buffer->next;
  		clear_dma_done0(stream->dma);
  		set_dma_addr0(stream->dma, stream->buffer->next->start);
  		set_dma_count0(stream->dma, stream->period_size >> 1);
  		enable_dma_buffer0(stream->dma);
  		break;
  	case DMA_D1:
  		stream->buffer = stream->buffer->next;
  		clear_dma_done1(stream->dma);
  		set_dma_addr1(stream->dma, stream->buffer->next->start);
  		set_dma_count1(stream->dma, stream->period_size >> 1);
  		enable_dma_buffer1(stream->dma);
  		break;
  	case (DMA_D0 | DMA_D1):
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
242
243
244
245
  		printk(KERN_ERR "DMA %d missed interrupt.
  ",stream->dma);
  		au1000_dma_stop(stream);
  		au1000_dma_start(stream);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
246
247
248
249
250
251
252
253
254
255
256
257
258
  		break;
  	case (~DMA_D0 & ~DMA_D1):
  		printk(KERN_ERR "DMA %d empty irq.
  ",stream->dma);
  	}
  	spin_unlock(&stream->dma_lock);
  	snd_pcm_period_elapsed(substream);
  	return IRQ_HANDLED;
  }
  
  /*-------------------------- PCM Audio Streams -------------------------------*/
  
  static unsigned int rates[] = {8000, 11025, 16000, 22050};
a0d6f880f   Takashi Iwai   [ALSA] Remove xxx...
259
  static struct snd_pcm_hw_constraint_list hw_constraints_rates = {
2ad3479de   Tobias Klauser   [PATCH] sound/mip...
260
  	.count	= ARRAY_SIZE(rates),
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
261
262
263
  	.list	= rates,
  	.mask	= 0,
  };
a0d6f880f   Takashi Iwai   [ALSA] Remove xxx...
264
  static struct snd_pcm_hardware snd_au1000_hw =
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
  {
  	.info			= (SNDRV_PCM_INFO_INTERLEAVED | \
  				SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_MMAP_VALID),
  	.formats		= SNDRV_PCM_FMTBIT_S16_LE,
  	.rates			= (SNDRV_PCM_RATE_8000 | SNDRV_PCM_RATE_11025 |
  				SNDRV_PCM_RATE_16000 | SNDRV_PCM_RATE_22050),
  	.rate_min		= 8000,
  	.rate_max		= 22050,
  	.channels_min		= 1,
  	.channels_max		= 2,
  	.buffer_bytes_max	= 128*1024,
  	.period_bytes_min	= 32,
  	.period_bytes_max	= 16*1024,
  	.periods_min		= 8,
  	.periods_max		= 255,
  	.fifo_size		= 16,
  };
  
  static int
a0d6f880f   Takashi Iwai   [ALSA] Remove xxx...
284
  snd_au1000_playback_open(struct snd_pcm_substream *substream)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
285
  {
a0d6f880f   Takashi Iwai   [ALSA] Remove xxx...
286
  	struct snd_au1000 *au1000 = substream->pcm->private_data;
33ea25c11   Takashi Iwai   [ALSA] au1x00 - C...
287

1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
288
289
290
  	au1000->stream[PLAYBACK]->substream = substream;
  	au1000->stream[PLAYBACK]->buffer = NULL;
  	substream->private_data = au1000->stream[PLAYBACK];
33ea25c11   Takashi Iwai   [ALSA] au1x00 - C...
291
  	substream->runtime->hw = snd_au1000_hw;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
292
293
294
295
296
  	return (snd_pcm_hw_constraint_list(substream->runtime, 0,
  		SNDRV_PCM_HW_PARAM_RATE, &hw_constraints_rates) < 0);
  }
  
  static int
a0d6f880f   Takashi Iwai   [ALSA] Remove xxx...
297
  snd_au1000_capture_open(struct snd_pcm_substream *substream)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
298
  {
a0d6f880f   Takashi Iwai   [ALSA] Remove xxx...
299
  	struct snd_au1000 *au1000 = substream->pcm->private_data;
33ea25c11   Takashi Iwai   [ALSA] au1x00 - C...
300

1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
301
302
303
  	au1000->stream[CAPTURE]->substream = substream;
  	au1000->stream[CAPTURE]->buffer = NULL;
  	substream->private_data = au1000->stream[CAPTURE];
33ea25c11   Takashi Iwai   [ALSA] au1x00 - C...
304
  	substream->runtime->hw = snd_au1000_hw;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
305
306
  	return (snd_pcm_hw_constraint_list(substream->runtime, 0,
  		SNDRV_PCM_HW_PARAM_RATE, &hw_constraints_rates) < 0);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
307
308
309
  }
  
  static int
a0d6f880f   Takashi Iwai   [ALSA] Remove xxx...
310
  snd_au1000_playback_close(struct snd_pcm_substream *substream)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
311
  {
a0d6f880f   Takashi Iwai   [ALSA] Remove xxx...
312
  	struct snd_au1000 *au1000 = substream->pcm->private_data;
33ea25c11   Takashi Iwai   [ALSA] au1x00 - C...
313

1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
314
315
316
317
318
  	au1000->stream[PLAYBACK]->substream = NULL;
  	return 0;
  }
  
  static int
a0d6f880f   Takashi Iwai   [ALSA] Remove xxx...
319
  snd_au1000_capture_close(struct snd_pcm_substream *substream)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
320
  {
a0d6f880f   Takashi Iwai   [ALSA] Remove xxx...
321
  	struct snd_au1000 *au1000 = substream->pcm->private_data;
33ea25c11   Takashi Iwai   [ALSA] au1x00 - C...
322

1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
323
324
325
326
327
  	au1000->stream[CAPTURE]->substream = NULL;
  	return 0;
  }
  
  static int
a0d6f880f   Takashi Iwai   [ALSA] Remove xxx...
328
329
  snd_au1000_hw_params(struct snd_pcm_substream *substream,
  					struct snd_pcm_hw_params *hw_params)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
330
  {
a0d6f880f   Takashi Iwai   [ALSA] Remove xxx...
331
  	struct audio_stream *stream = substream->private_data;
33ea25c11   Takashi Iwai   [ALSA] au1x00 - C...
332
333
334
335
336
337
338
339
340
  	int err;
  
  	err = snd_pcm_lib_malloc_pages(substream,
  				       params_buffer_bytes(hw_params));
  	if (err < 0)
  		return err;
  	return au1000_setup_dma_link(stream,
  				     params_period_bytes(hw_params),
  				     params_periods(hw_params));
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
341
342
343
  }
  
  static int
a0d6f880f   Takashi Iwai   [ALSA] Remove xxx...
344
  snd_au1000_hw_free(struct snd_pcm_substream *substream)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
345
  {
a0d6f880f   Takashi Iwai   [ALSA] Remove xxx...
346
  	struct audio_stream *stream = substream->private_data;
33ea25c11   Takashi Iwai   [ALSA] au1x00 - C...
347
  	au1000_release_dma_link(stream);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
348
349
350
351
  	return snd_pcm_lib_free_pages(substream);
  }
  
  static int
a0d6f880f   Takashi Iwai   [ALSA] Remove xxx...
352
  snd_au1000_playback_prepare(struct snd_pcm_substream *substream)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
353
  {
a0d6f880f   Takashi Iwai   [ALSA] Remove xxx...
354
355
  	struct snd_au1000 *au1000 = substream->pcm->private_data;
  	struct snd_pcm_runtime *runtime = substream->runtime;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
356

33ea25c11   Takashi Iwai   [ALSA] au1x00 - C...
357
358
  	if (runtime->channels == 1)
  		au1000_set_ac97_xmit_slots(au1000, AC97_SLOT_4);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
359
  	else
33ea25c11   Takashi Iwai   [ALSA] au1x00 - C...
360
  		au1000_set_ac97_xmit_slots(au1000, AC97_SLOT_3 | AC97_SLOT_4);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
361
362
363
364
365
  	snd_ac97_set_rate(au1000->ac97, AC97_PCM_FRONT_DAC_RATE, runtime->rate);
  	return 0;
  }
  
  static int
a0d6f880f   Takashi Iwai   [ALSA] Remove xxx...
366
  snd_au1000_capture_prepare(struct snd_pcm_substream *substream)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
367
  {
a0d6f880f   Takashi Iwai   [ALSA] Remove xxx...
368
369
  	struct snd_au1000 *au1000 = substream->pcm->private_data;
  	struct snd_pcm_runtime *runtime = substream->runtime;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
370

33ea25c11   Takashi Iwai   [ALSA] au1x00 - C...
371
372
  	if (runtime->channels == 1)
  		au1000_set_ac97_recv_slots(au1000, AC97_SLOT_4);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
373
  	else
33ea25c11   Takashi Iwai   [ALSA] au1x00 - C...
374
  		au1000_set_ac97_recv_slots(au1000, AC97_SLOT_3 | AC97_SLOT_4);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
375
376
377
378
379
  	snd_ac97_set_rate(au1000->ac97, AC97_PCM_LR_ADC_RATE, runtime->rate);
  	return 0;
  }
  
  static int
a0d6f880f   Takashi Iwai   [ALSA] Remove xxx...
380
  snd_au1000_trigger(struct snd_pcm_substream *substream, int cmd)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
381
  {
a0d6f880f   Takashi Iwai   [ALSA] Remove xxx...
382
  	struct audio_stream *stream = substream->private_data;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
383
  	int err = 0;
33ea25c11   Takashi Iwai   [ALSA] au1x00 - C...
384
  	spin_lock(&stream->dma_lock);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
385
386
387
388
389
390
391
392
393
394
395
  	switch (cmd) {
  	case SNDRV_PCM_TRIGGER_START:
  		au1000_dma_start(stream);
  		break;
  	case SNDRV_PCM_TRIGGER_STOP:
  		au1000_dma_stop(stream);
  		break;
  	default:
  		err = -EINVAL;
  		break;
  	}
33ea25c11   Takashi Iwai   [ALSA] au1x00 - C...
396
  	spin_unlock(&stream->dma_lock);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
397
398
399
400
  	return err;
  }
  
  static snd_pcm_uframes_t
a0d6f880f   Takashi Iwai   [ALSA] Remove xxx...
401
  snd_au1000_pointer(struct snd_pcm_substream *substream)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
402
  {
a0d6f880f   Takashi Iwai   [ALSA] Remove xxx...
403
404
  	struct audio_stream *stream = substream->private_data;
  	struct snd_pcm_runtime *runtime = substream->runtime;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
405
  	long location;
33ea25c11   Takashi Iwai   [ALSA] au1x00 - C...
406
  	spin_lock(&stream->dma_lock);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
407
  	location = get_dma_residue(stream->dma);
33ea25c11   Takashi Iwai   [ALSA] au1x00 - C...
408
  	spin_unlock(&stream->dma_lock);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
409
410
411
412
413
  	location = stream->buffer->relative_end - location;
  	if (location == -1)
  		location = 0;
  	return bytes_to_frames(runtime,location);
  }
a0d6f880f   Takashi Iwai   [ALSA] Remove xxx...
414
  static struct snd_pcm_ops snd_card_au1000_playback_ops = {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
415
416
417
418
419
420
421
422
423
  	.open			= snd_au1000_playback_open,
  	.close			= snd_au1000_playback_close,
  	.ioctl			= snd_pcm_lib_ioctl,
  	.hw_params	        = snd_au1000_hw_params,
  	.hw_free	        = snd_au1000_hw_free,
  	.prepare		= snd_au1000_playback_prepare,
  	.trigger		= snd_au1000_trigger,
  	.pointer		= snd_au1000_pointer,
  };
a0d6f880f   Takashi Iwai   [ALSA] Remove xxx...
424
  static struct snd_pcm_ops snd_card_au1000_capture_ops = {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
425
426
427
428
429
430
431
432
433
434
435
  	.open			= snd_au1000_capture_open,
  	.close			= snd_au1000_capture_close,
  	.ioctl			= snd_pcm_lib_ioctl,
  	.hw_params	        = snd_au1000_hw_params,
  	.hw_free	        = snd_au1000_hw_free,
  	.prepare		= snd_au1000_capture_prepare,
  	.trigger		= snd_au1000_trigger,
  	.pointer		= snd_au1000_pointer,
  };
  
  static int __devinit
a0d6f880f   Takashi Iwai   [ALSA] Remove xxx...
436
  snd_au1000_pcm_new(struct snd_au1000 *au1000)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
437
  {
a0d6f880f   Takashi Iwai   [ALSA] Remove xxx...
438
  	struct snd_pcm *pcm;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
  	int err;
  	unsigned long flags;
  
  	if ((err = snd_pcm_new(au1000->card, "AU1000 AC97 PCM", 0, 1, 1, &pcm)) < 0)
  		return err;
  
  	snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_CONTINUOUS,
  		snd_dma_continuous_data(GFP_KERNEL), 128*1024, 128*1024);
  
  	snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK,
  		&snd_card_au1000_playback_ops);
  	snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE,
  		&snd_card_au1000_capture_ops);
  
  	pcm->private_data = au1000;
  	pcm->info_flags = 0;
  	strcpy(pcm->name, "Au1000 AC97 PCM");
33ea25c11   Takashi Iwai   [ALSA] au1x00 - C...
456
457
  	spin_lock_init(&au1000->stream[PLAYBACK]->dma_lock);
  	spin_lock_init(&au1000->stream[CAPTURE]->dma_lock);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
458
459
  	flags = claim_dma_lock();
  	if ((au1000->stream[PLAYBACK]->dma = request_au1000_dma(DMA_ID_AC97C_TX,
88e24c3a4   Yong Zhang   sound: irq: Remov...
460
  			"AC97 TX", au1000_dma_interrupt, 0,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
461
462
463
464
465
  			au1000->stream[PLAYBACK])) < 0) {
  		release_dma_lock(flags);
  		return -EBUSY;
  	}
  	if ((au1000->stream[CAPTURE]->dma = request_au1000_dma(DMA_ID_AC97C_RX,
88e24c3a4   Yong Zhang   sound: irq: Remov...
466
  			"AC97 RX", au1000_dma_interrupt, 0,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
467
468
469
470
471
472
473
474
475
476
  			au1000->stream[CAPTURE])) < 0){
  		release_dma_lock(flags);
  		return -EBUSY;
  	}
  	/* enable DMA coherency in read/write DMA channels */
  	set_dma_mode(au1000->stream[PLAYBACK]->dma,
  		     get_dma_mode(au1000->stream[PLAYBACK]->dma) & ~DMA_NC);
  	set_dma_mode(au1000->stream[CAPTURE]->dma,
  		     get_dma_mode(au1000->stream[CAPTURE]->dma) & ~DMA_NC);
  	release_dma_lock(flags);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
477
478
479
480
481
482
483
484
  	au1000->pcm = pcm;
  	return 0;
  }
  
  
  /*-------------------------- AC97 CODEC Control ------------------------------*/
  
  static unsigned short
a0d6f880f   Takashi Iwai   [ALSA] Remove xxx...
485
  snd_au1000_ac97_read(struct snd_ac97 *ac97, unsigned short reg)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
486
  {
a0d6f880f   Takashi Iwai   [ALSA] Remove xxx...
487
  	struct snd_au1000 *au1000 = ac97->private_data;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
488
489
490
  	u32 volatile cmd;
  	u16 volatile data;
  	int             i;
33ea25c11   Takashi Iwai   [ALSA] au1x00 - C...
491

708f99716   Konstantin Baydarov   [ALSA] AMD Au1x00...
492
  	spin_lock(&au1000->ac97_lock);
3a4fa0a25   Robert P. J. Day   Fix misspellings ...
493
494
  /* would rather use the interrupt than this polling but it works and I can't
  get the interrupt driven case to work efficiently */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
  	for (i = 0; i < 0x5000; i++)
  		if (!(au1000->ac97_ioport->status & AC97C_CP))
  			break;
  	if (i == 0x5000)
  		printk(KERN_ERR "au1000 AC97: AC97 command read timeout
  ");
  
  	cmd = (u32) reg & AC97C_INDEX_MASK;
  	cmd |= AC97C_READ;
  	au1000->ac97_ioport->cmd = cmd;
  
  	/* now wait for the data */
  	for (i = 0; i < 0x5000; i++)
  		if (!(au1000->ac97_ioport->status & AC97C_CP))
  			break;
  	if (i == 0x5000) {
  		printk(KERN_ERR "au1000 AC97: AC97 command read timeout
  ");
1efddcc98   Julia Lawall   sound: Add missin...
513
  		spin_unlock(&au1000->ac97_lock);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
514
515
516
517
  		return 0;
  	}
  
  	data = au1000->ac97_ioport->cmd & 0xffff;
708f99716   Konstantin Baydarov   [ALSA] AMD Au1x00...
518
  	spin_unlock(&au1000->ac97_lock);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
519
520
521
522
523
524
525
  
  	return data;
  
  }
  
  
  static void
a0d6f880f   Takashi Iwai   [ALSA] Remove xxx...
526
  snd_au1000_ac97_write(struct snd_ac97 *ac97, unsigned short reg, unsigned short val)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
527
  {
a0d6f880f   Takashi Iwai   [ALSA] Remove xxx...
528
  	struct snd_au1000 *au1000 = ac97->private_data;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
529
530
  	u32 cmd;
  	int i;
33ea25c11   Takashi Iwai   [ALSA] au1x00 - C...
531

708f99716   Konstantin Baydarov   [ALSA] AMD Au1x00...
532
  	spin_lock(&au1000->ac97_lock);
3a4fa0a25   Robert P. J. Day   Fix misspellings ...
533
534
  /* would rather use the interrupt than this polling but it works and I can't
  get the interrupt driven case to work efficiently */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
535
536
537
538
539
540
541
542
543
544
545
  	for (i = 0; i < 0x5000; i++)
  		if (!(au1000->ac97_ioport->status & AC97C_CP))
  			break;
  	if (i == 0x5000)
  		printk(KERN_ERR "au1000 AC97: AC97 command write timeout
  ");
  
  	cmd = (u32) reg & AC97C_INDEX_MASK;
  	cmd &= ~AC97C_READ;
  	cmd |= ((u32) val << AC97C_WD_BIT);
  	au1000->ac97_ioport->cmd = cmd;
708f99716   Konstantin Baydarov   [ALSA] AMD Au1x00...
546
  	spin_unlock(&au1000->ac97_lock);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
547
  }
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
548
549
  
  static int __devinit
a0d6f880f   Takashi Iwai   [ALSA] Remove xxx...
550
  snd_au1000_ac97_new(struct snd_au1000 *au1000)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
551
552
  {
  	int err;
a0d6f880f   Takashi Iwai   [ALSA] Remove xxx...
553
554
555
556
557
558
  	struct snd_ac97_bus *pbus;
  	struct snd_ac97_template ac97;
   	static struct snd_ac97_bus_ops ops = {
  		.write = snd_au1000_ac97_write,
  		.read = snd_au1000_ac97_read,
  	};
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
559

c5c079e31   Sergei Shtylyov   [ALSA] AMD Au1x00...
560
561
  	if ((au1000->ac97_res_port = request_mem_region(CPHYSADDR(AC97C_CONFIG),
  	       		0x100000, "Au1x00 AC97")) == NULL) {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
562
563
564
565
  		snd_printk(KERN_ERR "ALSA AC97: can't grap AC97 port
  ");
  		return -EBUSY;
  	}
c5c079e31   Sergei Shtylyov   [ALSA] AMD Au1x00...
566
567
  	au1000->ac97_ioport = (struct au1000_ac97_reg *)
  		KSEG1ADDR(au1000->ac97_res_port->start);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
568
569
  
  	spin_lock_init(&au1000->ac97_lock);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
  	/* configure pins for AC'97
  	TODO: move to board_setup.c */
  	au_writel(au_readl(SYS_PINFUNC) & ~0x02, SYS_PINFUNC);
  
  	/* Initialise Au1000's AC'97 Control Block */
  	au1000->ac97_ioport->cntrl = AC97C_RS | AC97C_CE;
  	udelay(10);
  	au1000->ac97_ioport->cntrl = AC97C_CE;
  	udelay(10);
  
  	/* Initialise External CODEC -- cold reset */
  	au1000->ac97_ioport->config = AC97C_RESET;
  	udelay(10);
  	au1000->ac97_ioport->config = 0x0;
  	mdelay(5);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
585
  	/* Initialise AC97 middle-layer */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
586
587
  	if ((err = snd_ac97_bus(au1000->card, 0, &ops, au1000, &pbus)) < 0)
   		return err;
33ea25c11   Takashi Iwai   [ALSA] au1x00 - C...
588

1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
589
590
  	memset(&ac97, 0, sizeof(ac97));
  	ac97.private_data = au1000;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
591
592
  	if ((err = snd_ac97_mixer(pbus, &ac97, &au1000->ac97)) < 0)
  		return err;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
593

33ea25c11   Takashi Iwai   [ALSA] au1x00 - C...
594
  	return 0;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
595
596
597
598
599
  }
  
  /*------------------------------ Setup / Destroy ----------------------------*/
  
  void
a0d6f880f   Takashi Iwai   [ALSA] Remove xxx...
600
  snd_au1000_free(struct snd_card *card)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
601
  {
a0d6f880f   Takashi Iwai   [ALSA] Remove xxx...
602
  	struct snd_au1000 *au1000 = card->private_data;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
603
604
605
606
607
  
  	if (au1000->ac97_res_port) {
  		/* put internal AC97 block into reset */
  		au1000->ac97_ioport->cntrl = AC97C_RS;
  		au1000->ac97_ioport = NULL;
b1d5776d8   Takashi Iwai   [ALSA] Remove vma...
608
  		release_and_free_resource(au1000->ac97_res_port);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
609
  	}
bb160b850   Sergei Shtylyov   [ALSA] AMD Au1x00...
610
611
612
613
614
  	if (au1000->stream[PLAYBACK]) {
  	  	if (au1000->stream[PLAYBACK]->dma >= 0)
  			free_au1000_dma(au1000->stream[PLAYBACK]->dma);
  		kfree(au1000->stream[PLAYBACK]);
  	}
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
615

bb160b850   Sergei Shtylyov   [ALSA] AMD Au1x00...
616
617
618
619
620
  	if (au1000->stream[CAPTURE]) {
  		if (au1000->stream[CAPTURE]->dma >= 0)
  			free_au1000_dma(au1000->stream[CAPTURE]->dma);
  		kfree(au1000->stream[CAPTURE]);
  	}
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
621
  }
33ea25c11   Takashi Iwai   [ALSA] au1x00 - C...
622

a0d6f880f   Takashi Iwai   [ALSA] Remove xxx...
623
  static struct snd_card *au1000_card;
33ea25c11   Takashi Iwai   [ALSA] au1x00 - C...
624

1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
625
626
627
628
  static int __init
  au1000_init(void)
  {
  	int err;
a0d6f880f   Takashi Iwai   [ALSA] Remove xxx...
629
630
  	struct snd_card *card;
  	struct snd_au1000 *au1000;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
631

bd7dd77c2   Takashi Iwai   ALSA: Convert to ...
632
633
634
635
  	err = snd_card_create(-1, "AC97", THIS_MODULE,
  			      sizeof(struct snd_au1000), &card);
  	if (err < 0)
  		return err;
33ea25c11   Takashi Iwai   [ALSA] au1x00 - C...
636
637
638
  
  	card->private_free = snd_au1000_free;
  	au1000 = card->private_data;
33ea25c11   Takashi Iwai   [ALSA] au1x00 - C...
639
  	au1000->card = card;
bb160b850   Sergei Shtylyov   [ALSA] AMD Au1x00...
640

a0d6f880f   Takashi Iwai   [ALSA] Remove xxx...
641
  	au1000->stream[PLAYBACK] = kmalloc(sizeof(struct audio_stream), GFP_KERNEL);
bb160b850   Sergei Shtylyov   [ALSA] AMD Au1x00...
642
643
644
645
646
647
648
  	au1000->stream[CAPTURE ] = kmalloc(sizeof(struct audio_stream), GFP_KERNEL);
  	/* so that snd_au1000_free will work as intended */
   	au1000->ac97_res_port = NULL;
  	if (au1000->stream[PLAYBACK])
  		au1000->stream[PLAYBACK]->dma = -1;
  	if (au1000->stream[CAPTURE ])
  		au1000->stream[CAPTURE ]->dma = -1;
33ea25c11   Takashi Iwai   [ALSA] au1x00 - C...
649
  	if (au1000->stream[PLAYBACK] == NULL ||
bb160b850   Sergei Shtylyov   [ALSA] AMD Au1x00...
650
  	    au1000->stream[CAPTURE ] == NULL) {
33ea25c11   Takashi Iwai   [ALSA] au1x00 - C...
651
  		snd_card_free(card);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
652
653
  		return -ENOMEM;
  	}
33ea25c11   Takashi Iwai   [ALSA] au1x00 - C...
654
655
  	if ((err = snd_au1000_ac97_new(au1000)) < 0 ) {
  		snd_card_free(card);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
656
657
  		return err;
  	}
33ea25c11   Takashi Iwai   [ALSA] au1x00 - C...
658
659
  	if ((err = snd_au1000_pcm_new(au1000)) < 0) {
  		snd_card_free(card);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
660
661
  		return err;
  	}
33ea25c11   Takashi Iwai   [ALSA] au1x00 - C...
662
663
664
  	strcpy(card->driver, "Au1000-AC97");
  	strcpy(card->shortname, "AMD Au1000-AC97");
  	sprintf(card->longname, "AMD Au1000--AC97 ALSA Driver");
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
665

33ea25c11   Takashi Iwai   [ALSA] au1x00 - C...
666
667
  	if ((err = snd_card_register(card)) < 0) {
  		snd_card_free(card);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
668
669
  		return err;
  	}
2ebfb8eeb   Takashi Iwai   ALSA: Add missing...
670
671
  	printk(KERN_INFO "ALSA AC97: Driver Initialized
  ");
33ea25c11   Takashi Iwai   [ALSA] au1x00 - C...
672
  	au1000_card = card;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
673
674
675
676
677
  	return 0;
  }
  
  static void __exit au1000_exit(void)
  {
33ea25c11   Takashi Iwai   [ALSA] au1x00 - C...
678
  	snd_card_free(au1000_card);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
679
680
681
682
  }
  
  module_init(au1000_init);
  module_exit(au1000_exit);