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

📄 ymfpci_main.c

📁 h内核
💻 C
📖 第 1 页 / 共 5 页
字号:
static int snd_ymfpci_drec_source_get(snd_kcontrol_t *kcontrol, snd_ctl_elem_value_t *value){	ymfpci_t *chip = snd_kcontrol_chip(kcontrol);	u16 reg;	spin_lock_irq(&chip->reg_lock);	reg = snd_ymfpci_readw(chip, YDSXGR_GLOBALCTRL);	spin_unlock_irq(&chip->reg_lock);	if (!(reg & 0x100))		value->value.enumerated.item[0] = 0;	else		value->value.enumerated.item[0] = 1 + ((reg & 0x200) != 0);	return 0;}static int snd_ymfpci_drec_source_put(snd_kcontrol_t *kcontrol, snd_ctl_elem_value_t *value){	ymfpci_t *chip = snd_kcontrol_chip(kcontrol);	u16 reg, old_reg;	spin_lock_irq(&chip->reg_lock);	old_reg = snd_ymfpci_readw(chip, YDSXGR_GLOBALCTRL);	if (value->value.enumerated.item[0] == 0)		reg = old_reg & ~0x100;	else		reg = (old_reg & ~0x300) | 0x100 | ((value->value.enumerated.item[0] == 2) << 9);	snd_ymfpci_writew(chip, YDSXGR_GLOBALCTRL, reg);	spin_unlock_irq(&chip->reg_lock);	return reg != old_reg;}static snd_kcontrol_new_t snd_ymfpci_drec_source __devinitdata = {	.access =	SNDRV_CTL_ELEM_ACCESS_READWRITE,	.iface =	SNDRV_CTL_ELEM_IFACE_MIXER,	.name =		"Direct Recording Source",	.info =		snd_ymfpci_drec_source_info,	.get =		snd_ymfpci_drec_source_get,	.put =		snd_ymfpci_drec_source_put};/* *  Mixer controls */#define YMFPCI_SINGLE(xname, xindex, reg) \{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = xindex, \  .info = snd_ymfpci_info_single, \  .get = snd_ymfpci_get_single, .put = snd_ymfpci_put_single, \  .private_value = reg }static int snd_ymfpci_info_single(snd_kcontrol_t *kcontrol, snd_ctl_elem_info_t * uinfo){	unsigned int mask = 1;	switch (kcontrol->private_value) {	case YDSXGR_SPDIFOUTCTRL: break;	case YDSXGR_SPDIFINCTRL: break;	default: return -EINVAL;	}	uinfo->type = mask == 1 ? SNDRV_CTL_ELEM_TYPE_BOOLEAN : SNDRV_CTL_ELEM_TYPE_INTEGER;	uinfo->count = 1;	uinfo->value.integer.min = 0;	uinfo->value.integer.max = mask;	return 0;}static int snd_ymfpci_get_single(snd_kcontrol_t * kcontrol, snd_ctl_elem_value_t * ucontrol){	ymfpci_t *chip = snd_kcontrol_chip(kcontrol);	int reg = kcontrol->private_value;	unsigned int shift = 0, mask = 1, invert = 0;		switch (kcontrol->private_value) {	case YDSXGR_SPDIFOUTCTRL: break;	case YDSXGR_SPDIFINCTRL: break;	default: return -EINVAL;	}	ucontrol->value.integer.value[0] = (snd_ymfpci_readl(chip, reg) >> shift) & mask;	if (invert)		ucontrol->value.integer.value[0] = mask - ucontrol->value.integer.value[0];	return 0;}static int snd_ymfpci_put_single(snd_kcontrol_t * kcontrol, snd_ctl_elem_value_t * ucontrol){	ymfpci_t *chip = snd_kcontrol_chip(kcontrol);	int reg = kcontrol->private_value;	unsigned int shift = 0, mask = 1, invert = 0;	int change;	unsigned int val, oval;		switch (kcontrol->private_value) {	case YDSXGR_SPDIFOUTCTRL: break;	case YDSXGR_SPDIFINCTRL: break;	default: return -EINVAL;	}	val = (ucontrol->value.integer.value[0] & mask);	if (invert)		val = mask - val;	val <<= shift;	spin_lock_irq(&chip->reg_lock);	oval = snd_ymfpci_readl(chip, reg);	val = (oval & ~(mask << shift)) | val;	change = val != oval;	snd_ymfpci_writel(chip, reg, val);	spin_unlock_irq(&chip->reg_lock);	return change;}#define YMFPCI_DOUBLE(xname, xindex, reg) \{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = xindex, \  .info = snd_ymfpci_info_double, \  .get = snd_ymfpci_get_double, .put = snd_ymfpci_put_double, \  .private_value = reg }static int snd_ymfpci_info_double(snd_kcontrol_t *kcontrol, snd_ctl_elem_info_t * uinfo){	unsigned int reg = kcontrol->private_value;	unsigned int mask = 16383;	if (reg < 0x80 || reg >= 0xc0)		return -EINVAL;	uinfo->type = mask == 1 ? SNDRV_CTL_ELEM_TYPE_BOOLEAN : SNDRV_CTL_ELEM_TYPE_INTEGER;	uinfo->count = 2;	uinfo->value.integer.min = 0;	uinfo->value.integer.max = mask;	return 0;}static int snd_ymfpci_get_double(snd_kcontrol_t * kcontrol, snd_ctl_elem_value_t * ucontrol){	ymfpci_t *chip = snd_kcontrol_chip(kcontrol);	unsigned int reg = kcontrol->private_value;	unsigned int shift_left = 0, shift_right = 16, mask = 16383, invert = 0;	unsigned int val;		if (reg < 0x80 || reg >= 0xc0)		return -EINVAL;	spin_lock_irq(&chip->reg_lock);	val = snd_ymfpci_readl(chip, reg);	spin_unlock_irq(&chip->reg_lock);	ucontrol->value.integer.value[0] = (val >> shift_left) & mask;	ucontrol->value.integer.value[1] = (val >> shift_right) & mask;	if (invert) {		ucontrol->value.integer.value[0] = mask - ucontrol->value.integer.value[0];		ucontrol->value.integer.value[1] = mask - ucontrol->value.integer.value[1];	}	return 0;}static int snd_ymfpci_put_double(snd_kcontrol_t * kcontrol, snd_ctl_elem_value_t * ucontrol){	ymfpci_t *chip = snd_kcontrol_chip(kcontrol);	unsigned int reg = kcontrol->private_value;	unsigned int shift_left = 0, shift_right = 16, mask = 16383, invert = 0;	int change;	unsigned int val1, val2, oval;		if (reg < 0x80 || reg >= 0xc0)		return -EINVAL;	val1 = ucontrol->value.integer.value[0] & mask;	val2 = ucontrol->value.integer.value[1] & mask;	if (invert) {		val1 = mask - val1;		val2 = mask - val2;	}	val1 <<= shift_left;	val2 <<= shift_right;	spin_lock_irq(&chip->reg_lock);	oval = snd_ymfpci_readl(chip, reg);	val1 = (oval & ~((mask << shift_left) | (mask << shift_right))) | val1 | val2;	change = val1 != oval;	snd_ymfpci_writel(chip, reg, val1);	spin_unlock_irq(&chip->reg_lock);	return change;}/* * 4ch duplication */static int snd_ymfpci_info_dup4ch(snd_kcontrol_t *kcontrol, snd_ctl_elem_info_t * uinfo){	uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;	uinfo->count = 1;	uinfo->value.integer.min = 0;	uinfo->value.integer.max = 1;	return 0;}static int snd_ymfpci_get_dup4ch(snd_kcontrol_t * kcontrol, snd_ctl_elem_value_t * ucontrol){	ymfpci_t *chip = snd_kcontrol_chip(kcontrol);	ucontrol->value.integer.value[0] = chip->mode_dup4ch;	return 0;}static int snd_ymfpci_put_dup4ch(snd_kcontrol_t * kcontrol, snd_ctl_elem_value_t * ucontrol){	ymfpci_t *chip = snd_kcontrol_chip(kcontrol);	int change;	change = (ucontrol->value.integer.value[0] != chip->mode_dup4ch);	if (change)		chip->mode_dup4ch = !!ucontrol->value.integer.value[0];	return change;}static snd_kcontrol_new_t snd_ymfpci_controls[] __devinitdata = {YMFPCI_DOUBLE("Wave Playback Volume", 0, YDSXGR_NATIVEDACOUTVOL),YMFPCI_DOUBLE("Wave Capture Volume", 0, YDSXGR_NATIVEDACLOOPVOL),YMFPCI_DOUBLE("Digital Capture Volume", 0, YDSXGR_NATIVEDACINVOL),YMFPCI_DOUBLE("Digital Capture Volume", 1, YDSXGR_NATIVEADCINVOL),YMFPCI_DOUBLE("ADC Playback Volume", 0, YDSXGR_PRIADCOUTVOL),YMFPCI_DOUBLE("ADC Capture Volume", 0, YDSXGR_PRIADCLOOPVOL),YMFPCI_DOUBLE("ADC Playback Volume", 1, YDSXGR_SECADCOUTVOL),YMFPCI_DOUBLE("ADC Capture Volume", 1, YDSXGR_SECADCLOOPVOL),YMFPCI_DOUBLE("FM Legacy Volume", 0, YDSXGR_LEGACYOUTVOL),YMFPCI_DOUBLE(SNDRV_CTL_NAME_IEC958("AC97 ", PLAYBACK,VOLUME), 0, YDSXGR_ZVOUTVOL),YMFPCI_DOUBLE(SNDRV_CTL_NAME_IEC958("", CAPTURE,VOLUME), 0, YDSXGR_ZVLOOPVOL),YMFPCI_DOUBLE(SNDRV_CTL_NAME_IEC958("AC97 ",PLAYBACK,VOLUME), 1, YDSXGR_SPDIFOUTVOL),YMFPCI_DOUBLE(SNDRV_CTL_NAME_IEC958("",CAPTURE,VOLUME), 1, YDSXGR_SPDIFLOOPVOL),YMFPCI_SINGLE(SNDRV_CTL_NAME_IEC958("",PLAYBACK,SWITCH), 0, YDSXGR_SPDIFOUTCTRL),YMFPCI_SINGLE(SNDRV_CTL_NAME_IEC958("",CAPTURE,SWITCH), 0, YDSXGR_SPDIFINCTRL),{	.iface = SNDRV_CTL_ELEM_IFACE_MIXER,	.name = "4ch Duplication",	.info = snd_ymfpci_info_dup4ch,	.get = snd_ymfpci_get_dup4ch,	.put = snd_ymfpci_put_dup4ch,},};/* * GPIO */static int snd_ymfpci_get_gpio_out(ymfpci_t *chip, int pin){	u16 reg, mode;	unsigned long flags;	spin_lock_irqsave(&chip->reg_lock, flags);	reg = snd_ymfpci_readw(chip, YDSXGR_GPIOFUNCENABLE);	reg &= ~(1 << (pin + 8));	reg |= (1 << pin);	snd_ymfpci_writew(chip, YDSXGR_GPIOFUNCENABLE, reg);	/* set the level mode for input line */	mode = snd_ymfpci_readw(chip, YDSXGR_GPIOTYPECONFIG);	mode &= ~(3 << (pin * 2));	snd_ymfpci_writew(chip, YDSXGR_GPIOTYPECONFIG, mode);	snd_ymfpci_writew(chip, YDSXGR_GPIOFUNCENABLE, reg | (1 << (pin + 8)));	mode = snd_ymfpci_readw(chip, YDSXGR_GPIOINSTATUS);	spin_unlock_irqrestore(&chip->reg_lock, flags);	return (mode >> pin) & 1;}static int snd_ymfpci_set_gpio_out(ymfpci_t *chip, int pin, int enable){	u16 reg;	unsigned long flags;	spin_lock_irqsave(&chip->reg_lock, flags);	reg = snd_ymfpci_readw(chip, YDSXGR_GPIOFUNCENABLE);	reg &= ~(1 << pin);	reg &= ~(1 << (pin + 8));	snd_ymfpci_writew(chip, YDSXGR_GPIOFUNCENABLE, reg);	snd_ymfpci_writew(chip, YDSXGR_GPIOOUTCTRL, enable << pin);	snd_ymfpci_writew(chip, YDSXGR_GPIOFUNCENABLE, reg | (1 << (pin + 8)));	spin_unlock_irqrestore(&chip->reg_lock, flags);	return 0;}static int snd_ymfpci_gpio_sw_info(snd_kcontrol_t *kcontrol, snd_ctl_elem_info_t *uinfo){	uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;	uinfo->count = 1;	uinfo->value.integer.min = 0;	uinfo->value.integer.max = 1;	return 0;}static int snd_ymfpci_gpio_sw_get(snd_kcontrol_t *kcontrol, snd_ctl_elem_value_t *ucontrol){	ymfpci_t *chip = snd_kcontrol_chip(kcontrol);	int pin = (int)kcontrol->private_value;	ucontrol->value.integer.value[0] = snd_ymfpci_get_gpio_out(chip, pin);	return 0;}static int snd_ymfpci_gpio_sw_put(snd_kcontrol_t *kcontrol, snd_ctl_elem_value_t *ucontrol){	ymfpci_t *chip = snd_kcontrol_chip(kcontrol);	int pin = (int)kcontrol->private_value;	if (snd_ymfpci_get_gpio_out(chip, pin) != ucontrol->value.integer.value[0]) {		snd_ymfpci_set_gpio_out(chip, pin, !!ucontrol->value.integer.value[0]);		ucontrol->value.integer.value[0] = snd_ymfpci_get_gpio_out(chip, pin);		return 1;	}	return 0;}static snd_kcontrol_new_t snd_ymfpci_rear_shared __devinitdata = {	.name = "Shared Rear/Line-In Switch",	.iface = SNDRV_CTL_ELEM_IFACE_MIXER,	.info = snd_ymfpci_gpio_sw_info,	.get = snd_ymfpci_gpio_sw_get,	.put = snd_ymfpci_gpio_sw_put,	.private_value = 2,};/* *  Mixer routines */static void snd_ymfpci_mixer_free_ac97_bus(ac97_bus_t *bus){	ymfpci_t *chip = bus->private_data;	chip->ac97_bus = NULL;}static void snd_ymfpci_mixer_free_ac97(ac97_t *ac97){	ymfpci_t *chip = ac97->private_data;	chip->ac97 = NULL;}int __devinit snd_ymfpci_mixer(ymfpci_t *chip, int rear_switch){	ac97_template_t ac97;	snd_kcontrol_t *kctl;	unsigned int idx;	int err;	static ac97_bus_ops_t ops = {		.write = snd_ymfpci_codec_write,		.read = snd_ymfpci_codec_read,	};	if ((err = snd_ac97_bus(chip->card, 0, &ops, chip, &chip->ac97_bus)) < 0)		return err;	chip->ac97_bus->private_free = snd_ymfpci_mixer_free_ac97_bus;	chip->ac97_bus->no_vra = 1; /* YMFPCI doesn't need VRA */	memset(&ac97, 0, sizeof(ac97));	ac97.private_data = chip;	ac97.private_free = snd_ymfpci_mixer_free_ac97;	if ((err = snd_ac97_mixer(chip->ac97_bus, &ac97, &chip->ac97)) < 0)		return err;	/* to be sure */	snd_ac97_update_bits(chip->ac97, AC97_EXTENDED_STATUS,			     AC97_EA_VRA|AC97_EA_VRM, 0);	for (idx = 0; idx < ARRAY_SIZE(snd_ymfpci_controls); idx++) {		if ((err = snd_ctl_add(chip->card, snd_ctl_new1(&snd_ymfpci_controls[idx], chip))) < 0)			return err;	}	/* add S/PDIF control */	snd_assert(chip->pcm_spdif != NULL, return -EIO);	if ((err = snd_ctl_add(chip->card, kctl = snd_ctl_new1(&snd_ymfpci_spdif_default, chip))) < 0)		return err;	kctl->id.device = chip->pcm_spdif->device;	if ((err = snd_ctl_add(chip->card, kctl = snd_ctl_new1(&snd_ymfpci_spdif_mask, chip))) < 0)		return err;	kctl->id.device = chip->pcm_spdif->device;	if ((err = snd_ctl_add(chip->card, kctl = snd_ctl_new1(&snd_ymfpci_spdif_stream, chip))) < 0)		return err;	kctl->id.device = chip->pcm_spdif->device;	chip->spdif_pcm_ctl = kctl;	/* direct recording source */	if (chip->device_id == PCI_DEVICE_ID_YAMAHA_754 &&	    (err = snd_ctl_add(chip->card, kctl = snd_ctl_new1(&snd_ymfpci_drec_source, chip))) < 0)		return err;	/*	 * shared rear/line-in	 */	if (rear_switch) {		if ((err = snd_ctl_add(chip->card, snd_ctl_new1(&snd_ymfpci_rear_shared, chip))) < 0)			return err;	}	return 0;}/* * timer */static int snd_ymfpci_timer_start(snd_timer_t *timer){	ymfpci_t *chip;	unsigned long flags;	unsigned int count;	chip = snd_timer_chip(timer);	count = timer->sticks - 1;	if (count == 0) /* minimum time is 20.8 us */		count = 1;	spin_lock_irqsave(&chip->reg_lock, flags);	snd_ymfpci_writew(chip, YDSXGR_TIMERCOUNT, count);	snd_ymfpci_writeb(chip, YDSXGR_TIMERCTRL, 0x03);	spin_unlock_irqrestore(&chip->reg_lock, flags);	return 0;}static int snd_ymfpci_timer_stop(snd_timer_t *timer){	ymfpci_t *chip;	unsigned long flags;	chip = snd_timer_chip(timer);	spin_lock_irqsave(&chip->reg_lock, flags);	snd_ymfpci_writeb(chip, YDSXGR_TIMERCTRL, 0x00);	spin_unlock_irqrestore(&chip->reg_lock, flags);	return 0;}static int snd_ymfpci_timer_precise_resolution(snd_timer_t *timer,					       unsigned long *num, unsigned long *den){	*num = 1;	*den = 96000;	return 0;}static struct _snd_timer_hardware snd_ymfpci_timer_hw = {	.flags = SNDRV_TIMER_HW_AUTO,	.resolution = 10417, /* 1/2fs = 10.41666...us */	.ticks = 65536,	.start = snd_ymfpci_timer_start,	.stop = snd_ymfpci_timer_stop,	.precise_resolution = snd_ymfpci_timer_precise_resolution,};int __devinit snd_ymfpci_timer(ymfpci_t *chip, int device){	snd_timer_t *timer = NULL;	snd_timer_id_t tid;	int err;	tid.dev_class = SNDRV_TIMER_CLASS_CARD;	tid.dev_sclass = SNDRV_TIMER_SCLASS_NONE;	tid.card = chip->card->number;	tid.device = device;	tid.subdevice = 0;	if ((err = snd_timer_new(chip->card, "YMFPCI", &tid, &timer)) >= 0) {		strcpy(timer->name, "YMFPCI timer");		timer->private_data = chip;		timer->hw = snd_ymfpci_timer_hw;	}

⌨️ 快捷键说明

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