xref: /dragonfly/sys/dev/drm/i915/intel_lvds.c (revision a1282e19)
1 /*
2  * Copyright © 2006-2007 Intel Corporation
3  * Copyright (c) 2006 Dave Airlie <airlied@linux.ie>
4  *
5  * Permission is hereby granted, free of charge, to any person obtaining a
6  * copy of this software and associated documentation files (the "Software"),
7  * to deal in the Software without restriction, including without limitation
8  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9  * and/or sell copies of the Software, and to permit persons to whom the
10  * Software is furnished to do so, subject to the following conditions:
11  *
12  * The above copyright notice and this permission notice (including the next
13  * paragraph) shall be included in all copies or substantial portions of the
14  * Software.
15  *
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
19  * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21  * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
22  * DEALINGS IN THE SOFTWARE.
23  *
24  * Authors:
25  *	Eric Anholt <eric@anholt.net>
26  *      Dave Airlie <airlied@linux.ie>
27  *      Jesse Barnes <jesse.barnes@intel.com>
28  */
29 
30 #include <linux/dmi.h>
31 #include <linux/i2c.h>
32 #include <drm/drmP.h>
33 #include <drm/drm_crtc.h>
34 #include <drm/drm_edid.h>
35 #include "intel_drv.h"
36 #include <drm/i915_drm.h>
37 #include "i915_drv.h"
38 
39 /* Private structure for the integrated LVDS support */
40 struct intel_lvds_connector {
41 	struct intel_connector base;
42 
43 	struct notifier_block lid_notifier;
44 };
45 
46 struct intel_lvds_encoder {
47 	struct intel_encoder base;
48 
49 	bool is_dual_link;
50 	u32 reg;
51 	u32 a3_power;
52 
53 	struct intel_lvds_connector *attached_connector;
54 };
55 
56 static struct intel_lvds_encoder *to_lvds_encoder(struct drm_encoder *encoder)
57 {
58 	return container_of(encoder, struct intel_lvds_encoder, base.base);
59 }
60 
61 static struct intel_lvds_connector *to_lvds_connector(struct drm_connector *connector)
62 {
63 	return container_of(connector, struct intel_lvds_connector, base.base);
64 }
65 
66 static bool intel_lvds_get_hw_state(struct intel_encoder *encoder,
67 				    enum i915_pipe *pipe)
68 {
69 	struct drm_device *dev = encoder->base.dev;
70 	struct drm_i915_private *dev_priv = dev->dev_private;
71 	struct intel_lvds_encoder *lvds_encoder = to_lvds_encoder(&encoder->base);
72 	enum intel_display_power_domain power_domain;
73 	u32 tmp;
74 
75 	power_domain = intel_display_port_power_domain(encoder);
76 	if (!intel_display_power_enabled(dev_priv, power_domain))
77 		return false;
78 
79 	tmp = I915_READ(lvds_encoder->reg);
80 
81 	if (!(tmp & LVDS_PORT_EN))
82 		return false;
83 
84 	if (HAS_PCH_CPT(dev))
85 		*pipe = PORT_TO_PIPE_CPT(tmp);
86 	else
87 		*pipe = PORT_TO_PIPE(tmp);
88 
89 	return true;
90 }
91 
92 static void intel_lvds_get_config(struct intel_encoder *encoder,
93 				  struct intel_crtc_config *pipe_config)
94 {
95 	struct drm_device *dev = encoder->base.dev;
96 	struct drm_i915_private *dev_priv = dev->dev_private;
97 	u32 lvds_reg, tmp, flags = 0;
98 	int dotclock;
99 
100 	if (HAS_PCH_SPLIT(dev))
101 		lvds_reg = PCH_LVDS;
102 	else
103 		lvds_reg = LVDS;
104 
105 	tmp = I915_READ(lvds_reg);
106 	if (tmp & LVDS_HSYNC_POLARITY)
107 		flags |= DRM_MODE_FLAG_NHSYNC;
108 	else
109 		flags |= DRM_MODE_FLAG_PHSYNC;
110 	if (tmp & LVDS_VSYNC_POLARITY)
111 		flags |= DRM_MODE_FLAG_NVSYNC;
112 	else
113 		flags |= DRM_MODE_FLAG_PVSYNC;
114 
115 	pipe_config->adjusted_mode.flags |= flags;
116 
117 	/* gen2/3 store dither state in pfit control, needs to match */
118 	if (INTEL_INFO(dev)->gen < 4) {
119 		tmp = I915_READ(PFIT_CONTROL);
120 
121 		pipe_config->gmch_pfit.control |= tmp & PANEL_8TO6_DITHER_ENABLE;
122 	}
123 
124 	dotclock = pipe_config->port_clock;
125 
126 	if (HAS_PCH_SPLIT(dev_priv->dev))
127 		ironlake_check_encoder_dotclock(pipe_config, dotclock);
128 
129 	pipe_config->adjusted_mode.crtc_clock = dotclock;
130 }
131 
132 static void intel_pre_enable_lvds(struct intel_encoder *encoder)
133 {
134 	struct intel_lvds_encoder *lvds_encoder = to_lvds_encoder(&encoder->base);
135 	struct drm_device *dev = encoder->base.dev;
136 	struct drm_i915_private *dev_priv = dev->dev_private;
137 	struct intel_crtc *crtc = to_intel_crtc(encoder->base.crtc);
138 	const struct drm_display_mode *adjusted_mode =
139 		&crtc->config.adjusted_mode;
140 	int pipe = crtc->pipe;
141 	u32 temp;
142 
143 	if (HAS_PCH_SPLIT(dev)) {
144 		assert_fdi_rx_pll_disabled(dev_priv, pipe);
145 		assert_shared_dpll_disabled(dev_priv,
146 					    intel_crtc_to_shared_dpll(crtc));
147 	} else {
148 		assert_pll_disabled(dev_priv, pipe);
149 	}
150 
151 	temp = I915_READ(lvds_encoder->reg);
152 	temp |= LVDS_PORT_EN | LVDS_A0A2_CLKA_POWER_UP;
153 
154 	if (HAS_PCH_CPT(dev)) {
155 		temp &= ~PORT_TRANS_SEL_MASK;
156 		temp |= PORT_TRANS_SEL_CPT(pipe);
157 	} else {
158 		if (pipe == 1) {
159 			temp |= LVDS_PIPEB_SELECT;
160 		} else {
161 			temp &= ~LVDS_PIPEB_SELECT;
162 		}
163 	}
164 
165 	/* set the corresponsding LVDS_BORDER bit */
166 	temp &= ~LVDS_BORDER_ENABLE;
167 	temp |= crtc->config.gmch_pfit.lvds_border_bits;
168 	/* Set the B0-B3 data pairs corresponding to whether we're going to
169 	 * set the DPLLs for dual-channel mode or not.
170 	 */
171 	if (lvds_encoder->is_dual_link)
172 		temp |= LVDS_B0B3_POWER_UP | LVDS_CLKB_POWER_UP;
173 	else
174 		temp &= ~(LVDS_B0B3_POWER_UP | LVDS_CLKB_POWER_UP);
175 
176 	/* It would be nice to set 24 vs 18-bit mode (LVDS_A3_POWER_UP)
177 	 * appropriately here, but we need to look more thoroughly into how
178 	 * panels behave in the two modes. For now, let's just maintain the
179 	 * value we got from the BIOS.
180 	 */
181 	 temp &= ~LVDS_A3_POWER_MASK;
182 	 temp |= lvds_encoder->a3_power;
183 
184 	/* Set the dithering flag on LVDS as needed, note that there is no
185 	 * special lvds dither control bit on pch-split platforms, dithering is
186 	 * only controlled through the PIPECONF reg. */
187 	if (INTEL_INFO(dev)->gen == 4) {
188 		/* Bspec wording suggests that LVDS port dithering only exists
189 		 * for 18bpp panels. */
190 		if (crtc->config.dither && crtc->config.pipe_bpp == 18)
191 			temp |= LVDS_ENABLE_DITHER;
192 		else
193 			temp &= ~LVDS_ENABLE_DITHER;
194 	}
195 	temp &= ~(LVDS_HSYNC_POLARITY | LVDS_VSYNC_POLARITY);
196 	if (adjusted_mode->flags & DRM_MODE_FLAG_NHSYNC)
197 		temp |= LVDS_HSYNC_POLARITY;
198 	if (adjusted_mode->flags & DRM_MODE_FLAG_NVSYNC)
199 		temp |= LVDS_VSYNC_POLARITY;
200 
201 	I915_WRITE(lvds_encoder->reg, temp);
202 }
203 
204 /**
205  * Sets the power state for the panel.
206  */
207 static void intel_enable_lvds(struct intel_encoder *encoder)
208 {
209 	struct drm_device *dev = encoder->base.dev;
210 	struct intel_lvds_encoder *lvds_encoder = to_lvds_encoder(&encoder->base);
211 	struct intel_connector *intel_connector =
212 		&lvds_encoder->attached_connector->base;
213 	struct drm_i915_private *dev_priv = dev->dev_private;
214 	u32 ctl_reg, stat_reg;
215 
216 	if (HAS_PCH_SPLIT(dev)) {
217 		ctl_reg = PCH_PP_CONTROL;
218 		stat_reg = PCH_PP_STATUS;
219 	} else {
220 		ctl_reg = PP_CONTROL;
221 		stat_reg = PP_STATUS;
222 	}
223 
224 	I915_WRITE(lvds_encoder->reg, I915_READ(lvds_encoder->reg) | LVDS_PORT_EN);
225 
226 	I915_WRITE(ctl_reg, I915_READ(ctl_reg) | POWER_TARGET_ON);
227 	POSTING_READ(lvds_encoder->reg);
228 	if (wait_for((I915_READ(stat_reg) & PP_ON) != 0, 1000))
229 		DRM_ERROR("timed out waiting for panel to power on\n");
230 
231 	intel_panel_enable_backlight(intel_connector);
232 }
233 
234 static void intel_disable_lvds(struct intel_encoder *encoder)
235 {
236 	struct drm_device *dev = encoder->base.dev;
237 	struct intel_lvds_encoder *lvds_encoder = to_lvds_encoder(&encoder->base);
238 	struct intel_connector *intel_connector =
239 		&lvds_encoder->attached_connector->base;
240 	struct drm_i915_private *dev_priv = dev->dev_private;
241 	u32 ctl_reg, stat_reg;
242 
243 	if (HAS_PCH_SPLIT(dev)) {
244 		ctl_reg = PCH_PP_CONTROL;
245 		stat_reg = PCH_PP_STATUS;
246 	} else {
247 		ctl_reg = PP_CONTROL;
248 		stat_reg = PP_STATUS;
249 	}
250 
251 	intel_panel_disable_backlight(intel_connector);
252 
253 	I915_WRITE(ctl_reg, I915_READ(ctl_reg) & ~POWER_TARGET_ON);
254 	if (wait_for((I915_READ(stat_reg) & PP_ON) == 0, 1000))
255 		DRM_ERROR("timed out waiting for panel to power off\n");
256 
257 	I915_WRITE(lvds_encoder->reg, I915_READ(lvds_encoder->reg) & ~LVDS_PORT_EN);
258 	POSTING_READ(lvds_encoder->reg);
259 }
260 
261 static enum drm_mode_status
262 intel_lvds_mode_valid(struct drm_connector *connector,
263 		      struct drm_display_mode *mode)
264 {
265 	struct intel_connector *intel_connector = to_intel_connector(connector);
266 	struct drm_display_mode *fixed_mode = intel_connector->panel.fixed_mode;
267 
268 	if (mode->hdisplay > fixed_mode->hdisplay)
269 		return MODE_PANEL;
270 	if (mode->vdisplay > fixed_mode->vdisplay)
271 		return MODE_PANEL;
272 
273 	return MODE_OK;
274 }
275 
276 static bool intel_lvds_compute_config(struct intel_encoder *intel_encoder,
277 				      struct intel_crtc_config *pipe_config)
278 {
279 	struct drm_device *dev = intel_encoder->base.dev;
280 	struct intel_lvds_encoder *lvds_encoder =
281 		to_lvds_encoder(&intel_encoder->base);
282 	struct intel_connector *intel_connector =
283 		&lvds_encoder->attached_connector->base;
284 	struct drm_display_mode *adjusted_mode = &pipe_config->adjusted_mode;
285 	struct intel_crtc *intel_crtc = lvds_encoder->base.new_crtc;
286 	unsigned int lvds_bpp;
287 
288 	/* Should never happen!! */
289 	if (INTEL_INFO(dev)->gen < 4 && intel_crtc->pipe == 0) {
290 		DRM_ERROR("Can't support LVDS on pipe A\n");
291 		return false;
292 	}
293 
294 	if (lvds_encoder->a3_power == LVDS_A3_POWER_UP)
295 		lvds_bpp = 8*3;
296 	else
297 		lvds_bpp = 6*3;
298 
299 	if (lvds_bpp != pipe_config->pipe_bpp && !pipe_config->bw_constrained) {
300 		DRM_DEBUG_KMS("forcing display bpp (was %d) to LVDS (%d)\n",
301 			      pipe_config->pipe_bpp, lvds_bpp);
302 		pipe_config->pipe_bpp = lvds_bpp;
303 	}
304 
305 	/*
306 	 * We have timings from the BIOS for the panel, put them in
307 	 * to the adjusted mode.  The CRTC will be set up for this mode,
308 	 * with the panel scaling set up to source from the H/VDisplay
309 	 * of the original mode.
310 	 */
311 	intel_fixed_panel_mode(intel_connector->panel.fixed_mode,
312 			       adjusted_mode);
313 
314 	if (HAS_PCH_SPLIT(dev)) {
315 		pipe_config->has_pch_encoder = true;
316 
317 		intel_pch_panel_fitting(intel_crtc, pipe_config,
318 					intel_connector->panel.fitting_mode);
319 	} else {
320 		intel_gmch_panel_fitting(intel_crtc, pipe_config,
321 					 intel_connector->panel.fitting_mode);
322 
323 	}
324 
325 	/*
326 	 * XXX: It would be nice to support lower refresh rates on the
327 	 * panels to reduce power consumption, and perhaps match the
328 	 * user's requested refresh rate.
329 	 */
330 
331 	return true;
332 }
333 
334 /**
335  * Detect the LVDS connection.
336  *
337  * Since LVDS doesn't have hotlug, we use the lid as a proxy.  Open means
338  * connected and closed means disconnected.  We also send hotplug events as
339  * needed, using lid status notification from the input layer.
340  */
341 static enum drm_connector_status
342 intel_lvds_detect(struct drm_connector *connector, bool force)
343 {
344 	struct drm_device *dev = connector->dev;
345 	enum drm_connector_status status;
346 
347 	DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
348 		      connector->base.id, connector->name);
349 
350 	status = intel_panel_detect(dev);
351 	if (status != connector_status_unknown)
352 		return status;
353 
354 	return connector_status_connected;
355 }
356 
357 /**
358  * Return the list of DDC modes if available, or the BIOS fixed mode otherwise.
359  */
360 static int intel_lvds_get_modes(struct drm_connector *connector)
361 {
362 	struct intel_lvds_connector *lvds_connector = to_lvds_connector(connector);
363 	struct drm_device *dev = connector->dev;
364 	struct drm_display_mode *mode;
365 
366 	/* use cached edid if we have one */
367 	if (!IS_ERR_OR_NULL(lvds_connector->base.edid))
368 		return drm_add_edid_modes(connector, lvds_connector->base.edid);
369 
370 	mode = drm_mode_duplicate(dev, lvds_connector->base.panel.fixed_mode);
371 	if (mode == NULL)
372 		return 0;
373 
374 	drm_mode_probed_add(connector, mode);
375 	return 1;
376 }
377 
378 static int intel_no_modeset_on_lid_dmi_callback(const struct dmi_system_id *id)
379 {
380 	DRM_INFO("Skipping forced modeset for %s\n", id->ident);
381 	return 1;
382 }
383 
384 /* The GPU hangs up on these systems if modeset is performed on LID open */
385 static const struct dmi_system_id intel_no_modeset_on_lid[] = {
386 	{
387 		.callback = intel_no_modeset_on_lid_dmi_callback,
388 		.ident = "Toshiba Tecra A11",
389 		.matches = {
390 			DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
391 			DMI_MATCH(DMI_PRODUCT_NAME, "TECRA A11"),
392 		},
393 	},
394 
395 	{ }	/* terminating entry */
396 };
397 
398 #if 0
399 /*
400  * Lid events. Note the use of 'modeset':
401  *  - we set it to MODESET_ON_LID_OPEN on lid close,
402  *    and set it to MODESET_DONE on open
403  *  - we use it as a "only once" bit (ie we ignore
404  *    duplicate events where it was already properly set)
405  *  - the suspend/resume paths will set it to
406  *    MODESET_SUSPENDED and ignore the lid open event,
407  *    because they restore the mode ("lid open").
408  */
409 static int intel_lid_notify(struct notifier_block *nb, unsigned long val,
410 			    void *unused)
411 {
412 	struct intel_lvds_connector *lvds_connector =
413 		container_of(nb, struct intel_lvds_connector, lid_notifier);
414 	struct drm_connector *connector = &lvds_connector->base.base;
415 	struct drm_device *dev = connector->dev;
416 	struct drm_i915_private *dev_priv = dev->dev_private;
417 
418 	if (dev->switch_power_state != DRM_SWITCH_POWER_ON)
419 		return NOTIFY_OK;
420 
421 	mutex_lock(&dev_priv->modeset_restore_lock);
422 	if (dev_priv->modeset_restore == MODESET_SUSPENDED)
423 		goto exit;
424 	/*
425 	 * check and update the status of LVDS connector after receiving
426 	 * the LID nofication event.
427 	 */
428 	connector->status = connector->funcs->detect(connector, false);
429 
430 	/* Don't force modeset on machines where it causes a GPU lockup */
431 	if (dmi_check_system(intel_no_modeset_on_lid))
432 		goto exit;
433 	if (!acpi_lid_open()) {
434 		/* do modeset on next lid open event */
435 		dev_priv->modeset_restore = MODESET_ON_LID_OPEN;
436 		goto exit;
437 	}
438 
439 	if (dev_priv->modeset_restore == MODESET_DONE)
440 		goto exit;
441 
442 	/*
443 	 * Some old platform's BIOS love to wreak havoc while the lid is closed.
444 	 * We try to detect this here and undo any damage. The split for PCH
445 	 * platforms is rather conservative and a bit arbitrary expect that on
446 	 * those platforms VGA disabling requires actual legacy VGA I/O access,
447 	 * and as part of the cleanup in the hw state restore we also redisable
448 	 * the vga plane.
449 	 */
450 	if (!HAS_PCH_SPLIT(dev)) {
451 		drm_modeset_lock_all(dev);
452 		intel_modeset_setup_hw_state(dev, true);
453 		drm_modeset_unlock_all(dev);
454 	}
455 
456 	dev_priv->modeset_restore = MODESET_DONE;
457 
458 exit:
459 	mutex_unlock(&dev_priv->modeset_restore_lock);
460 	return NOTIFY_OK;
461 }
462 #endif
463 
464 /**
465  * intel_lvds_destroy - unregister and free LVDS structures
466  * @connector: connector to free
467  *
468  * Unregister the DDC bus for this connector then free the driver private
469  * structure.
470  */
471 static void intel_lvds_destroy(struct drm_connector *connector)
472 {
473 	struct intel_lvds_connector *lvds_connector =
474 		to_lvds_connector(connector);
475 
476 #if 0
477 	if (lvds_connector->lid_notifier.notifier_call)
478 		acpi_lid_notifier_unregister(&lvds_connector->lid_notifier);
479 #endif
480 
481 	if (!IS_ERR_OR_NULL(lvds_connector->base.edid))
482 		kfree(lvds_connector->base.edid);
483 
484 	intel_panel_fini(&lvds_connector->base.panel);
485 
486 	drm_connector_cleanup(connector);
487 	kfree(connector);
488 }
489 
490 static int intel_lvds_set_property(struct drm_connector *connector,
491 				   struct drm_property *property,
492 				   uint64_t value)
493 {
494 	struct intel_connector *intel_connector = to_intel_connector(connector);
495 	struct drm_device *dev = connector->dev;
496 
497 	if (property == dev->mode_config.scaling_mode_property) {
498 		struct drm_crtc *crtc;
499 
500 		if (value == DRM_MODE_SCALE_NONE) {
501 			DRM_DEBUG_KMS("no scaling not supported\n");
502 			return -EINVAL;
503 		}
504 
505 		if (intel_connector->panel.fitting_mode == value) {
506 			/* the LVDS scaling property is not changed */
507 			return 0;
508 		}
509 		intel_connector->panel.fitting_mode = value;
510 
511 		crtc = intel_attached_encoder(connector)->base.crtc;
512 		if (crtc && crtc->enabled) {
513 			/*
514 			 * If the CRTC is enabled, the display will be changed
515 			 * according to the new panel fitting mode.
516 			 */
517 			intel_crtc_restore_mode(crtc);
518 		}
519 	}
520 
521 	return 0;
522 }
523 
524 static const struct drm_connector_helper_funcs intel_lvds_connector_helper_funcs = {
525 	.get_modes = intel_lvds_get_modes,
526 	.mode_valid = intel_lvds_mode_valid,
527 	.best_encoder = intel_best_encoder,
528 };
529 
530 static const struct drm_connector_funcs intel_lvds_connector_funcs = {
531 	.dpms = intel_connector_dpms,
532 	.detect = intel_lvds_detect,
533 	.fill_modes = drm_helper_probe_single_connector_modes,
534 	.set_property = intel_lvds_set_property,
535 	.destroy = intel_lvds_destroy,
536 };
537 
538 static const struct drm_encoder_funcs intel_lvds_enc_funcs = {
539 	.destroy = intel_encoder_destroy,
540 };
541 
542 static int intel_no_lvds_dmi_callback(const struct dmi_system_id *id)
543 {
544 	DRM_INFO("Skipping LVDS initialization for %s\n", id->ident);
545 	return 1;
546 }
547 
548 /* These systems claim to have LVDS, but really don't */
549 static const struct dmi_system_id intel_no_lvds[] = {
550 	{
551 		.callback = intel_no_lvds_dmi_callback,
552 		.ident = "Apple Mac Mini (Core series)",
553 		.matches = {
554 			DMI_MATCH(DMI_SYS_VENDOR, "Apple"),
555 			DMI_MATCH(DMI_PRODUCT_NAME, "Macmini1,1"),
556 		},
557 	},
558 	{
559 		.callback = intel_no_lvds_dmi_callback,
560 		.ident = "Apple Mac Mini (Core 2 series)",
561 		.matches = {
562 			DMI_MATCH(DMI_SYS_VENDOR, "Apple"),
563 			DMI_MATCH(DMI_PRODUCT_NAME, "Macmini2,1"),
564 		},
565 	},
566 	{
567 		.callback = intel_no_lvds_dmi_callback,
568 		.ident = "MSI IM-945GSE-A",
569 		.matches = {
570 			DMI_MATCH(DMI_SYS_VENDOR, "MSI"),
571 			DMI_MATCH(DMI_PRODUCT_NAME, "A9830IMS"),
572 		},
573 	},
574 	{
575 		.callback = intel_no_lvds_dmi_callback,
576 		.ident = "Dell Studio Hybrid",
577 		.matches = {
578 			DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
579 			DMI_MATCH(DMI_PRODUCT_NAME, "Studio Hybrid 140g"),
580 		},
581 	},
582 	{
583 		.callback = intel_no_lvds_dmi_callback,
584 		.ident = "Dell OptiPlex FX170",
585 		.matches = {
586 			DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
587 			DMI_MATCH(DMI_PRODUCT_NAME, "OptiPlex FX170"),
588 		},
589 	},
590 	{
591 		.callback = intel_no_lvds_dmi_callback,
592 		.ident = "AOpen Mini PC",
593 		.matches = {
594 			DMI_MATCH(DMI_SYS_VENDOR, "AOpen"),
595 			DMI_MATCH(DMI_PRODUCT_NAME, "i965GMx-IF"),
596 		},
597 	},
598 	{
599 		.callback = intel_no_lvds_dmi_callback,
600 		.ident = "AOpen Mini PC MP915",
601 		.matches = {
602 			DMI_MATCH(DMI_BOARD_VENDOR, "AOpen"),
603 			DMI_MATCH(DMI_BOARD_NAME, "i915GMx-F"),
604 		},
605 	},
606 	{
607 		.callback = intel_no_lvds_dmi_callback,
608 		.ident = "AOpen i915GMm-HFS",
609 		.matches = {
610 			DMI_MATCH(DMI_BOARD_VENDOR, "AOpen"),
611 			DMI_MATCH(DMI_BOARD_NAME, "i915GMm-HFS"),
612 		},
613 	},
614 	{
615 		.callback = intel_no_lvds_dmi_callback,
616                 .ident = "AOpen i45GMx-I",
617                 .matches = {
618                         DMI_MATCH(DMI_BOARD_VENDOR, "AOpen"),
619                         DMI_MATCH(DMI_BOARD_NAME, "i45GMx-I"),
620                 },
621         },
622 	{
623 		.callback = intel_no_lvds_dmi_callback,
624 		.ident = "Aopen i945GTt-VFA",
625 		.matches = {
626 			DMI_MATCH(DMI_PRODUCT_VERSION, "AO00001JW"),
627 		},
628 	},
629 	{
630 		.callback = intel_no_lvds_dmi_callback,
631 		.ident = "Clientron U800",
632 		.matches = {
633 			DMI_MATCH(DMI_SYS_VENDOR, "Clientron"),
634 			DMI_MATCH(DMI_PRODUCT_NAME, "U800"),
635 		},
636 	},
637 	{
638                 .callback = intel_no_lvds_dmi_callback,
639                 .ident = "Clientron E830",
640                 .matches = {
641                         DMI_MATCH(DMI_SYS_VENDOR, "Clientron"),
642                         DMI_MATCH(DMI_PRODUCT_NAME, "E830"),
643                 },
644         },
645         {
646 		.callback = intel_no_lvds_dmi_callback,
647 		.ident = "Asus EeeBox PC EB1007",
648 		.matches = {
649 			DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK Computer INC."),
650 			DMI_MATCH(DMI_PRODUCT_NAME, "EB1007"),
651 		},
652 	},
653 	{
654 		.callback = intel_no_lvds_dmi_callback,
655 		.ident = "Asus AT5NM10T-I",
656 		.matches = {
657 			DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
658 			DMI_MATCH(DMI_BOARD_NAME, "AT5NM10T-I"),
659 		},
660 	},
661 	{
662 		.callback = intel_no_lvds_dmi_callback,
663 		.ident = "Hewlett-Packard HP t5740",
664 		.matches = {
665 			DMI_MATCH(DMI_BOARD_VENDOR, "Hewlett-Packard"),
666 			DMI_MATCH(DMI_PRODUCT_NAME, " t5740"),
667 		},
668 	},
669 	{
670 		.callback = intel_no_lvds_dmi_callback,
671 		.ident = "Hewlett-Packard t5745",
672 		.matches = {
673 			DMI_MATCH(DMI_BOARD_VENDOR, "Hewlett-Packard"),
674 			DMI_MATCH(DMI_PRODUCT_NAME, "hp t5745"),
675 		},
676 	},
677 	{
678 		.callback = intel_no_lvds_dmi_callback,
679 		.ident = "Hewlett-Packard st5747",
680 		.matches = {
681 			DMI_MATCH(DMI_BOARD_VENDOR, "Hewlett-Packard"),
682 			DMI_MATCH(DMI_PRODUCT_NAME, "hp st5747"),
683 		},
684 	},
685 	{
686 		.callback = intel_no_lvds_dmi_callback,
687 		.ident = "MSI Wind Box DC500",
688 		.matches = {
689 			DMI_MATCH(DMI_BOARD_VENDOR, "MICRO-STAR INTERNATIONAL CO., LTD"),
690 			DMI_MATCH(DMI_BOARD_NAME, "MS-7469"),
691 		},
692 	},
693 	{
694 		.callback = intel_no_lvds_dmi_callback,
695 		.ident = "Gigabyte GA-D525TUD",
696 		.matches = {
697 			DMI_MATCH(DMI_BOARD_VENDOR, "Gigabyte Technology Co., Ltd."),
698 			DMI_MATCH(DMI_BOARD_NAME, "D525TUD"),
699 		},
700 	},
701 	{
702 		.callback = intel_no_lvds_dmi_callback,
703 		.ident = "Supermicro X7SPA-H",
704 		.matches = {
705 			DMI_MATCH(DMI_SYS_VENDOR, "Supermicro"),
706 			DMI_MATCH(DMI_PRODUCT_NAME, "X7SPA-H"),
707 		},
708 	},
709 	{
710 		.callback = intel_no_lvds_dmi_callback,
711 		.ident = "Fujitsu Esprimo Q900",
712 		.matches = {
713 			DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU"),
714 			DMI_MATCH(DMI_PRODUCT_NAME, "ESPRIMO Q900"),
715 		},
716 	},
717 	{
718 		.callback = intel_no_lvds_dmi_callback,
719 		.ident = "Intel D410PT",
720 		.matches = {
721 			DMI_MATCH(DMI_BOARD_VENDOR, "Intel"),
722 			DMI_MATCH(DMI_BOARD_NAME, "D410PT"),
723 		},
724 	},
725 	{
726 		.callback = intel_no_lvds_dmi_callback,
727 		.ident = "Intel D425KT",
728 		.matches = {
729 			DMI_MATCH(DMI_BOARD_VENDOR, "Intel"),
730 			DMI_EXACT_MATCH(DMI_BOARD_NAME, "D425KT"),
731 		},
732 	},
733 	{
734 		.callback = intel_no_lvds_dmi_callback,
735 		.ident = "Intel D510MO",
736 		.matches = {
737 			DMI_MATCH(DMI_BOARD_VENDOR, "Intel"),
738 			DMI_EXACT_MATCH(DMI_BOARD_NAME, "D510MO"),
739 		},
740 	},
741 	{
742 		.callback = intel_no_lvds_dmi_callback,
743 		.ident = "Intel D525MW",
744 		.matches = {
745 			DMI_MATCH(DMI_BOARD_VENDOR, "Intel"),
746 			DMI_EXACT_MATCH(DMI_BOARD_NAME, "D525MW"),
747 		},
748 	},
749 
750 	{ }	/* terminating entry */
751 };
752 
753 /*
754  * Enumerate the child dev array parsed from VBT to check whether
755  * the LVDS is present.
756  * If it is present, return 1.
757  * If it is not present, return false.
758  * If no child dev is parsed from VBT, it assumes that the LVDS is present.
759  */
760 static bool lvds_is_present_in_vbt(struct drm_device *dev,
761 				   u8 *i2c_pin)
762 {
763 	struct drm_i915_private *dev_priv = dev->dev_private;
764 	int i;
765 
766 	if (!dev_priv->vbt.child_dev_num)
767 		return true;
768 
769 	for (i = 0; i < dev_priv->vbt.child_dev_num; i++) {
770 		union child_device_config *uchild = dev_priv->vbt.child_dev + i;
771 		struct old_child_dev_config *child = &uchild->old;
772 
773 		/* If the device type is not LFP, continue.
774 		 * We have to check both the new identifiers as well as the
775 		 * old for compatibility with some BIOSes.
776 		 */
777 		if (child->device_type != DEVICE_TYPE_INT_LFP &&
778 		    child->device_type != DEVICE_TYPE_LFP)
779 			continue;
780 
781 		if (intel_gmbus_is_port_valid(child->i2c_pin))
782 			*i2c_pin = child->i2c_pin;
783 
784 		/* However, we cannot trust the BIOS writers to populate
785 		 * the VBT correctly.  Since LVDS requires additional
786 		 * information from AIM blocks, a non-zero addin offset is
787 		 * a good indicator that the LVDS is actually present.
788 		 */
789 		if (child->addin_offset)
790 			return true;
791 
792 		/* But even then some BIOS writers perform some black magic
793 		 * and instantiate the device without reference to any
794 		 * additional data.  Trust that if the VBT was written into
795 		 * the OpRegion then they have validated the LVDS's existence.
796 		 */
797 		if (dev_priv->opregion.vbt)
798 			return true;
799 	}
800 
801 	return false;
802 }
803 
804 static int intel_dual_link_lvds_callback(const struct dmi_system_id *id)
805 {
806 	DRM_INFO("Forcing lvds to dual link mode on %s\n", id->ident);
807 	return 1;
808 }
809 
810 static const struct dmi_system_id intel_dual_link_lvds[] = {
811 	{
812 		.callback = intel_dual_link_lvds_callback,
813 		.ident = "Apple MacBook Pro (Core i5/i7 Series)",
814 		.matches = {
815 			DMI_MATCH(DMI_SYS_VENDOR, "Apple Inc."),
816 			DMI_MATCH(DMI_PRODUCT_NAME, "MacBookPro8,2"),
817 		},
818 	},
819 	{ }	/* terminating entry */
820 };
821 
822 bool intel_is_dual_link_lvds(struct drm_device *dev)
823 {
824 	struct intel_encoder *encoder;
825 	struct intel_lvds_encoder *lvds_encoder;
826 
827 	for_each_intel_encoder(dev, encoder) {
828 		if (encoder->type == INTEL_OUTPUT_LVDS) {
829 			lvds_encoder = to_lvds_encoder(&encoder->base);
830 
831 			return lvds_encoder->is_dual_link;
832 		}
833 	}
834 
835 	return false;
836 }
837 
838 static bool compute_is_dual_link_lvds(struct intel_lvds_encoder *lvds_encoder)
839 {
840 	struct drm_device *dev = lvds_encoder->base.base.dev;
841 	unsigned int val;
842 	struct drm_i915_private *dev_priv = dev->dev_private;
843 
844 	/* use the module option value if specified */
845 	if (i915.lvds_channel_mode > 0)
846 		return i915.lvds_channel_mode == 2;
847 
848 	if (dmi_check_system(intel_dual_link_lvds))
849 		return true;
850 
851 	/* BIOS should set the proper LVDS register value at boot, but
852 	 * in reality, it doesn't set the value when the lid is closed;
853 	 * we need to check "the value to be set" in VBT when LVDS
854 	 * register is uninitialized.
855 	 */
856 	val = I915_READ(lvds_encoder->reg);
857 	if (!(val & ~(LVDS_PIPE_MASK | LVDS_DETECTED)))
858 		val = dev_priv->vbt.bios_lvds_val;
859 
860 	return (val & LVDS_CLKB_POWER_MASK) == LVDS_CLKB_POWER_UP;
861 }
862 
863 static bool intel_lvds_supported(struct drm_device *dev)
864 {
865 	/* With the introduction of the PCH we gained a dedicated
866 	 * LVDS presence pin, use it. */
867 	if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev))
868 		return true;
869 
870 	/* Otherwise LVDS was only attached to mobile products,
871 	 * except for the inglorious 830gm */
872 	if (INTEL_INFO(dev)->gen <= 4 && IS_MOBILE(dev) && !IS_I830(dev))
873 		return true;
874 
875 	return false;
876 }
877 
878 /**
879  * intel_lvds_init - setup LVDS connectors on this device
880  * @dev: drm device
881  *
882  * Create the connector, register the LVDS DDC bus, and try to figure out what
883  * modes we can display on the LVDS panel (if present).
884  */
885 void intel_lvds_init(struct drm_device *dev)
886 {
887 	struct drm_i915_private *dev_priv = dev->dev_private;
888 	struct intel_lvds_encoder *lvds_encoder;
889 	struct intel_encoder *intel_encoder;
890 	struct intel_lvds_connector *lvds_connector;
891 	struct intel_connector *intel_connector;
892 	struct drm_connector *connector;
893 	struct drm_encoder *encoder;
894 	struct drm_display_mode *scan; /* *modes, *bios_mode; */
895 	struct drm_display_mode *fixed_mode = NULL;
896 	struct drm_display_mode *downclock_mode = NULL;
897 	struct edid *edid;
898 	struct drm_crtc *crtc;
899 	u32 lvds;
900 	int pipe;
901 	u8 pin;
902 
903 	/*
904 	 * Unlock registers and just leave them unlocked. Do this before
905 	 * checking quirk lists to avoid bogus WARNINGs.
906 	 */
907 	if (HAS_PCH_SPLIT(dev)) {
908 		I915_WRITE(PCH_PP_CONTROL,
909 			   I915_READ(PCH_PP_CONTROL) | PANEL_UNLOCK_REGS);
910 	} else {
911 		I915_WRITE(PP_CONTROL,
912 			   I915_READ(PP_CONTROL) | PANEL_UNLOCK_REGS);
913 	}
914 	if (!intel_lvds_supported(dev))
915 		return;
916 
917 	/* Skip init on machines we know falsely report LVDS */
918 	if (dmi_check_system(intel_no_lvds))
919 		return;
920 
921 	pin = GMBUS_PORT_PANEL;
922 	if (!lvds_is_present_in_vbt(dev, &pin)) {
923 		DRM_DEBUG_KMS("LVDS is not present in VBT\n");
924 		return;
925 	}
926 
927 	if (HAS_PCH_SPLIT(dev)) {
928 		if ((I915_READ(PCH_LVDS) & LVDS_DETECTED) == 0)
929 			return;
930 		if (dev_priv->vbt.edp_support) {
931 			DRM_DEBUG_KMS("disable LVDS for eDP support\n");
932 			return;
933 		}
934 	}
935 
936 	lvds_encoder = kzalloc(sizeof(*lvds_encoder), GFP_KERNEL);
937 	if (!lvds_encoder)
938 		return;
939 
940 	lvds_connector = kzalloc(sizeof(*lvds_connector), GFP_KERNEL);
941 	if (!lvds_connector) {
942 		kfree(lvds_encoder);
943 		return;
944 	}
945 
946 	lvds_encoder->attached_connector = lvds_connector;
947 
948 	intel_encoder = &lvds_encoder->base;
949 	encoder = &intel_encoder->base;
950 	intel_connector = &lvds_connector->base;
951 	connector = &intel_connector->base;
952 	drm_connector_init(dev, &intel_connector->base, &intel_lvds_connector_funcs,
953 			   DRM_MODE_CONNECTOR_LVDS);
954 
955 	drm_encoder_init(dev, &intel_encoder->base, &intel_lvds_enc_funcs,
956 			 DRM_MODE_ENCODER_LVDS);
957 
958 	intel_encoder->enable = intel_enable_lvds;
959 	intel_encoder->pre_enable = intel_pre_enable_lvds;
960 	intel_encoder->compute_config = intel_lvds_compute_config;
961 	intel_encoder->disable = intel_disable_lvds;
962 	intel_encoder->get_hw_state = intel_lvds_get_hw_state;
963 	intel_encoder->get_config = intel_lvds_get_config;
964 	intel_connector->get_hw_state = intel_connector_get_hw_state;
965 	intel_connector->unregister = intel_connector_unregister;
966 
967 	intel_connector_attach_encoder(intel_connector, intel_encoder);
968 	intel_encoder->type = INTEL_OUTPUT_LVDS;
969 
970 	intel_encoder->cloneable = 0;
971 	if (HAS_PCH_SPLIT(dev))
972 		intel_encoder->crtc_mask = (1 << 0) | (1 << 1) | (1 << 2);
973 	else if (IS_GEN4(dev))
974 		intel_encoder->crtc_mask = (1 << 0) | (1 << 1);
975 	else
976 		intel_encoder->crtc_mask = (1 << 1);
977 
978 	drm_connector_helper_add(connector, &intel_lvds_connector_helper_funcs);
979 	connector->display_info.subpixel_order = SubPixelHorizontalRGB;
980 	connector->interlace_allowed = false;
981 	connector->doublescan_allowed = false;
982 
983 	if (HAS_PCH_SPLIT(dev)) {
984 		lvds_encoder->reg = PCH_LVDS;
985 	} else {
986 		lvds_encoder->reg = LVDS;
987 	}
988 
989 	/* create the scaling mode property */
990 	drm_mode_create_scaling_mode_property(dev);
991 	drm_object_attach_property(&connector->base,
992 				      dev->mode_config.scaling_mode_property,
993 				      DRM_MODE_SCALE_ASPECT);
994 	intel_connector->panel.fitting_mode = DRM_MODE_SCALE_ASPECT;
995 	/*
996 	 * LVDS discovery:
997 	 * 1) check for EDID on DDC
998 	 * 2) check for VBT data
999 	 * 3) check to see if LVDS is already on
1000 	 *    if none of the above, no panel
1001 	 * 4) make sure lid is open
1002 	 *    if closed, act like it's not there for now
1003 	 */
1004 
1005 	/*
1006 	 * Attempt to get the fixed panel mode from DDC.  Assume that the
1007 	 * preferred mode is the right one.
1008 	 */
1009 	mutex_lock(&dev->mode_config.mutex);
1010 	edid = drm_get_edid(connector, intel_gmbus_get_adapter(dev_priv, pin));
1011 	if (edid) {
1012 		if (drm_add_edid_modes(connector, edid)) {
1013 			drm_mode_connector_update_edid_property(connector,
1014 								edid);
1015 		} else {
1016 			kfree(edid);
1017 			edid = ERR_PTR(-EINVAL);
1018 		}
1019 	} else {
1020 		edid = ERR_PTR(-ENOENT);
1021 	}
1022 	lvds_connector->base.edid = edid;
1023 
1024 	if (IS_ERR_OR_NULL(edid)) {
1025 		/* Didn't get an EDID, so
1026 		 * Set wide sync ranges so we get all modes
1027 		 * handed to valid_mode for checking
1028 		 */
1029 		connector->display_info.min_vfreq = 0;
1030 		connector->display_info.max_vfreq = 200;
1031 		connector->display_info.min_hfreq = 0;
1032 		connector->display_info.max_hfreq = 200;
1033 	}
1034 
1035 	list_for_each_entry(scan, &connector->probed_modes, head) {
1036 		if (scan->type & DRM_MODE_TYPE_PREFERRED) {
1037 			DRM_DEBUG_KMS("using preferred mode from EDID: ");
1038 			drm_mode_debug_printmodeline(scan);
1039 
1040 			fixed_mode = drm_mode_duplicate(dev, scan);
1041 			if (fixed_mode) {
1042 				downclock_mode =
1043 					intel_find_panel_downclock(dev,
1044 					fixed_mode, connector);
1045 				if (downclock_mode != NULL &&
1046 					i915.lvds_downclock) {
1047 					/* We found the downclock for LVDS. */
1048 					dev_priv->lvds_downclock_avail = true;
1049 					dev_priv->lvds_downclock =
1050 						downclock_mode->clock;
1051 					DRM_DEBUG_KMS("LVDS downclock is found"
1052 					" in EDID. Normal clock %dKhz, "
1053 					"downclock %dKhz\n",
1054 					fixed_mode->clock,
1055 					dev_priv->lvds_downclock);
1056 				}
1057 				goto out;
1058 			}
1059 		}
1060 	}
1061 
1062 	/* Failed to get EDID, what about VBT? */
1063 	if (dev_priv->vbt.lfp_lvds_vbt_mode) {
1064 		DRM_DEBUG_KMS("using mode from VBT: ");
1065 		drm_mode_debug_printmodeline(dev_priv->vbt.lfp_lvds_vbt_mode);
1066 
1067 		fixed_mode = drm_mode_duplicate(dev, dev_priv->vbt.lfp_lvds_vbt_mode);
1068 		if (fixed_mode) {
1069 			fixed_mode->type |= DRM_MODE_TYPE_PREFERRED;
1070 			goto out;
1071 		}
1072 	}
1073 
1074 	/*
1075 	 * If we didn't get EDID, try checking if the panel is already turned
1076 	 * on.  If so, assume that whatever is currently programmed is the
1077 	 * correct mode.
1078 	 */
1079 
1080 	/* Ironlake: FIXME if still fail, not try pipe mode now */
1081 	if (HAS_PCH_SPLIT(dev))
1082 		goto failed;
1083 
1084 	lvds = I915_READ(LVDS);
1085 	pipe = (lvds & LVDS_PIPEB_SELECT) ? 1 : 0;
1086 	crtc = intel_get_crtc_for_pipe(dev, pipe);
1087 
1088 	if (crtc && (lvds & LVDS_PORT_EN)) {
1089 		fixed_mode = intel_crtc_mode_get(dev, crtc);
1090 		if (fixed_mode) {
1091 			DRM_DEBUG_KMS("using current (BIOS) mode: ");
1092 			drm_mode_debug_printmodeline(fixed_mode);
1093 			fixed_mode->type |= DRM_MODE_TYPE_PREFERRED;
1094 			goto out;
1095 		}
1096 	}
1097 
1098 	/* If we still don't have a mode after all that, give up. */
1099 	if (!fixed_mode)
1100 		goto failed;
1101 
1102 out:
1103 	mutex_unlock(&dev->mode_config.mutex);
1104 
1105 	lvds_encoder->is_dual_link = compute_is_dual_link_lvds(lvds_encoder);
1106 	DRM_DEBUG_KMS("detected %s-link lvds configuration\n",
1107 		      lvds_encoder->is_dual_link ? "dual" : "single");
1108 
1109 	lvds_encoder->a3_power = I915_READ(lvds_encoder->reg) &
1110 				 LVDS_A3_POWER_MASK;
1111 
1112 #if 0
1113 	lvds_connector->lid_notifier.notifier_call = intel_lid_notify;
1114 	if (acpi_lid_notifier_register(&lvds_connector->lid_notifier)) {
1115 		DRM_DEBUG_KMS("lid notifier registration failed\n");
1116 		lvds_connector->lid_notifier.notifier_call = NULL;
1117 	}
1118 	drm_connector_register(connector);
1119 #endif
1120 
1121 	intel_panel_init(&intel_connector->panel, fixed_mode, downclock_mode);
1122 	intel_panel_setup_backlight(connector);
1123 
1124 	return;
1125 
1126 failed:
1127 	mutex_unlock(&dev->mode_config.mutex);
1128 
1129 	DRM_DEBUG_KMS("No LVDS modes found, disabling.\n");
1130 	drm_connector_cleanup(connector);
1131 	drm_encoder_cleanup(encoder);
1132 	kfree(lvds_encoder);
1133 	kfree(lvds_connector);
1134 	return;
1135 }
1136