PM / sleep: Asynchronous threads for suspend_noirq
[linux/fpc-iii.git] / drivers / gpu / drm / msm / hdmi / hdmi_connector.c
blob7dedfdd120759d51c7bd5a940bb01e874b87f579
1 /*
2 * Copyright (C) 2013 Red Hat
3 * Author: Rob Clark <robdclark@gmail.com>
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 as published by
7 * the Free Software Foundation.
9 * This program is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12 * more details.
14 * You should have received a copy of the GNU General Public License along with
15 * this program. If not, see <http://www.gnu.org/licenses/>.
18 #include <linux/gpio.h>
20 #include "msm_kms.h"
21 #include "hdmi.h"
23 struct hdmi_connector {
24 struct drm_connector base;
25 struct hdmi *hdmi;
26 struct work_struct hpd_work;
28 #define to_hdmi_connector(x) container_of(x, struct hdmi_connector, base)
30 static int gpio_config(struct hdmi *hdmi, bool on)
32 struct drm_device *dev = hdmi->dev;
33 const struct hdmi_platform_config *config = hdmi->config;
34 int ret;
36 if (on) {
37 ret = gpio_request(config->ddc_clk_gpio, "HDMI_DDC_CLK");
38 if (ret) {
39 dev_err(dev->dev, "'%s'(%d) gpio_request failed: %d\n",
40 "HDMI_DDC_CLK", config->ddc_clk_gpio, ret);
41 goto error1;
43 gpio_set_value_cansleep(config->ddc_clk_gpio, 1);
45 ret = gpio_request(config->ddc_data_gpio, "HDMI_DDC_DATA");
46 if (ret) {
47 dev_err(dev->dev, "'%s'(%d) gpio_request failed: %d\n",
48 "HDMI_DDC_DATA", config->ddc_data_gpio, ret);
49 goto error2;
51 gpio_set_value_cansleep(config->ddc_data_gpio, 1);
53 ret = gpio_request(config->hpd_gpio, "HDMI_HPD");
54 if (ret) {
55 dev_err(dev->dev, "'%s'(%d) gpio_request failed: %d\n",
56 "HDMI_HPD", config->hpd_gpio, ret);
57 goto error3;
59 gpio_direction_input(config->hpd_gpio);
60 gpio_set_value_cansleep(config->hpd_gpio, 1);
62 if (config->mux_en_gpio != -1) {
63 ret = gpio_request(config->mux_en_gpio, "HDMI_MUX_EN");
64 if (ret) {
65 dev_err(dev->dev, "'%s'(%d) gpio_request failed: %d\n",
66 "HDMI_MUX_SEL", config->mux_en_gpio, ret);
67 goto error4;
69 gpio_set_value_cansleep(config->mux_en_gpio, 1);
72 if (config->mux_sel_gpio != -1) {
73 ret = gpio_request(config->mux_sel_gpio, "HDMI_MUX_SEL");
74 if (ret) {
75 dev_err(dev->dev, "'%s'(%d) gpio_request failed: %d\n",
76 "HDMI_MUX_SEL", config->mux_sel_gpio, ret);
77 goto error5;
79 gpio_set_value_cansleep(config->mux_sel_gpio, 0);
81 DBG("gpio on");
82 } else {
83 gpio_free(config->ddc_clk_gpio);
84 gpio_free(config->ddc_data_gpio);
85 gpio_free(config->hpd_gpio);
87 if (config->mux_en_gpio != -1) {
88 gpio_set_value_cansleep(config->mux_en_gpio, 0);
89 gpio_free(config->mux_en_gpio);
92 if (config->mux_sel_gpio != -1) {
93 gpio_set_value_cansleep(config->mux_sel_gpio, 1);
94 gpio_free(config->mux_sel_gpio);
96 DBG("gpio off");
99 return 0;
101 error5:
102 if (config->mux_en_gpio != -1)
103 gpio_free(config->mux_en_gpio);
104 error4:
105 gpio_free(config->hpd_gpio);
106 error3:
107 gpio_free(config->ddc_data_gpio);
108 error2:
109 gpio_free(config->ddc_clk_gpio);
110 error1:
111 return ret;
114 static int hpd_enable(struct hdmi_connector *hdmi_connector)
116 struct hdmi *hdmi = hdmi_connector->hdmi;
117 const struct hdmi_platform_config *config = hdmi->config;
118 struct drm_device *dev = hdmi_connector->base.dev;
119 struct hdmi_phy *phy = hdmi->phy;
120 uint32_t hpd_ctrl;
121 int i, ret;
123 ret = gpio_config(hdmi, true);
124 if (ret) {
125 dev_err(dev->dev, "failed to configure GPIOs: %d\n", ret);
126 goto fail;
129 for (i = 0; i < config->hpd_clk_cnt; i++) {
130 ret = clk_prepare_enable(hdmi->hpd_clks[i]);
131 if (ret) {
132 dev_err(dev->dev, "failed to enable hpd clk: %s (%d)\n",
133 config->hpd_clk_names[i], ret);
134 goto fail;
138 for (i = 0; i < config->hpd_reg_cnt; i++) {
139 ret = regulator_enable(hdmi->hpd_regs[i]);
140 if (ret) {
141 dev_err(dev->dev, "failed to enable hpd regulator: %s (%d)\n",
142 config->hpd_reg_names[i], ret);
143 goto fail;
147 hdmi_set_mode(hdmi, false);
148 phy->funcs->reset(phy);
149 hdmi_set_mode(hdmi, true);
151 hdmi_write(hdmi, REG_HDMI_USEC_REFTIMER, 0x0001001b);
153 /* enable HPD events: */
154 hdmi_write(hdmi, REG_HDMI_HPD_INT_CTRL,
155 HDMI_HPD_INT_CTRL_INT_CONNECT |
156 HDMI_HPD_INT_CTRL_INT_EN);
158 /* set timeout to 4.1ms (max) for hardware debounce */
159 hpd_ctrl = hdmi_read(hdmi, REG_HDMI_HPD_CTRL);
160 hpd_ctrl |= HDMI_HPD_CTRL_TIMEOUT(0x1fff);
162 /* Toggle HPD circuit to trigger HPD sense */
163 hdmi_write(hdmi, REG_HDMI_HPD_CTRL,
164 ~HDMI_HPD_CTRL_ENABLE & hpd_ctrl);
165 hdmi_write(hdmi, REG_HDMI_HPD_CTRL,
166 HDMI_HPD_CTRL_ENABLE | hpd_ctrl);
168 return 0;
170 fail:
171 return ret;
174 static int hdp_disable(struct hdmi_connector *hdmi_connector)
176 struct hdmi *hdmi = hdmi_connector->hdmi;
177 const struct hdmi_platform_config *config = hdmi->config;
178 struct drm_device *dev = hdmi_connector->base.dev;
179 int i, ret = 0;
181 /* Disable HPD interrupt */
182 hdmi_write(hdmi, REG_HDMI_HPD_INT_CTRL, 0);
184 hdmi_set_mode(hdmi, false);
186 for (i = 0; i < config->hpd_reg_cnt; i++) {
187 ret = regulator_disable(hdmi->hpd_regs[i]);
188 if (ret) {
189 dev_err(dev->dev, "failed to disable hpd regulator: %s (%d)\n",
190 config->hpd_reg_names[i], ret);
191 goto fail;
195 for (i = 0; i < config->hpd_clk_cnt; i++)
196 clk_disable_unprepare(hdmi->hpd_clks[i]);
198 ret = gpio_config(hdmi, false);
199 if (ret) {
200 dev_err(dev->dev, "failed to unconfigure GPIOs: %d\n", ret);
201 goto fail;
204 return 0;
206 fail:
207 return ret;
210 static void
211 hotplug_work(struct work_struct *work)
213 struct hdmi_connector *hdmi_connector =
214 container_of(work, struct hdmi_connector, hpd_work);
215 struct drm_connector *connector = &hdmi_connector->base;
216 drm_helper_hpd_irq_event(connector->dev);
219 void hdmi_connector_irq(struct drm_connector *connector)
221 struct hdmi_connector *hdmi_connector = to_hdmi_connector(connector);
222 struct msm_drm_private *priv = connector->dev->dev_private;
223 struct hdmi *hdmi = hdmi_connector->hdmi;
224 uint32_t hpd_int_status, hpd_int_ctrl;
226 /* Process HPD: */
227 hpd_int_status = hdmi_read(hdmi, REG_HDMI_HPD_INT_STATUS);
228 hpd_int_ctrl = hdmi_read(hdmi, REG_HDMI_HPD_INT_CTRL);
230 if ((hpd_int_ctrl & HDMI_HPD_INT_CTRL_INT_EN) &&
231 (hpd_int_status & HDMI_HPD_INT_STATUS_INT)) {
232 bool detected = !!(hpd_int_status & HDMI_HPD_INT_STATUS_CABLE_DETECTED);
234 DBG("status=%04x, ctrl=%04x", hpd_int_status, hpd_int_ctrl);
236 /* ack the irq: */
237 hdmi_write(hdmi, REG_HDMI_HPD_INT_CTRL,
238 hpd_int_ctrl | HDMI_HPD_INT_CTRL_INT_ACK);
240 /* detect disconnect if we are connected or visa versa: */
241 hpd_int_ctrl = HDMI_HPD_INT_CTRL_INT_EN;
242 if (!detected)
243 hpd_int_ctrl |= HDMI_HPD_INT_CTRL_INT_CONNECT;
244 hdmi_write(hdmi, REG_HDMI_HPD_INT_CTRL, hpd_int_ctrl);
246 queue_work(priv->wq, &hdmi_connector->hpd_work);
250 static enum drm_connector_status hdmi_connector_detect(
251 struct drm_connector *connector, bool force)
253 struct hdmi_connector *hdmi_connector = to_hdmi_connector(connector);
254 struct hdmi *hdmi = hdmi_connector->hdmi;
255 const struct hdmi_platform_config *config = hdmi->config;
256 uint32_t hpd_int_status;
257 int retry = 20;
259 hpd_int_status = hdmi_read(hdmi, REG_HDMI_HPD_INT_STATUS);
261 /* sense seems to in some cases be momentarily de-asserted, don't
262 * let that trick us into thinking the monitor is gone:
264 while (retry-- && !(hpd_int_status & HDMI_HPD_INT_STATUS_CABLE_DETECTED)) {
265 /* hdmi debounce logic seems to get stuck sometimes,
266 * read directly the gpio to get a second opinion:
268 if (gpio_get_value(config->hpd_gpio)) {
269 DBG("gpio tells us we are connected!");
270 hpd_int_status |= HDMI_HPD_INT_STATUS_CABLE_DETECTED;
271 break;
273 mdelay(10);
274 hpd_int_status = hdmi_read(hdmi, REG_HDMI_HPD_INT_STATUS);
275 DBG("status=%08x", hpd_int_status);
278 return (hpd_int_status & HDMI_HPD_INT_STATUS_CABLE_DETECTED) ?
279 connector_status_connected : connector_status_disconnected;
282 static void hdmi_connector_destroy(struct drm_connector *connector)
284 struct hdmi_connector *hdmi_connector = to_hdmi_connector(connector);
286 hdp_disable(hdmi_connector);
288 drm_sysfs_connector_remove(connector);
289 drm_connector_cleanup(connector);
291 hdmi_unreference(hdmi_connector->hdmi);
293 kfree(hdmi_connector);
296 static int hdmi_connector_get_modes(struct drm_connector *connector)
298 struct hdmi_connector *hdmi_connector = to_hdmi_connector(connector);
299 struct hdmi *hdmi = hdmi_connector->hdmi;
300 struct edid *edid;
301 uint32_t hdmi_ctrl;
302 int ret = 0;
304 hdmi_ctrl = hdmi_read(hdmi, REG_HDMI_CTRL);
305 hdmi_write(hdmi, REG_HDMI_CTRL, hdmi_ctrl | HDMI_CTRL_ENABLE);
307 edid = drm_get_edid(connector, hdmi->i2c);
309 hdmi_write(hdmi, REG_HDMI_CTRL, hdmi_ctrl);
311 drm_mode_connector_update_edid_property(connector, edid);
313 if (edid) {
314 ret = drm_add_edid_modes(connector, edid);
315 kfree(edid);
318 return ret;
321 static int hdmi_connector_mode_valid(struct drm_connector *connector,
322 struct drm_display_mode *mode)
324 struct hdmi_connector *hdmi_connector = to_hdmi_connector(connector);
325 struct hdmi *hdmi = hdmi_connector->hdmi;
326 const struct hdmi_platform_config *config = hdmi->config;
327 struct msm_drm_private *priv = connector->dev->dev_private;
328 struct msm_kms *kms = priv->kms;
329 long actual, requested;
331 requested = 1000 * mode->clock;
332 actual = kms->funcs->round_pixclk(kms,
333 requested, hdmi_connector->hdmi->encoder);
335 /* for mdp5/apq8074, we manage our own pixel clk (as opposed to
336 * mdp4/dtv stuff where pixel clk is assigned to mdp/encoder
337 * instead):
339 if (config->pwr_clk_cnt > 0)
340 actual = clk_round_rate(hdmi->pwr_clks[0], actual);
342 DBG("requested=%ld, actual=%ld", requested, actual);
344 if (actual != requested)
345 return MODE_CLOCK_RANGE;
347 return 0;
350 static struct drm_encoder *
351 hdmi_connector_best_encoder(struct drm_connector *connector)
353 struct hdmi_connector *hdmi_connector = to_hdmi_connector(connector);
354 return hdmi_connector->hdmi->encoder;
357 static const struct drm_connector_funcs hdmi_connector_funcs = {
358 .dpms = drm_helper_connector_dpms,
359 .detect = hdmi_connector_detect,
360 .fill_modes = drm_helper_probe_single_connector_modes,
361 .destroy = hdmi_connector_destroy,
364 static const struct drm_connector_helper_funcs hdmi_connector_helper_funcs = {
365 .get_modes = hdmi_connector_get_modes,
366 .mode_valid = hdmi_connector_mode_valid,
367 .best_encoder = hdmi_connector_best_encoder,
370 /* initialize connector */
371 struct drm_connector *hdmi_connector_init(struct hdmi *hdmi)
373 struct drm_connector *connector = NULL;
374 struct hdmi_connector *hdmi_connector;
375 int ret;
377 hdmi_connector = kzalloc(sizeof(*hdmi_connector), GFP_KERNEL);
378 if (!hdmi_connector) {
379 ret = -ENOMEM;
380 goto fail;
383 hdmi_connector->hdmi = hdmi_reference(hdmi);
384 INIT_WORK(&hdmi_connector->hpd_work, hotplug_work);
386 connector = &hdmi_connector->base;
388 drm_connector_init(hdmi->dev, connector, &hdmi_connector_funcs,
389 DRM_MODE_CONNECTOR_HDMIA);
390 drm_connector_helper_add(connector, &hdmi_connector_helper_funcs);
392 connector->polled = DRM_CONNECTOR_POLL_HPD;
394 connector->interlace_allowed = 1;
395 connector->doublescan_allowed = 0;
397 drm_sysfs_connector_add(connector);
399 ret = hpd_enable(hdmi_connector);
400 if (ret) {
401 dev_err(hdmi->dev->dev, "failed to enable HPD: %d\n", ret);
402 goto fail;
405 drm_mode_connector_attach_encoder(connector, hdmi->encoder);
407 return connector;
409 fail:
410 if (connector)
411 hdmi_connector_destroy(connector);
413 return ERR_PTR(ret);