blob: 60bb82b2ff473c0cedec1f00b67644a0c6aa8c83 [file] [log] [blame]
Jaya Kumar9b4ffa42005-11-17 10:12:23 +01001/*
2 * Driver for audio on multifunction CS5535 companion device
3 * Copyright (C) Jaya Kumar
4 *
5 * Based on Jaroslav Kysela and Takashi Iwai's examples.
6 * This work was sponsored by CIS(M) Sdn Bhd.
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 *
22 * todo: add be fmt support, spdif, pm
23 */
24
25#include <linux/init.h>
26#include <linux/slab.h>
27#include <linux/pci.h>
28#include <sound/driver.h>
29#include <sound/core.h>
30#include <sound/control.h>
31#include <sound/initval.h>
32#include <sound/asoundef.h>
33#include <sound/pcm.h>
34#include <sound/pcm_params.h>
35#include <sound/ac97_codec.h>
36#include "cs5535audio.h"
37
Takashi Iwai66f8df62005-11-17 14:56:21 +010038static struct snd_pcm_hardware snd_cs5535audio_playback =
Jaya Kumar9b4ffa42005-11-17 10:12:23 +010039{
40 .info = (
41 SNDRV_PCM_INFO_MMAP |
42 SNDRV_PCM_INFO_INTERLEAVED |
43 SNDRV_PCM_INFO_BLOCK_TRANSFER |
44 SNDRV_PCM_INFO_MMAP_VALID |
45 SNDRV_PCM_INFO_PAUSE |
46 SNDRV_PCM_INFO_SYNC_START
47 ),
48 .formats = (
49 SNDRV_PCM_FMTBIT_S16_LE
50 ),
51 .rates = (
52 SNDRV_PCM_RATE_CONTINUOUS |
53 SNDRV_PCM_RATE_8000_48000
54 ),
55 .rate_min = 4000,
56 .rate_max = 48000,
57 .channels_min = 2,
58 .channels_max = 2,
59 .buffer_bytes_max = (128*1024),
60 .period_bytes_min = 64,
61 .period_bytes_max = (64*1024 - 16),
62 .periods_min = 1,
63 .periods_max = CS5535AUDIO_MAX_DESCRIPTORS,
64 .fifo_size = 0,
65};
66
Takashi Iwai66f8df62005-11-17 14:56:21 +010067static struct snd_pcm_hardware snd_cs5535audio_capture =
Jaya Kumar9b4ffa42005-11-17 10:12:23 +010068{
69 .info = (
70 SNDRV_PCM_INFO_MMAP |
71 SNDRV_PCM_INFO_INTERLEAVED |
72 SNDRV_PCM_INFO_BLOCK_TRANSFER |
73 SNDRV_PCM_INFO_MMAP_VALID |
74 SNDRV_PCM_INFO_SYNC_START
75 ),
76 .formats = (
77 SNDRV_PCM_FMTBIT_S16_LE
78 ),
79 .rates = (
80 SNDRV_PCM_RATE_CONTINUOUS |
81 SNDRV_PCM_RATE_8000_48000
82 ),
83 .rate_min = 4000,
84 .rate_max = 48000,
85 .channels_min = 2,
86 .channels_max = 2,
87 .buffer_bytes_max = (128*1024),
88 .period_bytes_min = 64,
89 .period_bytes_max = (64*1024 - 16),
90 .periods_min = 1,
91 .periods_max = CS5535AUDIO_MAX_DESCRIPTORS,
92 .fifo_size = 0,
93};
94
Takashi Iwai66f8df62005-11-17 14:56:21 +010095static int snd_cs5535audio_playback_open(struct snd_pcm_substream *substream)
Jaya Kumar9b4ffa42005-11-17 10:12:23 +010096{
97 int err;
Takashi Iwai66f8df62005-11-17 14:56:21 +010098 struct cs5535audio *cs5535au = snd_pcm_substream_chip(substream);
99 struct snd_pcm_runtime *runtime = substream->runtime;
Jaya Kumar9b4ffa42005-11-17 10:12:23 +0100100
101 runtime->hw = snd_cs5535audio_playback;
102 cs5535au->playback_substream = substream;
103 runtime->private_data = &(cs5535au->dmas[CS5535AUDIO_DMA_PLAYBACK]);
104 snd_pcm_set_sync(substream);
105 if ((err = snd_pcm_hw_constraint_integer(runtime,
106 SNDRV_PCM_HW_PARAM_PERIODS)) < 0)
107 return err;
108
109 return 0;
110}
111
Takashi Iwai66f8df62005-11-17 14:56:21 +0100112static int snd_cs5535audio_playback_close(struct snd_pcm_substream *substream)
Jaya Kumar9b4ffa42005-11-17 10:12:23 +0100113{
114 return 0;
115}
116
117#define CS5535AUDIO_DESC_LIST_SIZE \
Takashi Iwai66f8df62005-11-17 14:56:21 +0100118 PAGE_ALIGN(CS5535AUDIO_MAX_DESCRIPTORS * sizeof(struct cs5535audio_dma_desc))
Jaya Kumar9b4ffa42005-11-17 10:12:23 +0100119
Takashi Iwai66f8df62005-11-17 14:56:21 +0100120static int cs5535audio_build_dma_packets(struct cs5535audio *cs5535au,
121 struct cs5535audio_dma *dma,
122 struct snd_pcm_substream *substream,
123 unsigned int periods,
124 unsigned int period_bytes)
Jaya Kumar9b4ffa42005-11-17 10:12:23 +0100125{
126 unsigned int i;
127 u32 addr, desc_addr, jmpprd_addr;
Takashi Iwai66f8df62005-11-17 14:56:21 +0100128 struct cs5535audio_dma_desc *lastdesc;
Jaya Kumar9b4ffa42005-11-17 10:12:23 +0100129
130 if (periods > CS5535AUDIO_MAX_DESCRIPTORS)
131 return -ENOMEM;
132
133 if (dma->desc_buf.area == NULL) {
134 if (snd_dma_alloc_pages(SNDRV_DMA_TYPE_DEV,
135 snd_dma_pci_data(cs5535au->pci),
136 CS5535AUDIO_DESC_LIST_SIZE+1,
137 &dma->desc_buf) < 0)
138 return -ENOMEM;
139 dma->period_bytes = dma->periods = 0;
140 }
141
142 if (dma->periods == periods && dma->period_bytes == period_bytes)
143 return 0;
144
145 /* the u32 cast is okay because in snd*create we succesfully told
146 pci alloc that we're only 32 bit capable so the uppper will be 0 */
147 addr = (u32) substream->runtime->dma_addr;
148 desc_addr = (u32) dma->desc_buf.addr;
149 for (i = 0; i < periods; i++) {
Takashi Iwai66f8df62005-11-17 14:56:21 +0100150 struct cs5535audio_dma_desc *desc =
151 &((struct cs5535audio_dma_desc *) dma->desc_buf.area)[i];
Jaya Kumar9b4ffa42005-11-17 10:12:23 +0100152 desc->addr = cpu_to_le32(addr);
Takashi Iwai3e873172005-11-17 10:15:37 +0100153 desc->size = cpu_to_le32(period_bytes);
154 desc->ctlreserved = cpu_to_le32(PRD_EOP);
Takashi Iwai66f8df62005-11-17 14:56:21 +0100155 desc_addr += sizeof(struct cs5535audio_dma_desc);
Jaya Kumar9b4ffa42005-11-17 10:12:23 +0100156 addr += period_bytes;
157 }
158 /* we reserved one dummy descriptor at the end to do the PRD jump */
Takashi Iwai66f8df62005-11-17 14:56:21 +0100159 lastdesc = &((struct cs5535audio_dma_desc *) dma->desc_buf.area)[periods];
Jaya Kumar9b4ffa42005-11-17 10:12:23 +0100160 lastdesc->addr = cpu_to_le32((u32) dma->desc_buf.addr);
161 lastdesc->size = 0;
Takashi Iwai3e873172005-11-17 10:15:37 +0100162 lastdesc->ctlreserved = cpu_to_le32(PRD_JMP);
Jaya Kumar9b4ffa42005-11-17 10:12:23 +0100163 jmpprd_addr = cpu_to_le32(lastdesc->addr +
Takashi Iwai66f8df62005-11-17 14:56:21 +0100164 (sizeof(struct cs5535audio_dma_desc)*periods));
Jaya Kumar9b4ffa42005-11-17 10:12:23 +0100165
166 dma->period_bytes = period_bytes;
167 dma->periods = periods;
168 spin_lock_irq(&cs5535au->reg_lock);
169 dma->ops->disable_dma(cs5535au);
170 dma->ops->setup_prd(cs5535au, jmpprd_addr);
171 spin_unlock_irq(&cs5535au->reg_lock);
172 return 0;
173}
174
Takashi Iwai66f8df62005-11-17 14:56:21 +0100175static void cs5535audio_playback_enable_dma(struct cs5535audio *cs5535au)
Jaya Kumar9b4ffa42005-11-17 10:12:23 +0100176{
177 cs_writeb(cs5535au, ACC_BM0_CMD, BM_CTL_EN);
178}
179
Takashi Iwai66f8df62005-11-17 14:56:21 +0100180static void cs5535audio_playback_disable_dma(struct cs5535audio *cs5535au)
Jaya Kumar9b4ffa42005-11-17 10:12:23 +0100181{
182 cs_writeb(cs5535au, ACC_BM0_CMD, 0);
183}
184
Takashi Iwai66f8df62005-11-17 14:56:21 +0100185static void cs5535audio_playback_pause_dma(struct cs5535audio *cs5535au)
Jaya Kumar9b4ffa42005-11-17 10:12:23 +0100186{
187 cs_writeb(cs5535au, ACC_BM0_CMD, BM_CTL_PAUSE);
188}
189
Takashi Iwai66f8df62005-11-17 14:56:21 +0100190static void cs5535audio_playback_setup_prd(struct cs5535audio *cs5535au,
191 u32 prd_addr)
Jaya Kumar9b4ffa42005-11-17 10:12:23 +0100192{
193 cs_writel(cs5535au, ACC_BM0_PRD, prd_addr);
194}
195
Takashi Iwai66f8df62005-11-17 14:56:21 +0100196static u32 cs5535audio_playback_read_dma_pntr(struct cs5535audio *cs5535au)
Jaya Kumar9b4ffa42005-11-17 10:12:23 +0100197{
198 return cs_readl(cs5535au, ACC_BM0_PNTR);
199}
200
Takashi Iwai66f8df62005-11-17 14:56:21 +0100201static void cs5535audio_capture_enable_dma(struct cs5535audio *cs5535au)
Jaya Kumar9b4ffa42005-11-17 10:12:23 +0100202{
203 cs_writeb(cs5535au, ACC_BM1_CMD, BM_CTL_EN);
204}
205
Takashi Iwai66f8df62005-11-17 14:56:21 +0100206static void cs5535audio_capture_disable_dma(struct cs5535audio *cs5535au)
Jaya Kumar9b4ffa42005-11-17 10:12:23 +0100207{
208 cs_writeb(cs5535au, ACC_BM1_CMD, 0);
209}
210
Takashi Iwai66f8df62005-11-17 14:56:21 +0100211static void cs5535audio_capture_pause_dma(struct cs5535audio *cs5535au)
Jaya Kumar9b4ffa42005-11-17 10:12:23 +0100212{
213 cs_writeb(cs5535au, ACC_BM1_CMD, BM_CTL_PAUSE);
214}
215
Takashi Iwai66f8df62005-11-17 14:56:21 +0100216static void cs5535audio_capture_setup_prd(struct cs5535audio *cs5535au,
217 u32 prd_addr)
Jaya Kumar9b4ffa42005-11-17 10:12:23 +0100218{
219 cs_writel(cs5535au, ACC_BM1_PRD, prd_addr);
220}
221
Takashi Iwai66f8df62005-11-17 14:56:21 +0100222static u32 cs5535audio_capture_read_dma_pntr(struct cs5535audio *cs5535au)
Jaya Kumar9b4ffa42005-11-17 10:12:23 +0100223{
224 return cs_readl(cs5535au, ACC_BM1_PNTR);
225}
226
Takashi Iwai66f8df62005-11-17 14:56:21 +0100227static void cs5535audio_clear_dma_packets(struct cs5535audio *cs5535au,
228 struct cs5535audio_dma *dma,
229 struct snd_pcm_substream *substream)
Jaya Kumar9b4ffa42005-11-17 10:12:23 +0100230{
231 snd_dma_free_pages(&dma->desc_buf);
232 dma->desc_buf.area = NULL;
233}
234
Takashi Iwai66f8df62005-11-17 14:56:21 +0100235static int snd_cs5535audio_hw_params(struct snd_pcm_substream *substream,
236 struct snd_pcm_hw_params *hw_params)
Jaya Kumar9b4ffa42005-11-17 10:12:23 +0100237{
Takashi Iwai66f8df62005-11-17 14:56:21 +0100238 struct cs5535audio *cs5535au = snd_pcm_substream_chip(substream);
239 struct cs5535audio_dma *dma = substream->runtime->private_data;
Jaya Kumar9b4ffa42005-11-17 10:12:23 +0100240 int err;
241
242 err = snd_pcm_lib_malloc_pages(substream,
243 params_buffer_bytes(hw_params));
244 if (err < 0)
245 return err;
246 dma->buf_addr = substream->runtime->dma_addr;
247 dma->buf_bytes = params_buffer_bytes(hw_params);
248
249 err = cs5535audio_build_dma_packets(cs5535au, dma, substream,
Takashi Iwai66f8df62005-11-17 14:56:21 +0100250 params_periods(hw_params),
251 params_period_bytes(hw_params));
Jaya Kumar9b4ffa42005-11-17 10:12:23 +0100252 return err;
253}
254
Takashi Iwai66f8df62005-11-17 14:56:21 +0100255static int snd_cs5535audio_hw_free(struct snd_pcm_substream *substream)
Jaya Kumar9b4ffa42005-11-17 10:12:23 +0100256{
Takashi Iwai66f8df62005-11-17 14:56:21 +0100257 struct cs5535audio *cs5535au = snd_pcm_substream_chip(substream);
258 struct cs5535audio_dma *dma = substream->runtime->private_data;
Jaya Kumar9b4ffa42005-11-17 10:12:23 +0100259
260 cs5535audio_clear_dma_packets(cs5535au, dma, substream);
261 return snd_pcm_lib_free_pages(substream);
262}
263
Takashi Iwai66f8df62005-11-17 14:56:21 +0100264static int snd_cs5535audio_playback_prepare(struct snd_pcm_substream *substream)
Jaya Kumar9b4ffa42005-11-17 10:12:23 +0100265{
Takashi Iwai66f8df62005-11-17 14:56:21 +0100266 struct cs5535audio *cs5535au = snd_pcm_substream_chip(substream);
Jaya Kumar9b4ffa42005-11-17 10:12:23 +0100267 return snd_ac97_set_rate(cs5535au->ac97, AC97_PCM_FRONT_DAC_RATE,
Takashi Iwai66f8df62005-11-17 14:56:21 +0100268 substream->runtime->rate);
Jaya Kumar9b4ffa42005-11-17 10:12:23 +0100269}
270
Takashi Iwai66f8df62005-11-17 14:56:21 +0100271static int snd_cs5535audio_trigger(struct snd_pcm_substream *substream, int cmd)
Jaya Kumar9b4ffa42005-11-17 10:12:23 +0100272{
Takashi Iwai66f8df62005-11-17 14:56:21 +0100273 struct cs5535audio *cs5535au = snd_pcm_substream_chip(substream);
274 struct cs5535audio_dma *dma = substream->runtime->private_data;
Takashi Iwai3e873172005-11-17 10:15:37 +0100275 int err = 0;
Jaya Kumar9b4ffa42005-11-17 10:12:23 +0100276
Takashi Iwai3e873172005-11-17 10:15:37 +0100277 spin_lock(&cs5535au->reg_lock);
Jaya Kumar9b4ffa42005-11-17 10:12:23 +0100278 switch (cmd) {
Takashi Iwai3e873172005-11-17 10:15:37 +0100279 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
280 dma->ops->pause_dma(cs5535au);
281 break;
282 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
283 dma->ops->enable_dma(cs5535au);
284 break;
285 case SNDRV_PCM_TRIGGER_START:
286 dma->ops->enable_dma(cs5535au);
287 break;
288 case SNDRV_PCM_TRIGGER_STOP:
289 dma->ops->disable_dma(cs5535au);
290 break;
291 default:
292 snd_printk(KERN_ERR "unhandled trigger\n");
293 err = -EINVAL;
294 break;
Jaya Kumar9b4ffa42005-11-17 10:12:23 +0100295 }
Takashi Iwai3e873172005-11-17 10:15:37 +0100296 spin_unlock(&cs5535au->reg_lock);
297 return err;
Jaya Kumar9b4ffa42005-11-17 10:12:23 +0100298}
299
Takashi Iwai66f8df62005-11-17 14:56:21 +0100300static snd_pcm_uframes_t snd_cs5535audio_pcm_pointer(struct snd_pcm_substream
Jaya Kumar9b4ffa42005-11-17 10:12:23 +0100301 *substream)
302{
Takashi Iwai66f8df62005-11-17 14:56:21 +0100303 struct cs5535audio *cs5535au = snd_pcm_substream_chip(substream);
Jaya Kumar9b4ffa42005-11-17 10:12:23 +0100304 u32 curdma;
Takashi Iwai66f8df62005-11-17 14:56:21 +0100305 struct cs5535audio_dma *dma;
Jaya Kumar9b4ffa42005-11-17 10:12:23 +0100306
307 dma = substream->runtime->private_data;
308 curdma = dma->ops->read_dma_pntr(cs5535au);
309 if (curdma < dma->buf_addr) {
310 snd_printk(KERN_ERR "curdma=%x < %x bufaddr.\n",
311 curdma, dma->buf_addr);
312 return 0;
313 }
314 curdma -= dma->buf_addr;
315 if (curdma >= dma->buf_bytes) {
316 snd_printk(KERN_ERR "diff=%x >= %x buf_bytes.\n",
317 curdma, dma->buf_bytes);
318 return 0;
319 }
320 return bytes_to_frames(substream->runtime, curdma);
321}
322
Takashi Iwai66f8df62005-11-17 14:56:21 +0100323static int snd_cs5535audio_capture_open(struct snd_pcm_substream *substream)
Jaya Kumar9b4ffa42005-11-17 10:12:23 +0100324{
325 int err;
Takashi Iwai66f8df62005-11-17 14:56:21 +0100326 struct cs5535audio *cs5535au = snd_pcm_substream_chip(substream);
327 struct snd_pcm_runtime *runtime = substream->runtime;
Jaya Kumar9b4ffa42005-11-17 10:12:23 +0100328
329 runtime->hw = snd_cs5535audio_capture;
330 cs5535au->capture_substream = substream;
331 runtime->private_data = &(cs5535au->dmas[CS5535AUDIO_DMA_CAPTURE]);
332 snd_pcm_set_sync(substream);
333 if ((err = snd_pcm_hw_constraint_integer(runtime,
334 SNDRV_PCM_HW_PARAM_PERIODS)) < 0)
335 return err;
336 return 0;
337}
338
Takashi Iwai66f8df62005-11-17 14:56:21 +0100339static int snd_cs5535audio_capture_close(struct snd_pcm_substream *substream)
Jaya Kumar9b4ffa42005-11-17 10:12:23 +0100340{
341 return 0;
342}
343
Takashi Iwai66f8df62005-11-17 14:56:21 +0100344static int snd_cs5535audio_capture_prepare(struct snd_pcm_substream *substream)
Jaya Kumar9b4ffa42005-11-17 10:12:23 +0100345{
Takashi Iwai66f8df62005-11-17 14:56:21 +0100346 struct cs5535audio *cs5535au = snd_pcm_substream_chip(substream);
Jaya Kumar9b4ffa42005-11-17 10:12:23 +0100347 return snd_ac97_set_rate(cs5535au->ac97, AC97_PCM_LR_ADC_RATE,
Takashi Iwai66f8df62005-11-17 14:56:21 +0100348 substream->runtime->rate);
Jaya Kumar9b4ffa42005-11-17 10:12:23 +0100349}
350
Takashi Iwai66f8df62005-11-17 14:56:21 +0100351static struct snd_pcm_ops snd_cs5535audio_playback_ops = {
Jaya Kumar9b4ffa42005-11-17 10:12:23 +0100352 .open = snd_cs5535audio_playback_open,
353 .close = snd_cs5535audio_playback_close,
354 .ioctl = snd_pcm_lib_ioctl,
355 .hw_params = snd_cs5535audio_hw_params,
356 .hw_free = snd_cs5535audio_hw_free,
357 .prepare = snd_cs5535audio_playback_prepare,
358 .trigger = snd_cs5535audio_trigger,
359 .pointer = snd_cs5535audio_pcm_pointer,
360};
361
Takashi Iwai66f8df62005-11-17 14:56:21 +0100362static struct snd_pcm_ops snd_cs5535audio_capture_ops = {
Jaya Kumar9b4ffa42005-11-17 10:12:23 +0100363 .open = snd_cs5535audio_capture_open,
364 .close = snd_cs5535audio_capture_close,
365 .ioctl = snd_pcm_lib_ioctl,
366 .hw_params = snd_cs5535audio_hw_params,
367 .hw_free = snd_cs5535audio_hw_free,
368 .prepare = snd_cs5535audio_capture_prepare,
369 .trigger = snd_cs5535audio_trigger,
370 .pointer = snd_cs5535audio_pcm_pointer,
371};
372
Takashi Iwai66f8df62005-11-17 14:56:21 +0100373static struct cs5535audio_dma_ops snd_cs5535audio_playback_dma_ops = {
Jaya Kumar9b4ffa42005-11-17 10:12:23 +0100374 .type = CS5535AUDIO_DMA_PLAYBACK,
375 .enable_dma = cs5535audio_playback_enable_dma,
376 .disable_dma = cs5535audio_playback_disable_dma,
377 .setup_prd = cs5535audio_playback_setup_prd,
378 .pause_dma = cs5535audio_playback_pause_dma,
379 .read_dma_pntr = cs5535audio_playback_read_dma_pntr,
380};
381
Takashi Iwai66f8df62005-11-17 14:56:21 +0100382static struct cs5535audio_dma_ops snd_cs5535audio_capture_dma_ops = {
Jaya Kumar9b4ffa42005-11-17 10:12:23 +0100383 .type = CS5535AUDIO_DMA_CAPTURE,
384 .enable_dma = cs5535audio_capture_enable_dma,
385 .disable_dma = cs5535audio_capture_disable_dma,
386 .setup_prd = cs5535audio_capture_setup_prd,
387 .pause_dma = cs5535audio_capture_pause_dma,
388 .read_dma_pntr = cs5535audio_capture_read_dma_pntr,
389};
390
Takashi Iwai66f8df62005-11-17 14:56:21 +0100391int __devinit snd_cs5535audio_pcm(struct cs5535audio *cs5535au)
Jaya Kumar9b4ffa42005-11-17 10:12:23 +0100392{
Takashi Iwai66f8df62005-11-17 14:56:21 +0100393 struct snd_pcm *pcm;
Jaya Kumar9b4ffa42005-11-17 10:12:23 +0100394 int err;
395
396 err = snd_pcm_new(cs5535au->card, "CS5535 Audio", 0, 1, 1, &pcm);
397 if (err < 0)
398 return err;
399
400 cs5535au->dmas[CS5535AUDIO_DMA_PLAYBACK].ops =
401 &snd_cs5535audio_playback_dma_ops;
402 cs5535au->dmas[CS5535AUDIO_DMA_CAPTURE].ops =
403 &snd_cs5535audio_capture_dma_ops;
404 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK,
405 &snd_cs5535audio_playback_ops);
406 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE,
407 &snd_cs5535audio_capture_ops);
408
409 pcm->private_data = cs5535au;
Jaya Kumar9b4ffa42005-11-17 10:12:23 +0100410 pcm->info_flags = 0;
411 strcpy(pcm->name, "CS5535 Audio");
412
413 snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV,
414 snd_dma_pci_data(cs5535au->pci),
415 64*1024, 128*1024);
416
417 return 0;
418}
419