android_kernel_samsung_msm8976/sound/soc/codecs/msm8x16-wcd.h
LuK1337 fc9499e55a Import latest Samsung release
* Package version: T713XXU2BQCO

Change-Id: I293d9e7f2df458c512d59b7a06f8ca6add610c99
2017-04-18 03:43:52 +02:00

338 lines
8.1 KiB
C

/* Copyright (c) 2014-2016, The Linux Foundation. All rights reserved.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 and
* only 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 MSM8X16_WCD_H
#define MSM8X16_WCD_H
#include <sound/soc.h>
#include <sound/jack.h>
#include <sound/q6afe-v2.h>
#include "wcd-mbhc-v2.h"
#include "wcdcal-hwdep.h"
#define MICBIAS_EXT_BYP_CAP 0x00
#define MICBIAS_NO_EXT_BYP_CAP 0x01
#define MSM8X16_WCD_NUM_REGISTERS 0x6FF
#define MSM8X16_WCD_MAX_REGISTER (MSM8X16_WCD_NUM_REGISTERS-1)
#define MSM8X16_WCD_CACHE_SIZE MSM8X16_WCD_NUM_REGISTERS
#define MSM8X16_WCD_NUM_IRQ_REGS 2
#define MAX_REGULATOR 7
#define MSM8X16_WCD_REG_VAL(reg, val) {reg, 0, val}
#define MSM8X16_TOMBAK_LPASS_AUDIO_CORE_DIG_CODEC_CLK_SEL 0xFE03B004
#define MSM8X16_TOMBAK_LPASS_DIGCODEC_CMD_RCGR 0x0181C09C
#define MSM8X16_TOMBAK_LPASS_DIGCODEC_CFG_RCGR 0x0181C0A0
#define MSM8X16_TOMBAK_LPASS_DIGCODEC_M 0x0181C0A4
#define MSM8X16_TOMBAK_LPASS_DIGCODEC_N 0x0181C0A8
#define MSM8X16_TOMBAK_LPASS_DIGCODEC_D 0x0181C0AC
#define MSM8X16_TOMBAK_LPASS_DIGCODEC_CBCR 0x0181C0B0
#define MSM8X16_TOMBAK_LPASS_DIGCODEC_AHB_CBCR 0x0181C0B4
#define MSM8X16_CODEC_NAME "msm8x16_wcd_codec"
#define MSM8X16_WCD_IS_DIGITAL_REG(reg) \
(((reg >= 0x200) && (reg <= 0x4FF)) ? 1 : 0)
#define MSM8X16_WCD_IS_TOMBAK_REG(reg) \
(((reg >= 0x000) && (reg <= 0x1FF)) ? 1 : 0)
/*
* MCLK activity indicators during suspend and resume call
*/
#define MCLK_SUS_DIS 1
#define MCLK_SUS_RSC 2
#define MCLK_SUS_NO_ACT 3
#define NUM_DECIMATORS 4
#define MSM89XX_VDD_SPKDRV_NAME "cdc-vdd-spkdrv"
#define DEFAULT_MULTIPLIER 800
#define DEFAULT_GAIN 9
#define DEFAULT_OFFSET 100
extern const u8 msm8x16_wcd_reg_readable[MSM8X16_WCD_CACHE_SIZE];
extern const u8 msm8x16_wcd_reg_readonly[MSM8X16_WCD_CACHE_SIZE];
extern const u8 msm8x16_wcd_reset_reg_defaults[MSM8X16_WCD_CACHE_SIZE];
extern const u8 cajon_digital_reg[MSM8X16_WCD_CACHE_SIZE];
enum codec_versions {
TOMBAK_1_0,
TOMBAK_2_0,
CONGA,
CAJON,
CAJON_2_0,
UNSUPPORTED,
};
enum wcd_curr_ref {
I_h4_UA = 0,
I_pt5_UA,
I_14_UA,
I_l4_UA,
I_1_UA,
};
enum wcd_mbhc_imp_det_pin {
WCD_MBHC_DET_NONE = 0,
WCD_MBHC_DET_HPHL,
WCD_MBHC_DET_HPHR,
WCD_MBHC_DET_BOTH,
};
/* Each micbias can be assigned to one of three cfilters
* Vbatt_min >= .15V + ldoh_v
* ldoh_v >= .15v + cfiltx_mv
* If ldoh_v = 1.95 160 mv < cfiltx_mv < 1800 mv
* If ldoh_v = 2.35 200 mv < cfiltx_mv < 2200 mv
* If ldoh_v = 2.75 240 mv < cfiltx_mv < 2600 mv
* If ldoh_v = 2.85 250 mv < cfiltx_mv < 2700 mv
*/
struct wcd9xxx_micbias_setting {
u8 ldoh_v;
u32 cfilt1_mv; /* in mv */
u32 cfilt2_mv; /* in mv */
u32 cfilt3_mv; /* in mv */
/* Different WCD9xxx series codecs may not
* have 4 mic biases. If a codec has fewer
* mic biases, some of these properties will
* not be used.
*/
u8 bias1_cfilt_sel;
u8 bias2_cfilt_sel;
u8 bias3_cfilt_sel;
u8 bias4_cfilt_sel;
u8 bias1_cap_mode;
u8 bias2_cap_mode;
u8 bias3_cap_mode;
u8 bias4_cap_mode;
bool bias2_is_headset_only;
};
enum msm8x16_wcd_pid_current {
MSM8X16_WCD_PID_MIC_2P5_UA,
MSM8X16_WCD_PID_MIC_5_UA,
MSM8X16_WCD_PID_MIC_10_UA,
MSM8X16_WCD_PID_MIC_20_UA,
};
struct msm8x16_wcd_reg_mask_val {
u16 reg;
u8 mask;
u8 val;
};
enum msm8x16_wcd_mbhc_analog_pwr_cfg {
MSM8X16_WCD_ANALOG_PWR_COLLAPSED = 0,
MSM8X16_WCD_ANALOG_PWR_ON,
MSM8X16_WCD_NUM_ANALOG_PWR_CONFIGS,
};
/* Number of input and output I2S port */
enum {
MSM8X16_WCD_RX1 = 0,
MSM8X16_WCD_RX2,
MSM8X16_WCD_RX3,
MSM8X16_WCD_RX_MAX,
};
enum {
MSM8X16_WCD_TX1 = 0,
MSM8X16_WCD_TX2,
MSM8X16_WCD_TX3,
MSM8X16_WCD_TX4,
MSM8X16_WCD_TX_MAX,
};
enum {
/* INTR_REG 0 - Digital Periph */
MSM8X16_WCD_IRQ_SPKR_CNP = 0,
MSM8X16_WCD_IRQ_SPKR_CLIP,
MSM8X16_WCD_IRQ_SPKR_OCP,
MSM8X16_WCD_IRQ_MBHC_INSREM_DET1,
MSM8X16_WCD_IRQ_MBHC_RELEASE,
MSM8X16_WCD_IRQ_MBHC_PRESS,
MSM8X16_WCD_IRQ_MBHC_INSREM_DET,
MSM8X16_WCD_IRQ_MBHC_HS_DET,
/* INTR_REG 1 - Analog Periph */
MSM8X16_WCD_IRQ_EAR_OCP,
MSM8X16_WCD_IRQ_HPHR_OCP,
MSM8X16_WCD_IRQ_HPHL_OCP,
MSM8X16_WCD_IRQ_EAR_CNP,
MSM8X16_WCD_IRQ_HPHR_CNP,
MSM8X16_WCD_IRQ_HPHL_CNP,
MSM8X16_WCD_NUM_IRQS,
};
enum {
ON_DEMAND_MICBIAS = 0,
ON_DEMAND_SPKDRV,
ON_DEMAND_SUPPLIES_MAX,
};
/*
* The delay list is per codec HW specification.
* Please add delay in the list in the future instead
* of magic number
*/
enum {
CODEC_DELAY_1_MS = 1000,
CODEC_DELAY_1_1_MS = 1100,
};
struct msm8x16_wcd_regulator {
const char *name;
int min_uv;
int max_uv;
int optimum_ua;
bool ondemand;
struct regulator *regulator;
};
struct on_demand_supply {
struct regulator *supply;
atomic_t ref;
};
struct wcd_imped_i_ref {
enum wcd_curr_ref curr_ref;
int min_val;
int multiplier;
int gain_adj;
int offset;
};
struct msm8916_asoc_mach_data {
int codec_type;
int ext_pa;
int us_euro_gpio;
int spk_ext_pa_gpio;
int ext_audio_switch_gpio;
u32 ext_audio_switch_active_high;
struct regulator *ext_audio_switch_supply;
int mclk_freq;
int lb_mode;
u8 micbias1_cap_mode;
u8 micbias2_cap_mode;
atomic_t mclk_rsc_ref;
atomic_t mclk_enabled;
atomic_t wsa_mclk_rsc_ref;
struct mutex cdc_mclk_mutex;
struct mutex wsa_mclk_mutex;
struct delayed_work disable_mclk_work;
struct afe_digital_clk_cfg digital_cdc_clk;
struct afe_clk_set digital_cdc_core_clk;
void __iomem *vaddr_gpio_mux_spkr_ctl;
void __iomem *vaddr_gpio_mux_mic_ctl;
void __iomem *vaddr_gpio_mux_quin_ctl;
void __iomem *vaddr_gpio_mux_pcm_ctl;
#if defined (CONFIG_SND_SOC_SECONDARY_AUXPCM)
void __iomem *vaddr_gpio_mux_sec_pcm_ctl;
#endif
struct on_demand_supply wsa_switch_supply;
#ifdef CONFIG_SND_SOC_MSM8X16_RT5659
struct snd_soc_codec *codec;
struct clk *rt5659_ext_clk;
int codec_ldo_1p8_en;
int codec_ldo_3p3_en;
int codec_irq_gpio;
int codec_ear_bias;
#endif /* CONFIG_SND_SOC_MSM8X16_RT5659 */
#ifdef CONFIG_SAMSUNG_JACK
int mpp_ch_scale[3];
#endif /* CONFIG_SAMSUNG_JACK */
};
struct msm8x16_wcd_pdata {
int irq;
int irq_base;
int num_irqs;
int reset_gpio;
void *msm8x16_wcd_ahb_base_vaddr;
struct wcd9xxx_micbias_setting micbias;
struct msm8x16_wcd_regulator regulator[MAX_REGULATOR];
u32 mclk_rate;
u32 is_lpass;
u32 dig_cdc_addr;
};
enum msm8x16_wcd_micbias_num {
MSM8X16_WCD_MICBIAS1 = 0,
};
struct msm8x16_wcd {
struct device *dev;
struct mutex io_lock;
u8 version;
int reset_gpio;
int (*read_dev)(struct snd_soc_codec *codec,
unsigned short reg);
int (*write_dev)(struct snd_soc_codec *codec,
unsigned short reg, u8 val);
u32 num_of_supplies;
struct regulator_bulk_data *supplies;
u8 idbyte[4];
int num_irqs;
u32 mclk_rate;
char __iomem *dig_base;
};
struct msm8x16_wcd_priv {
struct snd_soc_codec *codec;
u16 pmic_rev;
u16 codec_version;
u32 boost_voltage;
u32 adc_count;
u32 rx_bias_count;
s32 dmic_1_2_clk_cnt;
u32 mute_mask;
bool mclk_enabled;
bool clock_active;
bool config_mode_active;
u16 boost_option;
bool spk_boost_set;
bool ear_pa_boost_set;
bool ext_spk_boost_set;
bool dec_active[NUM_DECIMATORS];
struct on_demand_supply on_demand_list[ON_DEMAND_SUPPLIES_MAX];
struct regulator *spkdrv_reg;
#ifdef CONFIG_SAMSUNG_JACK
int micb_2_ref_cnt;
#endif /* CONFIG_SAMSUNG_JACK */
/* mbhc module */
struct wcd_mbhc mbhc;
/* cal info for codec */
struct fw_info *fw_data;
struct blocking_notifier_head notifier;
int (*codec_spk_ext_pa_cb)(struct snd_soc_codec *codec, int enable);
unsigned long status_mask;
struct wcd_imped_i_ref imped_i_ref;
enum wcd_mbhc_imp_det_pin imped_det_pin;
bool tx1n_gnd_sel;
};
extern int msm8x16_wcd_mclk_enable(struct snd_soc_codec *codec, int mclk_enable,
bool dapm);
extern int msm8x16_wcd_hs_detect(struct snd_soc_codec *codec,
struct wcd_mbhc_config *mbhc_cfg);
extern void msm8x16_wcd_hs_detect_exit(struct snd_soc_codec *codec);
extern void msm8x16_wcd_spk_ext_pa_cb(
int (*codec_spk_ext_pa)(struct snd_soc_codec *codec,
int enable), struct snd_soc_codec *codec);
#endif