Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 6cc7f52a authored by Sudheer Papothi's avatar Sudheer Papothi
Browse files

ASoC: bolero: tx-macro: Fix clock sequence for headset SVA



Fix soundwire clock sequence for headset SVA usecase to avoid
tx clock voting during low power SVA usecase.

Change-Id: I9613eee6a0b66560fa1108b4887af71507d345e7
Signed-off-by: default avatarSudheer Papothi <spapothi@codeaurora.org>
parent 06f43418
Loading
Loading
Loading
Loading
+37 −2
Original line number Diff line number Diff line
@@ -501,8 +501,10 @@ int bolero_register_macro(struct device *dev, u16 macro_id,
	priv->macro_params[macro_id].dev = dev;
	priv->current_mclk_mux_macro[macro_id] =
				bolero_mclk_mux_tbl[macro_id][MCLK_MUX0];
	if (macro_id == TX_MACRO)
	if (macro_id == TX_MACRO) {
		priv->macro_params[macro_id].reg_wake_irq = ops->reg_wake_irq;
		priv->macro_params[macro_id].clk_switch = ops->clk_switch;
	}

	priv->num_dais += ops->num_dais;
	priv->num_macros_registered++;
@@ -562,8 +564,10 @@ void bolero_unregister_macro(struct device *dev, u16 macro_id)
	priv->macro_params[macro_id].dai_ptr = NULL;
	priv->macro_params[macro_id].event_handler = NULL;
	priv->macro_params[macro_id].dev = NULL;
	if (macro_id == TX_MACRO)
	if (macro_id == TX_MACRO) {
		priv->macro_params[macro_id].reg_wake_irq = NULL;
		priv->macro_params[macro_id].clk_switch = NULL;
	}

	priv->num_dais -= priv->macro_params[macro_id].num_dais;
	priv->num_macros_registered--;
@@ -768,6 +772,37 @@ int bolero_register_wake_irq(struct snd_soc_component *component,
}
EXPORT_SYMBOL(bolero_register_wake_irq);

/**
 * bolero_tx_clk_switch - Switch tx macro clock
 *
 * @component: pointer to codec component instance.
 *
 * Returns 0 on success or -EINVAL on error.
 */
int bolero_tx_clk_switch(struct snd_soc_component *component)
{
	struct bolero_priv *priv = NULL;
	int ret = 0;

	if (!component)
		return -EINVAL;

	priv = snd_soc_component_get_drvdata(component);
	if (!priv)
		return -EINVAL;

	if (!bolero_is_valid_codec_dev(priv->dev)) {
		dev_err(component->dev, "%s: invalid codec\n", __func__);
		return -EINVAL;
	}

	if (priv->macro_params[TX_MACRO].clk_switch)
		ret = priv->macro_params[TX_MACRO].clk_switch(component);

	return ret;
}
EXPORT_SYMBOL(bolero_tx_clk_switch);

static int bolero_soc_codec_probe(struct snd_soc_component *component)
{
	struct bolero_priv *priv = dev_get_drvdata(component->dev);
+8 −0
Original line number Diff line number Diff line
@@ -55,6 +55,7 @@ struct macro_ops {
	int (*reg_wake_irq)(struct snd_soc_component *component, u32 data);
	int (*set_port_map)(struct snd_soc_component *component, u32 uc,
			    u32 size, void *data);
	int (*clk_switch)(struct snd_soc_component *component);
	char __iomem *io_base;
	u16 clk_id_req;
	u16 default_clk_id;
@@ -78,6 +79,7 @@ void bolero_clear_amic_tx_hold(struct device *dev, u16 adc_n);
int bolero_runtime_resume(struct device *dev);
int bolero_runtime_suspend(struct device *dev);
int bolero_set_port_map(struct snd_soc_component *component, u32 size, void *data);
int bolero_tx_clk_switch(struct snd_soc_component *component);
#else
static inline int bolero_register_res_clk(struct device *dev, rsc_clk_cb_t cb)
{
@@ -136,5 +138,11 @@ static inline int bolero_set_port_map(struct snd_soc_component *component,
{
	return 0;
}

static inline int bolero_tx_clk_switch(struct snd_soc_component *component)
{
	return 0;
}

#endif /* CONFIG_SND_SOC_BOLERO */
#endif /* BOLERO_CDC_H */
+31 −0
Original line number Diff line number Diff line
@@ -1608,6 +1608,36 @@ static int tx_macro_tx_va_mclk_enable(struct tx_macro_priv *tx_priv,
	return ret;
}

static int tx_macro_clk_switch(struct snd_soc_component *component)
{
	struct device *tx_dev = NULL;
	struct tx_macro_priv *tx_priv = NULL;
	int ret = 0;

	if (!component)
		return -EINVAL;

	tx_dev = bolero_get_device_ptr(component->dev, TX_MACRO);
	if (!tx_dev) {
		dev_err(component->dev,
			"%s: null device for macro!\n", __func__);
		return -EINVAL;
	}
	tx_priv = dev_get_drvdata(tx_dev);
	if (!tx_priv) {
		dev_err(component->dev,
			"%s: priv is null for macro!\n", __func__);
		return -EINVAL;
	}
	if (tx_priv->swr_ctrl_data) {
		ret = swrm_wcd_notify(
			tx_priv->swr_ctrl_data[0].tx_swr_pdev,
			SWR_REQ_CLK_SWITCH, NULL);
	}

	return ret;
}

static int tx_macro_swrm_clock(void *handle, bool enable)
{
	struct tx_macro_priv *tx_priv = (struct tx_macro_priv *) handle;
@@ -1971,6 +2001,7 @@ static void tx_macro_init_ops(struct macro_ops *ops,
	ops->event_handler = tx_macro_event_handler;
	ops->reg_wake_irq = tx_macro_reg_wake_irq;
	ops->set_port_map = tx_macro_set_port_map;
	ops->clk_switch = tx_macro_clk_switch;
}

static int tx_macro_probe(struct platform_device *pdev)
+8 −2
Original line number Diff line number Diff line
@@ -283,8 +283,14 @@ static int va_macro_swr_pwr_event(struct snd_soc_dapm_widget *w,
					"%s: lpass audio hw enable failed\n",
					__func__);
		}
		if (!ret)
			if (bolero_tx_clk_switch(component))
				dev_dbg(va_dev, "%s: clock switch failed\n",
					__func__);
		break;
	case SND_SOC_DAPM_POST_PMD:
		if (bolero_tx_clk_switch(component))
			dev_dbg(va_dev, "%s: clock switch failed\n",__func__);
		if (va_priv->lpass_audio_hw_vote)
			clk_disable_unprepare(va_priv->lpass_audio_hw_vote);
		break;
@@ -311,18 +317,18 @@ static int va_macro_mclk_event(struct snd_soc_dapm_widget *w,
	dev_dbg(va_dev, "%s: event = %d\n", __func__, event);
	switch (event) {
	case SND_SOC_DAPM_PRE_PMU:
		ret = va_macro_mclk_enable(va_priv, 1, true);
		ret = bolero_clk_rsc_request_clock(va_priv->dev,
						   va_priv->default_clk_id,
						   TX_CORE_CLK,
						   true);
		ret = va_macro_mclk_enable(va_priv, 1, true);
		break;
	case SND_SOC_DAPM_POST_PMD:
		va_macro_mclk_enable(va_priv, 0, true);
		bolero_clk_rsc_request_clock(va_priv->dev,
					   va_priv->default_clk_id,
					   TX_CORE_CLK,
					   false);
		va_macro_mclk_enable(va_priv, 0, true);
		break;
	default:
		dev_err(va_priv->dev,