@@ -144,6 +144,7 @@ struct hdac_hdmi_priv {
int num_pin;
int num_cvt;
int num_ports;
+ int display_power; /* 0: power off; 1 power on */
struct mutex pin_mutex;
struct hdac_chmap chmap;
struct hdac_hdmi_drv_data *drv_data;
@@ -742,12 +743,26 @@ static void hdac_hdmi_set_amp(struct hdac_device *hdev,
AC_VERB_SET_AMP_GAIN_MUTE, val);
}
+static int wait_for_display_power(struct hdac_hdmi_priv *hdmi)
+{
+ int i = 0;
+
+ /* sleep for totally 80ms ~ 200ms should be enough */
+ while (i < 40) {
+ if (!hdmi->display_power)
+ usleep_range(2000, 5000);
+ else
+ return 0;
+ }
+ return -EAGAIN;
+}
static int hdac_hdmi_pin_output_widget_event(struct snd_soc_dapm_widget *w,
struct snd_kcontrol *kc, int event)
{
struct hdac_hdmi_port *port = w->priv;
struct hdac_device *hdev = dev_to_hdac_dev(w->dapm->dev);
+ struct hdac_hdmi_priv *hdmi = hdev_to_hdmi_priv(hdev);
struct hdac_hdmi_pcm *pcm;
dev_dbg(&hdev->dev, "%s: widget: %s event: %x\n",
@@ -757,6 +772,11 @@ static int hdac_hdmi_pin_output_widget_event(struct snd_soc_dapm_widget *w,
if (!pcm)
return -EIO;
+ if (wait_for_display_power(hdmi)) {
+ dev_err(&hdev->dev, "%s: hdmi power is not ready\n", __func__);
+ return -EAGAIN;
+ }
+
/* set the device if pin is mst_capable */
if (hdac_hdmi_port_select_set(hdev, port) < 0)
return -EIO;
@@ -803,6 +823,11 @@ static int hdac_hdmi_cvt_output_widget_event(struct snd_soc_dapm_widget *w,
if (!pcm)
return -EIO;
+ if (wait_for_display_power(hdmi)) {
+ dev_err(&hdev->dev, "%s: hdmi power is not ready\n", __func__);
+ return -EAGAIN;
+ }
+
switch (event) {
case SND_SOC_DAPM_PRE_PMU:
hdac_hdmi_set_power_state(hdev, cvt->nid, AC_PWRST_D0);
@@ -840,6 +865,7 @@ static int hdac_hdmi_pin_mux_widget_event(struct snd_soc_dapm_widget *w,
{
struct hdac_hdmi_port *port = w->priv;
struct hdac_device *hdev = dev_to_hdac_dev(w->dapm->dev);
+ struct hdac_hdmi_priv *hdmi = hdev_to_hdmi_priv(hdev);
int mux_idx;
dev_dbg(&hdev->dev, "%s: widget: %s event: %x\n",
@@ -850,6 +876,11 @@ static int hdac_hdmi_pin_mux_widget_event(struct snd_soc_dapm_widget *w,
mux_idx = dapm_kcontrol_get_value(kc);
+ if (wait_for_display_power(hdmi)) {
+ dev_err(&hdev->dev, "%s: hdmi power is not ready\n", __func__);
+ return -EAGAIN;
+ }
+
/* set the device if pin is mst_capable */
if (hdac_hdmi_port_select_set(hdev, port) < 0)
return -EIO;
@@ -2068,6 +2099,7 @@ static int hdac_hdmi_runtime_suspend(struct device *dev)
{
struct hdac_device *hdev = dev_to_hdac_dev(dev);
struct hdac_bus *bus = hdev->bus;
+ struct hdac_hdmi_priv *hdmi = hdev_to_hdmi_priv(hdev);
struct hdac_ext_link *hlink = NULL;
dev_dbg(dev, "Enter: %s\n", __func__);
@@ -2095,6 +2127,7 @@ static int hdac_hdmi_runtime_suspend(struct device *dev)
snd_hdac_ext_bus_link_put(bus, hlink);
snd_hdac_display_power(bus, hdev->addr, false);
+ hdmi->display_power = 0;
return 0;
}
@@ -2102,6 +2135,7 @@ static int hdac_hdmi_runtime_suspend(struct device *dev)
static int hdac_hdmi_runtime_resume(struct device *dev)
{
struct hdac_device *hdev = dev_to_hdac_dev(dev);
+ struct hdac_hdmi_priv *hdmi = hdev_to_hdmi_priv(hdev);
struct hdac_bus *bus = hdev->bus;
struct hdac_ext_link *hlink = NULL;
@@ -2128,6 +2162,7 @@ static int hdac_hdmi_runtime_resume(struct device *dev)
snd_hdac_codec_read(hdev, hdev->afg, 0, AC_VERB_SET_POWER_STATE,
AC_PWRST_D0);
+ hdmi->display_power = 1;
return 0;
}
#else