tumbler.c

来自「Linux Kernel 2.6.9 for OMAP1710」· C语言 代码 · 共 1,171 行 · 第 1/2 页

C
1,171
字号
		vol = mixer_volume_table[vol];		for (j = 0; j < 3; j++)			block[i * 3 + j] = (vol >> ((2 - j) * 8)) & 0xff;	}	if (snd_pmac_keywest_write(&mix->i2c, reg, 9, block) < 0) {		snd_printk("failed to set mono volume %d\n", reg);  		return -EINVAL; 	}	return 0;}static int snapper_set_mix_vol(pmac_tumbler_t *mix, int idx){	if (! mix->i2c.client)		return -ENODEV;	if (snapper_set_mix_vol1(mix, idx, 0, TAS_REG_LMIX) < 0 ||	    snapper_set_mix_vol1(mix, idx, 1, TAS_REG_RMIX) < 0)		return -EINVAL;	return 0;}static int snapper_info_mix(snd_kcontrol_t *kcontrol, snd_ctl_elem_info_t *uinfo){	uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;	uinfo->count = 2;	uinfo->value.integer.min = 0;	uinfo->value.integer.max = ARRAY_SIZE(mixer_volume_table) - 1;	return 0;}static int snapper_get_mix(snd_kcontrol_t *kcontrol, snd_ctl_elem_value_t *ucontrol){	int idx = (int)kcontrol->private_value;	pmac_t *chip = snd_kcontrol_chip(kcontrol);	pmac_tumbler_t *mix;	if (! (mix = chip->mixer_data))		return -ENODEV;	ucontrol->value.integer.value[0] = mix->mix_vol[idx][0];	ucontrol->value.integer.value[1] = mix->mix_vol[idx][1];	return 0;}static int snapper_put_mix(snd_kcontrol_t *kcontrol, snd_ctl_elem_value_t *ucontrol){	int idx = (int)kcontrol->private_value;	pmac_t *chip = snd_kcontrol_chip(kcontrol);	pmac_tumbler_t *mix;	int change;	if (! (mix = chip->mixer_data))		return -ENODEV;	change = mix->mix_vol[idx][0] != ucontrol->value.integer.value[0] ||		mix->mix_vol[idx][1] != ucontrol->value.integer.value[1];	if (change) {		mix->mix_vol[idx][0] = ucontrol->value.integer.value[0];		mix->mix_vol[idx][1] = ucontrol->value.integer.value[1];		snapper_set_mix_vol(mix, idx);	}	return change;}/* * mute switches */enum { TUMBLER_MUTE_HP, TUMBLER_MUTE_AMP };static int tumbler_get_mute_switch(snd_kcontrol_t *kcontrol, snd_ctl_elem_value_t *ucontrol){	pmac_t *chip = snd_kcontrol_chip(kcontrol);	pmac_tumbler_t *mix;	pmac_gpio_t *gp;	if (! (mix = chip->mixer_data))		return -ENODEV;	gp = (kcontrol->private_value == TUMBLER_MUTE_HP) ? &mix->hp_mute : &mix->amp_mute;	ucontrol->value.integer.value[0] = ! read_audio_gpio(gp);	return 0;}static int tumbler_put_mute_switch(snd_kcontrol_t *kcontrol, snd_ctl_elem_value_t *ucontrol){	pmac_t *chip = snd_kcontrol_chip(kcontrol);	pmac_tumbler_t *mix;	pmac_gpio_t *gp;	int val;#ifdef PMAC_SUPPORT_AUTOMUTE	if (chip->update_automute && chip->auto_mute)		return 0; /* don't touch in the auto-mute mode */#endif		if (! (mix = chip->mixer_data))		return -ENODEV;	gp = (kcontrol->private_value == TUMBLER_MUTE_HP) ? &mix->hp_mute : &mix->amp_mute;	val = ! read_audio_gpio(gp);	if (val != ucontrol->value.integer.value[0]) {		write_audio_gpio(gp, ! ucontrol->value.integer.value[0]);		return 1;	}	return 0;}static int snapper_set_capture_source(pmac_tumbler_t *mix){	if (! mix->i2c.client)		return -ENODEV;	return snd_pmac_keywest_write_byte(&mix->i2c, TAS_REG_ACS,					   mix->capture_source ? 2 : 0);}static int snapper_info_capture_source(snd_kcontrol_t *kcontrol, snd_ctl_elem_info_t *uinfo){	static char *texts[2] = {		"Line", "Mic"	};	uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;	uinfo->count = 1;	uinfo->value.enumerated.items = 2;	if (uinfo->value.enumerated.item > 1)		uinfo->value.enumerated.item = 1;	strcpy(uinfo->value.enumerated.name, texts[uinfo->value.enumerated.item]);	return 0;}static int snapper_get_capture_source(snd_kcontrol_t *kcontrol, snd_ctl_elem_value_t *ucontrol){	pmac_t *chip = snd_kcontrol_chip(kcontrol);	pmac_tumbler_t *mix = chip->mixer_data;	snd_assert(mix, return -ENODEV);	ucontrol->value.integer.value[0] = mix->capture_source;	return 0;}static int snapper_put_capture_source(snd_kcontrol_t *kcontrol, snd_ctl_elem_value_t *ucontrol){	pmac_t *chip = snd_kcontrol_chip(kcontrol);	pmac_tumbler_t *mix = chip->mixer_data;	int change;	snd_assert(mix, return -ENODEV);	change = ucontrol->value.integer.value[0] != mix->capture_source;	if (change) {		mix->capture_source = !!ucontrol->value.integer.value[0];		snapper_set_capture_source(mix);	}	return change;}#define DEFINE_SNAPPER_MIX(xname,idx,ofs) { \	.iface = SNDRV_CTL_ELEM_IFACE_MIXER,\	.name = xname, \	.info = snapper_info_mix, \	.get = snapper_get_mix, \	.put = snapper_put_mix, \	.index = idx,\	.private_value = ofs, \}/* */static snd_kcontrol_new_t tumbler_mixers[] __initdata = {	{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER,	  .name = "Master Playback Volume",	  .info = tumbler_info_master_volume,	  .get = tumbler_get_master_volume,	  .put = tumbler_put_master_volume	},	{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER,	  .name = "Master Playback Switch",	  .info = snd_pmac_boolean_stereo_info,	  .get = tumbler_get_master_switch,	  .put = tumbler_put_master_switch	},	DEFINE_MONO("Tone Control - Bass", bass),	DEFINE_MONO("Tone Control - Treble", treble),	DEFINE_MONO("PCM Playback Volume", pcm),	{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER,	  .name = "DRC Range",	  .info = tumbler_info_drc_value,	  .get = tumbler_get_drc_value,	  .put = tumbler_put_drc_value	},};static snd_kcontrol_new_t snapper_mixers[] __initdata = {	{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER,	  .name = "Master Playback Volume",	  .info = tumbler_info_master_volume,	  .get = tumbler_get_master_volume,	  .put = tumbler_put_master_volume	},	{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER,	  .name = "Master Playback Switch",	  .info = snd_pmac_boolean_stereo_info,	  .get = tumbler_get_master_switch,	  .put = tumbler_put_master_switch	},	DEFINE_SNAPPER_MIX("PCM Playback Volume", 0, VOL_IDX_PCM),	DEFINE_SNAPPER_MIX("PCM Playback Volume", 1, VOL_IDX_PCM2),	DEFINE_SNAPPER_MIX("Monitor Mix Volume", 0, VOL_IDX_ADC),	DEFINE_SNAPPER_MONO("Tone Control - Bass", bass),	DEFINE_SNAPPER_MONO("Tone Control - Treble", treble),	{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER,	  .name = "DRC Range",	  .info = tumbler_info_drc_value,	  .get = tumbler_get_drc_value,	  .put = tumbler_put_drc_value	},	{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER,	  .name = "Input Source", /* FIXME: "Capture Source" doesn't work properly */	  .info = snapper_info_capture_source,	  .get = snapper_get_capture_source,	  .put = snapper_put_capture_source	},};static snd_kcontrol_new_t tumbler_hp_sw __initdata = {	.iface = SNDRV_CTL_ELEM_IFACE_MIXER,	.name = "Headphone Playback Switch",	.info = snd_pmac_boolean_mono_info,	.get = tumbler_get_mute_switch,	.put = tumbler_put_mute_switch,	.private_value = TUMBLER_MUTE_HP,};static snd_kcontrol_new_t tumbler_speaker_sw __initdata = {	.iface = SNDRV_CTL_ELEM_IFACE_MIXER,	.name = "PC Speaker Playback Switch",	.info = snd_pmac_boolean_mono_info,	.get = tumbler_get_mute_switch,	.put = tumbler_put_mute_switch,	.private_value = TUMBLER_MUTE_AMP,};static snd_kcontrol_new_t tumbler_drc_sw __initdata = {	.iface = SNDRV_CTL_ELEM_IFACE_MIXER,	.name = "DRC Switch",	.info = snd_pmac_boolean_mono_info,	.get = tumbler_get_drc_switch,	.put = tumbler_put_drc_switch};#ifdef PMAC_SUPPORT_AUTOMUTE/* * auto-mute stuffs */static int tumbler_detect_headphone(pmac_t *chip){	pmac_tumbler_t *mix = chip->mixer_data;	return read_audio_gpio(&mix->hp_detect);}static void check_mute(pmac_t *chip, pmac_gpio_t *gp, int val, int do_notify, snd_kcontrol_t *sw){	//pmac_tumbler_t *mix = chip->mixer_data;	if (val != read_audio_gpio(gp)) {		write_audio_gpio(gp, val);		if (do_notify)			snd_ctl_notify(chip->card, SNDRV_CTL_EVENT_MASK_VALUE, &sw->id);	}}static struct work_struct device_change;static voiddevice_change_handler(void *self){	pmac_t *chip = (pmac_t*) self;	pmac_tumbler_t *mix;	if (!chip)		return;	mix = chip->mixer_data;	/* first set the DRC so the speaker do not explode -ReneR */	if (chip->model == PMAC_TUMBLER)		tumbler_set_drc(mix);	else		snapper_set_drc(mix);	/* reset the master volume so the correct amplification is applied */	tumbler_set_master_volume(mix);}static void tumbler_update_automute(pmac_t *chip, int do_notify){	if (chip->auto_mute) {		pmac_tumbler_t *mix = chip->mixer_data;		snd_assert(mix, return);		if (tumbler_detect_headphone(chip)) {			/* mute speaker */			check_mute(chip, &mix->amp_mute, 1, do_notify, chip->speaker_sw_ctl);			check_mute(chip, &mix->hp_mute, 0, do_notify, chip->master_sw_ctl);			mix->drc_enable = 0;		} else {			/* unmute speaker */			check_mute(chip, &mix->amp_mute, 0, do_notify, chip->speaker_sw_ctl);			check_mute(chip, &mix->hp_mute, 1, do_notify, chip->master_sw_ctl);			mix->drc_enable = 1;		}		if (do_notify) {			snd_ctl_notify(chip->card, SNDRV_CTL_EVENT_MASK_VALUE,				       &chip->hp_detect_ctl->id);			snd_ctl_notify(chip->card, SNDRV_CTL_EVENT_MASK_VALUE,			               &chip->drc_sw_ctl->id);		}		/* finally we need to schedule an update of the mixer values		   (master and DRC are enough for now) -ReneR */		schedule_work(&device_change);	}}#endif /* PMAC_SUPPORT_AUTOMUTE *//* interrupt - headphone plug changed */static irqreturn_t headphone_intr(int irq, void *devid, struct pt_regs *regs){	pmac_t *chip = devid;	if (chip->update_automute && chip->initialized) {		chip->update_automute(chip, 1);		return IRQ_HANDLED;	}	return IRQ_NONE;}/* look for audio-gpio device */static struct device_node *find_audio_device(const char *name){	struct device_node *np;  	if (! (np = find_devices("gpio")))		return NULL;  	for (np = np->child; np; np = np->sibling) {		char *property = get_property(np, "audio-gpio", NULL);		if (property && strcmp(property, name) == 0)			return np;	}  	return NULL;}/* look for audio-gpio device */static struct device_node *find_compatible_audio_device(const char *name){	struct device_node *np;  	if (! (np = find_devices("gpio")))		return NULL;  	for (np = np->child; np; np = np->sibling) {		if (device_is_compatible(np, name))			return np;	}  	return NULL;}/* find an audio device and get its address */static unsigned long tumbler_find_device(const char *device, pmac_gpio_t *gp, int is_compatible){	struct device_node *node;	u32 *base;	if (is_compatible)		node = find_compatible_audio_device(device);	else		node = find_audio_device(device);	if (! node) {		snd_printdd("cannot find device %s\n", device);		return -ENODEV;	}	base = (u32 *)get_property(node, "AAPL,address", NULL);	if (! base) {		snd_printd("cannot find address for device %s\n", device);		return -ENODEV;	}#ifdef CONFIG_PPC_HAS_FEATURE_CALLS	gp->addr = (*base) & 0x0000ffff;#else	gp->addr = (void*)ioremap((unsigned long)(*base), 1);#endif	base = (u32 *)get_property(node, "audio-gpio-active-state", NULL);	if (base)		gp->active_state = *base;	else		gp->active_state = 1;	return (node->n_intrs > 0) ? node->intrs[0].line : 0;}/* reset audio */static void tumbler_reset_audio(pmac_t *chip){	pmac_tumbler_t *mix = chip->mixer_data;	write_audio_gpio(&mix->audio_reset, 0);	big_mdelay(200);	write_audio_gpio(&mix->audio_reset, 1);	big_mdelay(100);	write_audio_gpio(&mix->audio_reset, 0);	big_mdelay(100);}#ifdef CONFIG_PMAC_PBOOK/* resume mixer */static void tumbler_resume(pmac_t *chip){	pmac_tumbler_t *mix = chip->mixer_data;	snd_assert(mix, return);	tumbler_reset_audio(chip);	if (mix->i2c.client && mix->i2c.init_client) {		if (mix->i2c.init_client(&mix->i2c) < 0)			printk(KERN_ERR "tumbler_init_client error\n");	} else		printk(KERN_ERR "tumbler: i2c is not initialized\n");	if (chip->model == PMAC_TUMBLER) {		tumbler_set_mono_volume(mix, &tumbler_pcm_vol_info);		tumbler_set_mono_volume(mix, &tumbler_bass_vol_info);		tumbler_set_mono_volume(mix, &tumbler_treble_vol_info);		tumbler_set_drc(mix);	} else {		snapper_set_mix_vol(mix, VOL_IDX_PCM);		snapper_set_mix_vol(mix, VOL_IDX_PCM2);		snapper_set_mix_vol(mix, VOL_IDX_ADC);		tumbler_set_mono_volume(mix, &snapper_bass_vol_info);		tumbler_set_mono_volume(mix, &snapper_treble_vol_info);		snapper_set_drc(mix);		snapper_set_capture_source(mix);	}	tumbler_set_master_volume(mix);	if (chip->update_automute)		chip->update_automute(chip, 0);}#endif/* initialize tumbler */static int __init tumbler_init(pmac_t *chip){	int irq, err;	pmac_tumbler_t *mix = chip->mixer_data;	snd_assert(mix, return -EINVAL);	tumbler_find_device("audio-hw-reset", &mix->audio_reset, 0);	tumbler_find_device("amp-mute", &mix->amp_mute, 0);	tumbler_find_device("headphone-mute", &mix->hp_mute, 0);	irq = tumbler_find_device("headphone-detect", &mix->hp_detect, 0);	if (irq < 0)		irq = tumbler_find_device("keywest-gpio15", &mix->hp_detect, 1);	tumbler_reset_audio(chip);	/* activate headphone status interrupts */  	if (irq >= 0) {		unsigned char val;		if ((err = request_irq(irq, headphone_intr, 0,				       "Tumbler Headphone Detection", chip)) < 0)			return err;		/* activate headphone status interrupts */		val = do_gpio_read(&mix->hp_detect);		do_gpio_write(&mix->hp_detect, val | 0x80);	}	mix->headphone_irq = irq;  	return 0;}static void tumbler_cleanup(pmac_t *chip){	pmac_tumbler_t *mix = chip->mixer_data;	if (! mix)		return;	if (mix->headphone_irq >= 0)		free_irq(mix->headphone_irq, chip);	tumbler_gpio_free(&mix->audio_reset);	tumbler_gpio_free(&mix->amp_mute);	tumbler_gpio_free(&mix->hp_mute);	tumbler_gpio_free(&mix->hp_detect);	snd_pmac_keywest_cleanup(&mix->i2c);	kfree(mix);	chip->mixer_data = NULL;}/* exported */int __init snd_pmac_tumbler_init(pmac_t *chip){	int i, err;	pmac_tumbler_t *mix;	u32 *paddr;	struct device_node *tas_node;	char *chipname;#ifdef CONFIG_KMOD	if (current->fs->root)		request_module("i2c-keywest");#endif /* CONFIG_KMOD */		mix = kmalloc(sizeof(*mix), GFP_KERNEL);	if (! mix)		return -ENOMEM;	memset(mix, 0, sizeof(*mix));	mix->headphone_irq = -1;	chip->mixer_data = mix;	chip->mixer_free = tumbler_cleanup;	if ((err = tumbler_init(chip)) < 0)		return err;	/* set up TAS */	tas_node = find_devices("deq");	if (tas_node == NULL)		return -ENODEV;	paddr = (u32 *)get_property(tas_node, "i2c-address", NULL);	if (paddr)		mix->i2c.addr = (*paddr) >> 1;	else		mix->i2c.addr = TAS_I2C_ADDR;	if (chip->model == PMAC_TUMBLER) {		mix->i2c.init_client = tumbler_init_client;		mix->i2c.name = "TAS3001c";		chipname = "Tumbler";	} else {		mix->i2c.init_client = snapper_init_client;		mix->i2c.name = "TAS3004";		chipname = "Snapper";	}	if ((err = snd_pmac_keywest_init(&mix->i2c)) < 0)		return err;	/*	 * build mixers	 */	sprintf(chip->card->mixername, "PowerMac %s", chipname);	if (chip->model == PMAC_TUMBLER) {		for (i = 0; i < ARRAY_SIZE(tumbler_mixers); i++) {			if ((err = snd_ctl_add(chip->card, snd_ctl_new1(&tumbler_mixers[i], chip))) < 0)				return err;		}	} else {		for (i = 0; i < ARRAY_SIZE(snapper_mixers); i++) {			if ((err = snd_ctl_add(chip->card, snd_ctl_new1(&snapper_mixers[i], chip))) < 0)				return err;		}	}	chip->master_sw_ctl = snd_ctl_new1(&tumbler_hp_sw, chip);	if ((err = snd_ctl_add(chip->card, chip->master_sw_ctl)) < 0)		return err;	chip->speaker_sw_ctl = snd_ctl_new1(&tumbler_speaker_sw, chip);	if ((err = snd_ctl_add(chip->card, chip->speaker_sw_ctl)) < 0)		return err;	chip->drc_sw_ctl = snd_ctl_new1(&tumbler_drc_sw, chip);	if ((err = snd_ctl_add(chip->card, chip->drc_sw_ctl)) < 0)		return err;#ifdef CONFIG_PMAC_PBOOK	chip->resume = tumbler_resume;#endif	INIT_WORK(&device_change, device_change_handler, (void *)chip);#ifdef PMAC_SUPPORT_AUTOMUTE	if (mix->headphone_irq >=0 && (err = snd_pmac_add_automute(chip)) < 0)		return err;	chip->detect_headphone = tumbler_detect_headphone;	chip->update_automute = tumbler_update_automute;	tumbler_update_automute(chip, 0); /* update the status only */#endif	return 0;}

⌨️ 快捷键说明

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