sscape.c 32.7 KB
Newer Older
L
Linus Torvalds 已提交
1
/*
2
 *   Low-level ALSA driver for the ENSONIQ SoundScape
L
Linus Torvalds 已提交
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
 *   Copyright (c) by Chris Rankin
 *
 *   This driver was written in part using information obtained from
 *   the OSS/Free SoundScape driver, written by Hannu Savolainen.
 *
 *
 *   This program is free software; you can redistribute it and/or modify
 *   it under the terms of the GNU General Public License as published by
 *   the Free Software Foundation; either version 2 of the License, or
 *   (at your option) any later version.
 *
 *   This program is distributed in the hope that it will be useful,
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *   GNU General Public License for more details.
 *
 *   You should have received a copy of the GNU General Public License
 *   along with this program; if not, write to the Free Software
 *   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
 */

#include <linux/init.h>
25
#include <linux/err.h>
26
#include <linux/io.h>
27
#include <linux/isa.h>
L
Linus Torvalds 已提交
28
#include <linux/delay.h>
29
#include <linux/firmware.h>
L
Linus Torvalds 已提交
30 31
#include <linux/pnp.h>
#include <linux/spinlock.h>
32
#include <linux/module.h>
L
Linus Torvalds 已提交
33 34
#include <asm/dma.h>
#include <sound/core.h>
35
#include <sound/wss.h>
L
Linus Torvalds 已提交
36 37 38 39 40
#include <sound/mpu401.h>
#include <sound/initval.h>


MODULE_AUTHOR("Chris Rankin");
41
MODULE_DESCRIPTION("ENSONIQ SoundScape driver");
L
Linus Torvalds 已提交
42
MODULE_LICENSE("GPL");
43 44 45 46 47 48
MODULE_FIRMWARE("sndscape.co0");
MODULE_FIRMWARE("sndscape.co1");
MODULE_FIRMWARE("sndscape.co2");
MODULE_FIRMWARE("sndscape.co3");
MODULE_FIRMWARE("sndscape.co4");
MODULE_FIRMWARE("scope.cod");
L
Linus Torvalds 已提交
49

50 51 52 53 54 55 56 57 58
static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX;
static char* id[SNDRV_CARDS] = SNDRV_DEFAULT_STR;
static long port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT;
static long wss_port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT;
static int irq[SNDRV_CARDS] = SNDRV_DEFAULT_IRQ;
static int mpu_irq[SNDRV_CARDS] = SNDRV_DEFAULT_IRQ;
static int dma[SNDRV_CARDS] = SNDRV_DEFAULT_DMA;
static int dma2[SNDRV_CARDS] = SNDRV_DEFAULT_DMA;
static bool joystick[SNDRV_CARDS];
L
Linus Torvalds 已提交
59 60 61 62 63 64 65

module_param_array(index, int, NULL, 0444);
MODULE_PARM_DESC(index, "Index number for SoundScape soundcard");

module_param_array(id, charp, NULL, 0444);
MODULE_PARM_DESC(id, "Description for SoundScape card");

66
module_param_hw_array(port, long, ioport, NULL, 0444);
L
Linus Torvalds 已提交
67 68
MODULE_PARM_DESC(port, "Port # for SoundScape driver.");

69
module_param_hw_array(wss_port, long, ioport, NULL, 0444);
70 71
MODULE_PARM_DESC(wss_port, "WSS Port # for SoundScape driver.");

72
module_param_hw_array(irq, int, irq, NULL, 0444);
L
Linus Torvalds 已提交
73 74
MODULE_PARM_DESC(irq, "IRQ # for SoundScape driver.");

75
module_param_hw_array(mpu_irq, int, irq, NULL, 0444);
L
Linus Torvalds 已提交
76 77
MODULE_PARM_DESC(mpu_irq, "MPU401 IRQ # for SoundScape driver.");

78
module_param_hw_array(dma, int, dma, NULL, 0444);
L
Linus Torvalds 已提交
79
MODULE_PARM_DESC(dma, "DMA # for SoundScape driver.");
80

81
module_param_hw_array(dma2, int, dma, NULL, 0444);
82 83
MODULE_PARM_DESC(dma2, "DMA2 # for SoundScape driver.");

84 85 86
module_param_array(joystick, bool, NULL, 0444);
MODULE_PARM_DESC(joystick, "Enable gameport.");

L
Linus Torvalds 已提交
87
#ifdef CONFIG_PNP
88
static int isa_registered;
89
static int pnp_registered;
90

L
Linus Torvalds 已提交
91
static struct pnp_card_device_id sscape_pnpids[] = {
92 93
	{ .id = "ENS3081", .devs = { { "ENS0000" } } }, /* Soundscape PnP */
	{ .id = "ENS4081", .devs = { { "ENS1011" } } },	/* VIVO90 */
L
Linus Torvalds 已提交
94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112
	{ .id = "" }	/* end */
};

MODULE_DEVICE_TABLE(pnp_card, sscape_pnpids);
#endif


#define HOST_CTRL_IO(i)  ((i) + 2)
#define HOST_DATA_IO(i)  ((i) + 3)
#define ODIE_ADDR_IO(i)  ((i) + 4)
#define ODIE_DATA_IO(i)  ((i) + 5)
#define CODEC_IO(i)      ((i) + 8)

#define IC_ODIE  1
#define IC_OPUS  2

#define RX_READY 0x01
#define TX_READY 0x02

K
Krzysztof Helt 已提交
113 114 115 116 117 118 119 120
#define CMD_ACK			0x80
#define CMD_SET_MIDI_VOL	0x84
#define CMD_GET_MIDI_VOL	0x85
#define CMD_XXX_MIDI_VOL	0x86
#define CMD_SET_EXTMIDI		0x8a
#define CMD_GET_EXTMIDI		0x8b
#define CMD_SET_MT32		0x8c
#define CMD_GET_MT32		0x8d
L
Linus Torvalds 已提交
121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137

enum GA_REG {
	GA_INTSTAT_REG = 0,
	GA_INTENA_REG,
	GA_DMAA_REG,
	GA_DMAB_REG,
	GA_INTCFG_REG,
	GA_DMACFG_REG,
	GA_CDCFG_REG,
	GA_SMCFGA_REG,
	GA_SMCFGB_REG,
	GA_HMCTL_REG
};

#define DMA_8BIT  0x80


138
enum card_type {
139 140
	MEDIA_FX,	/* Sequoia S-1000 */
	SSCAPE,		/* Sequoia S-2000 */
141 142 143 144
	SSCAPE_PNP,
	SSCAPE_VIVO,
};

L
Linus Torvalds 已提交
145 146 147 148
struct soundscape {
	spinlock_t lock;
	unsigned io_base;
	int ic_type;
149
	enum card_type type;
L
Linus Torvalds 已提交
150
	struct resource *io_res;
151
	struct resource *wss_res;
152
	struct snd_wss *chip;
L
Linus Torvalds 已提交
153 154 155 156 157 158 159

	unsigned char midi_vol;
};

#define INVALID_IRQ  ((unsigned)-1)


160
static inline struct soundscape *get_card_soundscape(struct snd_card *c)
L
Linus Torvalds 已提交
161 162 163 164 165 166 167 168 169
{
	return (struct soundscape *) (c->private_data);
}

/*
 * Allocates some kernel memory that we can use for DMA.
 * I think this means that the memory has to map to
 * contiguous pages of physical memory.
 */
K
Krzysztof Helt 已提交
170 171
static struct snd_dma_buffer *get_dmabuf(struct snd_dma_buffer *buf,
					 unsigned long size)
L
Linus Torvalds 已提交
172 173
{
	if (buf) {
K
Krzysztof Helt 已提交
174 175
		if (snd_dma_alloc_pages_fallback(SNDRV_DMA_TYPE_DEV,
						 snd_dma_isa_data(),
L
Linus Torvalds 已提交
176
						 size, buf) < 0) {
177 178 179
			snd_printk(KERN_ERR "sscape: Failed to allocate "
					    "%lu bytes for DMA\n",
					    size);
L
Linus Torvalds 已提交
180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200
			return NULL;
		}
	}

	return buf;
}

/*
 * Release the DMA-able kernel memory ...
 */
static void free_dmabuf(struct snd_dma_buffer *buf)
{
	if (buf && buf->area)
		snd_dma_free_pages(buf);
}

/*
 * This function writes to the SoundScape's control registers,
 * but doesn't do any locking. It's up to the caller to do that.
 * This is why this function is "unsafe" ...
 */
K
Krzysztof Helt 已提交
201 202
static inline void sscape_write_unsafe(unsigned io_base, enum GA_REG reg,
				       unsigned char val)
L
Linus Torvalds 已提交
203 204 205 206 207 208 209 210 211
{
	outb(reg, ODIE_ADDR_IO(io_base));
	outb(val, ODIE_DATA_IO(io_base));
}

/*
 * Write to the SoundScape's control registers, and do the
 * necessary locking ...
 */
K
Krzysztof Helt 已提交
212 213
static void sscape_write(struct soundscape *s, enum GA_REG reg,
			 unsigned char val)
L
Linus Torvalds 已提交
214 215 216 217 218 219 220 221 222 223 224 225
{
	unsigned long flags;

	spin_lock_irqsave(&s->lock, flags);
	sscape_write_unsafe(s->io_base, reg, val);
	spin_unlock_irqrestore(&s->lock, flags);
}

/*
 * Read from the SoundScape's control registers, but leave any
 * locking to the caller. This is why the function is "unsafe" ...
 */
K
Krzysztof Helt 已提交
226 227
static inline unsigned char sscape_read_unsafe(unsigned io_base,
					       enum GA_REG reg)
L
Linus Torvalds 已提交
228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255
{
	outb(reg, ODIE_ADDR_IO(io_base));
	return inb(ODIE_DATA_IO(io_base));
}

/*
 * Puts the SoundScape into "host" mode, as compared to "MIDI" mode
 */
static inline void set_host_mode_unsafe(unsigned io_base)
{
	outb(0x0, HOST_CTRL_IO(io_base));
}

/*
 * Puts the SoundScape into "MIDI" mode, as compared to "host" mode
 */
static inline void set_midi_mode_unsafe(unsigned io_base)
{
	outb(0x3, HOST_CTRL_IO(io_base));
}

/*
 * Read the SoundScape's host-mode control register, but leave
 * any locking issues to the caller ...
 */
static inline int host_read_unsafe(unsigned io_base)
{
	int data = -1;
K
Krzysztof Helt 已提交
256
	if ((inb(HOST_CTRL_IO(io_base)) & RX_READY) != 0)
L
Linus Torvalds 已提交
257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298
		data = inb(HOST_DATA_IO(io_base));

	return data;
}

/*
 * Read the SoundScape's host-mode control register, performing
 * a limited amount of busy-waiting if the register isn't ready.
 * Also leaves all locking-issues to the caller ...
 */
static int host_read_ctrl_unsafe(unsigned io_base, unsigned timeout)
{
	int data;

	while (((data = host_read_unsafe(io_base)) < 0) && (timeout != 0)) {
		udelay(100);
		--timeout;
	} /* while */

	return data;
}

/*
 * Write to the SoundScape's host-mode control registers, but
 * leave any locking issues to the caller ...
 */
static inline int host_write_unsafe(unsigned io_base, unsigned char data)
{
	if ((inb(HOST_CTRL_IO(io_base)) & TX_READY) != 0) {
		outb(data, HOST_DATA_IO(io_base));
		return 1;
	}

	return 0;
}

/*
 * Write to the SoundScape's host-mode control registers, performing
 * a limited amount of busy-waiting if the register isn't ready.
 * Also leaves all locking-issues to the caller ...
 */
static int host_write_ctrl_unsafe(unsigned io_base, unsigned char data,
K
Krzysztof Helt 已提交
299
				  unsigned timeout)
L
Linus Torvalds 已提交
300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317
{
	int err;

	while (!(err = host_write_unsafe(io_base, data)) && (timeout != 0)) {
		udelay(100);
		--timeout;
	} /* while */

	return err;
}


/*
 * Check that the MIDI subsystem is operational. If it isn't,
 * then we will hang the computer if we try to use it ...
 *
 * NOTE: This check is based upon observation, not documentation.
 */
K
Krzysztof Helt 已提交
318
static inline int verify_mpu401(const struct snd_mpu401 *mpu)
L
Linus Torvalds 已提交
319
{
320
	return ((inb(MPU401C(mpu)) & 0xc0) == 0x80);
L
Linus Torvalds 已提交
321 322 323 324 325
}

/*
 * This is apparently the standard way to initailise an MPU-401
 */
K
Krzysztof Helt 已提交
326
static inline void initialise_mpu401(const struct snd_mpu401 *mpu)
L
Linus Torvalds 已提交
327
{
328
	outb(0, MPU401D(mpu));
L
Linus Torvalds 已提交
329 330 331 332 333 334 335
}

/*
 * Tell the SoundScape to activate the AD1845 chip (I think).
 * The AD1845 detection fails if we *don't* do this, so I
 * think that this is a good idea ...
 */
K
Krzysztof Helt 已提交
336
static void activate_ad1845_unsafe(unsigned io_base)
L
Linus Torvalds 已提交
337
{
K
Krzysztof Helt 已提交
338 339
	unsigned char val = sscape_read_unsafe(io_base, GA_HMCTL_REG);
	sscape_write_unsafe(io_base, GA_HMCTL_REG, (val & 0xcf) | 0x10);
L
Linus Torvalds 已提交
340 341 342 343 344 345
	sscape_write_unsafe(io_base, GA_CDCFG_REG, 0x80);
}

/*
 * Do the necessary ALSA-level cleanup to deallocate our driver ...
 */
346
static void soundscape_free(struct snd_card *c)
L
Linus Torvalds 已提交
347
{
348
	struct soundscape *sscape = get_card_soundscape(c);
349
	release_and_free_resource(sscape->io_res);
350
	release_and_free_resource(sscape->wss_res);
L
Linus Torvalds 已提交
351 352 353 354 355 356 357
	free_dma(sscape->chip->dma1);
}

/*
 * Tell the SoundScape to begin a DMA tranfer using the given channel.
 * All locking issues are left to the caller.
 */
K
Krzysztof Helt 已提交
358
static void sscape_start_dma_unsafe(unsigned io_base, enum GA_REG reg)
L
Linus Torvalds 已提交
359
{
K
Krzysztof Helt 已提交
360 361 362 363
	sscape_write_unsafe(io_base, reg,
			    sscape_read_unsafe(io_base, reg) | 0x01);
	sscape_write_unsafe(io_base, reg,
			    sscape_read_unsafe(io_base, reg) & 0xfe);
L
Linus Torvalds 已提交
364 365 366 367 368 369
}

/*
 * Wait for a DMA transfer to complete. This is a "limited busy-wait",
 * and all locking issues are left to the caller.
 */
K
Krzysztof Helt 已提交
370 371
static int sscape_wait_dma_unsafe(unsigned io_base, enum GA_REG reg,
				  unsigned timeout)
L
Linus Torvalds 已提交
372 373 374 375 376 377
{
	while (!(sscape_read_unsafe(io_base, reg) & 0x01) && (timeout != 0)) {
		udelay(100);
		--timeout;
	} /* while */

K
Krzysztof Helt 已提交
378
	return sscape_read_unsafe(io_base, reg) & 0x01;
L
Linus Torvalds 已提交
379 380 381 382 383 384 385 386 387 388 389
}

/*
 * Wait for the On-Board Processor to return its start-up
 * acknowledgement sequence. This wait is too long for
 * us to perform "busy-waiting", and so we must sleep.
 * This in turn means that we must not be holding any
 * spinlocks when we call this function.
 */
static int obp_startup_ack(struct soundscape *s, unsigned timeout)
{
390 391 392
	unsigned long end_time = jiffies + msecs_to_jiffies(timeout);

	do {
L
Linus Torvalds 已提交
393
		unsigned long flags;
394
		int x;
L
Linus Torvalds 已提交
395 396

		spin_lock_irqsave(&s->lock, flags);
397
		x = host_read_unsafe(s->io_base);
L
Linus Torvalds 已提交
398
		spin_unlock_irqrestore(&s->lock, flags);
399
		if (x == 0xfe || x == 0xff)
L
Linus Torvalds 已提交
400 401
			return 1;

402 403
		msleep(10);
	} while (time_before(jiffies, end_time));
L
Linus Torvalds 已提交
404 405 406 407 408 409 410 411 412 413 414 415 416

	return 0;
}

/*
 * Wait for the host to return its start-up acknowledgement
 * sequence. This wait is too long for us to perform
 * "busy-waiting", and so we must sleep. This in turn means
 * that we must not be holding any spinlocks when we call
 * this function.
 */
static int host_startup_ack(struct soundscape *s, unsigned timeout)
{
417 418 419
	unsigned long end_time = jiffies + msecs_to_jiffies(timeout);

	do {
L
Linus Torvalds 已提交
420
		unsigned long flags;
421
		int x;
L
Linus Torvalds 已提交
422 423

		spin_lock_irqsave(&s->lock, flags);
424
		x = host_read_unsafe(s->io_base);
L
Linus Torvalds 已提交
425 426 427 428
		spin_unlock_irqrestore(&s->lock, flags);
		if (x == 0xfe)
			return 1;

429 430
		msleep(10);
	} while (time_before(jiffies, end_time));
L
Linus Torvalds 已提交
431 432 433 434 435 436 437

	return 0;
}

/*
 * Upload a byte-stream into the SoundScape using DMA channel A.
 */
K
Krzysztof Helt 已提交
438 439
static int upload_dma_data(struct soundscape *s, const unsigned char *data,
			   size_t size)
L
Linus Torvalds 已提交
440 441 442 443
{
	unsigned long flags;
	struct snd_dma_buffer dma;
	int ret;
K
Krzysztof Helt 已提交
444
	unsigned char val;
L
Linus Torvalds 已提交
445

446
	if (!get_dmabuf(&dma, PAGE_ALIGN(32 * 1024)))
L
Linus Torvalds 已提交
447 448 449 450 451 452 453
		return -ENOMEM;

	spin_lock_irqsave(&s->lock, flags);

	/*
	 * Reset the board ...
	 */
K
Krzysztof Helt 已提交
454 455
	val = sscape_read_unsafe(s->io_base, GA_HMCTL_REG);
	sscape_write_unsafe(s->io_base, GA_HMCTL_REG, val & 0x3f);
L
Linus Torvalds 已提交
456 457 458 459

	/*
	 * Enable the DMA channels and configure them ...
	 */
K
Krzysztof Helt 已提交
460 461
	val = (s->chip->dma1 << 4) | DMA_8BIT;
	sscape_write_unsafe(s->io_base, GA_DMAA_REG, val);
L
Linus Torvalds 已提交
462 463 464 465 466
	sscape_write_unsafe(s->io_base, GA_DMAB_REG, 0x20);

	/*
	 * Take the board out of reset ...
	 */
K
Krzysztof Helt 已提交
467 468
	val = sscape_read_unsafe(s->io_base, GA_HMCTL_REG);
	sscape_write_unsafe(s->io_base, GA_HMCTL_REG, val | 0x80);
L
Linus Torvalds 已提交
469 470

	/*
471
	 * Upload the firmware to the SoundScape
L
Linus Torvalds 已提交
472 473 474 475 476 477
	 * board through the DMA channel ...
	 */
	while (size != 0) {
		unsigned long len;

		len = min(size, dma.bytes);
478
		memcpy(dma.area, data, len);
L
Linus Torvalds 已提交
479 480 481 482 483 484 485
		data += len;
		size -= len;

		snd_dma_program(s->chip->dma1, dma.addr, len, DMA_MODE_WRITE);
		sscape_start_dma_unsafe(s->io_base, GA_DMAA_REG);
		if (!sscape_wait_dma_unsafe(s->io_base, GA_DMAA_REG, 5000)) {
			/*
K
Krzysztof Helt 已提交
486
			 * Don't forget to release this spinlock we're holding
L
Linus Torvalds 已提交
487 488 489
			 */
			spin_unlock_irqrestore(&s->lock, flags);

490 491
			snd_printk(KERN_ERR
					"sscape: DMA upload has timed out\n");
L
Linus Torvalds 已提交
492 493 494 495 496 497
			ret = -EAGAIN;
			goto _release_dma;
		}
	} /* while */

	set_host_mode_unsafe(s->io_base);
498
	outb(0x0, s->io_base);
L
Linus Torvalds 已提交
499 500 501 502

	/*
	 * Boot the board ... (I think)
	 */
K
Krzysztof Helt 已提交
503 504
	val = sscape_read_unsafe(s->io_base, GA_HMCTL_REG);
	sscape_write_unsafe(s->io_base, GA_HMCTL_REG, val | 0x40);
L
Linus Torvalds 已提交
505 506 507 508 509 510 511 512
	spin_unlock_irqrestore(&s->lock, flags);

	/*
	 * If all has gone well, then the board should acknowledge
	 * the new upload and tell us that it has rebooted OK. We
	 * give it 5 seconds (max) ...
	 */
	ret = 0;
513
	if (!obp_startup_ack(s, 5000)) {
514 515
		snd_printk(KERN_ERR "sscape: No response "
				    "from on-board processor after upload\n");
L
Linus Torvalds 已提交
516
		ret = -EAGAIN;
517
	} else if (!host_startup_ack(s, 5000)) {
518 519
		snd_printk(KERN_ERR
				"sscape: SoundScape failed to initialise\n");
L
Linus Torvalds 已提交
520 521 522
		ret = -EAGAIN;
	}

523
_release_dma:
L
Linus Torvalds 已提交
524 525 526
	/*
	 * NOTE!!! We are NOT holding any spinlocks at this point !!!
	 */
527
	sscape_write(s, GA_DMAA_REG, (s->ic_type == IC_OPUS ? 0x40 : 0x70));
L
Linus Torvalds 已提交
528 529 530 531 532 533 534 535 536 537
	free_dmabuf(&dma);

	return ret;
}

/*
 * Upload the bootblock(?) into the SoundScape. The only
 * purpose of this block of code seems to be to tell
 * us which version of the microcode we should be using.
 */
538
static int sscape_upload_bootblock(struct snd_card *card)
L
Linus Torvalds 已提交
539
{
540
	struct soundscape *sscape = get_card_soundscape(card);
L
Linus Torvalds 已提交
541
	unsigned long flags;
542
	const struct firmware *init_fw = NULL;
L
Linus Torvalds 已提交
543 544 545
	int data = 0;
	int ret;

546 547
	ret = request_firmware(&init_fw, "scope.cod", card->dev);
	if (ret < 0) {
548
		snd_printk(KERN_ERR "sscape: Error loading scope.cod");
549
		return ret;
L
Linus Torvalds 已提交
550
	}
551
	ret = upload_dma_data(sscape, init_fw->data, init_fw->size);
L
Linus Torvalds 已提交
552

553
	release_firmware(init_fw);
L
Linus Torvalds 已提交
554

555 556 557
	spin_lock_irqsave(&sscape->lock, flags);
	if (ret == 0)
		data = host_read_ctrl_unsafe(sscape->io_base, 100);
L
Linus Torvalds 已提交
558

559 560
	if (data & 0x10)
		sscape_write_unsafe(sscape->io_base, GA_SMCFGA_REG, 0x2f);
L
Linus Torvalds 已提交
561 562 563

	spin_unlock_irqrestore(&sscape->lock, flags);

564 565
	data &= 0xf;
	if (ret == 0 && data > 7) {
566 567
		snd_printk(KERN_ERR
				"sscape: timeout reading firmware version\n");
568 569
		ret = -EAGAIN;
	}
L
Linus Torvalds 已提交
570

571
	return (ret == 0) ? data : ret;
L
Linus Torvalds 已提交
572 573 574
}

/*
575
 * Upload the microcode into the SoundScape.
L
Linus Torvalds 已提交
576
 */
577
static int sscape_upload_microcode(struct snd_card *card, int version)
L
Linus Torvalds 已提交
578
{
579 580 581
	struct soundscape *sscape = get_card_soundscape(card);
	const struct firmware *init_fw = NULL;
	char name[14];
L
Linus Torvalds 已提交
582 583
	int err;

584
	snprintf(name, sizeof(name), "sndscape.co%d", version);
L
Linus Torvalds 已提交
585

586 587
	err = request_firmware(&init_fw, name, card->dev);
	if (err < 0) {
588 589
		snd_printk(KERN_ERR "sscape: Error loading sndscape.co%d",
				version);
590
		return err;
L
Linus Torvalds 已提交
591
	}
592 593
	err = upload_dma_data(sscape, init_fw->data, init_fw->size);
	if (err == 0)
594
		snd_printk(KERN_INFO "sscape: MIDI firmware loaded %zu KBs\n",
595
				init_fw->size >> 10);
L
Linus Torvalds 已提交
596

597
	release_firmware(init_fw);
L
Linus Torvalds 已提交
598 599 600 601 602 603 604

	return err;
}

/*
 * Mixer control for the SoundScape's MIDI device.
 */
605
static int sscape_midi_info(struct snd_kcontrol *ctl,
K
Krzysztof Helt 已提交
606
			    struct snd_ctl_elem_info *uinfo)
L
Linus Torvalds 已提交
607 608 609 610 611 612 613 614
{
	uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
	uinfo->count = 1;
	uinfo->value.integer.min = 0;
	uinfo->value.integer.max = 127;
	return 0;
}

615
static int sscape_midi_get(struct snd_kcontrol *kctl,
K
Krzysztof Helt 已提交
616
			   struct snd_ctl_elem_value *uctl)
L
Linus Torvalds 已提交
617
{
618
	struct snd_wss *chip = snd_kcontrol_chip(kctl);
619
	struct snd_card *card = chip->card;
L
Linus Torvalds 已提交
620 621 622 623
	register struct soundscape *s = get_card_soundscape(card);
	unsigned long flags;

	spin_lock_irqsave(&s->lock, flags);
624
	uctl->value.integer.value[0] = s->midi_vol;
L
Linus Torvalds 已提交
625 626 627 628
	spin_unlock_irqrestore(&s->lock, flags);
	return 0;
}

629
static int sscape_midi_put(struct snd_kcontrol *kctl,
K
Krzysztof Helt 已提交
630
			   struct snd_ctl_elem_value *uctl)
L
Linus Torvalds 已提交
631
{
632
	struct snd_wss *chip = snd_kcontrol_chip(kctl);
633
	struct snd_card *card = chip->card;
K
Krzysztof Helt 已提交
634
	struct soundscape *s = get_card_soundscape(card);
L
Linus Torvalds 已提交
635 636
	unsigned long flags;
	int change;
K
Krzysztof Helt 已提交
637
	unsigned char new_val;
L
Linus Torvalds 已提交
638 639 640

	spin_lock_irqsave(&s->lock, flags);

K
Krzysztof Helt 已提交
641
	new_val = uctl->value.integer.value[0] & 127;
L
Linus Torvalds 已提交
642 643 644 645 646 647 648 649 650 651 652 653
	/*
	 * We need to put the board into HOST mode before we
	 * can send any volume-changing HOST commands ...
	 */
	set_host_mode_unsafe(s->io_base);

	/*
	 * To successfully change the MIDI volume setting, you seem to
	 * have to write a volume command, write the new volume value,
	 * and then perform another volume-related command. Perhaps the
	 * first command is an "open" and the second command is a "close"?
	 */
K
Krzysztof Helt 已提交
654
	if (s->midi_vol == new_val) {
L
Linus Torvalds 已提交
655 656 657
		change = 0;
		goto __skip_change;
	}
K
Krzysztof Helt 已提交
658 659 660 661 662 663
	change = host_write_ctrl_unsafe(s->io_base, CMD_SET_MIDI_VOL, 100)
		 && host_write_ctrl_unsafe(s->io_base, new_val, 100)
		 && host_write_ctrl_unsafe(s->io_base, CMD_XXX_MIDI_VOL, 100)
		 && host_write_ctrl_unsafe(s->io_base, new_val, 100);
	s->midi_vol = new_val;
__skip_change:
L
Linus Torvalds 已提交
664 665 666 667 668 669 670 671 672 673

	/*
	 * Take the board out of HOST mode and back into MIDI mode ...
	 */
	set_midi_mode_unsafe(s->io_base);

	spin_unlock_irqrestore(&s->lock, flags);
	return change;
}

674
static struct snd_kcontrol_new midi_mixer_ctl = {
L
Linus Torvalds 已提交
675 676 677 678 679 680 681 682 683 684 685 686
	.iface = SNDRV_CTL_ELEM_IFACE_MIXER,
	.name = "MIDI",
	.info = sscape_midi_info,
	.get = sscape_midi_get,
	.put = sscape_midi_put
};

/*
 * The SoundScape can use two IRQs from a possible set of four.
 * These IRQs are encoded as bit patterns so that they can be
 * written to the control registers.
 */
687
static unsigned get_irq_config(int sscape_type, int irq)
L
Linus Torvalds 已提交
688 689
{
	static const int valid_irq[] = { 9, 5, 7, 10 };
690
	static const int old_irq[] = { 9, 7, 5, 15 };
L
Linus Torvalds 已提交
691 692
	unsigned cfg;

693 694 695 696 697 698 699 700 701
	if (sscape_type == MEDIA_FX) {
		for (cfg = 0; cfg < ARRAY_SIZE(old_irq); ++cfg)
			if (irq == old_irq[cfg])
				return cfg;
	} else {
		for (cfg = 0; cfg < ARRAY_SIZE(valid_irq); ++cfg)
			if (irq == valid_irq[cfg])
				return cfg;
	}
L
Linus Torvalds 已提交
702 703 704 705 706 707 708 709

	return INVALID_IRQ;
}

/*
 * Perform certain arcane port-checks to see whether there
 * is a SoundScape board lurking behind the given ports.
 */
710
static int detect_sscape(struct soundscape *s, long wss_io)
L
Linus Torvalds 已提交
711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729
{
	unsigned long flags;
	unsigned d;
	int retval = 0;

	spin_lock_irqsave(&s->lock, flags);

	/*
	 * The following code is lifted from the original OSS driver,
	 * and as I don't have a datasheet I cannot really comment
	 * on what it is doing...
	 */
	if ((inb(HOST_CTRL_IO(s->io_base)) & 0x78) != 0)
		goto _done;

	d = inb(ODIE_ADDR_IO(s->io_base)) & 0xf0;
	if ((d & 0x80) != 0)
		goto _done;

730
	if (d == 0)
L
Linus Torvalds 已提交
731
		s->ic_type = IC_ODIE;
732
	else if ((d & 0x60) != 0)
L
Linus Torvalds 已提交
733
		s->ic_type = IC_OPUS;
734
	else
L
Linus Torvalds 已提交
735 736 737 738 739 740 741 742 743
		goto _done;

	outb(0xfa, ODIE_ADDR_IO(s->io_base));
	if ((inb(ODIE_ADDR_IO(s->io_base)) & 0x9f) != 0x0a)
		goto _done;

	outb(0xfe, ODIE_ADDR_IO(s->io_base));
	if ((inb(ODIE_ADDR_IO(s->io_base)) & 0x9f) != 0x0e)
		goto _done;
744 745 746 747

	outb(0xfe, ODIE_ADDR_IO(s->io_base));
	d = inb(ODIE_DATA_IO(s->io_base));
	if (s->type != SSCAPE_VIVO && (d & 0x9f) != 0x0e)
L
Linus Torvalds 已提交
748 749
		goto _done;

750 751
	if (s->ic_type == IC_OPUS)
		activate_ad1845_unsafe(s->io_base);
752 753

	if (s->type == SSCAPE_VIVO)
754
		wss_io += 4;
755

K
Krzysztof Helt 已提交
756
	d  = sscape_read_unsafe(s->io_base, GA_HMCTL_REG);
757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779
	sscape_write_unsafe(s->io_base, GA_HMCTL_REG, d | 0xc0);

	/* wait for WSS codec */
	for (d = 0; d < 500; d++) {
		if ((inb(wss_io) & 0x80) == 0)
			break;
		spin_unlock_irqrestore(&s->lock, flags);
		msleep(1);
		spin_lock_irqsave(&s->lock, flags);
	}

	if ((inb(wss_io) & 0x80) != 0)
		goto _done;

	if (inb(wss_io + 2) == 0xff)
		goto _done;

	d  = sscape_read_unsafe(s->io_base, GA_HMCTL_REG) & 0x3f;
	sscape_write_unsafe(s->io_base, GA_HMCTL_REG, d);

	if ((inb(wss_io) & 0x80) != 0)
		s->type = MEDIA_FX;

K
Krzysztof Helt 已提交
780
	d = sscape_read_unsafe(s->io_base, GA_HMCTL_REG);
781
	sscape_write_unsafe(s->io_base, GA_HMCTL_REG, d | 0xc0);
782 783
	/* wait for WSS codec */
	for (d = 0; d < 500; d++) {
784
		if ((inb(wss_io) & 0x80) == 0)
785 786 787 788 789 790
			break;
		spin_unlock_irqrestore(&s->lock, flags);
		msleep(1);
		spin_lock_irqsave(&s->lock, flags);
	}

L
Linus Torvalds 已提交
791 792 793 794 795
	/*
	 * SoundScape successfully detected!
	 */
	retval = 1;

K
Krzysztof Helt 已提交
796
_done:
L
Linus Torvalds 已提交
797 798 799 800 801 802 803 804 805 806
	spin_unlock_irqrestore(&s->lock, flags);
	return retval;
}

/*
 * ALSA callback function, called when attempting to open the MIDI device.
 * Check that the MIDI firmware has been loaded, because we don't want
 * to crash the machine. Also check that someone isn't using the hardware
 * IOCTL device.
 */
K
Krzysztof Helt 已提交
807
static int mpu401_open(struct snd_mpu401 *mpu)
L
Linus Torvalds 已提交
808 809
{
	if (!verify_mpu401(mpu)) {
810 811 812
		snd_printk(KERN_ERR "sscape: MIDI disabled, "
				    "please load firmware\n");
		return -ENODEV;
L
Linus Torvalds 已提交
813 814
	}

815
	return 0;
L
Linus Torvalds 已提交
816 817 818 819 820
}

/*
 * Initialse an MPU-401 subdevice for MIDI support on the SoundScape.
 */
821 822
static int create_mpu401(struct snd_card *card, int devnum,
			 unsigned long port, int irq)
L
Linus Torvalds 已提交
823 824
{
	struct soundscape *sscape = get_card_soundscape(card);
825
	struct snd_rawmidi *rawmidi;
L
Linus Torvalds 已提交
826 827
	int err;

K
Krzysztof Helt 已提交
828
	err = snd_mpu401_uart_new(card, devnum, MPU401_HW_MPU401, port,
829
				  MPU401_INFO_INTEGRATED, irq, &rawmidi);
K
Krzysztof Helt 已提交
830 831
	if (err == 0) {
		struct snd_mpu401 *mpu = rawmidi->private_data;
L
Linus Torvalds 已提交
832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848
		mpu->open_input = mpu401_open;
		mpu->open_output = mpu401_open;
		mpu->private_data = sscape;

		initialise_mpu401(mpu);
	}

	return err;
}


/*
 * Create an AD1845 PCM subdevice on the SoundScape. The AD1845
 * is very much like a CS4231, with a few extra bits. We will
 * try to support at least some of the extra bits by overriding
 * some of the CS4231 callback.
 */
849 850
static int create_ad1845(struct snd_card *card, unsigned port,
			 int irq, int dma1, int dma2)
L
Linus Torvalds 已提交
851 852
{
	register struct soundscape *sscape = get_card_soundscape(card);
853
	struct snd_wss *chip;
L
Linus Torvalds 已提交
854
	int err;
855 856 857 858 859 860 861 862 863 864 865 866 867 868
	int codec_type = WSS_HW_DETECT;

	switch (sscape->type) {
	case MEDIA_FX:
	case SSCAPE:
		/*
		 * There are some freak examples of early Soundscape cards
		 * with CS4231 instead of AD1848/CS4248. Unfortunately, the
		 * CS4231 works only in CS4248 compatibility mode on
		 * these cards so force it.
		 */
		if (sscape->ic_type != IC_OPUS)
			codec_type = WSS_HW_AD1848;
		break;
L
Linus Torvalds 已提交
869

870
	case SSCAPE_VIVO:
871
		port += 4;
872 873 874 875
		break;
	default:
		break;
	}
876

877
	err = snd_wss_create(card, port, -1, irq, dma1, dma2,
878
			     codec_type, WSS_HWSHARE_DMA1, &chip);
879
	if (!err) {
L
Linus Torvalds 已提交
880 881
		unsigned long flags;

882 883 884 885 886 887
		if (sscape->type != SSCAPE_VIVO) {
			/*
			 * The input clock frequency on the SoundScape must
			 * be 14.31818 MHz, because we must set this register
			 * to get the playback to sound correct ...
			 */
888
			snd_wss_mce_up(chip);
889
			spin_lock_irqsave(&chip->reg_lock, flags);
890
			snd_wss_out(chip, AD1845_CLOCK, 0x20);
891
			spin_unlock_irqrestore(&chip->reg_lock, flags);
892
			snd_wss_mce_down(chip);
L
Linus Torvalds 已提交
893

894
		}
L
Linus Torvalds 已提交
895

896
		err = snd_wss_pcm(chip, 0);
897 898 899
		if (err < 0) {
			snd_printk(KERN_ERR "sscape: No PCM device "
					    "for AD1845 chip\n");
L
Linus Torvalds 已提交
900 901 902
			goto _error;
		}

903
		err = snd_wss_mixer(chip);
904 905 906
		if (err < 0) {
			snd_printk(KERN_ERR "sscape: No mixer device "
					    "for AD1845 chip\n");
L
Linus Torvalds 已提交
907 908
			goto _error;
		}
909
		if (chip->hardware != WSS_HW_AD1848) {
910
			err = snd_wss_timer(chip, 0);
911 912 913 914 915
			if (err < 0) {
				snd_printk(KERN_ERR "sscape: No timer device "
						    "for AD1845 chip\n");
				goto _error;
			}
L
Linus Torvalds 已提交
916 917
		}

918 919 920 921 922 923 924 925 926 927
		if (sscape->type != SSCAPE_VIVO) {
			err = snd_ctl_add(card,
					  snd_ctl_new1(&midi_mixer_ctl, chip));
			if (err < 0) {
				snd_printk(KERN_ERR "sscape: Could not create "
						    "MIDI mixer control\n");
				goto _error;
			}
		}

L
Linus Torvalds 已提交
928 929 930
		sscape->chip = chip;
	}

K
Krzysztof Helt 已提交
931
_error:
L
Linus Torvalds 已提交
932 933 934 935 936 937 938 939
	return err;
}


/*
 * Create an ALSA soundcard entry for the SoundScape, using
 * the given list of port, IRQ and DMA resources.
 */
940
static int create_sscape(int dev, struct snd_card *card)
L
Linus Torvalds 已提交
941
{
942 943
	struct soundscape *sscape = get_card_soundscape(card);
	unsigned dma_cfg;
L
Linus Torvalds 已提交
944 945 946
	unsigned irq_cfg;
	unsigned mpu_irq_cfg;
	struct resource *io_res;
947
	struct resource *wss_res;
L
Linus Torvalds 已提交
948 949
	unsigned long flags;
	int err;
950
	int val;
951
	const char *name;
L
Linus Torvalds 已提交
952 953 954 955 956

	/*
	 * Grab IO ports that we will need to probe so that we
	 * can detect and control this hardware ...
	 */
957
	io_res = request_region(port[dev], 8, "SoundScape");
958
	if (!io_res) {
959 960
		snd_printk(KERN_ERR
			   "sscape: can't grab port 0x%lx\n", port[dev]);
L
Linus Torvalds 已提交
961 962
		return -EBUSY;
	}
963 964 965 966 967 968 969 970 971 972
	wss_res = NULL;
	if (sscape->type == SSCAPE_VIVO) {
		wss_res = request_region(wss_port[dev], 4, "SoundScape");
		if (!wss_res) {
			snd_printk(KERN_ERR "sscape: can't grab port 0x%lx\n",
					    wss_port[dev]);
			err = -EBUSY;
			goto _release_region;
		}
	}
L
Linus Torvalds 已提交
973 974

	/*
975
	 * Grab one DMA channel ...
L
Linus Torvalds 已提交
976
	 */
977 978
	err = request_dma(dma[dev], "SoundScape");
	if (err < 0) {
979
		snd_printk(KERN_ERR "sscape: can't grab DMA %d\n", dma[dev]);
L
Linus Torvalds 已提交
980 981 982 983 984
		goto _release_region;
	}

	spin_lock_init(&sscape->lock);
	sscape->io_res = io_res;
985
	sscape->wss_res = wss_res;
986
	sscape->io_base = port[dev];
L
Linus Torvalds 已提交
987

988
	if (!detect_sscape(sscape, wss_port[dev])) {
989 990
		printk(KERN_ERR "sscape: hardware not detected at 0x%x\n",
			sscape->io_base);
L
Linus Torvalds 已提交
991
		err = -ENODEV;
992
		goto _release_dma;
L
Linus Torvalds 已提交
993 994
	}

995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021
	switch (sscape->type) {
	case MEDIA_FX:
		name = "MediaFX/SoundFX";
		break;
	case SSCAPE:
		name = "Soundscape";
		break;
	case SSCAPE_PNP:
		name = "Soundscape PnP";
		break;
	case SSCAPE_VIVO:
		name = "Soundscape VIVO";
		break;
	default:
		name = "unknown Soundscape";
		break;
	}

	printk(KERN_INFO "sscape: %s card detected at 0x%x, using IRQ %d, DMA %d\n",
			 name, sscape->io_base, irq[dev], dma[dev]);

	/*
	 * Check that the user didn't pass us garbage data ...
	 */
	irq_cfg = get_irq_config(sscape->type, irq[dev]);
	if (irq_cfg == INVALID_IRQ) {
		snd_printk(KERN_ERR "sscape: Invalid IRQ %d\n", irq[dev]);
1022 1023
		err = -ENXIO;
		goto _release_dma;
1024 1025 1026 1027
	}

	mpu_irq_cfg = get_irq_config(sscape->type, mpu_irq[dev]);
	if (mpu_irq_cfg == INVALID_IRQ) {
1028
		snd_printk(KERN_ERR "sscape: Invalid IRQ %d\n", mpu_irq[dev]);
1029 1030
		err = -ENXIO;
		goto _release_dma;
1031
	}
L
Linus Torvalds 已提交
1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045

	/*
	 * Tell the on-board devices where their resources are (I think -
	 * I can't be sure without a datasheet ... So many magic values!)
	 */
	spin_lock_irqsave(&sscape->lock, flags);

	sscape_write_unsafe(sscape->io_base, GA_SMCFGA_REG, 0x2e);
	sscape_write_unsafe(sscape->io_base, GA_SMCFGB_REG, 0x00);

	/*
	 * Enable and configure the DMA channels ...
	 */
	sscape_write_unsafe(sscape->io_base, GA_DMACFG_REG, 0x50);
1046
	dma_cfg = (sscape->ic_type == IC_OPUS ? 0x40 : 0x70);
L
Linus Torvalds 已提交
1047 1048 1049
	sscape_write_unsafe(sscape->io_base, GA_DMAA_REG, dma_cfg);
	sscape_write_unsafe(sscape->io_base, GA_DMAB_REG, 0x20);

1050
	mpu_irq_cfg |= mpu_irq_cfg << 2;
1051 1052 1053 1054
	val = sscape_read_unsafe(sscape->io_base, GA_HMCTL_REG) & 0xF7;
	if (joystick[dev])
		val |= 8;
	sscape_write_unsafe(sscape->io_base, GA_HMCTL_REG, val | 0x10);
1055
	sscape_write_unsafe(sscape->io_base, GA_INTCFG_REG, 0xf0 | mpu_irq_cfg);
L
Linus Torvalds 已提交
1056
	sscape_write_unsafe(sscape->io_base,
1057 1058
			    GA_CDCFG_REG, 0x09 | DMA_8BIT
			    | (dma[dev] << 4) | (irq_cfg << 1));
K
Krzysztof Helt 已提交
1059 1060 1061 1062
	/*
	 * Enable the master IRQ ...
	 */
	sscape_write_unsafe(sscape->io_base, GA_INTENA_REG, 0x80);
L
Linus Torvalds 已提交
1063 1064 1065 1066 1067 1068 1069

	spin_unlock_irqrestore(&sscape->lock, flags);

	/*
	 * We have now enabled the codec chip, and so we should
	 * detect the AD1845 device ...
	 */
1070 1071 1072
	err = create_ad1845(card, wss_port[dev], irq[dev],
			    dma[dev], dma2[dev]);
	if (err < 0) {
1073 1074 1075
		snd_printk(KERN_ERR
				"sscape: No AD1845 device at 0x%lx, IRQ %d\n",
				wss_port[dev], irq[dev]);
1076
		goto _release_dma;
L
Linus Torvalds 已提交
1077
	}
1078 1079 1080 1081 1082 1083 1084
	strcpy(card->driver, "SoundScape");
	strcpy(card->shortname, name);
	snprintf(card->longname, sizeof(card->longname),
		 "%s at 0x%lx, IRQ %d, DMA1 %d, DMA2 %d\n",
		 name, sscape->chip->port, sscape->chip->irq,
		 sscape->chip->dma1, sscape->chip->dma2);

L
Linus Torvalds 已提交
1085
#define MIDI_DEVNUM  0
1086
	if (sscape->type != SSCAPE_VIVO) {
1087 1088 1089
		err = sscape_upload_bootblock(card);
		if (err >= 0)
			err = sscape_upload_microcode(card, err);
L
Linus Torvalds 已提交
1090

1091 1092 1093 1094
		if (err == 0) {
			err = create_mpu401(card, MIDI_DEVNUM, port[dev],
					    mpu_irq[dev]);
			if (err < 0) {
1095
				snd_printk(KERN_ERR "sscape: Failed to create "
1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122
						"MPU-401 device at 0x%lx\n",
						port[dev]);
				goto _release_dma;
			}

			/*
			 * Initialize mixer
			 */
			spin_lock_irqsave(&sscape->lock, flags);
			sscape->midi_vol = 0;
			host_write_ctrl_unsafe(sscape->io_base,
						CMD_SET_MIDI_VOL, 100);
			host_write_ctrl_unsafe(sscape->io_base,
						sscape->midi_vol, 100);
			host_write_ctrl_unsafe(sscape->io_base,
						CMD_XXX_MIDI_VOL, 100);
			host_write_ctrl_unsafe(sscape->io_base,
						sscape->midi_vol, 100);
			host_write_ctrl_unsafe(sscape->io_base,
						CMD_SET_EXTMIDI, 100);
			host_write_ctrl_unsafe(sscape->io_base,
						0, 100);
			host_write_ctrl_unsafe(sscape->io_base, CMD_ACK, 100);

			set_midi_mode_unsafe(sscape->io_base);
			spin_unlock_irqrestore(&sscape->lock, flags);
		}
1123
	}
L
Linus Torvalds 已提交
1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134

	/*
	 * Now that we have successfully created this sound card,
	 * it is safe to store the pointer.
	 * NOTE: we only register the sound card's "destructor"
	 *       function now that our "constructor" has completed.
	 */
	card->private_free = soundscape_free;

	return 0;

1135
_release_dma:
1136
	free_dma(dma[dev]);
L
Linus Torvalds 已提交
1137

1138
_release_region:
1139
	release_and_free_resource(wss_res);
1140
	release_and_free_resource(io_res);
L
Linus Torvalds 已提交
1141 1142 1143 1144 1145

	return err;
}


1146
static int snd_sscape_match(struct device *pdev, unsigned int i)
1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157
{
	/*
	 * Make sure we were given ALL of the other parameters.
	 */
	if (port[i] == SNDRV_AUTO_PORT)
		return 0;

	if (irq[i] == SNDRV_AUTO_IRQ ||
	    mpu_irq[i] == SNDRV_AUTO_IRQ ||
	    dma[i] == SNDRV_AUTO_DMA) {
		printk(KERN_INFO
K
Krzysztof Helt 已提交
1158 1159
		       "sscape: insufficient parameters, "
		       "need IO, IRQ, MPU-IRQ and DMA\n");
1160 1161 1162 1163 1164 1165
		return 0;
	}

	return 1;
}

1166
static int snd_sscape_probe(struct device *pdev, unsigned int dev)
1167 1168
{
	struct snd_card *card;
1169
	struct soundscape *sscape;
1170 1171
	int ret;

1172 1173
	ret = snd_card_new(pdev, index[dev], id[dev], THIS_MODULE,
			   sizeof(struct soundscape), &card);
1174 1175
	if (ret < 0)
		return ret;
1176 1177 1178 1179

	sscape = get_card_soundscape(card);
	sscape->type = SSCAPE;

1180
	dma[dev] &= 0x03;
1181

1182
	ret = create_sscape(dev, card);
1183
	if (ret < 0)
1184 1185
		goto _release_card;

K
Krzysztof Helt 已提交
1186 1187
	ret = snd_card_register(card);
	if (ret < 0) {
1188
		snd_printk(KERN_ERR "sscape: Failed to register sound card\n");
1189
		goto _release_card;
1190
	}
1191
	dev_set_drvdata(pdev, card);
1192
	return 0;
1193 1194 1195 1196

_release_card:
	snd_card_free(card);
	return ret;
1197 1198
}

1199
static int snd_sscape_remove(struct device *devptr, unsigned int dev)
1200
{
1201
	snd_card_free(dev_get_drvdata(devptr));
1202 1203 1204
	return 0;
}

1205
#define DEV_NAME "sscape"
1206

1207 1208
static struct isa_driver snd_sscape_driver = {
	.match		= snd_sscape_match,
1209
	.probe		= snd_sscape_probe,
1210
	.remove		= snd_sscape_remove,
1211 1212
	/* FIXME: suspend/resume */
	.driver		= {
1213
		.name	= DEV_NAME
1214 1215
	},
};
L
Linus Torvalds 已提交
1216 1217

#ifdef CONFIG_PNP
1218
static inline int get_next_autoindex(int i)
L
Linus Torvalds 已提交
1219
{
1220
	while (i < SNDRV_CARDS && port[i] != SNDRV_AUTO_PORT)
L
Linus Torvalds 已提交
1221 1222 1223 1224 1225
		++i;
	return i;
}


1226 1227
static int sscape_pnp_detect(struct pnp_card_link *pcard,
			     const struct pnp_card_device_id *pid)
L
Linus Torvalds 已提交
1228 1229
{
	static int idx = 0;
1230 1231
	struct pnp_dev *dev;
	struct snd_card *card;
1232
	struct soundscape *sscape;
L
Linus Torvalds 已提交
1233 1234 1235 1236 1237 1238
	int ret;

	/*
	 * Allow this function to fail *quietly* if all the ISA PnP
	 * devices were configured using module parameters instead.
	 */
K
Krzysztof Helt 已提交
1239 1240
	idx = get_next_autoindex(idx);
	if (idx >= SNDRV_CARDS)
L
Linus Torvalds 已提交
1241 1242 1243 1244 1245 1246
		return -ENOSPC;

	/*
	 * Check that we still have room for another sound card ...
	 */
	dev = pnp_request_card_device(pcard, pid->devs[0].id, NULL);
K
Krzysztof Helt 已提交
1247
	if (!dev)
1248
		return -ENODEV;
L
Linus Torvalds 已提交
1249

1250 1251
	if (!pnp_is_active(dev)) {
		if (pnp_activate_dev(dev) < 0) {
1252
			snd_printk(KERN_INFO "sscape: device is inactive\n");
1253
			return -EBUSY;
L
Linus Torvalds 已提交
1254 1255 1256
		}
	}

1257 1258 1259 1260
	/*
	 * Create a new ALSA sound card entry, in anticipation
	 * of detecting our hardware ...
	 */
1261 1262 1263
	ret = snd_card_new(&pcard->card->dev,
			   index[idx], id[idx], THIS_MODULE,
			   sizeof(struct soundscape), &card);
1264 1265
	if (ret < 0)
		return ret;
1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276

	sscape = get_card_soundscape(card);

	/*
	 * Identify card model ...
	 */
	if (!strncmp("ENS4081", pid->id, 7))
		sscape->type = SSCAPE_VIVO;
	else
		sscape->type = SSCAPE_PNP;

1277 1278 1279 1280 1281 1282 1283
	/*
	 * Read the correct parameters off the ISA PnP bus ...
	 */
	port[idx] = pnp_port_start(dev, 0);
	irq[idx] = pnp_irq(dev, 0);
	mpu_irq[idx] = pnp_irq(dev, 1);
	dma[idx] = pnp_dma(dev, 0) & 0x03;
1284 1285 1286 1287 1288 1289 1290
	if (sscape->type == SSCAPE_PNP) {
		dma2[idx] = dma[idx];
		wss_port[idx] = CODEC_IO(port[idx]);
	} else {
		wss_port[idx] = pnp_port_start(dev, 1);
		dma2[idx] = pnp_dma(dev, 1);
	}
1291

1292
	ret = create_sscape(idx, card);
1293
	if (ret < 0)
1294 1295
		goto _release_card;

K
Krzysztof Helt 已提交
1296 1297
	ret = snd_card_register(card);
	if (ret < 0) {
1298
		snd_printk(KERN_ERR "sscape: Failed to register sound card\n");
1299
		goto _release_card;
1300 1301 1302 1303
	}

	pnp_set_card_drvdata(pcard, card);
	++idx;
1304
	return 0;
1305

1306 1307
_release_card:
	snd_card_free(card);
L
Linus Torvalds 已提交
1308 1309 1310
	return ret;
}

1311
static void sscape_pnp_remove(struct pnp_card_link *pcard)
L
Linus Torvalds 已提交
1312
{
1313
	snd_card_free(pnp_get_card_drvdata(pcard));
L
Linus Torvalds 已提交
1314 1315 1316 1317 1318 1319 1320 1321
	pnp_set_card_drvdata(pcard, NULL);
}

static struct pnp_card_driver sscape_pnpc_driver = {
	.flags = PNP_DRIVER_RES_DO_NOT_CHANGE,
	.name = "sscape",
	.id_table = sscape_pnpids,
	.probe = sscape_pnp_detect,
1322
	.remove = sscape_pnp_remove,
L
Linus Torvalds 已提交
1323 1324 1325 1326 1327 1328
};

#endif /* CONFIG_PNP */

static int __init sscape_init(void)
{
1329
	int err;
L
Linus Torvalds 已提交
1330

1331
	err = isa_register_driver(&snd_sscape_driver, SNDRV_CARDS);
1332
#ifdef CONFIG_PNP
1333 1334 1335 1336 1337
	if (!err)
		isa_registered = 1;

	err = pnp_register_card_driver(&sscape_pnpc_driver);
	if (!err)
1338
		pnp_registered = 1;
1339 1340 1341

	if (isa_registered)
		err = 0;
1342
#endif
1343
	return err;
L
Linus Torvalds 已提交
1344 1345
}

1346 1347 1348 1349 1350
static void __exit sscape_exit(void)
{
#ifdef CONFIG_PNP
	if (pnp_registered)
		pnp_unregister_card_driver(&sscape_pnpc_driver);
1351
	if (isa_registered)
1352
#endif
1353
		isa_unregister_driver(&snd_sscape_driver);
1354 1355
}

L
Linus Torvalds 已提交
1356 1357
module_init(sscape_init);
module_exit(sscape_exit);