diff options
author | Marek Szyprowski <m.szyprowski@samsung.com> | 2014-07-01 04:10:06 -0400 |
---|---|---|
committer | Inki Dae <daeinki@gmail.com> | 2014-08-03 03:52:13 -0400 |
commit | 05fdf98742e41e89816d115decaf478c28477ab9 (patch) | |
tree | afcd1d1454243a9bc81542201e3963d1cb5e1ba9 | |
parent | 8f589bba25201b4574ad56ff56b153b10595e3ef (diff) |
drm/exynos: hdmi: make 'hdmi-en' regulator optional and keep it enabled
HDMI_EN regulator is additional regulator for providing voltage source
for DCC lines available on HDMI connector. When there is no power
provided for DDC epprom, some TV-sets do not pulls up HPD (hot plug
detect) line, what causes HDMI block to stay turned off. This patch
enables HDMI_EN regulator (if available) on driver probe and keep it
enabled all the time to let TV-set correctly signal HPD event.
Signed-off-by: Marek Szyprowski <m.szyprowski@samsung.com>
Signed-off-by: Inki Dae <inki.dae@samsung.com>
-rw-r--r-- | drivers/gpu/drm/exynos/exynos_hdmi.c | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/drivers/gpu/drm/exynos/exynos_hdmi.c b/drivers/gpu/drm/exynos/exynos_hdmi.c index 738f2d7e16a1..9ec787f8529a 100644 --- a/drivers/gpu/drm/exynos/exynos_hdmi.c +++ b/drivers/gpu/drm/exynos/exynos_hdmi.c | |||
@@ -84,6 +84,7 @@ struct hdmi_resources { | |||
84 | struct clk *sclk_hdmiphy; | 84 | struct clk *sclk_hdmiphy; |
85 | struct clk *mout_hdmi; | 85 | struct clk *mout_hdmi; |
86 | struct regulator_bulk_data *regul_bulk; | 86 | struct regulator_bulk_data *regul_bulk; |
87 | struct regulator *reg_hdmi_en; | ||
87 | int regul_count; | 88 | int regul_count; |
88 | }; | 89 | }; |
89 | 90 | ||
@@ -2167,7 +2168,6 @@ static int hdmi_resources_init(struct hdmi_context *hdata) | |||
2167 | struct device *dev = hdata->dev; | 2168 | struct device *dev = hdata->dev; |
2168 | struct hdmi_resources *res = &hdata->res; | 2169 | struct hdmi_resources *res = &hdata->res; |
2169 | static char *supply[] = { | 2170 | static char *supply[] = { |
2170 | "hdmi-en", | ||
2171 | "vdd", | 2171 | "vdd", |
2172 | "vdd_osc", | 2172 | "vdd_osc", |
2173 | "vdd_pll", | 2173 | "vdd_pll", |
@@ -2227,6 +2227,20 @@ static int hdmi_resources_init(struct hdmi_context *hdata) | |||
2227 | } | 2227 | } |
2228 | res->regul_count = ARRAY_SIZE(supply); | 2228 | res->regul_count = ARRAY_SIZE(supply); |
2229 | 2229 | ||
2230 | res->reg_hdmi_en = devm_regulator_get(dev, "hdmi-en"); | ||
2231 | if (IS_ERR(res->reg_hdmi_en) && PTR_ERR(res->reg_hdmi_en) != -ENOENT) { | ||
2232 | DRM_ERROR("failed to get hdmi-en regulator\n"); | ||
2233 | return PTR_ERR(res->reg_hdmi_en); | ||
2234 | } | ||
2235 | if (!IS_ERR(res->reg_hdmi_en)) { | ||
2236 | ret = regulator_enable(res->reg_hdmi_en); | ||
2237 | if (ret) { | ||
2238 | DRM_ERROR("failed to enable hdmi-en regulator\n"); | ||
2239 | return ret; | ||
2240 | } | ||
2241 | } else | ||
2242 | res->reg_hdmi_en = NULL; | ||
2243 | |||
2230 | return ret; | 2244 | return ret; |
2231 | fail: | 2245 | fail: |
2232 | DRM_ERROR("HDMI resource init - failed\n"); | 2246 | DRM_ERROR("HDMI resource init - failed\n"); |
@@ -2493,6 +2507,9 @@ static int hdmi_remove(struct platform_device *pdev) | |||
2493 | 2507 | ||
2494 | cancel_delayed_work_sync(&hdata->hotplug_work); | 2508 | cancel_delayed_work_sync(&hdata->hotplug_work); |
2495 | 2509 | ||
2510 | if (hdata->res.reg_hdmi_en) | ||
2511 | regulator_disable(hdata->res.reg_hdmi_en); | ||
2512 | |||
2496 | put_device(&hdata->hdmiphy_port->dev); | 2513 | put_device(&hdata->hdmiphy_port->dev); |
2497 | put_device(&hdata->ddc_adpt->dev); | 2514 | put_device(&hdata->ddc_adpt->dev); |
2498 | 2515 | ||