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

📄 snd-aoa-codec-tas.c

📁 linux 内核源代码
💻 C
📖 第 1 页 / 共 2 页
字号:
	/*	 * Despite what the data sheet says in one place, the	 * TAS_ACR_B_MONAUREAL bit forces mono output even when	 * input A (line in) is selected.	 */	tas->acr &= ~(TAS_ACR_INPUT_B | TAS_ACR_B_MONAUREAL);	if (ucontrol->value.enumerated.item[0])		tas->acr |= TAS_ACR_INPUT_B | TAS_ACR_B_MONAUREAL |		      TAS_ACR_B_MON_SEL_RIGHT;	if (oldacr == tas->acr) {		mutex_unlock(&tas->mtx);		return 0;	}	if (tas->hw_enabled)		tas_write_reg(tas, TAS_REG_ACR, 1, &tas->acr);	mutex_unlock(&tas->mtx);	return 1;}static struct snd_kcontrol_new capture_source_control = {	.iface = SNDRV_CTL_ELEM_IFACE_MIXER,	/* If we name this 'Input Source', it properly shows up in	 * alsamixer as a selection, * but it's shown under the	 * 'Playback' category.	 * If I name it 'Capture Source', it shows up in strange	 * ways (two bools of which one can be selected at a	 * time) but at least it's shown in the 'Capture'	 * category.	 * I was told that this was due to backward compatibility,	 * but I don't understand then why the mangling is *not*	 * done when I name it "Input Source".....	 */	.name = "Capture Source",	.access = SNDRV_CTL_ELEM_ACCESS_READWRITE,	.info = tas_snd_capture_source_info,	.get = tas_snd_capture_source_get,	.put = tas_snd_capture_source_put,};static int tas_snd_treble_info(struct snd_kcontrol *kcontrol,	struct snd_ctl_elem_info *uinfo){	uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;	uinfo->count = 1;	uinfo->value.integer.min = TAS3004_TREBLE_MIN;	uinfo->value.integer.max = TAS3004_TREBLE_MAX;	return 0;}static int tas_snd_treble_get(struct snd_kcontrol *kcontrol,	struct snd_ctl_elem_value *ucontrol){	struct tas *tas = snd_kcontrol_chip(kcontrol);	mutex_lock(&tas->mtx);	ucontrol->value.integer.value[0] = tas->treble;	mutex_unlock(&tas->mtx);	return 0;}static int tas_snd_treble_put(struct snd_kcontrol *kcontrol,	struct snd_ctl_elem_value *ucontrol){	struct tas *tas = snd_kcontrol_chip(kcontrol);	mutex_lock(&tas->mtx);	if (tas->treble == ucontrol->value.integer.value[0]) {		mutex_unlock(&tas->mtx);		return 0;	}	tas->treble = ucontrol->value.integer.value[0];	if (tas->hw_enabled)		tas_set_treble(tas);	mutex_unlock(&tas->mtx);	return 1;}static struct snd_kcontrol_new treble_control = {	.iface = SNDRV_CTL_ELEM_IFACE_MIXER,	.name = "Treble",	.access = SNDRV_CTL_ELEM_ACCESS_READWRITE,	.info = tas_snd_treble_info,	.get = tas_snd_treble_get,	.put = tas_snd_treble_put,};static int tas_snd_bass_info(struct snd_kcontrol *kcontrol,	struct snd_ctl_elem_info *uinfo){	uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;	uinfo->count = 1;	uinfo->value.integer.min = TAS3004_BASS_MIN;	uinfo->value.integer.max = TAS3004_BASS_MAX;	return 0;}static int tas_snd_bass_get(struct snd_kcontrol *kcontrol,	struct snd_ctl_elem_value *ucontrol){	struct tas *tas = snd_kcontrol_chip(kcontrol);	mutex_lock(&tas->mtx);	ucontrol->value.integer.value[0] = tas->bass;	mutex_unlock(&tas->mtx);	return 0;}static int tas_snd_bass_put(struct snd_kcontrol *kcontrol,	struct snd_ctl_elem_value *ucontrol){	struct tas *tas = snd_kcontrol_chip(kcontrol);	mutex_lock(&tas->mtx);	if (tas->bass == ucontrol->value.integer.value[0]) {		mutex_unlock(&tas->mtx);		return 0;	}	tas->bass = ucontrol->value.integer.value[0];	if (tas->hw_enabled)		tas_set_bass(tas);	mutex_unlock(&tas->mtx);	return 1;}static struct snd_kcontrol_new bass_control = {	.iface = SNDRV_CTL_ELEM_IFACE_MIXER,	.name = "Bass",	.access = SNDRV_CTL_ELEM_ACCESS_READWRITE,	.info = tas_snd_bass_info,	.get = tas_snd_bass_get,	.put = tas_snd_bass_put,};static struct transfer_info tas_transfers[] = {	{		/* input */		.formats = SNDRV_PCM_FMTBIT_S16_BE | SNDRV_PCM_FMTBIT_S16_BE |			   SNDRV_PCM_FMTBIT_S24_BE | SNDRV_PCM_FMTBIT_S24_BE,		.rates = SNDRV_PCM_RATE_32000 | SNDRV_PCM_RATE_44100 | SNDRV_PCM_RATE_48000,		.transfer_in = 1,	},	{		/* output */		.formats = SNDRV_PCM_FMTBIT_S16_BE | SNDRV_PCM_FMTBIT_S16_BE |			   SNDRV_PCM_FMTBIT_S24_BE | SNDRV_PCM_FMTBIT_S24_BE,		.rates = SNDRV_PCM_RATE_32000 | SNDRV_PCM_RATE_44100 | SNDRV_PCM_RATE_48000,		.transfer_in = 0,	},	{}};static int tas_usable(struct codec_info_item *cii,		      struct transfer_info *ti,		      struct transfer_info *out){	return 1;}static int tas_reset_init(struct tas *tas){	u8 tmp;	tas->codec.gpio->methods->all_amps_off(tas->codec.gpio);	msleep(5);	tas->codec.gpio->methods->set_hw_reset(tas->codec.gpio, 0);	msleep(5);	tas->codec.gpio->methods->set_hw_reset(tas->codec.gpio, 1);	msleep(20);	tas->codec.gpio->methods->set_hw_reset(tas->codec.gpio, 0);	msleep(10);	tas->codec.gpio->methods->all_amps_restore(tas->codec.gpio);	tmp = TAS_MCS_SCLK64 | TAS_MCS_SPORT_MODE_I2S | TAS_MCS_SPORT_WL_24BIT;	if (tas_write_reg(tas, TAS_REG_MCS, 1, &tmp))		goto outerr;	tas->acr |= TAS_ACR_ANALOG_PDOWN;	if (tas_write_reg(tas, TAS_REG_ACR, 1, &tas->acr))		goto outerr;	tmp = 0;	if (tas_write_reg(tas, TAS_REG_MCS2, 1, &tmp))		goto outerr;	tas3004_set_drc(tas);	/* Set treble & bass to 0dB */	tas->treble = TAS3004_TREBLE_ZERO;	tas->bass = TAS3004_BASS_ZERO;	tas_set_treble(tas);	tas_set_bass(tas);	tas->acr &= ~TAS_ACR_ANALOG_PDOWN;	if (tas_write_reg(tas, TAS_REG_ACR, 1, &tas->acr))		goto outerr;	return 0; outerr:	return -ENODEV;}static int tas_switch_clock(struct codec_info_item *cii, enum clock_switch clock){	struct tas *tas = cii->codec_data;	switch(clock) {	case CLOCK_SWITCH_PREPARE_SLAVE:		/* Clocks are going away, mute mute mute */		tas->codec.gpio->methods->all_amps_off(tas->codec.gpio);		tas->hw_enabled = 0;		break;	case CLOCK_SWITCH_SLAVE:		/* Clocks are back, re-init the codec */		mutex_lock(&tas->mtx);		tas_reset_init(tas);		tas_set_volume(tas);		tas_set_mixer(tas);		tas->hw_enabled = 1;		tas->codec.gpio->methods->all_amps_restore(tas->codec.gpio);		mutex_unlock(&tas->mtx);		break;	default:		/* doesn't happen as of now */		return -EINVAL;	}	return 0;}#ifdef CONFIG_PM/* we are controlled via i2c and assume that is always up * If that wasn't the case, we'd have to suspend once * our i2c device is suspended, and then take note of that! */static int tas_suspend(struct tas *tas){	mutex_lock(&tas->mtx);	tas->hw_enabled = 0;	tas->acr |= TAS_ACR_ANALOG_PDOWN;	tas_write_reg(tas, TAS_REG_ACR, 1, &tas->acr);	mutex_unlock(&tas->mtx);	return 0;}static int tas_resume(struct tas *tas){	/* reset codec */	mutex_lock(&tas->mtx);	tas_reset_init(tas);	tas_set_volume(tas);	tas_set_mixer(tas);	tas->hw_enabled = 1;	mutex_unlock(&tas->mtx);	return 0;}static int _tas_suspend(struct codec_info_item *cii, pm_message_t state){	return tas_suspend(cii->codec_data);}static int _tas_resume(struct codec_info_item *cii){	return tas_resume(cii->codec_data);}#else /* CONFIG_PM */#define _tas_suspend	NULL#define _tas_resume	NULL#endif /* CONFIG_PM */static struct codec_info tas_codec_info = {	.transfers = tas_transfers,	/* in theory, we can drive it at 512 too...	 * but so far the framework doesn't allow	 * for that and I don't see much point in it. */	.sysclock_factor = 256,	/* same here, could be 32 for just one 16 bit format */	.bus_factor = 64,	.owner = THIS_MODULE,	.usable = tas_usable,	.switch_clock = tas_switch_clock,	.suspend = _tas_suspend,	.resume = _tas_resume,};static int tas_init_codec(struct aoa_codec *codec){	struct tas *tas = codec_to_tas(codec);	int err;	if (!tas->codec.gpio || !tas->codec.gpio->methods) {		printk(KERN_ERR PFX "gpios not assigned!!\n");		return -EINVAL;	}	mutex_lock(&tas->mtx);	if (tas_reset_init(tas)) {		printk(KERN_ERR PFX "tas failed to initialise\n");		mutex_unlock(&tas->mtx);		return -ENXIO;	}	tas->hw_enabled = 1;	mutex_unlock(&tas->mtx);	if (tas->codec.soundbus_dev->attach_codec(tas->codec.soundbus_dev,						   aoa_get_card(),						   &tas_codec_info, tas)) {		printk(KERN_ERR PFX "error attaching tas to soundbus\n");		return -ENODEV;	}	if (aoa_snd_device_new(SNDRV_DEV_LOWLEVEL, tas, &ops)) {		printk(KERN_ERR PFX "failed to create tas snd device!\n");		return -ENODEV;	}	err = aoa_snd_ctl_add(snd_ctl_new1(&volume_control, tas));	if (err)		goto error;	err = aoa_snd_ctl_add(snd_ctl_new1(&mute_control, tas));	if (err)		goto error;	err = aoa_snd_ctl_add(snd_ctl_new1(&pcm1_control, tas));	if (err)		goto error;	err = aoa_snd_ctl_add(snd_ctl_new1(&monitor_control, tas));	if (err)		goto error;	err = aoa_snd_ctl_add(snd_ctl_new1(&capture_source_control, tas));	if (err)		goto error;	err = aoa_snd_ctl_add(snd_ctl_new1(&drc_range_control, tas));	if (err)		goto error;	err = aoa_snd_ctl_add(snd_ctl_new1(&drc_switch_control, tas));	if (err)		goto error;	err = aoa_snd_ctl_add(snd_ctl_new1(&treble_control, tas));	if (err)		goto error;	err = aoa_snd_ctl_add(snd_ctl_new1(&bass_control, tas));	if (err)		goto error;	return 0; error:	tas->codec.soundbus_dev->detach_codec(tas->codec.soundbus_dev, tas);	snd_device_free(aoa_get_card(), tas);	return err;}static void tas_exit_codec(struct aoa_codec *codec){	struct tas *tas = codec_to_tas(codec);	if (!tas->codec.soundbus_dev)		return;	tas->codec.soundbus_dev->detach_codec(tas->codec.soundbus_dev, tas);}	static struct i2c_driver tas_driver;static int tas_create(struct i2c_adapter *adapter,		       struct device_node *node,		       int addr){	struct tas *tas;	tas = kzalloc(sizeof(struct tas), GFP_KERNEL);	if (!tas)		return -ENOMEM;	mutex_init(&tas->mtx);	tas->i2c.driver = &tas_driver;	tas->i2c.adapter = adapter;	tas->i2c.addr = addr;	/* seems that half is a saner default */	tas->drc_range = TAS3004_DRC_MAX / 2;	strlcpy(tas->i2c.name, "tas audio codec", I2C_NAME_SIZE);	if (i2c_attach_client(&tas->i2c)) {		printk(KERN_ERR PFX "failed to attach to i2c\n");		goto fail;	}	strlcpy(tas->codec.name, "tas", MAX_CODEC_NAME_LEN);	tas->codec.owner = THIS_MODULE;	tas->codec.init = tas_init_codec;	tas->codec.exit = tas_exit_codec;	tas->codec.node = of_node_get(node);	if (aoa_codec_register(&tas->codec)) {		goto detach;	}	printk(KERN_DEBUG	       "snd-aoa-codec-tas: tas found, addr 0x%02x on %s\n",	       addr, node->full_name);	return 0; detach:	i2c_detach_client(&tas->i2c); fail:	mutex_destroy(&tas->mtx);	kfree(tas);	return -EINVAL;}static int tas_i2c_attach(struct i2c_adapter *adapter){	struct device_node *busnode, *dev = NULL;	struct pmac_i2c_bus *bus;	bus = pmac_i2c_adapter_to_bus(adapter);	if (bus == NULL)		return -ENODEV;	busnode = pmac_i2c_get_bus_node(bus);	while ((dev = of_get_next_child(busnode, dev)) != NULL) {		if (of_device_is_compatible(dev, "tas3004")) {			const u32 *addr;			printk(KERN_DEBUG PFX "found tas3004\n");			addr = of_get_property(dev, "reg", NULL);			if (!addr)				continue;			return tas_create(adapter, dev, ((*addr) >> 1) & 0x7f);		}		/* older machines have no 'codec' node with a 'compatible'		 * property that says 'tas3004', they just have a 'deq'		 * node without any such property... */		if (strcmp(dev->name, "deq") == 0) {			const u32 *_addr;			u32 addr;			printk(KERN_DEBUG PFX "found 'deq' node\n");			_addr = of_get_property(dev, "i2c-address", NULL);			if (!_addr)				continue;			addr = ((*_addr) >> 1) & 0x7f;			/* now, if the address doesn't match any of the two			 * that a tas3004 can have, we cannot handle this.			 * I doubt it ever happens but hey. */			if (addr != 0x34 && addr != 0x35)				continue;			return tas_create(adapter, dev, addr);		}	}	return -ENODEV;}static int tas_i2c_detach(struct i2c_client *client){	struct tas *tas = container_of(client, struct tas, i2c);	int err;	u8 tmp = TAS_ACR_ANALOG_PDOWN;	if ((err = i2c_detach_client(client)))		return err;	aoa_codec_unregister(&tas->codec);	of_node_put(tas->codec.node);	/* power down codec chip */	tas_write_reg(tas, TAS_REG_ACR, 1, &tmp);	mutex_destroy(&tas->mtx);	kfree(tas);	return 0;}static struct i2c_driver tas_driver = {	.driver = {		.name = "aoa_codec_tas",		.owner = THIS_MODULE,	},	.attach_adapter = tas_i2c_attach,	.detach_client = tas_i2c_detach,};static int __init tas_init(void){	return i2c_add_driver(&tas_driver);}static void __exit tas_exit(void){	i2c_del_driver(&tas_driver);}module_init(tas_init);module_exit(tas_exit);

⌨️ 快捷键说明

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