⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 intel8x0m.c

📁 linux 内核源代码
💻 C
📖 第 1 页 / 共 3 页
字号:
/* *   ALSA modem driver for Intel ICH (i8x0) chipsets * *	Copyright (c) 2000 Jaroslav Kysela <perex@perex.cz> * *   This is modified (by Sasha Khapyorsky <sashak@alsa-project.org>) version *   of ALSA ICH sound driver intel8x0.c . * * *   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 <asm/io.h>#include <linux/delay.h>#include <linux/interrupt.h>#include <linux/init.h>#include <linux/pci.h>#include <linux/slab.h>#include <linux/moduleparam.h>#include <sound/core.h>#include <sound/pcm.h>#include <sound/ac97_codec.h>#include <sound/info.h>#include <sound/initval.h>MODULE_AUTHOR("Jaroslav Kysela <perex@perex.cz>");MODULE_DESCRIPTION("Intel 82801AA,82901AB,i810,i820,i830,i840,i845,MX440; "		   "SiS 7013; NVidia MCP/2/2S/3 modems");MODULE_LICENSE("GPL");MODULE_SUPPORTED_DEVICE("{{Intel,82801AA-ICH},"		"{Intel,82901AB-ICH0},"		"{Intel,82801BA-ICH2},"		"{Intel,82801CA-ICH3},"		"{Intel,82801DB-ICH4},"		"{Intel,ICH5},"		"{Intel,ICH6},"		"{Intel,ICH7},"	        "{Intel,MX440},"		"{SiS,7013},"		"{NVidia,NForce Modem},"		"{NVidia,NForce2 Modem},"		"{NVidia,NForce2s Modem},"		"{NVidia,NForce3 Modem},"		"{AMD,AMD768}}");static int index = -2; /* Exclude the first card */static char *id = SNDRV_DEFAULT_STR1;	/* ID for this card */static int ac97_clock;module_param(index, int, 0444);MODULE_PARM_DESC(index, "Index value for Intel i8x0 modemcard.");module_param(id, charp, 0444);MODULE_PARM_DESC(id, "ID string for Intel i8x0 modemcard.");module_param(ac97_clock, int, 0444);MODULE_PARM_DESC(ac97_clock, "AC'97 codec clock (0 = auto-detect).");/* just for backward compatibility */static int enable;module_param(enable, bool, 0444);/* *  Direct registers */enum { DEVICE_INTEL, DEVICE_SIS, DEVICE_ALI, DEVICE_NFORCE };#define ICHREG(x) ICH_REG_##x#define DEFINE_REGSET(name,base) \enum { \	ICH_REG_##name##_BDBAR	= base + 0x0,	/* dword - buffer descriptor list base address */ \	ICH_REG_##name##_CIV	= base + 0x04,	/* byte - current index value */ \	ICH_REG_##name##_LVI	= base + 0x05,	/* byte - last valid index */ \	ICH_REG_##name##_SR	= base + 0x06,	/* byte - status register */ \	ICH_REG_##name##_PICB	= base + 0x08,	/* word - position in current buffer */ \	ICH_REG_##name##_PIV	= base + 0x0a,	/* byte - prefetched index value */ \	ICH_REG_##name##_CR	= base + 0x0b,	/* byte - control register */ \};/* busmaster blocks */DEFINE_REGSET(OFF, 0);		/* offset *//* values for each busmaster block *//* LVI */#define ICH_REG_LVI_MASK		0x1f/* SR */#define ICH_FIFOE			0x10	/* FIFO error */#define ICH_BCIS			0x08	/* buffer completion interrupt status */#define ICH_LVBCI			0x04	/* last valid buffer completion interrupt */#define ICH_CELV			0x02	/* current equals last valid */#define ICH_DCH				0x01	/* DMA controller halted *//* PIV */#define ICH_REG_PIV_MASK		0x1f	/* mask *//* CR */#define ICH_IOCE			0x10	/* interrupt on completion enable */#define ICH_FEIE			0x08	/* fifo error interrupt enable */#define ICH_LVBIE			0x04	/* last valid buffer interrupt enable */#define ICH_RESETREGS			0x02	/* reset busmaster registers */#define ICH_STARTBM			0x01	/* start busmaster operation *//* global block */#define ICH_REG_GLOB_CNT		0x3c	/* dword - global control */#define   ICH_TRIE		0x00000040	/* tertiary resume interrupt enable */#define   ICH_SRIE		0x00000020	/* secondary resume interrupt enable */#define   ICH_PRIE		0x00000010	/* primary resume interrupt enable */#define   ICH_ACLINK		0x00000008	/* AClink shut off */#define   ICH_AC97WARM		0x00000004	/* AC'97 warm reset */#define   ICH_AC97COLD		0x00000002	/* AC'97 cold reset */#define   ICH_GIE		0x00000001	/* GPI interrupt enable */#define ICH_REG_GLOB_STA		0x40	/* dword - global status */#define   ICH_TRI		0x20000000	/* ICH4: tertiary (AC_SDIN2) resume interrupt */#define   ICH_TCR		0x10000000	/* ICH4: tertiary (AC_SDIN2) codec ready */#define   ICH_BCS		0x08000000	/* ICH4: bit clock stopped */#define   ICH_SPINT		0x04000000	/* ICH4: S/PDIF interrupt */#define   ICH_P2INT		0x02000000	/* ICH4: PCM2-In interrupt */#define   ICH_M2INT		0x01000000	/* ICH4: Mic2-In interrupt */#define   ICH_SAMPLE_CAP	0x00c00000	/* ICH4: sample capability bits (RO) */#define   ICH_MULTICHAN_CAP	0x00300000	/* ICH4: multi-channel capability bits (RO) */#define   ICH_MD3		0x00020000	/* modem power down semaphore */#define   ICH_AD3		0x00010000	/* audio power down semaphore */#define   ICH_RCS		0x00008000	/* read completion status */#define   ICH_BIT3		0x00004000	/* bit 3 slot 12 */#define   ICH_BIT2		0x00002000	/* bit 2 slot 12 */#define   ICH_BIT1		0x00001000	/* bit 1 slot 12 */#define   ICH_SRI		0x00000800	/* secondary (AC_SDIN1) resume interrupt */#define   ICH_PRI		0x00000400	/* primary (AC_SDIN0) resume interrupt */#define   ICH_SCR		0x00000200	/* secondary (AC_SDIN1) codec ready */#define   ICH_PCR		0x00000100	/* primary (AC_SDIN0) codec ready */#define   ICH_MCINT		0x00000080	/* MIC capture interrupt */#define   ICH_POINT		0x00000040	/* playback interrupt */#define   ICH_PIINT		0x00000020	/* capture interrupt */#define   ICH_NVSPINT		0x00000010	/* nforce spdif interrupt */#define   ICH_MOINT		0x00000004	/* modem playback interrupt */#define   ICH_MIINT		0x00000002	/* modem capture interrupt */#define   ICH_GSCI		0x00000001	/* GPI status change interrupt */#define ICH_REG_ACC_SEMA		0x44	/* byte - codec write semaphore */#define   ICH_CAS		0x01		/* codec access semaphore */#define ICH_MAX_FRAGS		32		/* max hw frags *//* *   */enum { ICHD_MDMIN, ICHD_MDMOUT, ICHD_MDMLAST = ICHD_MDMOUT };enum { ALID_MDMIN, ALID_MDMOUT, ALID_MDMLAST = ALID_MDMOUT };#define get_ichdev(substream) (substream->runtime->private_data)struct ichdev {	unsigned int ichd;			/* ich device number */	unsigned long reg_offset;		/* offset to bmaddr */	u32 *bdbar;				/* CPU address (32bit) */	unsigned int bdbar_addr;		/* PCI bus address (32bit) */	struct snd_pcm_substream *substream;	unsigned int physbuf;			/* physical address (32bit) */        unsigned int size;        unsigned int fragsize;        unsigned int fragsize1;        unsigned int position;        int frags;        int lvi;        int lvi_frag;	int civ;	int ack;	int ack_reload;	unsigned int ack_bit;	unsigned int roff_sr;	unsigned int roff_picb;	unsigned int int_sta_mask;		/* interrupt status mask */	unsigned int ali_slot;			/* ALI DMA slot */	struct snd_ac97 *ac97;};struct intel8x0m {	unsigned int device_type;	int irq;	void __iomem *addr;	void __iomem *bmaddr;	struct pci_dev *pci;	struct snd_card *card;	int pcm_devs;	struct snd_pcm *pcm[2];	struct ichdev ichd[2];	unsigned int in_ac97_init: 1;	struct snd_ac97_bus *ac97_bus;	struct snd_ac97 *ac97;	spinlock_t reg_lock;		struct snd_dma_buffer bdbars;	u32 bdbars_count;	u32 int_sta_reg;		/* interrupt status register */	u32 int_sta_mask;		/* interrupt status mask */	unsigned int pcm_pos_shift;};static struct pci_device_id snd_intel8x0m_ids[] = {	{ 0x8086, 0x2416, PCI_ANY_ID, PCI_ANY_ID, 0, 0, DEVICE_INTEL },	/* 82801AA */	{ 0x8086, 0x2426, PCI_ANY_ID, PCI_ANY_ID, 0, 0, DEVICE_INTEL },	/* 82901AB */	{ 0x8086, 0x2446, PCI_ANY_ID, PCI_ANY_ID, 0, 0, DEVICE_INTEL },	/* 82801BA */	{ 0x8086, 0x2486, PCI_ANY_ID, PCI_ANY_ID, 0, 0, DEVICE_INTEL },	/* ICH3 */	{ 0x8086, 0x24c6, PCI_ANY_ID, PCI_ANY_ID, 0, 0, DEVICE_INTEL }, /* ICH4 */	{ 0x8086, 0x24d6, PCI_ANY_ID, PCI_ANY_ID, 0, 0, DEVICE_INTEL }, /* ICH5 */	{ 0x8086, 0x266d, PCI_ANY_ID, PCI_ANY_ID, 0, 0, DEVICE_INTEL },	/* ICH6 */	{ 0x8086, 0x27dd, PCI_ANY_ID, PCI_ANY_ID, 0, 0, DEVICE_INTEL },	/* ICH7 */	{ 0x8086, 0x7196, PCI_ANY_ID, PCI_ANY_ID, 0, 0, DEVICE_INTEL },	/* 440MX */	{ 0x1022, 0x7446, PCI_ANY_ID, PCI_ANY_ID, 0, 0, DEVICE_INTEL },	/* AMD768 */	{ 0x1039, 0x7013, PCI_ANY_ID, PCI_ANY_ID, 0, 0, DEVICE_SIS },	/* SI7013 */	{ 0x10de, 0x01c1, PCI_ANY_ID, PCI_ANY_ID, 0, 0, DEVICE_NFORCE }, /* NFORCE */	{ 0x10de, 0x0069, PCI_ANY_ID, PCI_ANY_ID, 0, 0, DEVICE_NFORCE }, /* NFORCE2 */	{ 0x10de, 0x0089, PCI_ANY_ID, PCI_ANY_ID, 0, 0, DEVICE_NFORCE }, /* NFORCE2s */	{ 0x10de, 0x00d9, PCI_ANY_ID, PCI_ANY_ID, 0, 0, DEVICE_NFORCE }, /* NFORCE3 */#if 0	{ 0x1022, 0x746d, PCI_ANY_ID, PCI_ANY_ID, 0, 0, DEVICE_INTEL },	/* AMD8111 */	{ 0x10b9, 0x5455, PCI_ANY_ID, PCI_ANY_ID, 0, 0, DEVICE_ALI },   /* Ali5455 */#endif	{ 0, }};MODULE_DEVICE_TABLE(pci, snd_intel8x0m_ids);/* *  Lowlevel I/O - busmaster */static inline u8 igetbyte(struct intel8x0m *chip, u32 offset){	return ioread8(chip->bmaddr + offset);}static inline u16 igetword(struct intel8x0m *chip, u32 offset){	return ioread16(chip->bmaddr + offset);}static inline u32 igetdword(struct intel8x0m *chip, u32 offset){	return ioread32(chip->bmaddr + offset);}static inline void iputbyte(struct intel8x0m *chip, u32 offset, u8 val){	iowrite8(val, chip->bmaddr + offset);}static inline void iputword(struct intel8x0m *chip, u32 offset, u16 val){	iowrite16(val, chip->bmaddr + offset);}static inline void iputdword(struct intel8x0m *chip, u32 offset, u32 val){	iowrite32(val, chip->bmaddr + offset);}/* *  Lowlevel I/O - AC'97 registers */static inline u16 iagetword(struct intel8x0m *chip, u32 offset){	return ioread16(chip->addr + offset);}static inline void iaputword(struct intel8x0m *chip, u32 offset, u16 val){	iowrite16(val, chip->addr + offset);}/* *  Basic I/O *//* * access to AC97 codec via normal i/o (for ICH and SIS7013) *//* return the GLOB_STA bit for the corresponding codec */static unsigned int get_ich_codec_bit(struct intel8x0m *chip, unsigned int codec){	static unsigned int codec_bit[3] = {		ICH_PCR, ICH_SCR, ICH_TCR	};	snd_assert(codec < 3, return ICH_PCR);	return codec_bit[codec];}static int snd_intel8x0m_codec_semaphore(struct intel8x0m *chip, unsigned int codec){	int time;		if (codec > 1)		return -EIO;	codec = get_ich_codec_bit(chip, codec);	/* codec ready ? */	if ((igetdword(chip, ICHREG(GLOB_STA)) & codec) == 0)		return -EIO;	/* Anyone holding a semaphore for 1 msec should be shot... */	time = 100;      	do {      		if (!(igetbyte(chip, ICHREG(ACC_SEMA)) & ICH_CAS))      			return 0;		udelay(10);	} while (time--);	/* access to some forbidden (non existant) ac97 registers will not	 * reset the semaphore. So even if you don't get the semaphore, still	 * continue the access. We don't need the semaphore anyway. */	snd_printk(KERN_ERR "codec_semaphore: semaphore is not ready [0x%x][0x%x]\n",			igetbyte(chip, ICHREG(ACC_SEMA)), igetdword(chip, ICHREG(GLOB_STA)));	iagetword(chip, 0);	/* clear semaphore flag */	/* I don't care about the semaphore */	return -EBUSY;} static void snd_intel8x0_codec_write(struct snd_ac97 *ac97,				     unsigned short reg,				     unsigned short val){	struct intel8x0m *chip = ac97->private_data;		if (snd_intel8x0m_codec_semaphore(chip, ac97->num) < 0) {		if (! chip->in_ac97_init)			snd_printk(KERN_ERR "codec_write %d: semaphore is not ready for register 0x%x\n", ac97->num, reg);	}	iaputword(chip, reg + ac97->num * 0x80, val);}static unsigned short snd_intel8x0_codec_read(struct snd_ac97 *ac97,					      unsigned short reg){	struct intel8x0m *chip = ac97->private_data;	unsigned short res;	unsigned int tmp;	if (snd_intel8x0m_codec_semaphore(chip, ac97->num) < 0) {		if (! chip->in_ac97_init)			snd_printk(KERN_ERR "codec_read %d: semaphore is not ready for register 0x%x\n", ac97->num, reg);		res = 0xffff;	} else {		res = iagetword(chip, reg + ac97->num * 0x80);		if ((tmp = igetdword(chip, ICHREG(GLOB_STA))) & ICH_RCS) {			/* reset RCS and preserve other R/WC bits */			iputdword(chip, ICHREG(GLOB_STA),				  tmp & ~(ICH_SRI|ICH_PRI|ICH_TRI|ICH_GSCI));			if (! chip->in_ac97_init)				snd_printk(KERN_ERR "codec_read %d: read timeout for register 0x%x\n", ac97->num, reg);			res = 0xffff;		}	}	if (reg == AC97_GPIO_STATUS)		iagetword(chip, 0); /* clear semaphore */	return res;}/* * DMA I/O */static void snd_intel8x0_setup_periods(struct intel8x0m *chip, struct ichdev *ichdev) {	int idx;	u32 *bdbar = ichdev->bdbar;	unsigned long port = ichdev->reg_offset;	iputdword(chip, port + ICH_REG_OFF_BDBAR, ichdev->bdbar_addr);	if (ichdev->size == ichdev->fragsize) {		ichdev->ack_reload = ichdev->ack = 2;		ichdev->fragsize1 = ichdev->fragsize >> 1;		for (idx = 0; idx < (ICH_REG_LVI_MASK + 1) * 2; idx += 4) {			bdbar[idx + 0] = cpu_to_le32(ichdev->physbuf);			bdbar[idx + 1] = cpu_to_le32(0x80000000 | /* interrupt on completion */						     ichdev->fragsize1 >> chip->pcm_pos_shift);			bdbar[idx + 2] = cpu_to_le32(ichdev->physbuf + (ichdev->size >> 1));			bdbar[idx + 3] = cpu_to_le32(0x80000000 | /* interrupt on completion */						     ichdev->fragsize1 >> chip->pcm_pos_shift);		}		ichdev->frags = 2;	} else {		ichdev->ack_reload = ichdev->ack = 1;		ichdev->fragsize1 = ichdev->fragsize;		for (idx = 0; idx < (ICH_REG_LVI_MASK + 1) * 2; idx += 2) {			bdbar[idx + 0] = cpu_to_le32(ichdev->physbuf + (((idx >> 1) * ichdev->fragsize) % ichdev->size));			bdbar[idx + 1] = cpu_to_le32(0x80000000 | /* interrupt on completion */						     ichdev->fragsize >> chip->pcm_pos_shift);			// printk("bdbar[%i] = 0x%x [0x%x]\n", idx + 0, bdbar[idx + 0], bdbar[idx + 1]);		}		ichdev->frags = ichdev->size / ichdev->fragsize;	}	iputbyte(chip, port + ICH_REG_OFF_LVI, ichdev->lvi = ICH_REG_LVI_MASK);	ichdev->civ = 0;	iputbyte(chip, port + ICH_REG_OFF_CIV, 0);	ichdev->lvi_frag = ICH_REG_LVI_MASK % ichdev->frags;	ichdev->position = 0;#if 0	printk("lvi_frag = %i, frags = %i, period_size = 0x%x, period_size1 = 0x%x\n",			ichdev->lvi_frag, ichdev->frags, ichdev->fragsize, ichdev->fragsize1);#endif	/* clear interrupts */	iputbyte(chip, port + ichdev->roff_sr, ICH_FIFOE | ICH_BCIS | ICH_LVBCI);}/* *  Interrupt handler */static inline void snd_intel8x0_update(struct intel8x0m *chip, struct ichdev *ichdev){	unsigned long port = ichdev->reg_offset;	int civ, i, step;	int ack = 0;	civ = igetbyte(chip, port + ICH_REG_OFF_CIV);	if (civ == ichdev->civ) {		// snd_printd("civ same %d\n", civ);		step = 1;		ichdev->civ++;		ichdev->civ &= ICH_REG_LVI_MASK;	} else {		step = civ - ichdev->civ;		if (step < 0)

⌨️ 快捷键说明

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