diff options
Diffstat (limited to 'include/sound')
29 files changed, 1340 insertions, 287 deletions
diff --git a/include/sound/ak4114.h b/include/sound/ak4114.h index 3ce69fd9252..52f02a60dba 100644 --- a/include/sound/ak4114.h +++ b/include/sound/ak4114.h @@ -170,7 +170,7 @@ struct ak4114 {  	void * private_data;  	unsigned int init: 1;  	spinlock_t lock; -	unsigned char regmap[7]; +	unsigned char regmap[6];  	unsigned char txcsb[5];  	struct snd_kcontrol *kctls[AK4114_CONTROLS];  	struct snd_pcm_substream *playback_substream; @@ -189,7 +189,7 @@ struct ak4114 {  int snd_ak4114_create(struct snd_card *card,  		      ak4114_read_t *read, ak4114_write_t *write, -		      const unsigned char pgm[7], const unsigned char txcsb[5], +		      const unsigned char pgm[6], const unsigned char txcsb[5],  		      void *private_data, struct ak4114 **r_ak4114);  void snd_ak4114_reg_write(struct ak4114 *ak4114, unsigned char reg, unsigned char mask, unsigned char val);  void snd_ak4114_reinit(struct ak4114 *ak4114); diff --git a/include/sound/atmel-ac97c.h b/include/sound/atmel-ac97c.h index e6aabdb4586..00e6c289a93 100644 --- a/include/sound/atmel-ac97c.h +++ b/include/sound/atmel-ac97c.h @@ -23,7 +23,6 @@   * @reset_pin: GPIO pin wired to the reset input on the external AC97 codec,   *             optional to use, set to -ENODEV if not in use. AC97 layer will   *             try to do a software reset of the external codec anyway. - * @flags: Flags for which directions should be enabled.   *   * If the user do not want to use a DMA channel for playback or capture, i.e.   * only one feature is required on the board. The slave for playback or capture @@ -33,7 +32,6 @@  struct ac97c_platform_data {  	struct dw_dma_slave	rx_dws;  	struct dw_dma_slave	tx_dws; -	unsigned int 		flags;  	int			reset_pin;  }; diff --git a/include/sound/compress_driver.h b/include/sound/compress_driver.h index 9031a26249b..ae6c3b8ed2f 100644 --- a/include/sound/compress_driver.h +++ b/include/sound/compress_driver.h @@ -171,4 +171,13 @@ static inline void snd_compr_fragment_elapsed(struct snd_compr_stream *stream)  	wake_up(&stream->runtime->sleep);  } +static inline void snd_compr_drain_notify(struct snd_compr_stream *stream) +{ +	if (snd_BUG_ON(!stream)) +		return; + +	stream->runtime->state = SNDRV_PCM_STATE_SETUP; +	wake_up(&stream->runtime->sleep); +} +  #endif diff --git a/include/sound/core.h b/include/sound/core.h index 2a14f1f02d4..1df3f2fe535 100644 --- a/include/sound/core.h +++ b/include/sound/core.h @@ -22,6 +22,7 @@   *   */ +#include <linux/device.h>  #include <linux/sched.h>		/* wake_up() */  #include <linux/mutex.h>		/* struct mutex */  #include <linux/rwsem.h>		/* struct rw_semaphore */ @@ -41,39 +42,33 @@  /* forward declarations */  struct pci_dev;  struct module; -struct device; -struct device_attribute; +struct completion;  /* device allocation stuff */ -#define SNDRV_DEV_TYPE_RANGE_SIZE		0x1000 - -typedef int __bitwise snd_device_type_t; -#define	SNDRV_DEV_TOPLEVEL	((__force snd_device_type_t) 0) -#define	SNDRV_DEV_CONTROL	((__force snd_device_type_t) 1) -#define	SNDRV_DEV_LOWLEVEL_PRE	((__force snd_device_type_t) 2) -#define	SNDRV_DEV_LOWLEVEL_NORMAL ((__force snd_device_type_t) 0x1000) -#define	SNDRV_DEV_PCM		((__force snd_device_type_t) 0x1001) -#define	SNDRV_DEV_RAWMIDI	((__force snd_device_type_t) 0x1002) -#define	SNDRV_DEV_TIMER		((__force snd_device_type_t) 0x1003) -#define	SNDRV_DEV_SEQUENCER	((__force snd_device_type_t) 0x1004) -#define	SNDRV_DEV_HWDEP		((__force snd_device_type_t) 0x1005) -#define	SNDRV_DEV_INFO		((__force snd_device_type_t) 0x1006) -#define	SNDRV_DEV_BUS		((__force snd_device_type_t) 0x1007) -#define	SNDRV_DEV_CODEC		((__force snd_device_type_t) 0x1008) -#define	SNDRV_DEV_JACK          ((__force snd_device_type_t) 0x1009) -#define	SNDRV_DEV_COMPRESS	((__force snd_device_type_t) 0x100A) -#define	SNDRV_DEV_LOWLEVEL	((__force snd_device_type_t) 0x2000) - -typedef int __bitwise snd_device_state_t; -#define	SNDRV_DEV_BUILD		((__force snd_device_state_t) 0) -#define	SNDRV_DEV_REGISTERED	((__force snd_device_state_t) 1) -#define	SNDRV_DEV_DISCONNECTED	((__force snd_device_state_t) 2) - -typedef int __bitwise snd_device_cmd_t; -#define	SNDRV_DEV_CMD_PRE	((__force snd_device_cmd_t) 0) -#define	SNDRV_DEV_CMD_NORMAL	((__force snd_device_cmd_t) 1)	 -#define	SNDRV_DEV_CMD_POST	((__force snd_device_cmd_t) 2) +/* type of the object used in snd_device_*() + * this also defines the calling order + */ +enum snd_device_type { +	SNDRV_DEV_LOWLEVEL, +	SNDRV_DEV_CONTROL, +	SNDRV_DEV_INFO, +	SNDRV_DEV_BUS, +	SNDRV_DEV_CODEC, +	SNDRV_DEV_PCM, +	SNDRV_DEV_COMPRESS, +	SNDRV_DEV_RAWMIDI, +	SNDRV_DEV_TIMER, +	SNDRV_DEV_SEQUENCER, +	SNDRV_DEV_HWDEP, +	SNDRV_DEV_JACK, +}; + +enum snd_device_state { +	SNDRV_DEV_BUILD, +	SNDRV_DEV_REGISTERED, +	SNDRV_DEV_DISCONNECTED, +};  struct snd_device; @@ -86,8 +81,8 @@ struct snd_device_ops {  struct snd_device {  	struct list_head list;		/* list of registered devices */  	struct snd_card *card;		/* card which holds this device */ -	snd_device_state_t state;	/* state of the device */ -	snd_device_type_t type;		/* device type */ +	enum snd_device_state state;	/* state of the device */ +	enum snd_device_type type;	/* device type */  	void *device_data;		/* device structure */  	struct snd_device_ops *ops;	/* operations */  }; @@ -121,6 +116,8 @@ struct snd_card {  	int user_ctl_count;		/* count of all user controls */  	struct list_head controls;	/* all controls for this card */  	struct list_head ctl_files;	/* active control files */ +	struct mutex user_ctl_lock;	/* protects user controls against +					   concurrent access */  	struct snd_info_entry *proc_root;	/* root for soundcard specific files */  	struct snd_info_entry *proc_id;	/* the card id */ @@ -131,11 +128,10 @@ struct snd_card {  								state */  	spinlock_t files_lock;		/* lock the files for this card */  	int shutdown;			/* this card is going down */ -	int free_on_last_close;		/* free in context of file_release */ -	wait_queue_head_t shutdown_sleep; -	atomic_t refcount;		/* refcount for disconnection */ +	struct completion *release_completion;  	struct device *dev;		/* device assigned to this card */ -	struct device *card_dev;	/* cardX object for sysfs */ +	struct device card_dev;		/* cardX object for sysfs */ +	bool registered;		/* card_dev is registered? */  #ifdef CONFIG_PM  	unsigned int power_state;	/* power state */ @@ -149,6 +145,8 @@ struct snd_card {  #endif  }; +#define dev_to_snd_card(p)	container_of(p, struct snd_card, card_dev) +  #ifdef CONFIG_PM  static inline void snd_power_lock(struct snd_card *card)  { @@ -197,7 +195,7 @@ struct snd_minor {  /* return a device pointer linked to each sound device as a parent */  static inline struct device *snd_card_get_device_link(struct snd_card *card)  { -	return card ? card->card_dev : NULL; +	return card ? &card->card_dev : NULL;  }  /* sound.c */ @@ -244,13 +242,11 @@ static inline int snd_register_device(int type, struct snd_card *card, int dev,  int snd_unregister_device(int type, struct snd_card *card, int dev);  void *snd_lookup_minor_data(unsigned int minor, int type); -int snd_add_device_sysfs_file(int type, struct snd_card *card, int dev, -			      struct device_attribute *attr); +struct device *snd_get_device(int type, struct snd_card *card, int dev);  #ifdef CONFIG_SND_OSSEMUL  int snd_register_oss_device(int type, struct snd_card *card, int dev, -			    const struct file_operations *f_ops, void *private_data, -			    const char *name); +			    const struct file_operations *f_ops, void *private_data);  int snd_unregister_oss_device(int type, struct snd_card *card, int dev);  void *snd_lookup_oss_minor_data(unsigned int minor, int type);  #endif @@ -284,9 +280,9 @@ int snd_card_locked(int card);  extern int (*snd_mixer_oss_notify_callback)(struct snd_card *card, int cmd);  #endif -int snd_card_create(int idx, const char *id, -		    struct module *module, int extra_size, -		    struct snd_card **card_ret); +int snd_card_new(struct device *parent, int idx, const char *xid, +		 struct module *module, int extra_size, +		 struct snd_card **card_ret);  int snd_card_disconnect(struct snd_card *card);  int snd_card_free(struct snd_card *card); @@ -298,20 +294,19 @@ int snd_card_info_done(void);  int snd_component_add(struct snd_card *card, const char *component);  int snd_card_file_add(struct snd_card *card, struct file *file);  int snd_card_file_remove(struct snd_card *card, struct file *file); -void snd_card_unref(struct snd_card *card); +#define snd_card_unref(card)	put_device(&(card)->card_dev)  #define snd_card_set_dev(card, devptr) ((card)->dev = (devptr))  /* device.c */ -int snd_device_new(struct snd_card *card, snd_device_type_t type, +int snd_device_new(struct snd_card *card, enum snd_device_type type,  		   void *device_data, struct snd_device_ops *ops);  int snd_device_register(struct snd_card *card, void *device_data);  int snd_device_register_all(struct snd_card *card); -int snd_device_disconnect(struct snd_card *card, void *device_data);  int snd_device_disconnect_all(struct snd_card *card); -int snd_device_free(struct snd_card *card, void *device_data); -int snd_device_free_all(struct snd_card *card, snd_device_cmd_t cmd); +void snd_device_free(struct snd_card *card, void *device_data); +void snd_device_free_all(struct snd_card *card);  /* isadma.c */ @@ -433,7 +428,6 @@ static inline void snd_printdd(const char *format, ...) {}  #define gameport_get_port_data(gp) (gp)->port_data  #endif -#ifdef CONFIG_PCI  /* PCI quirk list helper */  struct snd_pci_quirk {  	unsigned short subvendor;	/* PCI subvendor ID */ @@ -469,12 +463,26 @@ struct snd_pci_quirk {  #define snd_pci_quirk_name(q)	""  #endif +#ifdef CONFIG_PCI  const struct snd_pci_quirk *  snd_pci_quirk_lookup(struct pci_dev *pci, const struct snd_pci_quirk *list);  const struct snd_pci_quirk *  snd_pci_quirk_lookup_id(u16 vendor, u16 device,  			const struct snd_pci_quirk *list); +#else +static inline const struct snd_pci_quirk * +snd_pci_quirk_lookup(struct pci_dev *pci, const struct snd_pci_quirk *list) +{ +	return NULL; +} + +static inline const struct snd_pci_quirk * +snd_pci_quirk_lookup_id(u16 vendor, u16 device, +			const struct snd_pci_quirk *list) +{ +	return NULL; +}  #endif  #endif /* __SOUND_CORE_H */ diff --git a/include/sound/cs42l52.h b/include/sound/cs42l52.h index 4c68955f733..bbabf84bdb4 100644 --- a/include/sound/cs42l52.h +++ b/include/sound/cs42l52.h @@ -16,21 +16,17 @@ struct cs42l52_platform_data {  	/* MICBIAS Level. Check datasheet Pg48 */  	unsigned int micbias_lvl; -	/* MICA mode selection 0=Single 1=Differential */ -	unsigned int mica_cfg; +	/* MICA mode selection Differential or Single-ended */ +	bool mica_diff_cfg; -	/* MICB mode selection 0=Single 1=Differential */ -	unsigned int micb_cfg; - -	/* MICA Select 0=MIC1A 1=MIC2A */ -	unsigned int mica_sel; - -	/* MICB Select 0=MIC2A 1=MIC2B */ -	unsigned int micb_sel; +	/* MICB mode selection Differential or Single-ended */ +	bool micb_diff_cfg;  	/* Charge Pump Freq. Check datasheet Pg73 */  	unsigned int chgfreq; +	/* Reset GPIO */ +	unsigned int reset_gpio;  };  #endif /* __CS42L52_H */ diff --git a/include/sound/cs42l56.h b/include/sound/cs42l56.h new file mode 100644 index 00000000000..2467c8ff132 --- /dev/null +++ b/include/sound/cs42l56.h @@ -0,0 +1,48 @@ +/* + * linux/sound/cs42l56.h -- Platform data for CS42L56 + * + * Copyright (c) 2014 Cirrus Logic Inc. + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License version 2 as + * published by the Free Software Foundation. + */ + +#ifndef __CS42L56_H +#define __CS42L56_H + +struct cs42l56_platform_data { + +	/* GPIO for Reset */ +	unsigned int gpio_nreset; + +	/* MICBIAS Level. Check datasheet Pg48 */ +	unsigned int micbias_lvl; + +	/* Analog Input 1A Reference 0=Single 1=Pseudo-Differential */ +	unsigned int ain1a_ref_cfg; + +	/* Analog Input 2A Reference 0=Single 1=Pseudo-Differential */ +	unsigned int ain2a_ref_cfg; + +	/* Analog Input 1B Reference 0=Single 1=Pseudo-Differential */ +	unsigned int ain1b_ref_cfg; + +	/* Analog Input 2B Reference 0=Single 1=Pseudo-Differential */ +	unsigned int ain2b_ref_cfg; + +	/* Charge Pump Freq. Check datasheet Pg62 */ +	unsigned int chgfreq; + +	/* HighPass Filter Right Channel Corner Frequency */ +	unsigned int hpfb_freq; + +	/* HighPass Filter Left Channel Corner Frequency */ +	unsigned int hpfa_freq; + +	/* Adaptive Power Control for LO/HP */ +	unsigned int adaptive_pwr; + +}; + +#endif /* __CS42L56_H */ diff --git a/include/sound/cs42l73.h b/include/sound/cs42l73.h new file mode 100644 index 00000000000..f354be4cdc9 --- /dev/null +++ b/include/sound/cs42l73.h @@ -0,0 +1,22 @@ +/* + * linux/sound/cs42l73.h -- Platform data for CS42L73 + * + * Copyright (c) 2012 Cirrus Logic Inc. + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License version 2 as + * published by the Free Software Foundation. + */ + +#ifndef __CS42L73_H +#define __CS42L73_H + +struct cs42l73_platform_data { +	/* RST GPIO */ +	unsigned int reset_gpio; +	unsigned int chgfreq; +	int jack_detection; +	unsigned int mclk_freq; +}; + +#endif /* __CS42L73_H */ diff --git a/include/sound/cs8427.h b/include/sound/cs8427.h index f862cfff5f6..0b6a1876639 100644 --- a/include/sound/cs8427.h +++ b/include/sound/cs8427.h @@ -188,6 +188,7 @@  struct snd_pcm_substream; +int snd_cs8427_init(struct snd_i2c_bus *bus, struct snd_i2c_device *device);  int snd_cs8427_create(struct snd_i2c_bus *bus, unsigned char addr,  		      unsigned int reset_timeout, struct snd_i2c_device **r_cs8427);  int snd_cs8427_reg_write(struct snd_i2c_device *device, unsigned char reg, diff --git a/include/sound/dmaengine_pcm.h b/include/sound/dmaengine_pcm.h index f11c35cd553..eb73a3a39ec 100644 --- a/include/sound/dmaengine_pcm.h +++ b/include/sound/dmaengine_pcm.h @@ -61,6 +61,8 @@ struct dma_chan *snd_dmaengine_pcm_get_chan(struct snd_pcm_substream *substream)   * @slave_id: Slave requester id for the DMA channel.   * @filter_data: Custom DMA channel filter data, this will usually be used when   * requesting the DMA channel. + * @chan_name: Custom channel name to use when requesting DMA channel. + * @fifo_size: FIFO size of the DAI controller in bytes   */  struct snd_dmaengine_dai_dma_data {  	dma_addr_t addr; @@ -68,6 +70,8 @@ struct snd_dmaengine_dai_dma_data {  	u32 maxburst;  	unsigned int slave_id;  	void *filter_data; +	const char *chan_name; +	unsigned int fifo_size;  };  void snd_dmaengine_pcm_set_config_from_dai_data( @@ -96,6 +100,10 @@ void snd_dmaengine_pcm_set_config_from_dai_data(   * playback.   */  #define SND_DMAENGINE_PCM_FLAG_HALF_DUPLEX BIT(3) +/* + * The PCM streams have custom channel names specified. + */ +#define SND_DMAENGINE_PCM_FLAG_CUSTOM_CHANNEL_NAME BIT(4)  /**   * struct snd_dmaengine_pcm_config - Configuration data for dmaengine based PCM @@ -106,6 +114,10 @@ void snd_dmaengine_pcm_set_config_from_dai_data(   * @compat_filter_fn: Will be used as the filter function when requesting a   *  channel for platforms which do not use devicetree. The filter parameter   *  will be the DAI's DMA data. + * @dma_dev: If set, request DMA channel on this device rather than the DAI + *  device. + * @chan_names: If set, these custom DMA channel names will be requested at + *  registration time.   * @pcm_hardware: snd_pcm_hardware struct to be used for the PCM.   * @prealloc_buffer_size: Size of the preallocated audio buffer.   * @@ -122,6 +134,8 @@ struct snd_dmaengine_pcm_config {  			struct snd_soc_pcm_runtime *rtd,  			struct snd_pcm_substream *substream);  	dma_filter_fn compat_filter_fn; +	struct device *dma_dev; +	const char *chan_names[SNDRV_PCM_STREAM_LAST + 1];  	const struct snd_pcm_hardware *pcm_hardware;  	unsigned int prealloc_buffer_size; @@ -132,6 +146,10 @@ int snd_dmaengine_pcm_register(struct device *dev,  	unsigned int flags);  void snd_dmaengine_pcm_unregister(struct device *dev); +int devm_snd_dmaengine_pcm_register(struct device *dev, +	const struct snd_dmaengine_pcm_config *config, +	unsigned int flags); +  int snd_dmaengine_pcm_prepare_slave_config(struct snd_pcm_substream *substream,  	struct snd_pcm_hw_params *params,  	struct dma_slave_config *slave_config); diff --git a/include/sound/emu10k1.h b/include/sound/emu10k1.h index dfb42ca6d04..c46908c1bb3 100644 --- a/include/sound/emu10k1.h +++ b/include/sound/emu10k1.h @@ -436,8 +436,6 @@  #define CCCA_CURRADDR_MASK	0x00ffffff	/* Current address of the selected channel		*/  #define CCCA_CURRADDR		0x18000008 -/* undefine CCR to avoid conflict with the definition for SH */ -#undef CCR  #define CCR			0x09		/* Cache control register				*/  #define CCR_CACHEINVALIDSIZE	0x07190009  #define CCR_CACHEINVALIDSIZE_MASK	0xfe000000	/* Number of invalid samples cache for this channel    	*/ diff --git a/include/sound/hda_verbs.h b/include/sound/hda_verbs.h new file mode 100644 index 00000000000..d0509db6d0e --- /dev/null +++ b/include/sound/hda_verbs.h @@ -0,0 +1,554 @@ +/* + * HD-audio codec verbs + */ + +#ifndef __SOUND_HDA_VERBS_H +#define __SOUND_HDA_VERBS_H + +/* + * nodes + */ +#define	AC_NODE_ROOT		0x00 + +/* + * function group types + */ +enum { +	AC_GRP_AUDIO_FUNCTION = 0x01, +	AC_GRP_MODEM_FUNCTION = 0x02, +}; + +/* + * widget types + */ +enum { +	AC_WID_AUD_OUT,		/* Audio Out */ +	AC_WID_AUD_IN,		/* Audio In */ +	AC_WID_AUD_MIX,		/* Audio Mixer */ +	AC_WID_AUD_SEL,		/* Audio Selector */ +	AC_WID_PIN,		/* Pin Complex */ +	AC_WID_POWER,		/* Power */ +	AC_WID_VOL_KNB,		/* Volume Knob */ +	AC_WID_BEEP,		/* Beep Generator */ +	AC_WID_VENDOR = 0x0f	/* Vendor specific */ +}; + +/* + * GET verbs + */ +#define AC_VERB_GET_STREAM_FORMAT		0x0a00 +#define AC_VERB_GET_AMP_GAIN_MUTE		0x0b00 +#define AC_VERB_GET_PROC_COEF			0x0c00 +#define AC_VERB_GET_COEF_INDEX			0x0d00 +#define AC_VERB_PARAMETERS			0x0f00 +#define AC_VERB_GET_CONNECT_SEL			0x0f01 +#define AC_VERB_GET_CONNECT_LIST		0x0f02 +#define AC_VERB_GET_PROC_STATE			0x0f03 +#define AC_VERB_GET_SDI_SELECT			0x0f04 +#define AC_VERB_GET_POWER_STATE			0x0f05 +#define AC_VERB_GET_CONV			0x0f06 +#define AC_VERB_GET_PIN_WIDGET_CONTROL		0x0f07 +#define AC_VERB_GET_UNSOLICITED_RESPONSE	0x0f08 +#define AC_VERB_GET_PIN_SENSE			0x0f09 +#define AC_VERB_GET_BEEP_CONTROL		0x0f0a +#define AC_VERB_GET_EAPD_BTLENABLE		0x0f0c +#define AC_VERB_GET_DIGI_CONVERT_1		0x0f0d +#define AC_VERB_GET_DIGI_CONVERT_2		0x0f0e /* unused */ +#define AC_VERB_GET_VOLUME_KNOB_CONTROL		0x0f0f +/* f10-f1a: GPIO */ +#define AC_VERB_GET_GPIO_DATA			0x0f15 +#define AC_VERB_GET_GPIO_MASK			0x0f16 +#define AC_VERB_GET_GPIO_DIRECTION		0x0f17 +#define AC_VERB_GET_GPIO_WAKE_MASK		0x0f18 +#define AC_VERB_GET_GPIO_UNSOLICITED_RSP_MASK	0x0f19 +#define AC_VERB_GET_GPIO_STICKY_MASK		0x0f1a +#define AC_VERB_GET_CONFIG_DEFAULT		0x0f1c +/* f20: AFG/MFG */ +#define AC_VERB_GET_SUBSYSTEM_ID		0x0f20 +#define AC_VERB_GET_CVT_CHAN_COUNT		0x0f2d +#define AC_VERB_GET_HDMI_DIP_SIZE		0x0f2e +#define AC_VERB_GET_HDMI_ELDD			0x0f2f +#define AC_VERB_GET_HDMI_DIP_INDEX		0x0f30 +#define AC_VERB_GET_HDMI_DIP_DATA		0x0f31 +#define AC_VERB_GET_HDMI_DIP_XMIT		0x0f32 +#define AC_VERB_GET_HDMI_CP_CTRL		0x0f33 +#define AC_VERB_GET_HDMI_CHAN_SLOT		0x0f34 +#define AC_VERB_GET_DEVICE_SEL			0xf35 +#define AC_VERB_GET_DEVICE_LIST			0xf36 + +/* + * SET verbs + */ +#define AC_VERB_SET_STREAM_FORMAT		0x200 +#define AC_VERB_SET_AMP_GAIN_MUTE		0x300 +#define AC_VERB_SET_PROC_COEF			0x400 +#define AC_VERB_SET_COEF_INDEX			0x500 +#define AC_VERB_SET_CONNECT_SEL			0x701 +#define AC_VERB_SET_PROC_STATE			0x703 +#define AC_VERB_SET_SDI_SELECT			0x704 +#define AC_VERB_SET_POWER_STATE			0x705 +#define AC_VERB_SET_CHANNEL_STREAMID		0x706 +#define AC_VERB_SET_PIN_WIDGET_CONTROL		0x707 +#define AC_VERB_SET_UNSOLICITED_ENABLE		0x708 +#define AC_VERB_SET_PIN_SENSE			0x709 +#define AC_VERB_SET_BEEP_CONTROL		0x70a +#define AC_VERB_SET_EAPD_BTLENABLE		0x70c +#define AC_VERB_SET_DIGI_CONVERT_1		0x70d +#define AC_VERB_SET_DIGI_CONVERT_2		0x70e +#define AC_VERB_SET_VOLUME_KNOB_CONTROL		0x70f +#define AC_VERB_SET_GPIO_DATA			0x715 +#define AC_VERB_SET_GPIO_MASK			0x716 +#define AC_VERB_SET_GPIO_DIRECTION		0x717 +#define AC_VERB_SET_GPIO_WAKE_MASK		0x718 +#define AC_VERB_SET_GPIO_UNSOLICITED_RSP_MASK	0x719 +#define AC_VERB_SET_GPIO_STICKY_MASK		0x71a +#define AC_VERB_SET_CONFIG_DEFAULT_BYTES_0	0x71c +#define AC_VERB_SET_CONFIG_DEFAULT_BYTES_1	0x71d +#define AC_VERB_SET_CONFIG_DEFAULT_BYTES_2	0x71e +#define AC_VERB_SET_CONFIG_DEFAULT_BYTES_3	0x71f +#define AC_VERB_SET_EAPD				0x788 +#define AC_VERB_SET_CODEC_RESET			0x7ff +#define AC_VERB_SET_CVT_CHAN_COUNT		0x72d +#define AC_VERB_SET_HDMI_DIP_INDEX		0x730 +#define AC_VERB_SET_HDMI_DIP_DATA		0x731 +#define AC_VERB_SET_HDMI_DIP_XMIT		0x732 +#define AC_VERB_SET_HDMI_CP_CTRL		0x733 +#define AC_VERB_SET_HDMI_CHAN_SLOT		0x734 +#define AC_VERB_SET_DEVICE_SEL			0x735 + +/* + * Parameter IDs + */ +#define AC_PAR_VENDOR_ID		0x00 +#define AC_PAR_SUBSYSTEM_ID		0x01 +#define AC_PAR_REV_ID			0x02 +#define AC_PAR_NODE_COUNT		0x04 +#define AC_PAR_FUNCTION_TYPE		0x05 +#define AC_PAR_AUDIO_FG_CAP		0x08 +#define AC_PAR_AUDIO_WIDGET_CAP		0x09 +#define AC_PAR_PCM			0x0a +#define AC_PAR_STREAM			0x0b +#define AC_PAR_PIN_CAP			0x0c +#define AC_PAR_AMP_IN_CAP		0x0d +#define AC_PAR_CONNLIST_LEN		0x0e +#define AC_PAR_POWER_STATE		0x0f +#define AC_PAR_PROC_CAP			0x10 +#define AC_PAR_GPIO_CAP			0x11 +#define AC_PAR_AMP_OUT_CAP		0x12 +#define AC_PAR_VOL_KNB_CAP		0x13 +#define AC_PAR_DEVLIST_LEN		0x15 +#define AC_PAR_HDMI_LPCM_CAP		0x20 + +/* + * AC_VERB_PARAMETERS results (32bit) + */ + +/* Function Group Type */ +#define AC_FGT_TYPE			(0xff<<0) +#define AC_FGT_TYPE_SHIFT		0 +#define AC_FGT_UNSOL_CAP		(1<<8) + +/* Audio Function Group Capabilities */ +#define AC_AFG_OUT_DELAY		(0xf<<0) +#define AC_AFG_IN_DELAY			(0xf<<8) +#define AC_AFG_BEEP_GEN			(1<<16) + +/* Audio Widget Capabilities */ +#define AC_WCAP_STEREO			(1<<0)	/* stereo I/O */ +#define AC_WCAP_IN_AMP			(1<<1)	/* AMP-in present */ +#define AC_WCAP_OUT_AMP			(1<<2)	/* AMP-out present */ +#define AC_WCAP_AMP_OVRD		(1<<3)	/* AMP-parameter override */ +#define AC_WCAP_FORMAT_OVRD		(1<<4)	/* format override */ +#define AC_WCAP_STRIPE			(1<<5)	/* stripe */ +#define AC_WCAP_PROC_WID		(1<<6)	/* Proc Widget */ +#define AC_WCAP_UNSOL_CAP		(1<<7)	/* Unsol capable */ +#define AC_WCAP_CONN_LIST		(1<<8)	/* connection list */ +#define AC_WCAP_DIGITAL			(1<<9)	/* digital I/O */ +#define AC_WCAP_POWER			(1<<10)	/* power control */ +#define AC_WCAP_LR_SWAP			(1<<11)	/* L/R swap */ +#define AC_WCAP_CP_CAPS			(1<<12) /* content protection */ +#define AC_WCAP_CHAN_CNT_EXT		(7<<13)	/* channel count ext */ +#define AC_WCAP_DELAY			(0xf<<16) +#define AC_WCAP_DELAY_SHIFT		16 +#define AC_WCAP_TYPE			(0xf<<20) +#define AC_WCAP_TYPE_SHIFT		20 + +/* supported PCM rates and bits */ +#define AC_SUPPCM_RATES			(0xfff << 0) +#define AC_SUPPCM_BITS_8		(1<<16) +#define AC_SUPPCM_BITS_16		(1<<17) +#define AC_SUPPCM_BITS_20		(1<<18) +#define AC_SUPPCM_BITS_24		(1<<19) +#define AC_SUPPCM_BITS_32		(1<<20) + +/* supported PCM stream format */ +#define AC_SUPFMT_PCM			(1<<0) +#define AC_SUPFMT_FLOAT32		(1<<1) +#define AC_SUPFMT_AC3			(1<<2) + +/* GP I/O count */ +#define AC_GPIO_IO_COUNT		(0xff<<0) +#define AC_GPIO_O_COUNT			(0xff<<8) +#define AC_GPIO_O_COUNT_SHIFT		8 +#define AC_GPIO_I_COUNT			(0xff<<16) +#define AC_GPIO_I_COUNT_SHIFT		16 +#define AC_GPIO_UNSOLICITED		(1<<30) +#define AC_GPIO_WAKE			(1<<31) + +/* Converter stream, channel */ +#define AC_CONV_CHANNEL			(0xf<<0) +#define AC_CONV_STREAM			(0xf<<4) +#define AC_CONV_STREAM_SHIFT		4 + +/* Input converter SDI select */ +#define AC_SDI_SELECT			(0xf<<0) + +/* stream format id */ +#define AC_FMT_CHAN_SHIFT		0 +#define AC_FMT_CHAN_MASK		(0x0f << 0) +#define AC_FMT_BITS_SHIFT		4 +#define AC_FMT_BITS_MASK		(7 << 4) +#define AC_FMT_BITS_8			(0 << 4) +#define AC_FMT_BITS_16			(1 << 4) +#define AC_FMT_BITS_20			(2 << 4) +#define AC_FMT_BITS_24			(3 << 4) +#define AC_FMT_BITS_32			(4 << 4) +#define AC_FMT_DIV_SHIFT		8 +#define AC_FMT_DIV_MASK			(7 << 8) +#define AC_FMT_MULT_SHIFT		11 +#define AC_FMT_MULT_MASK		(7 << 11) +#define AC_FMT_BASE_SHIFT		14 +#define AC_FMT_BASE_48K			(0 << 14) +#define AC_FMT_BASE_44K			(1 << 14) +#define AC_FMT_TYPE_SHIFT		15 +#define AC_FMT_TYPE_PCM			(0 << 15) +#define AC_FMT_TYPE_NON_PCM		(1 << 15) + +/* Unsolicited response control */ +#define AC_UNSOL_TAG			(0x3f<<0) +#define AC_UNSOL_ENABLED		(1<<7) +#define AC_USRSP_EN			AC_UNSOL_ENABLED + +/* Unsolicited responses */ +#define AC_UNSOL_RES_TAG		(0x3f<<26) +#define AC_UNSOL_RES_TAG_SHIFT		26 +#define AC_UNSOL_RES_SUBTAG		(0x1f<<21) +#define AC_UNSOL_RES_SUBTAG_SHIFT	21 +#define AC_UNSOL_RES_DE			(0x3f<<15)  /* Device Entry +						     * (for DP1.2 MST) +						     */ +#define AC_UNSOL_RES_DE_SHIFT		15 +#define AC_UNSOL_RES_IA			(1<<2)	/* Inactive (for DP1.2 MST) */ +#define AC_UNSOL_RES_ELDV		(1<<1)	/* ELD Data valid (for HDMI) */ +#define AC_UNSOL_RES_PD			(1<<0)	/* pinsense detect */ +#define AC_UNSOL_RES_CP_STATE		(1<<1)	/* content protection */ +#define AC_UNSOL_RES_CP_READY		(1<<0)	/* content protection */ + +/* Pin widget capabilies */ +#define AC_PINCAP_IMP_SENSE		(1<<0)	/* impedance sense capable */ +#define AC_PINCAP_TRIG_REQ		(1<<1)	/* trigger required */ +#define AC_PINCAP_PRES_DETECT		(1<<2)	/* presence detect capable */ +#define AC_PINCAP_HP_DRV		(1<<3)	/* headphone drive capable */ +#define AC_PINCAP_OUT			(1<<4)	/* output capable */ +#define AC_PINCAP_IN			(1<<5)	/* input capable */ +#define AC_PINCAP_BALANCE		(1<<6)	/* balanced I/O capable */ +/* Note: This LR_SWAP pincap is defined in the Realtek ALC883 specification, + *       but is marked reserved in the Intel HDA specification. + */ +#define AC_PINCAP_LR_SWAP		(1<<7)	/* L/R swap */ +/* Note: The same bit as LR_SWAP is newly defined as HDMI capability + *       in HD-audio specification + */ +#define AC_PINCAP_HDMI			(1<<7)	/* HDMI pin */ +#define AC_PINCAP_DP			(1<<24)	/* DisplayPort pin, can +						 * coexist with AC_PINCAP_HDMI +						 */ +#define AC_PINCAP_VREF			(0x37<<8) +#define AC_PINCAP_VREF_SHIFT		8 +#define AC_PINCAP_EAPD			(1<<16)	/* EAPD capable */ +#define AC_PINCAP_HBR			(1<<27)	/* High Bit Rate */ +/* Vref status (used in pin cap) */ +#define AC_PINCAP_VREF_HIZ		(1<<0)	/* Hi-Z */ +#define AC_PINCAP_VREF_50		(1<<1)	/* 50% */ +#define AC_PINCAP_VREF_GRD		(1<<2)	/* ground */ +#define AC_PINCAP_VREF_80		(1<<4)	/* 80% */ +#define AC_PINCAP_VREF_100		(1<<5)	/* 100% */ + +/* Amplifier capabilities */ +#define AC_AMPCAP_OFFSET		(0x7f<<0)  /* 0dB offset */ +#define AC_AMPCAP_OFFSET_SHIFT		0 +#define AC_AMPCAP_NUM_STEPS		(0x7f<<8)  /* number of steps */ +#define AC_AMPCAP_NUM_STEPS_SHIFT	8 +#define AC_AMPCAP_STEP_SIZE		(0x7f<<16) /* step size 0-32dB +						    * in 0.25dB +						    */ +#define AC_AMPCAP_STEP_SIZE_SHIFT	16 +#define AC_AMPCAP_MUTE			(1<<31)    /* mute capable */ +#define AC_AMPCAP_MUTE_SHIFT		31 + +/* driver-specific amp-caps: using bits 24-30 */ +#define AC_AMPCAP_MIN_MUTE		(1 << 30) /* min-volume = mute */ + +/* Connection list */ +#define AC_CLIST_LENGTH			(0x7f<<0) +#define AC_CLIST_LONG			(1<<7) + +/* Supported power status */ +#define AC_PWRST_D0SUP			(1<<0) +#define AC_PWRST_D1SUP			(1<<1) +#define AC_PWRST_D2SUP			(1<<2) +#define AC_PWRST_D3SUP			(1<<3) +#define AC_PWRST_D3COLDSUP		(1<<4) +#define AC_PWRST_S3D3COLDSUP		(1<<29) +#define AC_PWRST_CLKSTOP		(1<<30) +#define AC_PWRST_EPSS			(1U<<31) + +/* Power state values */ +#define AC_PWRST_SETTING		(0xf<<0) +#define AC_PWRST_ACTUAL			(0xf<<4) +#define AC_PWRST_ACTUAL_SHIFT		4 +#define AC_PWRST_D0			0x00 +#define AC_PWRST_D1			0x01 +#define AC_PWRST_D2			0x02 +#define AC_PWRST_D3			0x03 +#define AC_PWRST_ERROR                  (1<<8) +#define AC_PWRST_CLK_STOP_OK            (1<<9) +#define AC_PWRST_SETTING_RESET          (1<<10) + +/* Processing capabilies */ +#define AC_PCAP_BENIGN			(1<<0) +#define AC_PCAP_NUM_COEF		(0xff<<8) +#define AC_PCAP_NUM_COEF_SHIFT		8 + +/* Volume knobs capabilities */ +#define AC_KNBCAP_NUM_STEPS		(0x7f<<0) +#define AC_KNBCAP_DELTA			(1<<7) + +/* HDMI LPCM capabilities */ +#define AC_LPCMCAP_48K_CP_CHNS		(0x0f<<0) /* max channels w/ CP-on */ +#define AC_LPCMCAP_48K_NO_CHNS		(0x0f<<4) /* max channels w/o CP-on */ +#define AC_LPCMCAP_48K_20BIT		(1<<8)	/* 20b bitrate supported */ +#define AC_LPCMCAP_48K_24BIT		(1<<9)	/* 24b bitrate supported */ +#define AC_LPCMCAP_96K_CP_CHNS		(0x0f<<10) /* max channels w/ CP-on */ +#define AC_LPCMCAP_96K_NO_CHNS		(0x0f<<14) /* max channels w/o CP-on */ +#define AC_LPCMCAP_96K_20BIT		(1<<18)	/* 20b bitrate supported */ +#define AC_LPCMCAP_96K_24BIT		(1<<19)	/* 24b bitrate supported */ +#define AC_LPCMCAP_192K_CP_CHNS		(0x0f<<20) /* max channels w/ CP-on */ +#define AC_LPCMCAP_192K_NO_CHNS		(0x0f<<24) /* max channels w/o CP-on */ +#define AC_LPCMCAP_192K_20BIT		(1<<28)	/* 20b bitrate supported */ +#define AC_LPCMCAP_192K_24BIT		(1<<29)	/* 24b bitrate supported */ +#define AC_LPCMCAP_44K			(1<<30)	/* 44.1kHz support */ +#define AC_LPCMCAP_44K_MS		(1<<31)	/* 44.1kHz-multiplies support */ + +/* Display pin's device list length */ +#define AC_DEV_LIST_LEN_MASK		0x3f +#define AC_MAX_DEV_LIST_LEN		64 + +/* + * Control Parameters + */ + +/* Amp gain/mute */ +#define AC_AMP_MUTE			(1<<7) +#define AC_AMP_GAIN			(0x7f) +#define AC_AMP_GET_INDEX		(0xf<<0) + +#define AC_AMP_GET_LEFT			(1<<13) +#define AC_AMP_GET_RIGHT		(0<<13) +#define AC_AMP_GET_OUTPUT		(1<<15) +#define AC_AMP_GET_INPUT		(0<<15) + +#define AC_AMP_SET_INDEX		(0xf<<8) +#define AC_AMP_SET_INDEX_SHIFT		8 +#define AC_AMP_SET_RIGHT		(1<<12) +#define AC_AMP_SET_LEFT			(1<<13) +#define AC_AMP_SET_INPUT		(1<<14) +#define AC_AMP_SET_OUTPUT		(1<<15) + +/* DIGITAL1 bits */ +#define AC_DIG1_ENABLE			(1<<0) +#define AC_DIG1_V			(1<<1) +#define AC_DIG1_VCFG			(1<<2) +#define AC_DIG1_EMPHASIS		(1<<3) +#define AC_DIG1_COPYRIGHT		(1<<4) +#define AC_DIG1_NONAUDIO		(1<<5) +#define AC_DIG1_PROFESSIONAL		(1<<6) +#define AC_DIG1_LEVEL			(1<<7) + +/* DIGITAL2 bits */ +#define AC_DIG2_CC			(0x7f<<0) + +/* DIGITAL3 bits */ +#define AC_DIG3_ICT			(0xf<<0) +#define AC_DIG3_KAE			(1<<7) + +/* Pin widget control - 8bit */ +#define AC_PINCTL_EPT			(0x3<<0) +#define AC_PINCTL_EPT_NATIVE		0 +#define AC_PINCTL_EPT_HBR		3 +#define AC_PINCTL_VREFEN		(0x7<<0) +#define AC_PINCTL_VREF_HIZ		0	/* Hi-Z */ +#define AC_PINCTL_VREF_50		1	/* 50% */ +#define AC_PINCTL_VREF_GRD		2	/* ground */ +#define AC_PINCTL_VREF_80		4	/* 80% */ +#define AC_PINCTL_VREF_100		5	/* 100% */ +#define AC_PINCTL_IN_EN			(1<<5) +#define AC_PINCTL_OUT_EN		(1<<6) +#define AC_PINCTL_HP_EN			(1<<7) + +/* Pin sense - 32bit */ +#define AC_PINSENSE_IMPEDANCE_MASK	(0x7fffffff) +#define AC_PINSENSE_PRESENCE		(1<<31) +#define AC_PINSENSE_ELDV		(1<<30)	/* ELD valid (HDMI) */ + +/* EAPD/BTL enable - 32bit */ +#define AC_EAPDBTL_BALANCED		(1<<0) +#define AC_EAPDBTL_EAPD			(1<<1) +#define AC_EAPDBTL_LR_SWAP		(1<<2) + +/* HDMI ELD data */ +#define AC_ELDD_ELD_VALID		(1<<31) +#define AC_ELDD_ELD_DATA		0xff + +/* HDMI DIP size */ +#define AC_DIPSIZE_ELD_BUF		(1<<3) /* ELD buf size of packet size */ +#define AC_DIPSIZE_PACK_IDX		(0x07<<0) /* packet index */ + +/* HDMI DIP index */ +#define AC_DIPIDX_PACK_IDX		(0x07<<5) /* packet idnex */ +#define AC_DIPIDX_BYTE_IDX		(0x1f<<0) /* byte index */ + +/* HDMI DIP xmit (transmit) control */ +#define AC_DIPXMIT_MASK			(0x3<<6) +#define AC_DIPXMIT_DISABLE		(0x0<<6) /* disable xmit */ +#define AC_DIPXMIT_ONCE			(0x2<<6) /* xmit once then disable */ +#define AC_DIPXMIT_BEST			(0x3<<6) /* best effort */ + +/* HDMI content protection (CP) control */ +#define AC_CPCTRL_CES			(1<<9) /* current encryption state */ +#define AC_CPCTRL_READY			(1<<8) /* ready bit */ +#define AC_CPCTRL_SUBTAG		(0x1f<<3) /* subtag for unsol-resp */ +#define AC_CPCTRL_STATE			(3<<0) /* current CP request state */ + +/* Converter channel <-> HDMI slot mapping */ +#define AC_CVTMAP_HDMI_SLOT		(0xf<<0) /* HDMI slot number */ +#define AC_CVTMAP_CHAN			(0xf<<4) /* converter channel number */ + +/* configuration default - 32bit */ +#define AC_DEFCFG_SEQUENCE		(0xf<<0) +#define AC_DEFCFG_DEF_ASSOC		(0xf<<4) +#define AC_DEFCFG_ASSOC_SHIFT		4 +#define AC_DEFCFG_MISC			(0xf<<8) +#define AC_DEFCFG_MISC_SHIFT		8 +#define AC_DEFCFG_MISC_NO_PRESENCE	(1<<0) +#define AC_DEFCFG_COLOR			(0xf<<12) +#define AC_DEFCFG_COLOR_SHIFT		12 +#define AC_DEFCFG_CONN_TYPE		(0xf<<16) +#define AC_DEFCFG_CONN_TYPE_SHIFT	16 +#define AC_DEFCFG_DEVICE		(0xf<<20) +#define AC_DEFCFG_DEVICE_SHIFT		20 +#define AC_DEFCFG_LOCATION		(0x3f<<24) +#define AC_DEFCFG_LOCATION_SHIFT	24 +#define AC_DEFCFG_PORT_CONN		(0x3<<30) +#define AC_DEFCFG_PORT_CONN_SHIFT	30 + +/* Display pin's device list entry */ +#define AC_DE_PD			(1<<0) +#define AC_DE_ELDV			(1<<1) +#define AC_DE_IA			(1<<2) + +/* device device types (0x0-0xf) */ +enum { +	AC_JACK_LINE_OUT, +	AC_JACK_SPEAKER, +	AC_JACK_HP_OUT, +	AC_JACK_CD, +	AC_JACK_SPDIF_OUT, +	AC_JACK_DIG_OTHER_OUT, +	AC_JACK_MODEM_LINE_SIDE, +	AC_JACK_MODEM_HAND_SIDE, +	AC_JACK_LINE_IN, +	AC_JACK_AUX, +	AC_JACK_MIC_IN, +	AC_JACK_TELEPHONY, +	AC_JACK_SPDIF_IN, +	AC_JACK_DIG_OTHER_IN, +	AC_JACK_OTHER = 0xf, +}; + +/* jack connection types (0x0-0xf) */ +enum { +	AC_JACK_CONN_UNKNOWN, +	AC_JACK_CONN_1_8, +	AC_JACK_CONN_1_4, +	AC_JACK_CONN_ATAPI, +	AC_JACK_CONN_RCA, +	AC_JACK_CONN_OPTICAL, +	AC_JACK_CONN_OTHER_DIGITAL, +	AC_JACK_CONN_OTHER_ANALOG, +	AC_JACK_CONN_DIN, +	AC_JACK_CONN_XLR, +	AC_JACK_CONN_RJ11, +	AC_JACK_CONN_COMB, +	AC_JACK_CONN_OTHER = 0xf, +}; + +/* jack colors (0x0-0xf) */ +enum { +	AC_JACK_COLOR_UNKNOWN, +	AC_JACK_COLOR_BLACK, +	AC_JACK_COLOR_GREY, +	AC_JACK_COLOR_BLUE, +	AC_JACK_COLOR_GREEN, +	AC_JACK_COLOR_RED, +	AC_JACK_COLOR_ORANGE, +	AC_JACK_COLOR_YELLOW, +	AC_JACK_COLOR_PURPLE, +	AC_JACK_COLOR_PINK, +	AC_JACK_COLOR_WHITE = 0xe, +	AC_JACK_COLOR_OTHER, +}; + +/* Jack location (0x0-0x3f) */ +/* common case */ +enum { +	AC_JACK_LOC_NONE, +	AC_JACK_LOC_REAR, +	AC_JACK_LOC_FRONT, +	AC_JACK_LOC_LEFT, +	AC_JACK_LOC_RIGHT, +	AC_JACK_LOC_TOP, +	AC_JACK_LOC_BOTTOM, +}; +/* bits 4-5 */ +enum { +	AC_JACK_LOC_EXTERNAL = 0x00, +	AC_JACK_LOC_INTERNAL = 0x10, +	AC_JACK_LOC_SEPARATE = 0x20, +	AC_JACK_LOC_OTHER    = 0x30, +}; +enum { +	/* external on primary chasis */ +	AC_JACK_LOC_REAR_PANEL = 0x07, +	AC_JACK_LOC_DRIVE_BAY, +	/* internal */ +	AC_JACK_LOC_RISER = 0x17, +	AC_JACK_LOC_HDMI, +	AC_JACK_LOC_ATAPI, +	/* others */ +	AC_JACK_LOC_MOBILE_IN = 0x37, +	AC_JACK_LOC_MOBILE_OUT, +}; + +/* Port connectivity (0-3) */ +enum { +	AC_JACK_PORT_COMPLEX, +	AC_JACK_PORT_NONE, +	AC_JACK_PORT_FIXED, +	AC_JACK_PORT_BOTH, +}; + +/* max. codec address */ +#define HDA_MAX_CODEC_ADDRESS	0x0f + +#endif /* __SOUND_HDA_VERBS_H */ diff --git a/include/sound/hwdep.h b/include/sound/hwdep.h index 8c05e47a409..ae04a3ec9c7 100644 --- a/include/sound/hwdep.h +++ b/include/sound/hwdep.h @@ -60,7 +60,6 @@ struct snd_hwdep {  	int iface;  #ifdef CONFIG_SND_OSSEMUL -	char oss_dev[32];  	int oss_type;  	int ossreg;  #endif @@ -69,6 +68,8 @@ struct snd_hwdep {  	wait_queue_head_t open_wait;  	void *private_data;  	void (*private_free) (struct snd_hwdep *hwdep); +	struct device *dev; +	const struct attribute_group **groups;  	struct mutex open_mutex;  	int used;			/* reference counter */ diff --git a/include/sound/memalloc.h b/include/sound/memalloc.h index cf15b8213df..782d1df3420 100644 --- a/include/sound/memalloc.h +++ b/include/sound/memalloc.h @@ -52,6 +52,11 @@ struct snd_dma_device {  #else  #define SNDRV_DMA_TYPE_DEV_SG	SNDRV_DMA_TYPE_DEV /* no SG-buf support */  #endif +#ifdef CONFIG_GENERIC_ALLOCATOR +#define SNDRV_DMA_TYPE_DEV_IRAM		4	/* generic device iram-buffer */ +#else +#define SNDRV_DMA_TYPE_DEV_IRAM	SNDRV_DMA_TYPE_DEV +#endif  /*   * info for buffer allocation @@ -103,7 +108,7 @@ static inline dma_addr_t snd_sgbuf_get_addr(struct snd_dma_buffer *dmab,  {  	struct snd_sg_buf *sgbuf = dmab->private_data;  	dma_addr_t addr = sgbuf->table[offset >> PAGE_SHIFT].addr; -	addr &= PAGE_MASK; +	addr &= ~((dma_addr_t)PAGE_SIZE - 1);  	return addr + offset % PAGE_SIZE;  } @@ -144,13 +149,6 @@ int snd_dma_alloc_pages_fallback(int type, struct device *dev, size_t size,                                   struct snd_dma_buffer *dmab);  void snd_dma_free_pages(struct snd_dma_buffer *dmab); -/* buffer-preservation managements */ - -#define snd_dma_pci_buf_id(pci)	(((unsigned int)(pci)->vendor << 16) | (pci)->device) - -size_t snd_dma_get_reserved_buf(struct snd_dma_buffer *dmab, unsigned int id); -int snd_dma_reserve_buf(struct snd_dma_buffer *dmab, unsigned int id); -  /* basic memory allocation functions */  void *snd_malloc_pages(size_t size, gfp_t gfp_flags);  void snd_free_pages(void *ptr, size_t size); diff --git a/include/sound/omap-pcm.h b/include/sound/omap-pcm.h new file mode 100644 index 00000000000..c1d2f31d71e --- /dev/null +++ b/include/sound/omap-pcm.h @@ -0,0 +1,30 @@ +/* + * omap-pcm.h - OMAP PCM driver + * + * Copyright (C) 2014 Texas Instruments, Inc. + * + * Author: Peter Ujfalusi <peter.ujfalusi@ti.com> + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * version 2 as published by the Free Software Foundation. + * + * 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. + */ + +#ifndef __OMAP_PCM_H__ +#define __OMAP_PCM_H__ + +#if IS_ENABLED(CONFIG_SND_OMAP_SOC) +int omap_pcm_platform_register(struct device *dev); +#else +static inline int omap_pcm_platform_register(struct device *dev) +{ +	return 0; +} +#endif /* CONFIG_SND_OMAP_SOC */ + +#endif /* __OMAP_PCM_H__ */ diff --git a/include/sound/pcm.h b/include/sound/pcm.h index 84b10f9a283..d854fb31c00 100644 --- a/include/sound/pcm.h +++ b/include/sound/pcm.h @@ -381,7 +381,6 @@ struct snd_pcm_substream {  	struct pm_qos_request latency_pm_qos_req; /* pm_qos request */  	size_t buffer_bytes_max;	/* limit ring buffer size */  	struct snd_dma_buffer dma_buffer; -	unsigned int dma_buf_id;  	size_t dma_max;  	/* -- hardware operations -- */  	const struct snd_pcm_ops *ops; @@ -901,6 +900,8 @@ extern const struct snd_pcm_hw_constraint_list snd_pcm_known_rates;  int snd_pcm_limit_hw_rates(struct snd_pcm_runtime *runtime);  unsigned int snd_pcm_rate_to_rate_bit(unsigned int rate);  unsigned int snd_pcm_rate_bit_to_rate(unsigned int rate_bit); +unsigned int snd_pcm_rate_mask_intersect(unsigned int rates_a, +					 unsigned int rates_b);  static inline void snd_pcm_set_runtime_buffer(struct snd_pcm_substream *substream,  					      struct snd_dma_buffer *bufp) @@ -931,7 +932,7 @@ static inline void snd_pcm_gettime(struct snd_pcm_runtime *runtime,  				   struct timespec *tv)  {  	if (runtime->tstamp_type == SNDRV_PCM_TSTAMP_TYPE_MONOTONIC) -		do_posix_clock_monotonic_gettime(tv); +		ktime_get_ts(tv);  	else  		getnstimeofday(tv);  } @@ -1140,4 +1141,12 @@ static inline u64 pcm_format_to_bits(snd_pcm_format_t pcm_format)  	return 1ULL << (__force int) pcm_format;  } +/* printk helpers */ +#define pcm_err(pcm, fmt, args...) \ +	dev_err((pcm)->card->dev, fmt, ##args) +#define pcm_warn(pcm, fmt, args...) \ +	dev_warn((pcm)->card->dev, fmt, ##args) +#define pcm_dbg(pcm, fmt, args...) \ +	dev_dbg((pcm)->card->dev, fmt, ##args) +  #endif /* __SOUND_PCM_H */ diff --git a/include/sound/pcm_params.h b/include/sound/pcm_params.h index 37ae12e0ab0..6b1c78f05fa 100644 --- a/include/sound/pcm_params.h +++ b/include/sound/pcm_params.h @@ -354,4 +354,16 @@ params_period_bytes(const struct snd_pcm_hw_params *p)  		params_channels(p)) / 8;  } +static inline int +params_width(const struct snd_pcm_hw_params *p) +{ +	return snd_pcm_format_width(params_format(p)); +} + +static inline int +params_physical_width(const struct snd_pcm_hw_params *p) +{ +	return snd_pcm_format_physical_width(params_format(p)); +} +  #endif /* __SOUND_PCM_PARAMS_H */ diff --git a/include/sound/rawmidi.h b/include/sound/rawmidi.h index adf0885153f..311dafe6cc4 100644 --- a/include/sound/rawmidi.h +++ b/include/sound/rawmidi.h @@ -157,10 +157,8 @@ void snd_rawmidi_set_ops(struct snd_rawmidi *rmidi, int stream,  /* callbacks */ -void snd_rawmidi_receive_reset(struct snd_rawmidi_substream *substream);  int snd_rawmidi_receive(struct snd_rawmidi_substream *substream,  			const unsigned char *buffer, int count); -void snd_rawmidi_transmit_reset(struct snd_rawmidi_substream *substream);  int snd_rawmidi_transmit_empty(struct snd_rawmidi_substream *substream);  int snd_rawmidi_transmit_peek(struct snd_rawmidi_substream *substream,  			      unsigned char *buffer, int count); diff --git a/include/sound/rcar_snd.h b/include/sound/rcar_snd.h index fe66533e9b7..f4a706f82cb 100644 --- a/include/sound/rcar_snd.h +++ b/include/sound/rcar_snd.h @@ -18,7 +18,7 @@  #define RSND_GEN1_ADG	1  #define RSND_GEN1_SSI	2 -#define RSND_GEN2_SRU	0 +#define RSND_GEN2_SCU	0  #define RSND_GEN2_ADG	1  #define RSND_GEN2_SSIU	2  #define RSND_GEN2_SSI	3 @@ -34,33 +34,46 @@   * B : SSI direction   */  #define RSND_SSI_CLK_PIN_SHARE		(1 << 31) -#define RSND_SSI_CLK_FROM_ADG		(1 << 30) /* clock parent is master */ -#define RSND_SSI_SYNC			(1 << 29) /* SSI34_sync etc */ -#define RSND_SSI_DEPENDENT		(1 << 28) /* SSI needs SRU/SCU */ -#define RSND_SSI_PLAY			(1 << 24) - -#define RSND_SSI_SET(_dai_id, _dma_id, _pio_irq, _flags)	\ -{ .dai_id = _dai_id, .dma_id = _dma_id, .pio_irq = _pio_irq, .flags = _flags } +#define RSND_SSI(_dma_id, _pio_irq, _flags)		\ +{ .dma_id = _dma_id, .pio_irq = _pio_irq, .flags = _flags }  #define RSND_SSI_UNUSED \ -{ .dai_id = -1, .dma_id = -1, .pio_irq = -1, .flags = 0 } +{ .dma_id = -1, .pio_irq = -1, .flags = 0 }  struct rsnd_ssi_platform_info { -	int dai_id;  	int dma_id;  	int pio_irq;  	u32 flags;  }; +#define RSND_SRC(rate, _dma_id)						\ +{ .convert_rate = rate, .dma_id = _dma_id, } +#define RSND_SRC_UNUSED				\ +{ .convert_rate = 0, .dma_id = -1, } + +struct rsnd_src_platform_info { +	u32 convert_rate; /* sampling rate convert */ +	int dma_id; /* for Gen2 SCU */ +}; +  /*   * flags   */ -#define RSND_SCU_USE_HPBIF		(1 << 31) /* it needs RSND_SSI_DEPENDENT */ - -struct rsnd_scu_platform_info { +struct rsnd_dvc_platform_info {  	u32 flags;  }; +struct rsnd_dai_path_info { +	struct rsnd_ssi_platform_info *ssi; +	struct rsnd_src_platform_info *src; +	struct rsnd_dvc_platform_info *dvc; +}; + +struct rsnd_dai_platform_info { +	struct rsnd_dai_path_info playback; +	struct rsnd_dai_path_info capture; +}; +  /*   * flags   * @@ -68,6 +81,7 @@ struct rsnd_scu_platform_info {   *   * A : generation   */ +#define RSND_GEN_MASK	(0xF << 0)  #define RSND_GEN1	(1 << 0) /* fixme */  #define RSND_GEN2	(2 << 0) /* fixme */ @@ -75,8 +89,12 @@ struct rcar_snd_info {  	u32 flags;  	struct rsnd_ssi_platform_info *ssi_info;  	int ssi_info_nr; -	struct rsnd_scu_platform_info *scu_info; -	int scu_info_nr; +	struct rsnd_src_platform_info *src_info; +	int src_info_nr; +	struct rsnd_dvc_platform_info *dvc_info; +	int dvc_info_nr; +	struct rsnd_dai_platform_info *dai_info; +	int dai_info_nr;  	int (*start)(int id);  	int (*stop)(int id);  }; diff --git a/include/sound/rt5640.h b/include/sound/rt5640.h index 27cc75ed67f..59d26dd81e4 100644 --- a/include/sound/rt5640.h +++ b/include/sound/rt5640.h @@ -16,6 +16,10 @@ struct rt5640_platform_data {  	bool in1_diff;  	bool in2_diff; +	bool dmic_en; +	bool dmic1_data_pin; /* 0 = IN1P; 1 = GPIO3 */ +	bool dmic2_data_pin; /* 0 = IN1N; 1 = GPIO4 */ +  	int ldo1_en; /* GPIO for LDO1_EN */  }; diff --git a/include/sound/rt5645.h b/include/sound/rt5645.h new file mode 100644 index 00000000000..1de744c242f --- /dev/null +++ b/include/sound/rt5645.h @@ -0,0 +1,25 @@ +/* + * linux/sound/rt5645.h -- Platform data for RT5645 + * + * Copyright 2013 Realtek Microelectronics + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License version 2 as + * published by the Free Software Foundation. + */ + +#ifndef __LINUX_SND_RT5645_H +#define __LINUX_SND_RT5645_H + +struct rt5645_platform_data { +	/* IN2 can optionally be differential */ +	bool in2_diff; + +	bool dmic_en; +	unsigned int dmic1_data_pin; +	/* 0 = IN2N; 1 = GPIO5; 2 = GPIO11 */ +	unsigned int dmic2_data_pin; +	/* 0 = IN2P; 1 = GPIO6; 2 = GPIO10; 3 = GPIO12 */ +}; + +#endif diff --git a/include/sound/rt5651.h b/include/sound/rt5651.h new file mode 100644 index 00000000000..d35de758dfb --- /dev/null +++ b/include/sound/rt5651.h @@ -0,0 +1,21 @@ +/* + * linux/sound/rt286.h -- Platform data for RT286 + * + * Copyright 2013 Realtek Microelectronics + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License version 2 as + * published by the Free Software Foundation. + */ + +#ifndef __LINUX_SND_RT5651_H +#define __LINUX_SND_RT5651_H + +struct rt5651_platform_data { +	/* IN2 can optionally be differential */ +	bool in2_diff; + +	bool dmic_en; +}; + +#endif diff --git a/include/sound/rt5677.h b/include/sound/rt5677.h new file mode 100644 index 00000000000..3da14313bcf --- /dev/null +++ b/include/sound/rt5677.h @@ -0,0 +1,21 @@ +/* + * linux/sound/rt5677.h -- Platform data for RT5677 + * + * Copyright 2013 Realtek Semiconductor Corp. + * Author: Oder Chiou <oder_chiou@realtek.com> + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License version 2 as + * published by the Free Software Foundation. + */ + +#ifndef __LINUX_SND_RT5677_H +#define __LINUX_SND_RT5677_H + +struct rt5677_platform_data { +	/* IN1 IN2 can optionally be differential */ +	bool in1_diff; +	bool in2_diff; +}; + +#endif diff --git a/include/sound/simple_card.h b/include/sound/simple_card.h index 6c74527d492..9b0ac77177b 100644 --- a/include/sound/simple_card.h +++ b/include/sound/simple_card.h @@ -18,6 +18,8 @@ struct asoc_simple_dai {  	const char *name;  	unsigned int fmt;  	unsigned int sysclk; +	int slots; +	int slot_width;  };  struct asoc_simple_card_info { @@ -29,10 +31,6 @@ struct asoc_simple_card_info {  	unsigned int daifmt;  	struct asoc_simple_dai cpu_dai;  	struct asoc_simple_dai codec_dai; - -	/* used in simple-card.c */ -	struct snd_soc_dai_link snd_link; -	struct snd_soc_card snd_card;  };  #endif /* __SIMPLE_CARD_H */ diff --git a/include/sound/soc-dai.h b/include/sound/soc-dai.h index ae9a227d35d..688f2ba8009 100644 --- a/include/sound/soc-dai.h +++ b/include/sound/soc-dai.h @@ -105,6 +105,8 @@ int snd_soc_dai_set_clkdiv(struct snd_soc_dai *dai,  int snd_soc_dai_set_pll(struct snd_soc_dai *dai,  	int pll_id, int source, unsigned int freq_in, unsigned int freq_out); +int snd_soc_dai_set_bclk_ratio(struct snd_soc_dai *dai, unsigned int ratio); +  /* Digital Audio interface formatting */  int snd_soc_dai_set_fmt(struct snd_soc_dai *dai, unsigned int fmt); @@ -121,6 +123,8 @@ int snd_soc_dai_set_tristate(struct snd_soc_dai *dai, int tristate);  int snd_soc_dai_digital_mute(struct snd_soc_dai *dai, int mute,  			     int direction); +int snd_soc_dai_is_dummy(struct snd_soc_dai *dai); +  struct snd_soc_dai_ops {  	/*  	 * DAI clocking configuration, all optional. @@ -131,12 +135,15 @@ struct snd_soc_dai_ops {  	int (*set_pll)(struct snd_soc_dai *dai, int pll_id, int source,  		unsigned int freq_in, unsigned int freq_out);  	int (*set_clkdiv)(struct snd_soc_dai *dai, int div_id, int div); +	int (*set_bclk_ratio)(struct snd_soc_dai *dai, unsigned int ratio);  	/*  	 * DAI format configuration  	 * Called by soc_card drivers, normally in their hw_params.  	 */  	int (*set_fmt)(struct snd_soc_dai *dai, unsigned int fmt); +	int (*xlate_tdm_slot_mask)(unsigned int slots, +		unsigned int *tx_mask, unsigned int *rx_mask);  	int (*set_tdm_slot)(struct snd_soc_dai *dai,  		unsigned int tx_mask, unsigned int rx_mask,  		int slots, int slot_width); @@ -166,6 +173,13 @@ struct snd_soc_dai_ops {  		struct snd_soc_dai *);  	int (*prepare)(struct snd_pcm_substream *,  		struct snd_soc_dai *); +	/* +	 * NOTE: Commands passed to the trigger function are not necessarily +	 * compatible with the current state of the dai. For example this +	 * sequence of commands is possible: START STOP STOP. +	 * So do not unconditionally use refcounting functions in the trigger +	 * function, e.g. clk_enable/disable. +	 */  	int (*trigger)(struct snd_pcm_substream *, int,  		struct snd_soc_dai *);  	int (*bespoke_trigger)(struct snd_pcm_substream *, int, @@ -210,6 +224,8 @@ struct snd_soc_dai_driver {  	struct snd_soc_pcm_stream capture;  	struct snd_soc_pcm_stream playback;  	unsigned int symmetric_rates:1; +	unsigned int symmetric_channels:1; +	unsigned int symmetric_samplebits:1;  	/* probe ordering - for components with runtime dependencies */  	int probe_order; @@ -234,7 +250,8 @@ struct snd_soc_dai {  	unsigned int capture_active:1;		/* stream is in use */  	unsigned int playback_active:1;		/* stream is in use */  	unsigned int symmetric_rates:1; -	struct snd_pcm_runtime *runtime; +	unsigned int symmetric_channels:1; +	unsigned int symmetric_samplebits:1;  	unsigned int active;  	unsigned char probed:1; @@ -248,15 +265,17 @@ struct snd_soc_dai {  	/* Symmetry data - only valid if symmetry is being enforced */  	unsigned int rate; +	unsigned int channels; +	unsigned int sample_bits;  	/* parent platform/codec */  	struct snd_soc_platform *platform;  	struct snd_soc_codec *codec; +	struct snd_soc_component *component;  	struct snd_soc_card *card;  	struct list_head list; -	struct list_head card_list;  };  static inline void *snd_soc_dai_get_dma_data(const struct snd_soc_dai *dai, @@ -276,6 +295,13 @@ static inline void snd_soc_dai_set_dma_data(struct snd_soc_dai *dai,  		dai->capture_dma_data = data;  } +static inline void snd_soc_dai_init_dma_data(struct snd_soc_dai *dai, +					     void *playback, void *capture) +{ +	dai->playback_dma_data = playback; +	dai->capture_dma_data = capture; +} +  static inline void snd_soc_dai_set_drvdata(struct snd_soc_dai *dai,  		void *data)  { diff --git a/include/sound/soc-dapm.h b/include/sound/soc-dapm.h index 27a72d5d4b0..6b59471cdf4 100644 --- a/include/sound/soc-dapm.h +++ b/include/sound/soc-dapm.h @@ -104,14 +104,7 @@ struct device;  	SND_SOC_DAPM_INIT_REG_VAL(wreg, wshift, winvert), \  	.kcontrol_news = wcontrols, .num_kcontrols = 1}  #define SND_SOC_DAPM_MUX(wname, wreg, wshift, winvert, wcontrols) \ -{	.id = snd_soc_dapm_mux, .name = wname, .reg = wreg, \ -	.kcontrol_news = wcontrols, .num_kcontrols = 1} -#define SND_SOC_DAPM_VIRT_MUX(wname, wreg, wshift, winvert, wcontrols) \ -{	.id = snd_soc_dapm_virt_mux, .name = wname, \ -	SND_SOC_DAPM_INIT_REG_VAL(wreg, wshift, winvert), \ -	.kcontrol_news = wcontrols, .num_kcontrols = 1} -#define SND_SOC_DAPM_VALUE_MUX(wname, wreg, wshift, winvert, wcontrols) \ -{	.id = snd_soc_dapm_value_mux, .name = wname, \ +{	.id = snd_soc_dapm_mux, .name = wname, \  	SND_SOC_DAPM_INIT_REG_VAL(wreg, wshift, winvert), \  	.kcontrol_news = wcontrols, .num_kcontrols = 1} @@ -169,12 +162,6 @@ struct device;  	SND_SOC_DAPM_INIT_REG_VAL(wreg, wshift, winvert), \  	.kcontrol_news = wcontrols, .num_kcontrols = 1, \  	.event = wevent, .event_flags = wflags} -#define SND_SOC_DAPM_VIRT_MUX_E(wname, wreg, wshift, winvert, wcontrols, \ -	wevent, wflags) \ -{	.id = snd_soc_dapm_virt_mux, .name = wname, \ -	SND_SOC_DAPM_INIT_REG_VAL(wreg, wshift, winvert), \ -	.kcontrol_news = wcontrols, .num_kcontrols = 1, \ -	.event = wevent, .event_flags = wflags}  /* additional sequencing control within an event type */  #define SND_SOC_DAPM_PGA_S(wname, wsubseq, wreg, wshift, winvert, \ @@ -261,9 +248,8 @@ struct device;  /* generic widgets */  #define SND_SOC_DAPM_REG(wid, wname, wreg, wshift, wmask, won_val, woff_val) \  {	.id = wid, .name = wname, .kcontrol_news = NULL, .num_kcontrols = 0, \ -	.reg = -((wreg) + 1), .shift = wshift, .mask = wmask, \ -	.on_val = won_val, .off_val = woff_val, .event = dapm_reg_event, \ -	.event_flags = SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMD} +	.reg = wreg, .shift = wshift, .mask = wmask, \ +	.on_val = won_val, .off_val = woff_val, }  #define SND_SOC_DAPM_SUPPLY(wname, wreg, wshift, winvert, wevent, wflags) \  {	.id = snd_soc_dapm_supply, .name = wname, \  	SND_SOC_DAPM_INIT_REG_VAL(wreg, wshift, winvert), \ @@ -286,6 +272,8 @@ struct device;  	.info = snd_soc_info_volsw, \  	.get = snd_soc_dapm_get_volsw, .put = snd_soc_dapm_put_volsw, \  	.private_value = SOC_SINGLE_VALUE(reg, shift, max, invert, 1) } +#define SOC_DAPM_SINGLE_VIRT(xname, max) \ +	SOC_DAPM_SINGLE(xname, SND_SOC_NOPM, 0, max, 0)  #define SOC_DAPM_SINGLE_TLV(xname, reg, shift, max, invert, tlv_array) \  {	.iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \  	.info = snd_soc_info_volsw, \ @@ -300,30 +288,20 @@ struct device;  	.tlv.p = (tlv_array), \  	.get = snd_soc_dapm_get_volsw, .put = snd_soc_dapm_put_volsw, \  	.private_value = SOC_SINGLE_VALUE(reg, shift, max, invert, 0) } +#define SOC_DAPM_SINGLE_TLV_VIRT(xname, max, tlv_array) \ +	SOC_DAPM_SINGLE(xname, SND_SOC_NOPM, 0, max, 0, tlv_array)  #define SOC_DAPM_ENUM(xname, xenum) \  {	.iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \  	.info = snd_soc_info_enum_double, \   	.get = snd_soc_dapm_get_enum_double, \   	.put = snd_soc_dapm_put_enum_double, \    	.private_value = (unsigned long)&xenum } -#define SOC_DAPM_ENUM_VIRT(xname, xenum)		    \ -{	.iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \ -	.info = snd_soc_info_enum_double, \ -	.get = snd_soc_dapm_get_enum_virt, \ -	.put = snd_soc_dapm_put_enum_virt, \ -	.private_value = (unsigned long)&xenum }  #define SOC_DAPM_ENUM_EXT(xname, xenum, xget, xput) \  {	.iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \  	.info = snd_soc_info_enum_double, \  	.get = xget, \  	.put = xput, \  	.private_value = (unsigned long)&xenum } -#define SOC_DAPM_VALUE_ENUM(xname, xenum) \ -{	.iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \ -	.info = snd_soc_info_enum_double, \ -	.get = snd_soc_dapm_get_value_enum_double, \ -	.put = snd_soc_dapm_put_value_enum_double, \ -	.private_value = (unsigned long)&xenum }  #define SOC_DAPM_PIN_SWITCH(xname) \  {	.iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname " Switch", \  	.info = snd_soc_dapm_info_pin_switch, \ @@ -371,8 +349,6 @@ struct regulator;  struct snd_soc_dapm_widget_list;  struct snd_soc_dapm_update; -int dapm_reg_event(struct snd_soc_dapm_widget *w, -		   struct snd_kcontrol *kcontrol, int event);  int dapm_regulator_event(struct snd_soc_dapm_widget *w,  			 struct snd_kcontrol *kcontrol, int event);  int dapm_clock_event(struct snd_soc_dapm_widget *w, @@ -387,14 +363,6 @@ int snd_soc_dapm_get_enum_double(struct snd_kcontrol *kcontrol,  	struct snd_ctl_elem_value *ucontrol);  int snd_soc_dapm_put_enum_double(struct snd_kcontrol *kcontrol,  	struct snd_ctl_elem_value *ucontrol); -int snd_soc_dapm_get_enum_virt(struct snd_kcontrol *kcontrol, -	struct snd_ctl_elem_value *ucontrol); -int snd_soc_dapm_put_enum_virt(struct snd_kcontrol *kcontrol, -	struct snd_ctl_elem_value *ucontrol); -int snd_soc_dapm_get_value_enum_double(struct snd_kcontrol *kcontrol, -	struct snd_ctl_elem_value *ucontrol); -int snd_soc_dapm_put_value_enum_double(struct snd_kcontrol *kcontrol, -	struct snd_ctl_elem_value *ucontrol);  int snd_soc_dapm_info_pin_switch(struct snd_kcontrol *kcontrol,  	struct snd_ctl_elem_info *uinfo);  int snd_soc_dapm_get_pin_switch(struct snd_kcontrol *kcontrol, @@ -407,6 +375,7 @@ int snd_soc_dapm_new_controls(struct snd_soc_dapm_context *dapm,  int snd_soc_dapm_new_dai_widgets(struct snd_soc_dapm_context *dapm,  				 struct snd_soc_dai *dai);  int snd_soc_dapm_link_dai_widgets(struct snd_soc_card *card); +void snd_soc_dapm_connect_dai_link_widgets(struct snd_soc_card *card);  int snd_soc_dapm_new_pcm(struct snd_soc_card *card,  			 const struct snd_soc_pcm_stream *params,  			 struct snd_soc_dapm_widget *source, @@ -443,20 +412,28 @@ void snd_soc_dapm_debugfs_init(struct snd_soc_dapm_context *dapm,  /* dapm audio pin control and status */  int snd_soc_dapm_enable_pin(struct snd_soc_dapm_context *dapm,  			    const char *pin); +int snd_soc_dapm_enable_pin_unlocked(struct snd_soc_dapm_context *dapm, +				     const char *pin);  int snd_soc_dapm_disable_pin(struct snd_soc_dapm_context *dapm,  			     const char *pin); +int snd_soc_dapm_disable_pin_unlocked(struct snd_soc_dapm_context *dapm, +				      const char *pin);  int snd_soc_dapm_nc_pin(struct snd_soc_dapm_context *dapm, const char *pin); +int snd_soc_dapm_nc_pin_unlocked(struct snd_soc_dapm_context *dapm, +				 const char *pin);  int snd_soc_dapm_get_pin_status(struct snd_soc_dapm_context *dapm,  				const char *pin);  int snd_soc_dapm_sync(struct snd_soc_dapm_context *dapm); +int snd_soc_dapm_sync_unlocked(struct snd_soc_dapm_context *dapm);  int snd_soc_dapm_force_enable_pin(struct snd_soc_dapm_context *dapm,  				  const char *pin); +int snd_soc_dapm_force_enable_pin_unlocked(struct snd_soc_dapm_context *dapm, +					   const char *pin);  int snd_soc_dapm_ignore_suspend(struct snd_soc_dapm_context *dapm,  				const char *pin);  void snd_soc_dapm_auto_nc_codec_pins(struct snd_soc_codec *codec);  /* Mostly internal - should not normally be used */ -void dapm_mark_dirty(struct snd_soc_dapm_widget *w, const char *reason);  void dapm_mark_io_dirty(struct snd_soc_dapm_context *dapm);  /* dapm path query */ @@ -470,8 +447,6 @@ enum snd_soc_dapm_type {  	snd_soc_dapm_input = 0,		/* input pin */  	snd_soc_dapm_output,		/* output pin */  	snd_soc_dapm_mux,			/* selects 1 analog signal from many inputs */ -	snd_soc_dapm_virt_mux,			/* virtual version of snd_soc_dapm_mux */ -	snd_soc_dapm_value_mux,			/* selects 1 analog signal from many inputs */  	snd_soc_dapm_mixer,			/* mixes several analog signals together */  	snd_soc_dapm_mixer_named_ctl,		/* mixer with named controls */  	snd_soc_dapm_pga,			/* programmable gain/attenuation (volume) */ @@ -616,6 +591,7 @@ struct snd_soc_dapm_context {  			     enum snd_soc_dapm_type, int);  	struct device *dev; /* from parent - for debug */ +	struct snd_soc_component *component; /* parent component */  	struct snd_soc_codec *codec; /* parent codec */  	struct snd_soc_platform *platform; /* parent platform */  	struct snd_soc_card *card; /* parent card */ diff --git a/include/sound/soc-dpcm.h b/include/sound/soc-dpcm.h index 047d657c331..2883a7a6f9f 100644 --- a/include/sound/soc-dpcm.h +++ b/include/sound/soc-dpcm.h @@ -11,6 +11,7 @@  #ifndef __LINUX_SND_SOC_DPCM_H  #define __LINUX_SND_SOC_DPCM_H +#include <linux/slab.h>  #include <linux/list.h>  #include <sound/pcm.h> @@ -135,4 +136,25 @@ int soc_dpcm_be_digital_mute(struct snd_soc_pcm_runtime *fe, int mute);  int soc_dpcm_debugfs_add(struct snd_soc_pcm_runtime *rtd);  int soc_dpcm_runtime_update(struct snd_soc_card *); +int dpcm_path_get(struct snd_soc_pcm_runtime *fe, +	int stream, struct snd_soc_dapm_widget_list **list_); +int dpcm_process_paths(struct snd_soc_pcm_runtime *fe, +	int stream, struct snd_soc_dapm_widget_list **list, int new); +int dpcm_be_dai_startup(struct snd_soc_pcm_runtime *fe, int stream); +int dpcm_be_dai_shutdown(struct snd_soc_pcm_runtime *fe, int stream); +void dpcm_be_disconnect(struct snd_soc_pcm_runtime *fe, int stream); +void dpcm_clear_pending_state(struct snd_soc_pcm_runtime *fe, int stream); +int dpcm_be_dai_hw_free(struct snd_soc_pcm_runtime *fe, int stream); +int dpcm_be_dai_hw_params(struct snd_soc_pcm_runtime *fe, int tream); +int dpcm_be_dai_trigger(struct snd_soc_pcm_runtime *fe, int stream, int cmd); +int dpcm_be_dai_prepare(struct snd_soc_pcm_runtime *fe, int stream); +int dpcm_dapm_stream_event(struct snd_soc_pcm_runtime *fe, int dir, +	int event); + +static inline void dpcm_path_put(struct snd_soc_dapm_widget_list **list) +{ +	kfree(*list); +} + +  #endif diff --git a/include/sound/soc.h b/include/sound/soc.h index d22cb0a06fe..ed9e2d7e5fd 100644 --- a/include/sound/soc.h +++ b/include/sound/soc.h @@ -13,6 +13,7 @@  #ifndef __LINUX_SND_SOC_H  #define __LINUX_SND_SOC_H +#include <linux/of.h>  #include <linux/platform_device.h>  #include <linux/types.h>  #include <linux/notifier.h> @@ -44,6 +45,11 @@  	((unsigned long)&(struct soc_mixer_control) \  	{.reg = xlreg, .rreg = xrreg, .shift = xshift, .rshift = xshift, \  	.max = xmax, .platform_max = xmax, .invert = xinvert}) +#define SOC_DOUBLE_R_S_VALUE(xlreg, xrreg, xshift, xmin, xmax, xsign_bit, xinvert) \ +	((unsigned long)&(struct soc_mixer_control) \ +	{.reg = xlreg, .rreg = xrreg, .shift = xshift, .rshift = xshift, \ +	.max = xmax, .min = xmin, .platform_max = xmax, .sign_bit = xsign_bit, \ +	.invert = xinvert})  #define SOC_DOUBLE_R_RANGE_VALUE(xlreg, xrreg, xshift, xmin, xmax, xinvert) \  	((unsigned long)&(struct soc_mixer_control) \  	{.reg = xlreg, .rreg = xrreg, .shift = xshift, .rshift = xshift, \ @@ -151,6 +157,15 @@  		{.reg = xreg, .rreg = xrreg, \  		.shift = xshift, .rshift = xshift, \  		.max = xmax, .min = xmin} } +#define SOC_DOUBLE_R_S_TLV(xname, reg_left, reg_right, xshift, xmin, xmax, xsign_bit, xinvert, tlv_array) \ +{	.iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = (xname),\ +	.access = SNDRV_CTL_ELEM_ACCESS_TLV_READ |\ +		 SNDRV_CTL_ELEM_ACCESS_READWRITE,\ +	.tlv.p = (tlv_array), \ +	.info = snd_soc_info_volsw, \ +	.get = snd_soc_get_volsw, .put = snd_soc_put_volsw, \ +	.private_value = SOC_DOUBLE_R_S_VALUE(reg_left, reg_right, xshift, \ +					    xmin, xmax, xsign_bit, xinvert) }  #define SOC_DOUBLE_S8_TLV(xname, xreg, xmin, xmax, tlv_array) \  {	.iface  = SNDRV_CTL_ELEM_IFACE_MIXER, .name = (xname), \  	.access = SNDRV_CTL_ELEM_ACCESS_TLV_READ | \ @@ -161,30 +176,26 @@  	.private_value = (unsigned long)&(struct soc_mixer_control) \  		{.reg = xreg, .min = xmin, .max = xmax, \  		 .platform_max = xmax} } -#define SOC_ENUM_DOUBLE(xreg, xshift_l, xshift_r, xmax, xtexts) \ +#define SOC_ENUM_DOUBLE(xreg, xshift_l, xshift_r, xitems, xtexts) \  {	.reg = xreg, .shift_l = xshift_l, .shift_r = xshift_r, \ -	.max = xmax, .texts = xtexts, \ -	.mask = xmax ? roundup_pow_of_two(xmax) - 1 : 0} -#define SOC_ENUM_SINGLE(xreg, xshift, xmax, xtexts) \ -	SOC_ENUM_DOUBLE(xreg, xshift, xshift, xmax, xtexts) -#define SOC_ENUM_SINGLE_EXT(xmax, xtexts) \ -{	.max = xmax, .texts = xtexts } -#define SOC_VALUE_ENUM_DOUBLE(xreg, xshift_l, xshift_r, xmask, xmax, xtexts, xvalues) \ +	.items = xitems, .texts = xtexts, \ +	.mask = xitems ? roundup_pow_of_two(xitems) - 1 : 0} +#define SOC_ENUM_SINGLE(xreg, xshift, xitems, xtexts) \ +	SOC_ENUM_DOUBLE(xreg, xshift, xshift, xitems, xtexts) +#define SOC_ENUM_SINGLE_EXT(xitems, xtexts) \ +{	.items = xitems, .texts = xtexts } +#define SOC_VALUE_ENUM_DOUBLE(xreg, xshift_l, xshift_r, xmask, xitems, xtexts, xvalues) \  {	.reg = xreg, .shift_l = xshift_l, .shift_r = xshift_r, \ -	.mask = xmask, .max = xmax, .texts = xtexts, .values = xvalues} -#define SOC_VALUE_ENUM_SINGLE(xreg, xshift, xmask, xmax, xtexts, xvalues) \ -	SOC_VALUE_ENUM_DOUBLE(xreg, xshift, xshift, xmask, xmax, xtexts, xvalues) +	.mask = xmask, .items = xitems, .texts = xtexts, .values = xvalues} +#define SOC_VALUE_ENUM_SINGLE(xreg, xshift, xmask, xnitmes, xtexts, xvalues) \ +	SOC_VALUE_ENUM_DOUBLE(xreg, xshift, xshift, xmask, xnitmes, xtexts, xvalues) +#define SOC_ENUM_SINGLE_VIRT(xitems, xtexts) \ +	SOC_ENUM_SINGLE(SND_SOC_NOPM, 0, xitems, xtexts)  #define SOC_ENUM(xname, xenum) \  {	.iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname,\  	.info = snd_soc_info_enum_double, \  	.get = snd_soc_get_enum_double, .put = snd_soc_put_enum_double, \  	.private_value = (unsigned long)&xenum } -#define SOC_VALUE_ENUM(xname, xenum) \ -{	.iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname,\ -	.info = snd_soc_info_enum_double, \ -	.get = snd_soc_get_value_enum_double, \ -	.put = snd_soc_put_value_enum_double, \ -	.private_value = (unsigned long)&xenum }  #define SOC_SINGLE_EXT(xname, xreg, xshift, xmax, xinvert,\  	 xhandler_get, xhandler_put) \  {	.iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \ @@ -253,6 +264,13 @@  		{.base = xbase, .num_regs = xregs,	      \  		 .mask = xmask }) } +#define SND_SOC_BYTES_EXT(xname, xcount, xhandler_get, xhandler_put) \ +{	.iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \ +	.info = snd_soc_bytes_info_ext, \ +	.get = xhandler_get, .put = xhandler_put, \ +	.private_value = (unsigned long)&(struct soc_bytes_ext) \ +		{.max = xcount} } +  #define SOC_SINGLE_XR_SX(xname, xregbase, xregcount, xnbits, \  		xmin, xmax, xinvert) \  {	.iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = (xname), \ @@ -271,17 +289,19 @@   * ARRAY_SIZE internally   */  #define SOC_ENUM_DOUBLE_DECL(name, xreg, xshift_l, xshift_r, xtexts) \ -	struct soc_enum name = SOC_ENUM_DOUBLE(xreg, xshift_l, xshift_r, \ +	const struct soc_enum name = SOC_ENUM_DOUBLE(xreg, xshift_l, xshift_r, \  						ARRAY_SIZE(xtexts), xtexts)  #define SOC_ENUM_SINGLE_DECL(name, xreg, xshift, xtexts) \  	SOC_ENUM_DOUBLE_DECL(name, xreg, xshift, xshift, xtexts)  #define SOC_ENUM_SINGLE_EXT_DECL(name, xtexts) \ -	struct soc_enum name = SOC_ENUM_SINGLE_EXT(ARRAY_SIZE(xtexts), xtexts) +	const struct soc_enum name = SOC_ENUM_SINGLE_EXT(ARRAY_SIZE(xtexts), xtexts)  #define SOC_VALUE_ENUM_DOUBLE_DECL(name, xreg, xshift_l, xshift_r, xmask, xtexts, xvalues) \ -	struct soc_enum name = SOC_VALUE_ENUM_DOUBLE(xreg, xshift_l, xshift_r, xmask, \ +	const struct soc_enum name = SOC_VALUE_ENUM_DOUBLE(xreg, xshift_l, xshift_r, xmask, \  							ARRAY_SIZE(xtexts), xtexts, xvalues)  #define SOC_VALUE_ENUM_SINGLE_DECL(name, xreg, xshift, xmask, xtexts, xvalues) \  	SOC_VALUE_ENUM_DOUBLE_DECL(name, xreg, xshift, xshift, xmask, xtexts, xvalues) +#define SOC_ENUM_SINGLE_VIRT_DECL(name, xtexts) \ +	const struct soc_enum name = SOC_ENUM_SINGLE_VIRT(ARRAY_SIZE(xtexts), xtexts)  /*   * Component probe and remove ordering levels for components with runtime @@ -330,28 +350,15 @@ struct soc_enum;  struct snd_soc_jack;  struct snd_soc_jack_zone;  struct snd_soc_jack_pin; -struct snd_soc_cache_ops;  #include <sound/soc-dapm.h>  #include <sound/soc-dpcm.h> -#ifdef CONFIG_GPIOLIB  struct snd_soc_jack_gpio; -#endif  typedef int (*hw_write_t)(void *,const char* ,int);  extern struct snd_ac97_bus_ops *soc_ac97_ops; -enum snd_soc_control_type { -	SND_SOC_I2C = 1, -	SND_SOC_SPI, -	SND_SOC_REGMAP, -}; - -enum snd_soc_compress_type { -	SND_SOC_FLAT_COMPRESSION = 1, -}; -  enum snd_soc_pcm_subclass {  	SND_SOC_PCM_CLASS_PCM	= 0,  	SND_SOC_PCM_CLASS_BE	= 1, @@ -369,11 +376,14 @@ int snd_soc_codec_set_pll(struct snd_soc_codec *codec, int pll_id, int source,  int snd_soc_register_card(struct snd_soc_card *card);  int snd_soc_unregister_card(struct snd_soc_card *card); +int devm_snd_soc_register_card(struct device *dev, struct snd_soc_card *card);  int snd_soc_suspend(struct device *dev);  int snd_soc_resume(struct device *dev);  int snd_soc_poweroff(struct device *dev);  int snd_soc_register_platform(struct device *dev,  		const struct snd_soc_platform_driver *platform_drv); +int devm_snd_soc_register_platform(struct device *dev, +		const struct snd_soc_platform_driver *platform_drv);  void snd_soc_unregister_platform(struct device *dev);  int snd_soc_add_platform(struct device *dev, struct snd_soc_platform *platform,  		const struct snd_soc_platform_driver *platform_drv); @@ -386,16 +396,10 @@ void snd_soc_unregister_codec(struct device *dev);  int snd_soc_register_component(struct device *dev,  			 const struct snd_soc_component_driver *cmpnt_drv,  			 struct snd_soc_dai_driver *dai_drv, int num_dai); +int devm_snd_soc_register_component(struct device *dev, +			 const struct snd_soc_component_driver *cmpnt_drv, +			 struct snd_soc_dai_driver *dai_drv, int num_dai);  void snd_soc_unregister_component(struct device *dev); -int snd_soc_codec_volatile_register(struct snd_soc_codec *codec, -				    unsigned int reg); -int snd_soc_codec_readable_register(struct snd_soc_codec *codec, -				    unsigned int reg); -int snd_soc_codec_writable_register(struct snd_soc_codec *codec, -				    unsigned int reg); -int snd_soc_codec_set_cache_io(struct snd_soc_codec *codec, -			       int addr_bits, int data_bits, -			       enum snd_soc_control_type control);  int snd_soc_cache_sync(struct snd_soc_codec *codec);  int snd_soc_cache_init(struct snd_soc_codec *codec);  int snd_soc_cache_exit(struct snd_soc_codec *codec); @@ -403,12 +407,6 @@ int snd_soc_cache_write(struct snd_soc_codec *codec,  			unsigned int reg, unsigned int value);  int snd_soc_cache_read(struct snd_soc_codec *codec,  		       unsigned int reg, unsigned int *value); -int snd_soc_default_volatile_register(struct snd_soc_codec *codec, -				      unsigned int reg); -int snd_soc_default_readable_register(struct snd_soc_codec *codec, -				      unsigned int reg); -int snd_soc_default_writable_register(struct snd_soc_codec *codec, -				      unsigned int reg);  int snd_soc_platform_read(struct snd_soc_platform *platform,  					unsigned int reg);  int snd_soc_platform_write(struct snd_soc_platform *platform, @@ -421,6 +419,10 @@ struct snd_pcm_substream *snd_soc_get_dai_substream(struct snd_soc_card *card,  struct snd_soc_pcm_runtime *snd_soc_get_pcm_runtime(struct snd_soc_card *card,  		const char *dai_link); +bool snd_soc_runtime_ignore_pmdown_time(struct snd_soc_pcm_runtime *rtd); +void snd_soc_runtime_activate(struct snd_soc_pcm_runtime *rtd, int stream); +void snd_soc_runtime_deactivate(struct snd_soc_pcm_runtime *rtd, int stream); +  /* Utility functions to get clock rates from various things */  int snd_soc_calc_frame_size(int sample_size, int channels, int tdm_slots);  int snd_soc_params_to_frame_size(struct snd_pcm_hw_params *params); @@ -450,17 +452,39 @@ int snd_soc_jack_get_type(struct snd_soc_jack *jack, int micbias_voltage);  #ifdef CONFIG_GPIOLIB  int snd_soc_jack_add_gpios(struct snd_soc_jack *jack, int count,  			struct snd_soc_jack_gpio *gpios); +int snd_soc_jack_add_gpiods(struct device *gpiod_dev, +			    struct snd_soc_jack *jack, +			    int count, struct snd_soc_jack_gpio *gpios);  void snd_soc_jack_free_gpios(struct snd_soc_jack *jack, int count,  			struct snd_soc_jack_gpio *gpios); +#else +static inline int snd_soc_jack_add_gpios(struct snd_soc_jack *jack, int count, +					 struct snd_soc_jack_gpio *gpios) +{ +	return 0; +} + +static inline int snd_soc_jack_add_gpiods(struct device *gpiod_dev, +					  struct snd_soc_jack *jack, +					  int count, +					  struct snd_soc_jack_gpio *gpios) +{ +	return 0; +} + +static inline void snd_soc_jack_free_gpios(struct snd_soc_jack *jack, int count, +					   struct snd_soc_jack_gpio *gpios) +{ +}  #endif  /* codec register bit access */ -int snd_soc_update_bits(struct snd_soc_codec *codec, unsigned short reg, +int snd_soc_update_bits(struct snd_soc_codec *codec, unsigned int reg,  				unsigned int mask, unsigned int value);  int snd_soc_update_bits_locked(struct snd_soc_codec *codec, -			       unsigned short reg, unsigned int mask, +			       unsigned int reg, unsigned int mask,  			       unsigned int value); -int snd_soc_test_bits(struct snd_soc_codec *codec, unsigned short reg, +int snd_soc_test_bits(struct snd_soc_codec *codec, unsigned int reg,  				unsigned int mask, unsigned int value);  int snd_soc_new_ac97_codec(struct snd_soc_codec *codec, @@ -493,10 +517,6 @@ int snd_soc_get_enum_double(struct snd_kcontrol *kcontrol,  	struct snd_ctl_elem_value *ucontrol);  int snd_soc_put_enum_double(struct snd_kcontrol *kcontrol,  	struct snd_ctl_elem_value *ucontrol); -int snd_soc_get_value_enum_double(struct snd_kcontrol *kcontrol, -	struct snd_ctl_elem_value *ucontrol); -int snd_soc_put_value_enum_double(struct snd_kcontrol *kcontrol, -	struct snd_ctl_elem_value *ucontrol);  int snd_soc_info_volsw(struct snd_kcontrol *kcontrol,  	struct snd_ctl_elem_info *uinfo);  #define snd_soc_info_bool_ext		snd_ctl_boolean_mono_info @@ -530,6 +550,8 @@ int snd_soc_bytes_get(struct snd_kcontrol *kcontrol,  		      struct snd_ctl_elem_value *ucontrol);  int snd_soc_bytes_put(struct snd_kcontrol *kcontrol,  		      struct snd_ctl_elem_value *ucontrol); +int snd_soc_bytes_info_ext(struct snd_kcontrol *kcontrol, +	struct snd_ctl_elem_info *ucontrol);  int snd_soc_info_xr_sx(struct snd_kcontrol *kcontrol,  	struct snd_ctl_elem_info *uinfo);  int snd_soc_get_xr_sx(struct snd_kcontrol *kcontrol, @@ -542,22 +564,6 @@ int snd_soc_put_strobe(struct snd_kcontrol *kcontrol,  	struct snd_ctl_elem_value *ucontrol);  /** - * struct snd_soc_reg_access - Describes whether a given register is - * readable, writable or volatile. - * - * @reg: the register number - * @read: whether this register is readable - * @write: whether this register is writable - * @vol: whether this register is volatile - */ -struct snd_soc_reg_access { -	u16 reg; -	u16 read; -	u16 write; -	u16 vol; -}; - -/**   * struct snd_soc_jack_pin - Describes a pin to update based on jack detection   *   * @pin:    name of the pin to update @@ -592,8 +598,12 @@ struct snd_soc_jack_zone {  /**   * struct snd_soc_jack_gpio - Describes a gpio pin for jack detection   * - * @gpio:         gpio number - * @name:         gpio name + * @gpio:         legacy gpio number + * @idx:          gpio descriptor index within the function of the GPIO + *                consumer device + * @gpiod_dev     GPIO consumer device + * @name:         gpio name. Also as connection ID for the GPIO consumer + *                device function name lookup   * @report:       value to report when jack detected   * @invert:       report presence in low state   * @debouce_time: debouce time in ms @@ -602,9 +612,10 @@ struct snd_soc_jack_zone {   *		       to provide more complex checks (eg, reading an   *		       ADC).   */ -#ifdef CONFIG_GPIOLIB  struct snd_soc_jack_gpio {  	unsigned int gpio; +	unsigned int idx; +	struct device *gpiod_dev;  	const char *name;  	int report;  	int invert; @@ -613,10 +624,11 @@ struct snd_soc_jack_gpio {  	struct snd_soc_jack *jack;  	struct delayed_work work; +	struct gpio_desc *desc; -	int (*jack_status_check)(void); +	void *data; +	int (*jack_status_check)(void *data);  }; -#endif  struct snd_soc_jack {  	struct mutex mutex; @@ -657,17 +669,42 @@ struct snd_soc_compr_ops {  	int (*trigger)(struct snd_compr_stream *);  }; -/* SoC cache ops */ -struct snd_soc_cache_ops { +/* component interface */ +struct snd_soc_component_driver { +	const char *name; + +	/* DT */ +	int (*of_xlate_dai_name)(struct snd_soc_component *component, +				 struct of_phandle_args *args, +				 const char **dai_name); +}; + +struct snd_soc_component {  	const char *name; -	enum snd_soc_compress_type id; -	int (*init)(struct snd_soc_codec *codec); -	int (*exit)(struct snd_soc_codec *codec); -	int (*read)(struct snd_soc_codec *codec, unsigned int reg, -		unsigned int *value); -	int (*write)(struct snd_soc_codec *codec, unsigned int reg, -		unsigned int value); -	int (*sync)(struct snd_soc_codec *codec); +	int id; +	struct device *dev; + +	unsigned int active; + +	unsigned int ignore_pmdown_time:1; /* pmdown_time is ignored at stop */ +	unsigned int registered_as_component:1; + +	struct list_head list; + +	struct snd_soc_dai_driver *dai_drv; +	int num_dai; + +	const struct snd_soc_component_driver *driver; + +	struct list_head dai_list; + +	int (*read)(struct snd_soc_component *, unsigned int, unsigned int *); +	int (*write)(struct snd_soc_component *, unsigned int, unsigned int); + +	struct regmap *regmap; +	int val_bytes; + +	struct mutex io_mutex;  };  /* SoC Audio Codec device */ @@ -682,42 +719,29 @@ struct snd_soc_codec {  	struct snd_soc_card *card;  	struct list_head list;  	struct list_head card_list; -	int num_dai; -	enum snd_soc_compress_type compress_type; -	size_t reg_size;	/* reg_cache_size * reg_word_size */ -	int (*volatile_register)(struct snd_soc_codec *, unsigned int); -	int (*readable_register)(struct snd_soc_codec *, unsigned int); -	int (*writable_register)(struct snd_soc_codec *, unsigned int);  	/* runtime */  	struct snd_ac97 *ac97;  /* for ad-hoc ac97 devices */ -	unsigned int active;  	unsigned int cache_bypass:1; /* Suppress access to the cache */  	unsigned int suspended:1; /* Codec is in suspend PM state */  	unsigned int probed:1; /* Codec has been probed */  	unsigned int ac97_registered:1; /* Codec has been AC97 registered */  	unsigned int ac97_created:1; /* Codec has been created by SoC */  	unsigned int cache_init:1; /* codec cache has been initialized */ -	unsigned int using_regmap:1; /* using regmap access */  	u32 cache_only;  /* Suppress writes to hardware */  	u32 cache_sync; /* Cache needs to be synced to hardware */  	/* codec IO */  	void *control_data; /* codec control (i2c/3wire) data */  	hw_write_t hw_write; -	unsigned int (*hw_read)(struct snd_soc_codec *, unsigned int); -	unsigned int (*read)(struct snd_soc_codec *, unsigned int); -	int (*write)(struct snd_soc_codec *, unsigned int, unsigned int); -	int (*bulk_write_raw)(struct snd_soc_codec *, unsigned int, const void *, size_t);  	void *reg_cache; -	const void *reg_def_copy; -	const struct snd_soc_cache_ops *cache_ops;  	struct mutex cache_rw_mutex; -	int val_bytes; + +	/* component */ +	struct snd_soc_component component;  	/* dapm */  	struct snd_soc_dapm_context dapm; -	unsigned int ignore_pmdown_time:1; /* pmdown_time is ignored at stop */  #ifdef CONFIG_DEBUG_FS  	struct dentry *debugfs_codec_root; @@ -733,6 +757,7 @@ struct snd_soc_codec_driver {  	int (*remove)(struct snd_soc_codec *);  	int (*suspend)(struct snd_soc_codec *);  	int (*resume)(struct snd_soc_codec *); +	struct snd_soc_component_driver component_driver;  	/* Default control and setup, added after probe() is run */  	const struct snd_kcontrol_new *controls; @@ -749,20 +774,13 @@ struct snd_soc_codec_driver {  		unsigned int freq_in, unsigned int freq_out);  	/* codec IO */ +	struct regmap *(*get_regmap)(struct device *);  	unsigned int (*read)(struct snd_soc_codec *, unsigned int);  	int (*write)(struct snd_soc_codec *, unsigned int, unsigned int); -	int (*display_register)(struct snd_soc_codec *, char *, -				size_t, unsigned int); -	int (*volatile_register)(struct snd_soc_codec *, unsigned int); -	int (*readable_register)(struct snd_soc_codec *, unsigned int); -	int (*writable_register)(struct snd_soc_codec *, unsigned int);  	unsigned int reg_cache_size;  	short reg_cache_step;  	short reg_word_size;  	const void *reg_cache_default; -	short reg_access_size; -	const struct snd_soc_reg_access *reg_access_default; -	enum snd_soc_compress_type compress_type;  	/* codec bias level */  	int (*set_bias_level)(struct snd_soc_codec *, @@ -789,6 +807,7 @@ struct snd_soc_platform_driver {  	int (*remove)(struct snd_soc_platform *);  	int (*suspend)(struct snd_soc_dai *dai);  	int (*resume)(struct snd_soc_dai *dai); +	struct snd_soc_component_driver component_driver;  	/* pcm creation and destruction */  	int (*pcm_new)(struct snd_soc_pcm_runtime *); @@ -833,7 +852,6 @@ struct snd_soc_platform {  	int id;  	struct device *dev;  	const struct snd_soc_platform_driver *driver; -	struct mutex mutex;  	unsigned int suspended:1; /* platform is suspended */  	unsigned int probed:1; @@ -842,6 +860,8 @@ struct snd_soc_platform {  	struct list_head list;  	struct list_head card_list; +	struct snd_soc_component component; +  	struct snd_soc_dapm_context dapm;  #ifdef CONFIG_DEBUG_FS @@ -849,20 +869,6 @@ struct snd_soc_platform {  #endif  }; -struct snd_soc_component_driver { -	const char *name; -}; - -struct snd_soc_component { -	const char *name; -	int id; -	int num_dai; -	struct device *dev; -	struct list_head list; - -	const struct snd_soc_component_driver *driver; -}; -  struct snd_soc_dai_link {  	/* config - must be set by machine driver */  	const char *name;			/* Codec name */ @@ -910,6 +916,8 @@ struct snd_soc_dai_link {  	/* Symmetry requirements */  	unsigned int symmetric_rates:1; +	unsigned int symmetric_channels:1; +	unsigned int symmetric_samplebits:1;  	/* Do not create a PCM for this DAI link (Backend link) */  	unsigned int no_pcm:1; @@ -917,6 +925,10 @@ struct snd_soc_dai_link {  	/* This DAI link can route to other DAI links at runtime (Frontend)*/  	unsigned int dynamic:1; +	/* DPCM capture and Playback support */ +	unsigned int dpcm_capture:1; +	unsigned int dpcm_playback:1; +  	/* pmdown_time is ignored at stop */  	unsigned int ignore_pmdown_time:1; @@ -937,24 +949,29 @@ struct snd_soc_dai_link {  };  struct snd_soc_codec_conf { +	/* +	 * specify device either by device name, or by +	 * DT/OF node, but not both. +	 */  	const char *dev_name; +	const struct device_node *of_node;  	/*  	 * optional map of kcontrol, widget and path name prefixes that are  	 * associated per device  	 */  	const char *name_prefix; - -	/* -	 * set this to the desired compression type if you want to -	 * override the one supplied in codec->driver->compress_type -	 */ -	enum snd_soc_compress_type compress_type;  };  struct snd_soc_aux_dev {  	const char *name;		/* Codec name */ -	const char *codec_name;		/* for multi-codec */ + +	/* +	 * specify multi-codec either by device name, or by +	 * DT/OF node, but not both. +	 */ +	const char *codec_name; +	const struct device_node *codec_of_node;  	/* codec/machine specific init - e.g. add machine controls */  	int (*init)(struct snd_soc_dapm_context *dapm); @@ -969,7 +986,6 @@ struct snd_soc_card {  	struct snd_card *snd_card;  	struct module *owner; -	struct list_head list;  	struct mutex mutex;  	struct mutex dapm_mutex; @@ -1032,7 +1048,6 @@ struct snd_soc_card {  	/* lists of probed devices belonging to this card */  	struct list_head codec_dev_list;  	struct list_head platform_dev_list; -	struct list_head dai_dev_list;  	struct list_head widgets;  	struct list_head paths; @@ -1066,6 +1081,7 @@ struct snd_soc_pcm_runtime {  	/* Dynamic PCM BE runtime data */  	struct snd_soc_dpcm_runtime dpcm[2]; +	int fe_compr;  	long pmdown_time;  	unsigned char pop_wait:1; @@ -1088,7 +1104,9 @@ struct snd_soc_pcm_runtime {  /* mixer control */  struct soc_mixer_control {  	int min, max, platform_max; -	unsigned int reg, rreg, shift, rshift; +	int reg, rreg; +	unsigned int shift, rshift; +	unsigned int sign_bit;  	unsigned int invert:1;  	unsigned int autodisable:1;  }; @@ -1099,6 +1117,10 @@ struct soc_bytes {  	u32 mask;  }; +struct soc_bytes_ext { +	int max; +}; +  /* multi register control */  struct soc_mreg_control {  	long min, max; @@ -1107,22 +1129,88 @@ struct soc_mreg_control {  /* enumerated kcontrol */  struct soc_enum { -	unsigned short reg; -	unsigned short reg2; +	int reg;  	unsigned char shift_l;  	unsigned char shift_r; -	unsigned int max; +	unsigned int items;  	unsigned int mask;  	const char * const *texts;  	const unsigned int *values;  }; +/** + * snd_soc_component_to_codec() - Casts a component to the CODEC it is embedded in + * @component: The component to cast to a CODEC + * + * This function must only be used on components that are known to be CODECs. + * Otherwise the behavior is undefined. + */ +static inline struct snd_soc_codec *snd_soc_component_to_codec( +	struct snd_soc_component *component) +{ +	return container_of(component, struct snd_soc_codec, component); +} + +/** + * snd_soc_component_to_platform() - Casts a component to the platform it is embedded in + * @component: The component to cast to a platform + * + * This function must only be used on components that are known to be platforms. + * Otherwise the behavior is undefined. + */ +static inline struct snd_soc_platform *snd_soc_component_to_platform( +	struct snd_soc_component *component) +{ +	return container_of(component, struct snd_soc_platform, component); +} + +/** + * snd_soc_dapm_to_codec() - Casts a DAPM context to the CODEC it is embedded in + * @dapm: The DAPM context to cast to the CODEC + * + * This function must only be used on DAPM contexts that are known to be part of + * a CODEC (e.g. in a CODEC driver). Otherwise the behavior is undefined. + */ +static inline struct snd_soc_codec *snd_soc_dapm_to_codec( +	struct snd_soc_dapm_context *dapm) +{ +	return container_of(dapm, struct snd_soc_codec, dapm); +} + +/** + * snd_soc_dapm_to_platform() - Casts a DAPM context to the platform it is + *  embedded in + * @dapm: The DAPM context to cast to the platform. + * + * This function must only be used on DAPM contexts that are known to be part of + * a platform (e.g. in a platform driver). Otherwise the behavior is undefined. + */ +static inline struct snd_soc_platform *snd_soc_dapm_to_platform( +	struct snd_soc_dapm_context *dapm) +{ +	return container_of(dapm, struct snd_soc_platform, dapm); +} +  /* codec IO */  unsigned int snd_soc_read(struct snd_soc_codec *codec, unsigned int reg); -unsigned int snd_soc_write(struct snd_soc_codec *codec, -			   unsigned int reg, unsigned int val); -unsigned int snd_soc_bulk_write_raw(struct snd_soc_codec *codec, -				    unsigned int reg, const void *data, size_t len); +int snd_soc_write(struct snd_soc_codec *codec, unsigned int reg, +	unsigned int val); + +/* component IO */ +int snd_soc_component_read(struct snd_soc_component *component, +	unsigned int reg, unsigned int *val); +int snd_soc_component_write(struct snd_soc_component *component, +	unsigned int reg, unsigned int val); +int snd_soc_component_update_bits(struct snd_soc_component *component, +	unsigned int reg, unsigned int mask, unsigned int val); +int snd_soc_component_update_bits_async(struct snd_soc_component *component, +	unsigned int reg, unsigned int mask, unsigned int val); +void snd_soc_component_async_complete(struct snd_soc_component *component); +int snd_soc_component_test_bits(struct snd_soc_component *component, +	unsigned int reg, unsigned int mask, unsigned int value); + +int snd_soc_component_init_io(struct snd_soc_component *component, +	struct regmap *regmap);  /* device driver data */ @@ -1172,7 +1260,6 @@ static inline void *snd_soc_pcm_get_drvdata(struct snd_soc_pcm_runtime *rtd)  static inline void snd_soc_initialize_card_lists(struct snd_soc_card *card)  { -	INIT_LIST_HEAD(&card->dai_dev_list);  	INIT_LIST_HEAD(&card->codec_dev_list);  	INIT_LIST_HEAD(&card->platform_dev_list);  	INIT_LIST_HEAD(&card->widgets); @@ -1192,15 +1279,103 @@ static inline bool snd_soc_volsw_is_stereo(struct soc_mixer_control *mc)  	return 1;  } +static inline unsigned int snd_soc_enum_val_to_item(struct soc_enum *e, +	unsigned int val) +{ +	unsigned int i; + +	if (!e->values) +		return val; + +	for (i = 0; i < e->items; i++) +		if (val == e->values[i]) +			return i; + +	return 0; +} + +static inline unsigned int snd_soc_enum_item_to_val(struct soc_enum *e, +	unsigned int item) +{ +	if (!e->values) +		return item; + +	return e->values[item]; +} + +static inline bool snd_soc_component_is_active( +	struct snd_soc_component *component) +{ +	return component->active != 0; +} + +static inline bool snd_soc_codec_is_active(struct snd_soc_codec *codec) +{ +	return snd_soc_component_is_active(&codec->component); +} + +/** + * snd_soc_kcontrol_component() - Returns the component that registered the + *  control + * @kcontrol: The control for which to get the component + * + * Note: This function will work correctly if the control has been registered + * for a component. Either with snd_soc_add_codec_controls() or + * snd_soc_add_platform_controls() or via  table based setup for either a + * CODEC, a platform or component driver. Otherwise the behavior is undefined. + */ +static inline struct snd_soc_component *snd_soc_kcontrol_component( +	struct snd_kcontrol *kcontrol) +{ +	return snd_kcontrol_chip(kcontrol); +} + +/** + * snd_soc_kcontrol_codec() - Returns the CODEC that registered the control + * @kcontrol: The control for which to get the CODEC + * + * Note: This function will only work correctly if the control has been + * registered with snd_soc_add_codec_controls() or via table based setup of + * snd_soc_codec_driver. Otherwise the behavior is undefined. + */ +static inline struct snd_soc_codec *snd_soc_kcontrol_codec( +	struct snd_kcontrol *kcontrol) +{ +	return snd_soc_component_to_codec(snd_soc_kcontrol_component(kcontrol)); +} + +/** + * snd_soc_kcontrol_platform() - Returns the platform that registerd the control + * @kcontrol: The control for which to get the platform + * + * Note: This function will only work correctly if the control has been + * registered with snd_soc_add_platform_controls() or via table based setup of + * a snd_soc_platform_driver. Otherwise the behavior is undefined. + */ +static inline struct snd_soc_platform *snd_soc_kcontrol_platform( +	struct snd_kcontrol *kcontrol) +{ +	return snd_soc_component_to_platform(snd_soc_kcontrol_component(kcontrol)); +} +  int snd_soc_util_init(void);  void snd_soc_util_exit(void);  int snd_soc_of_parse_card_name(struct snd_soc_card *card,  			       const char *propname); +int snd_soc_of_parse_audio_simple_widgets(struct snd_soc_card *card, +					  const char *propname); +int snd_soc_of_parse_tdm_slot(struct device_node *np, +			      unsigned int *slots, +			      unsigned int *slot_width);  int snd_soc_of_parse_audio_routing(struct snd_soc_card *card,  				   const char *propname);  unsigned int snd_soc_of_parse_daifmt(struct device_node *np, -				     const char *prefix); +				     const char *prefix, +				     struct device_node **bitclkmaster, +				     struct device_node **framemaster); +int snd_soc_of_get_dai_name(struct device_node *of_node, +			    const char **dai_name);  #include <sound/soc-dai.h> @@ -1210,4 +1385,15 @@ extern struct dentry *snd_soc_debugfs_root;  extern const struct dev_pm_ops snd_soc_pm_ops; +/* Helper functions */ +static inline void snd_soc_dapm_mutex_lock(struct snd_soc_dapm_context *dapm) +{ +	mutex_lock(&dapm->card->dapm_mutex); +} + +static inline void snd_soc_dapm_mutex_unlock(struct snd_soc_dapm_context *dapm) +{ +	mutex_unlock(&dapm->card->dapm_mutex); +} +  #endif diff --git a/include/sound/spear_dma.h b/include/sound/spear_dma.h index 1b365bfdfb3..65aca51fe25 100644 --- a/include/sound/spear_dma.h +++ b/include/sound/spear_dma.h @@ -29,7 +29,6 @@ struct spear_dma_data {  	dma_addr_t addr;  	u32 max_burst;  	enum dma_slave_buswidth addr_width; -	bool (*filter)(struct dma_chan *chan, void *slave);  };  #endif /* SPEAR_DMA_H */ diff --git a/include/sound/sta350.h b/include/sound/sta350.h new file mode 100644 index 00000000000..42edceb096a --- /dev/null +++ b/include/sound/sta350.h @@ -0,0 +1,57 @@ +/* + * Platform data for ST STA350 ASoC codec driver. + * + * Copyright: 2014 Raumfeld GmbH + * Author: Sven Brandau <info@brandau.biz> + * + * 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. + */ +#ifndef __LINUX_SND__STA350_H +#define __LINUX_SND__STA350_H + +#define STA350_OCFG_2CH		0 +#define STA350_OCFG_2_1CH	1 +#define STA350_OCFG_1CH		3 + +#define STA350_OM_CH1		0 +#define STA350_OM_CH2		1 +#define STA350_OM_CH3		2 + +#define STA350_THERMAL_ADJUSTMENT_ENABLE	1 +#define STA350_THERMAL_RECOVERY_ENABLE		2 +#define STA350_FAULT_DETECT_RECOVERY_BYPASS	1 + +#define STA350_FFX_PM_DROP_COMP			0 +#define STA350_FFX_PM_TAPERED_COMP		1 +#define STA350_FFX_PM_FULL_POWER		2 +#define STA350_FFX_PM_VARIABLE_DROP_COMP	3 + + +struct sta350_platform_data { +	u8 output_conf; +	u8 ch1_output_mapping; +	u8 ch2_output_mapping; +	u8 ch3_output_mapping; +	u8 ffx_power_output_mode; +	u8 drop_compensation_ns; +	u8 powerdown_delay_divider; +	unsigned int thermal_warning_recovery:1; +	unsigned int thermal_warning_adjustment:1; +	unsigned int fault_detect_recovery:1; +	unsigned int oc_warning_adjustment:1; +	unsigned int max_power_use_mpcc:1; +	unsigned int max_power_correction:1; +	unsigned int am_reduction_mode:1; +	unsigned int odd_pwm_speed_mode:1; +	unsigned int distortion_compensation:1; +	unsigned int invalid_input_detect_mute:1; +	unsigned int activate_mute_output:1; +	unsigned int bridge_immediate_off:1; +	unsigned int noise_shape_dc_cut:1; +	unsigned int powerdown_master_vol:1; +}; + +#endif /* __LINUX_SND__STA350_H */  | 
