Merge tag 'asoc-v4.3-rc6' of git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound into for-next
ASoC: Updates for v4.4 Not much core work here, a few small tweaks to interfaces but mainly the changes here are driver ones. Highlights include: - Updates to the topology userspace interface - Big updates to the Renesas support from Morimoto-san - Most of the support for Intel Sky Lake systems. - New drivers for Asahi Kasei Microdevices AK4613, Allwinnner A10, Cirrus Logic WM8998, Dialog DA7219, Nuvoton NAU8825 and Rockchip S/PDIF. - A new driver for the Atmel Class D speaker drivers
This commit is contained in:
@@ -44,9 +44,6 @@ struct da7213_platform_data {
|
||||
enum da7213_dmic_data_sel dmic_data_sel;
|
||||
enum da7213_dmic_samplephase dmic_samplephase;
|
||||
enum da7213_dmic_clk_rate dmic_clk_rate;
|
||||
|
||||
/* MCLK squaring config */
|
||||
bool mclk_squaring;
|
||||
};
|
||||
|
||||
#endif /* _DA7213_PDATA_H */
|
||||
|
99
include/sound/da7219-aad.h
Normal file
99
include/sound/da7219-aad.h
Normal file
@@ -0,0 +1,99 @@
|
||||
/*
|
||||
* da7219-aad.h - DA7322 ASoC Codec AAD Driver Platform Data
|
||||
*
|
||||
* Copyright (c) 2015 Dialog Semiconductor Ltd.
|
||||
*
|
||||
* Author: Adam Thomson <Adam.Thomson.Opensource@diasemi.com>
|
||||
*
|
||||
* 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 __DA7219_AAD_PDATA_H
|
||||
#define __DA7219_AAD_PDATA_H
|
||||
|
||||
enum da7219_aad_micbias_pulse_lvl {
|
||||
DA7219_AAD_MICBIAS_PULSE_LVL_OFF = 0,
|
||||
DA7219_AAD_MICBIAS_PULSE_LVL_2_8V = 6,
|
||||
DA7219_AAD_MICBIAS_PULSE_LVL_2_9V,
|
||||
};
|
||||
|
||||
enum da7219_aad_btn_cfg {
|
||||
DA7219_AAD_BTN_CFG_2MS = 1,
|
||||
DA7219_AAD_BTN_CFG_5MS,
|
||||
DA7219_AAD_BTN_CFG_10MS,
|
||||
DA7219_AAD_BTN_CFG_50MS,
|
||||
DA7219_AAD_BTN_CFG_100MS,
|
||||
DA7219_AAD_BTN_CFG_200MS,
|
||||
DA7219_AAD_BTN_CFG_500MS,
|
||||
};
|
||||
|
||||
enum da7219_aad_mic_det_thr {
|
||||
DA7219_AAD_MIC_DET_THR_200_OHMS = 0,
|
||||
DA7219_AAD_MIC_DET_THR_500_OHMS,
|
||||
DA7219_AAD_MIC_DET_THR_750_OHMS,
|
||||
DA7219_AAD_MIC_DET_THR_1000_OHMS,
|
||||
};
|
||||
|
||||
enum da7219_aad_jack_ins_deb {
|
||||
DA7219_AAD_JACK_INS_DEB_5MS = 0,
|
||||
DA7219_AAD_JACK_INS_DEB_10MS,
|
||||
DA7219_AAD_JACK_INS_DEB_20MS,
|
||||
DA7219_AAD_JACK_INS_DEB_50MS,
|
||||
DA7219_AAD_JACK_INS_DEB_100MS,
|
||||
DA7219_AAD_JACK_INS_DEB_200MS,
|
||||
DA7219_AAD_JACK_INS_DEB_500MS,
|
||||
DA7219_AAD_JACK_INS_DEB_1S,
|
||||
};
|
||||
|
||||
enum da7219_aad_jack_det_rate {
|
||||
DA7219_AAD_JACK_DET_RATE_32_64MS = 0,
|
||||
DA7219_AAD_JACK_DET_RATE_64_128MS,
|
||||
DA7219_AAD_JACK_DET_RATE_128_256MS,
|
||||
DA7219_AAD_JACK_DET_RATE_256_512MS,
|
||||
};
|
||||
|
||||
enum da7219_aad_jack_rem_deb {
|
||||
DA7219_AAD_JACK_REM_DEB_1MS = 0,
|
||||
DA7219_AAD_JACK_REM_DEB_5MS,
|
||||
DA7219_AAD_JACK_REM_DEB_10MS,
|
||||
DA7219_AAD_JACK_REM_DEB_20MS,
|
||||
};
|
||||
|
||||
enum da7219_aad_btn_avg {
|
||||
DA7219_AAD_BTN_AVG_1 = 0,
|
||||
DA7219_AAD_BTN_AVG_2,
|
||||
DA7219_AAD_BTN_AVG_4,
|
||||
DA7219_AAD_BTN_AVG_8,
|
||||
};
|
||||
|
||||
enum da7219_aad_adc_1bit_rpt {
|
||||
DA7219_AAD_ADC_1BIT_RPT_1 = 0,
|
||||
DA7219_AAD_ADC_1BIT_RPT_2,
|
||||
DA7219_AAD_ADC_1BIT_RPT_4,
|
||||
DA7219_AAD_ADC_1BIT_RPT_8,
|
||||
};
|
||||
|
||||
struct da7219_aad_pdata {
|
||||
int irq;
|
||||
|
||||
enum da7219_aad_micbias_pulse_lvl micbias_pulse_lvl;
|
||||
u32 micbias_pulse_time;
|
||||
enum da7219_aad_btn_cfg btn_cfg;
|
||||
enum da7219_aad_mic_det_thr mic_det_thr;
|
||||
enum da7219_aad_jack_ins_deb jack_ins_deb;
|
||||
enum da7219_aad_jack_det_rate jack_det_rate;
|
||||
enum da7219_aad_jack_rem_deb jack_rem_deb;
|
||||
|
||||
u8 a_d_btn_thr;
|
||||
u8 d_b_btn_thr;
|
||||
u8 b_c_btn_thr;
|
||||
u8 c_mic_btn_thr;
|
||||
|
||||
enum da7219_aad_btn_avg btn_avg;
|
||||
enum da7219_aad_adc_1bit_rpt adc_1bit_rpt;
|
||||
};
|
||||
|
||||
#endif /* __DA7219_AAD_PDATA_H */
|
55
include/sound/da7219.h
Normal file
55
include/sound/da7219.h
Normal file
@@ -0,0 +1,55 @@
|
||||
/*
|
||||
* da7219.h - DA7219 ASoC Codec Driver Platform Data
|
||||
*
|
||||
* Copyright (c) 2015 Dialog Semiconductor
|
||||
*
|
||||
* Author: Adam Thomson <Adam.Thomson.Opensource@diasemi.com>
|
||||
*
|
||||
* 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 __DA7219_PDATA_H
|
||||
#define __DA7219_PDATA_H
|
||||
|
||||
/* LDO */
|
||||
enum da7219_ldo_lvl_sel {
|
||||
DA7219_LDO_LVL_SEL_1_05V = 0,
|
||||
DA7219_LDO_LVL_SEL_1_10V,
|
||||
DA7219_LDO_LVL_SEL_1_20V,
|
||||
DA7219_LDO_LVL_SEL_1_40V,
|
||||
};
|
||||
|
||||
/* Mic Bias */
|
||||
enum da7219_micbias_voltage {
|
||||
DA7219_MICBIAS_1_8V = 1,
|
||||
DA7219_MICBIAS_2_0V,
|
||||
DA7219_MICBIAS_2_2V,
|
||||
DA7219_MICBIAS_2_4V,
|
||||
DA7219_MICBIAS_2_6V,
|
||||
};
|
||||
|
||||
/* Mic input type */
|
||||
enum da7219_mic_amp_in_sel {
|
||||
DA7219_MIC_AMP_IN_SEL_DIFF = 0,
|
||||
DA7219_MIC_AMP_IN_SEL_SE_P,
|
||||
DA7219_MIC_AMP_IN_SEL_SE_N,
|
||||
};
|
||||
|
||||
struct da7219_aad_pdata;
|
||||
|
||||
struct da7219_pdata {
|
||||
/* Internal LDO */
|
||||
enum da7219_ldo_lvl_sel ldo_lvl_sel;
|
||||
|
||||
/* Mic */
|
||||
enum da7219_micbias_voltage micbias_lvl;
|
||||
enum da7219_mic_amp_in_sel mic_amp_in_sel;
|
||||
|
||||
/* AAD */
|
||||
struct da7219_aad_pdata *aad_pdata;
|
||||
};
|
||||
|
||||
#endif /* __DA7219_PDATA_H */
|
@@ -38,6 +38,8 @@ struct i2s_clk_config_data {
|
||||
struct i2s_platform_data {
|
||||
#define DWC_I2S_PLAY (1 << 0)
|
||||
#define DWC_I2S_RECORD (1 << 1)
|
||||
#define DW_I2S_SLAVE (1 << 2)
|
||||
#define DW_I2S_MASTER (1 << 3)
|
||||
unsigned int cap;
|
||||
int channel;
|
||||
u32 snd_fmts;
|
||||
|
@@ -12,7 +12,6 @@ extern int __pxa2xx_pcm_hw_free(struct snd_pcm_substream *substream);
|
||||
extern int pxa2xx_pcm_trigger(struct snd_pcm_substream *substream, int cmd);
|
||||
extern snd_pcm_uframes_t pxa2xx_pcm_pointer(struct snd_pcm_substream *substream);
|
||||
extern int __pxa2xx_pcm_prepare(struct snd_pcm_substream *substream);
|
||||
extern void pxa2xx_pcm_dma_irq(int dma_ch, void *dev_id);
|
||||
extern int __pxa2xx_pcm_open(struct snd_pcm_substream *substream);
|
||||
extern int __pxa2xx_pcm_close(struct snd_pcm_substream *substream);
|
||||
extern int pxa2xx_pcm_mmap(struct snd_pcm_substream *substream,
|
||||
|
@@ -1,117 +0,0 @@
|
||||
/*
|
||||
* Renesas R-Car SRU/SCU/SSIU/SSI support
|
||||
*
|
||||
* Copyright (C) 2013 Renesas Solutions Corp.
|
||||
* Kuninori Morimoto <kuninori.morimoto.gx@renesas.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 RCAR_SND_H
|
||||
#define RCAR_SND_H
|
||||
|
||||
|
||||
#define RSND_GEN1_SRU 0
|
||||
#define RSND_GEN1_ADG 1
|
||||
#define RSND_GEN1_SSI 2
|
||||
|
||||
#define RSND_GEN2_SCU 0
|
||||
#define RSND_GEN2_ADG 1
|
||||
#define RSND_GEN2_SSIU 2
|
||||
#define RSND_GEN2_SSI 3
|
||||
|
||||
#define RSND_BASE_MAX 4
|
||||
|
||||
/*
|
||||
* flags
|
||||
*
|
||||
* 0xAB000000
|
||||
*
|
||||
* A : clock sharing settings
|
||||
* B : SSI direction
|
||||
*/
|
||||
#define RSND_SSI_CLK_PIN_SHARE (1 << 31)
|
||||
#define RSND_SSI_NO_BUSIF (1 << 30) /* SSI+DMA without BUSIF */
|
||||
|
||||
#define RSND_SSI(_dma_id, _irq, _flags) \
|
||||
{ .dma_id = _dma_id, .irq = _irq, .flags = _flags }
|
||||
#define RSND_SSI_UNUSED \
|
||||
{ .dma_id = -1, .irq = -1, .flags = 0 }
|
||||
|
||||
struct rsnd_ssi_platform_info {
|
||||
int dma_id;
|
||||
int 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 */
|
||||
int irq;
|
||||
};
|
||||
|
||||
/*
|
||||
* flags
|
||||
*/
|
||||
struct rsnd_ctu_platform_info {
|
||||
u32 flags;
|
||||
};
|
||||
|
||||
struct rsnd_mix_platform_info {
|
||||
u32 flags;
|
||||
};
|
||||
|
||||
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_ctu_platform_info *ctu;
|
||||
struct rsnd_mix_platform_info *mix;
|
||||
struct rsnd_dvc_platform_info *dvc;
|
||||
};
|
||||
|
||||
struct rsnd_dai_platform_info {
|
||||
struct rsnd_dai_path_info playback;
|
||||
struct rsnd_dai_path_info capture;
|
||||
};
|
||||
|
||||
/*
|
||||
* flags
|
||||
*
|
||||
* 0x0000000A
|
||||
*
|
||||
* A : generation
|
||||
*/
|
||||
#define RSND_GEN_MASK (0xF << 0)
|
||||
#define RSND_GEN1 (1 << 0) /* fixme */
|
||||
#define RSND_GEN2 (2 << 0) /* fixme */
|
||||
|
||||
struct rcar_snd_info {
|
||||
u32 flags;
|
||||
struct rsnd_ssi_platform_info *ssi_info;
|
||||
int ssi_info_nr;
|
||||
struct rsnd_src_platform_info *src_info;
|
||||
int src_info_nr;
|
||||
struct rsnd_ctu_platform_info *ctu_info;
|
||||
int ctu_info_nr;
|
||||
struct rsnd_mix_platform_info *mix_info;
|
||||
int mix_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);
|
||||
};
|
||||
|
||||
#endif
|
@@ -12,9 +12,10 @@
|
||||
#define __LINUX_SND_RT5640_H
|
||||
|
||||
struct rt5640_platform_data {
|
||||
/* IN1 & IN2 can optionally be differential */
|
||||
/* IN1 & IN2 & IN3 can optionally be differential */
|
||||
bool in1_diff;
|
||||
bool in2_diff;
|
||||
bool in3_diff;
|
||||
|
||||
bool dmic_en;
|
||||
bool dmic1_data_pin; /* 0 = IN1P; 1 = GPIO3 */
|
||||
|
@@ -48,10 +48,25 @@ struct snd_compr_stream;
|
||||
#define SND_SOC_DAIFMT_GATED (0 << 4) /* clock is gated */
|
||||
|
||||
/*
|
||||
* DAI hardware signal inversions.
|
||||
* DAI hardware signal polarity.
|
||||
*
|
||||
* Specifies whether the DAI can also support inverted clocks for the specified
|
||||
* format.
|
||||
*
|
||||
* BCLK:
|
||||
* - "normal" polarity means signal is available at rising edge of BCLK
|
||||
* - "inverted" polarity means signal is available at falling edge of BCLK
|
||||
*
|
||||
* FSYNC "normal" polarity depends on the frame format:
|
||||
* - I2S: frame consists of left then right channel data. Left channel starts
|
||||
* with falling FSYNC edge, right channel starts with rising FSYNC edge.
|
||||
* - Left/Right Justified: frame consists of left then right channel data.
|
||||
* Left channel starts with rising FSYNC edge, right channel starts with
|
||||
* falling FSYNC edge.
|
||||
* - DSP A/B: Frame starts with rising FSYNC edge.
|
||||
* - AC97: Frame starts with rising FSYNC edge.
|
||||
*
|
||||
* "Negative" FSYNC polarity is the one opposite of "normal" polarity.
|
||||
*/
|
||||
#define SND_SOC_DAIFMT_NB_NF (0 << 8) /* normal bit clock + frame */
|
||||
#define SND_SOC_DAIFMT_NB_IF (2 << 8) /* normal BCLK + inv FRM */
|
||||
@@ -214,7 +229,7 @@ struct snd_soc_dai_driver {
|
||||
int (*suspend)(struct snd_soc_dai *dai);
|
||||
int (*resume)(struct snd_soc_dai *dai);
|
||||
/* compress dai */
|
||||
bool compress_dai;
|
||||
int (*compress_new)(struct snd_soc_pcm_runtime *rtd, int num);
|
||||
/* DAI is also used for the control bus */
|
||||
bool bus_control;
|
||||
|
||||
|
@@ -451,6 +451,9 @@ int snd_soc_dapm_dai_get_connected_widgets(struct snd_soc_dai *dai, int stream,
|
||||
struct snd_soc_dapm_context *snd_soc_dapm_kcontrol_dapm(
|
||||
struct snd_kcontrol *kcontrol);
|
||||
|
||||
struct snd_soc_dapm_widget *snd_soc_dapm_kcontrol_widget(
|
||||
struct snd_kcontrol *kcontrol);
|
||||
|
||||
int snd_soc_dapm_force_bias_level(struct snd_soc_dapm_context *dapm,
|
||||
enum snd_soc_bias_level level);
|
||||
|
||||
|
@@ -86,7 +86,7 @@
|
||||
.access = SNDRV_CTL_ELEM_ACCESS_TLV_READ | \
|
||||
SNDRV_CTL_ELEM_ACCESS_READWRITE, \
|
||||
.tlv.p = (tlv_array),\
|
||||
.info = snd_soc_info_volsw, \
|
||||
.info = snd_soc_info_volsw_sx, \
|
||||
.get = snd_soc_get_volsw_sx,\
|
||||
.put = snd_soc_put_volsw_sx, \
|
||||
.private_value = (unsigned long)&(struct soc_mixer_control) \
|
||||
@@ -156,7 +156,7 @@
|
||||
.access = SNDRV_CTL_ELEM_ACCESS_TLV_READ | \
|
||||
SNDRV_CTL_ELEM_ACCESS_READWRITE, \
|
||||
.tlv.p = (tlv_array), \
|
||||
.info = snd_soc_info_volsw, \
|
||||
.info = snd_soc_info_volsw_sx, \
|
||||
.get = snd_soc_get_volsw_sx, \
|
||||
.put = snd_soc_put_volsw_sx, \
|
||||
.private_value = (unsigned long)&(struct soc_mixer_control) \
|
||||
@@ -217,6 +217,13 @@
|
||||
.get = xhandler_get, .put = xhandler_put, \
|
||||
.private_value = \
|
||||
SOC_DOUBLE_VALUE(reg, shift_left, shift_right, max, invert, 0) }
|
||||
#define SOC_DOUBLE_R_EXT(xname, reg_left, reg_right, xshift, xmax, xinvert,\
|
||||
xhandler_get, xhandler_put) \
|
||||
{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = (xname), \
|
||||
.info = snd_soc_info_volsw, \
|
||||
.get = xhandler_get, .put = xhandler_put, \
|
||||
.private_value = SOC_DOUBLE_R_VALUE(reg_left, reg_right, xshift, \
|
||||
xmax, xinvert) }
|
||||
#define SOC_SINGLE_EXT_TLV(xname, xreg, xshift, xmax, xinvert,\
|
||||
xhandler_get, xhandler_put, tlv_array) \
|
||||
{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \
|
||||
@@ -452,7 +459,9 @@ int snd_soc_platform_read(struct snd_soc_platform *platform,
|
||||
int snd_soc_platform_write(struct snd_soc_platform *platform,
|
||||
unsigned int reg, unsigned int val);
|
||||
int soc_new_pcm(struct snd_soc_pcm_runtime *rtd, int num);
|
||||
int soc_new_compress(struct snd_soc_pcm_runtime *rtd, int num);
|
||||
#ifdef CONFIG_SND_SOC_COMPRESS
|
||||
int snd_soc_new_compress(struct snd_soc_pcm_runtime *rtd, int num);
|
||||
#endif
|
||||
|
||||
struct snd_pcm_substream *snd_soc_get_dai_substream(struct snd_soc_card *card,
|
||||
const char *dai_link, int stream);
|
||||
@@ -586,6 +595,8 @@ int snd_soc_put_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);
|
||||
int snd_soc_info_volsw_sx(struct snd_kcontrol *kcontrol,
|
||||
struct snd_ctl_elem_info *uinfo);
|
||||
#define snd_soc_info_bool_ext snd_ctl_boolean_mono_info
|
||||
int snd_soc_get_volsw(struct snd_kcontrol *kcontrol,
|
||||
struct snd_ctl_elem_value *ucontrol);
|
||||
@@ -603,7 +614,7 @@ int snd_soc_put_volsw_range(struct snd_kcontrol *kcontrol,
|
||||
struct snd_ctl_elem_value *ucontrol);
|
||||
int snd_soc_get_volsw_range(struct snd_kcontrol *kcontrol,
|
||||
struct snd_ctl_elem_value *ucontrol);
|
||||
int snd_soc_limit_volume(struct snd_soc_codec *codec,
|
||||
int snd_soc_limit_volume(struct snd_soc_card *card,
|
||||
const char *name, int max);
|
||||
int snd_soc_bytes_info(struct snd_kcontrol *kcontrol,
|
||||
struct snd_ctl_elem_info *uinfo);
|
||||
|
@@ -119,7 +119,7 @@
|
||||
#define WM8904_MIC_REGS 2
|
||||
#define WM8904_GPIO_REGS 4
|
||||
#define WM8904_DRC_REGS 4
|
||||
#define WM8904_EQ_REGS 25
|
||||
#define WM8904_EQ_REGS 24
|
||||
|
||||
/**
|
||||
* DRC configurations are specified with a label and a set of register
|
||||
|
Reference in New Issue
Block a user