Merge "asoc: wcd934x: set bus down flag right when notification reaches"
This commit is contained in:

committed by
Gerrit - the friendly Code Review server

commit
ccde4f27a1
@@ -350,7 +350,7 @@ struct wcd9xxx {
|
|||||||
int (*post_reset)(struct wcd9xxx *wcd9xxx);
|
int (*post_reset)(struct wcd9xxx *wcd9xxx);
|
||||||
|
|
||||||
void *ssr_priv;
|
void *ssr_priv;
|
||||||
unsigned long dev_up;
|
bool dev_up;
|
||||||
|
|
||||||
u32 num_of_supplies;
|
u32 num_of_supplies;
|
||||||
struct regulator_bulk_data *supplies;
|
struct regulator_bulk_data *supplies;
|
||||||
|
@@ -9216,13 +9216,13 @@ static int tavil_device_down(struct wcd9xxx *wcd9xxx)
|
|||||||
|
|
||||||
codec = (struct snd_soc_codec *)(wcd9xxx->ssr_priv);
|
codec = (struct snd_soc_codec *)(wcd9xxx->ssr_priv);
|
||||||
priv = snd_soc_codec_get_drvdata(codec);
|
priv = snd_soc_codec_get_drvdata(codec);
|
||||||
|
for (count = 0; count < NUM_CODEC_DAIS; count++)
|
||||||
|
priv->dai[count].bus_down_in_recovery = true;
|
||||||
if (priv->swr.ctrl_data)
|
if (priv->swr.ctrl_data)
|
||||||
swrm_wcd_notify(priv->swr.ctrl_data[0].swr_pdev,
|
swrm_wcd_notify(priv->swr.ctrl_data[0].swr_pdev,
|
||||||
SWR_DEVICE_DOWN, NULL);
|
SWR_DEVICE_DOWN, NULL);
|
||||||
tavil_dsd_reset(priv->dsd_config);
|
tavil_dsd_reset(priv->dsd_config);
|
||||||
snd_soc_card_change_online_state(codec->component.card, 0);
|
snd_soc_card_change_online_state(codec->component.card, 0);
|
||||||
for (count = 0; count < NUM_CODEC_DAIS; count++)
|
|
||||||
priv->dai[count].bus_down_in_recovery = true;
|
|
||||||
wcd_dsp_ssr_event(priv->wdsp_cntl, WCD_CDC_DOWN_EVENT);
|
wcd_dsp_ssr_event(priv->wdsp_cntl, WCD_CDC_DOWN_EVENT);
|
||||||
wcd_resmgr_set_sido_input_src_locked(priv->resmgr,
|
wcd_resmgr_set_sido_input_src_locked(priv->resmgr,
|
||||||
SIDO_SOURCE_INTERNAL);
|
SIDO_SOURCE_INTERNAL);
|
||||||
|
@@ -228,7 +228,7 @@ static int wcd9xxx_slim_read_device(struct wcd9xxx *wcd9xxx, unsigned short reg,
|
|||||||
|
|
||||||
if (!wcd9xxx->dev_up) {
|
if (!wcd9xxx->dev_up) {
|
||||||
dev_dbg_ratelimited(
|
dev_dbg_ratelimited(
|
||||||
wcd9xxx->dev, "%s: No read allowed. dev_up = %lu\n",
|
wcd9xxx->dev, "%s: No read allowed. dev_up = %d\n",
|
||||||
__func__, wcd9xxx->dev_up);
|
__func__, wcd9xxx->dev_up);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
@@ -268,7 +268,7 @@ static int wcd9xxx_slim_write_device(struct wcd9xxx *wcd9xxx,
|
|||||||
|
|
||||||
if (!wcd9xxx->dev_up) {
|
if (!wcd9xxx->dev_up) {
|
||||||
dev_dbg_ratelimited(
|
dev_dbg_ratelimited(
|
||||||
wcd9xxx->dev, "%s: No write allowed. dev_up = %lu\n",
|
wcd9xxx->dev, "%s: No write allowed. dev_up = %d\n",
|
||||||
__func__, wcd9xxx->dev_up);
|
__func__, wcd9xxx->dev_up);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
@@ -345,7 +345,7 @@ int wcd9xxx_slim_write_repeat(struct wcd9xxx *wcd9xxx, unsigned short reg,
|
|||||||
|
|
||||||
if (!wcd9xxx->dev_up) {
|
if (!wcd9xxx->dev_up) {
|
||||||
dev_dbg_ratelimited(
|
dev_dbg_ratelimited(
|
||||||
wcd9xxx->dev, "%s: No write allowed. dev_up = %lu\n",
|
wcd9xxx->dev, "%s: No write allowed. dev_up = %d\n",
|
||||||
__func__, wcd9xxx->dev_up);
|
__func__, wcd9xxx->dev_up);
|
||||||
ret = 0;
|
ret = 0;
|
||||||
goto done;
|
goto done;
|
||||||
@@ -426,7 +426,7 @@ int wcd9xxx_slim_bulk_write(struct wcd9xxx *wcd9xxx,
|
|||||||
|
|
||||||
if (!wcd9xxx->dev_up) {
|
if (!wcd9xxx->dev_up) {
|
||||||
dev_dbg_ratelimited(
|
dev_dbg_ratelimited(
|
||||||
wcd9xxx->dev, "%s: No write allowed. dev_up = %lu\n",
|
wcd9xxx->dev, "%s: No write allowed. dev_up = %d\n",
|
||||||
__func__, wcd9xxx->dev_up);
|
__func__, wcd9xxx->dev_up);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
@@ -1484,27 +1484,12 @@ static int wcd9xxx_slim_device_reset(struct slim_device *sldev)
|
|||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
dev_info(wcd9xxx->dev, "%s: device reset, dev_up = %d\n",
|
||||||
* Wait for 500 ms for device down to complete. Observed delay
|
__func__, wcd9xxx->dev_up);
|
||||||
* of ~200ms for device down to complete after being called,
|
if (wcd9xxx->dev_up)
|
||||||
* due to context switch issue.
|
return 0;
|
||||||
*/
|
|
||||||
ret = wait_on_bit_timeout(&wcd9xxx->dev_up, 0,
|
|
||||||
TASK_INTERRUPTIBLE,
|
|
||||||
msecs_to_jiffies(500));
|
|
||||||
if (ret)
|
|
||||||
pr_err("%s: slim device down not complete in 500 msec\n",
|
|
||||||
__func__);
|
|
||||||
|
|
||||||
mutex_lock(&wcd9xxx->reset_lock);
|
mutex_lock(&wcd9xxx->reset_lock);
|
||||||
|
|
||||||
dev_info(wcd9xxx->dev, "%s: device reset, dev_up = %lu\n",
|
|
||||||
__func__, wcd9xxx->dev_up);
|
|
||||||
if (wcd9xxx->dev_up) {
|
|
||||||
mutex_unlock(&wcd9xxx->reset_lock);
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
ret = wcd9xxx_reset(wcd9xxx->dev);
|
ret = wcd9xxx_reset(wcd9xxx->dev);
|
||||||
if (ret)
|
if (ret)
|
||||||
dev_err(wcd9xxx->dev, "%s: Resetting Codec failed\n", __func__);
|
dev_err(wcd9xxx->dev, "%s: Resetting Codec failed\n", __func__);
|
||||||
@@ -1522,8 +1507,8 @@ static int wcd9xxx_slim_device_up(struct slim_device *sldev)
|
|||||||
pr_err("%s: wcd9xxx is NULL\n", __func__);
|
pr_err("%s: wcd9xxx is NULL\n", __func__);
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
}
|
}
|
||||||
dev_info(wcd9xxx->dev, "%s: slim device up, dev_up = %lu\n",
|
dev_info(wcd9xxx->dev, "%s: slim device up, dev_up = %d\n",
|
||||||
__func__, wcd9xxx->dev_up);
|
__func__, wcd9xxx->dev_up);
|
||||||
if (wcd9xxx->dev_up)
|
if (wcd9xxx->dev_up)
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
@@ -1545,20 +1530,18 @@ static int wcd9xxx_slim_device_down(struct slim_device *sldev)
|
|||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
}
|
}
|
||||||
|
|
||||||
mutex_lock(&wcd9xxx->reset_lock);
|
dev_info(wcd9xxx->dev, "%s: device down, dev_up = %d\n",
|
||||||
|
__func__, wcd9xxx->dev_up);
|
||||||
dev_info(wcd9xxx->dev, "%s: device down, dev_up = %lu\n",
|
if (!wcd9xxx->dev_up)
|
||||||
__func__, wcd9xxx->dev_up);
|
|
||||||
if (!wcd9xxx->dev_up) {
|
|
||||||
mutex_unlock(&wcd9xxx->reset_lock);
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
|
||||||
|
|
||||||
|
wcd9xxx->dev_up = false;
|
||||||
|
|
||||||
|
mutex_lock(&wcd9xxx->reset_lock);
|
||||||
if (wcd9xxx->dev_down)
|
if (wcd9xxx->dev_down)
|
||||||
wcd9xxx->dev_down(wcd9xxx);
|
wcd9xxx->dev_down(wcd9xxx);
|
||||||
wcd9xxx_irq_exit(&wcd9xxx->core_res);
|
wcd9xxx_irq_exit(&wcd9xxx->core_res);
|
||||||
wcd9xxx_reset_low(wcd9xxx->dev);
|
wcd9xxx_reset_low(wcd9xxx->dev);
|
||||||
wcd9xxx->dev_up = false;
|
|
||||||
mutex_unlock(&wcd9xxx->reset_lock);
|
mutex_unlock(&wcd9xxx->reset_lock);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
Reference in New Issue
Block a user