drm: Merge helper docbook into kerneldoc comments
[deliverable/linux.git] / drivers / gpu / drm / drm_crtc_helper.c
1 /*
2 * Copyright (c) 2006-2008 Intel Corporation
3 * Copyright (c) 2007 Dave Airlie <airlied@linux.ie>
4 *
5 * DRM core CRTC related functions
6 *
7 * Permission to use, copy, modify, distribute, and sell this software and its
8 * documentation for any purpose is hereby granted without fee, provided that
9 * the above copyright notice appear in all copies and that both that copyright
10 * notice and this permission notice appear in supporting documentation, and
11 * that the name of the copyright holders not be used in advertising or
12 * publicity pertaining to distribution of the software without specific,
13 * written prior permission. The copyright holders make no representations
14 * about the suitability of this software for any purpose. It is provided "as
15 * is" without express or implied warranty.
16 *
17 * THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
18 * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
19 * EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY SPECIAL, INDIRECT OR
20 * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
21 * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
22 * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
23 * OF THIS SOFTWARE.
24 *
25 * Authors:
26 * Keith Packard
27 * Eric Anholt <eric@anholt.net>
28 * Dave Airlie <airlied@linux.ie>
29 * Jesse Barnes <jesse.barnes@intel.com>
30 */
31
32 #include <linux/kernel.h>
33 #include <linux/export.h>
34 #include <linux/moduleparam.h>
35
36 #include <drm/drmP.h>
37 #include <drm/drm_atomic.h>
38 #include <drm/drm_crtc.h>
39 #include <drm/drm_fourcc.h>
40 #include <drm/drm_crtc_helper.h>
41 #include <drm/drm_fb_helper.h>
42 #include <drm/drm_plane_helper.h>
43 #include <drm/drm_atomic_helper.h>
44 #include <drm/drm_edid.h>
45
46 /**
47 * DOC: overview
48 *
49 * The CRTC modeset helper library provides a default set_config implementation
50 * in drm_crtc_helper_set_config(). Plus a few other convenience functions using
51 * the same callbacks which drivers can use to e.g. restore the modeset
52 * configuration on resume with drm_helper_resume_force_mode().
53 *
54 * Note that this helper library doesn't track the current power state of CRTCs
55 * and encoders. It can call callbacks like ->dpms() even though the hardware is
56 * already in the desired state. This deficiency has been fixed in the atomic
57 * helpers.
58 *
59 * The driver callbacks are mostly compatible with the atomic modeset helpers,
60 * except for the handling of the primary plane: Atomic helpers require that the
61 * primary plane is implemented as a real standalone plane and not directly tied
62 * to the CRTC state. For easier transition this library provides functions to
63 * implement the old semantics required by the CRTC helpers using the new plane
64 * and atomic helper callbacks.
65 *
66 * Drivers are strongly urged to convert to the atomic helpers (by way of first
67 * converting to the plane helpers). New drivers must not use these functions
68 * but need to implement the atomic interface instead, potentially using the
69 * atomic helpers for that.
70 *
71 * These legacy modeset helpers use the same function table structures as
72 * all other modesetting helpers. See the documentation for struct
73 * &drm_crtc_helper_funcs, struct &drm_encoder_helper_funcs and struct
74 * &drm_connector_helper_funcs.
75 */
76 MODULE_AUTHOR("David Airlie, Jesse Barnes");
77 MODULE_DESCRIPTION("DRM KMS helper");
78 MODULE_LICENSE("GPL and additional rights");
79
80 /**
81 * drm_helper_move_panel_connectors_to_head() - move panels to the front in the
82 * connector list
83 * @dev: drm device to operate on
84 *
85 * Some userspace presumes that the first connected connector is the main
86 * display, where it's supposed to display e.g. the login screen. For
87 * laptops, this should be the main panel. Use this function to sort all
88 * (eDP/LVDS) panels to the front of the connector list, instead of
89 * painstakingly trying to initialize them in the right order.
90 */
91 void drm_helper_move_panel_connectors_to_head(struct drm_device *dev)
92 {
93 struct drm_connector *connector, *tmp;
94 struct list_head panel_list;
95
96 INIT_LIST_HEAD(&panel_list);
97
98 list_for_each_entry_safe(connector, tmp,
99 &dev->mode_config.connector_list, head) {
100 if (connector->connector_type == DRM_MODE_CONNECTOR_LVDS ||
101 connector->connector_type == DRM_MODE_CONNECTOR_eDP)
102 list_move_tail(&connector->head, &panel_list);
103 }
104
105 list_splice(&panel_list, &dev->mode_config.connector_list);
106 }
107 EXPORT_SYMBOL(drm_helper_move_panel_connectors_to_head);
108
109 /**
110 * drm_helper_encoder_in_use - check if a given encoder is in use
111 * @encoder: encoder to check
112 *
113 * Checks whether @encoder is with the current mode setting output configuration
114 * in use by any connector. This doesn't mean that it is actually enabled since
115 * the DPMS state is tracked separately.
116 *
117 * Returns:
118 * True if @encoder is used, false otherwise.
119 */
120 bool drm_helper_encoder_in_use(struct drm_encoder *encoder)
121 {
122 struct drm_connector *connector;
123 struct drm_device *dev = encoder->dev;
124
125 /*
126 * We can expect this mutex to be locked if we are not panicking.
127 * Locking is currently fubar in the panic handler.
128 */
129 if (!oops_in_progress) {
130 WARN_ON(!mutex_is_locked(&dev->mode_config.mutex));
131 WARN_ON(!drm_modeset_is_locked(&dev->mode_config.connection_mutex));
132 }
133
134 drm_for_each_connector(connector, dev)
135 if (connector->encoder == encoder)
136 return true;
137 return false;
138 }
139 EXPORT_SYMBOL(drm_helper_encoder_in_use);
140
141 /**
142 * drm_helper_crtc_in_use - check if a given CRTC is in a mode_config
143 * @crtc: CRTC to check
144 *
145 * Checks whether @crtc is with the current mode setting output configuration
146 * in use by any connector. This doesn't mean that it is actually enabled since
147 * the DPMS state is tracked separately.
148 *
149 * Returns:
150 * True if @crtc is used, false otherwise.
151 */
152 bool drm_helper_crtc_in_use(struct drm_crtc *crtc)
153 {
154 struct drm_encoder *encoder;
155 struct drm_device *dev = crtc->dev;
156
157 /*
158 * We can expect this mutex to be locked if we are not panicking.
159 * Locking is currently fubar in the panic handler.
160 */
161 if (!oops_in_progress)
162 WARN_ON(!mutex_is_locked(&dev->mode_config.mutex));
163
164 drm_for_each_encoder(encoder, dev)
165 if (encoder->crtc == crtc && drm_helper_encoder_in_use(encoder))
166 return true;
167 return false;
168 }
169 EXPORT_SYMBOL(drm_helper_crtc_in_use);
170
171 static void
172 drm_encoder_disable(struct drm_encoder *encoder)
173 {
174 const struct drm_encoder_helper_funcs *encoder_funcs = encoder->helper_private;
175
176 drm_bridge_disable(encoder->bridge);
177
178 if (encoder_funcs->disable)
179 (*encoder_funcs->disable)(encoder);
180 else
181 (*encoder_funcs->dpms)(encoder, DRM_MODE_DPMS_OFF);
182
183 drm_bridge_post_disable(encoder->bridge);
184 }
185
186 static void __drm_helper_disable_unused_functions(struct drm_device *dev)
187 {
188 struct drm_encoder *encoder;
189 struct drm_crtc *crtc;
190
191 drm_warn_on_modeset_not_all_locked(dev);
192
193 drm_for_each_encoder(encoder, dev) {
194 if (!drm_helper_encoder_in_use(encoder)) {
195 drm_encoder_disable(encoder);
196 /* disconnect encoder from any connector */
197 encoder->crtc = NULL;
198 }
199 }
200
201 drm_for_each_crtc(crtc, dev) {
202 const struct drm_crtc_helper_funcs *crtc_funcs = crtc->helper_private;
203 crtc->enabled = drm_helper_crtc_in_use(crtc);
204 if (!crtc->enabled) {
205 if (crtc_funcs->disable)
206 (*crtc_funcs->disable)(crtc);
207 else
208 (*crtc_funcs->dpms)(crtc, DRM_MODE_DPMS_OFF);
209 crtc->primary->fb = NULL;
210 }
211 }
212 }
213
214 /**
215 * drm_helper_disable_unused_functions - disable unused objects
216 * @dev: DRM device
217 *
218 * This function walks through the entire mode setting configuration of @dev. It
219 * will remove any CRTC links of unused encoders and encoder links of
220 * disconnected connectors. Then it will disable all unused encoders and CRTCs
221 * either by calling their disable callback if available or by calling their
222 * dpms callback with DRM_MODE_DPMS_OFF.
223 */
224 void drm_helper_disable_unused_functions(struct drm_device *dev)
225 {
226 drm_modeset_lock_all(dev);
227 __drm_helper_disable_unused_functions(dev);
228 drm_modeset_unlock_all(dev);
229 }
230 EXPORT_SYMBOL(drm_helper_disable_unused_functions);
231
232 /*
233 * Check the CRTC we're going to map each output to vs. its current
234 * CRTC. If they don't match, we have to disable the output and the CRTC
235 * since the driver will have to re-route things.
236 */
237 static void
238 drm_crtc_prepare_encoders(struct drm_device *dev)
239 {
240 const struct drm_encoder_helper_funcs *encoder_funcs;
241 struct drm_encoder *encoder;
242
243 drm_for_each_encoder(encoder, dev) {
244 encoder_funcs = encoder->helper_private;
245 /* Disable unused encoders */
246 if (encoder->crtc == NULL)
247 drm_encoder_disable(encoder);
248 /* Disable encoders whose CRTC is about to change */
249 if (encoder_funcs->get_crtc &&
250 encoder->crtc != (*encoder_funcs->get_crtc)(encoder))
251 drm_encoder_disable(encoder);
252 }
253 }
254
255 /**
256 * drm_crtc_helper_set_mode - internal helper to set a mode
257 * @crtc: CRTC to program
258 * @mode: mode to use
259 * @x: horizontal offset into the surface
260 * @y: vertical offset into the surface
261 * @old_fb: old framebuffer, for cleanup
262 *
263 * Try to set @mode on @crtc. Give @crtc and its associated connectors a chance
264 * to fixup or reject the mode prior to trying to set it. This is an internal
265 * helper that drivers could e.g. use to update properties that require the
266 * entire output pipe to be disabled and re-enabled in a new configuration. For
267 * example for changing whether audio is enabled on a hdmi link or for changing
268 * panel fitter or dither attributes. It is also called by the
269 * drm_crtc_helper_set_config() helper function to drive the mode setting
270 * sequence.
271 *
272 * Returns:
273 * True if the mode was set successfully, false otherwise.
274 */
275 bool drm_crtc_helper_set_mode(struct drm_crtc *crtc,
276 struct drm_display_mode *mode,
277 int x, int y,
278 struct drm_framebuffer *old_fb)
279 {
280 struct drm_device *dev = crtc->dev;
281 struct drm_display_mode *adjusted_mode, saved_mode, saved_hwmode;
282 const struct drm_crtc_helper_funcs *crtc_funcs = crtc->helper_private;
283 const struct drm_encoder_helper_funcs *encoder_funcs;
284 int saved_x, saved_y;
285 bool saved_enabled;
286 struct drm_encoder *encoder;
287 bool ret = true;
288
289 drm_warn_on_modeset_not_all_locked(dev);
290
291 saved_enabled = crtc->enabled;
292 crtc->enabled = drm_helper_crtc_in_use(crtc);
293 if (!crtc->enabled)
294 return true;
295
296 adjusted_mode = drm_mode_duplicate(dev, mode);
297 if (!adjusted_mode) {
298 crtc->enabled = saved_enabled;
299 return false;
300 }
301
302 saved_mode = crtc->mode;
303 saved_hwmode = crtc->hwmode;
304 saved_x = crtc->x;
305 saved_y = crtc->y;
306
307 /* Update crtc values up front so the driver can rely on them for mode
308 * setting.
309 */
310 crtc->mode = *mode;
311 crtc->x = x;
312 crtc->y = y;
313
314 /* Pass our mode to the connectors and the CRTC to give them a chance to
315 * adjust it according to limitations or connector properties, and also
316 * a chance to reject the mode entirely.
317 */
318 drm_for_each_encoder(encoder, dev) {
319
320 if (encoder->crtc != crtc)
321 continue;
322
323 ret = drm_bridge_mode_fixup(encoder->bridge,
324 mode, adjusted_mode);
325 if (!ret) {
326 DRM_DEBUG_KMS("Bridge fixup failed\n");
327 goto done;
328 }
329
330 encoder_funcs = encoder->helper_private;
331 if (!(ret = encoder_funcs->mode_fixup(encoder, mode,
332 adjusted_mode))) {
333 DRM_DEBUG_KMS("Encoder fixup failed\n");
334 goto done;
335 }
336 }
337
338 if (!(ret = crtc_funcs->mode_fixup(crtc, mode, adjusted_mode))) {
339 DRM_DEBUG_KMS("CRTC fixup failed\n");
340 goto done;
341 }
342 DRM_DEBUG_KMS("[CRTC:%d]\n", crtc->base.id);
343
344 crtc->hwmode = *adjusted_mode;
345
346 /* Prepare the encoders and CRTCs before setting the mode. */
347 drm_for_each_encoder(encoder, dev) {
348
349 if (encoder->crtc != crtc)
350 continue;
351
352 drm_bridge_disable(encoder->bridge);
353
354 encoder_funcs = encoder->helper_private;
355 /* Disable the encoders as the first thing we do. */
356 encoder_funcs->prepare(encoder);
357
358 drm_bridge_post_disable(encoder->bridge);
359 }
360
361 drm_crtc_prepare_encoders(dev);
362
363 crtc_funcs->prepare(crtc);
364
365 /* Set up the DPLL and any encoders state that needs to adjust or depend
366 * on the DPLL.
367 */
368 ret = !crtc_funcs->mode_set(crtc, mode, adjusted_mode, x, y, old_fb);
369 if (!ret)
370 goto done;
371
372 drm_for_each_encoder(encoder, dev) {
373
374 if (encoder->crtc != crtc)
375 continue;
376
377 DRM_DEBUG_KMS("[ENCODER:%d:%s] set [MODE:%d:%s]\n",
378 encoder->base.id, encoder->name,
379 mode->base.id, mode->name);
380 encoder_funcs = encoder->helper_private;
381 encoder_funcs->mode_set(encoder, mode, adjusted_mode);
382
383 drm_bridge_mode_set(encoder->bridge, mode, adjusted_mode);
384 }
385
386 /* Now enable the clocks, plane, pipe, and connectors that we set up. */
387 crtc_funcs->commit(crtc);
388
389 drm_for_each_encoder(encoder, dev) {
390
391 if (encoder->crtc != crtc)
392 continue;
393
394 drm_bridge_pre_enable(encoder->bridge);
395
396 encoder_funcs = encoder->helper_private;
397 encoder_funcs->commit(encoder);
398
399 drm_bridge_enable(encoder->bridge);
400 }
401
402 /* Calculate and store various constants which
403 * are later needed by vblank and swap-completion
404 * timestamping. They are derived from true hwmode.
405 */
406 drm_calc_timestamping_constants(crtc, &crtc->hwmode);
407
408 /* FIXME: add subpixel order */
409 done:
410 drm_mode_destroy(dev, adjusted_mode);
411 if (!ret) {
412 crtc->enabled = saved_enabled;
413 crtc->mode = saved_mode;
414 crtc->hwmode = saved_hwmode;
415 crtc->x = saved_x;
416 crtc->y = saved_y;
417 }
418
419 return ret;
420 }
421 EXPORT_SYMBOL(drm_crtc_helper_set_mode);
422
423 static void
424 drm_crtc_helper_disable(struct drm_crtc *crtc)
425 {
426 struct drm_device *dev = crtc->dev;
427 struct drm_connector *connector;
428 struct drm_encoder *encoder;
429
430 /* Decouple all encoders and their attached connectors from this crtc */
431 drm_for_each_encoder(encoder, dev) {
432 if (encoder->crtc != crtc)
433 continue;
434
435 drm_for_each_connector(connector, dev) {
436 if (connector->encoder != encoder)
437 continue;
438
439 connector->encoder = NULL;
440
441 /*
442 * drm_helper_disable_unused_functions() ought to be
443 * doing this, but since we've decoupled the encoder
444 * from the connector above, the required connection
445 * between them is henceforth no longer available.
446 */
447 connector->dpms = DRM_MODE_DPMS_OFF;
448 }
449 }
450
451 __drm_helper_disable_unused_functions(dev);
452 }
453
454 /**
455 * drm_crtc_helper_set_config - set a new config from userspace
456 * @set: mode set configuration
457 *
458 * The drm_crtc_helper_set_config() helper function implements the set_config
459 * callback of struct &drm_crtc_funcs for drivers using the legacy CRTC helpers.
460 *
461 * It first tries to locate the best encoder for each connector by calling the
462 * connector ->best_encoder() (struct &drm_connector_helper_funcs) helper
463 * operation.
464 *
465 * After locating the appropriate encoders, the helper function will call the
466 * mode_fixup encoder and CRTC helper operations to adjust the requested mode,
467 * or reject it completely in which case an error will be returned to the
468 * application. If the new configuration after mode adjustment is identical to
469 * the current configuration the helper function will return without performing
470 * any other operation.
471 *
472 * If the adjusted mode is identical to the current mode but changes to the
473 * frame buffer need to be applied, the drm_crtc_helper_set_config() function
474 * will call the CRTC ->mode_set_base() (struct &drm_crtc_helper_funcs) helper
475 * operation.
476 *
477 * If the adjusted mode differs from the current mode, or if the
478 * ->mode_set_base() helper operation is not provided, the helper function
479 * performs a full mode set sequence by calling the ->prepare(), ->mode_set()
480 * and ->commit() CRTC and encoder helper operations, in that order.
481 * Alternatively it can also use the dpms and disable helper operations. For
482 * details see struct &drm_crtc_helper_funcs and struct
483 * &drm_encoder_helper_funcs.
484 *
485 * This function is deprecated. New drivers must implement atomic modeset
486 * support, for which this function is unsuitable. Instead drivers should use
487 * drm_atomic_helper_set_config().
488 *
489 * Returns:
490 * Returns 0 on success, negative errno numbers on failure.
491 */
492 int drm_crtc_helper_set_config(struct drm_mode_set *set)
493 {
494 struct drm_device *dev;
495 struct drm_crtc *new_crtc;
496 struct drm_encoder *save_encoders, *new_encoder, *encoder;
497 bool mode_changed = false; /* if true do a full mode set */
498 bool fb_changed = false; /* if true and !mode_changed just do a flip */
499 struct drm_connector *save_connectors, *connector;
500 int count = 0, ro, fail = 0;
501 const struct drm_crtc_helper_funcs *crtc_funcs;
502 struct drm_mode_set save_set;
503 int ret;
504 int i;
505
506 DRM_DEBUG_KMS("\n");
507
508 BUG_ON(!set);
509 BUG_ON(!set->crtc);
510 BUG_ON(!set->crtc->helper_private);
511
512 /* Enforce sane interface api - has been abused by the fb helper. */
513 BUG_ON(!set->mode && set->fb);
514 BUG_ON(set->fb && set->num_connectors == 0);
515
516 crtc_funcs = set->crtc->helper_private;
517
518 if (!set->mode)
519 set->fb = NULL;
520
521 if (set->fb) {
522 DRM_DEBUG_KMS("[CRTC:%d] [FB:%d] #connectors=%d (x y) (%i %i)\n",
523 set->crtc->base.id, set->fb->base.id,
524 (int)set->num_connectors, set->x, set->y);
525 } else {
526 DRM_DEBUG_KMS("[CRTC:%d] [NOFB]\n", set->crtc->base.id);
527 drm_crtc_helper_disable(set->crtc);
528 return 0;
529 }
530
531 dev = set->crtc->dev;
532
533 drm_warn_on_modeset_not_all_locked(dev);
534
535 /*
536 * Allocate space for the backup of all (non-pointer) encoder and
537 * connector data.
538 */
539 save_encoders = kzalloc(dev->mode_config.num_encoder *
540 sizeof(struct drm_encoder), GFP_KERNEL);
541 if (!save_encoders)
542 return -ENOMEM;
543
544 save_connectors = kzalloc(dev->mode_config.num_connector *
545 sizeof(struct drm_connector), GFP_KERNEL);
546 if (!save_connectors) {
547 kfree(save_encoders);
548 return -ENOMEM;
549 }
550
551 /*
552 * Copy data. Note that driver private data is not affected.
553 * Should anything bad happen only the expected state is
554 * restored, not the drivers personal bookkeeping.
555 */
556 count = 0;
557 drm_for_each_encoder(encoder, dev) {
558 save_encoders[count++] = *encoder;
559 }
560
561 count = 0;
562 drm_for_each_connector(connector, dev) {
563 save_connectors[count++] = *connector;
564 }
565
566 save_set.crtc = set->crtc;
567 save_set.mode = &set->crtc->mode;
568 save_set.x = set->crtc->x;
569 save_set.y = set->crtc->y;
570 save_set.fb = set->crtc->primary->fb;
571
572 /* We should be able to check here if the fb has the same properties
573 * and then just flip_or_move it */
574 if (set->crtc->primary->fb != set->fb) {
575 /* If we have no fb then treat it as a full mode set */
576 if (set->crtc->primary->fb == NULL) {
577 DRM_DEBUG_KMS("crtc has no fb, full mode set\n");
578 mode_changed = true;
579 } else if (set->fb == NULL) {
580 mode_changed = true;
581 } else if (set->fb->pixel_format !=
582 set->crtc->primary->fb->pixel_format) {
583 mode_changed = true;
584 } else
585 fb_changed = true;
586 }
587
588 if (set->x != set->crtc->x || set->y != set->crtc->y)
589 fb_changed = true;
590
591 if (set->mode && !drm_mode_equal(set->mode, &set->crtc->mode)) {
592 DRM_DEBUG_KMS("modes are different, full mode set\n");
593 drm_mode_debug_printmodeline(&set->crtc->mode);
594 drm_mode_debug_printmodeline(set->mode);
595 mode_changed = true;
596 }
597
598 /* a) traverse passed in connector list and get encoders for them */
599 count = 0;
600 drm_for_each_connector(connector, dev) {
601 const struct drm_connector_helper_funcs *connector_funcs =
602 connector->helper_private;
603 new_encoder = connector->encoder;
604 for (ro = 0; ro < set->num_connectors; ro++) {
605 if (set->connectors[ro] == connector) {
606 new_encoder = connector_funcs->best_encoder(connector);
607 /* if we can't get an encoder for a connector
608 we are setting now - then fail */
609 if (new_encoder == NULL)
610 /* don't break so fail path works correct */
611 fail = 1;
612
613 if (connector->dpms != DRM_MODE_DPMS_ON) {
614 DRM_DEBUG_KMS("connector dpms not on, full mode switch\n");
615 mode_changed = true;
616 }
617
618 break;
619 }
620 }
621
622 if (new_encoder != connector->encoder) {
623 DRM_DEBUG_KMS("encoder changed, full mode switch\n");
624 mode_changed = true;
625 /* If the encoder is reused for another connector, then
626 * the appropriate crtc will be set later.
627 */
628 if (connector->encoder)
629 connector->encoder->crtc = NULL;
630 connector->encoder = new_encoder;
631 }
632 }
633
634 if (fail) {
635 ret = -EINVAL;
636 goto fail;
637 }
638
639 count = 0;
640 drm_for_each_connector(connector, dev) {
641 if (!connector->encoder)
642 continue;
643
644 if (connector->encoder->crtc == set->crtc)
645 new_crtc = NULL;
646 else
647 new_crtc = connector->encoder->crtc;
648
649 for (ro = 0; ro < set->num_connectors; ro++) {
650 if (set->connectors[ro] == connector)
651 new_crtc = set->crtc;
652 }
653
654 /* Make sure the new CRTC will work with the encoder */
655 if (new_crtc &&
656 !drm_encoder_crtc_ok(connector->encoder, new_crtc)) {
657 ret = -EINVAL;
658 goto fail;
659 }
660 if (new_crtc != connector->encoder->crtc) {
661 DRM_DEBUG_KMS("crtc changed, full mode switch\n");
662 mode_changed = true;
663 connector->encoder->crtc = new_crtc;
664 }
665 if (new_crtc) {
666 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] to [CRTC:%d]\n",
667 connector->base.id, connector->name,
668 new_crtc->base.id);
669 } else {
670 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] to [NOCRTC]\n",
671 connector->base.id, connector->name);
672 }
673 }
674
675 /* mode_set_base is not a required function */
676 if (fb_changed && !crtc_funcs->mode_set_base)
677 mode_changed = true;
678
679 if (mode_changed) {
680 if (drm_helper_crtc_in_use(set->crtc)) {
681 DRM_DEBUG_KMS("attempting to set mode from"
682 " userspace\n");
683 drm_mode_debug_printmodeline(set->mode);
684 set->crtc->primary->fb = set->fb;
685 if (!drm_crtc_helper_set_mode(set->crtc, set->mode,
686 set->x, set->y,
687 save_set.fb)) {
688 DRM_ERROR("failed to set mode on [CRTC:%d]\n",
689 set->crtc->base.id);
690 set->crtc->primary->fb = save_set.fb;
691 ret = -EINVAL;
692 goto fail;
693 }
694 DRM_DEBUG_KMS("Setting connector DPMS state to on\n");
695 for (i = 0; i < set->num_connectors; i++) {
696 DRM_DEBUG_KMS("\t[CONNECTOR:%d:%s] set DPMS on\n", set->connectors[i]->base.id,
697 set->connectors[i]->name);
698 set->connectors[i]->funcs->dpms(set->connectors[i], DRM_MODE_DPMS_ON);
699 }
700 }
701 __drm_helper_disable_unused_functions(dev);
702 } else if (fb_changed) {
703 set->crtc->x = set->x;
704 set->crtc->y = set->y;
705 set->crtc->primary->fb = set->fb;
706 ret = crtc_funcs->mode_set_base(set->crtc,
707 set->x, set->y, save_set.fb);
708 if (ret != 0) {
709 set->crtc->x = save_set.x;
710 set->crtc->y = save_set.y;
711 set->crtc->primary->fb = save_set.fb;
712 goto fail;
713 }
714 }
715
716 kfree(save_connectors);
717 kfree(save_encoders);
718 return 0;
719
720 fail:
721 /* Restore all previous data. */
722 count = 0;
723 drm_for_each_encoder(encoder, dev) {
724 *encoder = save_encoders[count++];
725 }
726
727 count = 0;
728 drm_for_each_connector(connector, dev) {
729 *connector = save_connectors[count++];
730 }
731
732 /* Try to restore the config */
733 if (mode_changed &&
734 !drm_crtc_helper_set_mode(save_set.crtc, save_set.mode, save_set.x,
735 save_set.y, save_set.fb))
736 DRM_ERROR("failed to restore config after modeset failure\n");
737
738 kfree(save_connectors);
739 kfree(save_encoders);
740 return ret;
741 }
742 EXPORT_SYMBOL(drm_crtc_helper_set_config);
743
744 static int drm_helper_choose_encoder_dpms(struct drm_encoder *encoder)
745 {
746 int dpms = DRM_MODE_DPMS_OFF;
747 struct drm_connector *connector;
748 struct drm_device *dev = encoder->dev;
749
750 drm_for_each_connector(connector, dev)
751 if (connector->encoder == encoder)
752 if (connector->dpms < dpms)
753 dpms = connector->dpms;
754 return dpms;
755 }
756
757 /* Helper which handles bridge ordering around encoder dpms */
758 static void drm_helper_encoder_dpms(struct drm_encoder *encoder, int mode)
759 {
760 struct drm_bridge *bridge = encoder->bridge;
761 const struct drm_encoder_helper_funcs *encoder_funcs;
762
763 if (mode == DRM_MODE_DPMS_ON)
764 drm_bridge_pre_enable(bridge);
765 else
766 drm_bridge_disable(bridge);
767
768 encoder_funcs = encoder->helper_private;
769 if (encoder_funcs->dpms)
770 encoder_funcs->dpms(encoder, mode);
771
772 if (mode == DRM_MODE_DPMS_ON)
773 drm_bridge_enable(bridge);
774 else
775 drm_bridge_post_disable(bridge);
776 }
777
778 static int drm_helper_choose_crtc_dpms(struct drm_crtc *crtc)
779 {
780 int dpms = DRM_MODE_DPMS_OFF;
781 struct drm_connector *connector;
782 struct drm_device *dev = crtc->dev;
783
784 drm_for_each_connector(connector, dev)
785 if (connector->encoder && connector->encoder->crtc == crtc)
786 if (connector->dpms < dpms)
787 dpms = connector->dpms;
788 return dpms;
789 }
790
791 /**
792 * drm_helper_connector_dpms() - connector dpms helper implementation
793 * @connector: affected connector
794 * @mode: DPMS mode
795 *
796 * The drm_helper_connector_dpms() helper function implements the ->dpms()
797 * callback of struct &drm_connector_funcs for drivers using the legacy CRTC helpers.
798 *
799 * This is the main helper function provided by the CRTC helper framework for
800 * implementing the DPMS connector attribute. It computes the new desired DPMS
801 * state for all encoders and CRTCs in the output mesh and calls the ->dpms()
802 * callbacks provided by the driver in struct &drm_crtc_helper_funcs and struct
803 * &drm_encoder_helper_funcs appropriately.
804 *
805 * This function is deprecated. New drivers must implement atomic modeset
806 * support, for which this function is unsuitable. Instead drivers should use
807 * drm_atomic_helper_connector_dpms().
808 *
809 * Returns:
810 * Always returns 0.
811 */
812 int drm_helper_connector_dpms(struct drm_connector *connector, int mode)
813 {
814 struct drm_encoder *encoder = connector->encoder;
815 struct drm_crtc *crtc = encoder ? encoder->crtc : NULL;
816 int old_dpms, encoder_dpms = DRM_MODE_DPMS_OFF;
817
818 if (mode == connector->dpms)
819 return 0;
820
821 old_dpms = connector->dpms;
822 connector->dpms = mode;
823
824 if (encoder)
825 encoder_dpms = drm_helper_choose_encoder_dpms(encoder);
826
827 /* from off to on, do crtc then encoder */
828 if (mode < old_dpms) {
829 if (crtc) {
830 const struct drm_crtc_helper_funcs *crtc_funcs = crtc->helper_private;
831 if (crtc_funcs->dpms)
832 (*crtc_funcs->dpms) (crtc,
833 drm_helper_choose_crtc_dpms(crtc));
834 }
835 if (encoder)
836 drm_helper_encoder_dpms(encoder, encoder_dpms);
837 }
838
839 /* from on to off, do encoder then crtc */
840 if (mode > old_dpms) {
841 if (encoder)
842 drm_helper_encoder_dpms(encoder, encoder_dpms);
843 if (crtc) {
844 const struct drm_crtc_helper_funcs *crtc_funcs = crtc->helper_private;
845 if (crtc_funcs->dpms)
846 (*crtc_funcs->dpms) (crtc,
847 drm_helper_choose_crtc_dpms(crtc));
848 }
849 }
850
851 return 0;
852 }
853 EXPORT_SYMBOL(drm_helper_connector_dpms);
854
855 /**
856 * drm_helper_mode_fill_fb_struct - fill out framebuffer metadata
857 * @fb: drm_framebuffer object to fill out
858 * @mode_cmd: metadata from the userspace fb creation request
859 *
860 * This helper can be used in a drivers fb_create callback to pre-fill the fb's
861 * metadata fields.
862 */
863 void drm_helper_mode_fill_fb_struct(struct drm_framebuffer *fb,
864 const struct drm_mode_fb_cmd2 *mode_cmd)
865 {
866 int i;
867
868 fb->width = mode_cmd->width;
869 fb->height = mode_cmd->height;
870 for (i = 0; i < 4; i++) {
871 fb->pitches[i] = mode_cmd->pitches[i];
872 fb->offsets[i] = mode_cmd->offsets[i];
873 fb->modifier[i] = mode_cmd->modifier[i];
874 }
875 drm_fb_get_bpp_depth(mode_cmd->pixel_format, &fb->depth,
876 &fb->bits_per_pixel);
877 fb->pixel_format = mode_cmd->pixel_format;
878 fb->flags = mode_cmd->flags;
879 }
880 EXPORT_SYMBOL(drm_helper_mode_fill_fb_struct);
881
882 /**
883 * drm_helper_resume_force_mode - force-restore mode setting configuration
884 * @dev: drm_device which should be restored
885 *
886 * Drivers which use the mode setting helpers can use this function to
887 * force-restore the mode setting configuration e.g. on resume or when something
888 * else might have trampled over the hw state (like some overzealous old BIOSen
889 * tended to do).
890 *
891 * This helper doesn't provide a error return value since restoring the old
892 * config should never fail due to resource allocation issues since the driver
893 * has successfully set the restored configuration already. Hence this should
894 * boil down to the equivalent of a few dpms on calls, which also don't provide
895 * an error code.
896 *
897 * Drivers where simply restoring an old configuration again might fail (e.g.
898 * due to slight differences in allocating shared resources when the
899 * configuration is restored in a different order than when userspace set it up)
900 * need to use their own restore logic.
901 *
902 * This function is deprecated. New drivers should implement atomic mode-
903 * setting and use the atomic suspend/resume helpers.
904 *
905 * See also:
906 * drm_atomic_helper_suspend(), drm_atomic_helper_resume()
907 */
908 void drm_helper_resume_force_mode(struct drm_device *dev)
909 {
910 struct drm_crtc *crtc;
911 struct drm_encoder *encoder;
912 const struct drm_crtc_helper_funcs *crtc_funcs;
913 int encoder_dpms;
914 bool ret;
915
916 drm_modeset_lock_all(dev);
917 drm_for_each_crtc(crtc, dev) {
918
919 if (!crtc->enabled)
920 continue;
921
922 ret = drm_crtc_helper_set_mode(crtc, &crtc->mode,
923 crtc->x, crtc->y, crtc->primary->fb);
924
925 /* Restoring the old config should never fail! */
926 if (ret == false)
927 DRM_ERROR("failed to set mode on crtc %p\n", crtc);
928
929 /* Turn off outputs that were already powered off */
930 if (drm_helper_choose_crtc_dpms(crtc)) {
931 drm_for_each_encoder(encoder, dev) {
932
933 if(encoder->crtc != crtc)
934 continue;
935
936 encoder_dpms = drm_helper_choose_encoder_dpms(
937 encoder);
938
939 drm_helper_encoder_dpms(encoder, encoder_dpms);
940 }
941
942 crtc_funcs = crtc->helper_private;
943 if (crtc_funcs->dpms)
944 (*crtc_funcs->dpms) (crtc,
945 drm_helper_choose_crtc_dpms(crtc));
946 }
947 }
948
949 /* disable the unused connectors while restoring the modesetting */
950 __drm_helper_disable_unused_functions(dev);
951 drm_modeset_unlock_all(dev);
952 }
953 EXPORT_SYMBOL(drm_helper_resume_force_mode);
954
955 /**
956 * drm_helper_crtc_mode_set - mode_set implementation for atomic plane helpers
957 * @crtc: DRM CRTC
958 * @mode: DRM display mode which userspace requested
959 * @adjusted_mode: DRM display mode adjusted by ->mode_fixup callbacks
960 * @x: x offset of the CRTC scanout area on the underlying framebuffer
961 * @y: y offset of the CRTC scanout area on the underlying framebuffer
962 * @old_fb: previous framebuffer
963 *
964 * This function implements a callback useable as the ->mode_set callback
965 * required by the CRTC helpers. Besides the atomic plane helper functions for
966 * the primary plane the driver must also provide the ->mode_set_nofb callback
967 * to set up the CRTC.
968 *
969 * This is a transitional helper useful for converting drivers to the atomic
970 * interfaces.
971 */
972 int drm_helper_crtc_mode_set(struct drm_crtc *crtc, struct drm_display_mode *mode,
973 struct drm_display_mode *adjusted_mode, int x, int y,
974 struct drm_framebuffer *old_fb)
975 {
976 struct drm_crtc_state *crtc_state;
977 const struct drm_crtc_helper_funcs *crtc_funcs = crtc->helper_private;
978 int ret;
979
980 if (crtc->funcs->atomic_duplicate_state)
981 crtc_state = crtc->funcs->atomic_duplicate_state(crtc);
982 else {
983 if (!crtc->state)
984 drm_atomic_helper_crtc_reset(crtc);
985
986 crtc_state = drm_atomic_helper_crtc_duplicate_state(crtc);
987 }
988
989 if (!crtc_state)
990 return -ENOMEM;
991
992 crtc_state->planes_changed = true;
993 crtc_state->mode_changed = true;
994 ret = drm_atomic_set_mode_for_crtc(crtc_state, mode);
995 if (ret)
996 goto out;
997 drm_mode_copy(&crtc_state->adjusted_mode, adjusted_mode);
998
999 if (crtc_funcs->atomic_check) {
1000 ret = crtc_funcs->atomic_check(crtc, crtc_state);
1001 if (ret)
1002 goto out;
1003 }
1004
1005 swap(crtc->state, crtc_state);
1006
1007 crtc_funcs->mode_set_nofb(crtc);
1008
1009 ret = drm_helper_crtc_mode_set_base(crtc, x, y, old_fb);
1010
1011 out:
1012 if (crtc_state) {
1013 if (crtc->funcs->atomic_destroy_state)
1014 crtc->funcs->atomic_destroy_state(crtc, crtc_state);
1015 else
1016 drm_atomic_helper_crtc_destroy_state(crtc, crtc_state);
1017 }
1018
1019 return ret;
1020 }
1021 EXPORT_SYMBOL(drm_helper_crtc_mode_set);
1022
1023 /**
1024 * drm_helper_crtc_mode_set_base - mode_set_base implementation for atomic plane helpers
1025 * @crtc: DRM CRTC
1026 * @x: x offset of the CRTC scanout area on the underlying framebuffer
1027 * @y: y offset of the CRTC scanout area on the underlying framebuffer
1028 * @old_fb: previous framebuffer
1029 *
1030 * This function implements a callback useable as the ->mode_set_base used
1031 * required by the CRTC helpers. The driver must provide the atomic plane helper
1032 * functions for the primary plane.
1033 *
1034 * This is a transitional helper useful for converting drivers to the atomic
1035 * interfaces.
1036 */
1037 int drm_helper_crtc_mode_set_base(struct drm_crtc *crtc, int x, int y,
1038 struct drm_framebuffer *old_fb)
1039 {
1040 struct drm_plane_state *plane_state;
1041 struct drm_plane *plane = crtc->primary;
1042
1043 if (plane->funcs->atomic_duplicate_state)
1044 plane_state = plane->funcs->atomic_duplicate_state(plane);
1045 else if (plane->state)
1046 plane_state = drm_atomic_helper_plane_duplicate_state(plane);
1047 else
1048 plane_state = kzalloc(sizeof(*plane_state), GFP_KERNEL);
1049 if (!plane_state)
1050 return -ENOMEM;
1051 plane_state->plane = plane;
1052
1053 plane_state->crtc = crtc;
1054 drm_atomic_set_fb_for_plane(plane_state, crtc->primary->fb);
1055 plane_state->crtc_x = 0;
1056 plane_state->crtc_y = 0;
1057 plane_state->crtc_h = crtc->mode.vdisplay;
1058 plane_state->crtc_w = crtc->mode.hdisplay;
1059 plane_state->src_x = x << 16;
1060 plane_state->src_y = y << 16;
1061 plane_state->src_h = crtc->mode.vdisplay << 16;
1062 plane_state->src_w = crtc->mode.hdisplay << 16;
1063
1064 return drm_plane_helper_commit(plane, plane_state, old_fb);
1065 }
1066 EXPORT_SYMBOL(drm_helper_crtc_mode_set_base);
This page took 0.432533 seconds and 6 git commands to generate.