2 * Copyright (c) 2006-2008 Intel Corporation
3 * Copyright (c) 2007 Dave Airlie <airlied@linux.ie>
5 * DRM core CRTC related functions
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.
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
27 * Eric Anholt <eric@anholt.net>
28 * Dave Airlie <airlied@linux.ie>
29 * Jesse Barnes <jesse.barnes@intel.com>
34 #include "drm_crtc_helper.h"
35 #include "drm_fb_helper.h"
37 static void drm_mode_validate_flag(struct drm_connector
*connector
,
40 struct drm_display_mode
*mode
, *t
;
42 if (flags
== (DRM_MODE_FLAG_DBLSCAN
| DRM_MODE_FLAG_INTERLACE
))
45 list_for_each_entry_safe(mode
, t
, &connector
->modes
, head
) {
46 if ((mode
->flags
& DRM_MODE_FLAG_INTERLACE
) &&
47 !(flags
& DRM_MODE_FLAG_INTERLACE
))
48 mode
->status
= MODE_NO_INTERLACE
;
49 if ((mode
->flags
& DRM_MODE_FLAG_DBLSCAN
) &&
50 !(flags
& DRM_MODE_FLAG_DBLSCAN
))
51 mode
->status
= MODE_NO_DBLESCAN
;
58 * drm_helper_probe_connector_modes - get complete set of display modes
60 * @maxX: max width for modes
61 * @maxY: max height for modes
64 * Caller must hold mode config lock.
66 * Based on @dev's mode_config layout, scan all the connectors and try to detect
67 * modes on them. Modes will first be added to the connector's probed_modes
68 * list, then culled (based on validity and the @maxX, @maxY parameters) and
69 * put into the normal modes list.
71 * Intended to be used either at bootup time or when major configuration
72 * changes have occurred.
74 * FIXME: take into account monitor limits
77 * Number of modes found on @connector.
79 int drm_helper_probe_single_connector_modes(struct drm_connector
*connector
,
80 uint32_t maxX
, uint32_t maxY
)
82 struct drm_device
*dev
= connector
->dev
;
83 struct drm_display_mode
*mode
, *t
;
84 struct drm_connector_helper_funcs
*connector_funcs
=
85 connector
->helper_private
;
89 DRM_DEBUG_KMS("%s\n", drm_get_connector_name(connector
));
90 /* set all modes to the unverified state */
91 list_for_each_entry_safe(mode
, t
, &connector
->modes
, head
)
92 mode
->status
= MODE_UNVERIFIED
;
94 if (connector
->force
) {
95 if (connector
->force
== DRM_FORCE_ON
)
96 connector
->status
= connector_status_connected
;
98 connector
->status
= connector_status_disconnected
;
99 if (connector
->funcs
->force
)
100 connector
->funcs
->force(connector
);
102 connector
->status
= connector
->funcs
->detect(connector
);
104 if (connector
->status
== connector_status_disconnected
) {
105 DRM_DEBUG_KMS("%s is disconnected\n",
106 drm_get_connector_name(connector
));
110 count
= (*connector_funcs
->get_modes
)(connector
);
112 count
= drm_add_modes_noedid(connector
, 1024, 768);
117 drm_mode_connector_list_update(connector
);
120 drm_mode_validate_size(dev
, &connector
->modes
, maxX
,
123 if (connector
->interlace_allowed
)
124 mode_flags
|= DRM_MODE_FLAG_INTERLACE
;
125 if (connector
->doublescan_allowed
)
126 mode_flags
|= DRM_MODE_FLAG_DBLSCAN
;
127 drm_mode_validate_flag(connector
, mode_flags
);
129 list_for_each_entry_safe(mode
, t
, &connector
->modes
, head
) {
130 if (mode
->status
== MODE_OK
)
131 mode
->status
= connector_funcs
->mode_valid(connector
,
136 drm_mode_prune_invalid(dev
, &connector
->modes
, true);
138 if (list_empty(&connector
->modes
))
141 drm_mode_sort(&connector
->modes
);
143 DRM_DEBUG_KMS("Probed modes for %s\n",
144 drm_get_connector_name(connector
));
145 list_for_each_entry_safe(mode
, t
, &connector
->modes
, head
) {
146 mode
->vrefresh
= drm_mode_vrefresh(mode
);
148 drm_mode_set_crtcinfo(mode
, CRTC_INTERLACE_HALVE_V
);
149 drm_mode_debug_printmodeline(mode
);
154 EXPORT_SYMBOL(drm_helper_probe_single_connector_modes
);
156 int drm_helper_probe_connector_modes(struct drm_device
*dev
, uint32_t maxX
,
159 struct drm_connector
*connector
;
162 list_for_each_entry(connector
, &dev
->mode_config
.connector_list
, head
) {
163 count
+= drm_helper_probe_single_connector_modes(connector
,
169 EXPORT_SYMBOL(drm_helper_probe_connector_modes
);
172 * drm_helper_encoder_in_use - check if a given encoder is in use
173 * @encoder: encoder to check
176 * Caller must hold mode config lock.
178 * Walk @encoders's DRM device's mode_config and see if it's in use.
181 * True if @encoder is part of the mode_config, false otherwise.
183 bool drm_helper_encoder_in_use(struct drm_encoder
*encoder
)
185 struct drm_connector
*connector
;
186 struct drm_device
*dev
= encoder
->dev
;
187 list_for_each_entry(connector
, &dev
->mode_config
.connector_list
, head
)
188 if (connector
->encoder
== encoder
)
192 EXPORT_SYMBOL(drm_helper_encoder_in_use
);
195 * drm_helper_crtc_in_use - check if a given CRTC is in a mode_config
196 * @crtc: CRTC to check
199 * Caller must hold mode config lock.
201 * Walk @crtc's DRM device's mode_config and see if it's in use.
204 * True if @crtc is part of the mode_config, false otherwise.
206 bool drm_helper_crtc_in_use(struct drm_crtc
*crtc
)
208 struct drm_encoder
*encoder
;
209 struct drm_device
*dev
= crtc
->dev
;
210 /* FIXME: Locking around list access? */
211 list_for_each_entry(encoder
, &dev
->mode_config
.encoder_list
, head
)
212 if (encoder
->crtc
== crtc
&& drm_helper_encoder_in_use(encoder
))
216 EXPORT_SYMBOL(drm_helper_crtc_in_use
);
219 * drm_helper_disable_unused_functions - disable unused objects
223 * Caller must hold mode config lock.
225 * If an connector or CRTC isn't part of @dev's mode_config, it can be disabled
226 * by calling its dpms function, which should power it off.
228 void drm_helper_disable_unused_functions(struct drm_device
*dev
)
230 struct drm_encoder
*encoder
;
231 struct drm_connector
*connector
;
232 struct drm_encoder_helper_funcs
*encoder_funcs
;
233 struct drm_crtc
*crtc
;
235 list_for_each_entry(connector
, &dev
->mode_config
.connector_list
, head
) {
236 if (!connector
->encoder
)
238 if (connector
->status
== connector_status_disconnected
)
239 connector
->encoder
= NULL
;
242 list_for_each_entry(encoder
, &dev
->mode_config
.encoder_list
, head
) {
243 encoder_funcs
= encoder
->helper_private
;
244 if (!drm_helper_encoder_in_use(encoder
)) {
245 if (encoder_funcs
->disable
)
246 (*encoder_funcs
->disable
)(encoder
);
248 (*encoder_funcs
->dpms
)(encoder
, DRM_MODE_DPMS_OFF
);
249 /* disconnector encoder from any connector */
250 encoder
->crtc
= NULL
;
254 list_for_each_entry(crtc
, &dev
->mode_config
.crtc_list
, head
) {
255 struct drm_crtc_helper_funcs
*crtc_funcs
= crtc
->helper_private
;
256 crtc
->enabled
= drm_helper_crtc_in_use(crtc
);
257 if (!crtc
->enabled
) {
258 crtc_funcs
->dpms(crtc
, DRM_MODE_DPMS_OFF
);
263 EXPORT_SYMBOL(drm_helper_disable_unused_functions
);
265 static struct drm_display_mode
*drm_has_preferred_mode(struct drm_connector
*connector
, int width
, int height
)
267 struct drm_display_mode
*mode
;
269 list_for_each_entry(mode
, &connector
->modes
, head
) {
270 if (drm_mode_width(mode
) > width
||
271 drm_mode_height(mode
) > height
)
273 if (mode
->type
& DRM_MODE_TYPE_PREFERRED
)
279 static bool drm_has_cmdline_mode(struct drm_connector
*connector
)
281 struct drm_fb_helper_connector
*fb_help_conn
= connector
->fb_helper_private
;
282 struct drm_fb_helper_cmdline_mode
*cmdline_mode
;
287 cmdline_mode
= &fb_help_conn
->cmdline_mode
;
288 return cmdline_mode
->specified
;
291 static struct drm_display_mode
*drm_pick_cmdline_mode(struct drm_connector
*connector
, int width
, int height
)
293 struct drm_fb_helper_connector
*fb_help_conn
= connector
->fb_helper_private
;
294 struct drm_fb_helper_cmdline_mode
*cmdline_mode
;
295 struct drm_display_mode
*mode
= NULL
;
300 cmdline_mode
= &fb_help_conn
->cmdline_mode
;
301 if (cmdline_mode
->specified
== false)
304 /* attempt to find a matching mode in the list of modes
305 * we have gotten so far, if not add a CVT mode that conforms
307 if (cmdline_mode
->rb
|| cmdline_mode
->margins
)
310 list_for_each_entry(mode
, &connector
->modes
, head
) {
311 /* check width/height */
312 if (mode
->hdisplay
!= cmdline_mode
->xres
||
313 mode
->vdisplay
!= cmdline_mode
->yres
)
316 if (cmdline_mode
->refresh_specified
) {
317 if (mode
->vrefresh
!= cmdline_mode
->refresh
)
321 if (cmdline_mode
->interlace
) {
322 if (!(mode
->flags
& DRM_MODE_FLAG_INTERLACE
))
329 mode
= drm_cvt_mode(connector
->dev
, cmdline_mode
->xres
,
331 cmdline_mode
->refresh_specified
? cmdline_mode
->refresh
: 60,
332 cmdline_mode
->rb
, cmdline_mode
->interlace
,
333 cmdline_mode
->margins
);
334 drm_mode_set_crtcinfo(mode
, CRTC_INTERLACE_HALVE_V
);
335 list_add(&mode
->head
, &connector
->modes
);
339 static bool drm_connector_enabled(struct drm_connector
*connector
, bool strict
)
344 enable
= connector
->status
== connector_status_connected
;
346 enable
= connector
->status
!= connector_status_disconnected
;
351 static void drm_enable_connectors(struct drm_device
*dev
, bool *enabled
)
353 bool any_enabled
= false;
354 struct drm_connector
*connector
;
357 list_for_each_entry(connector
, &dev
->mode_config
.connector_list
, head
) {
358 enabled
[i
] = drm_connector_enabled(connector
, true);
359 DRM_DEBUG_KMS("connector %d enabled? %s\n", connector
->base
.id
,
360 enabled
[i
] ? "yes" : "no");
361 any_enabled
|= enabled
[i
];
369 list_for_each_entry(connector
, &dev
->mode_config
.connector_list
, head
) {
370 enabled
[i
] = drm_connector_enabled(connector
, false);
375 static bool drm_target_preferred(struct drm_device
*dev
,
376 struct drm_display_mode
**modes
,
377 bool *enabled
, int width
, int height
)
379 struct drm_connector
*connector
;
382 list_for_each_entry(connector
, &dev
->mode_config
.connector_list
, head
) {
384 if (enabled
[i
] == false) {
389 DRM_DEBUG_KMS("looking for cmdline mode on connector %d\n",
392 /* got for command line mode first */
393 modes
[i
] = drm_pick_cmdline_mode(connector
, width
, height
);
395 DRM_DEBUG_KMS("looking for preferred mode on connector %d\n",
397 modes
[i
] = drm_has_preferred_mode(connector
, width
, height
);
399 /* No preferred modes, pick one off the list */
400 if (!modes
[i
] && !list_empty(&connector
->modes
)) {
401 list_for_each_entry(modes
[i
], &connector
->modes
, head
)
404 DRM_DEBUG_KMS("found mode %s\n", modes
[i
] ? modes
[i
]->name
:
411 static int drm_pick_crtcs(struct drm_device
*dev
,
412 struct drm_crtc
**best_crtcs
,
413 struct drm_display_mode
**modes
,
414 int n
, int width
, int height
)
417 struct drm_connector
*connector
;
418 struct drm_connector_helper_funcs
*connector_funcs
;
419 struct drm_encoder
*encoder
;
420 struct drm_crtc
*best_crtc
;
421 int my_score
, best_score
, score
;
422 struct drm_crtc
**crtcs
, *crtc
;
424 if (n
== dev
->mode_config
.num_connector
)
427 list_for_each_entry(connector
, &dev
->mode_config
.connector_list
, head
) {
433 best_crtcs
[n
] = NULL
;
435 best_score
= drm_pick_crtcs(dev
, best_crtcs
, modes
, n
+1, width
, height
);
436 if (modes
[n
] == NULL
)
439 crtcs
= kmalloc(dev
->mode_config
.num_connector
*
440 sizeof(struct drm_crtc
*), GFP_KERNEL
);
445 if (connector
->status
== connector_status_connected
)
447 if (drm_has_cmdline_mode(connector
))
449 if (drm_has_preferred_mode(connector
, width
, height
))
452 connector_funcs
= connector
->helper_private
;
453 encoder
= connector_funcs
->best_encoder(connector
);
457 connector
->encoder
= encoder
;
459 /* select a crtc for this connector and then attempt to configure
460 remaining connectors */
462 list_for_each_entry(crtc
, &dev
->mode_config
.crtc_list
, head
) {
464 if ((encoder
->possible_crtcs
& (1 << c
)) == 0) {
469 for (o
= 0; o
< n
; o
++)
470 if (best_crtcs
[o
] == crtc
)
474 /* ignore cloning for now */
480 memcpy(crtcs
, best_crtcs
, n
* sizeof(struct drm_crtc
*));
481 score
= my_score
+ drm_pick_crtcs(dev
, crtcs
, modes
, n
+ 1,
483 if (score
> best_score
) {
486 memcpy(best_crtcs
, crtcs
,
487 dev
->mode_config
.num_connector
*
488 sizeof(struct drm_crtc
*));
497 static void drm_setup_crtcs(struct drm_device
*dev
)
499 struct drm_crtc
**crtcs
;
500 struct drm_display_mode
**modes
;
501 struct drm_encoder
*encoder
;
502 struct drm_connector
*connector
;
509 width
= dev
->mode_config
.max_width
;
510 height
= dev
->mode_config
.max_height
;
512 /* clean out all the encoder/crtc combos */
513 list_for_each_entry(encoder
, &dev
->mode_config
.encoder_list
, head
) {
514 encoder
->crtc
= NULL
;
517 crtcs
= kcalloc(dev
->mode_config
.num_connector
,
518 sizeof(struct drm_crtc
*), GFP_KERNEL
);
519 modes
= kcalloc(dev
->mode_config
.num_connector
,
520 sizeof(struct drm_display_mode
*), GFP_KERNEL
);
521 enabled
= kcalloc(dev
->mode_config
.num_connector
,
522 sizeof(bool), GFP_KERNEL
);
524 drm_enable_connectors(dev
, enabled
);
526 ret
= drm_target_preferred(dev
, modes
, enabled
, width
, height
);
528 DRM_ERROR("Unable to find initial modes\n");
530 DRM_DEBUG_KMS("picking CRTCs for %dx%d config\n", width
, height
);
532 drm_pick_crtcs(dev
, crtcs
, modes
, 0, width
, height
);
535 list_for_each_entry(connector
, &dev
->mode_config
.connector_list
, head
) {
536 struct drm_display_mode
*mode
= modes
[i
];
537 struct drm_crtc
*crtc
= crtcs
[i
];
539 if (connector
->encoder
== NULL
) {
545 DRM_DEBUG_KMS("desired mode %s set on crtc %d\n",
546 mode
->name
, crtc
->base
.id
);
547 crtc
->desired_mode
= mode
;
548 connector
->encoder
->crtc
= crtc
;
550 connector
->encoder
->crtc
= NULL
;
551 connector
->encoder
= NULL
;
562 * drm_encoder_crtc_ok - can a given crtc drive a given encoder?
563 * @encoder: encoder to test
564 * @crtc: crtc to test
566 * Return false if @encoder can't be driven by @crtc, true otherwise.
568 static bool drm_encoder_crtc_ok(struct drm_encoder
*encoder
,
569 struct drm_crtc
*crtc
)
571 struct drm_device
*dev
;
572 struct drm_crtc
*tmp
;
575 WARN(!crtc
, "checking null crtc?");
579 list_for_each_entry(tmp
, &dev
->mode_config
.crtc_list
, head
) {
585 if (encoder
->possible_crtcs
& crtc_mask
)
591 * Check the CRTC we're going to map each output to vs. its current
592 * CRTC. If they don't match, we have to disable the output and the CRTC
593 * since the driver will have to re-route things.
596 drm_crtc_prepare_encoders(struct drm_device
*dev
)
598 struct drm_encoder_helper_funcs
*encoder_funcs
;
599 struct drm_encoder
*encoder
;
601 list_for_each_entry(encoder
, &dev
->mode_config
.encoder_list
, head
) {
602 encoder_funcs
= encoder
->helper_private
;
603 /* Disable unused encoders */
604 if (encoder
->crtc
== NULL
)
605 (*encoder_funcs
->dpms
)(encoder
, DRM_MODE_DPMS_OFF
);
606 /* Disable encoders whose CRTC is about to change */
607 if (encoder_funcs
->get_crtc
&&
608 encoder
->crtc
!= (*encoder_funcs
->get_crtc
)(encoder
))
609 (*encoder_funcs
->dpms
)(encoder
, DRM_MODE_DPMS_OFF
);
614 * drm_crtc_set_mode - set a mode
615 * @crtc: CRTC to program
621 * Caller must hold mode config lock.
623 * Try to set @mode on @crtc. Give @crtc and its associated connectors a chance
624 * to fixup or reject the mode prior to trying to set it.
627 * True if the mode was set successfully, or false otherwise.
629 bool drm_crtc_helper_set_mode(struct drm_crtc
*crtc
,
630 struct drm_display_mode
*mode
,
632 struct drm_framebuffer
*old_fb
)
634 struct drm_device
*dev
= crtc
->dev
;
635 struct drm_display_mode
*adjusted_mode
, saved_mode
;
636 struct drm_crtc_helper_funcs
*crtc_funcs
= crtc
->helper_private
;
637 struct drm_encoder_helper_funcs
*encoder_funcs
;
638 int saved_x
, saved_y
;
639 struct drm_encoder
*encoder
;
642 adjusted_mode
= drm_mode_duplicate(dev
, mode
);
644 crtc
->enabled
= drm_helper_crtc_in_use(crtc
);
649 saved_mode
= crtc
->mode
;
653 /* Update crtc values up front so the driver can rely on them for mode
660 /* Pass our mode to the connectors and the CRTC to give them a chance to
661 * adjust it according to limitations or connector properties, and also
662 * a chance to reject the mode entirely.
664 list_for_each_entry(encoder
, &dev
->mode_config
.encoder_list
, head
) {
666 if (encoder
->crtc
!= crtc
)
668 encoder_funcs
= encoder
->helper_private
;
669 if (!(ret
= encoder_funcs
->mode_fixup(encoder
, mode
,
675 if (!(ret
= crtc_funcs
->mode_fixup(crtc
, mode
, adjusted_mode
))) {
679 /* Prepare the encoders and CRTCs before setting the mode. */
680 list_for_each_entry(encoder
, &dev
->mode_config
.encoder_list
, head
) {
682 if (encoder
->crtc
!= crtc
)
684 encoder_funcs
= encoder
->helper_private
;
685 /* Disable the encoders as the first thing we do. */
686 encoder_funcs
->prepare(encoder
);
689 drm_crtc_prepare_encoders(dev
);
691 crtc_funcs
->prepare(crtc
);
693 /* Set up the DPLL and any encoders state that needs to adjust or depend
696 ret
= !crtc_funcs
->mode_set(crtc
, mode
, adjusted_mode
, x
, y
, old_fb
);
700 list_for_each_entry(encoder
, &dev
->mode_config
.encoder_list
, head
) {
702 if (encoder
->crtc
!= crtc
)
705 DRM_DEBUG("%s: set mode %s %x\n", drm_get_encoder_name(encoder
),
706 mode
->name
, mode
->base
.id
);
707 encoder_funcs
= encoder
->helper_private
;
708 encoder_funcs
->mode_set(encoder
, mode
, adjusted_mode
);
711 /* Now enable the clocks, plane, pipe, and connectors that we set up. */
712 crtc_funcs
->commit(crtc
);
714 list_for_each_entry(encoder
, &dev
->mode_config
.encoder_list
, head
) {
716 if (encoder
->crtc
!= crtc
)
719 encoder_funcs
= encoder
->helper_private
;
720 encoder_funcs
->commit(encoder
);
724 /* XXX free adjustedmode */
725 drm_mode_destroy(dev
, adjusted_mode
);
726 /* FIXME: add subpixel order */
729 crtc
->mode
= saved_mode
;
736 EXPORT_SYMBOL(drm_crtc_helper_set_mode
);
740 * drm_crtc_helper_set_config - set a new config from userspace
741 * @crtc: CRTC to setup
742 * @crtc_info: user provided configuration
743 * @new_mode: new mode to set
744 * @connector_set: set of connectors for the new config
745 * @fb: new framebuffer
748 * Caller must hold mode config lock.
750 * Setup a new configuration, provided by the user in @crtc_info, and enable
756 int drm_crtc_helper_set_config(struct drm_mode_set
*set
)
758 struct drm_device
*dev
;
759 struct drm_crtc
*save_crtcs
, *new_crtc
, *crtc
;
760 struct drm_encoder
*save_encoders
, *new_encoder
, *encoder
;
761 struct drm_framebuffer
*old_fb
= NULL
;
762 bool mode_changed
= false; /* if true do a full mode set */
763 bool fb_changed
= false; /* if true and !mode_changed just do a flip */
764 struct drm_connector
*save_connectors
, *connector
;
765 int count
= 0, ro
, fail
= 0;
766 struct drm_crtc_helper_funcs
*crtc_funcs
;
777 if (!set
->crtc
->helper_private
)
780 crtc_funcs
= set
->crtc
->helper_private
;
782 DRM_DEBUG_KMS("crtc: %p %d fb: %p connectors: %p num_connectors:"
783 " %d (x, y) (%i, %i)\n",
784 set
->crtc
, set
->crtc
->base
.id
, set
->fb
, set
->connectors
,
785 (int)set
->num_connectors
, set
->x
, set
->y
);
787 dev
= set
->crtc
->dev
;
789 /* Allocate space for the backup of all (non-pointer) crtc, encoder and
791 save_crtcs
= kzalloc(dev
->mode_config
.num_crtc
*
792 sizeof(struct drm_crtc
), GFP_KERNEL
);
796 save_encoders
= kzalloc(dev
->mode_config
.num_encoder
*
797 sizeof(struct drm_encoder
), GFP_KERNEL
);
798 if (!save_encoders
) {
803 save_connectors
= kzalloc(dev
->mode_config
.num_connector
*
804 sizeof(struct drm_connector
), GFP_KERNEL
);
805 if (!save_connectors
) {
807 kfree(save_encoders
);
811 /* Copy data. Note that driver private data is not affected.
812 * Should anything bad happen only the expected state is
813 * restored, not the drivers personal bookkeeping.
816 list_for_each_entry(crtc
, &dev
->mode_config
.crtc_list
, head
) {
817 save_crtcs
[count
++] = *crtc
;
821 list_for_each_entry(encoder
, &dev
->mode_config
.encoder_list
, head
) {
822 save_encoders
[count
++] = *encoder
;
826 list_for_each_entry(connector
, &dev
->mode_config
.connector_list
, head
) {
827 save_connectors
[count
++] = *connector
;
830 /* We should be able to check here if the fb has the same properties
831 * and then just flip_or_move it */
832 if (set
->crtc
->fb
!= set
->fb
) {
833 /* If we have no fb then treat it as a full mode set */
834 if (set
->crtc
->fb
== NULL
) {
835 DRM_DEBUG_KMS("crtc has no fb, full mode set\n");
837 } else if (set
->fb
== NULL
) {
839 } else if ((set
->fb
->bits_per_pixel
!=
840 set
->crtc
->fb
->bits_per_pixel
) ||
841 set
->fb
->depth
!= set
->crtc
->fb
->depth
)
847 if (set
->x
!= set
->crtc
->x
|| set
->y
!= set
->crtc
->y
)
850 if (set
->mode
&& !drm_mode_equal(set
->mode
, &set
->crtc
->mode
)) {
851 DRM_DEBUG_KMS("modes are different, full mode set\n");
852 drm_mode_debug_printmodeline(&set
->crtc
->mode
);
853 drm_mode_debug_printmodeline(set
->mode
);
857 /* a) traverse passed in connector list and get encoders for them */
859 list_for_each_entry(connector
, &dev
->mode_config
.connector_list
, head
) {
860 struct drm_connector_helper_funcs
*connector_funcs
=
861 connector
->helper_private
;
862 new_encoder
= connector
->encoder
;
863 for (ro
= 0; ro
< set
->num_connectors
; ro
++) {
864 if (set
->connectors
[ro
] == connector
) {
865 new_encoder
= connector_funcs
->best_encoder(connector
);
866 /* if we can't get an encoder for a connector
867 we are setting now - then fail */
868 if (new_encoder
== NULL
)
869 /* don't break so fail path works correct */
875 if (new_encoder
!= connector
->encoder
) {
876 DRM_DEBUG_KMS("encoder changed, full mode switch\n");
878 /* If the encoder is reused for another connector, then
879 * the appropriate crtc will be set later.
881 if (connector
->encoder
)
882 connector
->encoder
->crtc
= NULL
;
883 connector
->encoder
= new_encoder
;
893 list_for_each_entry(connector
, &dev
->mode_config
.connector_list
, head
) {
894 if (!connector
->encoder
)
897 if (connector
->encoder
->crtc
== set
->crtc
)
900 new_crtc
= connector
->encoder
->crtc
;
902 for (ro
= 0; ro
< set
->num_connectors
; ro
++) {
903 if (set
->connectors
[ro
] == connector
)
904 new_crtc
= set
->crtc
;
907 /* Make sure the new CRTC will work with the encoder */
909 !drm_encoder_crtc_ok(connector
->encoder
, new_crtc
)) {
913 if (new_crtc
!= connector
->encoder
->crtc
) {
914 DRM_DEBUG_KMS("crtc changed, full mode switch\n");
916 connector
->encoder
->crtc
= new_crtc
;
918 DRM_DEBUG_KMS("setting connector %d crtc to %p\n",
919 connector
->base
.id
, new_crtc
);
922 /* mode_set_base is not a required function */
923 if (fb_changed
&& !crtc_funcs
->mode_set_base
)
927 old_fb
= set
->crtc
->fb
;
928 set
->crtc
->fb
= set
->fb
;
929 set
->crtc
->enabled
= (set
->mode
!= NULL
);
930 if (set
->mode
!= NULL
) {
931 DRM_DEBUG_KMS("attempting to set mode from"
933 drm_mode_debug_printmodeline(set
->mode
);
934 if (!drm_crtc_helper_set_mode(set
->crtc
, set
->mode
,
937 DRM_ERROR("failed to set mode on crtc %p\n",
942 /* TODO are these needed? */
943 set
->crtc
->desired_x
= set
->x
;
944 set
->crtc
->desired_y
= set
->y
;
945 set
->crtc
->desired_mode
= set
->mode
;
947 drm_helper_disable_unused_functions(dev
);
948 } else if (fb_changed
) {
949 set
->crtc
->x
= set
->x
;
950 set
->crtc
->y
= set
->y
;
952 old_fb
= set
->crtc
->fb
;
953 if (set
->crtc
->fb
!= set
->fb
)
954 set
->crtc
->fb
= set
->fb
;
955 ret
= crtc_funcs
->mode_set_base(set
->crtc
,
956 set
->x
, set
->y
, old_fb
);
961 kfree(save_connectors
);
962 kfree(save_encoders
);
967 /* Restore all previous data. */
969 list_for_each_entry(crtc
, &dev
->mode_config
.crtc_list
, head
) {
970 *crtc
= save_crtcs
[count
++];
974 list_for_each_entry(encoder
, &dev
->mode_config
.encoder_list
, head
) {
975 *encoder
= save_encoders
[count
++];
979 list_for_each_entry(connector
, &dev
->mode_config
.connector_list
, head
) {
980 *connector
= save_connectors
[count
++];
983 kfree(save_connectors
);
984 kfree(save_encoders
);
988 EXPORT_SYMBOL(drm_crtc_helper_set_config
);
990 bool drm_helper_plugged_event(struct drm_device
*dev
)
994 drm_helper_probe_connector_modes(dev
, dev
->mode_config
.max_width
,
995 dev
->mode_config
.max_height
);
997 drm_setup_crtcs(dev
);
999 /* alert the driver fb layer */
1000 dev
->mode_config
.funcs
->fb_changed(dev
);
1002 /* FIXME: send hotplug event */
1006 * drm_initial_config - setup a sane initial connector configuration
1010 * Called at init time, must take mode config lock.
1012 * Scan the CRTCs and connectors and try to put together an initial setup.
1013 * At the moment, this is a cloned configuration across all heads with
1014 * a new framebuffer object as the backing store.
1017 * Zero if everything went ok, nonzero otherwise.
1019 bool drm_helper_initial_config(struct drm_device
*dev
)
1023 /* disable all the possible outputs/crtcs before entering KMS mode */
1024 drm_helper_disable_unused_functions(dev
);
1026 drm_fb_helper_parse_command_line(dev
);
1028 count
= drm_helper_probe_connector_modes(dev
,
1029 dev
->mode_config
.max_width
,
1030 dev
->mode_config
.max_height
);
1033 * we shouldn't end up with no modes here.
1036 printk(KERN_INFO
"No connectors reported connected with modes\n");
1038 drm_setup_crtcs(dev
);
1040 /* alert the driver fb layer */
1041 dev
->mode_config
.funcs
->fb_changed(dev
);
1045 EXPORT_SYMBOL(drm_helper_initial_config
);
1047 static int drm_helper_choose_encoder_dpms(struct drm_encoder
*encoder
)
1049 int dpms
= DRM_MODE_DPMS_OFF
;
1050 struct drm_connector
*connector
;
1051 struct drm_device
*dev
= encoder
->dev
;
1053 list_for_each_entry(connector
, &dev
->mode_config
.connector_list
, head
)
1054 if (connector
->encoder
== encoder
)
1055 if (connector
->dpms
< dpms
)
1056 dpms
= connector
->dpms
;
1060 static int drm_helper_choose_crtc_dpms(struct drm_crtc
*crtc
)
1062 int dpms
= DRM_MODE_DPMS_OFF
;
1063 struct drm_connector
*connector
;
1064 struct drm_device
*dev
= crtc
->dev
;
1066 list_for_each_entry(connector
, &dev
->mode_config
.connector_list
, head
)
1067 if (connector
->encoder
&& connector
->encoder
->crtc
== crtc
)
1068 if (connector
->dpms
< dpms
)
1069 dpms
= connector
->dpms
;
1074 * drm_helper_connector_dpms
1075 * @connector affected connector
1078 * Calls the low-level connector DPMS function, then
1079 * calls appropriate encoder and crtc DPMS functions as well
1081 void drm_helper_connector_dpms(struct drm_connector
*connector
, int mode
)
1083 struct drm_encoder
*encoder
= connector
->encoder
;
1084 struct drm_crtc
*crtc
= encoder
? encoder
->crtc
: NULL
;
1087 if (mode
== connector
->dpms
)
1090 old_dpms
= connector
->dpms
;
1091 connector
->dpms
= mode
;
1093 /* from off to on, do crtc then encoder */
1094 if (mode
< old_dpms
) {
1096 struct drm_crtc_helper_funcs
*crtc_funcs
= crtc
->helper_private
;
1097 if (crtc_funcs
->dpms
)
1098 (*crtc_funcs
->dpms
) (crtc
,
1099 drm_helper_choose_crtc_dpms(crtc
));
1102 struct drm_encoder_helper_funcs
*encoder_funcs
= encoder
->helper_private
;
1103 if (encoder_funcs
->dpms
)
1104 (*encoder_funcs
->dpms
) (encoder
,
1105 drm_helper_choose_encoder_dpms(encoder
));
1109 /* from on to off, do encoder then crtc */
1110 if (mode
> old_dpms
) {
1112 struct drm_encoder_helper_funcs
*encoder_funcs
= encoder
->helper_private
;
1113 if (encoder_funcs
->dpms
)
1114 (*encoder_funcs
->dpms
) (encoder
,
1115 drm_helper_choose_encoder_dpms(encoder
));
1118 struct drm_crtc_helper_funcs
*crtc_funcs
= crtc
->helper_private
;
1119 if (crtc_funcs
->dpms
)
1120 (*crtc_funcs
->dpms
) (crtc
,
1121 drm_helper_choose_crtc_dpms(crtc
));
1127 EXPORT_SYMBOL(drm_helper_connector_dpms
);
1130 * drm_hotplug_stage_two
1132 * @connector hotpluged connector
1135 * Caller must hold mode config lock, function might grab struct lock.
1137 * Stage two of a hotplug.
1140 * Zero on success, errno on failure.
1142 int drm_helper_hotplug_stage_two(struct drm_device
*dev
)
1144 drm_helper_plugged_event(dev
);
1148 EXPORT_SYMBOL(drm_helper_hotplug_stage_two
);
1150 int drm_helper_mode_fill_fb_struct(struct drm_framebuffer
*fb
,
1151 struct drm_mode_fb_cmd
*mode_cmd
)
1153 fb
->width
= mode_cmd
->width
;
1154 fb
->height
= mode_cmd
->height
;
1155 fb
->pitch
= mode_cmd
->pitch
;
1156 fb
->bits_per_pixel
= mode_cmd
->bpp
;
1157 fb
->depth
= mode_cmd
->depth
;
1161 EXPORT_SYMBOL(drm_helper_mode_fill_fb_struct
);
1163 int drm_helper_resume_force_mode(struct drm_device
*dev
)
1165 struct drm_crtc
*crtc
;
1166 struct drm_encoder
*encoder
;
1167 struct drm_encoder_helper_funcs
*encoder_funcs
;
1168 struct drm_crtc_helper_funcs
*crtc_funcs
;
1171 list_for_each_entry(crtc
, &dev
->mode_config
.crtc_list
, head
) {
1176 ret
= drm_crtc_helper_set_mode(crtc
, &crtc
->mode
,
1177 crtc
->x
, crtc
->y
, crtc
->fb
);
1180 DRM_ERROR("failed to set mode on crtc %p\n", crtc
);
1182 /* Turn off outputs that were already powered off */
1183 if (drm_helper_choose_crtc_dpms(crtc
)) {
1184 list_for_each_entry(encoder
, &dev
->mode_config
.encoder_list
, head
) {
1186 if(encoder
->crtc
!= crtc
)
1189 encoder_funcs
= encoder
->helper_private
;
1190 if (encoder_funcs
->dpms
)
1191 (*encoder_funcs
->dpms
) (encoder
,
1192 drm_helper_choose_encoder_dpms(encoder
));
1194 crtc_funcs
= crtc
->helper_private
;
1195 if (crtc_funcs
->dpms
)
1196 (*crtc_funcs
->dpms
) (crtc
,
1197 drm_helper_choose_crtc_dpms(crtc
));
1201 /* disable the unused connectors while restoring the modesetting */
1202 drm_helper_disable_unused_functions(dev
);
1205 EXPORT_SYMBOL(drm_helper_resume_force_mode
);