2 * Copyright © 2006-2011 Intel Corporation
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21 * DEALINGS IN THE SOFTWARE.
24 * jim liu <jim.liu@intel.com>
27 * We should probably make this generic and share it with Medfield
30 #include <linux/pm_runtime.h>
33 #include <drm/drm_crtc.h>
34 #include <drm/drm_edid.h>
36 #include "cdv_device.h"
38 #include "psb_intel_drv.h"
39 #include "psb_intel_reg.h"
41 /* hdmi control bits */
42 #define HDMI_NULL_PACKETS_DURING_VSYNC (1 << 9)
43 #define HDMI_BORDER_ENABLE (1 << 7)
44 #define HDMI_AUDIO_ENABLE (1 << 6)
45 #define HDMI_VSYNC_ACTIVE_HIGH (1 << 4)
46 #define HDMI_HSYNC_ACTIVE_HIGH (1 << 3)
47 /* hdmi-b control bits */
48 #define HDMIB_PIPE_B_SELECT (1 << 30)
51 struct mid_intel_hdmi_priv
{
56 /* Should set this when detect hotplug */
57 bool hdmi_device_connected
;
58 struct mdfld_hdmi_i2c
*i2c_bus
;
59 struct i2c_adapter
*hdmi_i2c_adapter
; /* for control functions */
60 struct drm_device
*dev
;
63 static void cdv_hdmi_mode_set(struct drm_encoder
*encoder
,
64 struct drm_display_mode
*mode
,
65 struct drm_display_mode
*adjusted_mode
)
67 struct drm_device
*dev
= encoder
->dev
;
68 struct gma_encoder
*gma_encoder
= to_gma_encoder(encoder
);
69 struct mid_intel_hdmi_priv
*hdmi_priv
= gma_encoder
->dev_priv
;
71 struct drm_crtc
*crtc
= encoder
->crtc
;
72 struct gma_crtc
*gma_crtc
= to_gma_crtc(crtc
);
76 if (adjusted_mode
->flags
& DRM_MODE_FLAG_PVSYNC
)
77 hdmib
|= HDMI_VSYNC_ACTIVE_HIGH
;
78 if (adjusted_mode
->flags
& DRM_MODE_FLAG_PHSYNC
)
79 hdmib
|= HDMI_HSYNC_ACTIVE_HIGH
;
81 if (gma_crtc
->pipe
== 1)
82 hdmib
|= HDMIB_PIPE_B_SELECT
;
84 if (hdmi_priv
->has_hdmi_audio
) {
85 hdmib
|= HDMI_AUDIO_ENABLE
;
86 hdmib
|= HDMI_NULL_PACKETS_DURING_VSYNC
;
89 REG_WRITE(hdmi_priv
->hdmi_reg
, hdmib
);
90 REG_READ(hdmi_priv
->hdmi_reg
);
93 static void cdv_hdmi_dpms(struct drm_encoder
*encoder
, int mode
)
95 struct drm_device
*dev
= encoder
->dev
;
96 struct gma_encoder
*gma_encoder
= to_gma_encoder(encoder
);
97 struct mid_intel_hdmi_priv
*hdmi_priv
= gma_encoder
->dev_priv
;
100 hdmib
= REG_READ(hdmi_priv
->hdmi_reg
);
102 if (mode
!= DRM_MODE_DPMS_ON
)
103 REG_WRITE(hdmi_priv
->hdmi_reg
, hdmib
& ~HDMIB_PORT_EN
);
105 REG_WRITE(hdmi_priv
->hdmi_reg
, hdmib
| HDMIB_PORT_EN
);
106 REG_READ(hdmi_priv
->hdmi_reg
);
109 static void cdv_hdmi_save(struct drm_connector
*connector
)
111 struct drm_device
*dev
= connector
->dev
;
112 struct gma_encoder
*gma_encoder
= gma_attached_encoder(connector
);
113 struct mid_intel_hdmi_priv
*hdmi_priv
= gma_encoder
->dev_priv
;
115 hdmi_priv
->save_HDMIB
= REG_READ(hdmi_priv
->hdmi_reg
);
118 static void cdv_hdmi_restore(struct drm_connector
*connector
)
120 struct drm_device
*dev
= connector
->dev
;
121 struct gma_encoder
*gma_encoder
= gma_attached_encoder(connector
);
122 struct mid_intel_hdmi_priv
*hdmi_priv
= gma_encoder
->dev_priv
;
124 REG_WRITE(hdmi_priv
->hdmi_reg
, hdmi_priv
->save_HDMIB
);
125 REG_READ(hdmi_priv
->hdmi_reg
);
128 static enum drm_connector_status
cdv_hdmi_detect(
129 struct drm_connector
*connector
, bool force
)
131 struct gma_encoder
*gma_encoder
= gma_attached_encoder(connector
);
132 struct mid_intel_hdmi_priv
*hdmi_priv
= gma_encoder
->dev_priv
;
133 struct edid
*edid
= NULL
;
134 enum drm_connector_status status
= connector_status_disconnected
;
136 edid
= drm_get_edid(connector
, &gma_encoder
->i2c_bus
->adapter
);
138 hdmi_priv
->has_hdmi_sink
= false;
139 hdmi_priv
->has_hdmi_audio
= false;
141 if (edid
->input
& DRM_EDID_INPUT_DIGITAL
) {
142 status
= connector_status_connected
;
143 hdmi_priv
->has_hdmi_sink
=
144 drm_detect_hdmi_monitor(edid
);
145 hdmi_priv
->has_hdmi_audio
=
146 drm_detect_monitor_audio(edid
);
153 static int cdv_hdmi_set_property(struct drm_connector
*connector
,
154 struct drm_property
*property
,
157 struct drm_encoder
*encoder
= connector
->encoder
;
159 if (!strcmp(property
->name
, "scaling mode") && encoder
) {
160 struct gma_crtc
*crtc
= to_gma_crtc(encoder
->crtc
);
168 case DRM_MODE_SCALE_FULLSCREEN
:
170 case DRM_MODE_SCALE_NO_SCALE
:
172 case DRM_MODE_SCALE_ASPECT
:
178 if (drm_object_property_get_value(&connector
->base
,
179 property
, &curValue
))
182 if (curValue
== value
)
185 if (drm_object_property_set_value(&connector
->base
,
189 centre
= (curValue
== DRM_MODE_SCALE_NO_SCALE
) ||
190 (value
== DRM_MODE_SCALE_NO_SCALE
);
192 if (crtc
->saved_mode
.hdisplay
!= 0 &&
193 crtc
->saved_mode
.vdisplay
!= 0) {
195 if (!drm_crtc_helper_set_mode(encoder
->crtc
, &crtc
->saved_mode
,
196 encoder
->crtc
->x
, encoder
->crtc
->y
, encoder
->crtc
->primary
->fb
))
199 const struct drm_encoder_helper_funcs
*helpers
200 = encoder
->helper_private
;
201 helpers
->mode_set(encoder
, &crtc
->saved_mode
,
202 &crtc
->saved_adjusted_mode
);
210 * Return the list of HDMI DDC modes if available.
212 static int cdv_hdmi_get_modes(struct drm_connector
*connector
)
214 struct gma_encoder
*gma_encoder
= gma_attached_encoder(connector
);
215 struct edid
*edid
= NULL
;
218 edid
= drm_get_edid(connector
, &gma_encoder
->i2c_bus
->adapter
);
220 drm_connector_update_edid_property(connector
, edid
);
221 ret
= drm_add_edid_modes(connector
, edid
);
227 static enum drm_mode_status
cdv_hdmi_mode_valid(struct drm_connector
*connector
,
228 struct drm_display_mode
*mode
)
230 if (mode
->clock
> 165000)
231 return MODE_CLOCK_HIGH
;
232 if (mode
->clock
< 20000)
233 return MODE_CLOCK_HIGH
;
236 if (mode
->flags
& DRM_MODE_FLAG_DBLSCAN
)
237 return MODE_NO_DBLESCAN
;
240 if (mode
->flags
& DRM_MODE_FLAG_INTERLACE
)
241 return MODE_NO_INTERLACE
;
246 static void cdv_hdmi_destroy(struct drm_connector
*connector
)
248 struct gma_encoder
*gma_encoder
= gma_attached_encoder(connector
);
250 psb_intel_i2c_destroy(gma_encoder
->i2c_bus
);
251 drm_connector_unregister(connector
);
252 drm_connector_cleanup(connector
);
256 static const struct drm_encoder_helper_funcs cdv_hdmi_helper_funcs
= {
257 .dpms
= cdv_hdmi_dpms
,
258 .prepare
= gma_encoder_prepare
,
259 .mode_set
= cdv_hdmi_mode_set
,
260 .commit
= gma_encoder_commit
,
263 static const struct drm_connector_helper_funcs
264 cdv_hdmi_connector_helper_funcs
= {
265 .get_modes
= cdv_hdmi_get_modes
,
266 .mode_valid
= cdv_hdmi_mode_valid
,
267 .best_encoder
= gma_best_encoder
,
270 static const struct drm_connector_funcs cdv_hdmi_connector_funcs
= {
271 .dpms
= drm_helper_connector_dpms
,
272 .detect
= cdv_hdmi_detect
,
273 .fill_modes
= drm_helper_probe_single_connector_modes
,
274 .set_property
= cdv_hdmi_set_property
,
275 .destroy
= cdv_hdmi_destroy
,
278 void cdv_hdmi_init(struct drm_device
*dev
,
279 struct psb_intel_mode_device
*mode_dev
, int reg
)
281 struct gma_encoder
*gma_encoder
;
282 struct gma_connector
*gma_connector
;
283 struct drm_connector
*connector
;
284 struct drm_encoder
*encoder
;
285 struct mid_intel_hdmi_priv
*hdmi_priv
;
288 gma_encoder
= kzalloc(sizeof(struct gma_encoder
), GFP_KERNEL
);
293 gma_connector
= kzalloc(sizeof(struct gma_connector
),
299 hdmi_priv
= kzalloc(sizeof(struct mid_intel_hdmi_priv
), GFP_KERNEL
);
304 connector
= &gma_connector
->base
;
305 connector
->polled
= DRM_CONNECTOR_POLL_HPD
;
306 gma_connector
->save
= cdv_hdmi_save
;
307 gma_connector
->restore
= cdv_hdmi_restore
;
309 encoder
= &gma_encoder
->base
;
310 drm_connector_init(dev
, connector
,
311 &cdv_hdmi_connector_funcs
,
312 DRM_MODE_CONNECTOR_DVID
);
314 drm_encoder_init(dev
, encoder
, &psb_intel_lvds_enc_funcs
,
315 DRM_MODE_ENCODER_TMDS
, NULL
);
317 gma_connector_attach_encoder(gma_connector
, gma_encoder
);
318 gma_encoder
->type
= INTEL_OUTPUT_HDMI
;
319 hdmi_priv
->hdmi_reg
= reg
;
320 hdmi_priv
->has_hdmi_sink
= false;
321 gma_encoder
->dev_priv
= hdmi_priv
;
323 drm_encoder_helper_add(encoder
, &cdv_hdmi_helper_funcs
);
324 drm_connector_helper_add(connector
,
325 &cdv_hdmi_connector_helper_funcs
);
326 connector
->display_info
.subpixel_order
= SubPixelHorizontalRGB
;
327 connector
->interlace_allowed
= false;
328 connector
->doublescan_allowed
= false;
330 drm_object_attach_property(&connector
->base
,
331 dev
->mode_config
.scaling_mode_property
,
332 DRM_MODE_SCALE_FULLSCREEN
);
337 gma_encoder
->ddi_select
= DDI0_SELECT
;
341 gma_encoder
->ddi_select
= DDI1_SELECT
;
344 DRM_ERROR("unknown reg 0x%x for HDMI\n", reg
);
349 gma_encoder
->i2c_bus
= psb_intel_i2c_create(dev
,
350 ddc_bus
, (reg
== SDVOB
) ? "HDMIB" : "HDMIC");
352 if (!gma_encoder
->i2c_bus
) {
353 dev_err(dev
->dev
, "No ddc adapter available!\n");
357 hdmi_priv
->hdmi_i2c_adapter
= &(gma_encoder
->i2c_bus
->adapter
);
358 hdmi_priv
->dev
= dev
;
359 drm_connector_register(connector
);
363 drm_encoder_cleanup(encoder
);
364 drm_connector_cleanup(connector
);
366 kfree(gma_connector
);