opl3sa2.c

来自「linux 内核源代码」· C语言 代码 · 共 1,006 行 · 第 1/3 页

C
1,006
字号
/* *  Driver for Yamaha OPL3-SA[2,3] soundcards *  Copyright (c) by Jaroslav Kysela <perex@perex.cz> * * *   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 <sound/driver.h>#include <linux/init.h>#include <linux/err.h>#include <linux/isa.h>#include <linux/interrupt.h>#include <linux/pm.h>#include <linux/slab.h>#include <linux/pnp.h>#include <linux/moduleparam.h>#include <sound/core.h>#include <sound/cs4231.h>#include <sound/mpu401.h>#include <sound/opl3.h>#include <sound/initval.h>#include <sound/tlv.h>#include <asm/io.h>MODULE_AUTHOR("Jaroslav Kysela <perex@perex.cz>");MODULE_DESCRIPTION("Yamaha OPL3SA2+");MODULE_LICENSE("GPL");MODULE_SUPPORTED_DEVICE("{{Yamaha,YMF719E-S},"		"{Genius,Sound Maker 3DX},"		"{Yamaha,OPL3SA3},"		"{Intel,AL440LX sound},"	        "{NeoMagic,MagicWave 3DX}}");static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX;	/* Index 0-MAX */static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR;	/* ID for this card */static int enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_ISAPNP; /* Enable this card */#ifdef CONFIG_PNPstatic int isapnp[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 1};#endifstatic long port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT;	/* 0xf86,0x370,0x100 */static long sb_port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT;	/* 0x220,0x240,0x260 */static long wss_port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT;/* 0x530,0xe80,0xf40,0x604 */static long fm_port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT;	/* 0x388 */static long midi_port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT;/* 0x330,0x300 */static int irq[SNDRV_CARDS] = SNDRV_DEFAULT_IRQ;	/* 0,1,3,5,9,11,12,15 */static int dma1[SNDRV_CARDS] = SNDRV_DEFAULT_DMA;	/* 1,3,5,6,7 */static int dma2[SNDRV_CARDS] = SNDRV_DEFAULT_DMA;	/* 1,3,5,6,7 */static int opl3sa3_ymode[SNDRV_CARDS];   /* 0,1,2,3 */ /*SL Added*/module_param_array(index, int, NULL, 0444);MODULE_PARM_DESC(index, "Index value for OPL3-SA soundcard.");module_param_array(id, charp, NULL, 0444);MODULE_PARM_DESC(id, "ID string for OPL3-SA soundcard.");module_param_array(enable, bool, NULL, 0444);MODULE_PARM_DESC(enable, "Enable OPL3-SA soundcard.");#ifdef CONFIG_PNPmodule_param_array(isapnp, bool, NULL, 0444);MODULE_PARM_DESC(isapnp, "PnP detection for specified soundcard.");#endifmodule_param_array(port, long, NULL, 0444);MODULE_PARM_DESC(port, "Port # for OPL3-SA driver.");module_param_array(sb_port, long, NULL, 0444);MODULE_PARM_DESC(sb_port, "SB port # for OPL3-SA driver.");module_param_array(wss_port, long, NULL, 0444);MODULE_PARM_DESC(wss_port, "WSS port # for OPL3-SA driver.");module_param_array(fm_port, long, NULL, 0444);MODULE_PARM_DESC(fm_port, "FM port # for OPL3-SA driver.");module_param_array(midi_port, long, NULL, 0444);MODULE_PARM_DESC(midi_port, "MIDI port # for OPL3-SA driver.");module_param_array(irq, int, NULL, 0444);MODULE_PARM_DESC(irq, "IRQ # for OPL3-SA driver.");module_param_array(dma1, int, NULL, 0444);MODULE_PARM_DESC(dma1, "DMA1 # for OPL3-SA driver.");module_param_array(dma2, int, NULL, 0444);MODULE_PARM_DESC(dma2, "DMA2 # for OPL3-SA driver.");module_param_array(opl3sa3_ymode, int, NULL, 0444);MODULE_PARM_DESC(opl3sa3_ymode, "Speaker size selection for 3D Enhancement mode: Desktop/Large Notebook/Small Notebook/HiFi.");#ifdef CONFIG_PNPstatic int isa_registered;static int pnp_registered;static int pnpc_registered;#endif/* control ports */#define OPL3SA2_PM_CTRL		0x01#define OPL3SA2_SYS_CTRL		0x02#define OPL3SA2_IRQ_CONFIG	0x03#define OPL3SA2_IRQ_STATUS	0x04#define OPL3SA2_DMA_CONFIG	0x06#define OPL3SA2_MASTER_LEFT	0x07#define OPL3SA2_MASTER_RIGHT	0x08#define OPL3SA2_MIC		0x09#define OPL3SA2_MISC		0x0A/* opl3sa3 only */#define OPL3SA3_DGTL_DOWN	0x12#define OPL3SA3_ANLG_DOWN	0x13#define OPL3SA3_WIDE		0x14#define OPL3SA3_BASS		0x15#define OPL3SA3_TREBLE		0x16/* power management bits */#define OPL3SA2_PM_ADOWN		0x20#define OPL3SA2_PM_PSV		0x04		#define OPL3SA2_PM_PDN		0x02#define OPL3SA2_PM_PDX		0x01#define OPL3SA2_PM_D0	0x00#define OPL3SA2_PM_D3	(OPL3SA2_PM_ADOWN|OPL3SA2_PM_PSV|OPL3SA2_PM_PDN|OPL3SA2_PM_PDX)struct snd_opl3sa2 {	struct snd_card *card;	int version;		/* 2 or 3 */	unsigned long port;	/* control port */	struct resource *res_port; /* control port resource */	int irq;	int single_dma;	spinlock_t reg_lock;	struct snd_hwdep *synth;	struct snd_rawmidi *rmidi;	struct snd_cs4231 *cs4231;	unsigned char ctlregs[0x20];	int ymode;		/* SL added */	struct snd_kcontrol *master_switch;	struct snd_kcontrol *master_volume;};#define PFX	"opl3sa2: "#ifdef CONFIG_PNPstatic struct pnp_device_id snd_opl3sa2_pnpbiosids[] = {	{ .id = "YMH0021" },	{ .id = "NMX2210" },	/* Gateway Solo 2500 */	{ .id = "" }		/* end */};MODULE_DEVICE_TABLE(pnp, snd_opl3sa2_pnpbiosids);static struct pnp_card_device_id snd_opl3sa2_pnpids[] = {	/* Yamaha YMF719E-S (Genius Sound Maker 3DX) */	{ .id = "YMH0020", .devs = { { "YMH0021" } } },	/* Yamaha OPL3-SA3 (integrated on Intel's Pentium II AL440LX motherboard) */	{ .id = "YMH0030", .devs = { { "YMH0021" } } },	/* Yamaha OPL3-SA2 */	{ .id = "YMH0800", .devs = { { "YMH0021" } } },	/* Yamaha OPL3-SA2 */	{ .id = "YMH0801", .devs = { { "YMH0021" } } },	/* NeoMagic MagicWave 3DX */	{ .id = "NMX2200", .devs = { { "YMH2210" } } },	/* NeoMagic MagicWave 3D */	{ .id = "NMX2200", .devs = { { "NMX2210" } } },	/* --- */	{ .id = "" }	/* end */};MODULE_DEVICE_TABLE(pnp_card, snd_opl3sa2_pnpids);#endif /* CONFIG_PNP *//* read control port (w/o spinlock) */static unsigned char __snd_opl3sa2_read(struct snd_opl3sa2 *chip, unsigned char reg){	unsigned char result;#if 0	outb(0x1d, port);	/* password */	printk("read [0x%lx] = 0x%x\n", port, inb(port));#endif	outb(reg, chip->port);	/* register */	result = inb(chip->port + 1);#if 0	printk("read [0x%lx] = 0x%x [0x%x]\n", port, result, inb(port));#endif	return result;}/* read control port (with spinlock) */static unsigned char snd_opl3sa2_read(struct snd_opl3sa2 *chip, unsigned char reg){	unsigned long flags;	unsigned char result;	spin_lock_irqsave(&chip->reg_lock, flags);	result = __snd_opl3sa2_read(chip, reg);	spin_unlock_irqrestore(&chip->reg_lock, flags);	return result;}/* write control port (w/o spinlock) */static void __snd_opl3sa2_write(struct snd_opl3sa2 *chip, unsigned char reg, unsigned char value){#if 0	outb(0x1d, port);	/* password */#endif	outb(reg, chip->port);	/* register */	outb(value, chip->port + 1);	chip->ctlregs[reg] = value;}/* write control port (with spinlock) */static void snd_opl3sa2_write(struct snd_opl3sa2 *chip, unsigned char reg, unsigned char value){	unsigned long flags;	spin_lock_irqsave(&chip->reg_lock, flags);	__snd_opl3sa2_write(chip, reg, value);	spin_unlock_irqrestore(&chip->reg_lock, flags);}static int __devinit snd_opl3sa2_detect(struct snd_opl3sa2 *chip){	struct snd_card *card;	unsigned long port;	unsigned char tmp, tmp1;	char str[2];	card = chip->card;	port = chip->port;	if ((chip->res_port = request_region(port, 2, "OPL3-SA control")) == NULL) {		snd_printk(KERN_ERR PFX "can't grab port 0x%lx\n", port);		return -EBUSY;	}	// snd_printk("REG 0A = 0x%x\n", snd_opl3sa2_read(chip, 0x0a));	chip->version = 0;	tmp = snd_opl3sa2_read(chip, OPL3SA2_MISC);	if (tmp == 0xff) {		snd_printd("OPL3-SA [0x%lx] detect = 0x%x\n", port, tmp);		return -ENODEV;	}	switch (tmp & 0x07) {	case 0x01:		chip->version = 2; /* YMF711 */		break;	default:		chip->version = 3;		/* 0x02 - standard */		/* 0x03 - YM715B */		/* 0x04 - YM719 - OPL-SA4? */		/* 0x05 - OPL3-SA3 - Libretto 100 */		/* 0x07 - unknown - Neomagic MagicWave 3D */		break;	}	str[0] = chip->version + '0';	str[1] = 0;	strcat(card->shortname, str);	snd_opl3sa2_write(chip, OPL3SA2_MISC, tmp ^ 7);	if ((tmp1 = snd_opl3sa2_read(chip, OPL3SA2_MISC)) != tmp) {		snd_printd("OPL3-SA [0x%lx] detect (1) = 0x%x (0x%x)\n", port, tmp, tmp1);		return -ENODEV;	}	/* try if the MIC register is accesible */	tmp = snd_opl3sa2_read(chip, OPL3SA2_MIC);	snd_opl3sa2_write(chip, OPL3SA2_MIC, 0x8a);	if (((tmp1 = snd_opl3sa2_read(chip, OPL3SA2_MIC)) & 0x9f) != 0x8a) {		snd_printd("OPL3-SA [0x%lx] detect (2) = 0x%x (0x%x)\n", port, tmp, tmp1);		return -ENODEV;	}	snd_opl3sa2_write(chip, OPL3SA2_MIC, 0x9f);	/* initialization */	/* Power Management - full on */	snd_opl3sa2_write(chip, OPL3SA2_PM_CTRL, OPL3SA2_PM_D0);	if (chip->version > 2) {		/* ymode is bits 4&5 (of 0 to 7) on all but opl3sa2 versions */		snd_opl3sa2_write(chip, OPL3SA2_SYS_CTRL, (chip->ymode << 4));	} else {		/* default for opl3sa2 versions */		snd_opl3sa2_write(chip, OPL3SA2_SYS_CTRL, 0x00);	}	snd_opl3sa2_write(chip, OPL3SA2_IRQ_CONFIG, 0x0d);	/* Interrupt Channel Configuration - IRQ A = OPL3 + MPU + WSS */	if (chip->single_dma) {		snd_opl3sa2_write(chip, OPL3SA2_DMA_CONFIG, 0x03);	/* DMA Configuration - DMA A = WSS-R + WSS-P */	} else {		snd_opl3sa2_write(chip, OPL3SA2_DMA_CONFIG, 0x21);	/* DMA Configuration - DMA B = WSS-R, DMA A = WSS-P */	}	snd_opl3sa2_write(chip, OPL3SA2_MISC, 0x80 | (tmp & 7));	/* Miscellaneous - default */	if (chip->version > 2) {		snd_opl3sa2_write(chip, OPL3SA3_DGTL_DOWN, 0x00);	/* Digital Block Partial Power Down - default */		snd_opl3sa2_write(chip, OPL3SA3_ANLG_DOWN, 0x00);	/* Analog Block Partial Power Down - default */	}	return 0;}static irqreturn_t snd_opl3sa2_interrupt(int irq, void *dev_id){	unsigned short status;	struct snd_opl3sa2 *chip = dev_id;	int handled = 0;	if (chip == NULL || chip->card == NULL)		return IRQ_NONE;	status = snd_opl3sa2_read(chip, OPL3SA2_IRQ_STATUS);	if (status & 0x20) {		handled = 1;		snd_opl3_interrupt(chip->synth);	}	if ((status & 0x10) && chip->rmidi != NULL) {		handled = 1;		snd_mpu401_uart_interrupt(irq, chip->rmidi->private_data);	}	if (status & 0x07) {	/* TI,CI,PI */		handled = 1;		snd_cs4231_interrupt(irq, chip->cs4231);	}	if (status & 0x40) { /* hardware volume change */		handled = 1;		/* reading from Master Lch register at 0x07 clears this bit */		snd_opl3sa2_read(chip, OPL3SA2_MASTER_RIGHT);		snd_opl3sa2_read(chip, OPL3SA2_MASTER_LEFT);		if (chip->master_switch && chip->master_volume) {			snd_ctl_notify(chip->card, SNDRV_CTL_EVENT_MASK_VALUE, &chip->master_switch->id);			snd_ctl_notify(chip->card, SNDRV_CTL_EVENT_MASK_VALUE, &chip->master_volume->id);		}	}	return IRQ_RETVAL(handled);}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?