| /* Copyright (c) 2012, 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. |
| */ |
| |
| #include <linux/clk.h> |
| #include <linux/delay.h> |
| #include <linux/gpio.h> |
| #include <linux/of_gpio.h> |
| #include <linux/platform_device.h> |
| #include <linux/slab.h> |
| #include <linux/qpnp/clkdiv.h> |
| #include <sound/core.h> |
| #include <sound/soc.h> |
| #include <sound/soc-dapm.h> |
| #include <sound/pcm.h> |
| #include <sound/jack.h> |
| #include <asm/mach-types.h> |
| #include <mach/socinfo.h> |
| #include <qdsp6v2/msm-pcm-routing-v2.h> |
| #include "../codecs/wcd9320.h" |
| |
| /* MI2S GPIO SECTION */ |
| |
| #define GPIO_MI2S_WS 12 |
| #define GPIO_MI2S_SCLK 15 |
| #define GPIO_MI2S_DOUT 14 |
| #define GPIO_MI2S_DIN 13 |
| #define GPIO_MI2S_MCLK 71 |
| |
| /* Spk control */ |
| #define MDM9625_SPK_ON 1 |
| |
| /* MDM9625 run Taiko at 12.288 Mhz. |
| * At present MDM supports 12.288mhz |
| * only. Taiko supports 9.6 MHz also. |
| */ |
| #define MDM_MCLK_CLK_12P288MHZ 12288000 |
| #define MDM_MCLK_CLK_9P6HZ 9600000 |
| #define MDM_IBIT_CLK_DIV_1P56MHZ 7 |
| |
| /* Machine driver Name*/ |
| #define MDM9625_MACHINE_DRV_NAME "mdm9625-asoc-taiko" |
| |
| struct mdm9625_machine_data { |
| u32 mclk_freq; |
| }; |
| |
| /* MI2S clock */ |
| struct mdm_mi2s_clk { |
| struct clk *cdc_cr_clk; |
| struct clk *cdc_osr_clk; |
| struct clk *cdc_bit_clk; |
| bool clk_enable; |
| |
| }; |
| static struct mdm_mi2s_clk prim_clk; |
| |
| /* I2S GPIO */ |
| struct request_gpio { |
| unsigned gpio_no; |
| char *gpio_name; |
| }; |
| static bool cdc_mclk_init; |
| static struct mutex cdc_mclk_mutex; |
| static int mdm9625_mi2s_rx_ch = 1; |
| static int mdm9625_mi2s_tx_ch = 1; |
| static int msm_spk_control; |
| static atomic_t mi2s_ref_count; |
| |
| /* MI2S GPIO CONFIG */ |
| static struct request_gpio mi2s_gpio[] = { |
| { |
| .gpio_no = GPIO_MI2S_WS, |
| .gpio_name = "MI2S_WS", |
| }, |
| { |
| .gpio_no = GPIO_MI2S_SCLK, |
| .gpio_name = "MI2S_SCLK", |
| }, |
| { |
| .gpio_no = GPIO_MI2S_DOUT, |
| .gpio_name = "MI2S_DOUT", |
| }, |
| { |
| .gpio_no = GPIO_MI2S_DIN, |
| .gpio_name = "MI2S_DIN", |
| }, |
| { |
| .gpio_no = GPIO_MI2S_MCLK, |
| .gpio_name = "MI2S_MCLK", |
| }, |
| }; |
| |
| static int mdm9625_enable_codec_ext_clk(struct snd_soc_codec *codec, |
| int enable, bool dapm); |
| |
| void *def_taiko_mbhc_cal(void); |
| |
| static struct wcd9xxx_mbhc_config mbhc_cfg = { |
| .read_fw_bin = false, |
| .calibration = NULL, |
| .micbias = MBHC_MICBIAS2, |
| .mclk_cb_fn = mdm9625_enable_codec_ext_clk, |
| .mclk_rate = MDM_MCLK_CLK_12P288MHZ, |
| .gpio = 0, |
| .gpio_irq = 0, |
| .gpio_level_insert = 1, |
| .detect_extn_cable = true, |
| .insert_detect = true, |
| .swap_gnd_mic = NULL, |
| }; |
| |
| #define WCD9XXX_MBHC_DEF_BUTTONS 8 |
| #define WCD9XXX_MBHC_DEF_RLOADS 5 |
| |
| |
| static bool gpio_enable; |
| |
| static int mdm9625_set_mi2s_gpio(void) |
| { |
| int rtn = 0; |
| int i; |
| int j; |
| |
| if (gpio_enable == false) { |
| for (i = 0; i < ARRAY_SIZE(mi2s_gpio); i++) { |
| rtn = gpio_request(mi2s_gpio[i].gpio_no, |
| mi2s_gpio[i].gpio_name); |
| pr_debug("%s: gpio = %d, gpio name = %s\n" |
| "rtn = %d\n", __func__, |
| mi2s_gpio[i].gpio_no, |
| mi2s_gpio[i].gpio_name, |
| rtn); |
| if (rtn) { |
| pr_err("%s: Failed to request gpio %d\n", |
| __func__, mi2s_gpio[i].gpio_no); |
| /* Release all the GPIO on failure */ |
| for (j = i; j >= 0; j--) |
| gpio_free(mi2s_gpio[j].gpio_no); |
| goto err; |
| } |
| } |
| gpio_enable = true; |
| } |
| err: |
| return rtn; |
| } |
| |
| static int mdm9625_mi2s_free_gpios(void) |
| { |
| int i; |
| pr_debug("%s:", __func__); |
| for (i = 0; i < ARRAY_SIZE(mi2s_gpio); i++) |
| gpio_free(mi2s_gpio[i].gpio_no); |
| gpio_enable = false; |
| return 0; |
| } |
| static int mdm9625_mi2s_clk_ctl(struct snd_soc_pcm_runtime *rtd, bool enable) |
| { |
| struct mdm_mi2s_clk *clk = &prim_clk; |
| struct snd_soc_dai *cpu_dai = rtd->cpu_dai; |
| struct snd_soc_card *card = rtd->card; |
| struct mdm9625_machine_data *pdata = snd_soc_card_get_drvdata(card); |
| int ret = 0; |
| |
| if (pdata == NULL) { |
| pr_err("%s:platform data is null\n", __func__); |
| return -ENODEV; |
| } |
| |
| if (enable) { |
| if (clk->clk_enable == true) { |
| pr_info("%s:Device clock already enabled\n", __func__); |
| return 0; |
| } |
| /* Set up core clock. */ |
| clk->cdc_cr_clk = clk_get(cpu_dai->dev, "core_clk"); |
| if (IS_ERR(clk->cdc_cr_clk)) { |
| pr_err("%s: Failed to Core clk %ld\n" |
| "CPU dai name %s\n", __func__, |
| PTR_ERR(clk->cdc_cr_clk), |
| cpu_dai->dev->driver->name); |
| return -ENODEV ; |
| } |
| /* osr clock */ |
| clk->cdc_osr_clk = clk_get(cpu_dai->dev, "osr_clk"); |
| if (IS_ERR(clk->cdc_osr_clk)) { |
| pr_err("%s: Failed to request OSR %ld\n" |
| "CPU dai name %s\n", __func__, |
| PTR_ERR(clk->cdc_osr_clk), |
| cpu_dai->dev->driver->name); |
| clk_put(clk->cdc_cr_clk); |
| return -ENODEV ; |
| } |
| /* ibit clock */ |
| clk->cdc_bit_clk = clk_get(cpu_dai->dev, "ibit_clk"); |
| if (IS_ERR(clk->cdc_bit_clk)) { |
| pr_err("%s: Failed to request Bit %ld\n" |
| "CPU dai name %s\n", __func__, |
| PTR_ERR(clk->cdc_bit_clk), |
| cpu_dai->dev->driver->name); |
| clk_put(clk->cdc_cr_clk); |
| clk_put(clk->cdc_osr_clk); |
| return -ENODEV ; |
| } |
| /* Set rate core and ibit clock */ |
| clk_set_rate(clk->cdc_cr_clk, pdata->mclk_freq); |
| clk_set_rate(clk->cdc_bit_clk, MDM_IBIT_CLK_DIV_1P56MHZ); |
| |
| /* Enable clocks. core clock need not be enabled. |
| * Enabling branch clocks indirectly enables |
| * core clock. |
| */ |
| ret = clk_prepare_enable(clk->cdc_osr_clk); |
| if (ret != 0) { |
| pr_err("Fail to enable cdc_osr_clk\n"); |
| goto exit_osrclk_err; |
| } |
| ret = clk_prepare_enable(clk->cdc_bit_clk); |
| if (ret != 0) { |
| pr_err("Fail to enable cdc_bit_clk\n"); |
| goto exit_bclk_err; |
| } |
| clk->clk_enable = true; |
| return ret; |
| } else { |
| clk->clk_enable = false; |
| ret = 0; |
| goto exit_bclk_err; |
| } |
| exit_bclk_err: |
| clk_disable_unprepare(clk->cdc_bit_clk); |
| clk_put(clk->cdc_bit_clk); |
| exit_osrclk_err: |
| clk_disable_unprepare(clk->cdc_osr_clk); |
| clk_put(clk->cdc_osr_clk); |
| clk_put(clk->cdc_cr_clk); |
| clk->cdc_cr_clk = NULL; |
| clk->cdc_bit_clk = NULL; |
| clk->cdc_osr_clk = NULL; |
| clk->clk_enable = false; |
| return ret; |
| } |
| |
| static void mdm9625_mi2s_snd_shutdown(struct snd_pcm_substream *substream) |
| { |
| struct snd_soc_pcm_runtime *rtd = substream->private_data; |
| int ret; |
| if (atomic_dec_return(&mi2s_ref_count) == 0) { |
| mdm9625_mi2s_free_gpios(); |
| ret = mdm9625_mi2s_clk_ctl(rtd, false); |
| if (ret < 0) |
| pr_err("%s:clock disable failed\n", __func__); |
| } |
| } |
| |
| static int mdm9625_mi2s_startup(struct snd_pcm_substream *substream) |
| { |
| struct snd_soc_pcm_runtime *rtd = substream->private_data; |
| struct snd_soc_dai *cpu_dai = rtd->cpu_dai; |
| struct snd_soc_dai *codec_dai = rtd->codec_dai; |
| int ret = 0; |
| |
| if (atomic_inc_return(&mi2s_ref_count) == 1) { |
| mdm9625_set_mi2s_gpio(); |
| ret = mdm9625_mi2s_clk_ctl(rtd, true); |
| if (ret < 0) { |
| pr_err("set format for codec dai failed\n"); |
| return ret; |
| } |
| } |
| /* This sets the CONFIG PARAMETER WS_SRC. |
| * 1 means internal clock master mode. |
| * 0 means external clock slave mode. |
| */ |
| ret = snd_soc_dai_set_fmt(cpu_dai, SND_SOC_DAIFMT_CBS_CFS); |
| if (ret < 0) |
| pr_err("set fmt cpu dai failed\n"); |
| |
| ret = snd_soc_dai_set_fmt(codec_dai, SND_SOC_DAIFMT_CBS_CFS); |
| if (ret < 0) |
| pr_err("set fmt for codec dai failed\n"); |
| |
| return ret; |
| } |
| |
| static int set_codec_mclk(struct snd_soc_pcm_runtime *rtd) |
| { |
| int ret = 0; |
| struct snd_soc_dai *codec_dai = rtd->codec_dai; |
| struct snd_soc_card *card = rtd->card; |
| struct mdm9625_machine_data *pdata = snd_soc_card_get_drvdata(card); |
| |
| if (cdc_mclk_init == true) |
| return 0; |
| ret = snd_soc_dai_set_sysclk(codec_dai, TAIKO_MCLK_ID, pdata->mclk_freq, |
| SND_SOC_CLOCK_IN); |
| if (ret < 0) { |
| pr_err("%s: Set codec sys clk failed %x", __func__, ret); |
| return ret; |
| } |
| cdc_mclk_init = true; |
| return 0; |
| } |
| |
| static int mdm9625_mi2s_rx_be_hw_params_fixup(struct snd_soc_pcm_runtime *rtd, |
| struct snd_pcm_hw_params *params) |
| { |
| struct snd_interval *rate = hw_param_interval(params, |
| SNDRV_PCM_HW_PARAM_RATE); |
| struct snd_interval *channels = hw_param_interval(params, |
| SNDRV_PCM_HW_PARAM_CHANNELS); |
| rate->min = rate->max = 48000; |
| channels->min = channels->max = mdm9625_mi2s_rx_ch; |
| set_codec_mclk(rtd); |
| return 0; |
| } |
| |
| static int mdm9625_mi2s_tx_be_hw_params_fixup(struct snd_soc_pcm_runtime *rtd, |
| struct snd_pcm_hw_params *params) |
| { |
| struct snd_interval *rate = hw_param_interval(params, |
| SNDRV_PCM_HW_PARAM_RATE); |
| struct snd_interval *channels = hw_param_interval(params, |
| SNDRV_PCM_HW_PARAM_CHANNELS); |
| rate->min = rate->max = 48000; |
| channels->min = channels->max = mdm9625_mi2s_tx_ch; |
| set_codec_mclk(rtd); |
| return 0; |
| } |
| |
| |
| static int mdm9625_mi2s_rx_ch_get(struct snd_kcontrol *kcontrol, |
| struct snd_ctl_elem_value *ucontrol) |
| { |
| pr_debug("%s: msm9615_i2s_rx_ch = %d\n", __func__, |
| mdm9625_mi2s_rx_ch); |
| ucontrol->value.integer.value[0] = mdm9625_mi2s_rx_ch - 1; |
| return 0; |
| } |
| |
| static int mdm9625_mi2s_rx_ch_put(struct snd_kcontrol *kcontrol, |
| struct snd_ctl_elem_value *ucontrol) |
| { |
| mdm9625_mi2s_rx_ch = ucontrol->value.integer.value[0] + 1; |
| pr_debug("%s: msm9615_i2s_rx_ch = %d\n", __func__, |
| mdm9625_mi2s_rx_ch); |
| return 1; |
| } |
| |
| static int mdm9625_mi2s_tx_ch_get(struct snd_kcontrol *kcontrol, |
| struct snd_ctl_elem_value *ucontrol) |
| { |
| pr_debug("%s: msm9615_i2s_tx_ch = %d\n", __func__, |
| mdm9625_mi2s_tx_ch); |
| ucontrol->value.integer.value[0] = mdm9625_mi2s_tx_ch - 1; |
| return 0; |
| } |
| |
| static int mdm9625_mi2s_tx_ch_put(struct snd_kcontrol *kcontrol, |
| struct snd_ctl_elem_value *ucontrol) |
| { |
| mdm9625_mi2s_tx_ch = ucontrol->value.integer.value[0] + 1; |
| pr_debug("%s: msm9615_i2s_tx_ch = %d\n", __func__, |
| mdm9625_mi2s_tx_ch); |
| return 1; |
| } |
| |
| |
| static int mdm9625_mi2s_get_spk(struct snd_kcontrol *kcontrol, |
| struct snd_ctl_elem_value *ucontrol) |
| { |
| pr_debug("%s: msm_spk_control = %d", __func__, msm_spk_control); |
| ucontrol->value.integer.value[0] = msm_spk_control; |
| return 0; |
| } |
| |
| static void mdm_ext_control(struct snd_soc_codec *codec) |
| { |
| struct snd_soc_dapm_context *dapm = &codec->dapm; |
| pr_debug("%s: msm_spk_control = %d", __func__, msm_spk_control); |
| mutex_lock(&dapm->codec->mutex); |
| if (msm_spk_control == MDM9625_SPK_ON) { |
| snd_soc_dapm_enable_pin(dapm, "Ext Spk Bottom Pos"); |
| snd_soc_dapm_enable_pin(dapm, "Ext Spk Bottom Neg"); |
| snd_soc_dapm_enable_pin(dapm, "Ext Spk Top Pos"); |
| snd_soc_dapm_enable_pin(dapm, "Ext Spk Top Neg"); |
| } else { |
| snd_soc_dapm_disable_pin(dapm, "Ext Spk Bottom Pos"); |
| snd_soc_dapm_disable_pin(dapm, "Ext Spk Bottom Neg"); |
| snd_soc_dapm_disable_pin(dapm, "Ext Spk Top Pos"); |
| snd_soc_dapm_disable_pin(dapm, "Ext Spk Top Neg"); |
| } |
| snd_soc_dapm_sync(dapm); |
| mutex_unlock(&dapm->codec->mutex); |
| } |
| |
| static int mdm9625_mi2s_set_spk(struct snd_kcontrol *kcontrol, |
| struct snd_ctl_elem_value *ucontrol) |
| { |
| struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol); |
| pr_debug("%s()\n", __func__); |
| if (msm_spk_control == ucontrol->value.integer.value[0]) |
| return 0; |
| msm_spk_control = ucontrol->value.integer.value[0]; |
| mdm_ext_control(codec); |
| return 1; |
| } |
| |
| static int mdm9625_enable_codec_ext_clk(struct snd_soc_codec *codec, |
| int enable, bool dapm) |
| { |
| int ret = 0; |
| pr_debug("%s: enable = %d codec name %s\n", __func__, |
| enable, codec->name); |
| mutex_lock(&cdc_mclk_mutex); |
| if (enable) |
| taiko_mclk_enable(codec, 1, dapm); |
| else |
| taiko_mclk_enable(codec, 0, dapm); |
| mutex_unlock(&cdc_mclk_mutex); |
| return ret; |
| } |
| |
| static int mdm9625_mclk_event(struct snd_soc_dapm_widget *w, |
| struct snd_kcontrol *kcontrol, int event) |
| { |
| pr_debug("%s: event = %d\n", __func__, event); |
| switch (event) { |
| case SND_SOC_DAPM_PRE_PMU: |
| return mdm9625_enable_codec_ext_clk(w->codec, 1, true); |
| case SND_SOC_DAPM_POST_PMD: |
| return mdm9625_enable_codec_ext_clk(w->codec, 0, true); |
| } |
| return 0; |
| } |
| |
| |
| static const struct snd_soc_dapm_widget mdm9625_dapm_widgets[] = { |
| |
| SND_SOC_DAPM_SUPPLY("MCLK", SND_SOC_NOPM, 0, 0, |
| mdm9625_mclk_event, SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMD), |
| SND_SOC_DAPM_SPK("Ext Spk Bottom Pos", NULL), |
| SND_SOC_DAPM_SPK("Ext Spk Bottom Neg", NULL), |
| SND_SOC_DAPM_SPK("Ext Spk Top Pos", NULL), |
| SND_SOC_DAPM_SPK("Ext Spk Top Neg", NULL), |
| SND_SOC_DAPM_MIC("Handset Mic", NULL), |
| SND_SOC_DAPM_MIC("Headset Mic", NULL), |
| SND_SOC_DAPM_MIC("ANCRight Headset Mic", NULL), |
| SND_SOC_DAPM_MIC("ANCLeft Headset Mic", NULL), |
| SND_SOC_DAPM_MIC("Digital Mic1", NULL), |
| SND_SOC_DAPM_MIC("Digital Mic2", NULL), |
| SND_SOC_DAPM_MIC("Digital Mic3", NULL), |
| SND_SOC_DAPM_MIC("Digital Mic4", NULL), |
| SND_SOC_DAPM_MIC("Digital Mic5", NULL), |
| SND_SOC_DAPM_MIC("Digital Mic6", NULL), |
| }; |
| |
| static const char *const spk_function[] = {"Off", "On"}; |
| static const char *const mi2s_rx_ch_text[] = {"One", "Two"}; |
| static const char *const mi2s_tx_ch_text[] = {"One", "Two"}; |
| |
| static const struct soc_enum mdm9625_enum[] = { |
| SOC_ENUM_SINGLE_EXT(2, spk_function), |
| SOC_ENUM_SINGLE_EXT(2, mi2s_rx_ch_text), |
| SOC_ENUM_SINGLE_EXT(2, mi2s_tx_ch_text), |
| }; |
| |
| static const struct snd_kcontrol_new mdm_snd_controls[] = { |
| SOC_ENUM_EXT("Speaker Function", mdm9625_enum[0], |
| mdm9625_mi2s_get_spk, |
| mdm9625_mi2s_set_spk), |
| SOC_ENUM_EXT("MI2S_RX Channels", mdm9625_enum[1], |
| mdm9625_mi2s_rx_ch_get, |
| mdm9625_mi2s_rx_ch_put), |
| SOC_ENUM_EXT("MI2S_TX Channels", mdm9625_enum[2], |
| mdm9625_mi2s_tx_ch_get, |
| mdm9625_mi2s_tx_ch_put), |
| }; |
| |
| static int mdm9625_mi2s_audrx_init(struct snd_soc_pcm_runtime *rtd) |
| { |
| int err; |
| struct snd_soc_codec *codec = rtd->codec; |
| struct snd_soc_dapm_context *dapm = &codec->dapm; |
| struct snd_soc_dai *cpu_dai = rtd->cpu_dai; |
| pr_info("%s(), dev_name%s\n", __func__, dev_name(cpu_dai->dev)); |
| |
| rtd->pmdown_time = 0; |
| err = snd_soc_add_codec_controls(codec, mdm_snd_controls, |
| ARRAY_SIZE(mdm_snd_controls)); |
| if (err < 0) |
| return err; |
| |
| snd_soc_dapm_new_controls(dapm, mdm9625_dapm_widgets, |
| ARRAY_SIZE(mdm9625_dapm_widgets)); |
| |
| /* After DAPM Enable pins alawys |
| * DAPM SYNC needs to be called. |
| */ |
| snd_soc_dapm_enable_pin(dapm, "Ext Spk Bottom Pos"); |
| snd_soc_dapm_enable_pin(dapm, "Ext Spk Bottom Neg"); |
| snd_soc_dapm_enable_pin(dapm, "Ext Spk Top Pos"); |
| snd_soc_dapm_enable_pin(dapm, "Ext Spk Top Neg"); |
| snd_soc_dapm_sync(dapm); |
| |
| /* start mbhc */ |
| mdm9625_set_mi2s_gpio(); |
| mdm9625_mi2s_clk_ctl(rtd, true); |
| mbhc_cfg.calibration = def_taiko_mbhc_cal(); |
| if (mbhc_cfg.calibration) |
| err = taiko_hs_detect(codec, &mbhc_cfg); |
| else |
| err = -ENOMEM; |
| return err; |
| } |
| |
| void *def_taiko_mbhc_cal(void) |
| { |
| void *taiko_cal; |
| struct wcd9xxx_mbhc_btn_detect_cfg *btn_cfg; |
| u16 *btn_low, *btn_high; |
| u8 *n_ready, *n_cic, *gain; |
| |
| taiko_cal = kzalloc(WCD9XXX_MBHC_CAL_SIZE(WCD9XXX_MBHC_DEF_BUTTONS, |
| WCD9XXX_MBHC_DEF_RLOADS), |
| GFP_KERNEL); |
| if (!taiko_cal) { |
| pr_err("%s: out of memory\n", __func__); |
| return NULL; |
| } |
| |
| #define S(X, Y) ((WCD9XXX_MBHC_CAL_GENERAL_PTR(taiko_cal)->X) = (Y)) |
| S(t_ldoh, 100); |
| S(t_bg_fast_settle, 100); |
| S(t_shutdown_plug_rem, 255); |
| S(mbhc_nsa, 4); |
| S(mbhc_navg, 4); |
| #undef S |
| #define S(X, Y) ((WCD9XXX_MBHC_CAL_PLUG_DET_PTR(taiko_cal)->X) = (Y)) |
| S(mic_current, TAIKO_PID_MIC_5_UA); |
| S(hph_current, TAIKO_PID_MIC_5_UA); |
| S(t_mic_pid, 100); |
| S(t_ins_complete, 250); |
| S(t_ins_retry, 200); |
| #undef S |
| #define S(X, Y) ((WCD9XXX_MBHC_CAL_PLUG_TYPE_PTR(taiko_cal)->X) = (Y)) |
| S(v_no_mic, 30); |
| S(v_hs_max, 2400); |
| #undef S |
| #define S(X, Y) ((WCD9XXX_MBHC_CAL_BTN_DET_PTR(taiko_cal)->X) = (Y)) |
| S(c[0], 62); |
| S(c[1], 124); |
| S(nc, 1); |
| S(n_meas, 3); |
| S(mbhc_nsc, 11); |
| S(n_btn_meas, 1); |
| S(n_btn_con, 2); |
| S(num_btn, WCD9XXX_MBHC_DEF_BUTTONS); |
| S(v_btn_press_delta_sta, 100); |
| S(v_btn_press_delta_cic, 50); |
| #undef S |
| btn_cfg = WCD9XXX_MBHC_CAL_BTN_DET_PTR(taiko_cal); |
| btn_low = wcd9xxx_mbhc_cal_btn_det_mp(btn_cfg, MBHC_BTN_DET_V_BTN_LOW); |
| btn_high = wcd9xxx_mbhc_cal_btn_det_mp(btn_cfg, |
| MBHC_BTN_DET_V_BTN_HIGH); |
| btn_low[0] = -50; |
| btn_high[0] = 10; |
| btn_low[1] = 11; |
| btn_high[1] = 52; |
| btn_low[2] = 53; |
| btn_high[2] = 94; |
| btn_low[3] = 95; |
| btn_high[3] = 133; |
| btn_low[4] = 134; |
| btn_high[4] = 171; |
| btn_low[5] = 172; |
| btn_high[5] = 208; |
| btn_low[6] = 209; |
| btn_high[6] = 244; |
| btn_low[7] = 245; |
| btn_high[7] = 330; |
| n_ready = wcd9xxx_mbhc_cal_btn_det_mp(btn_cfg, MBHC_BTN_DET_N_READY); |
| n_ready[0] = 80; |
| n_ready[1] = 68; |
| n_cic = wcd9xxx_mbhc_cal_btn_det_mp(btn_cfg, MBHC_BTN_DET_N_CIC); |
| n_cic[0] = 60; |
| n_cic[1] = 47; |
| gain = wcd9xxx_mbhc_cal_btn_det_mp(btn_cfg, MBHC_BTN_DET_GAIN); |
| gain[0] = 11; |
| gain[1] = 9; |
| |
| return taiko_cal; |
| } |
| |
| |
| static struct snd_soc_ops mdm9625_mi2s_be_ops = { |
| .startup = mdm9625_mi2s_startup, |
| .shutdown = mdm9625_mi2s_snd_shutdown, |
| }; |
| |
| /* Digital audio interface connects codec <---> CPU */ |
| static struct snd_soc_dai_link mdm9625_dai[] = { |
| /* FrontEnd DAI Links */ |
| { |
| .name = "MDM9625 Media1", |
| .stream_name = "MultiMedia1", |
| .cpu_dai_name = "MultiMedia1", |
| .platform_name = "msm-pcm-dsp", |
| .dynamic = 1, |
| .trigger = {SND_SOC_DPCM_TRIGGER_POST, |
| SND_SOC_DPCM_TRIGGER_POST}, |
| .codec_dai_name = "snd-soc-dummy-dai", |
| .codec_name = "snd-soc-dummy", |
| .ignore_suspend = 1, |
| /* This dainlink has playback support */ |
| .ignore_pmdown_time = 1, |
| .be_id = MSM_FRONTEND_DAI_MULTIMEDIA1 |
| }, |
| { |
| .name = "MSM VoIP", |
| .stream_name = "VoIP", |
| .cpu_dai_name = "VoIP", |
| .platform_name = "msm-voip-dsp", |
| .dynamic = 1, |
| .trigger = {SND_SOC_DPCM_TRIGGER_POST, |
| SND_SOC_DPCM_TRIGGER_POST}, |
| .codec_dai_name = "snd-soc-dummy-dai", |
| .codec_name = "snd-soc-dummy", |
| .ignore_suspend = 1, |
| /* This dainlink has VOIP support */ |
| .ignore_pmdown_time = 1, |
| .be_id = MSM_FRONTEND_DAI_VOIP, |
| }, |
| { |
| .name = "Circuit-Switch Voice", |
| .stream_name = "CS-Voice", |
| .cpu_dai_name = "CS-VOICE", |
| .platform_name = "msm-pcm-voice", |
| .dynamic = 1, |
| .codec_dai_name = "snd-soc-dummy-dai", |
| .codec_name = "snd-soc-dummy", |
| .trigger = {SND_SOC_DPCM_TRIGGER_POST, |
| SND_SOC_DPCM_TRIGGER_POST}, |
| .no_host_mode = SND_SOC_DAI_LINK_NO_HOST, |
| .ignore_suspend = 1, |
| /* This dainlink has Voice support */ |
| .ignore_pmdown_time = 1, |
| .be_id = MSM_FRONTEND_DAI_CS_VOICE, |
| }, |
| { |
| .name = "MI2S Hostless", |
| .stream_name = "MI2S Hostless", |
| .cpu_dai_name = "MI2S_TX_HOSTLESS", |
| .platform_name = "msm-pcm-hostless", |
| .dynamic = 1, |
| .trigger = {SND_SOC_DPCM_TRIGGER_POST, |
| SND_SOC_DPCM_TRIGGER_POST}, |
| .no_host_mode = SND_SOC_DAI_LINK_NO_HOST, |
| .ignore_suspend = 1, |
| .ignore_pmdown_time = 1, |
| /* This dainlink has MI2S support */ |
| .codec_dai_name = "snd-soc-dummy-dai", |
| .codec_name = "snd-soc-dummy", |
| }, |
| /* Backend DAI Links */ |
| { |
| .name = LPASS_BE_MI2S_RX, |
| .stream_name = "MI2S Playback", |
| .cpu_dai_name = "msm-dai-q6-mi2s.0", |
| .platform_name = "msm-pcm-routing", |
| .codec_name = "taiko_codec", |
| .codec_dai_name = "taiko_i2s_rx1", |
| .no_pcm = 1, |
| .be_id = MSM_BACKEND_DAI_MI2S_RX, |
| .init = &mdm9625_mi2s_audrx_init, |
| .be_hw_params_fixup = &mdm9625_mi2s_rx_be_hw_params_fixup, |
| .ops = &mdm9625_mi2s_be_ops, |
| }, |
| { |
| .name = LPASS_BE_MI2S_TX, |
| .stream_name = "MI2S Capture", |
| .cpu_dai_name = "msm-dai-q6-mi2s.0", |
| .platform_name = "msm-pcm-routing", |
| .codec_name = "taiko_codec", |
| .codec_dai_name = "taiko_i2s_tx1", |
| .no_pcm = 1, |
| .be_id = MSM_BACKEND_DAI_MI2S_TX, |
| .be_hw_params_fixup = &mdm9625_mi2s_tx_be_hw_params_fixup, |
| .ops = &mdm9625_mi2s_be_ops, |
| }, |
| }; |
| |
| static struct snd_soc_card snd_soc_card_mdm9625 = { |
| .name = "mdm9625-taiko-i2s-snd-card", |
| .dai_link = mdm9625_dai, |
| .num_links = ARRAY_SIZE(mdm9625_dai), |
| }; |
| |
| static __devinit int mdm9625_asoc_machine_probe(struct platform_device *pdev) |
| { |
| int ret; |
| struct snd_soc_card *card = &snd_soc_card_mdm9625; |
| struct mdm9625_machine_data *pdata; |
| |
| mutex_init(&cdc_mclk_mutex); |
| gpio_enable = false; |
| cdc_mclk_init = false; |
| if (!pdev->dev.of_node) { |
| dev_err(&pdev->dev, "No platform supplied from device tree\n"); |
| return -EINVAL; |
| } |
| pdata = devm_kzalloc(&pdev->dev, sizeof(struct mdm9625_machine_data), |
| GFP_KERNEL); |
| if (!pdata) { |
| dev_err(&pdev->dev, "Can't allocate msm8974_asoc_mach_data\n"); |
| ret = -ENOMEM; |
| goto err; |
| } |
| card->dev = &pdev->dev; |
| platform_set_drvdata(pdev, card); |
| snd_soc_card_set_drvdata(card, pdata); |
| ret = snd_soc_of_parse_card_name(card, "qcom,model"); |
| if (ret) |
| goto err; |
| ret = snd_soc_of_parse_audio_routing(card, "qcom,audio-routing"); |
| if (ret) |
| goto err; |
| ret = of_property_read_u32(pdev->dev.of_node, |
| "qcom,taiko-mclk-clk-freq", |
| &pdata->mclk_freq); |
| if (ret) { |
| dev_err(&pdev->dev, |
| "Looking up %s property in node %s failed", |
| "qcom,taiko-mclk-clk-freq", |
| pdev->dev.of_node->full_name); |
| goto err; |
| } |
| /* At present only 12.288MHz is supported on MDM. */ |
| if (pdata->mclk_freq != MDM_MCLK_CLK_12P288MHZ) { |
| dev_err(&pdev->dev, "unsupported taiko mclk freq %u\n", |
| pdata->mclk_freq); |
| ret = -EINVAL; |
| goto err; |
| } |
| ret = snd_soc_register_card(card); |
| if (ret) { |
| dev_err(&pdev->dev, "snd_soc_register_card failed (%d)\n", |
| ret); |
| goto err; |
| } |
| return 0; |
| err: |
| devm_kfree(&pdev->dev, pdata); |
| return ret; |
| } |
| |
| static int __devexit mdm9625_asoc_machine_remove(struct platform_device *pdev) |
| { |
| struct snd_soc_card *card = platform_get_drvdata(pdev); |
| struct mdm9625_machine_data *pdata = snd_soc_card_get_drvdata(card); |
| pdata->mclk_freq = 0; |
| snd_soc_unregister_card(card); |
| return 0; |
| } |
| |
| static const struct of_device_id msm9625_asoc_machine_of_match[] = { |
| { .compatible = "qcom,mdm9625-audio-taiko", }, |
| {}, |
| }; |
| |
| static struct platform_driver msm9625_asoc_machine_driver = { |
| .driver = { |
| .name = MDM9625_MACHINE_DRV_NAME, |
| .owner = THIS_MODULE, |
| .pm = &snd_soc_pm_ops, |
| .of_match_table = msm9625_asoc_machine_of_match, |
| }, |
| .probe = mdm9625_asoc_machine_probe, |
| .remove = __devexit_p(mdm9625_asoc_machine_remove), |
| }; |
| |
| |
| module_platform_driver(msm9625_asoc_machine_driver); |
| |
| MODULE_DESCRIPTION("ALSA SoC msm"); |
| MODULE_LICENSE("GPL v2"); |
| MODULE_ALIAS("platform:" MDM9625_MACHINE_DRV_NAME); |
| MODULE_DEVICE_TABLE(of, msm9625_asoc_machine_of_match); |
| |