blob: 1ce465cc66a85b22f86037ad37eb02ba6ad96939 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Krzysztof Heltacd471002009-10-01 00:10:34 +02002 * Low-level ALSA driver for the ENSONIQ SoundScape
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 * Copyright (c) by Chris Rankin
4 *
5 * This driver was written in part using information obtained from
6 * the OSS/Free SoundScape driver, written by Hannu Savolainen.
7 *
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 */
23
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/init.h>
Takashi Iwai277e9262005-11-17 17:13:12 +010025#include <linux/err.h>
Takashi Iwai5e24c1c2007-02-22 12:50:54 +010026#include <linux/isa.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <linux/delay.h>
Krzysztof Heltacd471002009-10-01 00:10:34 +020028#include <linux/firmware.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/pnp.h>
30#include <linux/spinlock.h>
31#include <linux/moduleparam.h>
32#include <asm/dma.h>
33#include <sound/core.h>
Krzysztof Helt61ef19d2008-07-31 21:02:42 +020034#include <sound/wss.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <sound/mpu401.h>
36#include <sound/initval.h>
37
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
39MODULE_AUTHOR("Chris Rankin");
Krzysztof Heltacd471002009-10-01 00:10:34 +020040MODULE_DESCRIPTION("ENSONIQ SoundScape driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -070041MODULE_LICENSE("GPL");
Krzysztof Heltacd471002009-10-01 00:10:34 +020042MODULE_FIRMWARE("sndscape.co0");
43MODULE_FIRMWARE("sndscape.co1");
44MODULE_FIRMWARE("sndscape.co2");
45MODULE_FIRMWARE("sndscape.co3");
46MODULE_FIRMWARE("sndscape.co4");
47MODULE_FIRMWARE("scope.cod");
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
49static int index[SNDRV_CARDS] __devinitdata = SNDRV_DEFAULT_IDX;
50static char* id[SNDRV_CARDS] __devinitdata = SNDRV_DEFAULT_STR;
Krzysztof Helt4996bca2007-09-17 16:23:13 +020051static long port[SNDRV_CARDS] __devinitdata = SNDRV_DEFAULT_PORT;
52static long wss_port[SNDRV_CARDS] __devinitdata = SNDRV_DEFAULT_PORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -070053static int irq[SNDRV_CARDS] __devinitdata = SNDRV_DEFAULT_IRQ;
54static int mpu_irq[SNDRV_CARDS] __devinitdata = SNDRV_DEFAULT_IRQ;
55static int dma[SNDRV_CARDS] __devinitdata = SNDRV_DEFAULT_DMA;
Krzysztof Helt4996bca2007-09-17 16:23:13 +020056static int dma2[SNDRV_CARDS] __devinitdata = SNDRV_DEFAULT_DMA;
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
58module_param_array(index, int, NULL, 0444);
59MODULE_PARM_DESC(index, "Index number for SoundScape soundcard");
60
61module_param_array(id, charp, NULL, 0444);
62MODULE_PARM_DESC(id, "Description for SoundScape card");
63
64module_param_array(port, long, NULL, 0444);
65MODULE_PARM_DESC(port, "Port # for SoundScape driver.");
66
Krzysztof Helt4996bca2007-09-17 16:23:13 +020067module_param_array(wss_port, long, NULL, 0444);
68MODULE_PARM_DESC(wss_port, "WSS Port # for SoundScape driver.");
69
Linus Torvalds1da177e2005-04-16 15:20:36 -070070module_param_array(irq, int, NULL, 0444);
71MODULE_PARM_DESC(irq, "IRQ # for SoundScape driver.");
72
73module_param_array(mpu_irq, int, NULL, 0444);
74MODULE_PARM_DESC(mpu_irq, "MPU401 IRQ # for SoundScape driver.");
75
76module_param_array(dma, int, NULL, 0444);
77MODULE_PARM_DESC(dma, "DMA # for SoundScape driver.");
Clemens Ladischf7a92752005-12-07 09:13:42 +010078
Krzysztof Helt4996bca2007-09-17 16:23:13 +020079module_param_array(dma2, int, NULL, 0444);
80MODULE_PARM_DESC(dma2, "DMA2 # for SoundScape driver.");
81
Linus Torvalds1da177e2005-04-16 15:20:36 -070082#ifdef CONFIG_PNP
Rene Herman609d7692007-05-15 11:42:56 +020083static int isa_registered;
Takashi Iwai59b1b342006-01-04 15:06:44 +010084static int pnp_registered;
Rene Herman609d7692007-05-15 11:42:56 +020085
Linus Torvalds1da177e2005-04-16 15:20:36 -070086static struct pnp_card_device_id sscape_pnpids[] = {
Krzysztof Helt4996bca2007-09-17 16:23:13 +020087 { .id = "ENS3081", .devs = { { "ENS0000" } } }, /* Soundscape PnP */
88 { .id = "ENS4081", .devs = { { "ENS1011" } } }, /* VIVO90 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 { .id = "" } /* end */
90};
91
92MODULE_DEVICE_TABLE(pnp_card, sscape_pnpids);
93#endif
94
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
Linus Torvalds1da177e2005-04-16 15:20:36 -070096#define HOST_CTRL_IO(i) ((i) + 2)
97#define HOST_DATA_IO(i) ((i) + 3)
98#define ODIE_ADDR_IO(i) ((i) + 4)
99#define ODIE_DATA_IO(i) ((i) + 5)
100#define CODEC_IO(i) ((i) + 8)
101
102#define IC_ODIE 1
103#define IC_OPUS 2
104
105#define RX_READY 0x01
106#define TX_READY 0x02
107
108#define CMD_ACK 0x80
109#define CMD_SET_MIDI_VOL 0x84
110#define CMD_GET_MIDI_VOL 0x85
111#define CMD_XXX_MIDI_VOL 0x86
112#define CMD_SET_EXTMIDI 0x8a
113#define CMD_GET_EXTMIDI 0x8b
114#define CMD_SET_MT32 0x8c
115#define CMD_GET_MT32 0x8d
116
117enum GA_REG {
118 GA_INTSTAT_REG = 0,
119 GA_INTENA_REG,
120 GA_DMAA_REG,
121 GA_DMAB_REG,
122 GA_INTCFG_REG,
123 GA_DMACFG_REG,
124 GA_CDCFG_REG,
125 GA_SMCFGA_REG,
126 GA_SMCFGB_REG,
127 GA_HMCTL_REG
128};
129
130#define DMA_8BIT 0x80
131
132
Krzysztof Helt4996bca2007-09-17 16:23:13 +0200133enum card_type {
Krzysztof Heltf0968e32009-09-27 23:08:40 +0200134 MEDIA_FX, /* Sequoia S-1000 */
135 SSCAPE, /* Sequoia S-2000 */
Krzysztof Helt4996bca2007-09-17 16:23:13 +0200136 SSCAPE_PNP,
137 SSCAPE_VIVO,
138};
139
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140struct soundscape {
141 spinlock_t lock;
142 unsigned io_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 int ic_type;
Krzysztof Helt4996bca2007-09-17 16:23:13 +0200144 enum card_type type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 struct resource *io_res;
Krzysztof Heltec1e7942007-09-17 17:57:37 +0200146 struct resource *wss_res;
Krzysztof Helt7779f752008-07-31 21:03:41 +0200147 struct snd_wss *chip;
Takashi Iwaibe624532005-11-17 14:42:05 +0100148 struct snd_mpu401 *mpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
150 /*
151 * The MIDI device won't work until we've loaded
152 * its firmware via a hardware-dependent device IOCTL
153 */
154 spinlock_t fwlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 unsigned long midi_usage;
156 unsigned char midi_vol;
157};
158
159#define INVALID_IRQ ((unsigned)-1)
160
161
Takashi Iwaibe624532005-11-17 14:42:05 +0100162static inline struct soundscape *get_card_soundscape(struct snd_card *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163{
164 return (struct soundscape *) (c->private_data);
165}
166
Takashi Iwaibe624532005-11-17 14:42:05 +0100167static inline struct soundscape *get_mpu401_soundscape(struct snd_mpu401 * mpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168{
169 return (struct soundscape *) (mpu->private_data);
170}
171
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172/*
173 * Allocates some kernel memory that we can use for DMA.
174 * I think this means that the memory has to map to
175 * contiguous pages of physical memory.
176 */
177static struct snd_dma_buffer *get_dmabuf(struct snd_dma_buffer *buf, unsigned long size)
178{
179 if (buf) {
180 if (snd_dma_alloc_pages_fallback(SNDRV_DMA_TYPE_DEV, snd_dma_isa_data(),
181 size, buf) < 0) {
182 snd_printk(KERN_ERR "sscape: Failed to allocate %lu bytes for DMA\n", size);
183 return NULL;
184 }
185 }
186
187 return buf;
188}
189
190/*
191 * Release the DMA-able kernel memory ...
192 */
193static void free_dmabuf(struct snd_dma_buffer *buf)
194{
195 if (buf && buf->area)
196 snd_dma_free_pages(buf);
197}
198
199
200/*
201 * This function writes to the SoundScape's control registers,
202 * but doesn't do any locking. It's up to the caller to do that.
203 * This is why this function is "unsafe" ...
204 */
205static inline void sscape_write_unsafe(unsigned io_base, enum GA_REG reg, unsigned char val)
206{
207 outb(reg, ODIE_ADDR_IO(io_base));
208 outb(val, ODIE_DATA_IO(io_base));
209}
210
211/*
212 * Write to the SoundScape's control registers, and do the
213 * necessary locking ...
214 */
215static void sscape_write(struct soundscape *s, enum GA_REG reg, unsigned char val)
216{
217 unsigned long flags;
218
219 spin_lock_irqsave(&s->lock, flags);
220 sscape_write_unsafe(s->io_base, reg, val);
221 spin_unlock_irqrestore(&s->lock, flags);
222}
223
224/*
225 * Read from the SoundScape's control registers, but leave any
226 * locking to the caller. This is why the function is "unsafe" ...
227 */
228static inline unsigned char sscape_read_unsafe(unsigned io_base, enum GA_REG reg)
229{
230 outb(reg, ODIE_ADDR_IO(io_base));
231 return inb(ODIE_DATA_IO(io_base));
232}
233
234/*
235 * Puts the SoundScape into "host" mode, as compared to "MIDI" mode
236 */
237static inline void set_host_mode_unsafe(unsigned io_base)
238{
239 outb(0x0, HOST_CTRL_IO(io_base));
240}
241
242/*
243 * Puts the SoundScape into "MIDI" mode, as compared to "host" mode
244 */
245static inline void set_midi_mode_unsafe(unsigned io_base)
246{
247 outb(0x3, HOST_CTRL_IO(io_base));
248}
249
250/*
251 * Read the SoundScape's host-mode control register, but leave
252 * any locking issues to the caller ...
253 */
254static inline int host_read_unsafe(unsigned io_base)
255{
256 int data = -1;
257 if ((inb(HOST_CTRL_IO(io_base)) & RX_READY) != 0) {
258 data = inb(HOST_DATA_IO(io_base));
259 }
260
261 return data;
262}
263
264/*
265 * Read the SoundScape's host-mode control register, performing
266 * a limited amount of busy-waiting if the register isn't ready.
267 * Also leaves all locking-issues to the caller ...
268 */
269static int host_read_ctrl_unsafe(unsigned io_base, unsigned timeout)
270{
271 int data;
272
273 while (((data = host_read_unsafe(io_base)) < 0) && (timeout != 0)) {
274 udelay(100);
275 --timeout;
276 } /* while */
277
278 return data;
279}
280
281/*
282 * Write to the SoundScape's host-mode control registers, but
283 * leave any locking issues to the caller ...
284 */
285static inline int host_write_unsafe(unsigned io_base, unsigned char data)
286{
287 if ((inb(HOST_CTRL_IO(io_base)) & TX_READY) != 0) {
288 outb(data, HOST_DATA_IO(io_base));
289 return 1;
290 }
291
292 return 0;
293}
294
295/*
296 * Write to the SoundScape's host-mode control registers, performing
297 * a limited amount of busy-waiting if the register isn't ready.
298 * Also leaves all locking-issues to the caller ...
299 */
300static int host_write_ctrl_unsafe(unsigned io_base, unsigned char data,
301 unsigned timeout)
302{
303 int err;
304
305 while (!(err = host_write_unsafe(io_base, data)) && (timeout != 0)) {
306 udelay(100);
307 --timeout;
308 } /* while */
309
310 return err;
311}
312
313
314/*
315 * Check that the MIDI subsystem is operational. If it isn't,
316 * then we will hang the computer if we try to use it ...
317 *
318 * NOTE: This check is based upon observation, not documentation.
319 */
Takashi Iwaibe624532005-11-17 14:42:05 +0100320static inline int verify_mpu401(const struct snd_mpu401 * mpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321{
Krzysztof Heltc9864fd2009-01-21 08:19:27 +0100322 return ((inb(MPU401C(mpu)) & 0xc0) == 0x80);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323}
324
325/*
326 * This is apparently the standard way to initailise an MPU-401
327 */
Takashi Iwaibe624532005-11-17 14:42:05 +0100328static inline void initialise_mpu401(const struct snd_mpu401 * mpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329{
Krzysztof Heltc9864fd2009-01-21 08:19:27 +0100330 outb(0, MPU401D(mpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331}
332
333/*
334 * Tell the SoundScape to activate the AD1845 chip (I think).
335 * The AD1845 detection fails if we *don't* do this, so I
336 * think that this is a good idea ...
337 */
338static inline void activate_ad1845_unsafe(unsigned io_base)
339{
340 sscape_write_unsafe(io_base, GA_HMCTL_REG, (sscape_read_unsafe(io_base, GA_HMCTL_REG) & 0xcf) | 0x10);
341 sscape_write_unsafe(io_base, GA_CDCFG_REG, 0x80);
342}
343
344/*
345 * Do the necessary ALSA-level cleanup to deallocate our driver ...
346 */
Takashi Iwaibe624532005-11-17 14:42:05 +0100347static void soundscape_free(struct snd_card *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348{
Krzysztof Heltec1e7942007-09-17 17:57:37 +0200349 struct soundscape *sscape = get_card_soundscape(c);
Takashi Iwaib1d57762005-10-10 11:56:31 +0200350 release_and_free_resource(sscape->io_res);
Krzysztof Heltec1e7942007-09-17 17:57:37 +0200351 release_and_free_resource(sscape->wss_res);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 free_dma(sscape->chip->dma1);
353}
354
355/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 * Tell the SoundScape to begin a DMA tranfer using the given channel.
357 * All locking issues are left to the caller.
358 */
359static inline void sscape_start_dma_unsafe(unsigned io_base, enum GA_REG reg)
360{
361 sscape_write_unsafe(io_base, reg, sscape_read_unsafe(io_base, reg) | 0x01);
362 sscape_write_unsafe(io_base, reg, sscape_read_unsafe(io_base, reg) & 0xfe);
363}
364
365/*
366 * Wait for a DMA transfer to complete. This is a "limited busy-wait",
367 * and all locking issues are left to the caller.
368 */
369static int sscape_wait_dma_unsafe(unsigned io_base, enum GA_REG reg, unsigned timeout)
370{
371 while (!(sscape_read_unsafe(io_base, reg) & 0x01) && (timeout != 0)) {
372 udelay(100);
373 --timeout;
374 } /* while */
375
376 return (sscape_read_unsafe(io_base, reg) & 0x01);
377}
378
379/*
380 * Wait for the On-Board Processor to return its start-up
381 * acknowledgement sequence. This wait is too long for
382 * us to perform "busy-waiting", and so we must sleep.
383 * This in turn means that we must not be holding any
384 * spinlocks when we call this function.
385 */
386static int obp_startup_ack(struct soundscape *s, unsigned timeout)
387{
Krzysztof Helt554b91e2009-01-12 21:25:04 +0100388 unsigned long end_time = jiffies + msecs_to_jiffies(timeout);
389
390 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 unsigned long flags;
Krzysztof Heltacd471002009-10-01 00:10:34 +0200392 int x;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 spin_lock_irqsave(&s->lock, flags);
Krzysztof Heltacd471002009-10-01 00:10:34 +0200395 x = host_read_unsafe(s->io_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 spin_unlock_irqrestore(&s->lock, flags);
Krzysztof Heltacd471002009-10-01 00:10:34 +0200397 if (x == 0xfe || x == 0xff)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 return 1;
399
Krzysztof Helt554b91e2009-01-12 21:25:04 +0100400 msleep(10);
401 } while (time_before(jiffies, end_time));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402
403 return 0;
404}
405
406/*
407 * Wait for the host to return its start-up acknowledgement
408 * sequence. This wait is too long for us to perform
409 * "busy-waiting", and so we must sleep. This in turn means
410 * that we must not be holding any spinlocks when we call
411 * this function.
412 */
413static int host_startup_ack(struct soundscape *s, unsigned timeout)
414{
Krzysztof Helt554b91e2009-01-12 21:25:04 +0100415 unsigned long end_time = jiffies + msecs_to_jiffies(timeout);
416
417 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 unsigned long flags;
Krzysztof Heltacd471002009-10-01 00:10:34 +0200419 int x;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 spin_lock_irqsave(&s->lock, flags);
Krzysztof Heltacd471002009-10-01 00:10:34 +0200422 x = host_read_unsafe(s->io_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 spin_unlock_irqrestore(&s->lock, flags);
424 if (x == 0xfe)
425 return 1;
426
Krzysztof Helt554b91e2009-01-12 21:25:04 +0100427 msleep(10);
428 } while (time_before(jiffies, end_time));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429
430 return 0;
431}
432
433/*
434 * Upload a byte-stream into the SoundScape using DMA channel A.
435 */
436static int upload_dma_data(struct soundscape *s,
Krzysztof Heltacd471002009-10-01 00:10:34 +0200437 const unsigned char *data,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 size_t size)
439{
440 unsigned long flags;
441 struct snd_dma_buffer dma;
442 int ret;
443
Krzysztof Heltacd471002009-10-01 00:10:34 +0200444 if (!get_dmabuf(&dma, PAGE_ALIGN(32 * 1024)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 return -ENOMEM;
446
447 spin_lock_irqsave(&s->lock, flags);
448
449 /*
450 * Reset the board ...
451 */
452 sscape_write_unsafe(s->io_base, GA_HMCTL_REG, sscape_read_unsafe(s->io_base, GA_HMCTL_REG) & 0x3f);
453
454 /*
455 * Enable the DMA channels and configure them ...
456 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 sscape_write_unsafe(s->io_base, GA_DMAA_REG, (s->chip->dma1 << 4) | DMA_8BIT);
458 sscape_write_unsafe(s->io_base, GA_DMAB_REG, 0x20);
459
460 /*
461 * Take the board out of reset ...
462 */
463 sscape_write_unsafe(s->io_base, GA_HMCTL_REG, sscape_read_unsafe(s->io_base, GA_HMCTL_REG) | 0x80);
464
465 /*
Krzysztof Heltacd471002009-10-01 00:10:34 +0200466 * Upload the firmware to the SoundScape
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 * board through the DMA channel ...
468 */
469 while (size != 0) {
470 unsigned long len;
471
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 len = min(size, dma.bytes);
Krzysztof Heltacd471002009-10-01 00:10:34 +0200473 memcpy(dma.area, data, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 data += len;
475 size -= len;
476
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 snd_dma_program(s->chip->dma1, dma.addr, len, DMA_MODE_WRITE);
478 sscape_start_dma_unsafe(s->io_base, GA_DMAA_REG);
479 if (!sscape_wait_dma_unsafe(s->io_base, GA_DMAA_REG, 5000)) {
480 /*
481 * Don't forget to release this spinlock we're holding ...
482 */
483 spin_unlock_irqrestore(&s->lock, flags);
484
485 snd_printk(KERN_ERR "sscape: DMA upload has timed out\n");
486 ret = -EAGAIN;
487 goto _release_dma;
488 }
489 } /* while */
490
491 set_host_mode_unsafe(s->io_base);
Krzysztof Heltacd471002009-10-01 00:10:34 +0200492 outb(0x0, s->io_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493
494 /*
495 * Boot the board ... (I think)
496 */
497 sscape_write_unsafe(s->io_base, GA_HMCTL_REG, sscape_read_unsafe(s->io_base, GA_HMCTL_REG) | 0x40);
498 spin_unlock_irqrestore(&s->lock, flags);
499
500 /*
501 * If all has gone well, then the board should acknowledge
502 * the new upload and tell us that it has rebooted OK. We
503 * give it 5 seconds (max) ...
504 */
505 ret = 0;
Krzysztof Helt554b91e2009-01-12 21:25:04 +0100506 if (!obp_startup_ack(s, 5000)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 snd_printk(KERN_ERR "sscape: No response from on-board processor after upload\n");
508 ret = -EAGAIN;
Krzysztof Helt554b91e2009-01-12 21:25:04 +0100509 } else if (!host_startup_ack(s, 5000)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 snd_printk(KERN_ERR "sscape: SoundScape failed to initialise\n");
511 ret = -EAGAIN;
512 }
513
Krzysztof Helt4996bca2007-09-17 16:23:13 +0200514_release_dma:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 /*
516 * NOTE!!! We are NOT holding any spinlocks at this point !!!
517 */
Krzysztof Heltacd471002009-10-01 00:10:34 +0200518 sscape_write(s, GA_DMAA_REG, (s->ic_type == IC_OPUS ? 0x40 : 0x70));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 free_dmabuf(&dma);
520
521 return ret;
522}
523
524/*
525 * Upload the bootblock(?) into the SoundScape. The only
526 * purpose of this block of code seems to be to tell
527 * us which version of the microcode we should be using.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 */
Krzysztof Heltacd471002009-10-01 00:10:34 +0200529static int sscape_upload_bootblock(struct snd_card *card)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530{
Krzysztof Heltacd471002009-10-01 00:10:34 +0200531 struct soundscape *sscape = get_card_soundscape(card);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 unsigned long flags;
Krzysztof Heltacd471002009-10-01 00:10:34 +0200533 const struct firmware *init_fw = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 int data = 0;
535 int ret;
536
Krzysztof Heltacd471002009-10-01 00:10:34 +0200537 ret = request_firmware(&init_fw, "scope.cod", card->dev);
538 if (ret < 0) {
539 snd_printk(KERN_ERR "Error loading scope.cod");
540 return ret;
541 }
542 ret = upload_dma_data(sscape, init_fw->data, init_fw->size);
543
544 release_firmware(init_fw);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545
546 spin_lock_irqsave(&sscape->lock, flags);
Krzysztof Heltacd471002009-10-01 00:10:34 +0200547 if (ret == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 data = host_read_ctrl_unsafe(sscape->io_base, 100);
Krzysztof Heltacd471002009-10-01 00:10:34 +0200549
550 if (data & 0x10)
551 sscape_write_unsafe(sscape->io_base, GA_SMCFGA_REG, 0x2f);
552
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 spin_unlock_irqrestore(&sscape->lock, flags);
554
Krzysztof Heltacd471002009-10-01 00:10:34 +0200555 data &= 0xf;
556 if (ret == 0 && data > 7) {
557 snd_printk(KERN_ERR "timeout reading firmware version\n");
558 ret = -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 }
560
Krzysztof Heltacd471002009-10-01 00:10:34 +0200561 return (ret == 0) ? data : ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562}
563
564/*
Krzysztof Heltacd471002009-10-01 00:10:34 +0200565 * Upload the microcode into the SoundScape.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 */
Krzysztof Heltacd471002009-10-01 00:10:34 +0200567static int sscape_upload_microcode(struct snd_card *card, int version)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568{
Krzysztof Heltacd471002009-10-01 00:10:34 +0200569 struct soundscape *sscape = get_card_soundscape(card);
570 const struct firmware *init_fw = NULL;
571 char name[14];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 int err;
573
Krzysztof Heltacd471002009-10-01 00:10:34 +0200574 snprintf(name, sizeof(name), "sndscape.co%d", version);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575
Krzysztof Heltacd471002009-10-01 00:10:34 +0200576 err = request_firmware(&init_fw, name, card->dev);
577 if (err < 0) {
578 snd_printk(KERN_ERR "Error loading sndscape.co%d", version);
579 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 }
Krzysztof Heltacd471002009-10-01 00:10:34 +0200581 err = upload_dma_data(sscape, init_fw->data, init_fw->size);
582 if (err == 0)
583 snd_printk(KERN_INFO "MIDI firmware loaded %d KBs\n",
584 init_fw->size >> 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585
Krzysztof Heltacd471002009-10-01 00:10:34 +0200586 release_firmware(init_fw);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587
588 return err;
589}
590
591/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 * Mixer control for the SoundScape's MIDI device.
593 */
Takashi Iwaibe624532005-11-17 14:42:05 +0100594static int sscape_midi_info(struct snd_kcontrol *ctl,
595 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596{
597 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
598 uinfo->count = 1;
599 uinfo->value.integer.min = 0;
600 uinfo->value.integer.max = 127;
601 return 0;
602}
603
Takashi Iwaibe624532005-11-17 14:42:05 +0100604static int sscape_midi_get(struct snd_kcontrol *kctl,
605 struct snd_ctl_elem_value *uctl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606{
Krzysztof Helt7779f752008-07-31 21:03:41 +0200607 struct snd_wss *chip = snd_kcontrol_chip(kctl);
Takashi Iwaibe624532005-11-17 14:42:05 +0100608 struct snd_card *card = chip->card;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 register struct soundscape *s = get_card_soundscape(card);
610 unsigned long flags;
611
612 spin_lock_irqsave(&s->lock, flags);
Krzysztof Helt453e37b2009-02-04 17:41:32 +0100613 uctl->value.integer.value[0] = s->midi_vol;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 spin_unlock_irqrestore(&s->lock, flags);
615 return 0;
616}
617
Takashi Iwaibe624532005-11-17 14:42:05 +0100618static int sscape_midi_put(struct snd_kcontrol *kctl,
619 struct snd_ctl_elem_value *uctl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620{
Krzysztof Helt7779f752008-07-31 21:03:41 +0200621 struct snd_wss *chip = snd_kcontrol_chip(kctl);
Takashi Iwaibe624532005-11-17 14:42:05 +0100622 struct snd_card *card = chip->card;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 register struct soundscape *s = get_card_soundscape(card);
624 unsigned long flags;
625 int change;
626
627 spin_lock_irqsave(&s->lock, flags);
628
629 /*
630 * We need to put the board into HOST mode before we
631 * can send any volume-changing HOST commands ...
632 */
633 set_host_mode_unsafe(s->io_base);
634
635 /*
636 * To successfully change the MIDI volume setting, you seem to
637 * have to write a volume command, write the new volume value,
638 * and then perform another volume-related command. Perhaps the
639 * first command is an "open" and the second command is a "close"?
640 */
641 if (s->midi_vol == ((unsigned char) uctl->value.integer. value[0] & 127)) {
642 change = 0;
643 goto __skip_change;
644 }
645 change = (host_write_ctrl_unsafe(s->io_base, CMD_SET_MIDI_VOL, 100)
646 && host_write_ctrl_unsafe(s->io_base, ((unsigned char) uctl->value.integer. value[0]) & 127, 100)
647 && host_write_ctrl_unsafe(s->io_base, CMD_XXX_MIDI_VOL, 100));
Krzysztof Helt453e37b2009-02-04 17:41:32 +0100648 s->midi_vol = (unsigned char) uctl->value.integer.value[0] & 127;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 __skip_change:
650
651 /*
652 * Take the board out of HOST mode and back into MIDI mode ...
653 */
654 set_midi_mode_unsafe(s->io_base);
655
656 spin_unlock_irqrestore(&s->lock, flags);
657 return change;
658}
659
Takashi Iwaibe624532005-11-17 14:42:05 +0100660static struct snd_kcontrol_new midi_mixer_ctl = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
662 .name = "MIDI",
663 .info = sscape_midi_info,
664 .get = sscape_midi_get,
665 .put = sscape_midi_put
666};
667
668/*
669 * The SoundScape can use two IRQs from a possible set of four.
670 * These IRQs are encoded as bit patterns so that they can be
671 * written to the control registers.
672 */
Krzysztof Heltf0968e32009-09-27 23:08:40 +0200673static unsigned __devinit get_irq_config(int sscape_type, int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674{
675 static const int valid_irq[] = { 9, 5, 7, 10 };
Krzysztof Heltf0968e32009-09-27 23:08:40 +0200676 static const int old_irq[] = { 9, 7, 5, 15 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 unsigned cfg;
678
Krzysztof Heltf0968e32009-09-27 23:08:40 +0200679 if (sscape_type == MEDIA_FX) {
680 for (cfg = 0; cfg < ARRAY_SIZE(old_irq); ++cfg)
681 if (irq == old_irq[cfg])
682 return cfg;
683 } else {
684 for (cfg = 0; cfg < ARRAY_SIZE(valid_irq); ++cfg)
685 if (irq == valid_irq[cfg])
686 return cfg;
687 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688
689 return INVALID_IRQ;
690}
691
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692/*
693 * Perform certain arcane port-checks to see whether there
694 * is a SoundScape board lurking behind the given ports.
695 */
Krzysztof Helt453e37b2009-02-04 17:41:32 +0100696static int __devinit detect_sscape(struct soundscape *s, long wss_io)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697{
698 unsigned long flags;
699 unsigned d;
700 int retval = 0;
701
702 spin_lock_irqsave(&s->lock, flags);
703
704 /*
705 * The following code is lifted from the original OSS driver,
706 * and as I don't have a datasheet I cannot really comment
707 * on what it is doing...
708 */
709 if ((inb(HOST_CTRL_IO(s->io_base)) & 0x78) != 0)
710 goto _done;
711
712 d = inb(ODIE_ADDR_IO(s->io_base)) & 0xf0;
713 if ((d & 0x80) != 0)
714 goto _done;
715
Krzysztof Helt453e37b2009-02-04 17:41:32 +0100716 if (d == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 s->ic_type = IC_ODIE;
Krzysztof Helt453e37b2009-02-04 17:41:32 +0100718 else if ((d & 0x60) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 s->ic_type = IC_OPUS;
Krzysztof Helt453e37b2009-02-04 17:41:32 +0100720 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 goto _done;
722
723 outb(0xfa, ODIE_ADDR_IO(s->io_base));
724 if ((inb(ODIE_ADDR_IO(s->io_base)) & 0x9f) != 0x0a)
725 goto _done;
726
727 outb(0xfe, ODIE_ADDR_IO(s->io_base));
728 if ((inb(ODIE_ADDR_IO(s->io_base)) & 0x9f) != 0x0e)
729 goto _done;
Krzysztof Heltec1e7942007-09-17 17:57:37 +0200730
731 outb(0xfe, ODIE_ADDR_IO(s->io_base));
732 d = inb(ODIE_DATA_IO(s->io_base));
733 if (s->type != SSCAPE_VIVO && (d & 0x9f) != 0x0e)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 goto _done;
735
Krzysztof Heltf0968e32009-09-27 23:08:40 +0200736 if (s->ic_type == IC_OPUS)
737 activate_ad1845_unsafe(s->io_base);
Krzysztof Heltec1e7942007-09-17 17:57:37 +0200738
739 if (s->type == SSCAPE_VIVO)
Krzysztof Helt453e37b2009-02-04 17:41:32 +0100740 wss_io += 4;
Krzysztof Heltf0968e32009-09-27 23:08:40 +0200741
742 d = sscape_read_unsafe(s->io_base, GA_HMCTL_REG) & 0x3f;
743 sscape_write_unsafe(s->io_base, GA_HMCTL_REG, d | 0xc0);
744
745 /* wait for WSS codec */
746 for (d = 0; d < 500; d++) {
747 if ((inb(wss_io) & 0x80) == 0)
748 break;
749 spin_unlock_irqrestore(&s->lock, flags);
750 msleep(1);
751 spin_lock_irqsave(&s->lock, flags);
752 }
753 snd_printd(KERN_INFO "init delay = %d ms\n", d);
754
755 if ((inb(wss_io) & 0x80) != 0)
756 goto _done;
757
758 if (inb(wss_io + 2) == 0xff)
759 goto _done;
760
761 d = sscape_read_unsafe(s->io_base, GA_HMCTL_REG) & 0x3f;
762 sscape_write_unsafe(s->io_base, GA_HMCTL_REG, d);
763
764 if ((inb(wss_io) & 0x80) != 0)
765 s->type = MEDIA_FX;
766
767 d = sscape_read_unsafe(s->io_base, GA_HMCTL_REG) & 0x3f;
768 sscape_write_unsafe(s->io_base, GA_HMCTL_REG, d | 0xc0);
Krzysztof Heltec1e7942007-09-17 17:57:37 +0200769 /* wait for WSS codec */
770 for (d = 0; d < 500; d++) {
Krzysztof Helt453e37b2009-02-04 17:41:32 +0100771 if ((inb(wss_io) & 0x80) == 0)
Krzysztof Heltec1e7942007-09-17 17:57:37 +0200772 break;
773 spin_unlock_irqrestore(&s->lock, flags);
774 msleep(1);
775 spin_lock_irqsave(&s->lock, flags);
776 }
777 snd_printd(KERN_INFO "init delay = %d ms\n", d);
778
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 /*
780 * SoundScape successfully detected!
781 */
782 retval = 1;
783
784 _done:
785 spin_unlock_irqrestore(&s->lock, flags);
786 return retval;
787}
788
789/*
790 * ALSA callback function, called when attempting to open the MIDI device.
791 * Check that the MIDI firmware has been loaded, because we don't want
792 * to crash the machine. Also check that someone isn't using the hardware
793 * IOCTL device.
794 */
Takashi Iwaibe624532005-11-17 14:42:05 +0100795static int mpu401_open(struct snd_mpu401 * mpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796{
797 int err;
798
799 if (!verify_mpu401(mpu)) {
800 snd_printk(KERN_ERR "sscape: MIDI disabled, please load firmware\n");
801 err = -ENODEV;
802 } else {
803 register struct soundscape *sscape = get_mpu401_soundscape(mpu);
804 unsigned long flags;
805
806 spin_lock_irqsave(&sscape->fwlock, flags);
807
Krzysztof Heltacd471002009-10-01 00:10:34 +0200808 if (sscape->midi_usage == ULONG_MAX) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 err = -EBUSY;
810 } else {
811 ++(sscape->midi_usage);
812 err = 0;
813 }
814
815 spin_unlock_irqrestore(&sscape->fwlock, flags);
816 }
817
818 return err;
819}
820
Takashi Iwaibe624532005-11-17 14:42:05 +0100821static void mpu401_close(struct snd_mpu401 * mpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822{
823 register struct soundscape *sscape = get_mpu401_soundscape(mpu);
824 unsigned long flags;
825
826 spin_lock_irqsave(&sscape->fwlock, flags);
827 --(sscape->midi_usage);
828 spin_unlock_irqrestore(&sscape->fwlock, flags);
829}
830
831/*
832 * Initialse an MPU-401 subdevice for MIDI support on the SoundScape.
833 */
Takashi Iwaibe624532005-11-17 14:42:05 +0100834static int __devinit create_mpu401(struct snd_card *card, int devnum, unsigned long port, int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835{
836 struct soundscape *sscape = get_card_soundscape(card);
Takashi Iwaibe624532005-11-17 14:42:05 +0100837 struct snd_rawmidi *rawmidi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 int err;
839
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 if ((err = snd_mpu401_uart_new(card, devnum,
841 MPU401_HW_MPU401,
Takashi Iwai302e4c22006-05-23 13:24:30 +0200842 port, MPU401_INFO_INTEGRATED,
Thomas Gleixner65ca68b2006-07-01 19:29:46 -0700843 irq, IRQF_DISABLED,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 &rawmidi)) == 0) {
Takashi Iwaibe624532005-11-17 14:42:05 +0100845 struct snd_mpu401 *mpu = (struct snd_mpu401 *) rawmidi->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 mpu->open_input = mpu401_open;
847 mpu->open_output = mpu401_open;
848 mpu->close_input = mpu401_close;
849 mpu->close_output = mpu401_close;
850 mpu->private_data = sscape;
851 sscape->mpu = mpu;
852
853 initialise_mpu401(mpu);
854 }
855
856 return err;
857}
858
859
860/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 * Create an AD1845 PCM subdevice on the SoundScape. The AD1845
862 * is very much like a CS4231, with a few extra bits. We will
863 * try to support at least some of the extra bits by overriding
864 * some of the CS4231 callback.
865 */
Krzysztof Helt4996bca2007-09-17 16:23:13 +0200866static int __devinit create_ad1845(struct snd_card *card, unsigned port,
867 int irq, int dma1, int dma2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868{
869 register struct soundscape *sscape = get_card_soundscape(card);
Krzysztof Helt7779f752008-07-31 21:03:41 +0200870 struct snd_wss *chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 int err;
872
Krzysztof Heltec1e7942007-09-17 17:57:37 +0200873 if (sscape->type == SSCAPE_VIVO)
874 port += 4;
875
Krzysztof Helt7779f752008-07-31 21:03:41 +0200876 err = snd_wss_create(card, port, -1, irq, dma1, dma2,
877 WSS_HW_DETECT, WSS_HWSHARE_DMA1, &chip);
Krzysztof Helt4996bca2007-09-17 16:23:13 +0200878 if (!err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 unsigned long flags;
Takashi Iwaibe624532005-11-17 14:42:05 +0100880 struct snd_pcm *pcm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882/*
883 * It turns out that the PLAYBACK_ENABLE bit is set
884 * by the lowlevel driver ...
885 *
886#define AD1845_IFACE_CONFIG \
887 (CS4231_AUTOCALIB | CS4231_RECORD_ENABLE | CS4231_PLAYBACK_ENABLE)
Krzysztof Helt7779f752008-07-31 21:03:41 +0200888 snd_wss_mce_up(chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 spin_lock_irqsave(&chip->reg_lock, flags);
Krzysztof Helt7779f752008-07-31 21:03:41 +0200890 snd_wss_out(chip, CS4231_IFACE_CTRL, AD1845_IFACE_CONFIG);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 spin_unlock_irqrestore(&chip->reg_lock, flags);
Krzysztof Helt7779f752008-07-31 21:03:41 +0200892 snd_wss_mce_down(chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 */
894
Krzysztof Heltec1e7942007-09-17 17:57:37 +0200895 if (sscape->type != SSCAPE_VIVO) {
Krzysztof Heltec1e7942007-09-17 17:57:37 +0200896 /*
897 * The input clock frequency on the SoundScape must
898 * be 14.31818 MHz, because we must set this register
899 * to get the playback to sound correct ...
900 */
Krzysztof Helt7779f752008-07-31 21:03:41 +0200901 snd_wss_mce_up(chip);
Krzysztof Heltec1e7942007-09-17 17:57:37 +0200902 spin_lock_irqsave(&chip->reg_lock, flags);
Krzysztof Helt199f7972009-01-09 23:10:52 +0100903 snd_wss_out(chip, AD1845_CLOCK, 0x20);
Krzysztof Heltec1e7942007-09-17 17:57:37 +0200904 spin_unlock_irqrestore(&chip->reg_lock, flags);
Krzysztof Helt7779f752008-07-31 21:03:41 +0200905 snd_wss_mce_down(chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906
Krzysztof Heltec1e7942007-09-17 17:57:37 +0200907 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908
Krzysztof Helt7779f752008-07-31 21:03:41 +0200909 err = snd_wss_pcm(chip, 0, &pcm);
Krzysztof Heltec1e7942007-09-17 17:57:37 +0200910 if (err < 0) {
911 snd_printk(KERN_ERR "sscape: No PCM device "
912 "for AD1845 chip\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 goto _error;
914 }
915
Krzysztof Helt7779f752008-07-31 21:03:41 +0200916 err = snd_wss_mixer(chip);
Krzysztof Heltec1e7942007-09-17 17:57:37 +0200917 if (err < 0) {
918 snd_printk(KERN_ERR "sscape: No mixer device "
919 "for AD1845 chip\n");
920 goto _error;
921 }
Krzysztof Helt199f7972009-01-09 23:10:52 +0100922 if (chip->hardware != WSS_HW_AD1848) {
923 err = snd_wss_timer(chip, 0, NULL);
924 if (err < 0) {
925 snd_printk(KERN_ERR "sscape: No timer device "
926 "for AD1845 chip\n");
927 goto _error;
928 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 }
930
Krzysztof Heltec1e7942007-09-17 17:57:37 +0200931 if (sscape->type != SSCAPE_VIVO) {
932 err = snd_ctl_add(card,
933 snd_ctl_new1(&midi_mixer_ctl, chip));
934 if (err < 0) {
935 snd_printk(KERN_ERR "sscape: Could not create "
936 "MIDI mixer control\n");
937 goto _error;
938 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 }
940
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 sscape->chip = chip;
942 }
943
944 _error:
945 return err;
946}
947
948
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949/*
950 * Create an ALSA soundcard entry for the SoundScape, using
951 * the given list of port, IRQ and DMA resources.
952 */
Krzysztof Helt4996bca2007-09-17 16:23:13 +0200953static int __devinit create_sscape(int dev, struct snd_card *card)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954{
Krzysztof Heltec1e7942007-09-17 17:57:37 +0200955 struct soundscape *sscape = get_card_soundscape(card);
956 unsigned dma_cfg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 unsigned irq_cfg;
958 unsigned mpu_irq_cfg;
959 struct resource *io_res;
Krzysztof Heltec1e7942007-09-17 17:57:37 +0200960 struct resource *wss_res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 unsigned long flags;
962 int err;
Krzysztof Heltf0968e32009-09-27 23:08:40 +0200963 const char *name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964
965 /*
966 * Grab IO ports that we will need to probe so that we
967 * can detect and control this hardware ...
968 */
Krzysztof Helt453e37b2009-02-04 17:41:32 +0100969 io_res = request_region(port[dev], 8, "SoundScape");
Krzysztof Heltec1e7942007-09-17 17:57:37 +0200970 if (!io_res) {
Krzysztof Helt453e37b2009-02-04 17:41:32 +0100971 snd_printk(KERN_ERR
972 "sscape: can't grab port 0x%lx\n", port[dev]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 return -EBUSY;
974 }
Krzysztof Heltec1e7942007-09-17 17:57:37 +0200975 wss_res = NULL;
976 if (sscape->type == SSCAPE_VIVO) {
977 wss_res = request_region(wss_port[dev], 4, "SoundScape");
978 if (!wss_res) {
979 snd_printk(KERN_ERR "sscape: can't grab port 0x%lx\n",
980 wss_port[dev]);
981 err = -EBUSY;
982 goto _release_region;
983 }
984 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985
986 /*
Krzysztof Heltec1e7942007-09-17 17:57:37 +0200987 * Grab one DMA channel ...
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 */
Krzysztof Helt4996bca2007-09-17 16:23:13 +0200989 err = request_dma(dma[dev], "SoundScape");
990 if (err < 0) {
Takashi Iwai277e9262005-11-17 17:13:12 +0100991 snd_printk(KERN_ERR "sscape: can't grab DMA %d\n", dma[dev]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 goto _release_region;
993 }
994
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 spin_lock_init(&sscape->lock);
996 spin_lock_init(&sscape->fwlock);
997 sscape->io_res = io_res;
Krzysztof Heltec1e7942007-09-17 17:57:37 +0200998 sscape->wss_res = wss_res;
Krzysztof Helt453e37b2009-02-04 17:41:32 +0100999 sscape->io_base = port[dev];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000
Krzysztof Helt453e37b2009-02-04 17:41:32 +01001001 if (!detect_sscape(sscape, wss_port[dev])) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 printk(KERN_ERR "sscape: hardware not detected at 0x%x\n", sscape->io_base);
1003 err = -ENODEV;
Krzysztof Helt4996bca2007-09-17 16:23:13 +02001004 goto _release_dma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 }
1006
Krzysztof Heltf0968e32009-09-27 23:08:40 +02001007 switch (sscape->type) {
1008 case MEDIA_FX:
1009 name = "MediaFX/SoundFX";
1010 break;
1011 case SSCAPE:
1012 name = "Soundscape";
1013 break;
1014 case SSCAPE_PNP:
1015 name = "Soundscape PnP";
1016 break;
1017 case SSCAPE_VIVO:
1018 name = "Soundscape VIVO";
1019 break;
1020 default:
1021 name = "unknown Soundscape";
1022 break;
1023 }
1024
1025 printk(KERN_INFO "sscape: %s card detected at 0x%x, using IRQ %d, DMA %d\n",
1026 name, sscape->io_base, irq[dev], dma[dev]);
1027
1028 /*
1029 * Check that the user didn't pass us garbage data ...
1030 */
1031 irq_cfg = get_irq_config(sscape->type, irq[dev]);
1032 if (irq_cfg == INVALID_IRQ) {
1033 snd_printk(KERN_ERR "sscape: Invalid IRQ %d\n", irq[dev]);
1034 return -ENXIO;
1035 }
1036
1037 mpu_irq_cfg = get_irq_config(sscape->type, mpu_irq[dev]);
1038 if (mpu_irq_cfg == INVALID_IRQ) {
1039 printk(KERN_ERR "sscape: Invalid IRQ %d\n", mpu_irq[dev]);
1040 return -ENXIO;
1041 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 /*
1044 * Tell the on-board devices where their resources are (I think -
1045 * I can't be sure without a datasheet ... So many magic values!)
1046 */
1047 spin_lock_irqsave(&sscape->lock, flags);
1048
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 sscape_write_unsafe(sscape->io_base, GA_INTENA_REG, 0x00); /* disable */
1050 sscape_write_unsafe(sscape->io_base, GA_SMCFGA_REG, 0x2e);
1051 sscape_write_unsafe(sscape->io_base, GA_SMCFGB_REG, 0x00);
1052
1053 /*
1054 * Enable and configure the DMA channels ...
1055 */
1056 sscape_write_unsafe(sscape->io_base, GA_DMACFG_REG, 0x50);
Krzysztof Heltf0968e32009-09-27 23:08:40 +02001057 dma_cfg = (sscape->ic_type == IC_OPUS ? 0x40 : 0x70);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 sscape_write_unsafe(sscape->io_base, GA_DMAA_REG, dma_cfg);
1059 sscape_write_unsafe(sscape->io_base, GA_DMAB_REG, 0x20);
1060
Krzysztof Heltf0968e32009-09-27 23:08:40 +02001061 mpu_irq_cfg |= mpu_irq_cfg << 2;
1062 sscape_write_unsafe(sscape->io_base, GA_INTCFG_REG, 0xf0 | mpu_irq_cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 sscape_write_unsafe(sscape->io_base,
Krzysztof Helt4996bca2007-09-17 16:23:13 +02001064 GA_CDCFG_REG, 0x09 | DMA_8BIT
1065 | (dma[dev] << 4) | (irq_cfg << 1));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066
1067 spin_unlock_irqrestore(&sscape->lock, flags);
1068
1069 /*
1070 * We have now enabled the codec chip, and so we should
1071 * detect the AD1845 device ...
1072 */
Krzysztof Helt4996bca2007-09-17 16:23:13 +02001073 err = create_ad1845(card, wss_port[dev], irq[dev],
1074 dma[dev], dma2[dev]);
1075 if (err < 0) {
1076 printk(KERN_ERR "sscape: No AD1845 device at 0x%lx, IRQ %d\n",
1077 wss_port[dev], irq[dev]);
1078 goto _release_dma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 }
Krzysztof Heltacd471002009-10-01 00:10:34 +02001080 strcpy(card->driver, "SoundScape");
1081 strcpy(card->shortname, name);
1082 snprintf(card->longname, sizeof(card->longname),
1083 "%s at 0x%lx, IRQ %d, DMA1 %d, DMA2 %d\n",
1084 name, sscape->chip->port, sscape->chip->irq,
1085 sscape->chip->dma1, sscape->chip->dma2);
1086
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087#define MIDI_DEVNUM 0
Krzysztof Heltec1e7942007-09-17 17:57:37 +02001088 if (sscape->type != SSCAPE_VIVO) {
Krzysztof Heltacd471002009-10-01 00:10:34 +02001089 err = sscape_upload_bootblock(card);
1090 if (err >= 0)
1091 err = sscape_upload_microcode(card, err);
1092
1093 if (err == 0) {
1094 err = create_mpu401(card, MIDI_DEVNUM, port[dev],
1095 mpu_irq[dev]);
1096 if (err < 0) {
1097 printk(KERN_ERR "sscape: Failed to create "
1098 "MPU-401 device at 0x%lx\n",
1099 port[dev]);
1100 goto _release_dma;
1101 }
1102
1103 /*
1104 * Enable the master IRQ ...
1105 */
1106 sscape_write(sscape, GA_INTENA_REG, 0x80);
1107
1108 /*
1109 * Initialize mixer
1110 */
1111 spin_lock_irqsave(&sscape->lock, flags);
1112 sscape->midi_vol = 0;
1113 host_write_ctrl_unsafe(sscape->io_base,
1114 CMD_SET_MIDI_VOL, 100);
1115 host_write_ctrl_unsafe(sscape->io_base,
1116 sscape->midi_vol, 100);
1117 host_write_ctrl_unsafe(sscape->io_base,
1118 CMD_XXX_MIDI_VOL, 100);
1119 host_write_ctrl_unsafe(sscape->io_base,
1120 sscape->midi_vol, 100);
1121 host_write_ctrl_unsafe(sscape->io_base,
1122 CMD_SET_EXTMIDI, 100);
1123 host_write_ctrl_unsafe(sscape->io_base,
1124 0, 100);
1125 host_write_ctrl_unsafe(sscape->io_base, CMD_ACK, 100);
1126
1127 set_midi_mode_unsafe(sscape->io_base);
1128 spin_unlock_irqrestore(&sscape->lock, flags);
Krzysztof Heltec1e7942007-09-17 17:57:37 +02001129 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 }
1131
1132 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 * Now that we have successfully created this sound card,
1134 * it is safe to store the pointer.
1135 * NOTE: we only register the sound card's "destructor"
1136 * function now that our "constructor" has completed.
1137 */
1138 card->private_free = soundscape_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139
1140 return 0;
1141
Krzysztof Helt4996bca2007-09-17 16:23:13 +02001142_release_dma:
Takashi Iwai277e9262005-11-17 17:13:12 +01001143 free_dma(dma[dev]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144
Krzysztof Helt4996bca2007-09-17 16:23:13 +02001145_release_region:
Krzysztof Heltec1e7942007-09-17 17:57:37 +02001146 release_and_free_resource(wss_res);
Takashi Iwaib1d57762005-10-10 11:56:31 +02001147 release_and_free_resource(io_res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148
1149 return err;
1150}
1151
1152
Takashi Iwai5e24c1c2007-02-22 12:50:54 +01001153static int __devinit snd_sscape_match(struct device *pdev, unsigned int i)
Takashi Iwai277e9262005-11-17 17:13:12 +01001154{
Takashi Iwai5e24c1c2007-02-22 12:50:54 +01001155 /*
1156 * Make sure we were given ALL of the other parameters.
1157 */
1158 if (port[i] == SNDRV_AUTO_PORT)
1159 return 0;
1160
1161 if (irq[i] == SNDRV_AUTO_IRQ ||
1162 mpu_irq[i] == SNDRV_AUTO_IRQ ||
1163 dma[i] == SNDRV_AUTO_DMA) {
1164 printk(KERN_INFO
1165 "sscape: insufficient parameters, need IO, IRQ, MPU-IRQ and DMA\n");
1166 return 0;
1167 }
1168
1169 return 1;
1170}
1171
1172static int __devinit snd_sscape_probe(struct device *pdev, unsigned int dev)
1173{
Takashi Iwai277e9262005-11-17 17:13:12 +01001174 struct snd_card *card;
Krzysztof Helt4996bca2007-09-17 16:23:13 +02001175 struct soundscape *sscape;
Takashi Iwai277e9262005-11-17 17:13:12 +01001176 int ret;
1177
Takashi Iwaic95eadd2008-12-28 16:43:35 +01001178 ret = snd_card_create(index[dev], id[dev], THIS_MODULE,
1179 sizeof(struct soundscape), &card);
1180 if (ret < 0)
1181 return ret;
Krzysztof Helt4996bca2007-09-17 16:23:13 +02001182
1183 sscape = get_card_soundscape(card);
1184 sscape->type = SSCAPE;
1185
Takashi Iwai277e9262005-11-17 17:13:12 +01001186 dma[dev] &= 0x03;
Krzysztof Heltacd471002009-10-01 00:10:34 +02001187 snd_card_set_dev(card, pdev);
1188
Krzysztof Helt4996bca2007-09-17 16:23:13 +02001189 ret = create_sscape(dev, card);
Takashi Iwai277e9262005-11-17 17:13:12 +01001190 if (ret < 0)
Krzysztof Helt4996bca2007-09-17 16:23:13 +02001191 goto _release_card;
1192
Takashi Iwai277e9262005-11-17 17:13:12 +01001193 if ((ret = snd_card_register(card)) < 0) {
1194 printk(KERN_ERR "sscape: Failed to register sound card\n");
Krzysztof Helt4996bca2007-09-17 16:23:13 +02001195 goto _release_card;
Takashi Iwai277e9262005-11-17 17:13:12 +01001196 }
Takashi Iwai5e24c1c2007-02-22 12:50:54 +01001197 dev_set_drvdata(pdev, card);
Takashi Iwai277e9262005-11-17 17:13:12 +01001198 return 0;
Krzysztof Helt4996bca2007-09-17 16:23:13 +02001199
1200_release_card:
1201 snd_card_free(card);
1202 return ret;
Takashi Iwai277e9262005-11-17 17:13:12 +01001203}
1204
Takashi Iwai5e24c1c2007-02-22 12:50:54 +01001205static int __devexit snd_sscape_remove(struct device *devptr, unsigned int dev)
Takashi Iwai277e9262005-11-17 17:13:12 +01001206{
Takashi Iwai5e24c1c2007-02-22 12:50:54 +01001207 snd_card_free(dev_get_drvdata(devptr));
1208 dev_set_drvdata(devptr, NULL);
Takashi Iwai277e9262005-11-17 17:13:12 +01001209 return 0;
1210}
1211
Rene Herman83c51c02007-03-20 11:33:46 +01001212#define DEV_NAME "sscape"
Takashi Iwai277e9262005-11-17 17:13:12 +01001213
Takashi Iwai5e24c1c2007-02-22 12:50:54 +01001214static struct isa_driver snd_sscape_driver = {
1215 .match = snd_sscape_match,
Takashi Iwai277e9262005-11-17 17:13:12 +01001216 .probe = snd_sscape_probe,
1217 .remove = __devexit_p(snd_sscape_remove),
1218 /* FIXME: suspend/resume */
1219 .driver = {
Rene Herman83c51c02007-03-20 11:33:46 +01001220 .name = DEV_NAME
Takashi Iwai277e9262005-11-17 17:13:12 +01001221 },
1222};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223
1224#ifdef CONFIG_PNP
1225static inline int __devinit get_next_autoindex(int i)
1226{
Takashi Iwai277e9262005-11-17 17:13:12 +01001227 while (i < SNDRV_CARDS && port[i] != SNDRV_AUTO_PORT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 ++i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 return i;
1230}
1231
1232
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233static int __devinit sscape_pnp_detect(struct pnp_card_link *pcard,
1234 const struct pnp_card_device_id *pid)
1235{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 static int idx = 0;
Takashi Iwai277e9262005-11-17 17:13:12 +01001237 struct pnp_dev *dev;
1238 struct snd_card *card;
Krzysztof Helt4996bca2007-09-17 16:23:13 +02001239 struct soundscape *sscape;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 int ret;
1241
1242 /*
1243 * Allow this function to fail *quietly* if all the ISA PnP
1244 * devices were configured using module parameters instead.
1245 */
Takashi Iwai277e9262005-11-17 17:13:12 +01001246 if ((idx = get_next_autoindex(idx)) >= SNDRV_CARDS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 return -ENOSPC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248
1249 /*
1250 * We have found a candidate ISA PnP card. Now we
1251 * have to check that it has the devices that we
1252 * expect it to have.
1253 *
1254 * We will NOT try and autoconfigure all of the resources
1255 * needed and then activate the card as we are assuming that
1256 * has already been done at boot-time using /proc/isapnp.
1257 * We shall simply try to give each active card the resources
1258 * that it wants. This is a sensible strategy for a modular
1259 * system where unused modules are unloaded regularly.
1260 *
1261 * This strategy is utterly useless if we compile the driver
1262 * into the kernel, of course.
1263 */
1264 // printk(KERN_INFO "sscape: %s\n", card->name);
1265
1266 /*
1267 * Check that we still have room for another sound card ...
1268 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 dev = pnp_request_card_device(pcard, pid->devs[0].id, NULL);
Takashi Iwai277e9262005-11-17 17:13:12 +01001270 if (! dev)
1271 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272
Takashi Iwai277e9262005-11-17 17:13:12 +01001273 if (!pnp_is_active(dev)) {
1274 if (pnp_activate_dev(dev) < 0) {
1275 printk(KERN_INFO "sscape: device is inactive\n");
1276 return -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277 }
1278 }
1279
Takashi Iwai277e9262005-11-17 17:13:12 +01001280 /*
Krzysztof Helt4996bca2007-09-17 16:23:13 +02001281 * Create a new ALSA sound card entry, in anticipation
1282 * of detecting our hardware ...
1283 */
Takashi Iwaic95eadd2008-12-28 16:43:35 +01001284 ret = snd_card_create(index[idx], id[idx], THIS_MODULE,
1285 sizeof(struct soundscape), &card);
1286 if (ret < 0)
1287 return ret;
Krzysztof Helt4996bca2007-09-17 16:23:13 +02001288
1289 sscape = get_card_soundscape(card);
1290
1291 /*
1292 * Identify card model ...
1293 */
1294 if (!strncmp("ENS4081", pid->id, 7))
1295 sscape->type = SSCAPE_VIVO;
1296 else
1297 sscape->type = SSCAPE_PNP;
1298
Krzysztof Helt4996bca2007-09-17 16:23:13 +02001299 /*
Takashi Iwai277e9262005-11-17 17:13:12 +01001300 * Read the correct parameters off the ISA PnP bus ...
1301 */
1302 port[idx] = pnp_port_start(dev, 0);
1303 irq[idx] = pnp_irq(dev, 0);
1304 mpu_irq[idx] = pnp_irq(dev, 1);
1305 dma[idx] = pnp_dma(dev, 0) & 0x03;
Krzysztof Heltec1e7942007-09-17 17:57:37 +02001306 if (sscape->type == SSCAPE_PNP) {
1307 dma2[idx] = dma[idx];
1308 wss_port[idx] = CODEC_IO(port[idx]);
1309 } else {
1310 wss_port[idx] = pnp_port_start(dev, 1);
1311 dma2[idx] = pnp_dma(dev, 1);
1312 }
Krzysztof Heltacd471002009-10-01 00:10:34 +02001313 snd_card_set_dev(card, &pcard->card->dev);
Takashi Iwai277e9262005-11-17 17:13:12 +01001314
Krzysztof Helt4996bca2007-09-17 16:23:13 +02001315 ret = create_sscape(idx, card);
Takashi Iwai277e9262005-11-17 17:13:12 +01001316 if (ret < 0)
Krzysztof Helt4996bca2007-09-17 16:23:13 +02001317 goto _release_card;
1318
Takashi Iwai277e9262005-11-17 17:13:12 +01001319 if ((ret = snd_card_register(card)) < 0) {
1320 printk(KERN_ERR "sscape: Failed to register sound card\n");
Krzysztof Helt4996bca2007-09-17 16:23:13 +02001321 goto _release_card;
Takashi Iwai277e9262005-11-17 17:13:12 +01001322 }
1323
1324 pnp_set_card_drvdata(pcard, card);
1325 ++idx;
Krzysztof Helt4996bca2007-09-17 16:23:13 +02001326 return 0;
Takashi Iwai277e9262005-11-17 17:13:12 +01001327
Krzysztof Helt4996bca2007-09-17 16:23:13 +02001328_release_card:
1329 snd_card_free(card);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330 return ret;
1331}
1332
1333static void __devexit sscape_pnp_remove(struct pnp_card_link * pcard)
1334{
Takashi Iwai277e9262005-11-17 17:13:12 +01001335 snd_card_free(pnp_get_card_drvdata(pcard));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336 pnp_set_card_drvdata(pcard, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337}
1338
1339static struct pnp_card_driver sscape_pnpc_driver = {
1340 .flags = PNP_DRIVER_RES_DO_NOT_CHANGE,
1341 .name = "sscape",
1342 .id_table = sscape_pnpids,
1343 .probe = sscape_pnp_detect,
1344 .remove = __devexit_p(sscape_pnp_remove),
1345};
1346
1347#endif /* CONFIG_PNP */
1348
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349static int __init sscape_init(void)
1350{
Rene Herman609d7692007-05-15 11:42:56 +02001351 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352
Rene Herman609d7692007-05-15 11:42:56 +02001353 err = isa_register_driver(&snd_sscape_driver, SNDRV_CARDS);
Takashi Iwai59b1b342006-01-04 15:06:44 +01001354#ifdef CONFIG_PNP
Rene Herman609d7692007-05-15 11:42:56 +02001355 if (!err)
1356 isa_registered = 1;
1357
1358 err = pnp_register_card_driver(&sscape_pnpc_driver);
1359 if (!err)
Clemens Ladischf7a92752005-12-07 09:13:42 +01001360 pnp_registered = 1;
Rene Herman609d7692007-05-15 11:42:56 +02001361
1362 if (isa_registered)
1363 err = 0;
Takashi Iwai59b1b342006-01-04 15:06:44 +01001364#endif
Rene Herman609d7692007-05-15 11:42:56 +02001365 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366}
1367
Takashi Iwai5e24c1c2007-02-22 12:50:54 +01001368static void __exit sscape_exit(void)
1369{
1370#ifdef CONFIG_PNP
1371 if (pnp_registered)
1372 pnp_unregister_card_driver(&sscape_pnpc_driver);
Rene Herman609d7692007-05-15 11:42:56 +02001373 if (isa_registered)
Takashi Iwai5e24c1c2007-02-22 12:50:54 +01001374#endif
Rene Herman609d7692007-05-15 11:42:56 +02001375 isa_unregister_driver(&snd_sscape_driver);
Takashi Iwai5e24c1c2007-02-22 12:50:54 +01001376}
1377
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378module_init(sscape_init);
1379module_exit(sscape_exit);