]> bbs.cooldavid.org Git - net-next-2.6.git/blame - drivers/gpu/drm/drm_crtc_helper.c
drm/radeon: cleanup mkregtable.c
[net-next-2.6.git] / drivers / gpu / drm / drm_crtc_helper.c
CommitLineData
f453ba04
DA
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 "drmP.h"
33#include "drm_crtc.h"
34#include "drm_crtc_helper.h"
35
36/*
aa91c666 37 * Detailed mode info for 800x600@60Hz
f453ba04 38 */
40a518d9 39static struct drm_display_mode std_modes[] = {
aa91c666
DA
40 { DRM_MODE("800x600", DRM_MODE_TYPE_DEFAULT, 40000, 800, 840,
41 968, 1056, 0, 600, 601, 605, 628, 0,
42 DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC) },
f453ba04
DA
43};
44
6714977b 45static void drm_mode_validate_flag(struct drm_connector *connector,
46 int flags)
47{
48 struct drm_display_mode *mode, *t;
49
50 if (flags == (DRM_MODE_FLAG_DBLSCAN | DRM_MODE_FLAG_INTERLACE))
51 return;
52
53 list_for_each_entry_safe(mode, t, &connector->modes, head) {
54 if ((mode->flags & DRM_MODE_FLAG_INTERLACE) &&
55 !(flags & DRM_MODE_FLAG_INTERLACE))
56 mode->status = MODE_NO_INTERLACE;
57 if ((mode->flags & DRM_MODE_FLAG_DBLSCAN) &&
58 !(flags & DRM_MODE_FLAG_DBLSCAN))
59 mode->status = MODE_NO_DBLESCAN;
60 }
61
62 return;
63}
64
f453ba04
DA
65/**
66 * drm_helper_probe_connector_modes - get complete set of display modes
67 * @dev: DRM device
68 * @maxX: max width for modes
69 * @maxY: max height for modes
70 *
71 * LOCKING:
72 * Caller must hold mode config lock.
73 *
74 * Based on @dev's mode_config layout, scan all the connectors and try to detect
75 * modes on them. Modes will first be added to the connector's probed_modes
76 * list, then culled (based on validity and the @maxX, @maxY parameters) and
77 * put into the normal modes list.
78 *
79 * Intended to be used either at bootup time or when major configuration
80 * changes have occurred.
81 *
82 * FIXME: take into account monitor limits
40a518d9
JB
83 *
84 * RETURNS:
85 * Number of modes found on @connector.
f453ba04 86 */
40a518d9
JB
87int drm_helper_probe_single_connector_modes(struct drm_connector *connector,
88 uint32_t maxX, uint32_t maxY)
f453ba04
DA
89{
90 struct drm_device *dev = connector->dev;
91 struct drm_display_mode *mode, *t;
92 struct drm_connector_helper_funcs *connector_funcs =
93 connector->helper_private;
40a518d9 94 int count = 0;
6714977b 95 int mode_flags = 0;
f453ba04 96
58367ed6 97 DRM_DEBUG_KMS("%s\n", drm_get_connector_name(connector));
f453ba04
DA
98 /* set all modes to the unverified state */
99 list_for_each_entry_safe(mode, t, &connector->modes, head)
100 mode->status = MODE_UNVERIFIED;
101
102 connector->status = connector->funcs->detect(connector);
103
104 if (connector->status == connector_status_disconnected) {
58367ed6 105 DRM_DEBUG_KMS("%s is disconnected\n",
f453ba04
DA
106 drm_get_connector_name(connector));
107 /* TODO set EDID to NULL */
40a518d9 108 return 0;
f453ba04
DA
109 }
110
40a518d9
JB
111 count = (*connector_funcs->get_modes)(connector);
112 if (!count)
113 return 0;
f453ba04 114
40a518d9 115 drm_mode_connector_list_update(connector);
f453ba04
DA
116
117 if (maxX && maxY)
118 drm_mode_validate_size(dev, &connector->modes, maxX,
119 maxY, 0);
6714977b 120
121 if (connector->interlace_allowed)
122 mode_flags |= DRM_MODE_FLAG_INTERLACE;
123 if (connector->doublescan_allowed)
124 mode_flags |= DRM_MODE_FLAG_DBLSCAN;
125 drm_mode_validate_flag(connector, mode_flags);
126
f453ba04
DA
127 list_for_each_entry_safe(mode, t, &connector->modes, head) {
128 if (mode->status == MODE_OK)
129 mode->status = connector_funcs->mode_valid(connector,
130 mode);
131 }
132
133
134 drm_mode_prune_invalid(dev, &connector->modes, true);
135
40a518d9
JB
136 if (list_empty(&connector->modes))
137 return 0;
f453ba04
DA
138
139 drm_mode_sort(&connector->modes);
140
58367ed6
ZY
141 DRM_DEBUG_KMS("Probed modes for %s\n",
142 drm_get_connector_name(connector));
f453ba04
DA
143 list_for_each_entry_safe(mode, t, &connector->modes, head) {
144 mode->vrefresh = drm_mode_vrefresh(mode);
145
146 drm_mode_set_crtcinfo(mode, CRTC_INTERLACE_HALVE_V);
147 drm_mode_debug_printmodeline(mode);
148 }
40a518d9
JB
149
150 return count;
f453ba04
DA
151}
152EXPORT_SYMBOL(drm_helper_probe_single_connector_modes);
153
40a518d9 154int drm_helper_probe_connector_modes(struct drm_device *dev, uint32_t maxX,
f453ba04
DA
155 uint32_t maxY)
156{
157 struct drm_connector *connector;
40a518d9 158 int count = 0;
f453ba04
DA
159
160 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
40a518d9
JB
161 count += drm_helper_probe_single_connector_modes(connector,
162 maxX, maxY);
f453ba04 163 }
40a518d9
JB
164
165 return count;
f453ba04
DA
166}
167EXPORT_SYMBOL(drm_helper_probe_connector_modes);
168
40a518d9
JB
169static void drm_helper_add_std_modes(struct drm_device *dev,
170 struct drm_connector *connector)
171{
172 struct drm_display_mode *mode, *t;
173 int i;
174
175 for (i = 0; i < ARRAY_SIZE(std_modes); i++) {
176 struct drm_display_mode *stdmode;
177
178 /*
179 * When no valid EDID modes are available we end up
180 * here and bailed in the past, now we add some standard
181 * modes and move on.
182 */
183 stdmode = drm_mode_duplicate(dev, &std_modes[i]);
184 drm_mode_probed_add(connector, stdmode);
185 drm_mode_list_concat(&connector->probed_modes,
186 &connector->modes);
187
58367ed6 188 DRM_DEBUG_KMS("Adding mode %s to %s\n", stdmode->name,
40a518d9
JB
189 drm_get_connector_name(connector));
190 }
191 drm_mode_sort(&connector->modes);
192
58367ed6
ZY
193 DRM_DEBUG_KMS("Added std modes on %s\n",
194 drm_get_connector_name(connector));
40a518d9
JB
195 list_for_each_entry_safe(mode, t, &connector->modes, head) {
196 mode->vrefresh = drm_mode_vrefresh(mode);
197
198 drm_mode_set_crtcinfo(mode, CRTC_INTERLACE_HALVE_V);
199 drm_mode_debug_printmodeline(mode);
200 }
201}
f453ba04 202
c9fb15f6
KP
203/**
204 * drm_helper_encoder_in_use - check if a given encoder is in use
205 * @encoder: encoder to check
206 *
207 * LOCKING:
208 * Caller must hold mode config lock.
209 *
210 * Walk @encoders's DRM device's mode_config and see if it's in use.
211 *
212 * RETURNS:
213 * True if @encoder is part of the mode_config, false otherwise.
214 */
215bool drm_helper_encoder_in_use(struct drm_encoder *encoder)
216{
217 struct drm_connector *connector;
218 struct drm_device *dev = encoder->dev;
219 list_for_each_entry(connector, &dev->mode_config.connector_list, head)
220 if (connector->encoder == encoder)
221 return true;
222 return false;
223}
224EXPORT_SYMBOL(drm_helper_encoder_in_use);
225
f453ba04
DA
226/**
227 * drm_helper_crtc_in_use - check if a given CRTC is in a mode_config
228 * @crtc: CRTC to check
229 *
230 * LOCKING:
231 * Caller must hold mode config lock.
232 *
233 * Walk @crtc's DRM device's mode_config and see if it's in use.
234 *
235 * RETURNS:
236 * True if @crtc is part of the mode_config, false otherwise.
237 */
238bool drm_helper_crtc_in_use(struct drm_crtc *crtc)
239{
240 struct drm_encoder *encoder;
241 struct drm_device *dev = crtc->dev;
242 /* FIXME: Locking around list access? */
243 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head)
c9fb15f6 244 if (encoder->crtc == crtc && drm_helper_encoder_in_use(encoder))
f453ba04
DA
245 return true;
246 return false;
247}
248EXPORT_SYMBOL(drm_helper_crtc_in_use);
249
250/**
251 * drm_disable_unused_functions - disable unused objects
252 * @dev: DRM device
253 *
254 * LOCKING:
255 * Caller must hold mode config lock.
256 *
257 * If an connector or CRTC isn't part of @dev's mode_config, it can be disabled
258 * by calling its dpms function, which should power it off.
259 */
260void drm_helper_disable_unused_functions(struct drm_device *dev)
261{
262 struct drm_encoder *encoder;
263 struct drm_encoder_helper_funcs *encoder_funcs;
264 struct drm_crtc *crtc;
265
266 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
267 encoder_funcs = encoder->helper_private;
c9fb15f6 268 if (!drm_helper_encoder_in_use(encoder))
f453ba04
DA
269 (*encoder_funcs->dpms)(encoder, DRM_MODE_DPMS_OFF);
270 }
271
272 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
273 struct drm_crtc_helper_funcs *crtc_funcs = crtc->helper_private;
274 crtc->enabled = drm_helper_crtc_in_use(crtc);
275 if (!crtc->enabled) {
276 crtc_funcs->dpms(crtc, DRM_MODE_DPMS_OFF);
277 crtc->fb = NULL;
278 }
279 }
280}
281EXPORT_SYMBOL(drm_helper_disable_unused_functions);
282
283static struct drm_display_mode *drm_has_preferred_mode(struct drm_connector *connector, int width, int height)
284{
285 struct drm_display_mode *mode;
286
287 list_for_each_entry(mode, &connector->modes, head) {
288 if (drm_mode_width(mode) > width ||
289 drm_mode_height(mode) > height)
290 continue;
291 if (mode->type & DRM_MODE_TYPE_PREFERRED)
292 return mode;
293 }
294 return NULL;
295}
296
297static bool drm_connector_enabled(struct drm_connector *connector, bool strict)
298{
299 bool enable;
300
301 if (strict) {
302 enable = connector->status == connector_status_connected;
303 } else {
304 enable = connector->status != connector_status_disconnected;
305 }
306 return enable;
307}
308
309static void drm_enable_connectors(struct drm_device *dev, bool *enabled)
310{
311 bool any_enabled = false;
312 struct drm_connector *connector;
313 int i = 0;
314
315 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
316 enabled[i] = drm_connector_enabled(connector, true);
58367ed6 317 DRM_DEBUG_KMS("connector %d enabled? %s\n", connector->base.id,
40a518d9 318 enabled[i] ? "yes" : "no");
f453ba04
DA
319 any_enabled |= enabled[i];
320 i++;
321 }
322
323 if (any_enabled)
324 return;
325
326 i = 0;
327 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
328 enabled[i] = drm_connector_enabled(connector, false);
329 i++;
330 }
331}
332
333static bool drm_target_preferred(struct drm_device *dev,
334 struct drm_display_mode **modes,
335 bool *enabled, int width, int height)
336{
337 struct drm_connector *connector;
338 int i = 0;
339
340 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
341
342 if (enabled[i] == false) {
343 i++;
344 continue;
345 }
346
58367ed6 347 DRM_DEBUG_KMS("looking for preferred mode on connector %d\n",
40a518d9
JB
348 connector->base.id);
349
f453ba04 350 modes[i] = drm_has_preferred_mode(connector, width, height);
40a518d9
JB
351 /* No preferred modes, pick one off the list */
352 if (!modes[i] && !list_empty(&connector->modes)) {
f453ba04
DA
353 list_for_each_entry(modes[i], &connector->modes, head)
354 break;
355 }
58367ed6 356 DRM_DEBUG_KMS("found mode %s\n", modes[i] ? modes[i]->name :
40a518d9 357 "none");
f453ba04
DA
358 i++;
359 }
360 return true;
361}
362
363static int drm_pick_crtcs(struct drm_device *dev,
364 struct drm_crtc **best_crtcs,
365 struct drm_display_mode **modes,
366 int n, int width, int height)
367{
368 int c, o;
369 struct drm_connector *connector;
370 struct drm_connector_helper_funcs *connector_funcs;
371 struct drm_encoder *encoder;
372 struct drm_crtc *best_crtc;
373 int my_score, best_score, score;
374 struct drm_crtc **crtcs, *crtc;
375
376 if (n == dev->mode_config.num_connector)
377 return 0;
378 c = 0;
379 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
380 if (c == n)
381 break;
382 c++;
383 }
384
385 best_crtcs[n] = NULL;
386 best_crtc = NULL;
387 best_score = drm_pick_crtcs(dev, best_crtcs, modes, n+1, width, height);
388 if (modes[n] == NULL)
389 return best_score;
390
391 crtcs = kmalloc(dev->mode_config.num_connector *
392 sizeof(struct drm_crtc *), GFP_KERNEL);
393 if (!crtcs)
394 return best_score;
395
396 my_score = 1;
397 if (connector->status == connector_status_connected)
398 my_score++;
399 if (drm_has_preferred_mode(connector, width, height))
400 my_score++;
401
402 connector_funcs = connector->helper_private;
403 encoder = connector_funcs->best_encoder(connector);
404 if (!encoder)
405 goto out;
406
407 connector->encoder = encoder;
408
409 /* select a crtc for this connector and then attempt to configure
410 remaining connectors */
411 c = 0;
412 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
413
414 if ((connector->encoder->possible_crtcs & (1 << c)) == 0) {
415 c++;
416 continue;
417 }
418
419 for (o = 0; o < n; o++)
420 if (best_crtcs[o] == crtc)
421 break;
422
423 if (o < n) {
424 /* ignore cloning for now */
425 c++;
426 continue;
427 }
428
429 crtcs[n] = crtc;
430 memcpy(crtcs, best_crtcs, n * sizeof(struct drm_crtc *));
431 score = my_score + drm_pick_crtcs(dev, crtcs, modes, n + 1,
432 width, height);
433 if (score > best_score) {
434 best_crtc = crtc;
435 best_score = score;
436 memcpy(best_crtcs, crtcs,
437 dev->mode_config.num_connector *
438 sizeof(struct drm_crtc *));
439 }
440 c++;
441 }
442out:
443 kfree(crtcs);
444 return best_score;
445}
446
447static void drm_setup_crtcs(struct drm_device *dev)
448{
449 struct drm_crtc **crtcs;
450 struct drm_display_mode **modes;
451 struct drm_encoder *encoder;
452 struct drm_connector *connector;
453 bool *enabled;
454 int width, height;
455 int i, ret;
456
58367ed6 457 DRM_DEBUG_KMS("\n");
40a518d9 458
f453ba04
DA
459 width = dev->mode_config.max_width;
460 height = dev->mode_config.max_height;
461
462 /* clean out all the encoder/crtc combos */
463 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
464 encoder->crtc = NULL;
465 }
466
467 crtcs = kcalloc(dev->mode_config.num_connector,
468 sizeof(struct drm_crtc *), GFP_KERNEL);
469 modes = kcalloc(dev->mode_config.num_connector,
470 sizeof(struct drm_display_mode *), GFP_KERNEL);
471 enabled = kcalloc(dev->mode_config.num_connector,
472 sizeof(bool), GFP_KERNEL);
473
474 drm_enable_connectors(dev, enabled);
475
476 ret = drm_target_preferred(dev, modes, enabled, width, height);
477 if (!ret)
478 DRM_ERROR("Unable to find initial modes\n");
479
58367ed6 480 DRM_DEBUG_KMS("picking CRTCs for %dx%d config\n", width, height);
40a518d9 481
f453ba04
DA
482 drm_pick_crtcs(dev, crtcs, modes, 0, width, height);
483
484 i = 0;
485 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
486 struct drm_display_mode *mode = modes[i];
487 struct drm_crtc *crtc = crtcs[i];
488
489 if (connector->encoder == NULL) {
490 i++;
491 continue;
492 }
493
494 if (mode && crtc) {
58367ed6 495 DRM_DEBUG_KMS("desired mode %s set on crtc %d\n",
40a518d9 496 mode->name, crtc->base.id);
f453ba04
DA
497 crtc->desired_mode = mode;
498 connector->encoder->crtc = crtc;
499 } else
500 connector->encoder->crtc = NULL;
501 i++;
502 }
503
504 kfree(crtcs);
505 kfree(modes);
506 kfree(enabled);
507}
7bec756c
JB
508
509/**
510 * drm_encoder_crtc_ok - can a given crtc drive a given encoder?
511 * @encoder: encoder to test
512 * @crtc: crtc to test
513 *
514 * Return false if @encoder can't be driven by @crtc, true otherwise.
515 */
516static bool drm_encoder_crtc_ok(struct drm_encoder *encoder,
517 struct drm_crtc *crtc)
518{
519 struct drm_device *dev;
520 struct drm_crtc *tmp;
521 int crtc_mask = 1;
522
523 WARN(!crtc, "checking null crtc?");
524
525 dev = crtc->dev;
526
527 list_for_each_entry(tmp, &dev->mode_config.crtc_list, head) {
528 if (tmp == crtc)
529 break;
530 crtc_mask <<= 1;
531 }
532
533 if (encoder->possible_crtcs & crtc_mask)
534 return true;
535 return false;
536}
537
538/*
539 * Check the CRTC we're going to map each output to vs. its current
540 * CRTC. If they don't match, we have to disable the output and the CRTC
541 * since the driver will have to re-route things.
542 */
543static void
544drm_crtc_prepare_encoders(struct drm_device *dev)
545{
546 struct drm_encoder_helper_funcs *encoder_funcs;
547 struct drm_encoder *encoder;
548
549 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
550 encoder_funcs = encoder->helper_private;
551 /* Disable unused encoders */
552 if (encoder->crtc == NULL)
553 (*encoder_funcs->dpms)(encoder, DRM_MODE_DPMS_OFF);
554 /* Disable encoders whose CRTC is about to change */
555 if (encoder_funcs->get_crtc &&
556 encoder->crtc != (*encoder_funcs->get_crtc)(encoder))
557 (*encoder_funcs->dpms)(encoder, DRM_MODE_DPMS_OFF);
558 }
559}
560
f453ba04
DA
561/**
562 * drm_crtc_set_mode - set a mode
563 * @crtc: CRTC to program
564 * @mode: mode to use
565 * @x: width of mode
566 * @y: height of mode
567 *
568 * LOCKING:
569 * Caller must hold mode config lock.
570 *
571 * Try to set @mode on @crtc. Give @crtc and its associated connectors a chance
572 * to fixup or reject the mode prior to trying to set it.
573 *
574 * RETURNS:
575 * True if the mode was set successfully, or false otherwise.
576 */
577bool drm_crtc_helper_set_mode(struct drm_crtc *crtc,
578 struct drm_display_mode *mode,
3c4fdcfb
KH
579 int x, int y,
580 struct drm_framebuffer *old_fb)
f453ba04
DA
581{
582 struct drm_device *dev = crtc->dev;
583 struct drm_display_mode *adjusted_mode, saved_mode;
584 struct drm_crtc_helper_funcs *crtc_funcs = crtc->helper_private;
585 struct drm_encoder_helper_funcs *encoder_funcs;
586 int saved_x, saved_y;
587 struct drm_encoder *encoder;
588 bool ret = true;
589
590 adjusted_mode = drm_mode_duplicate(dev, mode);
591
592 crtc->enabled = drm_helper_crtc_in_use(crtc);
593
594 if (!crtc->enabled)
595 return true;
596
597 saved_mode = crtc->mode;
598 saved_x = crtc->x;
599 saved_y = crtc->y;
600
601 /* Update crtc values up front so the driver can rely on them for mode
602 * setting.
603 */
604 crtc->mode = *mode;
605 crtc->x = x;
606 crtc->y = y;
607
f453ba04
DA
608 /* Pass our mode to the connectors and the CRTC to give them a chance to
609 * adjust it according to limitations or connector properties, and also
610 * a chance to reject the mode entirely.
611 */
612 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
613
614 if (encoder->crtc != crtc)
615 continue;
616 encoder_funcs = encoder->helper_private;
617 if (!(ret = encoder_funcs->mode_fixup(encoder, mode,
618 adjusted_mode))) {
619 goto done;
620 }
621 }
622
623 if (!(ret = crtc_funcs->mode_fixup(crtc, mode, adjusted_mode))) {
624 goto done;
625 }
626
627 /* Prepare the encoders and CRTCs before setting the mode. */
628 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
629
630 if (encoder->crtc != crtc)
631 continue;
632 encoder_funcs = encoder->helper_private;
633 /* Disable the encoders as the first thing we do. */
634 encoder_funcs->prepare(encoder);
635 }
636
7bec756c
JB
637 drm_crtc_prepare_encoders(dev);
638
f453ba04
DA
639 crtc_funcs->prepare(crtc);
640
641 /* Set up the DPLL and any encoders state that needs to adjust or depend
642 * on the DPLL.
643 */
5c3b82e2
CW
644 ret = !crtc_funcs->mode_set(crtc, mode, adjusted_mode, x, y, old_fb);
645 if (!ret)
646 goto done;
f453ba04
DA
647
648 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
649
650 if (encoder->crtc != crtc)
651 continue;
652
653 DRM_INFO("%s: set mode %s %x\n", drm_get_encoder_name(encoder),
654 mode->name, mode->base.id);
655 encoder_funcs = encoder->helper_private;
656 encoder_funcs->mode_set(encoder, mode, adjusted_mode);
657 }
658
659 /* Now enable the clocks, plane, pipe, and connectors that we set up. */
660 crtc_funcs->commit(crtc);
661
662 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
663
664 if (encoder->crtc != crtc)
665 continue;
666
667 encoder_funcs = encoder->helper_private;
668 encoder_funcs->commit(encoder);
669
670 }
671
672 /* XXX free adjustedmode */
673 drm_mode_destroy(dev, adjusted_mode);
674 /* FIXME: add subpixel order */
675done:
676 if (!ret) {
677 crtc->mode = saved_mode;
678 crtc->x = saved_x;
679 crtc->y = saved_y;
680 }
681
682 return ret;
683}
684EXPORT_SYMBOL(drm_crtc_helper_set_mode);
685
686
687/**
688 * drm_crtc_helper_set_config - set a new config from userspace
689 * @crtc: CRTC to setup
690 * @crtc_info: user provided configuration
691 * @new_mode: new mode to set
692 * @connector_set: set of connectors for the new config
693 * @fb: new framebuffer
694 *
695 * LOCKING:
696 * Caller must hold mode config lock.
697 *
698 * Setup a new configuration, provided by the user in @crtc_info, and enable
699 * it.
700 *
701 * RETURNS:
702 * Zero. (FIXME)
703 */
704int drm_crtc_helper_set_config(struct drm_mode_set *set)
705{
706 struct drm_device *dev;
707 struct drm_crtc **save_crtcs, *new_crtc;
708 struct drm_encoder **save_encoders, *new_encoder;
7bec756c 709 struct drm_framebuffer *old_fb = NULL;
f453ba04 710 bool save_enabled;
4cb72b17
JB
711 bool mode_changed = false; /* if true do a full mode set */
712 bool fb_changed = false; /* if true and !mode_changed just do a flip */
f453ba04
DA
713 struct drm_connector *connector;
714 int count = 0, ro, fail = 0;
715 struct drm_crtc_helper_funcs *crtc_funcs;
716 int ret = 0;
717
58367ed6 718 DRM_DEBUG_KMS("\n");
f453ba04
DA
719
720 if (!set)
721 return -EINVAL;
722
723 if (!set->crtc)
724 return -EINVAL;
725
726 if (!set->crtc->helper_private)
727 return -EINVAL;
728
729 crtc_funcs = set->crtc->helper_private;
730
58367ed6
ZY
731 DRM_DEBUG_KMS("crtc: %p %d fb: %p connectors: %p num_connectors:"
732 " %d (x, y) (%i, %i)\n",
f453ba04
DA
733 set->crtc, set->crtc->base.id, set->fb, set->connectors,
734 (int)set->num_connectors, set->x, set->y);
735
736 dev = set->crtc->dev;
737
738 /* save previous config */
739 save_enabled = set->crtc->enabled;
740
712531bf
JB
741 /*
742 * We do mode_config.num_connectors here since we'll look at the
743 * CRTC and encoder associated with each connector later.
744 */
f453ba04
DA
745 save_crtcs = kzalloc(dev->mode_config.num_connector *
746 sizeof(struct drm_crtc *), GFP_KERNEL);
747 if (!save_crtcs)
748 return -ENOMEM;
749
750 save_encoders = kzalloc(dev->mode_config.num_connector *
751 sizeof(struct drm_encoders *), GFP_KERNEL);
752 if (!save_encoders) {
753 kfree(save_crtcs);
754 return -ENOMEM;
755 }
756
757 /* We should be able to check here if the fb has the same properties
758 * and then just flip_or_move it */
759 if (set->crtc->fb != set->fb) {
712531bf 760 /* If we have no fb then treat it as a full mode set */
7bec756c 761 if (set->crtc->fb == NULL) {
58367ed6 762 DRM_DEBUG_KMS("crtc has no fb, full mode set\n");
712531bf 763 mode_changed = true;
4cb72b17
JB
764 } else if (set->fb == NULL) {
765 mode_changed = true;
7bec756c 766 } else if ((set->fb->bits_per_pixel !=
712531bf
JB
767 set->crtc->fb->bits_per_pixel) ||
768 set->fb->depth != set->crtc->fb->depth)
769 fb_changed = true;
f453ba04 770 else
712531bf 771 fb_changed = true;
f453ba04
DA
772 }
773
774 if (set->x != set->crtc->x || set->y != set->crtc->y)
712531bf 775 fb_changed = true;
f453ba04
DA
776
777 if (set->mode && !drm_mode_equal(set->mode, &set->crtc->mode)) {
58367ed6 778 DRM_DEBUG_KMS("modes are different, full mode set\n");
f453ba04
DA
779 drm_mode_debug_printmodeline(&set->crtc->mode);
780 drm_mode_debug_printmodeline(set->mode);
712531bf 781 mode_changed = true;
f453ba04
DA
782 }
783
784 /* a) traverse passed in connector list and get encoders for them */
785 count = 0;
786 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
787 struct drm_connector_helper_funcs *connector_funcs =
788 connector->helper_private;
789 save_encoders[count++] = connector->encoder;
790 new_encoder = connector->encoder;
791 for (ro = 0; ro < set->num_connectors; ro++) {
792 if (set->connectors[ro] == connector) {
793 new_encoder = connector_funcs->best_encoder(connector);
794 /* if we can't get an encoder for a connector
795 we are setting now - then fail */
796 if (new_encoder == NULL)
797 /* don't break so fail path works correct */
798 fail = 1;
799 break;
800 }
801 }
802
803 if (new_encoder != connector->encoder) {
58367ed6 804 DRM_DEBUG_KMS("encoder changed, full mode switch\n");
712531bf 805 mode_changed = true;
f453ba04
DA
806 connector->encoder = new_encoder;
807 }
808 }
809
810 if (fail) {
811 ret = -EINVAL;
812 goto fail_no_encoder;
813 }
814
815 count = 0;
816 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
817 if (!connector->encoder)
818 continue;
819
820 save_crtcs[count++] = connector->encoder->crtc;
821
822 if (connector->encoder->crtc == set->crtc)
823 new_crtc = NULL;
824 else
825 new_crtc = connector->encoder->crtc;
826
827 for (ro = 0; ro < set->num_connectors; ro++) {
828 if (set->connectors[ro] == connector)
829 new_crtc = set->crtc;
830 }
7bec756c
JB
831
832 /* Make sure the new CRTC will work with the encoder */
833 if (new_crtc &&
834 !drm_encoder_crtc_ok(connector->encoder, new_crtc)) {
835 ret = -EINVAL;
836 goto fail_set_mode;
837 }
f453ba04 838 if (new_crtc != connector->encoder->crtc) {
58367ed6 839 DRM_DEBUG_KMS("crtc changed, full mode switch\n");
712531bf 840 mode_changed = true;
f453ba04
DA
841 connector->encoder->crtc = new_crtc;
842 }
58367ed6 843 DRM_DEBUG_KMS("setting connector %d crtc to %p\n",
7bec756c 844 connector->base.id, new_crtc);
f453ba04
DA
845 }
846
847 /* mode_set_base is not a required function */
712531bf
JB
848 if (fb_changed && !crtc_funcs->mode_set_base)
849 mode_changed = true;
f453ba04 850
712531bf 851 if (mode_changed) {
3c4fdcfb 852 old_fb = set->crtc->fb;
f453ba04
DA
853 set->crtc->fb = set->fb;
854 set->crtc->enabled = (set->mode != NULL);
855 if (set->mode != NULL) {
58367ed6
ZY
856 DRM_DEBUG_KMS("attempting to set mode from"
857 " userspace\n");
f453ba04
DA
858 drm_mode_debug_printmodeline(set->mode);
859 if (!drm_crtc_helper_set_mode(set->crtc, set->mode,
3c4fdcfb
KH
860 set->x, set->y,
861 old_fb)) {
5c3b82e2
CW
862 DRM_ERROR("failed to set mode on crtc %p\n",
863 set->crtc);
f453ba04
DA
864 ret = -EINVAL;
865 goto fail_set_mode;
866 }
867 /* TODO are these needed? */
868 set->crtc->desired_x = set->x;
869 set->crtc->desired_y = set->y;
870 set->crtc->desired_mode = set->mode;
871 }
872 drm_helper_disable_unused_functions(dev);
712531bf 873 } else if (fb_changed) {
3c4fdcfb 874 old_fb = set->crtc->fb;
f453ba04
DA
875 if (set->crtc->fb != set->fb)
876 set->crtc->fb = set->fb;
5c3b82e2
CW
877 ret = crtc_funcs->mode_set_base(set->crtc,
878 set->x, set->y, old_fb);
879 if (ret != 0)
880 goto fail_set_mode;
f453ba04
DA
881 }
882
883 kfree(save_encoders);
884 kfree(save_crtcs);
885 return 0;
886
887fail_set_mode:
888 set->crtc->enabled = save_enabled;
7bec756c 889 set->crtc->fb = old_fb;
f453ba04 890 count = 0;
e62fb64e
CW
891 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
892 if (!connector->encoder)
893 continue;
894
f453ba04 895 connector->encoder->crtc = save_crtcs[count++];
e62fb64e 896 }
f453ba04
DA
897fail_no_encoder:
898 kfree(save_crtcs);
899 count = 0;
900 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
901 connector->encoder = save_encoders[count++];
902 }
903 kfree(save_encoders);
904 return ret;
905}
906EXPORT_SYMBOL(drm_crtc_helper_set_config);
907
908bool drm_helper_plugged_event(struct drm_device *dev)
909{
58367ed6 910 DRM_DEBUG_KMS("\n");
f453ba04
DA
911
912 drm_helper_probe_connector_modes(dev, dev->mode_config.max_width,
913 dev->mode_config.max_height);
914
915 drm_setup_crtcs(dev);
916
917 /* alert the driver fb layer */
918 dev->mode_config.funcs->fb_changed(dev);
919
920 /* FIXME: send hotplug event */
921 return true;
922}
923/**
924 * drm_initial_config - setup a sane initial connector configuration
925 * @dev: DRM device
f453ba04
DA
926 *
927 * LOCKING:
928 * Called at init time, must take mode config lock.
929 *
930 * Scan the CRTCs and connectors and try to put together an initial setup.
931 * At the moment, this is a cloned configuration across all heads with
932 * a new framebuffer object as the backing store.
933 *
934 * RETURNS:
935 * Zero if everything went ok, nonzero otherwise.
936 */
7a1fb5d0 937bool drm_helper_initial_config(struct drm_device *dev)
f453ba04 938{
40a518d9
JB
939 struct drm_connector *connector;
940 int count = 0;
f453ba04 941
40a518d9
JB
942 count = drm_helper_probe_connector_modes(dev,
943 dev->mode_config.max_width,
944 dev->mode_config.max_height);
945
946 /*
947 * None of the available connectors had any modes, so add some
948 * and try to light them up anyway
949 */
950 if (!count) {
951 DRM_ERROR("connectors have no modes, using standard modes\n");
952 list_for_each_entry(connector,
953 &dev->mode_config.connector_list,
954 head)
955 drm_helper_add_std_modes(dev, connector);
956 }
957
958 drm_setup_crtcs(dev);
959
960 /* alert the driver fb layer */
961 dev->mode_config.funcs->fb_changed(dev);
962
963 return 0;
f453ba04
DA
964}
965EXPORT_SYMBOL(drm_helper_initial_config);
966
c9fb15f6
KP
967static int drm_helper_choose_encoder_dpms(struct drm_encoder *encoder)
968{
969 int dpms = DRM_MODE_DPMS_OFF;
970 struct drm_connector *connector;
971 struct drm_device *dev = encoder->dev;
972
973 list_for_each_entry(connector, &dev->mode_config.connector_list, head)
974 if (connector->encoder == encoder)
975 if (connector->dpms < dpms)
976 dpms = connector->dpms;
977 return dpms;
978}
979
980static int drm_helper_choose_crtc_dpms(struct drm_crtc *crtc)
981{
982 int dpms = DRM_MODE_DPMS_OFF;
983 struct drm_connector *connector;
984 struct drm_device *dev = crtc->dev;
985
986 list_for_each_entry(connector, &dev->mode_config.connector_list, head)
987 if (connector->encoder && connector->encoder->crtc == crtc)
988 if (connector->dpms < dpms)
989 dpms = connector->dpms;
990 return dpms;
991}
992
993/**
994 * drm_helper_connector_dpms
995 * @connector affected connector
996 * @mode DPMS mode
997 *
998 * Calls the low-level connector DPMS function, then
999 * calls appropriate encoder and crtc DPMS functions as well
1000 */
1001void drm_helper_connector_dpms(struct drm_connector *connector, int mode)
1002{
1003 struct drm_encoder *encoder = connector->encoder;
1004 struct drm_crtc *crtc = encoder ? encoder->crtc : NULL;
1005 int old_dpms;
1006
1007 if (mode == connector->dpms)
1008 return;
1009
1010 old_dpms = connector->dpms;
1011 connector->dpms = mode;
1012
1013 /* from off to on, do crtc then encoder */
1014 if (mode < old_dpms) {
1015 if (crtc) {
1016 struct drm_crtc_helper_funcs *crtc_funcs = crtc->helper_private;
1017 if (crtc_funcs->dpms)
1018 (*crtc_funcs->dpms) (crtc,
1019 drm_helper_choose_crtc_dpms(crtc));
1020 }
1021 if (encoder) {
1022 struct drm_encoder_helper_funcs *encoder_funcs = encoder->helper_private;
1023 if (encoder_funcs->dpms)
1024 (*encoder_funcs->dpms) (encoder,
1025 drm_helper_choose_encoder_dpms(encoder));
1026 }
1027 }
1028
1029 /* from on to off, do encoder then crtc */
1030 if (mode > old_dpms) {
1031 if (encoder) {
1032 struct drm_encoder_helper_funcs *encoder_funcs = encoder->helper_private;
1033 if (encoder_funcs->dpms)
1034 (*encoder_funcs->dpms) (encoder,
1035 drm_helper_choose_encoder_dpms(encoder));
1036 }
1037 if (crtc) {
1038 struct drm_crtc_helper_funcs *crtc_funcs = crtc->helper_private;
1039 if (crtc_funcs->dpms)
1040 (*crtc_funcs->dpms) (crtc,
1041 drm_helper_choose_crtc_dpms(crtc));
1042 }
1043 }
1044
1045 return;
1046}
1047EXPORT_SYMBOL(drm_helper_connector_dpms);
1048
f453ba04
DA
1049/**
1050 * drm_hotplug_stage_two
1051 * @dev DRM device
1052 * @connector hotpluged connector
1053 *
1054 * LOCKING.
1055 * Caller must hold mode config lock, function might grab struct lock.
1056 *
1057 * Stage two of a hotplug.
1058 *
1059 * RETURNS:
1060 * Zero on success, errno on failure.
1061 */
1062int drm_helper_hotplug_stage_two(struct drm_device *dev)
1063{
f453ba04
DA
1064 drm_helper_plugged_event(dev);
1065
1066 return 0;
1067}
1068EXPORT_SYMBOL(drm_helper_hotplug_stage_two);
1069
1070int drm_helper_mode_fill_fb_struct(struct drm_framebuffer *fb,
1071 struct drm_mode_fb_cmd *mode_cmd)
1072{
1073 fb->width = mode_cmd->width;
1074 fb->height = mode_cmd->height;
1075 fb->pitch = mode_cmd->pitch;
1076 fb->bits_per_pixel = mode_cmd->bpp;
1077 fb->depth = mode_cmd->depth;
1078
1079 return 0;
1080}
1081EXPORT_SYMBOL(drm_helper_mode_fill_fb_struct);
1082
1083int drm_helper_resume_force_mode(struct drm_device *dev)
1084{
1085 struct drm_crtc *crtc;
1086 int ret;
1087
1088 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
1089
1090 if (!crtc->enabled)
1091 continue;
1092
3c4fdcfb
KH
1093 ret = drm_crtc_helper_set_mode(crtc, &crtc->mode,
1094 crtc->x, crtc->y, crtc->fb);
f453ba04
DA
1095
1096 if (ret == false)
1097 DRM_ERROR("failed to set mode on crtc %p\n", crtc);
1098 }
af4fcb57
ZY
1099 /* disable the unused connectors while restoring the modesetting */
1100 drm_helper_disable_unused_functions(dev);
f453ba04
DA
1101 return 0;
1102}
1103EXPORT_SYMBOL(drm_helper_resume_force_mode);