|
@@ -0,0 +1,1712 @@
|
|
|
|
+/* Copyright (c) 2018, 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/module.h>
|
|
|
|
+#include <linux/init.h>
|
|
|
|
+#include <linux/clk.h>
|
|
|
|
+#include <linux/io.h>
|
|
|
|
+#include <linux/platform_device.h>
|
|
|
|
+#include <linux/regmap.h>
|
|
|
|
+#include <sound/soc.h>
|
|
|
|
+#include <sound/soc-dapm.h>
|
|
|
|
+#include <sound/tlv.h>
|
|
|
|
+#include "bolero-cdc.h"
|
|
|
|
+#include "bolero-cdc-registers.h"
|
|
|
|
+#include "../msm-cdc-pinctrl.h"
|
|
|
|
+
|
|
|
|
+#define TX_MACRO_MAX_OFFSET 0x1000
|
|
|
|
+
|
|
|
|
+#define NUM_DECIMATORS 8
|
|
|
|
+
|
|
|
|
+#define TX_MACRO_RATES (SNDRV_PCM_RATE_8000 | SNDRV_PCM_RATE_16000 |\
|
|
|
|
+ SNDRV_PCM_RATE_32000 | SNDRV_PCM_RATE_48000 |\
|
|
|
|
+ SNDRV_PCM_RATE_96000 | SNDRV_PCM_RATE_192000)
|
|
|
|
+#define TX_MACRO_FORMATS (SNDRV_PCM_FMTBIT_S16_LE |\
|
|
|
|
+ SNDRV_PCM_FMTBIT_S24_LE |\
|
|
|
|
+ SNDRV_PCM_FMTBIT_S24_3LE)
|
|
|
|
+
|
|
|
|
+#define TX_HPF_CUT_OFF_FREQ_MASK 0x60
|
|
|
|
+#define CF_MIN_3DB_4HZ 0x0
|
|
|
|
+#define CF_MIN_3DB_75HZ 0x1
|
|
|
|
+#define CF_MIN_3DB_150HZ 0x2
|
|
|
|
+
|
|
|
|
+#define TX_MACRO_DMIC_SAMPLE_RATE_UNDEFINED 0
|
|
|
|
+#define TX_MACRO_MCLK_FREQ 9600000
|
|
|
|
+#define TX_MACRO_TX_PATH_OFFSET 0x80
|
|
|
|
+
|
|
|
|
+#define TX_MACRO_TX_UNMUTE_DELAY_MS 40
|
|
|
|
+
|
|
|
|
+static int tx_unmute_delay = TX_MACRO_TX_UNMUTE_DELAY_MS;
|
|
|
|
+module_param(tx_unmute_delay, int, 0664);
|
|
|
|
+MODULE_PARM_DESC(tx_unmute_delay, "delay to unmute the tx path");
|
|
|
|
+
|
|
|
|
+static const DECLARE_TLV_DB_SCALE(digital_gain, 0, 1, 0);
|
|
|
|
+
|
|
|
|
+static int tx_macro_hw_params(struct snd_pcm_substream *substream,
|
|
|
|
+ struct snd_pcm_hw_params *params,
|
|
|
|
+ struct snd_soc_dai *dai);
|
|
|
|
+static int tx_macro_get_channel_map(struct snd_soc_dai *dai,
|
|
|
|
+ unsigned int *tx_num, unsigned int *tx_slot,
|
|
|
|
+ unsigned int *rx_num, unsigned int *rx_slot);
|
|
|
|
+
|
|
|
|
+#define TX_MACRO_SWR_STRING_LEN 80
|
|
|
|
+#define TX_MACRO_CHILD_DEVICES_MAX 3
|
|
|
|
+
|
|
|
|
+/* Hold instance to soundwire platform device */
|
|
|
|
+struct tx_macro_swr_ctrl_data {
|
|
|
|
+ struct platform_device *tx_swr_pdev;
|
|
|
|
+};
|
|
|
|
+
|
|
|
|
+struct tx_macro_swr_ctrl_platform_data {
|
|
|
|
+ void *handle; /* holds codec private data */
|
|
|
|
+ int (*read)(void *handle, int reg);
|
|
|
|
+ int (*write)(void *handle, int reg, int val);
|
|
|
|
+ int (*bulk_write)(void *handle, u32 *reg, u32 *val, size_t len);
|
|
|
|
+ int (*clk)(void *handle, bool enable);
|
|
|
|
+ int (*handle_irq)(void *handle,
|
|
|
|
+ irqreturn_t (*swrm_irq_handler)(int irq,
|
|
|
|
+ void *data),
|
|
|
|
+ void *swrm_handle,
|
|
|
|
+ int action);
|
|
|
|
+};
|
|
|
|
+
|
|
|
|
+enum {
|
|
|
|
+ TX_MACRO_AIF1_CAP = 0,
|
|
|
|
+ TX_MACRO_AIF2_CAP,
|
|
|
|
+ TX_MACRO_MAX_DAIS
|
|
|
|
+};
|
|
|
|
+
|
|
|
|
+enum {
|
|
|
|
+ TX_MACRO_DEC0,
|
|
|
|
+ TX_MACRO_DEC1,
|
|
|
|
+ TX_MACRO_DEC2,
|
|
|
|
+ TX_MACRO_DEC3,
|
|
|
|
+ TX_MACRO_DEC4,
|
|
|
|
+ TX_MACRO_DEC5,
|
|
|
|
+ TX_MACRO_DEC6,
|
|
|
|
+ TX_MACRO_DEC7,
|
|
|
|
+ TX_MACRO_DEC_MAX,
|
|
|
|
+};
|
|
|
|
+
|
|
|
|
+enum {
|
|
|
|
+ TX_MACRO_CLK_DIV_2,
|
|
|
|
+ TX_MACRO_CLK_DIV_3,
|
|
|
|
+ TX_MACRO_CLK_DIV_4,
|
|
|
|
+ TX_MACRO_CLK_DIV_6,
|
|
|
|
+ TX_MACRO_CLK_DIV_8,
|
|
|
|
+ TX_MACRO_CLK_DIV_16,
|
|
|
|
+};
|
|
|
|
+
|
|
|
|
+struct tx_mute_work {
|
|
|
|
+ struct tx_macro_priv *tx_priv;
|
|
|
|
+ u32 decimator;
|
|
|
|
+ struct delayed_work dwork;
|
|
|
|
+};
|
|
|
|
+
|
|
|
|
+struct hpf_work {
|
|
|
|
+ struct tx_macro_priv *tx_priv;
|
|
|
|
+ u8 decimator;
|
|
|
|
+ u8 hpf_cut_off_freq;
|
|
|
|
+ struct delayed_work dwork;
|
|
|
|
+};
|
|
|
|
+
|
|
|
|
+struct tx_macro_priv {
|
|
|
|
+ struct device *dev;
|
|
|
|
+ bool dec_active[NUM_DECIMATORS];
|
|
|
|
+ int tx_mclk_users;
|
|
|
|
+ int swr_clk_users;
|
|
|
|
+ struct clk *tx_core_clk;
|
|
|
|
+ struct clk *tx_npl_clk;
|
|
|
|
+ struct mutex mclk_lock;
|
|
|
|
+ struct mutex swr_clk_lock;
|
|
|
|
+ struct snd_soc_codec *codec;
|
|
|
|
+ struct device_node *tx_swr_gpio_p;
|
|
|
|
+ struct tx_macro_swr_ctrl_data *swr_ctrl_data;
|
|
|
|
+ struct tx_macro_swr_ctrl_platform_data swr_plat_data;
|
|
|
|
+ struct work_struct tx_macro_add_child_devices_work;
|
|
|
|
+ struct hpf_work tx_hpf_work[NUM_DECIMATORS];
|
|
|
|
+ struct tx_mute_work tx_mute_dwork[NUM_DECIMATORS];
|
|
|
|
+ s32 dmic_0_1_clk_cnt;
|
|
|
|
+ s32 dmic_2_3_clk_cnt;
|
|
|
|
+ s32 dmic_4_5_clk_cnt;
|
|
|
|
+ s32 dmic_6_7_clk_cnt;
|
|
|
|
+ u16 dmic_clk_div;
|
|
|
|
+ unsigned long active_ch_mask[TX_MACRO_MAX_DAIS];
|
|
|
|
+ unsigned long active_ch_cnt[TX_MACRO_MAX_DAIS];
|
|
|
|
+ char __iomem *tx_io_base;
|
|
|
|
+ struct platform_device *pdev_child_devices
|
|
|
|
+ [TX_MACRO_CHILD_DEVICES_MAX];
|
|
|
|
+ int child_count;
|
|
|
|
+};
|
|
|
|
+
|
|
|
|
+static bool tx_macro_get_data(struct snd_soc_codec *codec,
|
|
|
|
+ struct device **tx_dev,
|
|
|
|
+ struct tx_macro_priv **tx_priv,
|
|
|
|
+ const char *func_name)
|
|
|
|
+{
|
|
|
|
+ *tx_dev = bolero_get_device_ptr(codec->dev, TX_MACRO);
|
|
|
|
+ if (!(*tx_dev)) {
|
|
|
|
+ dev_err(codec->dev,
|
|
|
|
+ "%s: null device for macro!\n", func_name);
|
|
|
|
+ return false;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ *tx_priv = dev_get_drvdata((*tx_dev));
|
|
|
|
+ if (!(*tx_priv)) {
|
|
|
|
+ dev_err(codec->dev,
|
|
|
|
+ "%s: priv is null for macro!\n", func_name);
|
|
|
|
+ return false;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ if (!(*tx_priv)->codec) {
|
|
|
|
+ dev_err(codec->dev,
|
|
|
|
+ "%s: tx_priv->codec not initialized!\n", func_name);
|
|
|
|
+ return false;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ return true;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+static int tx_macro_mclk_enable(struct tx_macro_priv *tx_priv,
|
|
|
|
+ bool mclk_enable)
|
|
|
|
+{
|
|
|
|
+ struct regmap *regmap = dev_get_regmap(tx_priv->dev->parent, NULL);
|
|
|
|
+ int ret = 0;
|
|
|
|
+
|
|
|
|
+ dev_dbg(tx_priv->dev, "%s: mclk_enable = %u, dapm = %d clk_users= %d\n",
|
|
|
|
+ __func__, mclk_enable, dapm, tx_priv->tx_mclk_users);
|
|
|
|
+
|
|
|
|
+ mutex_lock(&tx_priv->mclk_lock);
|
|
|
|
+ if (mclk_enable) {
|
|
|
|
+ if (tx_priv->tx_mclk_users == 0) {
|
|
|
|
+ ret = bolero_request_clock(tx_priv->dev,
|
|
|
|
+ TX_MACRO, MCLK_MUX0, true);
|
|
|
|
+ if (ret < 0) {
|
|
|
|
+ dev_err(tx_priv->dev,
|
|
|
|
+ "%s: request clock enable failed\n",
|
|
|
|
+ __func__);
|
|
|
|
+ goto exit;
|
|
|
|
+ }
|
|
|
|
+ regcache_mark_dirty(regmap);
|
|
|
|
+ regcache_sync_region(regmap,
|
|
|
|
+ TX_START_OFFSET,
|
|
|
|
+ TX_MAX_OFFSET);
|
|
|
|
+ /* 9.6MHz MCLK, set value 0x00 if other frequency */
|
|
|
|
+ regmap_update_bits(regmap,
|
|
|
|
+ BOLERO_CDC_TX_TOP_CSR_FREQ_MCLK, 0x01, 0x01);
|
|
|
|
+ regmap_update_bits(regmap,
|
|
|
|
+ BOLERO_CDC_TX_CLK_RST_CTRL_MCLK_CONTROL,
|
|
|
|
+ 0x01, 0x01);
|
|
|
|
+ regmap_update_bits(regmap,
|
|
|
|
+ BOLERO_CDC_TX_CLK_RST_CTRL_FS_CNT_CONTROL,
|
|
|
|
+ 0x01, 0x01);
|
|
|
|
+ }
|
|
|
|
+ tx_priv->tx_mclk_users++;
|
|
|
|
+ } else {
|
|
|
|
+ if (tx_priv->tx_mclk_users <= 0) {
|
|
|
|
+ dev_err(tx_priv->dev, "%s: clock already disabled\n",
|
|
|
|
+ __func__);
|
|
|
|
+ tx_priv->tx_mclk_users = 0;
|
|
|
|
+ goto exit;
|
|
|
|
+ }
|
|
|
|
+ tx_priv->tx_mclk_users--;
|
|
|
|
+ if (tx_priv->tx_mclk_users == 0) {
|
|
|
|
+ regmap_update_bits(regmap,
|
|
|
|
+ BOLERO_CDC_TX_CLK_RST_CTRL_FS_CNT_CONTROL,
|
|
|
|
+ 0x01, 0x00);
|
|
|
|
+ regmap_update_bits(regmap,
|
|
|
|
+ BOLERO_CDC_TX_CLK_RST_CTRL_MCLK_CONTROL,
|
|
|
|
+ 0x01, 0x00);
|
|
|
|
+ bolero_request_clock(tx_priv->dev,
|
|
|
|
+ TX_MACRO, MCLK_MUX0, false);
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+exit:
|
|
|
|
+ mutex_unlock(&tx_priv->mclk_lock);
|
|
|
|
+ return ret;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+static int tx_macro_mclk_event(struct snd_soc_dapm_widget *w,
|
|
|
|
+ struct snd_kcontrol *kcontrol, int event)
|
|
|
|
+{
|
|
|
|
+ struct snd_soc_codec *codec = snd_soc_dapm_to_codec(w->dapm);
|
|
|
|
+ int ret = 0;
|
|
|
|
+ struct device *tx_dev = NULL;
|
|
|
|
+ struct tx_macro_priv *tx_priv = NULL;
|
|
|
|
+
|
|
|
|
+ if (!tx_macro_get_data(codec, &tx_dev, &tx_priv, __func__))
|
|
|
|
+ return -EINVAL;
|
|
|
|
+
|
|
|
|
+ dev_dbg(tx_dev, "%s: event = %d\n", __func__, event);
|
|
|
|
+ switch (event) {
|
|
|
|
+ case SND_SOC_DAPM_PRE_PMU:
|
|
|
|
+ ret = tx_macro_mclk_enable(tx_priv, 1);
|
|
|
|
+ break;
|
|
|
|
+ case SND_SOC_DAPM_POST_PMD:
|
|
|
|
+ ret = tx_macro_mclk_enable(tx_priv, 0);
|
|
|
|
+ break;
|
|
|
|
+ default:
|
|
|
|
+ dev_err(tx_priv->dev,
|
|
|
|
+ "%s: invalid DAPM event %d\n", __func__, event);
|
|
|
|
+ ret = -EINVAL;
|
|
|
|
+ }
|
|
|
|
+ return ret;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+static int tx_macro_mclk_ctrl(struct device *dev, bool enable)
|
|
|
|
+{
|
|
|
|
+ struct tx_macro_priv *tx_priv = dev_get_drvdata(dev);
|
|
|
|
+ int ret = 0;
|
|
|
|
+
|
|
|
|
+ if (enable) {
|
|
|
|
+ ret = clk_prepare_enable(tx_priv->tx_core_clk);
|
|
|
|
+ if (ret < 0) {
|
|
|
|
+ dev_err(dev, "%s:tx mclk enable failed\n", __func__);
|
|
|
|
+ goto exit;
|
|
|
|
+ }
|
|
|
|
+ ret = clk_prepare_enable(tx_priv->tx_npl_clk);
|
|
|
|
+ if (ret < 0) {
|
|
|
|
+ dev_err(dev, "%s:tx npl_clk enable failed\n",
|
|
|
|
+ __func__);
|
|
|
|
+ clk_disable_unprepare(tx_priv->tx_core_clk);
|
|
|
|
+ goto exit;
|
|
|
|
+ }
|
|
|
|
+ } else {
|
|
|
|
+ clk_disable_unprepare(tx_priv->tx_npl_clk);
|
|
|
|
+ clk_disable_unprepare(tx_priv->tx_core_clk);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+exit:
|
|
|
|
+ return ret;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+static void tx_macro_tx_hpf_corner_freq_callback(struct work_struct *work)
|
|
|
|
+{
|
|
|
|
+ struct delayed_work *hpf_delayed_work = NULL;
|
|
|
|
+ struct hpf_work *hpf_work = NULL;
|
|
|
|
+ struct tx_macro_priv *tx_priv = NULL;
|
|
|
|
+ struct snd_soc_codec *codec = NULL;
|
|
|
|
+ u16 dec_cfg_reg = 0;
|
|
|
|
+ u8 hpf_cut_off_freq = 0;
|
|
|
|
+
|
|
|
|
+ hpf_delayed_work = to_delayed_work(work);
|
|
|
|
+ hpf_work = container_of(hpf_delayed_work, struct hpf_work, dwork);
|
|
|
|
+ tx_priv = hpf_work->tx_priv;
|
|
|
|
+ codec = tx_priv->codec;
|
|
|
|
+ hpf_cut_off_freq = hpf_work->hpf_cut_off_freq;
|
|
|
|
+
|
|
|
|
+ dec_cfg_reg = BOLERO_CDC_TX0_TX_PATH_CFG0 +
|
|
|
|
+ TX_MACRO_TX_PATH_OFFSET * hpf_work->decimator;
|
|
|
|
+
|
|
|
|
+ dev_dbg(codec->dev, "%s: decimator %u hpf_cut_of_freq 0x%x\n",
|
|
|
|
+ __func__, hpf_work->decimator, hpf_cut_off_freq);
|
|
|
|
+
|
|
|
|
+ snd_soc_update_bits(codec, dec_cfg_reg, TX_HPF_CUT_OFF_FREQ_MASK,
|
|
|
|
+ hpf_cut_off_freq << 5);
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+static void tx_macro_mute_update_callback(struct work_struct *work)
|
|
|
|
+{
|
|
|
|
+ struct tx_mute_work *tx_mute_dwork = NULL;
|
|
|
|
+ struct snd_soc_codec *codec = NULL;
|
|
|
|
+ struct tx_macro_priv *tx_priv = NULL;
|
|
|
|
+ struct delayed_work *delayed_work = NULL;
|
|
|
|
+ u16 tx_vol_ctl_reg = 0, hpf_gate_reg = 0;
|
|
|
|
+ u8 decimator = 0;
|
|
|
|
+
|
|
|
|
+ delayed_work = to_delayed_work(work);
|
|
|
|
+ tx_mute_dwork = container_of(delayed_work, struct tx_mute_work, dwork);
|
|
|
|
+ tx_priv = tx_mute_dwork->tx_priv;
|
|
|
|
+ codec = tx_priv->codec;
|
|
|
|
+ decimator = tx_mute_dwork->decimator;
|
|
|
|
+
|
|
|
|
+ tx_vol_ctl_reg =
|
|
|
|
+ BOLERO_CDC_TX0_TX_PATH_CTL +
|
|
|
|
+ TX_MACRO_TX_PATH_OFFSET * decimator;
|
|
|
|
+ hpf_gate_reg = BOLERO_CDC_TX0_TX_PATH_SEC2 +
|
|
|
|
+ TX_MACRO_TX_PATH_OFFSET * decimator;
|
|
|
|
+ snd_soc_update_bits(codec, hpf_gate_reg, 0x01, 0x01);
|
|
|
|
+ snd_soc_update_bits(codec, tx_vol_ctl_reg, 0x01, 0x00);
|
|
|
|
+ dev_dbg(tx_priv->dev, "%s: decimator %u unmute\n",
|
|
|
|
+ __func__, decimator);
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+static int tx_macro_put_dec_enum(struct snd_kcontrol *kcontrol,
|
|
|
|
+ struct snd_ctl_elem_value *ucontrol)
|
|
|
|
+{
|
|
|
|
+ struct snd_soc_dapm_widget *widget =
|
|
|
|
+ snd_soc_dapm_kcontrol_widget(kcontrol);
|
|
|
|
+ struct snd_soc_codec *codec = snd_soc_dapm_to_codec(widget->dapm);
|
|
|
|
+ struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
|
|
|
|
+ unsigned int val = 0;
|
|
|
|
+ u16 mic_sel_reg = 0;
|
|
|
|
+
|
|
|
|
+ val = ucontrol->value.enumerated.item[0];
|
|
|
|
+ if (val > e->items - 1)
|
|
|
|
+ return -EINVAL;
|
|
|
|
+
|
|
|
|
+ dev_dbg(codec->dev, "%s: wname: %s, val: 0x%x\n", __func__,
|
|
|
|
+ widget->name, val);
|
|
|
|
+
|
|
|
|
+ switch (e->reg) {
|
|
|
|
+ case BOLERO_CDC_TX_INP_MUX_ADC_MUX0_CFG0:
|
|
|
|
+ mic_sel_reg = BOLERO_CDC_TX0_TX_PATH_CFG0;
|
|
|
|
+ break;
|
|
|
|
+ case BOLERO_CDC_TX_INP_MUX_ADC_MUX1_CFG0:
|
|
|
|
+ mic_sel_reg = BOLERO_CDC_TX1_TX_PATH_CFG0;
|
|
|
|
+ break;
|
|
|
|
+ case BOLERO_CDC_TX_INP_MUX_ADC_MUX2_CFG0:
|
|
|
|
+ mic_sel_reg = BOLERO_CDC_TX2_TX_PATH_CFG0;
|
|
|
|
+ break;
|
|
|
|
+ case BOLERO_CDC_TX_INP_MUX_ADC_MUX3_CFG0:
|
|
|
|
+ mic_sel_reg = BOLERO_CDC_TX3_TX_PATH_CFG0;
|
|
|
|
+ break;
|
|
|
|
+ case BOLERO_CDC_TX_INP_MUX_ADC_MUX4_CFG0:
|
|
|
|
+ mic_sel_reg = BOLERO_CDC_TX4_TX_PATH_CFG0;
|
|
|
|
+ break;
|
|
|
|
+ case BOLERO_CDC_TX_INP_MUX_ADC_MUX5_CFG0:
|
|
|
|
+ mic_sel_reg = BOLERO_CDC_TX5_TX_PATH_CFG0;
|
|
|
|
+ break;
|
|
|
|
+ case BOLERO_CDC_TX_INP_MUX_ADC_MUX6_CFG0:
|
|
|
|
+ mic_sel_reg = BOLERO_CDC_TX6_TX_PATH_CFG0;
|
|
|
|
+ break;
|
|
|
|
+ case BOLERO_CDC_TX_INP_MUX_ADC_MUX7_CFG0:
|
|
|
|
+ mic_sel_reg = BOLERO_CDC_TX7_TX_PATH_CFG0;
|
|
|
|
+ break;
|
|
|
|
+ default:
|
|
|
|
+ dev_err(codec->dev, "%s: e->reg: 0x%x not expected\n",
|
|
|
|
+ __func__, e->reg);
|
|
|
|
+ return -EINVAL;
|
|
|
|
+ }
|
|
|
|
+ if (strnstr(widget->name, "smic", strlen(widget->name))) {
|
|
|
|
+ if (val != 0) {
|
|
|
|
+ if (val < 5)
|
|
|
|
+ snd_soc_update_bits(codec, mic_sel_reg,
|
|
|
|
+ 1 << 7, 0x0 << 7);
|
|
|
|
+ else
|
|
|
|
+ snd_soc_update_bits(codec, mic_sel_reg,
|
|
|
|
+ 1 << 7, 0x1 << 7);
|
|
|
|
+ }
|
|
|
|
+ } else {
|
|
|
|
+ /* DMIC selected */
|
|
|
|
+ if (val != 0)
|
|
|
|
+ snd_soc_update_bits(codec, mic_sel_reg, 1 << 7, 1 << 7);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ return snd_soc_dapm_put_enum_double(kcontrol, ucontrol);
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+static int tx_macro_tx_mixer_get(struct snd_kcontrol *kcontrol,
|
|
|
|
+ struct snd_ctl_elem_value *ucontrol)
|
|
|
|
+{
|
|
|
|
+ struct snd_soc_dapm_widget *widget =
|
|
|
|
+ snd_soc_dapm_kcontrol_widget(kcontrol);
|
|
|
|
+ struct snd_soc_codec *codec = snd_soc_dapm_to_codec(widget->dapm);
|
|
|
|
+ struct soc_multi_mixer_control *mixer =
|
|
|
|
+ ((struct soc_multi_mixer_control *)kcontrol->private_value);
|
|
|
|
+ u32 dai_id = widget->shift;
|
|
|
|
+ u32 dec_id = mixer->shift;
|
|
|
|
+ struct device *tx_dev = NULL;
|
|
|
|
+ struct tx_macro_priv *tx_priv = NULL;
|
|
|
|
+
|
|
|
|
+ if (!tx_macro_get_data(codec, &tx_dev, &tx_priv, __func__))
|
|
|
|
+ return -EINVAL;
|
|
|
|
+
|
|
|
|
+ if (test_bit(dec_id, &tx_priv->active_ch_mask[dai_id]))
|
|
|
|
+ ucontrol->value.integer.value[0] = 1;
|
|
|
|
+ else
|
|
|
|
+ ucontrol->value.integer.value[0] = 0;
|
|
|
|
+ return 0;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+static int tx_macro_tx_mixer_put(struct snd_kcontrol *kcontrol,
|
|
|
|
+ struct snd_ctl_elem_value *ucontrol)
|
|
|
|
+{
|
|
|
|
+ struct snd_soc_dapm_widget *widget =
|
|
|
|
+ snd_soc_dapm_kcontrol_widget(kcontrol);
|
|
|
|
+ struct snd_soc_codec *codec = snd_soc_dapm_to_codec(widget->dapm);
|
|
|
|
+ struct snd_soc_dapm_update *update = NULL;
|
|
|
|
+ struct soc_multi_mixer_control *mixer =
|
|
|
|
+ ((struct soc_multi_mixer_control *)kcontrol->private_value);
|
|
|
|
+ u32 dai_id = widget->shift;
|
|
|
|
+ u32 dec_id = mixer->shift;
|
|
|
|
+ u32 enable = ucontrol->value.integer.value[0];
|
|
|
|
+ struct device *tx_dev = NULL;
|
|
|
|
+ struct tx_macro_priv *tx_priv = NULL;
|
|
|
|
+
|
|
|
|
+ if (!tx_macro_get_data(codec, &tx_dev, &tx_priv, __func__))
|
|
|
|
+ return -EINVAL;
|
|
|
|
+
|
|
|
|
+ if (enable) {
|
|
|
|
+ set_bit(dec_id, &tx_priv->active_ch_mask[dai_id]);
|
|
|
|
+ tx_priv->active_ch_cnt[dai_id]++;
|
|
|
|
+ } else {
|
|
|
|
+ tx_priv->active_ch_cnt[dai_id]--;
|
|
|
|
+ clear_bit(dec_id, &tx_priv->active_ch_mask[dai_id]);
|
|
|
|
+ }
|
|
|
|
+ snd_soc_dapm_mixer_update_power(widget->dapm, kcontrol, enable, update);
|
|
|
|
+
|
|
|
|
+ return 0;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+static int tx_macro_enable_dmic(struct snd_soc_dapm_widget *w,
|
|
|
|
+ struct snd_kcontrol *kcontrol, int event)
|
|
|
|
+{
|
|
|
|
+ struct snd_soc_codec *codec = snd_soc_dapm_to_codec(w->dapm);
|
|
|
|
+ u8 dmic_clk_en = 0x01;
|
|
|
|
+ u16 dmic_clk_reg = 0;
|
|
|
|
+ s32 *dmic_clk_cnt = NULL;
|
|
|
|
+ unsigned int dmic = 0;
|
|
|
|
+ int ret = 0;
|
|
|
|
+ char *wname = NULL;
|
|
|
|
+ struct device *tx_dev = NULL;
|
|
|
|
+ struct tx_macro_priv *tx_priv = NULL;
|
|
|
|
+
|
|
|
|
+ if (!tx_macro_get_data(codec, &tx_dev, &tx_priv, __func__))
|
|
|
|
+ return -EINVAL;
|
|
|
|
+
|
|
|
|
+ wname = strpbrk(w->name, "01234567");
|
|
|
|
+ if (!wname) {
|
|
|
|
+ dev_err(codec->dev, "%s: widget not found\n", __func__);
|
|
|
|
+ return -EINVAL;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ ret = kstrtouint(wname, 10, &dmic);
|
|
|
|
+ if (ret < 0) {
|
|
|
|
+ dev_err(codec->dev, "%s: Invalid DMIC line on the codec\n",
|
|
|
|
+ __func__);
|
|
|
|
+ return -EINVAL;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ switch (dmic) {
|
|
|
|
+ case 0:
|
|
|
|
+ case 1:
|
|
|
|
+ dmic_clk_cnt = &(tx_priv->dmic_0_1_clk_cnt);
|
|
|
|
+ dmic_clk_reg = BOLERO_CDC_VA_TOP_CSR_DMIC0_CTL;
|
|
|
|
+ break;
|
|
|
|
+ case 2:
|
|
|
|
+ case 3:
|
|
|
|
+ dmic_clk_cnt = &(tx_priv->dmic_2_3_clk_cnt);
|
|
|
|
+ dmic_clk_reg = BOLERO_CDC_VA_TOP_CSR_DMIC1_CTL;
|
|
|
|
+ break;
|
|
|
|
+ case 4:
|
|
|
|
+ case 5:
|
|
|
|
+ dmic_clk_cnt = &(tx_priv->dmic_4_5_clk_cnt);
|
|
|
|
+ dmic_clk_reg = BOLERO_CDC_VA_TOP_CSR_DMIC2_CTL;
|
|
|
|
+ break;
|
|
|
|
+ case 6:
|
|
|
|
+ case 7:
|
|
|
|
+ dmic_clk_cnt = &(tx_priv->dmic_6_7_clk_cnt);
|
|
|
|
+ dmic_clk_reg = BOLERO_CDC_VA_TOP_CSR_DMIC3_CTL;
|
|
|
|
+ break;
|
|
|
|
+ default:
|
|
|
|
+ dev_err(codec->dev, "%s: Invalid DMIC Selection\n",
|
|
|
|
+ __func__);
|
|
|
|
+ return -EINVAL;
|
|
|
|
+ }
|
|
|
|
+ dev_dbg(codec->dev, "%s: event %d DMIC%d dmic_clk_cnt %d\n",
|
|
|
|
+ __func__, event, dmic, *dmic_clk_cnt);
|
|
|
|
+
|
|
|
|
+ switch (event) {
|
|
|
|
+ case SND_SOC_DAPM_PRE_PMU:
|
|
|
|
+ (*dmic_clk_cnt)++;
|
|
|
|
+ if (*dmic_clk_cnt == 1) {
|
|
|
|
+ snd_soc_update_bits(codec, dmic_clk_reg,
|
|
|
|
+ 0x0E, tx_priv->dmic_clk_div << 0x1);
|
|
|
|
+ snd_soc_update_bits(codec, dmic_clk_reg,
|
|
|
|
+ dmic_clk_en, dmic_clk_en);
|
|
|
|
+ }
|
|
|
|
+ break;
|
|
|
|
+ case SND_SOC_DAPM_POST_PMD:
|
|
|
|
+ (*dmic_clk_cnt)--;
|
|
|
|
+ if (*dmic_clk_cnt == 0)
|
|
|
|
+ snd_soc_update_bits(codec, dmic_clk_reg,
|
|
|
|
+ dmic_clk_en, 0);
|
|
|
|
+ break;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ return 0;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+static int tx_macro_enable_dec(struct snd_soc_dapm_widget *w,
|
|
|
|
+ struct snd_kcontrol *kcontrol, int event)
|
|
|
|
+{
|
|
|
|
+ struct snd_soc_codec *codec = snd_soc_dapm_to_codec(w->dapm);
|
|
|
|
+ unsigned int decimator = 0;
|
|
|
|
+ u16 tx_vol_ctl_reg = 0;
|
|
|
|
+ u16 dec_cfg_reg = 0;
|
|
|
|
+ u16 hpf_gate_reg = 0;
|
|
|
|
+ u16 tx_gain_ctl_reg = 0;
|
|
|
|
+ u8 hpf_cut_off_freq = 0;
|
|
|
|
+ struct device *tx_dev = NULL;
|
|
|
|
+ struct tx_macro_priv *tx_priv = NULL;
|
|
|
|
+
|
|
|
|
+ if (!tx_macro_get_data(codec, &tx_dev, &tx_priv, __func__))
|
|
|
|
+ return -EINVAL;
|
|
|
|
+
|
|
|
|
+ decimator = w->shift;
|
|
|
|
+
|
|
|
|
+ dev_dbg(codec->dev, "%s(): widget = %s decimator = %u\n", __func__,
|
|
|
|
+ w->name, decimator);
|
|
|
|
+
|
|
|
|
+ tx_vol_ctl_reg = BOLERO_CDC_TX0_TX_PATH_CTL +
|
|
|
|
+ TX_MACRO_TX_PATH_OFFSET * decimator;
|
|
|
|
+ hpf_gate_reg = BOLERO_CDC_TX0_TX_PATH_SEC2 +
|
|
|
|
+ TX_MACRO_TX_PATH_OFFSET * decimator;
|
|
|
|
+ dec_cfg_reg = BOLERO_CDC_TX0_TX_PATH_CFG0 +
|
|
|
|
+ TX_MACRO_TX_PATH_OFFSET * decimator;
|
|
|
|
+ tx_gain_ctl_reg = BOLERO_CDC_TX0_TX_VOL_CTL +
|
|
|
|
+ TX_MACRO_TX_PATH_OFFSET * decimator;
|
|
|
|
+
|
|
|
|
+ switch (event) {
|
|
|
|
+ case SND_SOC_DAPM_PRE_PMU:
|
|
|
|
+ hpf_cut_off_freq = (snd_soc_read(codec, dec_cfg_reg) &
|
|
|
|
+ TX_HPF_CUT_OFF_FREQ_MASK) >> 5;
|
|
|
|
+ tx_priv->tx_hpf_work[decimator].hpf_cut_off_freq =
|
|
|
|
+ hpf_cut_off_freq;
|
|
|
|
+
|
|
|
|
+ if (hpf_cut_off_freq != CF_MIN_3DB_150HZ)
|
|
|
|
+ snd_soc_update_bits(codec, dec_cfg_reg,
|
|
|
|
+ TX_HPF_CUT_OFF_FREQ_MASK,
|
|
|
|
+ CF_MIN_3DB_150HZ << 5);
|
|
|
|
+ /* Enable TX PGA Mute */
|
|
|
|
+ snd_soc_update_bits(codec, tx_vol_ctl_reg, 0x10, 0x10);
|
|
|
|
+ break;
|
|
|
|
+ case SND_SOC_DAPM_POST_PMU:
|
|
|
|
+ snd_soc_update_bits(codec, hpf_gate_reg, 0x01, 0x00);
|
|
|
|
+
|
|
|
|
+ /* schedule work queue to Remove Mute */
|
|
|
|
+ schedule_delayed_work(&tx_priv->tx_mute_dwork[decimator].dwork,
|
|
|
|
+ msecs_to_jiffies(tx_unmute_delay));
|
|
|
|
+ if (tx_priv->tx_hpf_work[decimator].hpf_cut_off_freq !=
|
|
|
|
+ CF_MIN_3DB_150HZ)
|
|
|
|
+ schedule_delayed_work(
|
|
|
|
+ &tx_priv->tx_hpf_work[decimator].dwork,
|
|
|
|
+ msecs_to_jiffies(300));
|
|
|
|
+ /* apply gain after decimator is enabled */
|
|
|
|
+ snd_soc_write(codec, tx_gain_ctl_reg,
|
|
|
|
+ snd_soc_read(codec, tx_gain_ctl_reg));
|
|
|
|
+ break;
|
|
|
|
+ case SND_SOC_DAPM_PRE_PMD:
|
|
|
|
+ hpf_cut_off_freq =
|
|
|
|
+ tx_priv->tx_hpf_work[decimator].hpf_cut_off_freq;
|
|
|
|
+ snd_soc_update_bits(codec, tx_vol_ctl_reg, 0x10, 0x10);
|
|
|
|
+ if (cancel_delayed_work_sync(
|
|
|
|
+ &tx_priv->tx_hpf_work[decimator].dwork)) {
|
|
|
|
+ if (hpf_cut_off_freq != CF_MIN_3DB_150HZ) {
|
|
|
|
+ snd_soc_update_bits(codec, dec_cfg_reg,
|
|
|
|
+ TX_HPF_CUT_OFF_FREQ_MASK,
|
|
|
|
+ hpf_cut_off_freq << 5);
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ cancel_delayed_work_sync(
|
|
|
|
+ &tx_priv->tx_mute_dwork[decimator].dwork);
|
|
|
|
+ break;
|
|
|
|
+ case SND_SOC_DAPM_POST_PMD:
|
|
|
|
+ snd_soc_update_bits(codec, tx_vol_ctl_reg, 0x10, 0x00);
|
|
|
|
+ break;
|
|
|
|
+ }
|
|
|
|
+ return 0;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+static int tx_macro_enable_micbias(struct snd_soc_dapm_widget *w,
|
|
|
|
+ struct snd_kcontrol *kcontrol, int event)
|
|
|
|
+{
|
|
|
|
+ return 0;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+static int tx_macro_hw_params(struct snd_pcm_substream *substream,
|
|
|
|
+ struct snd_pcm_hw_params *params,
|
|
|
|
+ struct snd_soc_dai *dai)
|
|
|
|
+{
|
|
|
|
+ int tx_fs_rate = -EINVAL;
|
|
|
|
+ struct snd_soc_codec *codec = dai->codec;
|
|
|
|
+ u32 decimator = 0;
|
|
|
|
+ u16 sample_rate = 0;
|
|
|
|
+ u16 tx_fs_reg = 0;
|
|
|
|
+ struct device *tx_dev = NULL;
|
|
|
|
+ struct tx_macro_priv *tx_priv = NULL;
|
|
|
|
+
|
|
|
|
+ if (!tx_macro_get_data(codec, &tx_dev, &tx_priv, __func__))
|
|
|
|
+ return -EINVAL;
|
|
|
|
+
|
|
|
|
+ pr_debug("%s: dai_name = %s DAI-ID %x rate %d num_ch %d\n", __func__,
|
|
|
|
+ dai->name, dai->id, params_rate(params),
|
|
|
|
+ params_channels(params));
|
|
|
|
+
|
|
|
|
+ sample_rate = params_rate(params);
|
|
|
|
+ switch (sample_rate) {
|
|
|
|
+ case 8000:
|
|
|
|
+ tx_fs_rate = 0;
|
|
|
|
+ break;
|
|
|
|
+ case 16000:
|
|
|
|
+ tx_fs_rate = 1;
|
|
|
|
+ break;
|
|
|
|
+ case 32000:
|
|
|
|
+ tx_fs_rate = 3;
|
|
|
|
+ break;
|
|
|
|
+ case 48000:
|
|
|
|
+ tx_fs_rate = 4;
|
|
|
|
+ break;
|
|
|
|
+ case 96000:
|
|
|
|
+ tx_fs_rate = 5;
|
|
|
|
+ break;
|
|
|
|
+ case 192000:
|
|
|
|
+ tx_fs_rate = 6;
|
|
|
|
+ break;
|
|
|
|
+ case 384000:
|
|
|
|
+ tx_fs_rate = 7;
|
|
|
|
+ break;
|
|
|
|
+ default:
|
|
|
|
+ dev_err(codec->dev, "%s: Invalid TX sample rate: %d\n",
|
|
|
|
+ __func__, params_rate(params));
|
|
|
|
+ return -EINVAL;
|
|
|
|
+ }
|
|
|
|
+ for_each_set_bit(decimator, &tx_priv->active_ch_mask[dai->id],
|
|
|
|
+ TX_MACRO_DEC_MAX) {
|
|
|
|
+ if (decimator >= 0) {
|
|
|
|
+ tx_fs_reg = BOLERO_CDC_TX0_TX_PATH_CTL +
|
|
|
|
+ TX_MACRO_TX_PATH_OFFSET * decimator;
|
|
|
|
+ dev_dbg(codec->dev, "%s: set DEC%u rate to %u\n",
|
|
|
|
+ __func__, decimator, sample_rate);
|
|
|
|
+ snd_soc_update_bits(codec, tx_fs_reg, 0x0F,
|
|
|
|
+ tx_fs_rate);
|
|
|
|
+ } else {
|
|
|
|
+ dev_err(codec->dev,
|
|
|
|
+ "%s: ERROR: Invalid decimator: %d\n",
|
|
|
|
+ __func__, decimator);
|
|
|
|
+ return -EINVAL;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ return 0;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+static int tx_macro_get_channel_map(struct snd_soc_dai *dai,
|
|
|
|
+ unsigned int *tx_num, unsigned int *tx_slot,
|
|
|
|
+ unsigned int *rx_num, unsigned int *rx_slot)
|
|
|
|
+{
|
|
|
|
+ struct snd_soc_codec *codec = dai->codec;
|
|
|
|
+ struct device *tx_dev = NULL;
|
|
|
|
+ struct tx_macro_priv *tx_priv = NULL;
|
|
|
|
+
|
|
|
|
+ if (!tx_macro_get_data(codec, &tx_dev, &tx_priv, __func__))
|
|
|
|
+ return -EINVAL;
|
|
|
|
+
|
|
|
|
+ switch (dai->id) {
|
|
|
|
+ case TX_MACRO_AIF1_CAP:
|
|
|
|
+ case TX_MACRO_AIF2_CAP:
|
|
|
|
+ *tx_slot = tx_priv->active_ch_mask[dai->id];
|
|
|
|
+ *tx_num = tx_priv->active_ch_cnt[dai->id];
|
|
|
|
+ break;
|
|
|
|
+ default:
|
|
|
|
+ dev_err(tx_dev, "%s: Invalid AIF\n", __func__);
|
|
|
|
+ break;
|
|
|
|
+ }
|
|
|
|
+ return 0;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+static struct snd_soc_dai_ops tx_macro_dai_ops = {
|
|
|
|
+ .hw_params = tx_macro_hw_params,
|
|
|
|
+ .get_channel_map = tx_macro_get_channel_map,
|
|
|
|
+};
|
|
|
|
+
|
|
|
|
+static struct snd_soc_dai_driver tx_macro_dai[] = {
|
|
|
|
+ {
|
|
|
|
+ .name = "tx_macro_tx1",
|
|
|
|
+ .id = TX_MACRO_AIF1_CAP,
|
|
|
|
+ .capture = {
|
|
|
|
+ .stream_name = "TX_AIF1 Capture",
|
|
|
|
+ .rates = TX_MACRO_RATES,
|
|
|
|
+ .formats = TX_MACRO_FORMATS,
|
|
|
|
+ .rate_max = 192000,
|
|
|
|
+ .rate_min = 8000,
|
|
|
|
+ .channels_min = 1,
|
|
|
|
+ .channels_max = 8,
|
|
|
|
+ },
|
|
|
|
+ .ops = &tx_macro_dai_ops,
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ .name = "tx_macro_tx2",
|
|
|
|
+ .id = TX_MACRO_AIF2_CAP,
|
|
|
|
+ .capture = {
|
|
|
|
+ .stream_name = "TX_AIF2 Capture",
|
|
|
|
+ .rates = TX_MACRO_RATES,
|
|
|
|
+ .formats = TX_MACRO_FORMATS,
|
|
|
|
+ .rate_max = 192000,
|
|
|
|
+ .rate_min = 8000,
|
|
|
|
+ .channels_min = 1,
|
|
|
|
+ .channels_max = 8,
|
|
|
|
+ },
|
|
|
|
+ .ops = &tx_macro_dai_ops,
|
|
|
|
+ },
|
|
|
|
+};
|
|
|
|
+
|
|
|
|
+#define STRING(name) #name
|
|
|
|
+#define TX_MACRO_DAPM_ENUM(name, reg, offset, text) \
|
|
|
|
+static SOC_ENUM_SINGLE_DECL(name##_enum, reg, offset, text); \
|
|
|
|
+static const struct snd_kcontrol_new name##_mux = \
|
|
|
|
+ SOC_DAPM_ENUM(STRING(name), name##_enum)
|
|
|
|
+
|
|
|
|
+#define TX_MACRO_DAPM_ENUM_EXT(name, reg, offset, text, getname, putname) \
|
|
|
|
+static SOC_ENUM_SINGLE_DECL(name##_enum, reg, offset, text); \
|
|
|
|
+static const struct snd_kcontrol_new name##_mux = \
|
|
|
|
+ SOC_DAPM_ENUM_EXT(STRING(name), name##_enum, getname, putname)
|
|
|
|
+
|
|
|
|
+#define TX_MACRO_DAPM_MUX(name, shift, kctl) \
|
|
|
|
+ SND_SOC_DAPM_MUX(name, SND_SOC_NOPM, shift, 0, &kctl##_mux)
|
|
|
|
+
|
|
|
|
+static const char * const adc_mux_text[] = {
|
|
|
|
+ "MSM_DMIC", "SWR_MIC", "ANC_FB_TUNE1"
|
|
|
|
+};
|
|
|
|
+
|
|
|
|
+TX_MACRO_DAPM_ENUM(tx_dec0, BOLERO_CDC_TX_INP_MUX_ADC_MUX0_CFG1,
|
|
|
|
+ 0, adc_mux_text);
|
|
|
|
+TX_MACRO_DAPM_ENUM(tx_dec1, BOLERO_CDC_TX_INP_MUX_ADC_MUX1_CFG1,
|
|
|
|
+ 0, adc_mux_text);
|
|
|
|
+TX_MACRO_DAPM_ENUM(tx_dec2, BOLERO_CDC_TX_INP_MUX_ADC_MUX2_CFG1,
|
|
|
|
+ 0, adc_mux_text);
|
|
|
|
+TX_MACRO_DAPM_ENUM(tx_dec3, BOLERO_CDC_TX_INP_MUX_ADC_MUX3_CFG1,
|
|
|
|
+ 0, adc_mux_text);
|
|
|
|
+TX_MACRO_DAPM_ENUM(tx_dec4, BOLERO_CDC_TX_INP_MUX_ADC_MUX4_CFG1,
|
|
|
|
+ 0, adc_mux_text);
|
|
|
|
+TX_MACRO_DAPM_ENUM(tx_dec5, BOLERO_CDC_TX_INP_MUX_ADC_MUX5_CFG1,
|
|
|
|
+ 0, adc_mux_text);
|
|
|
|
+TX_MACRO_DAPM_ENUM(tx_dec6, BOLERO_CDC_TX_INP_MUX_ADC_MUX6_CFG1,
|
|
|
|
+ 0, adc_mux_text);
|
|
|
|
+TX_MACRO_DAPM_ENUM(tx_dec7, BOLERO_CDC_TX_INP_MUX_ADC_MUX7_CFG1,
|
|
|
|
+ 0, adc_mux_text);
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+static const char * const dmic_mux_text[] = {
|
|
|
|
+ "ZERO", "DMIC0", "DMIC1", "DMIC2", "DMIC3",
|
|
|
|
+ "DMIC4", "DMIC5", "DMIC6", "DMIC7"
|
|
|
|
+};
|
|
|
|
+
|
|
|
|
+TX_MACRO_DAPM_ENUM_EXT(tx_dmic0, BOLERO_CDC_TX_INP_MUX_ADC_MUX0_CFG0,
|
|
|
|
+ 4, dmic_mux_text, snd_soc_dapm_get_enum_double,
|
|
|
|
+ tx_macro_put_dec_enum);
|
|
|
|
+
|
|
|
|
+TX_MACRO_DAPM_ENUM_EXT(tx_dmic1, BOLERO_CDC_TX_INP_MUX_ADC_MUX1_CFG0,
|
|
|
|
+ 4, dmic_mux_text, snd_soc_dapm_get_enum_double,
|
|
|
|
+ tx_macro_put_dec_enum);
|
|
|
|
+
|
|
|
|
+TX_MACRO_DAPM_ENUM_EXT(tx_dmic2, BOLERO_CDC_TX_INP_MUX_ADC_MUX2_CFG0,
|
|
|
|
+ 4, dmic_mux_text, snd_soc_dapm_get_enum_double,
|
|
|
|
+ tx_macro_put_dec_enum);
|
|
|
|
+
|
|
|
|
+TX_MACRO_DAPM_ENUM_EXT(tx_dmic3, BOLERO_CDC_TX_INP_MUX_ADC_MUX3_CFG0,
|
|
|
|
+ 4, dmic_mux_text, snd_soc_dapm_get_enum_double,
|
|
|
|
+ tx_macro_put_dec_enum);
|
|
|
|
+
|
|
|
|
+TX_MACRO_DAPM_ENUM_EXT(tx_dmic4, BOLERO_CDC_TX_INP_MUX_ADC_MUX4_CFG0,
|
|
|
|
+ 4, dmic_mux_text, snd_soc_dapm_get_enum_double,
|
|
|
|
+ tx_macro_put_dec_enum);
|
|
|
|
+
|
|
|
|
+TX_MACRO_DAPM_ENUM_EXT(tx_dmic5, BOLERO_CDC_TX_INP_MUX_ADC_MUX5_CFG0,
|
|
|
|
+ 4, dmic_mux_text, snd_soc_dapm_get_enum_double,
|
|
|
|
+ tx_macro_put_dec_enum);
|
|
|
|
+
|
|
|
|
+TX_MACRO_DAPM_ENUM_EXT(tx_dmic6, BOLERO_CDC_TX_INP_MUX_ADC_MUX6_CFG0,
|
|
|
|
+ 4, dmic_mux_text, snd_soc_dapm_get_enum_double,
|
|
|
|
+ tx_macro_put_dec_enum);
|
|
|
|
+
|
|
|
|
+TX_MACRO_DAPM_ENUM_EXT(tx_dmic7, BOLERO_CDC_TX_INP_MUX_ADC_MUX7_CFG0,
|
|
|
|
+ 4, dmic_mux_text, snd_soc_dapm_get_enum_double,
|
|
|
|
+ tx_macro_put_dec_enum);
|
|
|
|
+
|
|
|
|
+static const char * const smic_mux_text[] = {
|
|
|
|
+ "ZERO", "ADC0", "ADC1", "ADC2", "ADC3",
|
|
|
|
+ "SWR_DMIC0", "SWR_DMIC1", "SWR_DMIC2", "SWR_DMIC3",
|
|
|
|
+ "SWR_DMIC4", "SWR_DMIC5", "SWR_DMIC6", "SWR_DMIC7"
|
|
|
|
+};
|
|
|
|
+
|
|
|
|
+TX_MACRO_DAPM_ENUM_EXT(tx_smic0, BOLERO_CDC_TX_INP_MUX_ADC_MUX0_CFG0,
|
|
|
|
+ 0, smic_mux_text, snd_soc_dapm_get_enum_double,
|
|
|
|
+ tx_macro_put_dec_enum);
|
|
|
|
+
|
|
|
|
+TX_MACRO_DAPM_ENUM_EXT(tx_smic1, BOLERO_CDC_TX_INP_MUX_ADC_MUX1_CFG0,
|
|
|
|
+ 0, smic_mux_text, snd_soc_dapm_get_enum_double,
|
|
|
|
+ tx_macro_put_dec_enum);
|
|
|
|
+
|
|
|
|
+TX_MACRO_DAPM_ENUM_EXT(tx_smic2, BOLERO_CDC_TX_INP_MUX_ADC_MUX2_CFG0,
|
|
|
|
+ 0, smic_mux_text, snd_soc_dapm_get_enum_double,
|
|
|
|
+ tx_macro_put_dec_enum);
|
|
|
|
+
|
|
|
|
+TX_MACRO_DAPM_ENUM_EXT(tx_smic3, BOLERO_CDC_TX_INP_MUX_ADC_MUX3_CFG0,
|
|
|
|
+ 0, smic_mux_text, snd_soc_dapm_get_enum_double,
|
|
|
|
+ tx_macro_put_dec_enum);
|
|
|
|
+
|
|
|
|
+TX_MACRO_DAPM_ENUM_EXT(tx_smic4, BOLERO_CDC_TX_INP_MUX_ADC_MUX4_CFG0,
|
|
|
|
+ 0, smic_mux_text, snd_soc_dapm_get_enum_double,
|
|
|
|
+ tx_macro_put_dec_enum);
|
|
|
|
+
|
|
|
|
+TX_MACRO_DAPM_ENUM_EXT(tx_smic5, BOLERO_CDC_TX_INP_MUX_ADC_MUX5_CFG0,
|
|
|
|
+ 0, smic_mux_text, snd_soc_dapm_get_enum_double,
|
|
|
|
+ tx_macro_put_dec_enum);
|
|
|
|
+
|
|
|
|
+TX_MACRO_DAPM_ENUM_EXT(tx_smic6, BOLERO_CDC_TX_INP_MUX_ADC_MUX6_CFG0,
|
|
|
|
+ 0, smic_mux_text, snd_soc_dapm_get_enum_double,
|
|
|
|
+ tx_macro_put_dec_enum);
|
|
|
|
+
|
|
|
|
+TX_MACRO_DAPM_ENUM_EXT(tx_smic7, BOLERO_CDC_TX_INP_MUX_ADC_MUX7_CFG0,
|
|
|
|
+ 0, smic_mux_text, snd_soc_dapm_get_enum_double,
|
|
|
|
+ tx_macro_put_dec_enum);
|
|
|
|
+
|
|
|
|
+static const struct snd_kcontrol_new tx_aif1_cap_mixer[] = {
|
|
|
|
+ SOC_SINGLE_EXT("DEC0", SND_SOC_NOPM, TX_MACRO_DEC0, 1, 0,
|
|
|
|
+ tx_macro_tx_mixer_get, tx_macro_tx_mixer_put),
|
|
|
|
+ SOC_SINGLE_EXT("DEC1", SND_SOC_NOPM, TX_MACRO_DEC1, 1, 0,
|
|
|
|
+ tx_macro_tx_mixer_get, tx_macro_tx_mixer_put),
|
|
|
|
+ SOC_SINGLE_EXT("DEC2", SND_SOC_NOPM, TX_MACRO_DEC2, 1, 0,
|
|
|
|
+ tx_macro_tx_mixer_get, tx_macro_tx_mixer_put),
|
|
|
|
+ SOC_SINGLE_EXT("DEC3", SND_SOC_NOPM, TX_MACRO_DEC3, 1, 0,
|
|
|
|
+ tx_macro_tx_mixer_get, tx_macro_tx_mixer_put),
|
|
|
|
+ SOC_SINGLE_EXT("DEC4", SND_SOC_NOPM, TX_MACRO_DEC4, 1, 0,
|
|
|
|
+ tx_macro_tx_mixer_get, tx_macro_tx_mixer_put),
|
|
|
|
+ SOC_SINGLE_EXT("DEC5", SND_SOC_NOPM, TX_MACRO_DEC5, 1, 0,
|
|
|
|
+ tx_macro_tx_mixer_get, tx_macro_tx_mixer_put),
|
|
|
|
+ SOC_SINGLE_EXT("DEC6", SND_SOC_NOPM, TX_MACRO_DEC6, 1, 0,
|
|
|
|
+ tx_macro_tx_mixer_get, tx_macro_tx_mixer_put),
|
|
|
|
+ SOC_SINGLE_EXT("DEC7", SND_SOC_NOPM, TX_MACRO_DEC7, 1, 0,
|
|
|
|
+ tx_macro_tx_mixer_get, tx_macro_tx_mixer_put),
|
|
|
|
+};
|
|
|
|
+
|
|
|
|
+static const struct snd_kcontrol_new tx_aif2_cap_mixer[] = {
|
|
|
|
+ SOC_SINGLE_EXT("DEC0", SND_SOC_NOPM, TX_MACRO_DEC0, 1, 0,
|
|
|
|
+ tx_macro_tx_mixer_get, tx_macro_tx_mixer_put),
|
|
|
|
+ SOC_SINGLE_EXT("DEC1", SND_SOC_NOPM, TX_MACRO_DEC1, 1, 0,
|
|
|
|
+ tx_macro_tx_mixer_get, tx_macro_tx_mixer_put),
|
|
|
|
+ SOC_SINGLE_EXT("DEC2", SND_SOC_NOPM, TX_MACRO_DEC2, 1, 0,
|
|
|
|
+ tx_macro_tx_mixer_get, tx_macro_tx_mixer_put),
|
|
|
|
+ SOC_SINGLE_EXT("DEC3", SND_SOC_NOPM, TX_MACRO_DEC3, 1, 0,
|
|
|
|
+ tx_macro_tx_mixer_get, tx_macro_tx_mixer_put),
|
|
|
|
+ SOC_SINGLE_EXT("DEC4", SND_SOC_NOPM, TX_MACRO_DEC4, 1, 0,
|
|
|
|
+ tx_macro_tx_mixer_get, tx_macro_tx_mixer_put),
|
|
|
|
+ SOC_SINGLE_EXT("DEC5", SND_SOC_NOPM, TX_MACRO_DEC5, 1, 0,
|
|
|
|
+ tx_macro_tx_mixer_get, tx_macro_tx_mixer_put),
|
|
|
|
+ SOC_SINGLE_EXT("DEC6", SND_SOC_NOPM, TX_MACRO_DEC6, 1, 0,
|
|
|
|
+ tx_macro_tx_mixer_get, tx_macro_tx_mixer_put),
|
|
|
|
+ SOC_SINGLE_EXT("DEC7", SND_SOC_NOPM, TX_MACRO_DEC7, 1, 0,
|
|
|
|
+ tx_macro_tx_mixer_get, tx_macro_tx_mixer_put),
|
|
|
|
+};
|
|
|
|
+
|
|
|
|
+static const struct snd_soc_dapm_widget tx_macro_dapm_widgets[] = {
|
|
|
|
+ SND_SOC_DAPM_AIF_OUT("TX_AIF1 CAP", "TX_AIF1 Capture", 0,
|
|
|
|
+ SND_SOC_NOPM, TX_MACRO_AIF1_CAP, 0),
|
|
|
|
+
|
|
|
|
+ SND_SOC_DAPM_AIF_OUT("TX_AIF2 CAP", "TX_AIF2 Capture", 0,
|
|
|
|
+ SND_SOC_NOPM, TX_MACRO_AIF2_CAP, 0),
|
|
|
|
+
|
|
|
|
+ SND_SOC_DAPM_MIXER("TX_AIF1_CAP Mixer", SND_SOC_NOPM, TX_MACRO_AIF1_CAP, 0,
|
|
|
|
+ tx_aif1_cap_mixer, ARRAY_SIZE(tx_aif1_cap_mixer)),
|
|
|
|
+
|
|
|
|
+ SND_SOC_DAPM_MIXER("TX_AIF2_CAP Mixer", SND_SOC_NOPM, TX_MACRO_AIF2_CAP, 0,
|
|
|
|
+ tx_aif2_cap_mixer, ARRAY_SIZE(tx_aif2_cap_mixer)),
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ TX_MACRO_DAPM_MUX("TX DMIC MUX0", 0, tx_dmic0),
|
|
|
|
+ TX_MACRO_DAPM_MUX("TX DMIC MUX1", 0, tx_dmic1),
|
|
|
|
+ TX_MACRO_DAPM_MUX("TX DMIC MUX2", 0, tx_dmic2),
|
|
|
|
+ TX_MACRO_DAPM_MUX("TX DMIC MUX3", 0, tx_dmic3),
|
|
|
|
+ TX_MACRO_DAPM_MUX("TX DMIC MUX4", 0, tx_dmic4),
|
|
|
|
+ TX_MACRO_DAPM_MUX("TX DMIC MUX5", 0, tx_dmic5),
|
|
|
|
+ TX_MACRO_DAPM_MUX("TX DMIC MUX6", 0, tx_dmic6),
|
|
|
|
+ TX_MACRO_DAPM_MUX("TX DMIC MUX7", 0, tx_dmic7),
|
|
|
|
+
|
|
|
|
+ TX_MACRO_DAPM_MUX("TX SMIC MUX0", 0, tx_smic0),
|
|
|
|
+ TX_MACRO_DAPM_MUX("TX SMIC MUX1", 0, tx_smic1),
|
|
|
|
+ TX_MACRO_DAPM_MUX("TX SMIC MUX2", 0, tx_smic2),
|
|
|
|
+ TX_MACRO_DAPM_MUX("TX SMIC MUX3", 0, tx_smic3),
|
|
|
|
+ TX_MACRO_DAPM_MUX("TX SMIC MUX4", 0, tx_smic4),
|
|
|
|
+ TX_MACRO_DAPM_MUX("TX SMIC MUX5", 0, tx_smic5),
|
|
|
|
+ TX_MACRO_DAPM_MUX("TX SMIC MUX6", 0, tx_smic6),
|
|
|
|
+ TX_MACRO_DAPM_MUX("TX SMIC MUX7", 0, tx_smic7),
|
|
|
|
+
|
|
|
|
+ SND_SOC_DAPM_MICBIAS_E("TX MIC BIAS1", SND_SOC_NOPM, 0, 0,
|
|
|
|
+ tx_macro_enable_micbias,
|
|
|
|
+ SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMD),
|
|
|
|
+ SND_SOC_DAPM_ADC_E("TX DMIC0", NULL, SND_SOC_NOPM, 0, 0,
|
|
|
|
+ tx_macro_enable_dmic, SND_SOC_DAPM_PRE_PMU |
|
|
|
|
+ SND_SOC_DAPM_POST_PMD),
|
|
|
|
+
|
|
|
|
+ SND_SOC_DAPM_ADC_E("TX DMIC1", NULL, SND_SOC_NOPM, 0, 0,
|
|
|
|
+ tx_macro_enable_dmic, SND_SOC_DAPM_PRE_PMU |
|
|
|
|
+ SND_SOC_DAPM_POST_PMD),
|
|
|
|
+
|
|
|
|
+ SND_SOC_DAPM_ADC_E("TX DMIC2", NULL, SND_SOC_NOPM, 0, 0,
|
|
|
|
+ tx_macro_enable_dmic, SND_SOC_DAPM_PRE_PMU |
|
|
|
|
+ SND_SOC_DAPM_POST_PMD),
|
|
|
|
+
|
|
|
|
+ SND_SOC_DAPM_ADC_E("TX DMIC3", NULL, SND_SOC_NOPM, 0, 0,
|
|
|
|
+ tx_macro_enable_dmic, SND_SOC_DAPM_PRE_PMU |
|
|
|
|
+ SND_SOC_DAPM_POST_PMD),
|
|
|
|
+
|
|
|
|
+ SND_SOC_DAPM_ADC_E("TX DMIC4", NULL, SND_SOC_NOPM, 0, 0,
|
|
|
|
+ tx_macro_enable_dmic, SND_SOC_DAPM_PRE_PMU |
|
|
|
|
+ SND_SOC_DAPM_POST_PMD),
|
|
|
|
+
|
|
|
|
+ SND_SOC_DAPM_ADC_E("TX DMIC5", NULL, SND_SOC_NOPM, 0, 0,
|
|
|
|
+ tx_macro_enable_dmic, SND_SOC_DAPM_PRE_PMU |
|
|
|
|
+ SND_SOC_DAPM_POST_PMD),
|
|
|
|
+
|
|
|
|
+ SND_SOC_DAPM_ADC_E("TX DMIC6", NULL, SND_SOC_NOPM, 0, 0,
|
|
|
|
+ tx_macro_enable_dmic, SND_SOC_DAPM_PRE_PMU |
|
|
|
|
+ SND_SOC_DAPM_POST_PMD),
|
|
|
|
+
|
|
|
|
+ SND_SOC_DAPM_ADC_E("TX DMIC7", NULL, SND_SOC_NOPM, 0, 0,
|
|
|
|
+ tx_macro_enable_dmic, SND_SOC_DAPM_PRE_PMU |
|
|
|
|
+ SND_SOC_DAPM_POST_PMD),
|
|
|
|
+
|
|
|
|
+ SND_SOC_DAPM_INPUT("TX SWR_ADC0"),
|
|
|
|
+ SND_SOC_DAPM_INPUT("TX SWR_ADC1"),
|
|
|
|
+ SND_SOC_DAPM_INPUT("TX SWR_ADC2"),
|
|
|
|
+ SND_SOC_DAPM_INPUT("TX SWR_ADC3"),
|
|
|
|
+ SND_SOC_DAPM_INPUT("TX SWR_DMIC0"),
|
|
|
|
+ SND_SOC_DAPM_INPUT("TX SWR_DMIC1"),
|
|
|
|
+ SND_SOC_DAPM_INPUT("TX SWR_DMIC2"),
|
|
|
|
+ SND_SOC_DAPM_INPUT("TX SWR_DMIC3"),
|
|
|
|
+ SND_SOC_DAPM_INPUT("TX SWR_DMIC4"),
|
|
|
|
+ SND_SOC_DAPM_INPUT("TX SWR_DMIC5"),
|
|
|
|
+ SND_SOC_DAPM_INPUT("TX SWR_DMIC6"),
|
|
|
|
+ SND_SOC_DAPM_INPUT("TX SWR_DMIC7"),
|
|
|
|
+
|
|
|
|
+ SND_SOC_DAPM_MUX_E("TX DEC0 MUX", BOLERO_CDC_TX0_TX_PATH_CTL,
|
|
|
|
+ TX_MACRO_DEC0, 0,
|
|
|
|
+ &tx_dec0_mux, tx_macro_enable_dec,
|
|
|
|
+ SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMU |
|
|
|
|
+ SND_SOC_DAPM_PRE_PMD | SND_SOC_DAPM_POST_PMD),
|
|
|
|
+
|
|
|
|
+ SND_SOC_DAPM_MUX_E("TX DEC1 MUX", BOLERO_CDC_TX1_TX_PATH_CTL,
|
|
|
|
+ TX_MACRO_DEC1, 0,
|
|
|
|
+ &tx_dec1_mux, tx_macro_enable_dec,
|
|
|
|
+ SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMU |
|
|
|
|
+ SND_SOC_DAPM_PRE_PMD | SND_SOC_DAPM_POST_PMD),
|
|
|
|
+
|
|
|
|
+ SND_SOC_DAPM_MUX_E("TX DEC2 MUX", BOLERO_CDC_TX2_TX_PATH_CTL,
|
|
|
|
+ TX_MACRO_DEC2, 0,
|
|
|
|
+ &tx_dec2_mux, tx_macro_enable_dec,
|
|
|
|
+ SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMU |
|
|
|
|
+ SND_SOC_DAPM_PRE_PMD | SND_SOC_DAPM_POST_PMD),
|
|
|
|
+
|
|
|
|
+ SND_SOC_DAPM_MUX_E("TX DEC3 MUX", BOLERO_CDC_TX3_TX_PATH_CTL,
|
|
|
|
+ TX_MACRO_DEC3, 0,
|
|
|
|
+ &tx_dec3_mux, tx_macro_enable_dec,
|
|
|
|
+ SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMU |
|
|
|
|
+ SND_SOC_DAPM_PRE_PMD | SND_SOC_DAPM_POST_PMD),
|
|
|
|
+
|
|
|
|
+ SND_SOC_DAPM_MUX_E("TX DEC4 MUX", BOLERO_CDC_TX4_TX_PATH_CTL,
|
|
|
|
+ TX_MACRO_DEC4, 0,
|
|
|
|
+ &tx_dec4_mux, tx_macro_enable_dec,
|
|
|
|
+ SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMU |
|
|
|
|
+ SND_SOC_DAPM_PRE_PMD | SND_SOC_DAPM_POST_PMD),
|
|
|
|
+
|
|
|
|
+ SND_SOC_DAPM_MUX_E("TX DEC5 MUX", BOLERO_CDC_TX5_TX_PATH_CTL,
|
|
|
|
+ TX_MACRO_DEC5, 0,
|
|
|
|
+ &tx_dec5_mux, tx_macro_enable_dec,
|
|
|
|
+ SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMU |
|
|
|
|
+ SND_SOC_DAPM_PRE_PMD | SND_SOC_DAPM_POST_PMD),
|
|
|
|
+
|
|
|
|
+ SND_SOC_DAPM_MUX_E("TX DEC6 MUX", BOLERO_CDC_TX6_TX_PATH_CTL,
|
|
|
|
+ TX_MACRO_DEC6, 0,
|
|
|
|
+ &tx_dec6_mux, tx_macro_enable_dec,
|
|
|
|
+ SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMU |
|
|
|
|
+ SND_SOC_DAPM_PRE_PMD | SND_SOC_DAPM_POST_PMD),
|
|
|
|
+
|
|
|
|
+ SND_SOC_DAPM_MUX_E("TX DEC7 MUX", BOLERO_CDC_TX7_TX_PATH_CTL,
|
|
|
|
+ TX_MACRO_DEC7, 0,
|
|
|
|
+ &tx_dec7_mux, tx_macro_enable_dec,
|
|
|
|
+ SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMU |
|
|
|
|
+ SND_SOC_DAPM_PRE_PMD | SND_SOC_DAPM_POST_PMD),
|
|
|
|
+
|
|
|
|
+ SND_SOC_DAPM_SUPPLY_S("TX_MCLK", 0, SND_SOC_NOPM, 0, 0,
|
|
|
|
+ tx_macro_mclk_event, SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMD),
|
|
|
|
+};
|
|
|
|
+
|
|
|
|
+static const struct snd_soc_dapm_route tx_audio_map[] = {
|
|
|
|
+ {"TX_AIF1 CAP", NULL, "TX_MCLK"},
|
|
|
|
+ {"TX_AIF2 CAP", NULL, "TX_MCLK"},
|
|
|
|
+
|
|
|
|
+ {"TX_AIF1 CAP", NULL, "TX_AIF1_CAP Mixer"},
|
|
|
|
+ {"TX_AIF2 CAP", NULL, "TX_AIF2_CAP Mixer"},
|
|
|
|
+
|
|
|
|
+ {"TX_AIF1_CAP Mixer", "DEC0", "TX DEC0 MUX"},
|
|
|
|
+ {"TX_AIF1_CAP Mixer", "DEC1", "TX DEC1 MUX"},
|
|
|
|
+ {"TX_AIF1_CAP Mixer", "DEC2", "TX DEC2 MUX"},
|
|
|
|
+ {"TX_AIF1_CAP Mixer", "DEC3", "TX DEC3 MUX"},
|
|
|
|
+ {"TX_AIF1_CAP Mixer", "DEC4", "TX DEC4 MUX"},
|
|
|
|
+ {"TX_AIF1_CAP Mixer", "DEC5", "TX DEC5 MUX"},
|
|
|
|
+ {"TX_AIF1_CAP Mixer", "DEC6", "TX DEC6 MUX"},
|
|
|
|
+ {"TX_AIF1_CAP Mixer", "DEC7", "TX DEC7 MUX"},
|
|
|
|
+
|
|
|
|
+ {"TX_AIF2_CAP Mixer", "DEC0", "TX DEC0 MUX"},
|
|
|
|
+ {"TX_AIF2_CAP Mixer", "DEC1", "TX DEC1 MUX"},
|
|
|
|
+ {"TX_AIF2_CAP Mixer", "DEC2", "TX DEC2 MUX"},
|
|
|
|
+ {"TX_AIF2_CAP Mixer", "DEC3", "TX DEC3 MUX"},
|
|
|
|
+ {"TX_AIF2_CAP Mixer", "DEC4", "TX DEC4 MUX"},
|
|
|
|
+ {"TX_AIF2_CAP Mixer", "DEC5", "TX DEC5 MUX"},
|
|
|
|
+ {"TX_AIF2_CAP Mixer", "DEC6", "TX DEC6 MUX"},
|
|
|
|
+ {"TX_AIF2_CAP Mixer", "DEC7", "TX DEC7 MUX"},
|
|
|
|
+
|
|
|
|
+ {"TX DEC0 MUX", "MSM_DMIC", "TX DMIC MUX0"},
|
|
|
|
+ {"TX DMIC MUX0", "DMIC0", "TX DMIC0"},
|
|
|
|
+ {"TX DMIC MUX0", "DMIC1", "TX DMIC1"},
|
|
|
|
+ {"TX DMIC MUX0", "DMIC2", "TX DMIC2"},
|
|
|
|
+ {"TX DMIC MUX0", "DMIC3", "TX DMIC3"},
|
|
|
|
+ {"TX DMIC MUX0", "DMIC4", "TX DMIC4"},
|
|
|
|
+ {"TX DMIC MUX0", "DMIC5", "TX DMIC5"},
|
|
|
|
+ {"TX DMIC MUX0", "DMIC6", "TX DMIC6"},
|
|
|
|
+ {"TX DMIC MUX0", "DMIC7", "TX DMIC7"},
|
|
|
|
+
|
|
|
|
+ {"TX DEC0 MUX", "SWR_MIC", "TX SMIC MUX0"},
|
|
|
|
+ {"TX SMIC MUX0", "ADC0", "TX SWR_ADC0"},
|
|
|
|
+ {"TX SMIC MUX0", "ADC1", "TX SWR_ADC1"},
|
|
|
|
+ {"TX SMIC MUX0", "ADC2", "TX SWR_ADC2"},
|
|
|
|
+ {"TX SMIC MUX0", "ADC3", "TX SWR_ADC3"},
|
|
|
|
+ {"TX SMIC MUX0", "SWR_DMIC0", "TX SWR_DMIC0"},
|
|
|
|
+ {"TX SMIC MUX0", "SWR_DMIC1", "TX SWR_DMIC1"},
|
|
|
|
+ {"TX SMIC MUX0", "SWR_DMIC2", "TX SWR_DMIC2"},
|
|
|
|
+ {"TX SMIC MUX0", "SWR_DMIC3", "TX SWR_DMIC3"},
|
|
|
|
+ {"TX SMIC MUX0", "SWR_DMIC4", "TX SWR_DMIC4"},
|
|
|
|
+ {"TX SMIC MUX0", "SWR_DMIC5", "TX SWR_DMIC5"},
|
|
|
|
+ {"TX SMIC MUX0", "SWR_DMIC6", "TX SWR_DMIC6"},
|
|
|
|
+ {"TX SMIC MUX0", "SWR_DMIC7", "TX SWR_DMIC7"},
|
|
|
|
+
|
|
|
|
+ {"TX DEC1 MUX", "MSM_DMIC", "TX DMIC MUX1"},
|
|
|
|
+ {"TX DMIC MUX1", "DMIC0", "TX DMIC0"},
|
|
|
|
+ {"TX DMIC MUX1", "DMIC1", "TX DMIC1"},
|
|
|
|
+ {"TX DMIC MUX1", "DMIC2", "TX DMIC2"},
|
|
|
|
+ {"TX DMIC MUX1", "DMIC3", "TX DMIC3"},
|
|
|
|
+ {"TX DMIC MUX1", "DMIC4", "TX DMIC4"},
|
|
|
|
+ {"TX DMIC MUX1", "DMIC5", "TX DMIC5"},
|
|
|
|
+ {"TX DMIC MUX1", "DMIC6", "TX DMIC6"},
|
|
|
|
+ {"TX DMIC MUX1", "DMIC7", "TX DMIC7"},
|
|
|
|
+
|
|
|
|
+ {"TX DEC1 MUX", "SWR_MIC", "TX SMIC MUX1"},
|
|
|
|
+ {"TX SMIC MUX1", "ADC0", "TX SWR_ADC0"},
|
|
|
|
+ {"TX SMIC MUX1", "ADC1", "TX SWR_ADC1"},
|
|
|
|
+ {"TX SMIC MUX1", "ADC2", "TX SWR_ADC2"},
|
|
|
|
+ {"TX SMIC MUX1", "ADC3", "TX SWR_ADC3"},
|
|
|
|
+ {"TX SMIC MUX1", "SWR_DMIC0", "TX SWR_DMIC0"},
|
|
|
|
+ {"TX SMIC MUX1", "SWR_DMIC1", "TX SWR_DMIC1"},
|
|
|
|
+ {"TX SMIC MUX1", "SWR_DMIC2", "TX SWR_DMIC2"},
|
|
|
|
+ {"TX SMIC MUX1", "SWR_DMIC3", "TX SWR_DMIC3"},
|
|
|
|
+ {"TX SMIC MUX1", "SWR_DMIC4", "TX SWR_DMIC4"},
|
|
|
|
+ {"TX SMIC MUX1", "SWR_DMIC5", "TX SWR_DMIC5"},
|
|
|
|
+ {"TX SMIC MUX1", "SWR_DMIC6", "TX SWR_DMIC6"},
|
|
|
|
+ {"TX SMIC MUX1", "SWR_DMIC7", "TX SWR_DMIC7"},
|
|
|
|
+
|
|
|
|
+ {"TX DEC2 MUX", "MSM_DMIC", "TX DMIC MUX2"},
|
|
|
|
+ {"TX DMIC MUX2", "DMIC0", "TX DMIC0"},
|
|
|
|
+ {"TX DMIC MUX2", "DMIC1", "TX DMIC1"},
|
|
|
|
+ {"TX DMIC MUX2", "DMIC2", "TX DMIC2"},
|
|
|
|
+ {"TX DMIC MUX2", "DMIC3", "TX DMIC3"},
|
|
|
|
+ {"TX DMIC MUX2", "DMIC4", "TX DMIC4"},
|
|
|
|
+ {"TX DMIC MUX2", "DMIC5", "TX DMIC5"},
|
|
|
|
+ {"TX DMIC MUX2", "DMIC6", "TX DMIC6"},
|
|
|
|
+ {"TX DMIC MUX2", "DMIC7", "TX DMIC7"},
|
|
|
|
+
|
|
|
|
+ {"TX DEC2 MUX", "SWR_MIC", "TX SMIC MUX2"},
|
|
|
|
+ {"TX SMIC MUX2", "ADC0", "TX SWR_ADC0"},
|
|
|
|
+ {"TX SMIC MUX2", "ADC1", "TX SWR_ADC1"},
|
|
|
|
+ {"TX SMIC MUX2", "ADC2", "TX SWR_ADC2"},
|
|
|
|
+ {"TX SMIC MUX2", "ADC3", "TX SWR_ADC3"},
|
|
|
|
+ {"TX SMIC MUX2", "SWR_DMIC0", "TX SWR_DMIC0"},
|
|
|
|
+ {"TX SMIC MUX2", "SWR_DMIC1", "TX SWR_DMIC1"},
|
|
|
|
+ {"TX SMIC MUX2", "SWR_DMIC2", "TX SWR_DMIC2"},
|
|
|
|
+ {"TX SMIC MUX2", "SWR_DMIC3", "TX SWR_DMIC3"},
|
|
|
|
+ {"TX SMIC MUX2", "SWR_DMIC4", "TX SWR_DMIC4"},
|
|
|
|
+ {"TX SMIC MUX2", "SWR_DMIC5", "TX SWR_DMIC5"},
|
|
|
|
+ {"TX SMIC MUX2", "SWR_DMIC6", "TX SWR_DMIC6"},
|
|
|
|
+ {"TX SMIC MUX2", "SWR_DMIC7", "TX SWR_DMIC7"},
|
|
|
|
+
|
|
|
|
+ {"TX DEC3 MUX", "MSM_DMIC", "TX DMIC MUX3"},
|
|
|
|
+ {"TX DMIC MUX3", "DMIC0", "TX DMIC0"},
|
|
|
|
+ {"TX DMIC MUX3", "DMIC1", "TX DMIC1"},
|
|
|
|
+ {"TX DMIC MUX3", "DMIC2", "TX DMIC2"},
|
|
|
|
+ {"TX DMIC MUX3", "DMIC3", "TX DMIC3"},
|
|
|
|
+ {"TX DMIC MUX3", "DMIC4", "TX DMIC4"},
|
|
|
|
+ {"TX DMIC MUX3", "DMIC5", "TX DMIC5"},
|
|
|
|
+ {"TX DMIC MUX3", "DMIC6", "TX DMIC6"},
|
|
|
|
+ {"TX DMIC MUX3", "DMIC7", "TX DMIC7"},
|
|
|
|
+
|
|
|
|
+ {"TX DEC3 MUX", "SWR_MIC", "TX SMIC MUX3"},
|
|
|
|
+ {"TX SMIC MUX3", "ADC0", "TX SWR_ADC0"},
|
|
|
|
+ {"TX SMIC MUX3", "ADC1", "TX SWR_ADC1"},
|
|
|
|
+ {"TX SMIC MUX3", "ADC2", "TX SWR_ADC2"},
|
|
|
|
+ {"TX SMIC MUX3", "ADC3", "TX SWR_ADC3"},
|
|
|
|
+ {"TX SMIC MUX3", "SWR_DMIC0", "TX SWR_DMIC0"},
|
|
|
|
+ {"TX SMIC MUX3", "SWR_DMIC1", "TX SWR_DMIC1"},
|
|
|
|
+ {"TX SMIC MUX3", "SWR_DMIC2", "TX SWR_DMIC2"},
|
|
|
|
+ {"TX SMIC MUX3", "SWR_DMIC3", "TX SWR_DMIC3"},
|
|
|
|
+ {"TX SMIC MUX3", "SWR_DMIC4", "TX SWR_DMIC4"},
|
|
|
|
+ {"TX SMIC MUX3", "SWR_DMIC5", "TX SWR_DMIC5"},
|
|
|
|
+ {"TX SMIC MUX3", "SWR_DMIC6", "TX SWR_DMIC6"},
|
|
|
|
+ {"TX SMIC MUX3", "SWR_DMIC7", "TX SWR_DMIC7"},
|
|
|
|
+
|
|
|
|
+ {"TX DEC4 MUX", "MSM_DMIC", "TX DMIC MUX4"},
|
|
|
|
+ {"TX DMIC MUX4", "DMIC0", "TX DMIC0"},
|
|
|
|
+ {"TX DMIC MUX4", "DMIC1", "TX DMIC1"},
|
|
|
|
+ {"TX DMIC MUX4", "DMIC2", "TX DMIC2"},
|
|
|
|
+ {"TX DMIC MUX4", "DMIC3", "TX DMIC3"},
|
|
|
|
+ {"TX DMIC MUX4", "DMIC4", "TX DMIC4"},
|
|
|
|
+ {"TX DMIC MUX4", "DMIC5", "TX DMIC5"},
|
|
|
|
+ {"TX DMIC MUX4", "DMIC6", "TX DMIC6"},
|
|
|
|
+ {"TX DMIC MUX4", "DMIC7", "TX DMIC7"},
|
|
|
|
+
|
|
|
|
+ {"TX DEC4 MUX", "SWR_MIC", "TX SMIC MUX4"},
|
|
|
|
+ {"TX SMIC MUX4", "ADC0", "TX SWR_ADC0"},
|
|
|
|
+ {"TX SMIC MUX4", "ADC1", "TX SWR_ADC1"},
|
|
|
|
+ {"TX SMIC MUX4", "ADC2", "TX SWR_ADC2"},
|
|
|
|
+ {"TX SMIC MUX4", "ADC3", "TX SWR_ADC3"},
|
|
|
|
+ {"TX SMIC MUX4", "SWR_DMIC0", "TX SWR_DMIC0"},
|
|
|
|
+ {"TX SMIC MUX4", "SWR_DMIC1", "TX SWR_DMIC1"},
|
|
|
|
+ {"TX SMIC MUX4", "SWR_DMIC2", "TX SWR_DMIC2"},
|
|
|
|
+ {"TX SMIC MUX4", "SWR_DMIC3", "TX SWR_DMIC3"},
|
|
|
|
+ {"TX SMIC MUX4", "SWR_DMIC4", "TX SWR_DMIC4"},
|
|
|
|
+ {"TX SMIC MUX4", "SWR_DMIC5", "TX SWR_DMIC5"},
|
|
|
|
+ {"TX SMIC MUX4", "SWR_DMIC6", "TX SWR_DMIC6"},
|
|
|
|
+ {"TX SMIC MUX4", "SWR_DMIC7", "TX SWR_DMIC7"},
|
|
|
|
+
|
|
|
|
+ {"TX DEC5 MUX", "MSM_DMIC", "TX DMIC MUX5"},
|
|
|
|
+ {"TX DMIC MUX5", "DMIC0", "TX DMIC0"},
|
|
|
|
+ {"TX DMIC MUX5", "DMIC1", "TX DMIC1"},
|
|
|
|
+ {"TX DMIC MUX5", "DMIC2", "TX DMIC2"},
|
|
|
|
+ {"TX DMIC MUX5", "DMIC3", "TX DMIC3"},
|
|
|
|
+ {"TX DMIC MUX5", "DMIC4", "TX DMIC4"},
|
|
|
|
+ {"TX DMIC MUX5", "DMIC5", "TX DMIC5"},
|
|
|
|
+ {"TX DMIC MUX5", "DMIC6", "TX DMIC6"},
|
|
|
|
+ {"TX DMIC MUX5", "DMIC7", "TX DMIC7"},
|
|
|
|
+
|
|
|
|
+ {"TX DEC5 MUX", "SWR_MIC", "TX SMIC MUX5"},
|
|
|
|
+ {"TX SMIC MUX5", "ADC0", "TX SWR_ADC0"},
|
|
|
|
+ {"TX SMIC MUX5", "ADC1", "TX SWR_ADC1"},
|
|
|
|
+ {"TX SMIC MUX5", "ADC2", "TX SWR_ADC2"},
|
|
|
|
+ {"TX SMIC MUX5", "ADC3", "TX SWR_ADC3"},
|
|
|
|
+ {"TX SMIC MUX5", "SWR_DMIC0", "TX SWR_DMIC0"},
|
|
|
|
+ {"TX SMIC MUX5", "SWR_DMIC1", "TX SWR_DMIC1"},
|
|
|
|
+ {"TX SMIC MUX5", "SWR_DMIC2", "TX SWR_DMIC2"},
|
|
|
|
+ {"TX SMIC MUX5", "SWR_DMIC3", "TX SWR_DMIC3"},
|
|
|
|
+ {"TX SMIC MUX5", "SWR_DMIC4", "TX SWR_DMIC4"},
|
|
|
|
+ {"TX SMIC MUX5", "SWR_DMIC5", "TX SWR_DMIC5"},
|
|
|
|
+ {"TX SMIC MUX5", "SWR_DMIC6", "TX SWR_DMIC6"},
|
|
|
|
+ {"TX SMIC MUX5", "SWR_DMIC7", "TX SWR_DMIC7"},
|
|
|
|
+
|
|
|
|
+ {"TX DEC6 MUX", "MSM_DMIC", "TX DMIC MUX6"},
|
|
|
|
+ {"TX DMIC MUX6", "DMIC0", "TX DMIC0"},
|
|
|
|
+ {"TX DMIC MUX6", "DMIC1", "TX DMIC1"},
|
|
|
|
+ {"TX DMIC MUX6", "DMIC2", "TX DMIC2"},
|
|
|
|
+ {"TX DMIC MUX6", "DMIC3", "TX DMIC3"},
|
|
|
|
+ {"TX DMIC MUX6", "DMIC4", "TX DMIC4"},
|
|
|
|
+ {"TX DMIC MUX6", "DMIC5", "TX DMIC5"},
|
|
|
|
+ {"TX DMIC MUX6", "DMIC6", "TX DMIC6"},
|
|
|
|
+ {"TX DMIC MUX6", "DMIC7", "TX DMIC7"},
|
|
|
|
+
|
|
|
|
+ {"TX DEC6 MUX", "SWR_MIC", "TX SMIC MUX6"},
|
|
|
|
+ {"TX SMIC MUX6", "ADC0", "TX SWR_ADC0"},
|
|
|
|
+ {"TX SMIC MUX6", "ADC1", "TX SWR_ADC1"},
|
|
|
|
+ {"TX SMIC MUX6", "ADC2", "TX SWR_ADC2"},
|
|
|
|
+ {"TX SMIC MUX6", "ADC3", "TX SWR_ADC3"},
|
|
|
|
+ {"TX SMIC MUX6", "SWR_DMIC0", "TX SWR_DMIC0"},
|
|
|
|
+ {"TX SMIC MUX6", "SWR_DMIC1", "TX SWR_DMIC1"},
|
|
|
|
+ {"TX SMIC MUX6", "SWR_DMIC2", "TX SWR_DMIC2"},
|
|
|
|
+ {"TX SMIC MUX6", "SWR_DMIC3", "TX SWR_DMIC3"},
|
|
|
|
+ {"TX SMIC MUX6", "SWR_DMIC4", "TX SWR_DMIC4"},
|
|
|
|
+ {"TX SMIC MUX6", "SWR_DMIC5", "TX SWR_DMIC5"},
|
|
|
|
+ {"TX SMIC MUX6", "SWR_DMIC6", "TX SWR_DMIC6"},
|
|
|
|
+ {"TX SMIC MUX6", "SWR_DMIC7", "TX SWR_DMIC7"},
|
|
|
|
+
|
|
|
|
+ {"TX DEC7 MUX", "MSM_DMIC", "TX DMIC MUX7"},
|
|
|
|
+ {"TX DMIC MUX7", "DMIC0", "TX DMIC0"},
|
|
|
|
+ {"TX DMIC MUX7", "DMIC1", "TX DMIC1"},
|
|
|
|
+ {"TX DMIC MUX7", "DMIC2", "TX DMIC2"},
|
|
|
|
+ {"TX DMIC MUX7", "DMIC3", "TX DMIC3"},
|
|
|
|
+ {"TX DMIC MUX7", "DMIC4", "TX DMIC4"},
|
|
|
|
+ {"TX DMIC MUX7", "DMIC5", "TX DMIC5"},
|
|
|
|
+ {"TX DMIC MUX7", "DMIC6", "TX DMIC6"},
|
|
|
|
+ {"TX DMIC MUX7", "DMIC7", "TX DMIC7"},
|
|
|
|
+
|
|
|
|
+ {"TX DEC7 MUX", "SWR_MIC", "TX SMIC MUX7"},
|
|
|
|
+ {"TX SMIC MUX7", "ADC0", "TX SWR_ADC0"},
|
|
|
|
+ {"TX SMIC MUX7", "ADC1", "TX SWR_ADC1"},
|
|
|
|
+ {"TX SMIC MUX7", "ADC2", "TX SWR_ADC2"},
|
|
|
|
+ {"TX SMIC MUX7", "ADC3", "TX SWR_ADC3"},
|
|
|
|
+ {"TX SMIC MUX7", "SWR_DMIC0", "TX SWR_DMIC0"},
|
|
|
|
+ {"TX SMIC MUX7", "SWR_DMIC1", "TX SWR_DMIC1"},
|
|
|
|
+ {"TX SMIC MUX7", "SWR_DMIC2", "TX SWR_DMIC2"},
|
|
|
|
+ {"TX SMIC MUX7", "SWR_DMIC3", "TX SWR_DMIC3"},
|
|
|
|
+ {"TX SMIC MUX7", "SWR_DMIC4", "TX SWR_DMIC4"},
|
|
|
|
+ {"TX SMIC MUX7", "SWR_DMIC5", "TX SWR_DMIC5"},
|
|
|
|
+ {"TX SMIC MUX7", "SWR_DMIC6", "TX SWR_DMIC6"},
|
|
|
|
+ {"TX SMIC MUX7", "SWR_DMIC7", "TX SWR_DMIC7"},
|
|
|
|
+};
|
|
|
|
+
|
|
|
|
+static const struct snd_kcontrol_new tx_macro_snd_controls[] = {
|
|
|
|
+ SOC_SINGLE_SX_TLV("TX_DEC0 Volume",
|
|
|
|
+ BOLERO_CDC_TX0_TX_VOL_CTL,
|
|
|
|
+ 0, -84, 40, digital_gain),
|
|
|
|
+ SOC_SINGLE_SX_TLV("TX_DEC1 Volume",
|
|
|
|
+ BOLERO_CDC_TX1_TX_VOL_CTL,
|
|
|
|
+ 0, -84, 40, digital_gain),
|
|
|
|
+ SOC_SINGLE_SX_TLV("TX_DEC2 Volume",
|
|
|
|
+ BOLERO_CDC_TX2_TX_VOL_CTL,
|
|
|
|
+ 0, -84, 40, digital_gain),
|
|
|
|
+ SOC_SINGLE_SX_TLV("TX_DEC3 Volume",
|
|
|
|
+ BOLERO_CDC_TX3_TX_VOL_CTL,
|
|
|
|
+ 0, -84, 40, digital_gain),
|
|
|
|
+ SOC_SINGLE_SX_TLV("TX_DEC4 Volume",
|
|
|
|
+ BOLERO_CDC_TX4_TX_VOL_CTL,
|
|
|
|
+ 0, -84, 40, digital_gain),
|
|
|
|
+ SOC_SINGLE_SX_TLV("TX_DEC5 Volume",
|
|
|
|
+ BOLERO_CDC_TX5_TX_VOL_CTL,
|
|
|
|
+ 0, -84, 40, digital_gain),
|
|
|
|
+ SOC_SINGLE_SX_TLV("TX_DEC6 Volume",
|
|
|
|
+ BOLERO_CDC_TX6_TX_VOL_CTL,
|
|
|
|
+ 0, -84, 40, digital_gain),
|
|
|
|
+ SOC_SINGLE_SX_TLV("TX_DEC7 Volume",
|
|
|
|
+ BOLERO_CDC_TX7_TX_VOL_CTL,
|
|
|
|
+ 0, -84, 40, digital_gain),
|
|
|
|
+};
|
|
|
|
+
|
|
|
|
+static int tx_macro_swrm_clock(void *handle, bool enable)
|
|
|
|
+{
|
|
|
|
+ struct tx_macro_priv *tx_priv = (struct tx_macro_priv *) handle;
|
|
|
|
+ struct regmap *regmap = dev_get_regmap(tx_priv->dev->parent, NULL);
|
|
|
|
+ int ret = 0;
|
|
|
|
+
|
|
|
|
+ mutex_lock(&tx_priv->swr_clk_lock);
|
|
|
|
+
|
|
|
|
+ dev_dbg(tx_priv->dev, "%s: swrm clock %s\n",
|
|
|
|
+ __func__, (enable ? "enable" : "disable"));
|
|
|
|
+ if (enable) {
|
|
|
|
+ if (tx_priv->swr_clk_users == 0) {
|
|
|
|
+ ret = tx_macro_mclk_enable(tx_priv, 1);
|
|
|
|
+ if (ret < 0) {
|
|
|
|
+ dev_err(tx_priv->dev,
|
|
|
|
+ "%s: request clock enable failed\n",
|
|
|
|
+ __func__);
|
|
|
|
+ goto exit;
|
|
|
|
+ }
|
|
|
|
+ regmap_update_bits(regmap,
|
|
|
|
+ BOLERO_CDC_TX_CLK_RST_CTRL_SWR_CONTROL,
|
|
|
|
+ 0x01, 0x01);
|
|
|
|
+ regmap_update_bits(regmap,
|
|
|
|
+ BOLERO_CDC_TX_CLK_RST_CTRL_SWR_CONTROL,
|
|
|
|
+ 0x1C, 0x0C);
|
|
|
|
+ msm_cdc_pinctrl_select_active_state(
|
|
|
|
+ tx_priv->tx_swr_gpio_p);
|
|
|
|
+ }
|
|
|
|
+ tx_priv->swr_clk_users++;
|
|
|
|
+ } else {
|
|
|
|
+ if (tx_priv->swr_clk_users <= 0) {
|
|
|
|
+ dev_err(tx_priv->dev,
|
|
|
|
+ "tx swrm clock users already 0\n");
|
|
|
|
+ tx_priv->swr_clk_users = 0;
|
|
|
|
+ goto exit;
|
|
|
|
+ }
|
|
|
|
+ tx_priv->swr_clk_users--;
|
|
|
|
+ if (tx_priv->swr_clk_users == 0) {
|
|
|
|
+ regmap_update_bits(regmap,
|
|
|
|
+ BOLERO_CDC_TX_CLK_RST_CTRL_SWR_CONTROL,
|
|
|
|
+ 0x01, 0x00);
|
|
|
|
+ msm_cdc_pinctrl_select_sleep_state(
|
|
|
|
+ tx_priv->tx_swr_gpio_p);
|
|
|
|
+ tx_macro_mclk_enable(tx_priv, 0);
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ dev_dbg(tx_priv->dev, "%s: swrm clock users %d\n",
|
|
|
|
+ __func__, tx_priv->swr_clk_users);
|
|
|
|
+exit:
|
|
|
|
+ mutex_unlock(&tx_priv->swr_clk_lock);
|
|
|
|
+ return ret;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+static int tx_macro_validate_dmic_sample_rate(u32 dmic_sample_rate,
|
|
|
|
+ struct tx_macro_priv *tx_priv)
|
|
|
|
+{
|
|
|
|
+ u32 div_factor = TX_MACRO_CLK_DIV_2;
|
|
|
|
+ u32 mclk_rate = TX_MACRO_MCLK_FREQ;
|
|
|
|
+
|
|
|
|
+ if (dmic_sample_rate == TX_MACRO_DMIC_SAMPLE_RATE_UNDEFINED ||
|
|
|
|
+ mclk_rate % dmic_sample_rate != 0)
|
|
|
|
+ goto undefined_rate;
|
|
|
|
+
|
|
|
|
+ div_factor = mclk_rate / dmic_sample_rate;
|
|
|
|
+
|
|
|
|
+ switch (div_factor) {
|
|
|
|
+ case 2:
|
|
|
|
+ tx_priv->dmic_clk_div = TX_MACRO_CLK_DIV_2;
|
|
|
|
+ break;
|
|
|
|
+ case 3:
|
|
|
|
+ tx_priv->dmic_clk_div = TX_MACRO_CLK_DIV_3;
|
|
|
|
+ break;
|
|
|
|
+ case 4:
|
|
|
|
+ tx_priv->dmic_clk_div = TX_MACRO_CLK_DIV_4;
|
|
|
|
+ break;
|
|
|
|
+ case 6:
|
|
|
|
+ tx_priv->dmic_clk_div = TX_MACRO_CLK_DIV_6;
|
|
|
|
+ break;
|
|
|
|
+ case 8:
|
|
|
|
+ tx_priv->dmic_clk_div = TX_MACRO_CLK_DIV_8;
|
|
|
|
+ break;
|
|
|
|
+ case 16:
|
|
|
|
+ tx_priv->dmic_clk_div = TX_MACRO_CLK_DIV_16;
|
|
|
|
+ break;
|
|
|
|
+ default:
|
|
|
|
+ /* Any other DIV factor is invalid */
|
|
|
|
+ goto undefined_rate;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /* Valid dmic DIV factors */
|
|
|
|
+ dev_dbg(tx_priv->dev, "%s: DMIC_DIV = %u, mclk_rate = %u\n",
|
|
|
|
+ __func__, div_factor, mclk_rate);
|
|
|
|
+
|
|
|
|
+ return dmic_sample_rate;
|
|
|
|
+
|
|
|
|
+undefined_rate:
|
|
|
|
+ dev_dbg(tx_priv->dev, "%s: Invalid rate %d, for mclk %d\n",
|
|
|
|
+ __func__, dmic_sample_rate, mclk_rate);
|
|
|
|
+ dmic_sample_rate = TX_MACRO_DMIC_SAMPLE_RATE_UNDEFINED;
|
|
|
|
+
|
|
|
|
+ return dmic_sample_rate;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+static int tx_macro_init(struct snd_soc_codec *codec)
|
|
|
|
+{
|
|
|
|
+ struct snd_soc_dapm_context *dapm = snd_soc_codec_get_dapm(codec);
|
|
|
|
+ int ret = 0, i = 0;
|
|
|
|
+ struct device *tx_dev = NULL;
|
|
|
|
+ struct tx_macro_priv *tx_priv = NULL;
|
|
|
|
+
|
|
|
|
+ tx_dev = bolero_get_device_ptr(codec->dev, TX_MACRO);
|
|
|
|
+ if (!tx_dev) {
|
|
|
|
+ dev_err(codec->dev,
|
|
|
|
+ "%s: null device for macro!\n", __func__);
|
|
|
|
+ return -EINVAL;
|
|
|
|
+ }
|
|
|
|
+ tx_priv = dev_get_drvdata(tx_dev);
|
|
|
|
+ if (!tx_priv) {
|
|
|
|
+ dev_err(codec->dev,
|
|
|
|
+ "%s: priv is null for macro!\n", __func__);
|
|
|
|
+ return -EINVAL;
|
|
|
|
+ }
|
|
|
|
+ ret = snd_soc_dapm_new_controls(dapm, tx_macro_dapm_widgets,
|
|
|
|
+ ARRAY_SIZE(tx_macro_dapm_widgets));
|
|
|
|
+ if (ret < 0) {
|
|
|
|
+ dev_err(tx_dev, "%s: Failed to add controls\n", __func__);
|
|
|
|
+ return ret;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ ret = snd_soc_dapm_add_routes(dapm, tx_audio_map,
|
|
|
|
+ ARRAY_SIZE(tx_audio_map));
|
|
|
|
+ if (ret < 0) {
|
|
|
|
+ dev_err(tx_dev, "%s: Failed to add routes\n", __func__);
|
|
|
|
+ return ret;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ ret = snd_soc_dapm_new_widgets(dapm->card);
|
|
|
|
+ if (ret < 0) {
|
|
|
|
+ dev_err(tx_dev, "%s: Failed to add widgets\n", __func__);
|
|
|
|
+ return ret;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ ret = snd_soc_add_codec_controls(codec, tx_macro_snd_controls,
|
|
|
|
+ ARRAY_SIZE(tx_macro_snd_controls));
|
|
|
|
+ if (ret < 0) {
|
|
|
|
+ dev_err(tx_dev, "%s: Failed to add snd_ctls\n", __func__);
|
|
|
|
+ return ret;
|
|
|
|
+ }
|
|
|
|
+ for (i = 0; i < NUM_DECIMATORS; i++) {
|
|
|
|
+ tx_priv->tx_hpf_work[i].tx_priv = tx_priv;
|
|
|
|
+ tx_priv->tx_hpf_work[i].decimator = i;
|
|
|
|
+ INIT_DELAYED_WORK(&tx_priv->tx_hpf_work[i].dwork,
|
|
|
|
+ tx_macro_tx_hpf_corner_freq_callback);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ for (i = 0; i < NUM_DECIMATORS; i++) {
|
|
|
|
+ tx_priv->tx_mute_dwork[i].tx_priv = tx_priv;
|
|
|
|
+ tx_priv->tx_mute_dwork[i].decimator = i;
|
|
|
|
+ INIT_DELAYED_WORK(&tx_priv->tx_mute_dwork[i].dwork,
|
|
|
|
+ tx_macro_mute_update_callback);
|
|
|
|
+ }
|
|
|
|
+ tx_priv->codec = codec;
|
|
|
|
+
|
|
|
|
+ return 0;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+static int tx_macro_deinit(struct snd_soc_codec *codec)
|
|
|
|
+{
|
|
|
|
+ struct device *tx_dev = NULL;
|
|
|
|
+ struct tx_macro_priv *tx_priv = NULL;
|
|
|
|
+
|
|
|
|
+ if (!tx_macro_get_data(codec, &tx_dev, &tx_priv, __func__))
|
|
|
|
+ return -EINVAL;
|
|
|
|
+
|
|
|
|
+ tx_priv->codec = NULL;
|
|
|
|
+ return 0;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+static void tx_macro_add_child_devices(struct work_struct *work)
|
|
|
|
+{
|
|
|
|
+ struct tx_macro_priv *tx_priv = NULL;
|
|
|
|
+ struct platform_device *pdev = NULL;
|
|
|
|
+ struct device_node *node = NULL;
|
|
|
|
+ struct tx_macro_swr_ctrl_data *swr_ctrl_data = NULL, *temp = NULL;
|
|
|
|
+ int ret = 0;
|
|
|
|
+ u16 count = 0, ctrl_num = 0;
|
|
|
|
+ struct tx_macro_swr_ctrl_platform_data *platdata = NULL;
|
|
|
|
+ char plat_dev_name[TX_MACRO_SWR_STRING_LEN] = "";
|
|
|
|
+ bool tx_swr_master_node = false;
|
|
|
|
+
|
|
|
|
+ tx_priv = container_of(work, struct tx_macro_priv,
|
|
|
|
+ tx_macro_add_child_devices_work);
|
|
|
|
+ if (!tx_priv) {
|
|
|
|
+ pr_err("%s: Memory for tx_priv does not exist\n",
|
|
|
|
+ __func__);
|
|
|
|
+ return;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ if (!tx_priv->dev) {
|
|
|
|
+ pr_err("%s: tx dev does not exist\n", __func__);
|
|
|
|
+ return;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ if (!tx_priv->dev->of_node) {
|
|
|
|
+ dev_err(tx_priv->dev,
|
|
|
|
+ "%s: DT node for tx_priv does not exist\n", __func__);
|
|
|
|
+ return;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ platdata = &tx_priv->swr_plat_data;
|
|
|
|
+ tx_priv->child_count = 0;
|
|
|
|
+
|
|
|
|
+ for_each_available_child_of_node(tx_priv->dev->of_node, node) {
|
|
|
|
+ tx_swr_master_node = false;
|
|
|
|
+ if (strnstr(node->name, "tx_swr_master",
|
|
|
|
+ strlen("tx_swr_master")) != NULL)
|
|
|
|
+ tx_swr_master_node = true;
|
|
|
|
+
|
|
|
|
+ if (tx_swr_master_node)
|
|
|
|
+ strlcpy(plat_dev_name, "tx_swr_ctrl",
|
|
|
|
+ (TX_MACRO_SWR_STRING_LEN - 1));
|
|
|
|
+ else
|
|
|
|
+ strlcpy(plat_dev_name, node->name,
|
|
|
|
+ (TX_MACRO_SWR_STRING_LEN - 1));
|
|
|
|
+
|
|
|
|
+ pdev = platform_device_alloc(plat_dev_name, -1);
|
|
|
|
+ if (!pdev) {
|
|
|
|
+ dev_err(tx_priv->dev, "%s: pdev memory alloc failed\n",
|
|
|
|
+ __func__);
|
|
|
|
+ ret = -ENOMEM;
|
|
|
|
+ goto err;
|
|
|
|
+ }
|
|
|
|
+ pdev->dev.parent = tx_priv->dev;
|
|
|
|
+ pdev->dev.of_node = node;
|
|
|
|
+
|
|
|
|
+ if (tx_swr_master_node) {
|
|
|
|
+ ret = platform_device_add_data(pdev, platdata,
|
|
|
|
+ sizeof(*platdata));
|
|
|
|
+ if (ret) {
|
|
|
|
+ dev_err(&pdev->dev,
|
|
|
|
+ "%s: cannot add plat data ctrl:%d\n",
|
|
|
|
+ __func__, ctrl_num);
|
|
|
|
+ goto fail_pdev_add;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ ret = platform_device_add(pdev);
|
|
|
|
+ if (ret) {
|
|
|
|
+ dev_err(&pdev->dev,
|
|
|
|
+ "%s: Cannot add platform device\n",
|
|
|
|
+ __func__);
|
|
|
|
+ goto fail_pdev_add;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ if (tx_swr_master_node) {
|
|
|
|
+ temp = krealloc(swr_ctrl_data,
|
|
|
|
+ (ctrl_num + 1) * sizeof(
|
|
|
|
+ struct tx_macro_swr_ctrl_data),
|
|
|
|
+ GFP_KERNEL);
|
|
|
|
+ if (!temp) {
|
|
|
|
+ ret = -ENOMEM;
|
|
|
|
+ goto fail_pdev_add;
|
|
|
|
+ }
|
|
|
|
+ swr_ctrl_data = temp;
|
|
|
|
+ swr_ctrl_data[ctrl_num].tx_swr_pdev = pdev;
|
|
|
|
+ ctrl_num++;
|
|
|
|
+ dev_dbg(&pdev->dev,
|
|
|
|
+ "%s: Added soundwire ctrl device(s)\n",
|
|
|
|
+ __func__);
|
|
|
|
+ tx_priv->swr_ctrl_data = swr_ctrl_data;
|
|
|
|
+ }
|
|
|
|
+ if (tx_priv->child_count < TX_MACRO_CHILD_DEVICES_MAX)
|
|
|
|
+ tx_priv->pdev_child_devices[
|
|
|
|
+ tx_priv->child_count++] = pdev;
|
|
|
|
+ else
|
|
|
|
+ goto err;
|
|
|
|
+ }
|
|
|
|
+ return;
|
|
|
|
+fail_pdev_add:
|
|
|
|
+ for (count = 0; count < tx_priv->child_count; count++)
|
|
|
|
+ platform_device_put(tx_priv->pdev_child_devices[count]);
|
|
|
|
+err:
|
|
|
|
+ return;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+static void tx_macro_init_ops(struct macro_ops *ops,
|
|
|
|
+ char __iomem *tx_io_base)
|
|
|
|
+{
|
|
|
|
+ memset(ops, 0, sizeof(struct macro_ops));
|
|
|
|
+ ops->init = tx_macro_init;
|
|
|
|
+ ops->exit = tx_macro_deinit;
|
|
|
|
+ ops->io_base = tx_io_base;
|
|
|
|
+ ops->dai_ptr = tx_macro_dai;
|
|
|
|
+ ops->num_dais = ARRAY_SIZE(tx_macro_dai);
|
|
|
|
+ ops->mclk_fn = tx_macro_mclk_ctrl;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+static int tx_macro_probe(struct platform_device *pdev)
|
|
|
|
+{
|
|
|
|
+ struct macro_ops ops = {0};
|
|
|
|
+ struct tx_macro_priv *tx_priv = NULL;
|
|
|
|
+ u32 tx_base_addr = 0, sample_rate = 0;
|
|
|
|
+ char __iomem *tx_io_base = NULL;
|
|
|
|
+ struct clk *tx_core_clk = NULL, *tx_npl_clk = NULL;
|
|
|
|
+ int ret = 0;
|
|
|
|
+ const char *dmic_sample_rate = "qcom,tx-dmic-sample-rate";
|
|
|
|
+
|
|
|
|
+ tx_priv = devm_kzalloc(&pdev->dev, sizeof(struct tx_macro_priv),
|
|
|
|
+ GFP_KERNEL);
|
|
|
|
+ if (!tx_priv)
|
|
|
|
+ return -ENOMEM;
|
|
|
|
+ platform_set_drvdata(pdev, tx_priv);
|
|
|
|
+
|
|
|
|
+ tx_priv->dev = &pdev->dev;
|
|
|
|
+ ret = of_property_read_u32(pdev->dev.of_node, "reg",
|
|
|
|
+ &tx_base_addr);
|
|
|
|
+ if (ret) {
|
|
|
|
+ dev_err(&pdev->dev, "%s: could not find %s entry in dt\n",
|
|
|
|
+ __func__, "reg");
|
|
|
|
+ return ret;
|
|
|
|
+ }
|
|
|
|
+ dev_set_drvdata(&pdev->dev, tx_priv);
|
|
|
|
+ tx_priv->tx_swr_gpio_p = of_parse_phandle(pdev->dev.of_node,
|
|
|
|
+ "qcom,tx-swr-gpios", 0);
|
|
|
|
+ if (!tx_priv->tx_swr_gpio_p) {
|
|
|
|
+ dev_err(&pdev->dev, "%s: swr_gpios handle not provided!\n",
|
|
|
|
+ __func__);
|
|
|
|
+ return -EINVAL;
|
|
|
|
+ }
|
|
|
|
+ tx_io_base = devm_ioremap(&pdev->dev,
|
|
|
|
+ tx_base_addr, TX_MACRO_MAX_OFFSET);
|
|
|
|
+ if (!tx_io_base) {
|
|
|
|
+ dev_err(&pdev->dev, "%s: ioremap failed\n", __func__);
|
|
|
|
+ return -ENOMEM;
|
|
|
|
+ }
|
|
|
|
+ tx_priv->tx_io_base = tx_io_base;
|
|
|
|
+ ret = of_property_read_u32(pdev->dev.of_node, dmic_sample_rate,
|
|
|
|
+ &sample_rate);
|
|
|
|
+ if (ret) {
|
|
|
|
+ dev_err(&pdev->dev,
|
|
|
|
+ "%s: could not find sample_rate entry in dt\n",
|
|
|
|
+ __func__);
|
|
|
|
+ tx_priv->dmic_clk_div = TX_MACRO_CLK_DIV_2;
|
|
|
|
+ } else {
|
|
|
|
+ if (tx_macro_validate_dmic_sample_rate(
|
|
|
|
+ sample_rate, tx_priv) == TX_MACRO_DMIC_SAMPLE_RATE_UNDEFINED)
|
|
|
|
+ return -EINVAL;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ INIT_WORK(&tx_priv->tx_macro_add_child_devices_work,
|
|
|
|
+ tx_macro_add_child_devices);
|
|
|
|
+ tx_priv->swr_plat_data.handle = (void *) tx_priv;
|
|
|
|
+ tx_priv->swr_plat_data.read = NULL;
|
|
|
|
+ tx_priv->swr_plat_data.write = NULL;
|
|
|
|
+ tx_priv->swr_plat_data.bulk_write = NULL;
|
|
|
|
+ tx_priv->swr_plat_data.clk = tx_macro_swrm_clock;
|
|
|
|
+ tx_priv->swr_plat_data.handle_irq = NULL;
|
|
|
|
+ /* Register MCLK for tx macro */
|
|
|
|
+ tx_core_clk = devm_clk_get(&pdev->dev, "tx_core_clk");
|
|
|
|
+ if (IS_ERR(tx_core_clk)) {
|
|
|
|
+ ret = PTR_ERR(tx_core_clk);
|
|
|
|
+ dev_err(&pdev->dev, "%s: clk get %s failed %d\n",
|
|
|
|
+ __func__, "tx_core_clk", ret);
|
|
|
|
+ return ret;
|
|
|
|
+ }
|
|
|
|
+ tx_priv->tx_core_clk = tx_core_clk;
|
|
|
|
+ /* Register npl clk for soundwire */
|
|
|
|
+ tx_npl_clk = devm_clk_get(&pdev->dev, "tx_npl_clk");
|
|
|
|
+ if (IS_ERR(tx_npl_clk)) {
|
|
|
|
+ ret = PTR_ERR(tx_npl_clk);
|
|
|
|
+ dev_err(&pdev->dev, "%s: clk get %s failed %d\n",
|
|
|
|
+ __func__, "tx_npl_clk", ret);
|
|
|
|
+ return ret;
|
|
|
|
+ }
|
|
|
|
+ tx_priv->tx_npl_clk = tx_npl_clk;
|
|
|
|
+
|
|
|
|
+ mutex_init(&tx_priv->mclk_lock);
|
|
|
|
+ mutex_init(&tx_priv->swr_clk_lock);
|
|
|
|
+ tx_macro_init_ops(&ops, tx_io_base);
|
|
|
|
+ ret = bolero_register_macro(&pdev->dev, TX_MACRO, &ops);
|
|
|
|
+ if (ret) {
|
|
|
|
+ dev_err(&pdev->dev,
|
|
|
|
+ "%s: register macro failed\n", __func__);
|
|
|
|
+ goto err_reg_macro;
|
|
|
|
+ }
|
|
|
|
+ schedule_work(&tx_priv->tx_macro_add_child_devices_work);
|
|
|
|
+ return 0;
|
|
|
|
+err_reg_macro:
|
|
|
|
+ mutex_destroy(&tx_priv->mclk_lock);
|
|
|
|
+ mutex_destroy(&tx_priv->swr_clk_lock);
|
|
|
|
+ return ret;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+static int tx_macro_remove(struct platform_device *pdev)
|
|
|
|
+{
|
|
|
|
+ struct tx_macro_priv *tx_priv = NULL;
|
|
|
|
+ u16 count = 0;
|
|
|
|
+
|
|
|
|
+ tx_priv = platform_get_drvdata(pdev);
|
|
|
|
+
|
|
|
|
+ if (!tx_priv)
|
|
|
|
+ return -EINVAL;
|
|
|
|
+
|
|
|
|
+ kfree(tx_priv->swr_ctrl_data);
|
|
|
|
+ for (count = 0; count < tx_priv->child_count &&
|
|
|
|
+ count < TX_MACRO_CHILD_DEVICES_MAX; count++)
|
|
|
|
+ platform_device_unregister(tx_priv->pdev_child_devices[count]);
|
|
|
|
+
|
|
|
|
+ mutex_destroy(&tx_priv->mclk_lock);
|
|
|
|
+ mutex_destroy(&tx_priv->swr_clk_lock);
|
|
|
|
+ bolero_unregister_macro(&pdev->dev, TX_MACRO);
|
|
|
|
+ return 0;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+static const struct of_device_id tx_macro_dt_match[] = {
|
|
|
|
+ {.compatible = "qcom,tx-macro"},
|
|
|
|
+ {}
|
|
|
|
+};
|
|
|
|
+
|
|
|
|
+static struct platform_driver tx_macro_driver = {
|
|
|
|
+ .driver = {
|
|
|
|
+ .name = "tx_macro",
|
|
|
|
+ .owner = THIS_MODULE,
|
|
|
|
+ .of_match_table = tx_macro_dt_match,
|
|
|
|
+ },
|
|
|
|
+ .probe = tx_macro_probe,
|
|
|
|
+ .remove = tx_macro_remove,
|
|
|
|
+};
|
|
|
|
+
|
|
|
|
+module_platform_driver(tx_macro_driver);
|
|
|
|
+
|
|
|
|
+MODULE_DESCRIPTION("TX macro driver");
|
|
|
|
+MODULE_LICENSE("GPL v2");
|