blob: f150cced9fc16e5ce6c66ecd833ebde1d00420db [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * BRIEF MODULE DESCRIPTION
3 * Driver for AMD Au1000 MIPS Processor, AC'97 Sound Port
4 *
5 * Copyright 2004 Cooper Street Innovations Inc.
6 * Author: Charles Eidsness <charles@cooper-street.com>
7 *
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License as published by the
10 * Free Software Foundation; either version 2 of the License, or (at your
11 * option) any later version.
12 *
13 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
14 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
15 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN
16 * NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
17 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
18 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
19 * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
20 * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
21 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
22 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
23 *
24 * You should have received a copy of the GNU General Public License along
25 * with this program; if not, write to the Free Software Foundation, Inc.,
26 * 675 Mass Ave, Cambridge, MA 02139, USA.
27 *
28 * History:
29 *
30 * 2004-09-09 Charles Eidsness -- Original verion -- based on
31 * sa11xx-uda1341.c ALSA driver and the
32 * au1000.c OSS driver.
33 * 2004-09-09 Matt Porter -- Added support for ALSA 1.0.6
34 *
35 */
36
37#include <linux/ioport.h>
38#include <linux/interrupt.h>
39#include <sound/driver.h>
40#include <linux/init.h>
41#include <linux/slab.h>
42#include <linux/version.h>
43#include <sound/core.h>
44#include <sound/initval.h>
45#include <sound/pcm.h>
46#include <sound/ac97_codec.h>
47#include <asm/mach-au1x00/au1000.h>
48#include <asm/mach-au1x00/au1000_dma.h>
49
50MODULE_AUTHOR("Charles Eidsness <charles@cooper-street.com>");
51MODULE_DESCRIPTION("Au1000 AC'97 ALSA Driver");
52MODULE_LICENSE("GPL");
Linus Torvalds1da177e2005-04-16 15:20:36 -070053MODULE_SUPPORTED_DEVICE("{{AMD,Au1000 AC'97}}");
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
Linus Torvalds1da177e2005-04-16 15:20:36 -070055#define PLAYBACK 0
56#define CAPTURE 1
57#define AC97_SLOT_3 0x01
58#define AC97_SLOT_4 0x02
59#define AC97_SLOT_6 0x08
60#define AC97_CMD_IRQ 31
61#define READ 0
62#define WRITE 1
63#define READ_WAIT 2
64#define RW_DONE 3
65
Linus Torvalds1da177e2005-04-16 15:20:36 -070066struct au1000_period
67{
68 u32 start;
69 u32 relative_end; /*realtive to start of buffer*/
Takashi Iwaia0d6f882005-11-17 15:12:31 +010070 struct au1000_period * next;
Linus Torvalds1da177e2005-04-16 15:20:36 -070071};
72
73/*Au1000 AC97 Port Control Reisters*/
Linus Torvalds1da177e2005-04-16 15:20:36 -070074struct au1000_ac97_reg {
75 u32 volatile config;
76 u32 volatile status;
77 u32 volatile data;
78 u32 volatile cmd;
79 u32 volatile cntrl;
80};
81
Linus Torvalds1da177e2005-04-16 15:20:36 -070082struct audio_stream {
Takashi Iwaia0d6f882005-11-17 15:12:31 +010083 struct snd_pcm_substream *substream;
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 int dma;
85 spinlock_t dma_lock;
Takashi Iwaia0d6f882005-11-17 15:12:31 +010086 struct au1000_period * buffer;
Takashi Iwai33ea25c2005-11-17 10:32:43 +010087 unsigned int period_size;
88 unsigned int periods;
Linus Torvalds1da177e2005-04-16 15:20:36 -070089};
90
Takashi Iwaia0d6f882005-11-17 15:12:31 +010091struct snd_au1000 {
92 struct snd_card *card;
93 struct au1000_ac97_reg volatile *ac97_ioport;
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
95 struct resource *ac97_res_port;
96 spinlock_t ac97_lock;
Takashi Iwaia0d6f882005-11-17 15:12:31 +010097 struct snd_ac97 *ac97;
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
Takashi Iwaia0d6f882005-11-17 15:12:31 +010099 struct snd_pcm *pcm;
100 struct audio_stream *stream[2]; /* playback & capture */
101};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103/*--------------------------- Local Functions --------------------------------*/
104static void
Takashi Iwaia0d6f882005-11-17 15:12:31 +0100105au1000_set_ac97_xmit_slots(struct snd_au1000 *au1000, long xmit_slots)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106{
107 u32 volatile ac97_config;
108
109 spin_lock(&au1000->ac97_lock);
110 ac97_config = au1000->ac97_ioport->config;
111 ac97_config = ac97_config & ~AC97C_XMIT_SLOTS_MASK;
112 ac97_config |= (xmit_slots << AC97C_XMIT_SLOTS_BIT);
113 au1000->ac97_ioport->config = ac97_config;
114 spin_unlock(&au1000->ac97_lock);
115}
116
117static void
Takashi Iwaia0d6f882005-11-17 15:12:31 +0100118au1000_set_ac97_recv_slots(struct snd_au1000 *au1000, long recv_slots)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119{
120 u32 volatile ac97_config;
121
122 spin_lock(&au1000->ac97_lock);
123 ac97_config = au1000->ac97_ioport->config;
124 ac97_config = ac97_config & ~AC97C_RECV_SLOTS_MASK;
125 ac97_config |= (recv_slots << AC97C_RECV_SLOTS_BIT);
126 au1000->ac97_ioport->config = ac97_config;
127 spin_unlock(&au1000->ac97_lock);
128}
129
130
131static void
Takashi Iwaia0d6f882005-11-17 15:12:31 +0100132au1000_release_dma_link(struct audio_stream *stream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133{
Takashi Iwaia0d6f882005-11-17 15:12:31 +0100134 struct au1000_period * pointer;
135 struct au1000_period * pointer_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
Takashi Iwai33ea25c2005-11-17 10:32:43 +0100137 stream->period_size = 0;
138 stream->periods = 0;
139 pointer = stream->buffer;
140 if (! pointer)
141 return;
142 do {
143 pointer_next = pointer->next;
144 kfree(pointer);
145 pointer = pointer_next;
146 } while (pointer != stream->buffer);
147 stream->buffer = NULL;
148}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
Takashi Iwai33ea25c2005-11-17 10:32:43 +0100150static int
Takashi Iwaia0d6f882005-11-17 15:12:31 +0100151au1000_setup_dma_link(struct audio_stream *stream, unsigned int period_bytes,
Takashi Iwai33ea25c2005-11-17 10:32:43 +0100152 unsigned int periods)
153{
Takashi Iwaia0d6f882005-11-17 15:12:31 +0100154 struct snd_pcm_substream *substream = stream->substream;
155 struct snd_pcm_runtime *runtime = substream->runtime;
Takashi Iwai33ea25c2005-11-17 10:32:43 +0100156 unsigned long dma_start;
157 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
Takashi Iwai33ea25c2005-11-17 10:32:43 +0100159 dma_start = virt_to_phys(runtime->dma_area);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
Takashi Iwai33ea25c2005-11-17 10:32:43 +0100161 if (stream->period_size == period_bytes &&
162 stream->periods == periods)
163 return 0; /* not changed */
164
165 au1000_release_dma_link(stream);
166
167 stream->period_size = period_bytes;
168 stream->periods = periods;
169
Takashi Iwaia0d6f882005-11-17 15:12:31 +0100170 stream->buffer = kmalloc(sizeof(struct au1000_period), GFP_KERNEL);
Takashi Iwai33ea25c2005-11-17 10:32:43 +0100171 if (! stream->buffer)
172 return -ENOMEM;
173 pointer = stream->buffer;
174 for (i = 0; i < periods; i++) {
175 pointer->start = (u32)(dma_start + (i * period_bytes));
176 pointer->relative_end = (u32) (((i+1) * period_bytes) - 0x1);
177 if (i < periods - 1) {
178 pointer->next = kmalloc(sizeof(struct au1000_period), GFP_KERNEL);
179 if (! pointer->next) {
180 au1000_release_dma_link(stream);
181 return -ENOMEM;
182 }
183 pointer = pointer->next;
184 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 }
Takashi Iwai33ea25c2005-11-17 10:32:43 +0100186 pointer->next = stream->buffer;
187 return 0;
188}
189
190static void
Takashi Iwaia0d6f882005-11-17 15:12:31 +0100191au1000_dma_stop(struct audio_stream *stream)
Takashi Iwai33ea25c2005-11-17 10:32:43 +0100192{
193 snd_assert(stream->buffer, return);
194 disable_dma(stream->dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195}
196
197static void
Takashi Iwaia0d6f882005-11-17 15:12:31 +0100198au1000_dma_start(struct audio_stream *stream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199{
Takashi Iwai33ea25c2005-11-17 10:32:43 +0100200 snd_assert(stream->buffer, return);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201
Takashi Iwai33ea25c2005-11-17 10:32:43 +0100202 init_dma(stream->dma);
203 if (get_dma_active_buffer(stream->dma) == 0) {
204 clear_dma_done0(stream->dma);
205 set_dma_addr0(stream->dma, stream->buffer->start);
206 set_dma_count0(stream->dma, stream->period_size >> 1);
207 set_dma_addr1(stream->dma, stream->buffer->next->start);
208 set_dma_count1(stream->dma, stream->period_size >> 1);
209 } else {
210 clear_dma_done1(stream->dma);
211 set_dma_addr1(stream->dma, stream->buffer->start);
212 set_dma_count1(stream->dma, stream->period_size >> 1);
213 set_dma_addr0(stream->dma, stream->buffer->next->start);
214 set_dma_count0(stream->dma, stream->period_size >> 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 }
Takashi Iwai33ea25c2005-11-17 10:32:43 +0100216 enable_dma_buffers(stream->dma);
217 start_dma(stream->dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218}
219
220static irqreturn_t
221au1000_dma_interrupt(int irq, void *dev_id, struct pt_regs *regs)
222{
Takashi Iwaia0d6f882005-11-17 15:12:31 +0100223 struct audio_stream *stream = (struct audio_stream *) dev_id;
224 struct snd_pcm_substream *substream = stream->substream;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225
226 spin_lock(&stream->dma_lock);
227 switch (get_dma_buffer_done(stream->dma)) {
228 case DMA_D0:
229 stream->buffer = stream->buffer->next;
230 clear_dma_done0(stream->dma);
231 set_dma_addr0(stream->dma, stream->buffer->next->start);
232 set_dma_count0(stream->dma, stream->period_size >> 1);
233 enable_dma_buffer0(stream->dma);
234 break;
235 case DMA_D1:
236 stream->buffer = stream->buffer->next;
237 clear_dma_done1(stream->dma);
238 set_dma_addr1(stream->dma, stream->buffer->next->start);
239 set_dma_count1(stream->dma, stream->period_size >> 1);
240 enable_dma_buffer1(stream->dma);
241 break;
242 case (DMA_D0 | DMA_D1):
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 printk(KERN_ERR "DMA %d missed interrupt.\n",stream->dma);
244 au1000_dma_stop(stream);
245 au1000_dma_start(stream);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 break;
247 case (~DMA_D0 & ~DMA_D1):
248 printk(KERN_ERR "DMA %d empty irq.\n",stream->dma);
249 }
250 spin_unlock(&stream->dma_lock);
251 snd_pcm_period_elapsed(substream);
252 return IRQ_HANDLED;
253}
254
255/*-------------------------- PCM Audio Streams -------------------------------*/
256
257static unsigned int rates[] = {8000, 11025, 16000, 22050};
Takashi Iwaia0d6f882005-11-17 15:12:31 +0100258static struct snd_pcm_hw_constraint_list hw_constraints_rates = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 .count = sizeof(rates) / sizeof(rates[0]),
260 .list = rates,
261 .mask = 0,
262};
263
Takashi Iwaia0d6f882005-11-17 15:12:31 +0100264static struct snd_pcm_hardware snd_au1000_hw =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265{
266 .info = (SNDRV_PCM_INFO_INTERLEAVED | \
267 SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_MMAP_VALID),
268 .formats = SNDRV_PCM_FMTBIT_S16_LE,
269 .rates = (SNDRV_PCM_RATE_8000 | SNDRV_PCM_RATE_11025 |
270 SNDRV_PCM_RATE_16000 | SNDRV_PCM_RATE_22050),
271 .rate_min = 8000,
272 .rate_max = 22050,
273 .channels_min = 1,
274 .channels_max = 2,
275 .buffer_bytes_max = 128*1024,
276 .period_bytes_min = 32,
277 .period_bytes_max = 16*1024,
278 .periods_min = 8,
279 .periods_max = 255,
280 .fifo_size = 16,
281};
282
283static int
Takashi Iwaia0d6f882005-11-17 15:12:31 +0100284snd_au1000_playback_open(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285{
Takashi Iwaia0d6f882005-11-17 15:12:31 +0100286 struct snd_au1000 *au1000 = substream->pcm->private_data;
Takashi Iwai33ea25c2005-11-17 10:32:43 +0100287
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 au1000->stream[PLAYBACK]->substream = substream;
289 au1000->stream[PLAYBACK]->buffer = NULL;
290 substream->private_data = au1000->stream[PLAYBACK];
Takashi Iwai33ea25c2005-11-17 10:32:43 +0100291 substream->runtime->hw = snd_au1000_hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 return (snd_pcm_hw_constraint_list(substream->runtime, 0,
293 SNDRV_PCM_HW_PARAM_RATE, &hw_constraints_rates) < 0);
294}
295
296static int
Takashi Iwaia0d6f882005-11-17 15:12:31 +0100297snd_au1000_capture_open(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298{
Takashi Iwaia0d6f882005-11-17 15:12:31 +0100299 struct snd_au1000 *au1000 = substream->pcm->private_data;
Takashi Iwai33ea25c2005-11-17 10:32:43 +0100300
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 au1000->stream[CAPTURE]->substream = substream;
302 au1000->stream[CAPTURE]->buffer = NULL;
303 substream->private_data = au1000->stream[CAPTURE];
Takashi Iwai33ea25c2005-11-17 10:32:43 +0100304 substream->runtime->hw = snd_au1000_hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 return (snd_pcm_hw_constraint_list(substream->runtime, 0,
306 SNDRV_PCM_HW_PARAM_RATE, &hw_constraints_rates) < 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307}
308
309static int
Takashi Iwaia0d6f882005-11-17 15:12:31 +0100310snd_au1000_playback_close(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311{
Takashi Iwaia0d6f882005-11-17 15:12:31 +0100312 struct snd_au1000 *au1000 = substream->pcm->private_data;
Takashi Iwai33ea25c2005-11-17 10:32:43 +0100313
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 au1000->stream[PLAYBACK]->substream = NULL;
315 return 0;
316}
317
318static int
Takashi Iwaia0d6f882005-11-17 15:12:31 +0100319snd_au1000_capture_close(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320{
Takashi Iwaia0d6f882005-11-17 15:12:31 +0100321 struct snd_au1000 *au1000 = substream->pcm->private_data;
Takashi Iwai33ea25c2005-11-17 10:32:43 +0100322
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 au1000->stream[CAPTURE]->substream = NULL;
324 return 0;
325}
326
327static int
Takashi Iwaia0d6f882005-11-17 15:12:31 +0100328snd_au1000_hw_params(struct snd_pcm_substream *substream,
329 struct snd_pcm_hw_params *hw_params)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330{
Takashi Iwaia0d6f882005-11-17 15:12:31 +0100331 struct audio_stream *stream = substream->private_data;
Takashi Iwai33ea25c2005-11-17 10:32:43 +0100332 int err;
333
334 err = snd_pcm_lib_malloc_pages(substream,
335 params_buffer_bytes(hw_params));
336 if (err < 0)
337 return err;
338 return au1000_setup_dma_link(stream,
339 params_period_bytes(hw_params),
340 params_periods(hw_params));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341}
342
343static int
Takashi Iwaia0d6f882005-11-17 15:12:31 +0100344snd_au1000_hw_free(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345{
Takashi Iwaia0d6f882005-11-17 15:12:31 +0100346 struct audio_stream *stream = substream->private_data;
Takashi Iwai33ea25c2005-11-17 10:32:43 +0100347 au1000_release_dma_link(stream);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 return snd_pcm_lib_free_pages(substream);
349}
350
351static int
Takashi Iwaia0d6f882005-11-17 15:12:31 +0100352snd_au1000_playback_prepare(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353{
Takashi Iwaia0d6f882005-11-17 15:12:31 +0100354 struct snd_au1000 *au1000 = substream->pcm->private_data;
355 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356
Takashi Iwai33ea25c2005-11-17 10:32:43 +0100357 if (runtime->channels == 1)
358 au1000_set_ac97_xmit_slots(au1000, AC97_SLOT_4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 else
Takashi Iwai33ea25c2005-11-17 10:32:43 +0100360 au1000_set_ac97_xmit_slots(au1000, AC97_SLOT_3 | AC97_SLOT_4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 snd_ac97_set_rate(au1000->ac97, AC97_PCM_FRONT_DAC_RATE, runtime->rate);
362 return 0;
363}
364
365static int
Takashi Iwaia0d6f882005-11-17 15:12:31 +0100366snd_au1000_capture_prepare(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367{
Takashi Iwaia0d6f882005-11-17 15:12:31 +0100368 struct snd_au1000 *au1000 = substream->pcm->private_data;
369 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370
Takashi Iwai33ea25c2005-11-17 10:32:43 +0100371 if (runtime->channels == 1)
372 au1000_set_ac97_recv_slots(au1000, AC97_SLOT_4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 else
Takashi Iwai33ea25c2005-11-17 10:32:43 +0100374 au1000_set_ac97_recv_slots(au1000, AC97_SLOT_3 | AC97_SLOT_4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 snd_ac97_set_rate(au1000->ac97, AC97_PCM_LR_ADC_RATE, runtime->rate);
376 return 0;
377}
378
379static int
Takashi Iwaia0d6f882005-11-17 15:12:31 +0100380snd_au1000_trigger(struct snd_pcm_substream *substream, int cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381{
Takashi Iwaia0d6f882005-11-17 15:12:31 +0100382 struct audio_stream *stream = substream->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 int err = 0;
384
Takashi Iwai33ea25c2005-11-17 10:32:43 +0100385 spin_lock(&stream->dma_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 switch (cmd) {
387 case SNDRV_PCM_TRIGGER_START:
388 au1000_dma_start(stream);
389 break;
390 case SNDRV_PCM_TRIGGER_STOP:
391 au1000_dma_stop(stream);
392 break;
393 default:
394 err = -EINVAL;
395 break;
396 }
Takashi Iwai33ea25c2005-11-17 10:32:43 +0100397 spin_unlock(&stream->dma_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 return err;
399}
400
401static snd_pcm_uframes_t
Takashi Iwaia0d6f882005-11-17 15:12:31 +0100402snd_au1000_pointer(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403{
Takashi Iwaia0d6f882005-11-17 15:12:31 +0100404 struct audio_stream *stream = substream->private_data;
405 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 long location;
407
Takashi Iwai33ea25c2005-11-17 10:32:43 +0100408 spin_lock(&stream->dma_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 location = get_dma_residue(stream->dma);
Takashi Iwai33ea25c2005-11-17 10:32:43 +0100410 spin_unlock(&stream->dma_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 location = stream->buffer->relative_end - location;
412 if (location == -1)
413 location = 0;
414 return bytes_to_frames(runtime,location);
415}
416
Takashi Iwaia0d6f882005-11-17 15:12:31 +0100417static struct snd_pcm_ops snd_card_au1000_playback_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 .open = snd_au1000_playback_open,
419 .close = snd_au1000_playback_close,
420 .ioctl = snd_pcm_lib_ioctl,
421 .hw_params = snd_au1000_hw_params,
422 .hw_free = snd_au1000_hw_free,
423 .prepare = snd_au1000_playback_prepare,
424 .trigger = snd_au1000_trigger,
425 .pointer = snd_au1000_pointer,
426};
427
Takashi Iwaia0d6f882005-11-17 15:12:31 +0100428static struct snd_pcm_ops snd_card_au1000_capture_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 .open = snd_au1000_capture_open,
430 .close = snd_au1000_capture_close,
431 .ioctl = snd_pcm_lib_ioctl,
432 .hw_params = snd_au1000_hw_params,
433 .hw_free = snd_au1000_hw_free,
434 .prepare = snd_au1000_capture_prepare,
435 .trigger = snd_au1000_trigger,
436 .pointer = snd_au1000_pointer,
437};
438
439static int __devinit
Takashi Iwaia0d6f882005-11-17 15:12:31 +0100440snd_au1000_pcm_new(struct snd_au1000 *au1000)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441{
Takashi Iwaia0d6f882005-11-17 15:12:31 +0100442 struct snd_pcm *pcm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 int err;
444 unsigned long flags;
445
446 if ((err = snd_pcm_new(au1000->card, "AU1000 AC97 PCM", 0, 1, 1, &pcm)) < 0)
447 return err;
448
449 snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_CONTINUOUS,
450 snd_dma_continuous_data(GFP_KERNEL), 128*1024, 128*1024);
451
452 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK,
453 &snd_card_au1000_playback_ops);
454 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE,
455 &snd_card_au1000_capture_ops);
456
457 pcm->private_data = au1000;
458 pcm->info_flags = 0;
459 strcpy(pcm->name, "Au1000 AC97 PCM");
460
Takashi Iwai33ea25c2005-11-17 10:32:43 +0100461 spin_lock_init(&au1000->stream[PLAYBACK]->dma_lock);
462 spin_lock_init(&au1000->stream[CAPTURE]->dma_lock);
463
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 flags = claim_dma_lock();
465 if ((au1000->stream[PLAYBACK]->dma = request_au1000_dma(DMA_ID_AC97C_TX,
466 "AC97 TX", au1000_dma_interrupt, SA_INTERRUPT,
467 au1000->stream[PLAYBACK])) < 0) {
468 release_dma_lock(flags);
469 return -EBUSY;
470 }
471 if ((au1000->stream[CAPTURE]->dma = request_au1000_dma(DMA_ID_AC97C_RX,
472 "AC97 RX", au1000_dma_interrupt, SA_INTERRUPT,
473 au1000->stream[CAPTURE])) < 0){
474 release_dma_lock(flags);
475 return -EBUSY;
476 }
477 /* enable DMA coherency in read/write DMA channels */
478 set_dma_mode(au1000->stream[PLAYBACK]->dma,
479 get_dma_mode(au1000->stream[PLAYBACK]->dma) & ~DMA_NC);
480 set_dma_mode(au1000->stream[CAPTURE]->dma,
481 get_dma_mode(au1000->stream[CAPTURE]->dma) & ~DMA_NC);
482 release_dma_lock(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 au1000->pcm = pcm;
484 return 0;
485}
486
487
488/*-------------------------- AC97 CODEC Control ------------------------------*/
489
490static unsigned short
Takashi Iwaia0d6f882005-11-17 15:12:31 +0100491snd_au1000_ac97_read(struct snd_ac97 *ac97, unsigned short reg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492{
Takashi Iwaia0d6f882005-11-17 15:12:31 +0100493 struct snd_au1000 *au1000 = ac97->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 u32 volatile cmd;
495 u16 volatile data;
496 int i;
Takashi Iwai33ea25c2005-11-17 10:32:43 +0100497
Konstantin Baydarov708f9972005-10-27 17:25:02 +0200498 spin_lock(&au1000->ac97_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499/* would rather use the interupt than this polling but it works and I can't
500get the interupt driven case to work efficiently */
501 for (i = 0; i < 0x5000; i++)
502 if (!(au1000->ac97_ioport->status & AC97C_CP))
503 break;
504 if (i == 0x5000)
505 printk(KERN_ERR "au1000 AC97: AC97 command read timeout\n");
506
507 cmd = (u32) reg & AC97C_INDEX_MASK;
508 cmd |= AC97C_READ;
509 au1000->ac97_ioport->cmd = cmd;
510
511 /* now wait for the data */
512 for (i = 0; i < 0x5000; i++)
513 if (!(au1000->ac97_ioport->status & AC97C_CP))
514 break;
515 if (i == 0x5000) {
516 printk(KERN_ERR "au1000 AC97: AC97 command read timeout\n");
517 return 0;
518 }
519
520 data = au1000->ac97_ioport->cmd & 0xffff;
Konstantin Baydarov708f9972005-10-27 17:25:02 +0200521 spin_unlock(&au1000->ac97_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522
523 return data;
524
525}
526
527
528static void
Takashi Iwaia0d6f882005-11-17 15:12:31 +0100529snd_au1000_ac97_write(struct snd_ac97 *ac97, unsigned short reg, unsigned short val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530{
Takashi Iwaia0d6f882005-11-17 15:12:31 +0100531 struct snd_au1000 *au1000 = ac97->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 u32 cmd;
533 int i;
Takashi Iwai33ea25c2005-11-17 10:32:43 +0100534
Konstantin Baydarov708f9972005-10-27 17:25:02 +0200535 spin_lock(&au1000->ac97_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536/* would rather use the interupt than this polling but it works and I can't
537get the interupt driven case to work efficiently */
538 for (i = 0; i < 0x5000; i++)
539 if (!(au1000->ac97_ioport->status & AC97C_CP))
540 break;
541 if (i == 0x5000)
542 printk(KERN_ERR "au1000 AC97: AC97 command write timeout\n");
543
544 cmd = (u32) reg & AC97C_INDEX_MASK;
545 cmd &= ~AC97C_READ;
546 cmd |= ((u32) val << AC97C_WD_BIT);
547 au1000->ac97_ioport->cmd = cmd;
Konstantin Baydarov708f9972005-10-27 17:25:02 +0200548 spin_unlock(&au1000->ac97_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550
551static int __devinit
Takashi Iwaia0d6f882005-11-17 15:12:31 +0100552snd_au1000_ac97_new(struct snd_au1000 *au1000)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553{
554 int err;
Takashi Iwaia0d6f882005-11-17 15:12:31 +0100555 struct snd_ac97_bus *pbus;
556 struct snd_ac97_template ac97;
557 static struct snd_ac97_bus_ops ops = {
558 .write = snd_au1000_ac97_write,
559 .read = snd_au1000_ac97_read,
560 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561
562 if ((au1000->ac97_res_port = request_region(AC97C_CONFIG,
Takashi Iwaia0d6f882005-11-17 15:12:31 +0100563 sizeof(struct au1000_ac97_reg), "Au1x00 AC97")) == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 snd_printk(KERN_ERR "ALSA AC97: can't grap AC97 port\n");
565 return -EBUSY;
566 }
Takashi Iwaia0d6f882005-11-17 15:12:31 +0100567 au1000->ac97_ioport = (struct au1000_ac97_reg *) au1000->ac97_res_port->start;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568
569 spin_lock_init(&au1000->ac97_lock);
570
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 /* configure pins for AC'97
572 TODO: move to board_setup.c */
573 au_writel(au_readl(SYS_PINFUNC) & ~0x02, SYS_PINFUNC);
574
575 /* Initialise Au1000's AC'97 Control Block */
576 au1000->ac97_ioport->cntrl = AC97C_RS | AC97C_CE;
577 udelay(10);
578 au1000->ac97_ioport->cntrl = AC97C_CE;
579 udelay(10);
580
581 /* Initialise External CODEC -- cold reset */
582 au1000->ac97_ioport->config = AC97C_RESET;
583 udelay(10);
584 au1000->ac97_ioport->config = 0x0;
585 mdelay(5);
586
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 /* Initialise AC97 middle-layer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 if ((err = snd_ac97_bus(au1000->card, 0, &ops, au1000, &pbus)) < 0)
589 return err;
Takashi Iwai33ea25c2005-11-17 10:32:43 +0100590
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 memset(&ac97, 0, sizeof(ac97));
592 ac97.private_data = au1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 if ((err = snd_ac97_mixer(pbus, &ac97, &au1000->ac97)) < 0)
594 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595
Takashi Iwai33ea25c2005-11-17 10:32:43 +0100596 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597}
598
599/*------------------------------ Setup / Destroy ----------------------------*/
600
601void
Takashi Iwaia0d6f882005-11-17 15:12:31 +0100602snd_au1000_free(struct snd_card *card)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603{
Takashi Iwaia0d6f882005-11-17 15:12:31 +0100604 struct snd_au1000 *au1000 = card->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605
606 if (au1000->ac97_res_port) {
607 /* put internal AC97 block into reset */
608 au1000->ac97_ioport->cntrl = AC97C_RS;
609 au1000->ac97_ioport = NULL;
Takashi Iwaib1d57762005-10-10 11:56:31 +0200610 release_and_free_resource(au1000->ac97_res_port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 }
612
613 if (au1000->stream[PLAYBACK]->dma >= 0)
614 free_au1000_dma(au1000->stream[PLAYBACK]->dma);
615
616 if (au1000->stream[CAPTURE]->dma >= 0)
617 free_au1000_dma(au1000->stream[CAPTURE]->dma);
618
619 kfree(au1000->stream[PLAYBACK]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 kfree(au1000->stream[CAPTURE]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621}
622
Takashi Iwai33ea25c2005-11-17 10:32:43 +0100623
Takashi Iwaia0d6f882005-11-17 15:12:31 +0100624static struct snd_card *au1000_card;
Takashi Iwai33ea25c2005-11-17 10:32:43 +0100625
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626static int __init
627au1000_init(void)
628{
629 int err;
Takashi Iwaia0d6f882005-11-17 15:12:31 +0100630 struct snd_card *card;
631 struct snd_au1000 *au1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632
Takashi Iwaia0d6f882005-11-17 15:12:31 +0100633 card = snd_card_new(-1, "AC97", THIS_MODULE, sizeof(struct snd_au1000));
Takashi Iwai33ea25c2005-11-17 10:32:43 +0100634 if (card == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 return -ENOMEM;
Takashi Iwai33ea25c2005-11-17 10:32:43 +0100636
637 card->private_free = snd_au1000_free;
638 au1000 = card->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 /* so that snd_au1000_free will work as intended */
Takashi Iwai33ea25c2005-11-17 10:32:43 +0100640 au1000->card = card;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 au1000->stream[PLAYBACK]->dma = -1;
642 au1000->stream[CAPTURE]->dma = -1;
643 au1000->ac97_res_port = NULL;
Takashi Iwaia0d6f882005-11-17 15:12:31 +0100644 au1000->stream[PLAYBACK] = kmalloc(sizeof(struct audio_stream), GFP_KERNEL);
645 au1000->stream[CAPTURE] = kmalloc(sizeof(struct audio_stream), GFP_KERNEL);
Takashi Iwai33ea25c2005-11-17 10:32:43 +0100646 if (au1000->stream[PLAYBACK] == NULL ||
647 au1000->stream[CAPTURE] == NULL) {
648 snd_card_free(card);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 return -ENOMEM;
650 }
651
Takashi Iwai33ea25c2005-11-17 10:32:43 +0100652 if ((err = snd_au1000_ac97_new(au1000)) < 0 ) {
653 snd_card_free(card);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 return err;
655 }
656
Takashi Iwai33ea25c2005-11-17 10:32:43 +0100657 if ((err = snd_au1000_pcm_new(au1000)) < 0) {
658 snd_card_free(card);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 return err;
660 }
661
Takashi Iwai33ea25c2005-11-17 10:32:43 +0100662 strcpy(card->driver, "Au1000-AC97");
663 strcpy(card->shortname, "AMD Au1000-AC97");
664 sprintf(card->longname, "AMD Au1000--AC97 ALSA Driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665
Takashi Iwai33ea25c2005-11-17 10:32:43 +0100666 if ((err = snd_card_set_generic_dev(card)) < 0) {
667 snd_card_free(card);
Takashi Iwai16dab542005-09-05 17:17:58 +0200668 return err;
669 }
670
Takashi Iwai33ea25c2005-11-17 10:32:43 +0100671 if ((err = snd_card_register(card)) < 0) {
672 snd_card_free(card);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 return err;
674 }
675
676 printk( KERN_INFO "ALSA AC97: Driver Initialized\n" );
Takashi Iwai33ea25c2005-11-17 10:32:43 +0100677 au1000_card = card;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 return 0;
679}
680
681static void __exit au1000_exit(void)
682{
Takashi Iwai33ea25c2005-11-17 10:32:43 +0100683 snd_card_free(au1000_card);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684}
685
686module_init(au1000_init);
687module_exit(au1000_exit);
688