xref: /linux/drivers/gpu/drm/i915/display/intel_panel.c (revision bba2c3615bd6cfee7456d1130f2e6b01b3f4e9ba)
1 /*
2  * Copyright © 2006-2010 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  *      Chris Wilson <chris@chris-wilson.co.uk>
29  */
30 
31 #include <linux/kernel.h>
32 #include <linux/pwm.h>
33 
34 #include <drm/drm_edid.h>
35 #include <drm/drm_print.h>
36 
37 #include "intel_backlight.h"
38 #include "intel_connector.h"
39 #include "intel_display_core.h"
40 #include "intel_display_driver.h"
41 #include "intel_display_types.h"
42 #include "intel_drrs.h"
43 #include "intel_panel.h"
44 #include "intel_quirks.h"
45 #include "intel_vrr.h"
46 
47 bool intel_panel_use_ssc(struct intel_display *display)
48 {
49 	if (display->params.panel_use_ssc >= 0)
50 		return display->params.panel_use_ssc != 0;
51 	return display->vbt.lvds_use_ssc &&
52 		!intel_has_quirk(display, QUIRK_LVDS_SSC_DISABLE);
53 }
54 
55 const struct drm_display_mode *
56 intel_panel_preferred_fixed_mode(struct intel_connector *connector)
57 {
58 	return list_first_entry_or_null(&connector->panel.fixed_modes,
59 					struct drm_display_mode, head);
60 }
61 
62 static bool is_best_fixed_mode(struct intel_connector *connector,
63 			       int vrefresh, int fixed_mode_vrefresh,
64 			       const struct drm_display_mode *best_mode)
65 {
66 	/* we want to always return something */
67 	if (!best_mode)
68 		return true;
69 
70 	/*
71 	 * With VRR always pick a mode with equal/higher than requested
72 	 * vrefresh, which we can then reduce to match the requested
73 	 * vrefresh by extending the vblank length.
74 	 */
75 	if (intel_vrr_is_in_range(connector, vrefresh) &&
76 	    intel_vrr_is_in_range(connector, fixed_mode_vrefresh) &&
77 	    fixed_mode_vrefresh < vrefresh)
78 		return false;
79 
80 	/* pick the fixed_mode that is closest in terms of vrefresh */
81 	return abs(fixed_mode_vrefresh - vrefresh) <
82 		abs(drm_mode_vrefresh(best_mode) - vrefresh);
83 }
84 
85 const struct drm_display_mode *
86 intel_panel_fixed_mode(struct intel_connector *connector,
87 		       const struct drm_display_mode *mode)
88 {
89 	const struct drm_display_mode *fixed_mode, *best_mode = NULL;
90 	int vrefresh = drm_mode_vrefresh(mode);
91 
92 	list_for_each_entry(fixed_mode, &connector->panel.fixed_modes, head) {
93 		int fixed_mode_vrefresh = drm_mode_vrefresh(fixed_mode);
94 
95 		if (is_best_fixed_mode(connector, vrefresh,
96 				       fixed_mode_vrefresh, best_mode))
97 			best_mode = fixed_mode;
98 	}
99 
100 	return best_mode;
101 }
102 
103 static bool is_alt_drrs_mode(const struct drm_display_mode *mode,
104 			     const struct drm_display_mode *preferred_mode)
105 {
106 	return drm_mode_match(mode, preferred_mode,
107 			      DRM_MODE_MATCH_TIMINGS |
108 			      DRM_MODE_MATCH_FLAGS |
109 			      DRM_MODE_MATCH_3D_FLAGS) &&
110 		mode->clock != preferred_mode->clock;
111 }
112 
113 static bool is_alt_fixed_mode(const struct drm_display_mode *mode,
114 			      const struct drm_display_mode *preferred_mode)
115 {
116 	u32 sync_flags = DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NHSYNC |
117 		DRM_MODE_FLAG_PVSYNC | DRM_MODE_FLAG_NVSYNC;
118 
119 	return (mode->flags & ~sync_flags) == (preferred_mode->flags & ~sync_flags) &&
120 		mode->hdisplay == preferred_mode->hdisplay &&
121 		mode->vdisplay == preferred_mode->vdisplay;
122 }
123 
124 const struct drm_display_mode *
125 intel_panel_downclock_mode(struct intel_connector *connector,
126 			   const struct drm_display_mode *adjusted_mode)
127 {
128 	const struct drm_display_mode *fixed_mode, *best_mode = NULL;
129 	int min_vrefresh = connector->panel.vbt.seamless_drrs_min_refresh_rate;
130 	int max_vrefresh = drm_mode_vrefresh(adjusted_mode);
131 
132 	/* pick the fixed_mode with the lowest refresh rate */
133 	list_for_each_entry(fixed_mode, &connector->panel.fixed_modes, head) {
134 		int vrefresh = drm_mode_vrefresh(fixed_mode);
135 
136 		if (is_alt_drrs_mode(fixed_mode, adjusted_mode) &&
137 		    vrefresh >= min_vrefresh && vrefresh < max_vrefresh) {
138 			max_vrefresh = vrefresh;
139 			best_mode = fixed_mode;
140 		}
141 	}
142 
143 	return best_mode;
144 }
145 
146 const struct drm_display_mode *
147 intel_panel_highest_mode(struct intel_connector *connector,
148 			 const struct drm_display_mode *adjusted_mode)
149 {
150 	const struct drm_display_mode *fixed_mode, *best_mode = adjusted_mode;
151 
152 	/* pick the fixed_mode that has the highest clock */
153 	list_for_each_entry(fixed_mode, &connector->panel.fixed_modes, head) {
154 		if (fixed_mode->clock > best_mode->clock)
155 			best_mode = fixed_mode;
156 	}
157 
158 	return best_mode;
159 }
160 
161 int intel_panel_get_modes(struct intel_connector *connector)
162 {
163 	const struct drm_display_mode *fixed_mode;
164 	int num_modes = 0;
165 
166 	list_for_each_entry(fixed_mode, &connector->panel.fixed_modes, head) {
167 		struct drm_display_mode *mode;
168 
169 		mode = drm_mode_duplicate(connector->base.dev, fixed_mode);
170 		if (mode) {
171 			drm_mode_probed_add(&connector->base, mode);
172 			num_modes++;
173 		}
174 	}
175 
176 	return num_modes;
177 }
178 
179 static bool has_drrs_modes(struct intel_connector *connector)
180 {
181 	const struct drm_display_mode *mode1;
182 
183 	list_for_each_entry(mode1, &connector->panel.fixed_modes, head) {
184 		const struct drm_display_mode *mode2 = mode1;
185 
186 		list_for_each_entry_continue(mode2, &connector->panel.fixed_modes, head) {
187 			if (is_alt_drrs_mode(mode1, mode2))
188 				return true;
189 		}
190 	}
191 
192 	return false;
193 }
194 
195 enum drrs_type intel_panel_drrs_type(struct intel_connector *connector)
196 {
197 	return connector->panel.vbt.drrs_type;
198 }
199 
200 int intel_panel_compute_config(struct intel_connector *connector,
201 			       struct drm_display_mode *adjusted_mode)
202 {
203 	const struct drm_display_mode *fixed_mode =
204 		intel_panel_fixed_mode(connector, adjusted_mode);
205 	int vrefresh, fixed_mode_vrefresh;
206 	bool is_vrr;
207 
208 	if (!fixed_mode)
209 		return 0;
210 
211 	vrefresh = drm_mode_vrefresh(adjusted_mode);
212 	fixed_mode_vrefresh = drm_mode_vrefresh(fixed_mode);
213 
214 	/*
215 	 * Assume that we shouldn't muck about with the
216 	 * timings if they don't land in the VRR range.
217 	 */
218 	is_vrr = intel_vrr_is_in_range(connector, vrefresh) &&
219 		intel_vrr_is_in_range(connector, fixed_mode_vrefresh);
220 
221 	if (!is_vrr) {
222 		/*
223 		 * We don't want to lie too much to the user about the refresh
224 		 * rate they're going to get. But we have to allow a bit of latitude
225 		 * for Xorg since it likes to automagically cook up modes with slightly
226 		 * off refresh rates.
227 		 */
228 		if (abs(vrefresh - fixed_mode_vrefresh) > 1) {
229 			drm_dbg_kms(connector->base.dev,
230 				    "[CONNECTOR:%d:%s] Requested mode vrefresh (%d Hz) does not match fixed mode vrefresh (%d Hz)\n",
231 				    connector->base.base.id, connector->base.name,
232 				    vrefresh, fixed_mode_vrefresh);
233 
234 			return -EINVAL;
235 		}
236 	}
237 
238 	drm_mode_copy(adjusted_mode, fixed_mode);
239 
240 	if (is_vrr && fixed_mode_vrefresh != vrefresh)
241 		adjusted_mode->vtotal =
242 			DIV_ROUND_CLOSEST(adjusted_mode->clock * 1000,
243 					  adjusted_mode->htotal * vrefresh);
244 
245 	drm_mode_set_crtcinfo(adjusted_mode, 0);
246 
247 	return 0;
248 }
249 
250 static void intel_panel_add_edid_alt_fixed_modes(struct intel_connector *connector)
251 {
252 	struct intel_display *display = to_intel_display(connector);
253 	const struct drm_display_mode *preferred_mode =
254 		intel_panel_preferred_fixed_mode(connector);
255 	struct drm_display_mode *mode, *next;
256 
257 	list_for_each_entry_safe(mode, next, &connector->base.probed_modes, head) {
258 		if (!is_alt_fixed_mode(mode, preferred_mode))
259 			continue;
260 
261 		drm_dbg_kms(display->drm,
262 			    "[CONNECTOR:%d:%s] using alternate EDID fixed mode: " DRM_MODE_FMT "\n",
263 			    connector->base.base.id, connector->base.name,
264 			    DRM_MODE_ARG(mode));
265 
266 		list_move_tail(&mode->head, &connector->panel.fixed_modes);
267 	}
268 }
269 
270 static void intel_panel_add_edid_preferred_mode(struct intel_connector *connector)
271 {
272 	struct intel_display *display = to_intel_display(connector);
273 	struct drm_display_mode *scan, *fixed_mode = NULL;
274 
275 	if (list_empty(&connector->base.probed_modes))
276 		return;
277 
278 	/* make sure the preferred mode is first */
279 	list_for_each_entry(scan, &connector->base.probed_modes, head) {
280 		if (scan->type & DRM_MODE_TYPE_PREFERRED) {
281 			fixed_mode = scan;
282 			break;
283 		}
284 	}
285 
286 	if (!fixed_mode)
287 		fixed_mode = list_first_entry(&connector->base.probed_modes,
288 					      typeof(*fixed_mode), head);
289 
290 	drm_dbg_kms(display->drm,
291 		    "[CONNECTOR:%d:%s] using %s EDID fixed mode: " DRM_MODE_FMT "\n",
292 		    connector->base.base.id, connector->base.name,
293 		    fixed_mode->type & DRM_MODE_TYPE_PREFERRED ? "preferred" : "first",
294 		    DRM_MODE_ARG(fixed_mode));
295 
296 	fixed_mode->type |= DRM_MODE_TYPE_PREFERRED;
297 
298 	list_move_tail(&fixed_mode->head, &connector->panel.fixed_modes);
299 }
300 
301 static void intel_panel_destroy_probed_modes(struct intel_connector *connector)
302 {
303 	struct intel_display *display = to_intel_display(connector);
304 	struct drm_display_mode *mode, *next;
305 
306 	list_for_each_entry_safe(mode, next, &connector->base.probed_modes, head) {
307 		drm_dbg_kms(display->drm,
308 			    "[CONNECTOR:%d:%s] not using EDID mode: " DRM_MODE_FMT "\n",
309 			    connector->base.base.id, connector->base.name,
310 			    DRM_MODE_ARG(mode));
311 		list_del(&mode->head);
312 		drm_mode_destroy(display->drm, mode);
313 	}
314 }
315 
316 void intel_panel_add_edid_fixed_modes(struct intel_connector *connector,
317 				      bool use_alt_fixed_modes)
318 {
319 	intel_panel_add_edid_preferred_mode(connector);
320 	if (intel_panel_preferred_fixed_mode(connector) && use_alt_fixed_modes)
321 		intel_panel_add_edid_alt_fixed_modes(connector);
322 	intel_panel_destroy_probed_modes(connector);
323 }
324 
325 static void intel_panel_add_fixed_mode(struct intel_connector *connector,
326 				       struct drm_display_mode *fixed_mode,
327 				       const char *type)
328 {
329 	struct intel_display *display = to_intel_display(connector);
330 	struct drm_display_info *info = &connector->base.display_info;
331 
332 	if (!fixed_mode)
333 		return;
334 
335 	fixed_mode->type |= DRM_MODE_TYPE_PREFERRED | DRM_MODE_TYPE_DRIVER;
336 
337 	info->width_mm = fixed_mode->width_mm;
338 	info->height_mm = fixed_mode->height_mm;
339 
340 	drm_dbg_kms(display->drm, "[CONNECTOR:%d:%s] using %s fixed mode: " DRM_MODE_FMT "\n",
341 		    connector->base.base.id, connector->base.name, type,
342 		    DRM_MODE_ARG(fixed_mode));
343 
344 	list_add_tail(&fixed_mode->head, &connector->panel.fixed_modes);
345 }
346 
347 void intel_panel_add_vbt_lfp_fixed_mode(struct intel_connector *connector)
348 {
349 	struct intel_display *display = to_intel_display(connector);
350 	const struct drm_display_mode *mode;
351 
352 	mode = connector->panel.vbt.lfp_vbt_mode;
353 	if (!mode)
354 		return;
355 
356 	intel_panel_add_fixed_mode(connector,
357 				   drm_mode_duplicate(display->drm, mode),
358 				   "VBT LFP");
359 }
360 
361 void intel_panel_add_vbt_sdvo_fixed_mode(struct intel_connector *connector)
362 {
363 	struct intel_display *display = to_intel_display(connector);
364 	const struct drm_display_mode *mode;
365 
366 	mode = connector->panel.vbt.sdvo_lvds_vbt_mode;
367 	if (!mode)
368 		return;
369 
370 	intel_panel_add_fixed_mode(connector,
371 				   drm_mode_duplicate(display->drm, mode),
372 				   "VBT SDVO");
373 }
374 
375 void intel_panel_add_encoder_fixed_mode(struct intel_connector *connector,
376 					struct intel_encoder *encoder)
377 {
378 	intel_panel_add_fixed_mode(connector,
379 				   intel_encoder_current_mode(encoder),
380 				   "current (BIOS)");
381 }
382 
383 enum drm_connector_status
384 intel_panel_detect(struct drm_connector *connector, bool force)
385 {
386 	struct intel_display *display = to_intel_display(connector->dev);
387 
388 	if (!intel_display_device_enabled(display))
389 		return connector_status_disconnected;
390 
391 	if (!intel_display_driver_check_access(display))
392 		return connector->status;
393 
394 	return connector_status_connected;
395 }
396 
397 enum drm_mode_status
398 intel_panel_mode_valid(struct intel_connector *connector,
399 		       const struct drm_display_mode *mode,
400 		       int *target_clock)
401 {
402 	const struct drm_display_mode *fixed_mode =
403 		intel_panel_fixed_mode(connector, mode);
404 
405 	if (target_clock)
406 		*target_clock = mode->clock;
407 
408 	if (!fixed_mode)
409 		return MODE_OK;
410 
411 	if (mode->hdisplay != fixed_mode->hdisplay)
412 		return MODE_PANEL;
413 
414 	if (mode->vdisplay != fixed_mode->vdisplay)
415 		return MODE_PANEL;
416 
417 	if (drm_mode_vrefresh(mode) != drm_mode_vrefresh(fixed_mode))
418 		return MODE_PANEL;
419 
420 	if (target_clock)
421 		*target_clock = fixed_mode->clock;
422 
423 	return MODE_OK;
424 }
425 
426 void intel_panel_init_alloc(struct intel_connector *connector)
427 {
428 	struct intel_panel *panel = &connector->panel;
429 
430 	connector->panel.vbt.panel_type = -1;
431 	connector->panel.vbt.backlight.controller = -1;
432 	INIT_LIST_HEAD(&panel->fixed_modes);
433 }
434 
435 int intel_panel_init(struct intel_connector *connector,
436 		     const struct drm_edid *fixed_edid)
437 {
438 	struct intel_panel *panel = &connector->panel;
439 
440 	panel->fixed_edid = fixed_edid;
441 
442 	intel_backlight_init_funcs(panel);
443 
444 	if (!has_drrs_modes(connector))
445 		connector->panel.vbt.drrs_type = DRRS_TYPE_NONE;
446 
447 	drm_dbg_kms(connector->base.dev,
448 		    "[CONNECTOR:%d:%s] DRRS type: %s\n",
449 		    connector->base.base.id, connector->base.name,
450 		    intel_drrs_type_str(intel_panel_drrs_type(connector)));
451 
452 	return 0;
453 }
454 
455 void intel_panel_fini(struct intel_connector *connector)
456 {
457 	struct intel_panel *panel = &connector->panel;
458 	struct drm_display_mode *fixed_mode, *next;
459 
460 	if (!IS_ERR_OR_NULL(panel->fixed_edid))
461 		drm_edid_free(panel->fixed_edid);
462 
463 	intel_backlight_destroy(panel);
464 
465 	intel_bios_fini_panel(panel);
466 
467 	list_for_each_entry_safe(fixed_mode, next, &panel->fixed_modes, head) {
468 		list_del(&fixed_mode->head);
469 		drm_mode_destroy(connector->base.dev, fixed_mode);
470 	}
471 }
472 
473 /*
474  * If the panel was already enabled at probe, and we took over the state, the
475  * panel prepared state is out of sync, and the panel followers won't be
476  * notified. We need to call drm_panel_prepare() on enabled panels.
477  *
478  * It would be natural to handle this e.g. in the connector ->sync_state hook at
479  * intel_modeset_readout_hw_state(), but that's unfortunately too early. We
480  * don't have drm_connector::kdev at that time. For now, figure out the state at
481  * ->late_register, and sync there.
482  */
483 static void intel_panel_sync_state(struct intel_connector *connector)
484 {
485 	struct intel_display *display = to_intel_display(connector);
486 	struct drm_connector_state *conn_state;
487 	struct intel_crtc *crtc;
488 	int ret;
489 
490 	ret = drm_modeset_lock(&display->drm->mode_config.connection_mutex, NULL);
491 	if (ret)
492 		return;
493 
494 	conn_state = connector->base.state;
495 
496 	crtc = to_intel_crtc(conn_state->crtc);
497 	if (crtc) {
498 		struct intel_crtc_state *crtc_state;
499 
500 		crtc_state = to_intel_crtc_state(crtc->base.state);
501 
502 		if (crtc_state->hw.active) {
503 			drm_dbg_kms(display->drm, "[CONNECTOR:%d:%s] Panel prepare\n",
504 				    connector->base.base.id, connector->base.name);
505 			intel_panel_prepare(crtc_state, conn_state);
506 		}
507 	}
508 
509 	drm_modeset_unlock(&display->drm->mode_config.connection_mutex);
510 }
511 
512 static const struct drm_panel_funcs dummy_panel_funcs = {
513 };
514 
515 int intel_panel_register(struct intel_connector *connector)
516 {
517 	struct intel_display *display = to_intel_display(connector);
518 	struct intel_panel *panel = &connector->panel;
519 	int ret;
520 
521 	ret = intel_backlight_device_register(connector);
522 	if (ret)
523 		return ret;
524 
525 	if (connector->base.connector_type == DRM_MODE_CONNECTOR_DSI ||
526 	    connector->base.connector_type == DRM_MODE_CONNECTOR_eDP) {
527 		struct device *dev = connector->base.kdev;
528 		struct drm_panel *base;
529 
530 		/* Sanity check. */
531 		if (drm_WARN_ON(display->drm, !dev))
532 			goto out;
533 
534 		/*
535 		 * We need drm_connector::kdev for allocating the panel, to make
536 		 * drm_panel_add_follower() lookups work. The kdev is
537 		 * initialized in drm_sysfs_connector_add(), just before the
538 		 * connector .late_register() hooks. So we can't allocate the
539 		 * panel at connector init time, and can't allocate struct
540 		 * intel_panel with a drm_panel sub-struct. For now, use
541 		 * __devm_drm_panel_alloc() directly.
542 		 *
543 		 * The lookups also depend on drm_connector::fwnode being set in
544 		 * intel_acpi_assign_connector_fwnodes(). However, if that's
545 		 * missing, it will gracefully lead to -EPROBE_DEFER in
546 		 * drm_panel_add_follower().
547 		 */
548 		base = __devm_drm_panel_alloc(dev, sizeof(*base), 0,
549 					      &dummy_panel_funcs,
550 					      connector->base.connector_type);
551 		if (IS_ERR(base)) {
552 			ret = PTR_ERR(base);
553 			goto err;
554 		}
555 
556 		panel->base = base;
557 
558 		drm_panel_add(panel->base);
559 
560 		drm_dbg_kms(display->drm, "[CONNECTOR:%d:%s] Registered panel device '%s', has fwnode: %s\n",
561 			    connector->base.base.id, connector->base.name,
562 			    dev_name(dev), str_yes_no(dev_fwnode(dev)));
563 
564 		intel_panel_sync_state(connector);
565 	}
566 
567 out:
568 	return 0;
569 
570 err:
571 	intel_backlight_device_unregister(connector);
572 
573 	return ret;
574 }
575 
576 void intel_panel_unregister(struct intel_connector *connector)
577 {
578 	struct intel_panel *panel = &connector->panel;
579 
580 	if (panel->base)
581 		drm_panel_remove(panel->base);
582 
583 	intel_backlight_device_unregister(connector);
584 }
585 
586 /* Notify followers, if any, about power being up. */
587 void intel_panel_prepare(const struct intel_crtc_state *crtc_state,
588 			 const struct drm_connector_state *conn_state)
589 {
590 	struct intel_connector *connector = to_intel_connector(conn_state->connector);
591 	struct intel_panel *panel = &connector->panel;
592 
593 	drm_panel_prepare(panel->base);
594 }
595 
596 /* Notify followers, if any, about power going down. */
597 void intel_panel_unprepare(const struct drm_connector_state *old_conn_state)
598 {
599 	struct intel_connector *connector = to_intel_connector(old_conn_state->connector);
600 	struct intel_panel *panel = &connector->panel;
601 
602 	drm_panel_unprepare(panel->base);
603 }
604