|
@@ -285,7 +285,8 @@ struct lpass_cdc_wsa2_macro_priv {
|
|
|
u16 default_clk_id;
|
|
|
u32 pcm_rate_vi;
|
|
|
int wsa2_digital_mute_status[LPASS_CDC_WSA2_MACRO_RX_MAX];
|
|
|
- u8 original_gain;
|
|
|
+ u8 rx0_origin_gain;
|
|
|
+ u8 rx1_origin_gain;
|
|
|
struct thermal_cooling_device *tcdev;
|
|
|
uint32_t thermal_cur_state;
|
|
|
uint32_t thermal_max_state;
|
|
@@ -1527,8 +1528,14 @@ static int lpass_cdc_wsa2_macro_enable_interpolator(struct snd_soc_dapm_widget *
|
|
|
{
|
|
|
struct snd_soc_component *component =
|
|
|
snd_soc_dapm_to_component(w->dapm);
|
|
|
+ struct device *wsa2_dev = NULL;
|
|
|
+ struct lpass_cdc_wsa2_macro_priv *wsa2_priv = NULL;
|
|
|
+ u8 gain = 0;
|
|
|
u16 reg = 0;
|
|
|
|
|
|
+ if (!lpass_cdc_wsa2_macro_get_data(component, &wsa2_dev, &wsa2_priv, __func__))
|
|
|
+ return -EINVAL;
|
|
|
+
|
|
|
dev_dbg(component->dev, "%s %d %s\n", __func__, event, w->name);
|
|
|
|
|
|
if (!(strcmp(w->name, "WSA2_RX INT0 INTERP"))) {
|
|
@@ -1547,6 +1554,34 @@ static int lpass_cdc_wsa2_macro_enable_interpolator(struct snd_soc_dapm_widget *
|
|
|
lpass_cdc_wsa2_macro_enable_prim_interpolator(component, reg, event);
|
|
|
break;
|
|
|
case SND_SOC_DAPM_POST_PMU:
|
|
|
+ if (!strcmp(w->name, "WSA2_RX INT0 INTERP")) {
|
|
|
+ gain = (u8)(wsa2_priv->rx0_origin_gain -
|
|
|
+ wsa2_priv->thermal_cur_state);
|
|
|
+ if (snd_soc_component_read(wsa2_priv->component,
|
|
|
+ LPASS_CDC_WSA2_RX0_RX_VOL_CTL) != gain) {
|
|
|
+ snd_soc_component_update_bits(wsa2_priv->component,
|
|
|
+ LPASS_CDC_WSA2_RX0_RX_VOL_CTL, 0xFF, gain);
|
|
|
+ dev_dbg(wsa2_priv->dev,
|
|
|
+ "%s: RX0 current thermal state: %d, "
|
|
|
+ "adjusted gain: %#x\n",
|
|
|
+ __func__, wsa2_priv->thermal_cur_state, gain);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ if (!strcmp(w->name, "WSA2_RX INT1 INTERP")) {
|
|
|
+ gain = (u8)(wsa2_priv->rx1_origin_gain -
|
|
|
+ wsa2_priv->thermal_cur_state);
|
|
|
+ if (snd_soc_component_read(wsa2_priv->component,
|
|
|
+ LPASS_CDC_WSA2_RX1_RX_VOL_CTL) != gain) {
|
|
|
+ snd_soc_component_update_bits(wsa2_priv->component,
|
|
|
+ LPASS_CDC_WSA2_RX1_RX_VOL_CTL, 0xFF, gain);
|
|
|
+ dev_dbg(wsa2_priv->dev,
|
|
|
+ "%s: RX1 current thermal state: %d, "
|
|
|
+ "adjusted gain: %#x\n",
|
|
|
+ __func__, wsa2_priv->thermal_cur_state, gain);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
lpass_cdc_wsa2_macro_config_compander(component, w->shift, event);
|
|
|
lpass_cdc_wsa2_macro_config_softclip(component, w->shift, event);
|
|
|
break;
|
|
@@ -1929,11 +1964,27 @@ static int lpass_cdc_wsa2_macro_set_digital_volume(struct snd_kcontrol *kcontrol
|
|
|
|
|
|
ret = snd_soc_put_volsw(kcontrol, ucontrol);
|
|
|
|
|
|
- wsa2_priv->original_gain = (u8)snd_soc_component_read(wsa2_priv->component,
|
|
|
- mc->reg);
|
|
|
+ if (mc->reg == LPASS_CDC_WSA2_RX0_RX_VOL_CTL) {
|
|
|
+ wsa2_priv->rx0_origin_gain =
|
|
|
+ (u8)snd_soc_component_read(wsa2_priv->component,
|
|
|
+ mc->reg);
|
|
|
+ gain = (u8)(wsa2_priv->rx0_origin_gain -
|
|
|
+ wsa2_priv->thermal_cur_state);
|
|
|
+ } else if (mc->reg == LPASS_CDC_WSA2_RX1_RX_VOL_CTL) {
|
|
|
+ wsa2_priv->rx1_origin_gain =
|
|
|
+ (u8)snd_soc_component_read(wsa2_priv->component,
|
|
|
+ mc->reg);
|
|
|
+ gain = (u8)(wsa2_priv->rx1_origin_gain -
|
|
|
+ wsa2_priv->thermal_cur_state);
|
|
|
+ } else {
|
|
|
+ dev_err(wsa2_priv->dev,
|
|
|
+ "%s: Incorrect RX Path selected\n", __func__);
|
|
|
+ return -EINVAL;
|
|
|
+ }
|
|
|
|
|
|
- if (wsa2_priv->thermal_cur_state > 0) {
|
|
|
- gain = (u8)(wsa2_priv->original_gain - wsa2_priv->thermal_cur_state);
|
|
|
+ /* only adjust gain if thermal state is positive */
|
|
|
+ if (wsa2_priv->dapm_mclk_enable &&
|
|
|
+ wsa2_priv->thermal_cur_state > 0) {
|
|
|
snd_soc_component_update_bits(wsa2_priv->component,
|
|
|
mc->reg, 0xFF, gain);
|
|
|
dev_dbg(wsa2_priv->dev,
|
|
@@ -3009,9 +3060,7 @@ err:
|
|
|
static void lpass_cdc_wsa2_macro_cooling_adjust_gain(struct work_struct *work)
|
|
|
{
|
|
|
struct lpass_cdc_wsa2_macro_priv *wsa2_priv;
|
|
|
- struct snd_soc_dapm_context *dapm;
|
|
|
u8 gain = 0;
|
|
|
- u32 ctl_reg;
|
|
|
|
|
|
wsa2_priv = container_of(work, struct lpass_cdc_wsa2_macro_priv,
|
|
|
lpass_cdc_wsa2_macro_cooling_work);
|
|
@@ -3026,29 +3075,24 @@ static void lpass_cdc_wsa2_macro_cooling_adjust_gain(struct work_struct *work)
|
|
|
return;
|
|
|
}
|
|
|
|
|
|
- dapm = snd_soc_component_get_dapm(wsa2_priv->component);
|
|
|
-
|
|
|
/* Only adjust the volume when WSA2 clock is enabled */
|
|
|
- ctl_reg = snd_soc_component_read(wsa2_priv->component,
|
|
|
- LPASS_CDC_WSA2_RX0_RX_PATH_CTL);
|
|
|
- if (ctl_reg & 0x20) {
|
|
|
- gain = (u8)(wsa2_priv->original_gain - wsa2_priv->thermal_cur_state);
|
|
|
+ if (wsa2_priv->dapm_mclk_enable) {
|
|
|
+ gain = (u8)(wsa2_priv->rx0_origin_gain -
|
|
|
+ wsa2_priv->thermal_cur_state);
|
|
|
snd_soc_component_update_bits(wsa2_priv->component,
|
|
|
LPASS_CDC_WSA2_RX0_RX_VOL_CTL, 0xFF, gain);
|
|
|
dev_dbg(wsa2_priv->dev,
|
|
|
- "%s: RX0 current thermal state: %d, adjusted gain: %#x\n",
|
|
|
+ "%s: RX0 current thermal state: %d, "
|
|
|
+ "adjusted gain: %#x\n",
|
|
|
__func__, wsa2_priv->thermal_cur_state, gain);
|
|
|
- }
|
|
|
|
|
|
- /* Only adjust the volume when WSA2 clock is enabled */
|
|
|
- ctl_reg = snd_soc_component_read(wsa2_priv->component,
|
|
|
- LPASS_CDC_WSA2_RX1_RX_PATH_CTL);
|
|
|
- if (ctl_reg & 0x20) {
|
|
|
- gain = (u8)(wsa2_priv->original_gain - wsa2_priv->thermal_cur_state);
|
|
|
+ gain = (u8)(wsa2_priv->rx1_origin_gain -
|
|
|
+ wsa2_priv->thermal_cur_state);
|
|
|
snd_soc_component_update_bits(wsa2_priv->component,
|
|
|
LPASS_CDC_WSA2_RX1_RX_VOL_CTL, 0xFF, gain);
|
|
|
dev_dbg(wsa2_priv->dev,
|
|
|
- "%s: RX1 current thermal state: %d, adjusted gain: %#x\n",
|
|
|
+ "%s: RX1 current thermal state: %d, "
|
|
|
+ "adjusted gain: %#x\n",
|
|
|
__func__, wsa2_priv->thermal_cur_state, gain);
|
|
|
}
|
|
|
|