blob: 99ec1c17049b8b48816e989a65f8a892c65edc57 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Driver for NeoMagic 256AV and 256ZX chipsets.
3 * Copyright (c) 2000 by Takashi Iwai <tiwai@suse.de>
4 *
5 * Based on nm256_audio.c OSS driver in linux kernel.
6 * The original author of OSS nm256 driver wishes to remain anonymous,
7 * so I just put my acknoledgment to him/her here.
8 * The original author's web page is found at
9 * http://www.uglx.org/sony.html
10 *
11 *
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2 of the License, or
15 * (at your option) any later version.
16 *
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the Free Software
24 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
25 */
26
27#include <sound/driver.h>
28#include <asm/io.h>
29#include <linux/delay.h>
30#include <linux/interrupt.h>
31#include <linux/init.h>
32#include <linux/pci.h>
33#include <linux/slab.h>
34#include <linux/moduleparam.h>
35#include <sound/core.h>
36#include <sound/info.h>
37#include <sound/control.h>
38#include <sound/pcm.h>
39#include <sound/ac97_codec.h>
40#include <sound/initval.h>
41
42#define CARD_NAME "NeoMagic 256AV/ZX"
43#define DRIVER_NAME "NM256"
44
45MODULE_AUTHOR("Takashi Iwai <tiwai@suse.de>");
46MODULE_DESCRIPTION("NeoMagic NM256AV/ZX");
47MODULE_LICENSE("GPL");
48MODULE_SUPPORTED_DEVICE("{{NeoMagic,NM256AV},"
49 "{NeoMagic,NM256ZX}}");
50
51/*
52 * some compile conditions.
53 */
54
Takashi Iwai8a3fb4d2005-10-20 17:10:49 +020055static int index = SNDRV_DEFAULT_IDX1; /* Index */
56static char *id = SNDRV_DEFAULT_STR1; /* ID for this card */
57static int playback_bufsize = 16;
58static int capture_bufsize = 16;
59static int force_ac97; /* disabled as default */
60static int buffer_top; /* not specified */
61static int use_cache; /* disabled */
62static int vaio_hack; /* disabled */
63static int reset_workaround;
64static int reset_workaround_2;
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
Takashi Iwai8a3fb4d2005-10-20 17:10:49 +020066module_param(index, int, 0444);
Linus Torvalds1da177e2005-04-16 15:20:36 -070067MODULE_PARM_DESC(index, "Index value for " CARD_NAME " soundcard.");
Takashi Iwai8a3fb4d2005-10-20 17:10:49 +020068module_param(id, charp, 0444);
Linus Torvalds1da177e2005-04-16 15:20:36 -070069MODULE_PARM_DESC(id, "ID string for " CARD_NAME " soundcard.");
Takashi Iwai8a3fb4d2005-10-20 17:10:49 +020070module_param(playback_bufsize, int, 0444);
Linus Torvalds1da177e2005-04-16 15:20:36 -070071MODULE_PARM_DESC(playback_bufsize, "DAC frame size in kB for " CARD_NAME " soundcard.");
Takashi Iwai8a3fb4d2005-10-20 17:10:49 +020072module_param(capture_bufsize, int, 0444);
Linus Torvalds1da177e2005-04-16 15:20:36 -070073MODULE_PARM_DESC(capture_bufsize, "ADC frame size in kB for " CARD_NAME " soundcard.");
Takashi Iwai8a3fb4d2005-10-20 17:10:49 +020074module_param(force_ac97, bool, 0444);
Linus Torvalds1da177e2005-04-16 15:20:36 -070075MODULE_PARM_DESC(force_ac97, "Force to use AC97 codec for " CARD_NAME " soundcard.");
Takashi Iwai8a3fb4d2005-10-20 17:10:49 +020076module_param(buffer_top, int, 0444);
Linus Torvalds1da177e2005-04-16 15:20:36 -070077MODULE_PARM_DESC(buffer_top, "Set the top address of audio buffer for " CARD_NAME " soundcard.");
Takashi Iwai8a3fb4d2005-10-20 17:10:49 +020078module_param(use_cache, bool, 0444);
Linus Torvalds1da177e2005-04-16 15:20:36 -070079MODULE_PARM_DESC(use_cache, "Enable the cache for coefficient table access.");
Takashi Iwai8a3fb4d2005-10-20 17:10:49 +020080module_param(vaio_hack, bool, 0444);
Linus Torvalds1da177e2005-04-16 15:20:36 -070081MODULE_PARM_DESC(vaio_hack, "Enable workaround for Sony VAIO notebooks.");
Takashi Iwai8a3fb4d2005-10-20 17:10:49 +020082module_param(reset_workaround, bool, 0444);
Linus Torvalds1da177e2005-04-16 15:20:36 -070083MODULE_PARM_DESC(reset_workaround, "Enable AC97 RESET workaround for some laptops.");
Takashi Iwai8a3fb4d2005-10-20 17:10:49 +020084module_param(reset_workaround_2, bool, 0444);
John W. Linville47530cf2005-10-19 16:03:10 +020085MODULE_PARM_DESC(reset_workaround_2, "Enable extended AC97 RESET workaround for some other laptops.");
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
Takashi Iwai8a3fb4d2005-10-20 17:10:49 +020087/* just for backward compatibility */
88static int enable;
89module_param(enable, bool, 0444);
90
91
92
Linus Torvalds1da177e2005-04-16 15:20:36 -070093/*
94 * hw definitions
95 */
96
97/* The BIOS signature. */
98#define NM_SIGNATURE 0x4e4d0000
99/* Signature mask. */
100#define NM_SIG_MASK 0xffff0000
101
102/* Size of the second memory area. */
103#define NM_PORT2_SIZE 4096
104
105/* The base offset of the mixer in the second memory area. */
106#define NM_MIXER_OFFSET 0x600
107
108/* The maximum size of a coefficient entry. */
109#define NM_MAX_PLAYBACK_COEF_SIZE 0x5000
110#define NM_MAX_RECORD_COEF_SIZE 0x1260
111
112/* The interrupt register. */
113#define NM_INT_REG 0xa04
114/* And its bits. */
115#define NM_PLAYBACK_INT 0x40
116#define NM_RECORD_INT 0x100
117#define NM_MISC_INT_1 0x4000
118#define NM_MISC_INT_2 0x1
119#define NM_ACK_INT(chip, X) snd_nm256_writew(chip, NM_INT_REG, (X) << 1)
120
121/* The AV's "mixer ready" status bit and location. */
122#define NM_MIXER_STATUS_OFFSET 0xa04
123#define NM_MIXER_READY_MASK 0x0800
124#define NM_MIXER_PRESENCE 0xa06
125#define NM_PRESENCE_MASK 0x0050
126#define NM_PRESENCE_VALUE 0x0040
127
128/*
129 * For the ZX. It uses the same interrupt register, but it holds 32
130 * bits instead of 16.
131 */
132#define NM2_PLAYBACK_INT 0x10000
133#define NM2_RECORD_INT 0x80000
134#define NM2_MISC_INT_1 0x8
135#define NM2_MISC_INT_2 0x2
136#define NM2_ACK_INT(chip, X) snd_nm256_writel(chip, NM_INT_REG, (X))
137
138/* The ZX's "mixer ready" status bit and location. */
139#define NM2_MIXER_STATUS_OFFSET 0xa06
140#define NM2_MIXER_READY_MASK 0x0800
141
142/* The playback registers start from here. */
143#define NM_PLAYBACK_REG_OFFSET 0x0
144/* The record registers start from here. */
145#define NM_RECORD_REG_OFFSET 0x200
146
147/* The rate register is located 2 bytes from the start of the register area. */
148#define NM_RATE_REG_OFFSET 2
149
150/* Mono/stereo flag, number of bits on playback, and rate mask. */
151#define NM_RATE_STEREO 1
152#define NM_RATE_BITS_16 2
153#define NM_RATE_MASK 0xf0
154
155/* Playback enable register. */
156#define NM_PLAYBACK_ENABLE_REG (NM_PLAYBACK_REG_OFFSET + 0x1)
157#define NM_PLAYBACK_ENABLE_FLAG 1
158#define NM_PLAYBACK_ONESHOT 2
159#define NM_PLAYBACK_FREERUN 4
160
161/* Mutes the audio output. */
162#define NM_AUDIO_MUTE_REG (NM_PLAYBACK_REG_OFFSET + 0x18)
163#define NM_AUDIO_MUTE_LEFT 0x8000
164#define NM_AUDIO_MUTE_RIGHT 0x0080
165
166/* Recording enable register. */
167#define NM_RECORD_ENABLE_REG (NM_RECORD_REG_OFFSET + 0)
168#define NM_RECORD_ENABLE_FLAG 1
169#define NM_RECORD_FREERUN 2
170
171/* coefficient buffer pointer */
172#define NM_COEFF_START_OFFSET 0x1c
173#define NM_COEFF_END_OFFSET 0x20
174
175/* DMA buffer offsets */
176#define NM_RBUFFER_START (NM_RECORD_REG_OFFSET + 0x4)
177#define NM_RBUFFER_END (NM_RECORD_REG_OFFSET + 0x10)
178#define NM_RBUFFER_WMARK (NM_RECORD_REG_OFFSET + 0xc)
179#define NM_RBUFFER_CURRP (NM_RECORD_REG_OFFSET + 0x8)
180
181#define NM_PBUFFER_START (NM_PLAYBACK_REG_OFFSET + 0x4)
182#define NM_PBUFFER_END (NM_PLAYBACK_REG_OFFSET + 0x14)
183#define NM_PBUFFER_WMARK (NM_PLAYBACK_REG_OFFSET + 0xc)
184#define NM_PBUFFER_CURRP (NM_PLAYBACK_REG_OFFSET + 0x8)
185
Takashi Iwai10754f532005-11-17 15:01:29 +0100186struct nm256_stream {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187
Takashi Iwai10754f532005-11-17 15:01:29 +0100188 struct nm256 *chip;
189 struct snd_pcm_substream *substream;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 int running;
Takashi Iwai1204de32005-08-16 16:54:12 +0200191 int suspended;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192
193 u32 buf; /* offset from chip->buffer */
194 int bufsize; /* buffer size in bytes */
195 void __iomem *bufptr; /* mapped pointer */
196 unsigned long bufptr_addr; /* physical address of the mapped pointer */
197
198 int dma_size; /* buffer size of the substream in bytes */
199 int period_size; /* period size in bytes */
200 int periods; /* # of periods */
201 int shift; /* bit shifts */
202 int cur_period; /* current period # */
203
204};
205
Takashi Iwai10754f532005-11-17 15:01:29 +0100206struct nm256 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207
Takashi Iwai10754f532005-11-17 15:01:29 +0100208 struct snd_card *card;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209
210 void __iomem *cport; /* control port */
211 struct resource *res_cport; /* its resource */
212 unsigned long cport_addr; /* physical address */
213
214 void __iomem *buffer; /* buffer */
215 struct resource *res_buffer; /* its resource */
216 unsigned long buffer_addr; /* buffer phyiscal address */
217
218 u32 buffer_start; /* start offset from pci resource 0 */
219 u32 buffer_end; /* end offset */
220 u32 buffer_size; /* total buffer size */
221
222 u32 all_coeff_buf; /* coefficient buffer */
223 u32 coeff_buf[2]; /* coefficient buffer for each stream */
224
225 unsigned int coeffs_current: 1; /* coeff. table is loaded? */
226 unsigned int use_cache: 1; /* use one big coef. table */
227 unsigned int reset_workaround: 1; /* Workaround for some laptops to avoid freeze */
John W. Linville47530cf2005-10-19 16:03:10 +0200228 unsigned int reset_workaround_2: 1; /* Extended workaround for some other laptops to avoid freeze */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229
230 int mixer_base; /* register offset of ac97 mixer */
231 int mixer_status_offset; /* offset of mixer status reg. */
232 int mixer_status_mask; /* bit mask to test the mixer status */
233
234 int irq;
Takashi Iwai1204de32005-08-16 16:54:12 +0200235 int irq_acks;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 irqreturn_t (*interrupt)(int, void *, struct pt_regs *);
237 int badintrcount; /* counter to check bogus interrupts */
Takashi Iwai1204de32005-08-16 16:54:12 +0200238 struct semaphore irq_mutex;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239
Takashi Iwai10754f532005-11-17 15:01:29 +0100240 struct nm256_stream streams[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241
Takashi Iwai10754f532005-11-17 15:01:29 +0100242 struct snd_ac97 *ac97;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243
Takashi Iwai10754f532005-11-17 15:01:29 +0100244 struct snd_pcm *pcm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245
246 struct pci_dev *pci;
247
248 spinlock_t reg_lock;
249
250};
251
252
253/*
254 * include coefficient table
255 */
256#include "nm256_coef.c"
257
258
259/*
260 * PCI ids
261 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262static struct pci_device_id snd_nm256_ids[] = {
263 {PCI_VENDOR_ID_NEOMAGIC, PCI_DEVICE_ID_NEOMAGIC_NM256AV_AUDIO, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
264 {PCI_VENDOR_ID_NEOMAGIC, PCI_DEVICE_ID_NEOMAGIC_NM256ZX_AUDIO, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
265 {PCI_VENDOR_ID_NEOMAGIC, PCI_DEVICE_ID_NEOMAGIC_NM256XL_PLUS_AUDIO, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
266 {0,},
267};
268
269MODULE_DEVICE_TABLE(pci, snd_nm256_ids);
270
271
272/*
273 * lowlvel stuffs
274 */
275
Jesper Juhl77933d72005-07-27 11:46:09 -0700276static inline u8
Takashi Iwai10754f532005-11-17 15:01:29 +0100277snd_nm256_readb(struct nm256 *chip, int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278{
279 return readb(chip->cport + offset);
280}
281
Jesper Juhl77933d72005-07-27 11:46:09 -0700282static inline u16
Takashi Iwai10754f532005-11-17 15:01:29 +0100283snd_nm256_readw(struct nm256 *chip, int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284{
285 return readw(chip->cport + offset);
286}
287
Jesper Juhl77933d72005-07-27 11:46:09 -0700288static inline u32
Takashi Iwai10754f532005-11-17 15:01:29 +0100289snd_nm256_readl(struct nm256 *chip, int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290{
291 return readl(chip->cport + offset);
292}
293
Jesper Juhl77933d72005-07-27 11:46:09 -0700294static inline void
Takashi Iwai10754f532005-11-17 15:01:29 +0100295snd_nm256_writeb(struct nm256 *chip, int offset, u8 val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296{
297 writeb(val, chip->cport + offset);
298}
299
Jesper Juhl77933d72005-07-27 11:46:09 -0700300static inline void
Takashi Iwai10754f532005-11-17 15:01:29 +0100301snd_nm256_writew(struct nm256 *chip, int offset, u16 val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302{
303 writew(val, chip->cport + offset);
304}
305
Jesper Juhl77933d72005-07-27 11:46:09 -0700306static inline void
Takashi Iwai10754f532005-11-17 15:01:29 +0100307snd_nm256_writel(struct nm256 *chip, int offset, u32 val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308{
309 writel(val, chip->cport + offset);
310}
311
Jesper Juhl77933d72005-07-27 11:46:09 -0700312static inline void
Takashi Iwai10754f532005-11-17 15:01:29 +0100313snd_nm256_write_buffer(struct nm256 *chip, void *src, int offset, int size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314{
315 offset -= chip->buffer_start;
Takashi Iwai99b359b2005-10-20 18:26:44 +0200316#ifdef CONFIG_SND_DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 if (offset < 0 || offset >= chip->buffer_size) {
Takashi Iwai10754f532005-11-17 15:01:29 +0100318 snd_printk(KERN_ERR "write_buffer invalid offset = %d size = %d\n",
319 offset, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 return;
321 }
322#endif
323 memcpy_toio(chip->buffer + offset, src, size);
324}
325
326/*
327 * coefficient handlers -- what a magic!
328 */
329
330static u16
331snd_nm256_get_start_offset(int which)
332{
333 u16 offset = 0;
334 while (which-- > 0)
335 offset += coefficient_sizes[which];
336 return offset;
337}
338
339static void
Takashi Iwai10754f532005-11-17 15:01:29 +0100340snd_nm256_load_one_coefficient(struct nm256 *chip, int stream, u32 port, int which)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341{
342 u32 coeff_buf = chip->coeff_buf[stream];
343 u16 offset = snd_nm256_get_start_offset(which);
344 u16 size = coefficient_sizes[which];
345
346 snd_nm256_write_buffer(chip, coefficients + offset, coeff_buf, size);
347 snd_nm256_writel(chip, port, coeff_buf);
348 /* ??? Record seems to behave differently than playback. */
349 if (stream == SNDRV_PCM_STREAM_PLAYBACK)
350 size--;
351 snd_nm256_writel(chip, port + 4, coeff_buf + size);
352}
353
354static void
Takashi Iwai10754f532005-11-17 15:01:29 +0100355snd_nm256_load_coefficient(struct nm256 *chip, int stream, int number)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356{
357 /* The enable register for the specified engine. */
Takashi Iwai10754f532005-11-17 15:01:29 +0100358 u32 poffset = (stream == SNDRV_PCM_STREAM_CAPTURE ?
359 NM_RECORD_ENABLE_REG : NM_PLAYBACK_ENABLE_REG);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 u32 addr = NM_COEFF_START_OFFSET;
361
Takashi Iwai10754f532005-11-17 15:01:29 +0100362 addr += (stream == SNDRV_PCM_STREAM_CAPTURE ?
363 NM_RECORD_REG_OFFSET : NM_PLAYBACK_REG_OFFSET);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364
365 if (snd_nm256_readb(chip, poffset) & 1) {
366 snd_printd("NM256: Engine was enabled while loading coefficients!\n");
367 return;
368 }
369
370 /* The recording engine uses coefficient values 8-15. */
371 number &= 7;
372 if (stream == SNDRV_PCM_STREAM_CAPTURE)
373 number += 8;
374
375 if (! chip->use_cache) {
376 snd_nm256_load_one_coefficient(chip, stream, addr, number);
377 return;
378 }
379 if (! chip->coeffs_current) {
380 snd_nm256_write_buffer(chip, coefficients, chip->all_coeff_buf,
381 NM_TOTAL_COEFF_COUNT * 4);
382 chip->coeffs_current = 1;
383 } else {
384 u32 base = chip->all_coeff_buf;
385 u32 offset = snd_nm256_get_start_offset(number);
386 u32 end_offset = offset + coefficient_sizes[number];
387 snd_nm256_writel(chip, addr, base + offset);
388 if (stream == SNDRV_PCM_STREAM_PLAYBACK)
389 end_offset--;
390 snd_nm256_writel(chip, addr + 4, base + end_offset);
391 }
392}
393
394
395/* The actual rates supported by the card. */
396static unsigned int samplerates[8] = {
397 8000, 11025, 16000, 22050, 24000, 32000, 44100, 48000,
398};
Takashi Iwai10754f532005-11-17 15:01:29 +0100399static struct snd_pcm_hw_constraint_list constraints_rates = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 .count = ARRAY_SIZE(samplerates),
401 .list = samplerates,
402 .mask = 0,
403};
404
405/*
406 * return the index of the target rate
407 */
408static int
409snd_nm256_fixed_rate(unsigned int rate)
410{
411 unsigned int i;
412 for (i = 0; i < ARRAY_SIZE(samplerates); i++) {
413 if (rate == samplerates[i])
414 return i;
415 }
416 snd_BUG();
417 return 0;
418}
419
420/*
421 * set sample rate and format
422 */
423static void
Takashi Iwai10754f532005-11-17 15:01:29 +0100424snd_nm256_set_format(struct nm256 *chip, struct nm256_stream *s,
425 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426{
Takashi Iwai10754f532005-11-17 15:01:29 +0100427 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 int rate_index = snd_nm256_fixed_rate(runtime->rate);
429 unsigned char ratebits = (rate_index << 4) & NM_RATE_MASK;
430
431 s->shift = 0;
432 if (snd_pcm_format_width(runtime->format) == 16) {
433 ratebits |= NM_RATE_BITS_16;
434 s->shift++;
435 }
436 if (runtime->channels > 1) {
437 ratebits |= NM_RATE_STEREO;
438 s->shift++;
439 }
440
441 runtime->rate = samplerates[rate_index];
442
443 switch (substream->stream) {
444 case SNDRV_PCM_STREAM_PLAYBACK:
445 snd_nm256_load_coefficient(chip, 0, rate_index); /* 0 = playback */
446 snd_nm256_writeb(chip,
447 NM_PLAYBACK_REG_OFFSET + NM_RATE_REG_OFFSET,
448 ratebits);
449 break;
450 case SNDRV_PCM_STREAM_CAPTURE:
451 snd_nm256_load_coefficient(chip, 1, rate_index); /* 1 = record */
452 snd_nm256_writeb(chip,
453 NM_RECORD_REG_OFFSET + NM_RATE_REG_OFFSET,
454 ratebits);
455 break;
456 }
457}
458
Takashi Iwai1204de32005-08-16 16:54:12 +0200459/* acquire interrupt */
Takashi Iwai10754f532005-11-17 15:01:29 +0100460static int snd_nm256_acquire_irq(struct nm256 *chip)
Takashi Iwai1204de32005-08-16 16:54:12 +0200461{
462 down(&chip->irq_mutex);
463 if (chip->irq < 0) {
464 if (request_irq(chip->pci->irq, chip->interrupt, SA_INTERRUPT|SA_SHIRQ,
Takashi Iwai10754f532005-11-17 15:01:29 +0100465 chip->card->driver, chip)) {
Takashi Iwai99b359b2005-10-20 18:26:44 +0200466 snd_printk(KERN_ERR "unable to grab IRQ %d\n", chip->pci->irq);
Takashi Iwai1204de32005-08-16 16:54:12 +0200467 up(&chip->irq_mutex);
468 return -EBUSY;
469 }
470 chip->irq = chip->pci->irq;
471 }
472 chip->irq_acks++;
473 up(&chip->irq_mutex);
474 return 0;
475}
476
477/* release interrupt */
Takashi Iwai10754f532005-11-17 15:01:29 +0100478static void snd_nm256_release_irq(struct nm256 *chip)
Takashi Iwai1204de32005-08-16 16:54:12 +0200479{
480 down(&chip->irq_mutex);
481 if (chip->irq_acks > 0)
482 chip->irq_acks--;
483 if (chip->irq_acks == 0 && chip->irq >= 0) {
Takashi Iwai10754f532005-11-17 15:01:29 +0100484 free_irq(chip->irq, chip);
Takashi Iwai1204de32005-08-16 16:54:12 +0200485 chip->irq = -1;
486 }
487 up(&chip->irq_mutex);
488}
489
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490/*
491 * start / stop
492 */
493
494/* update the watermark (current period) */
Takashi Iwai10754f532005-11-17 15:01:29 +0100495static void snd_nm256_pcm_mark(struct nm256 *chip, struct nm256_stream *s, int reg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496{
497 s->cur_period++;
498 s->cur_period %= s->periods;
499 snd_nm256_writel(chip, reg, s->buf + s->cur_period * s->period_size);
500}
501
502#define snd_nm256_playback_mark(chip, s) snd_nm256_pcm_mark(chip, s, NM_PBUFFER_WMARK)
503#define snd_nm256_capture_mark(chip, s) snd_nm256_pcm_mark(chip, s, NM_RBUFFER_WMARK)
504
505static void
Takashi Iwai10754f532005-11-17 15:01:29 +0100506snd_nm256_playback_start(struct nm256 *chip, struct nm256_stream *s,
507 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508{
509 /* program buffer pointers */
510 snd_nm256_writel(chip, NM_PBUFFER_START, s->buf);
511 snd_nm256_writel(chip, NM_PBUFFER_END, s->buf + s->dma_size - (1 << s->shift));
512 snd_nm256_writel(chip, NM_PBUFFER_CURRP, s->buf);
513 snd_nm256_playback_mark(chip, s);
514
515 /* Enable playback engine and interrupts. */
516 snd_nm256_writeb(chip, NM_PLAYBACK_ENABLE_REG,
517 NM_PLAYBACK_ENABLE_FLAG | NM_PLAYBACK_FREERUN);
518 /* Enable both channels. */
519 snd_nm256_writew(chip, NM_AUDIO_MUTE_REG, 0x0);
520}
521
522static void
Takashi Iwai10754f532005-11-17 15:01:29 +0100523snd_nm256_capture_start(struct nm256 *chip, struct nm256_stream *s,
524 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525{
526 /* program buffer pointers */
527 snd_nm256_writel(chip, NM_RBUFFER_START, s->buf);
528 snd_nm256_writel(chip, NM_RBUFFER_END, s->buf + s->dma_size);
529 snd_nm256_writel(chip, NM_RBUFFER_CURRP, s->buf);
530 snd_nm256_capture_mark(chip, s);
531
532 /* Enable playback engine and interrupts. */
533 snd_nm256_writeb(chip, NM_RECORD_ENABLE_REG,
534 NM_RECORD_ENABLE_FLAG | NM_RECORD_FREERUN);
535}
536
537/* Stop the play engine. */
538static void
Takashi Iwai10754f532005-11-17 15:01:29 +0100539snd_nm256_playback_stop(struct nm256 *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540{
541 /* Shut off sound from both channels. */
542 snd_nm256_writew(chip, NM_AUDIO_MUTE_REG,
543 NM_AUDIO_MUTE_LEFT | NM_AUDIO_MUTE_RIGHT);
544 /* Disable play engine. */
545 snd_nm256_writeb(chip, NM_PLAYBACK_ENABLE_REG, 0);
546}
547
548static void
Takashi Iwai10754f532005-11-17 15:01:29 +0100549snd_nm256_capture_stop(struct nm256 *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550{
551 /* Disable recording engine. */
552 snd_nm256_writeb(chip, NM_RECORD_ENABLE_REG, 0);
553}
554
555static int
Takashi Iwai10754f532005-11-17 15:01:29 +0100556snd_nm256_playback_trigger(struct snd_pcm_substream *substream, int cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557{
Takashi Iwai10754f532005-11-17 15:01:29 +0100558 struct nm256 *chip = snd_pcm_substream_chip(substream);
559 struct nm256_stream *s = substream->runtime->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 int err = 0;
561
562 snd_assert(s != NULL, return -ENXIO);
563
564 spin_lock(&chip->reg_lock);
565 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 case SNDRV_PCM_TRIGGER_RESUME:
Takashi Iwai1204de32005-08-16 16:54:12 +0200567 s->suspended = 0;
568 /* fallthru */
569 case SNDRV_PCM_TRIGGER_START:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 if (! s->running) {
571 snd_nm256_playback_start(chip, s, substream);
572 s->running = 1;
573 }
574 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 case SNDRV_PCM_TRIGGER_SUSPEND:
Takashi Iwai1204de32005-08-16 16:54:12 +0200576 s->suspended = 1;
577 /* fallthru */
578 case SNDRV_PCM_TRIGGER_STOP:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 if (s->running) {
580 snd_nm256_playback_stop(chip);
581 s->running = 0;
582 }
583 break;
584 default:
585 err = -EINVAL;
586 break;
587 }
588 spin_unlock(&chip->reg_lock);
589 return err;
590}
591
592static int
Takashi Iwai10754f532005-11-17 15:01:29 +0100593snd_nm256_capture_trigger(struct snd_pcm_substream *substream, int cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594{
Takashi Iwai10754f532005-11-17 15:01:29 +0100595 struct nm256 *chip = snd_pcm_substream_chip(substream);
596 struct nm256_stream *s = substream->runtime->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 int err = 0;
598
599 snd_assert(s != NULL, return -ENXIO);
600
601 spin_lock(&chip->reg_lock);
602 switch (cmd) {
603 case SNDRV_PCM_TRIGGER_START:
604 case SNDRV_PCM_TRIGGER_RESUME:
605 if (! s->running) {
606 snd_nm256_capture_start(chip, s, substream);
607 s->running = 1;
608 }
609 break;
610 case SNDRV_PCM_TRIGGER_STOP:
611 case SNDRV_PCM_TRIGGER_SUSPEND:
612 if (s->running) {
613 snd_nm256_capture_stop(chip);
614 s->running = 0;
615 }
616 break;
617 default:
618 err = -EINVAL;
619 break;
620 }
621 spin_unlock(&chip->reg_lock);
622 return err;
623}
624
625
626/*
627 * prepare playback/capture channel
628 */
Takashi Iwai10754f532005-11-17 15:01:29 +0100629static int snd_nm256_pcm_prepare(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630{
Takashi Iwai10754f532005-11-17 15:01:29 +0100631 struct nm256 *chip = snd_pcm_substream_chip(substream);
632 struct snd_pcm_runtime *runtime = substream->runtime;
633 struct nm256_stream *s = runtime->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634
635 snd_assert(s, return -ENXIO);
636 s->dma_size = frames_to_bytes(runtime, substream->runtime->buffer_size);
637 s->period_size = frames_to_bytes(runtime, substream->runtime->period_size);
638 s->periods = substream->runtime->periods;
639 s->cur_period = 0;
640
641 spin_lock_irq(&chip->reg_lock);
642 s->running = 0;
643 snd_nm256_set_format(chip, s, substream);
644 spin_unlock_irq(&chip->reg_lock);
645
646 return 0;
647}
648
649
650/*
651 * get the current pointer
652 */
653static snd_pcm_uframes_t
Takashi Iwai10754f532005-11-17 15:01:29 +0100654snd_nm256_playback_pointer(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655{
Takashi Iwai10754f532005-11-17 15:01:29 +0100656 struct nm256 *chip = snd_pcm_substream_chip(substream);
657 struct nm256_stream *s = substream->runtime->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 unsigned long curp;
659
660 snd_assert(s, return 0);
661 curp = snd_nm256_readl(chip, NM_PBUFFER_CURRP) - (unsigned long)s->buf;
662 curp %= s->dma_size;
663 return bytes_to_frames(substream->runtime, curp);
664}
665
666static snd_pcm_uframes_t
Takashi Iwai10754f532005-11-17 15:01:29 +0100667snd_nm256_capture_pointer(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668{
Takashi Iwai10754f532005-11-17 15:01:29 +0100669 struct nm256 *chip = snd_pcm_substream_chip(substream);
670 struct nm256_stream *s = substream->runtime->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 unsigned long curp;
672
673 snd_assert(s != NULL, return 0);
674 curp = snd_nm256_readl(chip, NM_RBUFFER_CURRP) - (unsigned long)s->buf;
675 curp %= s->dma_size;
676 return bytes_to_frames(substream->runtime, curp);
677}
678
679/* Remapped I/O space can be accessible as pointer on i386 */
680/* This might be changed in the future */
681#ifndef __i386__
682/*
683 * silence / copy for playback
684 */
685static int
Takashi Iwai10754f532005-11-17 15:01:29 +0100686snd_nm256_playback_silence(struct snd_pcm_substream *substream,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 int channel, /* not used (interleaved data) */
688 snd_pcm_uframes_t pos,
689 snd_pcm_uframes_t count)
690{
Takashi Iwai10754f532005-11-17 15:01:29 +0100691 struct snd_pcm_runtime *runtime = substream->runtime;
692 struct nm256_stream *s = runtime->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 count = frames_to_bytes(runtime, count);
694 pos = frames_to_bytes(runtime, pos);
695 memset_io(s->bufptr + pos, 0, count);
696 return 0;
697}
698
699static int
Takashi Iwai10754f532005-11-17 15:01:29 +0100700snd_nm256_playback_copy(struct snd_pcm_substream *substream,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 int channel, /* not used (interleaved data) */
702 snd_pcm_uframes_t pos,
703 void __user *src,
704 snd_pcm_uframes_t count)
705{
Takashi Iwai10754f532005-11-17 15:01:29 +0100706 struct snd_pcm_runtime *runtime = substream->runtime;
707 struct nm256_stream *s = runtime->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 count = frames_to_bytes(runtime, count);
709 pos = frames_to_bytes(runtime, pos);
710 if (copy_from_user_toio(s->bufptr + pos, src, count))
711 return -EFAULT;
712 return 0;
713}
714
715/*
716 * copy to user
717 */
718static int
Takashi Iwai10754f532005-11-17 15:01:29 +0100719snd_nm256_capture_copy(struct snd_pcm_substream *substream,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 int channel, /* not used (interleaved data) */
721 snd_pcm_uframes_t pos,
722 void __user *dst,
723 snd_pcm_uframes_t count)
724{
Takashi Iwai10754f532005-11-17 15:01:29 +0100725 struct snd_pcm_runtime *runtime = substream->runtime;
726 struct nm256_stream *s = runtime->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 count = frames_to_bytes(runtime, count);
728 pos = frames_to_bytes(runtime, pos);
729 if (copy_to_user_fromio(dst, s->bufptr + pos, count))
730 return -EFAULT;
731 return 0;
732}
733
734#endif /* !__i386__ */
735
736
737/*
738 * update playback/capture watermarks
739 */
740
741/* spinlock held! */
742static void
Takashi Iwai10754f532005-11-17 15:01:29 +0100743snd_nm256_playback_update(struct nm256 *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744{
Takashi Iwai10754f532005-11-17 15:01:29 +0100745 struct nm256_stream *s;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746
747 s = &chip->streams[SNDRV_PCM_STREAM_PLAYBACK];
748 if (s->running && s->substream) {
749 spin_unlock(&chip->reg_lock);
750 snd_pcm_period_elapsed(s->substream);
751 spin_lock(&chip->reg_lock);
752 snd_nm256_playback_mark(chip, s);
753 }
754}
755
756/* spinlock held! */
757static void
Takashi Iwai10754f532005-11-17 15:01:29 +0100758snd_nm256_capture_update(struct nm256 *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759{
Takashi Iwai10754f532005-11-17 15:01:29 +0100760 struct nm256_stream *s;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761
762 s = &chip->streams[SNDRV_PCM_STREAM_CAPTURE];
763 if (s->running && s->substream) {
764 spin_unlock(&chip->reg_lock);
765 snd_pcm_period_elapsed(s->substream);
766 spin_lock(&chip->reg_lock);
767 snd_nm256_capture_mark(chip, s);
768 }
769}
770
771/*
772 * hardware info
773 */
Takashi Iwai10754f532005-11-17 15:01:29 +0100774static struct snd_pcm_hardware snd_nm256_playback =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775{
776 .info = SNDRV_PCM_INFO_MMAP_IOMEM |SNDRV_PCM_INFO_MMAP_VALID |
777 SNDRV_PCM_INFO_INTERLEAVED |
778 /*SNDRV_PCM_INFO_PAUSE |*/
779 SNDRV_PCM_INFO_RESUME,
780 .formats = SNDRV_PCM_FMTBIT_U8 | SNDRV_PCM_FMTBIT_S16_LE,
781 .rates = SNDRV_PCM_RATE_KNOT/*24k*/ | SNDRV_PCM_RATE_8000_48000,
782 .rate_min = 8000,
783 .rate_max = 48000,
784 .channels_min = 1,
785 .channels_max = 2,
786 .periods_min = 2,
787 .periods_max = 1024,
788 .buffer_bytes_max = 128 * 1024,
789 .period_bytes_min = 256,
790 .period_bytes_max = 128 * 1024,
791};
792
Takashi Iwai10754f532005-11-17 15:01:29 +0100793static struct snd_pcm_hardware snd_nm256_capture =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794{
795 .info = SNDRV_PCM_INFO_MMAP_IOMEM | SNDRV_PCM_INFO_MMAP_VALID |
796 SNDRV_PCM_INFO_INTERLEAVED |
797 /*SNDRV_PCM_INFO_PAUSE |*/
798 SNDRV_PCM_INFO_RESUME,
799 .formats = SNDRV_PCM_FMTBIT_U8 | SNDRV_PCM_FMTBIT_S16_LE,
800 .rates = SNDRV_PCM_RATE_KNOT/*24k*/ | SNDRV_PCM_RATE_8000_48000,
801 .rate_min = 8000,
802 .rate_max = 48000,
803 .channels_min = 1,
804 .channels_max = 2,
805 .periods_min = 2,
806 .periods_max = 1024,
807 .buffer_bytes_max = 128 * 1024,
808 .period_bytes_min = 256,
809 .period_bytes_max = 128 * 1024,
810};
811
812
813/* set dma transfer size */
Takashi Iwai10754f532005-11-17 15:01:29 +0100814static int snd_nm256_pcm_hw_params(struct snd_pcm_substream *substream,
815 struct snd_pcm_hw_params *hw_params)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816{
817 /* area and addr are already set and unchanged */
818 substream->runtime->dma_bytes = params_buffer_bytes(hw_params);
819 return 0;
820}
821
822/*
823 * open
824 */
Takashi Iwai10754f532005-11-17 15:01:29 +0100825static void snd_nm256_setup_stream(struct nm256 *chip, struct nm256_stream *s,
826 struct snd_pcm_substream *substream,
827 struct snd_pcm_hardware *hw_ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828{
Takashi Iwai10754f532005-11-17 15:01:29 +0100829 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830
831 s->running = 0;
832 runtime->hw = *hw_ptr;
833 runtime->hw.buffer_bytes_max = s->bufsize;
834 runtime->hw.period_bytes_max = s->bufsize / 2;
Clemens Ladisch4d233592005-09-05 10:35:20 +0200835 runtime->dma_area = (void __force *) s->bufptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 runtime->dma_addr = s->bufptr_addr;
837 runtime->dma_bytes = s->bufsize;
838 runtime->private_data = s;
839 s->substream = substream;
840
841 snd_pcm_set_sync(substream);
842 snd_pcm_hw_constraint_list(runtime, 0, SNDRV_PCM_HW_PARAM_RATE,
843 &constraints_rates);
844}
845
846static int
Takashi Iwai10754f532005-11-17 15:01:29 +0100847snd_nm256_playback_open(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848{
Takashi Iwai10754f532005-11-17 15:01:29 +0100849 struct nm256 *chip = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850
Takashi Iwai1204de32005-08-16 16:54:12 +0200851 if (snd_nm256_acquire_irq(chip) < 0)
852 return -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 snd_nm256_setup_stream(chip, &chip->streams[SNDRV_PCM_STREAM_PLAYBACK],
854 substream, &snd_nm256_playback);
855 return 0;
856}
857
858static int
Takashi Iwai10754f532005-11-17 15:01:29 +0100859snd_nm256_capture_open(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860{
Takashi Iwai10754f532005-11-17 15:01:29 +0100861 struct nm256 *chip = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862
Takashi Iwai1204de32005-08-16 16:54:12 +0200863 if (snd_nm256_acquire_irq(chip) < 0)
864 return -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 snd_nm256_setup_stream(chip, &chip->streams[SNDRV_PCM_STREAM_CAPTURE],
866 substream, &snd_nm256_capture);
867 return 0;
868}
869
870/*
871 * close - we don't have to do special..
872 */
873static int
Takashi Iwai10754f532005-11-17 15:01:29 +0100874snd_nm256_playback_close(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875{
Takashi Iwai10754f532005-11-17 15:01:29 +0100876 struct nm256 *chip = snd_pcm_substream_chip(substream);
Takashi Iwai1204de32005-08-16 16:54:12 +0200877
878 snd_nm256_release_irq(chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 return 0;
880}
881
882
883static int
Takashi Iwai10754f532005-11-17 15:01:29 +0100884snd_nm256_capture_close(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885{
Takashi Iwai10754f532005-11-17 15:01:29 +0100886 struct nm256 *chip = snd_pcm_substream_chip(substream);
Takashi Iwai1204de32005-08-16 16:54:12 +0200887
888 snd_nm256_release_irq(chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 return 0;
890}
891
892/*
893 * create a pcm instance
894 */
Takashi Iwai10754f532005-11-17 15:01:29 +0100895static struct snd_pcm_ops snd_nm256_playback_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 .open = snd_nm256_playback_open,
897 .close = snd_nm256_playback_close,
898 .ioctl = snd_pcm_lib_ioctl,
899 .hw_params = snd_nm256_pcm_hw_params,
900 .prepare = snd_nm256_pcm_prepare,
901 .trigger = snd_nm256_playback_trigger,
902 .pointer = snd_nm256_playback_pointer,
903#ifndef __i386__
904 .copy = snd_nm256_playback_copy,
905 .silence = snd_nm256_playback_silence,
906#endif
907 .mmap = snd_pcm_lib_mmap_iomem,
908};
909
Takashi Iwai10754f532005-11-17 15:01:29 +0100910static struct snd_pcm_ops snd_nm256_capture_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 .open = snd_nm256_capture_open,
912 .close = snd_nm256_capture_close,
913 .ioctl = snd_pcm_lib_ioctl,
914 .hw_params = snd_nm256_pcm_hw_params,
915 .prepare = snd_nm256_pcm_prepare,
916 .trigger = snd_nm256_capture_trigger,
917 .pointer = snd_nm256_capture_pointer,
918#ifndef __i386__
919 .copy = snd_nm256_capture_copy,
920#endif
921 .mmap = snd_pcm_lib_mmap_iomem,
922};
923
924static int __devinit
Takashi Iwai10754f532005-11-17 15:01:29 +0100925snd_nm256_pcm(struct nm256 *chip, int device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926{
Takashi Iwai10754f532005-11-17 15:01:29 +0100927 struct snd_pcm *pcm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 int i, err;
929
930 for (i = 0; i < 2; i++) {
Takashi Iwai10754f532005-11-17 15:01:29 +0100931 struct nm256_stream *s = &chip->streams[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 s->bufptr = chip->buffer + (s->buf - chip->buffer_start);
933 s->bufptr_addr = chip->buffer_addr + (s->buf - chip->buffer_start);
934 }
935
936 err = snd_pcm_new(chip->card, chip->card->driver, device,
937 1, 1, &pcm);
938 if (err < 0)
939 return err;
940
941 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &snd_nm256_playback_ops);
942 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &snd_nm256_capture_ops);
943
944 pcm->private_data = chip;
945 pcm->info_flags = 0;
946 chip->pcm = pcm;
947
948 return 0;
949}
950
951
952/*
953 * Initialize the hardware.
954 */
955static void
Takashi Iwai10754f532005-11-17 15:01:29 +0100956snd_nm256_init_chip(struct nm256 *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 /* Reset everything. */
959 snd_nm256_writeb(chip, 0x0, 0x11);
960 snd_nm256_writew(chip, 0x214, 0);
961 /* stop sounds.. */
962 //snd_nm256_playback_stop(chip);
963 //snd_nm256_capture_stop(chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964}
965
966
Takashi Iwai1204de32005-08-16 16:54:12 +0200967static irqreturn_t
Takashi Iwai10754f532005-11-17 15:01:29 +0100968snd_nm256_intr_check(struct nm256 *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969{
970 if (chip->badintrcount++ > 1000) {
971 /*
972 * I'm not sure if the best thing is to stop the card from
973 * playing or just release the interrupt (after all, we're in
974 * a bad situation, so doing fancy stuff may not be such a good
975 * idea).
976 *
977 * I worry about the card engine continuing to play noise
978 * over and over, however--that could become a very
979 * obnoxious problem. And we know that when this usually
980 * happens things are fairly safe, it just means the user's
981 * inserted a PCMCIA card and someone's spamming us with IRQ 9s.
982 */
983 if (chip->streams[SNDRV_PCM_STREAM_PLAYBACK].running)
984 snd_nm256_playback_stop(chip);
985 if (chip->streams[SNDRV_PCM_STREAM_CAPTURE].running)
986 snd_nm256_capture_stop(chip);
987 chip->badintrcount = 0;
Takashi Iwai1204de32005-08-16 16:54:12 +0200988 return IRQ_HANDLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 }
Takashi Iwai1204de32005-08-16 16:54:12 +0200990 return IRQ_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991}
992
993/*
994 * Handle a potential interrupt for the device referred to by DEV_ID.
995 *
996 * I don't like the cut-n-paste job here either between the two routines,
997 * but there are sufficient differences between the two interrupt handlers
998 * that parameterizing it isn't all that great either. (Could use a macro,
999 * I suppose...yucky bleah.)
1000 */
1001
1002static irqreturn_t
1003snd_nm256_interrupt(int irq, void *dev_id, struct pt_regs *dummy)
1004{
Takashi Iwai10754f532005-11-17 15:01:29 +01001005 struct nm256 *chip = dev_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 u16 status;
1007 u8 cbyte;
1008
1009 status = snd_nm256_readw(chip, NM_INT_REG);
1010
1011 /* Not ours. */
Takashi Iwai1204de32005-08-16 16:54:12 +02001012 if (status == 0)
1013 return snd_nm256_intr_check(chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014
1015 chip->badintrcount = 0;
1016
1017 /* Rather boring; check for individual interrupts and process them. */
1018
1019 spin_lock(&chip->reg_lock);
1020 if (status & NM_PLAYBACK_INT) {
1021 status &= ~NM_PLAYBACK_INT;
1022 NM_ACK_INT(chip, NM_PLAYBACK_INT);
1023 snd_nm256_playback_update(chip);
1024 }
1025
1026 if (status & NM_RECORD_INT) {
1027 status &= ~NM_RECORD_INT;
1028 NM_ACK_INT(chip, NM_RECORD_INT);
1029 snd_nm256_capture_update(chip);
1030 }
1031
1032 if (status & NM_MISC_INT_1) {
1033 status &= ~NM_MISC_INT_1;
1034 NM_ACK_INT(chip, NM_MISC_INT_1);
1035 snd_printd("NM256: Got misc interrupt #1\n");
1036 snd_nm256_writew(chip, NM_INT_REG, 0x8000);
1037 cbyte = snd_nm256_readb(chip, 0x400);
1038 snd_nm256_writeb(chip, 0x400, cbyte | 2);
1039 }
1040
1041 if (status & NM_MISC_INT_2) {
1042 status &= ~NM_MISC_INT_2;
1043 NM_ACK_INT(chip, NM_MISC_INT_2);
1044 snd_printd("NM256: Got misc interrupt #2\n");
1045 cbyte = snd_nm256_readb(chip, 0x400);
1046 snd_nm256_writeb(chip, 0x400, cbyte & ~2);
1047 }
1048
1049 /* Unknown interrupt. */
1050 if (status) {
1051 snd_printd("NM256: Fire in the hole! Unknown status 0x%x\n",
1052 status);
1053 /* Pray. */
1054 NM_ACK_INT(chip, status);
1055 }
1056
1057 spin_unlock(&chip->reg_lock);
1058 return IRQ_HANDLED;
1059}
1060
1061/*
1062 * Handle a potential interrupt for the device referred to by DEV_ID.
1063 * This handler is for the 256ZX, and is very similar to the non-ZX
1064 * routine.
1065 */
1066
1067static irqreturn_t
1068snd_nm256_interrupt_zx(int irq, void *dev_id, struct pt_regs *dummy)
1069{
Takashi Iwai10754f532005-11-17 15:01:29 +01001070 struct nm256 *chip = dev_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 u32 status;
1072 u8 cbyte;
1073
1074 status = snd_nm256_readl(chip, NM_INT_REG);
1075
1076 /* Not ours. */
Takashi Iwai1204de32005-08-16 16:54:12 +02001077 if (status == 0)
1078 return snd_nm256_intr_check(chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079
1080 chip->badintrcount = 0;
1081
1082 /* Rather boring; check for individual interrupts and process them. */
1083
1084 spin_lock(&chip->reg_lock);
1085 if (status & NM2_PLAYBACK_INT) {
1086 status &= ~NM2_PLAYBACK_INT;
1087 NM2_ACK_INT(chip, NM2_PLAYBACK_INT);
1088 snd_nm256_playback_update(chip);
1089 }
1090
1091 if (status & NM2_RECORD_INT) {
1092 status &= ~NM2_RECORD_INT;
1093 NM2_ACK_INT(chip, NM2_RECORD_INT);
1094 snd_nm256_capture_update(chip);
1095 }
1096
1097 if (status & NM2_MISC_INT_1) {
1098 status &= ~NM2_MISC_INT_1;
1099 NM2_ACK_INT(chip, NM2_MISC_INT_1);
1100 snd_printd("NM256: Got misc interrupt #1\n");
1101 cbyte = snd_nm256_readb(chip, 0x400);
1102 snd_nm256_writeb(chip, 0x400, cbyte | 2);
1103 }
1104
1105 if (status & NM2_MISC_INT_2) {
1106 status &= ~NM2_MISC_INT_2;
1107 NM2_ACK_INT(chip, NM2_MISC_INT_2);
1108 snd_printd("NM256: Got misc interrupt #2\n");
1109 cbyte = snd_nm256_readb(chip, 0x400);
1110 snd_nm256_writeb(chip, 0x400, cbyte & ~2);
1111 }
1112
1113 /* Unknown interrupt. */
1114 if (status) {
1115 snd_printd("NM256: Fire in the hole! Unknown status 0x%x\n",
1116 status);
1117 /* Pray. */
1118 NM2_ACK_INT(chip, status);
1119 }
1120
1121 spin_unlock(&chip->reg_lock);
1122 return IRQ_HANDLED;
1123}
1124
1125/*
1126 * AC97 interface
1127 */
1128
1129/*
1130 * Waits for the mixer to become ready to be written; returns a zero value
1131 * if it timed out.
1132 */
1133static int
Takashi Iwai10754f532005-11-17 15:01:29 +01001134snd_nm256_ac97_ready(struct nm256 *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135{
1136 int timeout = 10;
1137 u32 testaddr;
1138 u16 testb;
1139
1140 testaddr = chip->mixer_status_offset;
1141 testb = chip->mixer_status_mask;
1142
1143 /*
1144 * Loop around waiting for the mixer to become ready.
1145 */
1146 while (timeout-- > 0) {
1147 if ((snd_nm256_readw(chip, testaddr) & testb) == 0)
1148 return 1;
1149 udelay(100);
1150 }
1151 return 0;
1152}
1153
1154/*
1155 */
1156static unsigned short
Takashi Iwai10754f532005-11-17 15:01:29 +01001157snd_nm256_ac97_read(struct snd_ac97 *ac97, unsigned short reg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158{
Takashi Iwai10754f532005-11-17 15:01:29 +01001159 struct nm256 *chip = ac97->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160 int res;
1161
1162 if (reg >= 128)
1163 return 0;
1164
1165 if (! snd_nm256_ac97_ready(chip))
1166 return 0;
1167 res = snd_nm256_readw(chip, chip->mixer_base + reg);
1168 /* Magic delay. Bleah yucky. */
1169 msleep(1);
1170 return res;
1171}
1172
1173/*
1174 */
1175static void
Takashi Iwai10754f532005-11-17 15:01:29 +01001176snd_nm256_ac97_write(struct snd_ac97 *ac97,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 unsigned short reg, unsigned short val)
1178{
Takashi Iwai10754f532005-11-17 15:01:29 +01001179 struct nm256 *chip = ac97->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 int tries = 2;
1181 u32 base;
1182
1183 base = chip->mixer_base;
1184
1185 snd_nm256_ac97_ready(chip);
1186
1187 /* Wait for the write to take, too. */
1188 while (tries-- > 0) {
1189 snd_nm256_writew(chip, base + reg, val);
1190 msleep(1); /* a little delay here seems better.. */
1191 if (snd_nm256_ac97_ready(chip))
1192 return;
1193 }
1194 snd_printd("nm256: ac97 codec not ready..\n");
1195}
1196
1197/* initialize the ac97 into a known state */
1198static void
Takashi Iwai10754f532005-11-17 15:01:29 +01001199snd_nm256_ac97_reset(struct snd_ac97 *ac97)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200{
Takashi Iwai10754f532005-11-17 15:01:29 +01001201 struct nm256 *chip = ac97->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202
1203 /* Reset the mixer. 'Tis magic! */
1204 snd_nm256_writeb(chip, 0x6c0, 1);
1205 if (! chip->reset_workaround) {
1206 /* Dell latitude LS will lock up by this */
1207 snd_nm256_writeb(chip, 0x6cc, 0x87);
1208 }
John W. Linville47530cf2005-10-19 16:03:10 +02001209 if (! chip->reset_workaround_2) {
1210 /* Dell latitude CSx will lock up by this */
1211 snd_nm256_writeb(chip, 0x6cc, 0x80);
1212 snd_nm256_writeb(chip, 0x6cc, 0x0);
1213 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214}
1215
1216/* create an ac97 mixer interface */
1217static int __devinit
Takashi Iwai10754f532005-11-17 15:01:29 +01001218snd_nm256_mixer(struct nm256 *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219{
Takashi Iwai10754f532005-11-17 15:01:29 +01001220 struct snd_ac97_bus *pbus;
1221 struct snd_ac97_template ac97;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 int i, err;
Takashi Iwai10754f532005-11-17 15:01:29 +01001223 static struct snd_ac97_bus_ops ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 .reset = snd_nm256_ac97_reset,
1225 .write = snd_nm256_ac97_write,
1226 .read = snd_nm256_ac97_read,
1227 };
1228 /* looks like nm256 hangs up when unexpected registers are touched... */
1229 static int mixer_regs[] = {
1230 AC97_MASTER, AC97_HEADPHONE, AC97_MASTER_MONO,
1231 AC97_PC_BEEP, AC97_PHONE, AC97_MIC, AC97_LINE, AC97_CD,
1232 AC97_VIDEO, AC97_AUX, AC97_PCM, AC97_REC_SEL,
1233 AC97_REC_GAIN, AC97_GENERAL_PURPOSE, AC97_3D_CONTROL,
Takashi Iwai1204de32005-08-16 16:54:12 +02001234 /*AC97_EXTENDED_ID,*/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235 AC97_VENDOR_ID1, AC97_VENDOR_ID2,
1236 -1
1237 };
1238
1239 if ((err = snd_ac97_bus(chip->card, 0, &ops, NULL, &pbus)) < 0)
1240 return err;
1241
1242 memset(&ac97, 0, sizeof(ac97));
1243 ac97.scaps = AC97_SCAP_AUDIO; /* we support audio! */
1244 ac97.limited_regs = 1;
1245 for (i = 0; mixer_regs[i] >= 0; i++)
1246 set_bit(mixer_regs[i], ac97.reg_accessed);
1247 ac97.private_data = chip;
Takashi Iwai1204de32005-08-16 16:54:12 +02001248 pbus->no_vra = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 err = snd_ac97_mixer(pbus, &ac97, &chip->ac97);
1250 if (err < 0)
1251 return err;
1252 if (! (chip->ac97->id & (0xf0000000))) {
1253 /* looks like an invalid id */
1254 sprintf(chip->card->mixername, "%s AC97", chip->card->driver);
1255 }
1256 return 0;
1257}
1258
1259/*
1260 * See if the signature left by the NM256 BIOS is intact; if so, we use
1261 * the associated address as the end of our audio buffer in the video
1262 * RAM.
1263 */
1264
1265static int __devinit
Takashi Iwai10754f532005-11-17 15:01:29 +01001266snd_nm256_peek_for_sig(struct nm256 *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267{
1268 /* The signature is located 1K below the end of video RAM. */
1269 void __iomem *temp;
1270 /* Default buffer end is 5120 bytes below the top of RAM. */
1271 unsigned long pointer_found = chip->buffer_end - 0x1400;
1272 u32 sig;
1273
1274 temp = ioremap_nocache(chip->buffer_addr + chip->buffer_end - 0x400, 16);
1275 if (temp == NULL) {
Takashi Iwai99b359b2005-10-20 18:26:44 +02001276 snd_printk(KERN_ERR "Unable to scan for card signature in video RAM\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277 return -EBUSY;
1278 }
1279
1280 sig = readl(temp);
1281 if ((sig & NM_SIG_MASK) == NM_SIGNATURE) {
1282 u32 pointer = readl(temp + 4);
1283
1284 /*
1285 * If it's obviously invalid, don't use it
1286 */
1287 if (pointer == 0xffffffff ||
1288 pointer < chip->buffer_size ||
1289 pointer > chip->buffer_end) {
Takashi Iwai99b359b2005-10-20 18:26:44 +02001290 snd_printk(KERN_ERR "invalid signature found: 0x%x\n", pointer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291 iounmap(temp);
1292 return -ENODEV;
1293 } else {
1294 pointer_found = pointer;
Takashi Iwai10754f532005-11-17 15:01:29 +01001295 printk(KERN_INFO "nm256: found card signature in video RAM: 0x%x\n",
1296 pointer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 }
1298 }
1299
1300 iounmap(temp);
1301 chip->buffer_end = pointer_found;
1302
1303 return 0;
1304}
1305
1306#ifdef CONFIG_PM
1307/*
1308 * APM event handler, so the card is properly reinitialized after a power
1309 * event.
1310 */
Takashi Iwai10754f532005-11-17 15:01:29 +01001311static int nm256_suspend(struct snd_card *card, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312{
Takashi Iwai10754f532005-11-17 15:01:29 +01001313 struct nm256 *chip = card->pm_private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314
1315 snd_pcm_suspend_all(chip->pcm);
1316 snd_ac97_suspend(chip->ac97);
1317 chip->coeffs_current = 0;
1318 pci_disable_device(chip->pci);
1319 return 0;
1320}
1321
Takashi Iwai10754f532005-11-17 15:01:29 +01001322static int nm256_resume(struct snd_card *card)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323{
Takashi Iwai10754f532005-11-17 15:01:29 +01001324 struct nm256 *chip = card->pm_private_data;
Takashi Iwai1204de32005-08-16 16:54:12 +02001325 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326
1327 /* Perform a full reset on the hardware */
1328 pci_enable_device(chip->pci);
1329 snd_nm256_init_chip(chip);
1330
1331 /* restore ac97 */
1332 snd_ac97_resume(chip->ac97);
1333
Takashi Iwai1204de32005-08-16 16:54:12 +02001334 for (i = 0; i < 2; i++) {
Takashi Iwai10754f532005-11-17 15:01:29 +01001335 struct nm256_stream *s = &chip->streams[i];
Takashi Iwai1204de32005-08-16 16:54:12 +02001336 if (s->substream && s->suspended) {
1337 spin_lock_irq(&chip->reg_lock);
1338 snd_nm256_set_format(chip, s, s->substream);
1339 spin_unlock_irq(&chip->reg_lock);
1340 }
1341 }
1342
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 return 0;
1344}
1345#endif /* CONFIG_PM */
1346
Takashi Iwai10754f532005-11-17 15:01:29 +01001347static int snd_nm256_free(struct nm256 *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348{
1349 if (chip->streams[SNDRV_PCM_STREAM_PLAYBACK].running)
1350 snd_nm256_playback_stop(chip);
1351 if (chip->streams[SNDRV_PCM_STREAM_CAPTURE].running)
1352 snd_nm256_capture_stop(chip);
1353
1354 if (chip->irq >= 0)
1355 synchronize_irq(chip->irq);
1356
1357 if (chip->cport)
1358 iounmap(chip->cport);
1359 if (chip->buffer)
1360 iounmap(chip->buffer);
Takashi Iwaib1d57762005-10-10 11:56:31 +02001361 release_and_free_resource(chip->res_cport);
1362 release_and_free_resource(chip->res_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 if (chip->irq >= 0)
Takashi Iwai10754f532005-11-17 15:01:29 +01001364 free_irq(chip->irq, chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365
1366 pci_disable_device(chip->pci);
1367 kfree(chip);
1368 return 0;
1369}
1370
Takashi Iwai10754f532005-11-17 15:01:29 +01001371static int snd_nm256_dev_free(struct snd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372{
Takashi Iwai10754f532005-11-17 15:01:29 +01001373 struct nm256 *chip = device->device_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374 return snd_nm256_free(chip);
1375}
1376
1377static int __devinit
Takashi Iwai10754f532005-11-17 15:01:29 +01001378snd_nm256_create(struct snd_card *card, struct pci_dev *pci,
1379 struct nm256 **chip_ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380{
Takashi Iwai10754f532005-11-17 15:01:29 +01001381 struct nm256 *chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 int err, pval;
Takashi Iwai10754f532005-11-17 15:01:29 +01001383 static struct snd_device_ops ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384 .dev_free = snd_nm256_dev_free,
1385 };
1386 u32 addr;
1387
1388 *chip_ret = NULL;
1389
1390 if ((err = pci_enable_device(pci)) < 0)
1391 return err;
1392
Takashi Iwaie560d8d2005-09-09 14:21:46 +02001393 chip = kzalloc(sizeof(*chip), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394 if (chip == NULL) {
1395 pci_disable_device(pci);
1396 return -ENOMEM;
1397 }
1398
1399 chip->card = card;
1400 chip->pci = pci;
Takashi Iwai3f05f862005-11-17 11:12:06 +01001401 chip->use_cache = use_cache;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402 spin_lock_init(&chip->reg_lock);
1403 chip->irq = -1;
Takashi Iwai1204de32005-08-16 16:54:12 +02001404 init_MUTEX(&chip->irq_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405
Takashi Iwai3f05f862005-11-17 11:12:06 +01001406 /* store buffer sizes in bytes */
1407 chip->streams[SNDRV_PCM_STREAM_PLAYBACK].bufsize = playback_bufsize * 1024;
1408 chip->streams[SNDRV_PCM_STREAM_CAPTURE].bufsize = capture_bufsize * 1024;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409
1410 /*
1411 * The NM256 has two memory ports. The first port is nothing
1412 * more than a chunk of video RAM, which is used as the I/O ring
1413 * buffer. The second port has the actual juicy stuff (like the
1414 * mixer and the playback engine control registers).
1415 */
1416
1417 chip->buffer_addr = pci_resource_start(pci, 0);
1418 chip->cport_addr = pci_resource_start(pci, 1);
1419
1420 /* Init the memory port info. */
1421 /* remap control port (#2) */
1422 chip->res_cport = request_mem_region(chip->cport_addr, NM_PORT2_SIZE,
1423 card->driver);
1424 if (chip->res_cport == NULL) {
Takashi Iwai99b359b2005-10-20 18:26:44 +02001425 snd_printk(KERN_ERR "memory region 0x%lx (size 0x%x) busy\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 chip->cport_addr, NM_PORT2_SIZE);
1427 err = -EBUSY;
1428 goto __error;
1429 }
1430 chip->cport = ioremap_nocache(chip->cport_addr, NM_PORT2_SIZE);
1431 if (chip->cport == NULL) {
Takashi Iwai99b359b2005-10-20 18:26:44 +02001432 snd_printk(KERN_ERR "unable to map control port %lx\n", chip->cport_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433 err = -ENOMEM;
1434 goto __error;
1435 }
1436
1437 if (!strcmp(card->driver, "NM256AV")) {
1438 /* Ok, try to see if this is a non-AC97 version of the hardware. */
1439 pval = snd_nm256_readw(chip, NM_MIXER_PRESENCE);
1440 if ((pval & NM_PRESENCE_MASK) != NM_PRESENCE_VALUE) {
Takashi Iwai3f05f862005-11-17 11:12:06 +01001441 if (! force_ac97) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442 printk(KERN_ERR "nm256: no ac97 is found!\n");
Takashi Iwai10754f532005-11-17 15:01:29 +01001443 printk(KERN_ERR " force the driver to load by "
1444 "passing in the module parameter\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445 printk(KERN_ERR " force_ac97=1\n");
1446 printk(KERN_ERR " or try sb16 or cs423x drivers instead.\n");
1447 err = -ENXIO;
1448 goto __error;
1449 }
1450 }
1451 chip->buffer_end = 2560 * 1024;
1452 chip->interrupt = snd_nm256_interrupt;
1453 chip->mixer_status_offset = NM_MIXER_STATUS_OFFSET;
1454 chip->mixer_status_mask = NM_MIXER_READY_MASK;
1455 } else {
1456 /* Not sure if there is any relevant detect for the ZX or not. */
1457 if (snd_nm256_readb(chip, 0xa0b) != 0)
1458 chip->buffer_end = 6144 * 1024;
1459 else
1460 chip->buffer_end = 4096 * 1024;
1461
1462 chip->interrupt = snd_nm256_interrupt_zx;
1463 chip->mixer_status_offset = NM2_MIXER_STATUS_OFFSET;
1464 chip->mixer_status_mask = NM2_MIXER_READY_MASK;
1465 }
1466
Takashi Iwai10754f532005-11-17 15:01:29 +01001467 chip->buffer_size = chip->streams[SNDRV_PCM_STREAM_PLAYBACK].bufsize +
1468 chip->streams[SNDRV_PCM_STREAM_CAPTURE].bufsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469 if (chip->use_cache)
1470 chip->buffer_size += NM_TOTAL_COEFF_COUNT * 4;
1471 else
1472 chip->buffer_size += NM_MAX_PLAYBACK_COEF_SIZE + NM_MAX_RECORD_COEF_SIZE;
1473
Takashi Iwai3f05f862005-11-17 11:12:06 +01001474 if (buffer_top >= chip->buffer_size && buffer_top < chip->buffer_end)
1475 chip->buffer_end = buffer_top;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476 else {
1477 /* get buffer end pointer from signature */
1478 if ((err = snd_nm256_peek_for_sig(chip)) < 0)
1479 goto __error;
1480 }
1481
1482 chip->buffer_start = chip->buffer_end - chip->buffer_size;
1483 chip->buffer_addr += chip->buffer_start;
1484
1485 printk(KERN_INFO "nm256: Mapping port 1 from 0x%x - 0x%x\n",
1486 chip->buffer_start, chip->buffer_end);
1487
1488 chip->res_buffer = request_mem_region(chip->buffer_addr,
1489 chip->buffer_size,
1490 card->driver);
1491 if (chip->res_buffer == NULL) {
Takashi Iwai99b359b2005-10-20 18:26:44 +02001492 snd_printk(KERN_ERR "nm256: buffer 0x%lx (size 0x%x) busy\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493 chip->buffer_addr, chip->buffer_size);
1494 err = -EBUSY;
1495 goto __error;
1496 }
1497 chip->buffer = ioremap_nocache(chip->buffer_addr, chip->buffer_size);
1498 if (chip->buffer == NULL) {
1499 err = -ENOMEM;
Takashi Iwai99b359b2005-10-20 18:26:44 +02001500 snd_printk(KERN_ERR "unable to map ring buffer at %lx\n", chip->buffer_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501 goto __error;
1502 }
1503
1504 /* set offsets */
1505 addr = chip->buffer_start;
1506 chip->streams[SNDRV_PCM_STREAM_PLAYBACK].buf = addr;
1507 addr += chip->streams[SNDRV_PCM_STREAM_PLAYBACK].bufsize;
1508 chip->streams[SNDRV_PCM_STREAM_CAPTURE].buf = addr;
1509 addr += chip->streams[SNDRV_PCM_STREAM_CAPTURE].bufsize;
1510 if (chip->use_cache) {
1511 chip->all_coeff_buf = addr;
1512 } else {
1513 chip->coeff_buf[SNDRV_PCM_STREAM_PLAYBACK] = addr;
1514 addr += NM_MAX_PLAYBACK_COEF_SIZE;
1515 chip->coeff_buf[SNDRV_PCM_STREAM_CAPTURE] = addr;
1516 }
1517
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518 /* Fixed setting. */
1519 chip->mixer_base = NM_MIXER_OFFSET;
1520
1521 chip->coeffs_current = 0;
1522
1523 snd_nm256_init_chip(chip);
1524
1525 // pci_set_master(pci); /* needed? */
1526
1527 snd_card_set_pm_callback(card, nm256_suspend, nm256_resume, chip);
1528
1529 if ((err = snd_device_new(card, SNDRV_DEV_LOWLEVEL, chip, &ops)) < 0)
1530 goto __error;
1531
1532 snd_card_set_dev(card, &pci->dev);
1533
1534 *chip_ret = chip;
1535 return 0;
1536
1537__error:
1538 snd_nm256_free(chip);
1539 return err;
1540}
1541
1542
1543struct nm256_quirk {
1544 unsigned short vendor;
1545 unsigned short device;
1546 int type;
1547};
1548
John W. Linville47530cf2005-10-19 16:03:10 +02001549enum { NM_BLACKLISTED, NM_RESET_WORKAROUND, NM_RESET_WORKAROUND_2 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550
1551static struct nm256_quirk nm256_quirks[] __devinitdata = {
1552 /* HP omnibook 4150 has cs4232 codec internally */
1553 { .vendor = 0x103c, .device = 0x0007, .type = NM_BLACKLISTED },
1554 /* Sony PCG-F305 */
1555 { .vendor = 0x104d, .device = 0x8041, .type = NM_RESET_WORKAROUND },
1556 /* Dell Latitude LS */
1557 { .vendor = 0x1028, .device = 0x0080, .type = NM_RESET_WORKAROUND },
John W. Linville47530cf2005-10-19 16:03:10 +02001558 /* Dell Latitude CSx */
1559 { .vendor = 0x1028, .device = 0x0091, .type = NM_RESET_WORKAROUND_2 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560 { } /* terminator */
1561};
1562
1563
1564static int __devinit snd_nm256_probe(struct pci_dev *pci,
1565 const struct pci_device_id *pci_id)
1566{
Takashi Iwai10754f532005-11-17 15:01:29 +01001567 struct snd_card *card;
1568 struct nm256 *chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570 struct nm256_quirk *q;
1571 u16 subsystem_vendor, subsystem_device;
1572
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573 pci_read_config_word(pci, PCI_SUBSYSTEM_VENDOR_ID, &subsystem_vendor);
1574 pci_read_config_word(pci, PCI_SUBSYSTEM_ID, &subsystem_device);
1575
1576 for (q = nm256_quirks; q->vendor; q++) {
1577 if (q->vendor == subsystem_vendor && q->device == subsystem_device) {
1578 switch (q->type) {
1579 case NM_BLACKLISTED:
Takashi Iwai10754f532005-11-17 15:01:29 +01001580 printk(KERN_INFO "nm256: The device is blacklisted. "
1581 "Loading stopped\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582 return -ENODEV;
John W. Linville47530cf2005-10-19 16:03:10 +02001583 case NM_RESET_WORKAROUND_2:
Takashi Iwai8a3fb4d2005-10-20 17:10:49 +02001584 reset_workaround_2 = 1;
John W. Linville47530cf2005-10-19 16:03:10 +02001585 /* Fall-through */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586 case NM_RESET_WORKAROUND:
Takashi Iwai8a3fb4d2005-10-20 17:10:49 +02001587 reset_workaround = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588 break;
1589 }
1590 }
1591 }
1592
Takashi Iwai8a3fb4d2005-10-20 17:10:49 +02001593 card = snd_card_new(index, id, THIS_MODULE, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594 if (card == NULL)
1595 return -ENOMEM;
1596
1597 switch (pci->device) {
1598 case PCI_DEVICE_ID_NEOMAGIC_NM256AV_AUDIO:
1599 strcpy(card->driver, "NM256AV");
1600 break;
1601 case PCI_DEVICE_ID_NEOMAGIC_NM256ZX_AUDIO:
1602 strcpy(card->driver, "NM256ZX");
1603 break;
1604 case PCI_DEVICE_ID_NEOMAGIC_NM256XL_PLUS_AUDIO:
1605 strcpy(card->driver, "NM256XL+");
1606 break;
1607 default:
Takashi Iwai99b359b2005-10-20 18:26:44 +02001608 snd_printk(KERN_ERR "invalid device id 0x%x\n", pci->device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609 snd_card_free(card);
1610 return -EINVAL;
1611 }
1612
Takashi Iwai8a3fb4d2005-10-20 17:10:49 +02001613 if (vaio_hack)
Takashi Iwai3f05f862005-11-17 11:12:06 +01001614 buffer_top = 0x25a800; /* this avoids conflicts with XFree86 server */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615
Takashi Iwai8a3fb4d2005-10-20 17:10:49 +02001616 if (playback_bufsize < 4)
1617 playback_bufsize = 4;
1618 if (playback_bufsize > 128)
1619 playback_bufsize = 128;
1620 if (capture_bufsize < 4)
1621 capture_bufsize = 4;
1622 if (capture_bufsize > 128)
1623 capture_bufsize = 128;
Takashi Iwai3f05f862005-11-17 11:12:06 +01001624 if ((err = snd_nm256_create(card, pci, &chip)) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625 snd_card_free(card);
1626 return err;
1627 }
1628
Takashi Iwai8a3fb4d2005-10-20 17:10:49 +02001629 if (reset_workaround) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630 snd_printdd(KERN_INFO "nm256: reset_workaround activated\n");
1631 chip->reset_workaround = 1;
1632 }
1633
Takashi Iwai8a3fb4d2005-10-20 17:10:49 +02001634 if (reset_workaround_2) {
John W. Linville47530cf2005-10-19 16:03:10 +02001635 snd_printdd(KERN_INFO "nm256: reset_workaround_2 activated\n");
1636 chip->reset_workaround_2 = 1;
1637 }
1638
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639 if ((err = snd_nm256_pcm(chip, 0)) < 0 ||
1640 (err = snd_nm256_mixer(chip)) < 0) {
1641 snd_card_free(card);
1642 return err;
1643 }
1644
1645 sprintf(card->shortname, "NeoMagic %s", card->driver);
1646 sprintf(card->longname, "%s at 0x%lx & 0x%lx, irq %d",
1647 card->shortname,
1648 chip->buffer_addr, chip->cport_addr, chip->irq);
1649
1650 if ((err = snd_card_register(card)) < 0) {
1651 snd_card_free(card);
1652 return err;
1653 }
1654
1655 pci_set_drvdata(pci, card);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 return 0;
1657}
1658
1659static void __devexit snd_nm256_remove(struct pci_dev *pci)
1660{
1661 snd_card_free(pci_get_drvdata(pci));
1662 pci_set_drvdata(pci, NULL);
1663}
1664
1665
1666static struct pci_driver driver = {
1667 .name = "NeoMagic 256",
1668 .id_table = snd_nm256_ids,
1669 .probe = snd_nm256_probe,
1670 .remove = __devexit_p(snd_nm256_remove),
1671 SND_PCI_PM_CALLBACKS
1672};
1673
1674
1675static int __init alsa_card_nm256_init(void)
1676{
Takashi Iwai01d25d42005-04-11 16:58:24 +02001677 return pci_register_driver(&driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678}
1679
1680static void __exit alsa_card_nm256_exit(void)
1681{
1682 pci_unregister_driver(&driver);
1683}
1684
1685module_init(alsa_card_nm256_init)
1686module_exit(alsa_card_nm256_exit)