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
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>
23 struct hdmi_connector
{
24 struct drm_connector base
;
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
;
37 ret
= gpio_request(config
->ddc_clk_gpio
, "HDMI_DDC_CLK");
39 dev_err(dev
->dev
, "'%s'(%d) gpio_request failed: %d\n",
40 "HDMI_DDC_CLK", config
->ddc_clk_gpio
, ret
);
43 gpio_set_value_cansleep(config
->ddc_clk_gpio
, 1);
45 ret
= gpio_request(config
->ddc_data_gpio
, "HDMI_DDC_DATA");
47 dev_err(dev
->dev
, "'%s'(%d) gpio_request failed: %d\n",
48 "HDMI_DDC_DATA", config
->ddc_data_gpio
, ret
);
51 gpio_set_value_cansleep(config
->ddc_data_gpio
, 1);
53 ret
= gpio_request(config
->hpd_gpio
, "HDMI_HPD");
55 dev_err(dev
->dev
, "'%s'(%d) gpio_request failed: %d\n",
56 "HDMI_HPD", config
->hpd_gpio
, ret
);
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");
65 dev_err(dev
->dev
, "'%s'(%d) gpio_request failed: %d\n",
66 "HDMI_MUX_SEL", config
->mux_en_gpio
, ret
);
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");
75 dev_err(dev
->dev
, "'%s'(%d) gpio_request failed: %d\n",
76 "HDMI_MUX_SEL", config
->mux_sel_gpio
, ret
);
79 gpio_set_value_cansleep(config
->mux_sel_gpio
, 0);
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
);
102 if (config
->mux_en_gpio
!= -1)
103 gpio_free(config
->mux_en_gpio
);
105 gpio_free(config
->hpd_gpio
);
107 gpio_free(config
->ddc_data_gpio
);
109 gpio_free(config
->ddc_clk_gpio
);
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
;
123 ret
= gpio_config(hdmi
, true);
125 dev_err(dev
->dev
, "failed to configure GPIOs: %d\n", ret
);
129 for (i
= 0; i
< config
->hpd_clk_cnt
; i
++) {
130 ret
= clk_prepare_enable(hdmi
->hpd_clks
[i
]);
132 dev_err(dev
->dev
, "failed to enable hpd clk: %s (%d)\n",
133 config
->hpd_clk_names
[i
], ret
);
138 for (i
= 0; i
< config
->hpd_reg_cnt
; i
++) {
139 ret
= regulator_enable(hdmi
->hpd_regs
[i
]);
141 dev_err(dev
->dev
, "failed to enable hpd regulator: %s (%d)\n",
142 config
->hpd_reg_names
[i
], ret
);
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
);
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
;
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
]);
189 dev_err(dev
->dev
, "failed to disable hpd regulator: %s (%d)\n",
190 config
->hpd_reg_names
[i
], ret
);
195 for (i
= 0; i
< config
->hpd_clk_cnt
; i
++)
196 clk_disable_unprepare(hdmi
->hpd_clks
[i
]);
198 ret
= gpio_config(hdmi
, false);
200 dev_err(dev
->dev
, "failed to unconfigure GPIOs: %d\n", ret
);
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
;
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
);
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
;
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
;
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
;
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
;
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
);
314 ret
= drm_add_edid_modes(connector
, edid
);
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
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
;
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
;
377 hdmi_connector
= kzalloc(sizeof(*hdmi_connector
), GFP_KERNEL
);
378 if (!hdmi_connector
) {
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
);
401 dev_err(hdmi
->dev
->dev
, "failed to enable HPD: %d\n", ret
);
405 drm_mode_connector_attach_encoder(connector
, hdmi
->encoder
);
411 hdmi_connector_destroy(connector
);