drm: remove return value from drm_helper_mode_fill_fb_struct
[deliverable/linux.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
2d1a8a48 32#include <linux/export.h>
0603ba14 33#include <linux/moduleparam.h>
2d1a8a48 34
760285e7
DH
35#include <drm/drmP.h>
36#include <drm/drm_crtc.h>
37#include <drm/drm_fourcc.h>
38#include <drm/drm_crtc_helper.h>
39#include <drm/drm_fb_helper.h>
40#include <drm/drm_edid.h>
f453ba04 41
92b6f89f
DV
42MODULE_AUTHOR("David Airlie, Jesse Barnes");
43MODULE_DESCRIPTION("DRM KMS helper");
44MODULE_LICENSE("GPL and additional rights");
45
0d4ed4c8
DV
46/**
47 * drm_helper_move_panel_connectors_to_head() - move panels to the front in the
48 * connector list
49 * @dev: drm device to operate on
50 *
51 * Some userspace presumes that the first connected connector is the main
52 * display, where it's supposed to display e.g. the login screen. For
53 * laptops, this should be the main panel. Use this function to sort all
54 * (eDP/LVDS) panels to the front of the connector list, instead of
55 * painstakingly trying to initialize them in the right order.
56 */
cfc1a062
DV
57void drm_helper_move_panel_connectors_to_head(struct drm_device *dev)
58{
59 struct drm_connector *connector, *tmp;
60 struct list_head panel_list;
61
62 INIT_LIST_HEAD(&panel_list);
63
64 list_for_each_entry_safe(connector, tmp,
65 &dev->mode_config.connector_list, head) {
66 if (connector->connector_type == DRM_MODE_CONNECTOR_LVDS ||
67 connector->connector_type == DRM_MODE_CONNECTOR_eDP)
68 list_move_tail(&connector->head, &panel_list);
69 }
70
71 list_splice(&panel_list, &dev->mode_config.connector_list);
72}
73EXPORT_SYMBOL(drm_helper_move_panel_connectors_to_head);
74
e58f637b
CW
75static bool drm_kms_helper_poll = true;
76module_param_named(poll, drm_kms_helper_poll, bool, 0600);
77
6714977b 78static void drm_mode_validate_flag(struct drm_connector *connector,
79 int flags)
80{
a1178ca0 81 struct drm_display_mode *mode;
6714977b 82
560a067a
DL
83 if (flags == (DRM_MODE_FLAG_DBLSCAN | DRM_MODE_FLAG_INTERLACE |
84 DRM_MODE_FLAG_3D_MASK))
6714977b 85 return;
86
a1178ca0 87 list_for_each_entry(mode, &connector->modes, head) {
6714977b 88 if ((mode->flags & DRM_MODE_FLAG_INTERLACE) &&
89 !(flags & DRM_MODE_FLAG_INTERLACE))
90 mode->status = MODE_NO_INTERLACE;
91 if ((mode->flags & DRM_MODE_FLAG_DBLSCAN) &&
92 !(flags & DRM_MODE_FLAG_DBLSCAN))
93 mode->status = MODE_NO_DBLESCAN;
560a067a
DL
94 if ((mode->flags & DRM_MODE_FLAG_3D_MASK) &&
95 !(flags & DRM_MODE_FLAG_3D_MASK))
96 mode->status = MODE_NO_STEREO;
6714977b 97 }
98
99 return;
100}
101
f453ba04 102/**
38651674 103 * drm_helper_probe_single_connector_modes - get complete set of display modes
0d4ed4c8 104 * @connector: connector to probe
f453ba04
DA
105 * @maxX: max width for modes
106 * @maxY: max height for modes
107 *
108 * LOCKING:
109 * Caller must hold mode config lock.
110 *
0d4ed4c8
DV
111 * Based on the helper callbacks implemented by @connector try to detect all
112 * valid modes. Modes will first be added to the connector's probed_modes list,
113 * then culled (based on validity and the @maxX, @maxY parameters) and put into
114 * the normal modes list.
f453ba04 115 *
1eee814d
LD
116 * Intended to be use as a generic implementation of the ->fill_modes()
117 * @connector vfunc for drivers that use the crtc helpers for output mode
118 * filtering and detection.
40a518d9
JB
119 *
120 * RETURNS:
121 * Number of modes found on @connector.
f453ba04 122 */
40a518d9
JB
123int drm_helper_probe_single_connector_modes(struct drm_connector *connector,
124 uint32_t maxX, uint32_t maxY)
f453ba04
DA
125{
126 struct drm_device *dev = connector->dev;
a1178ca0 127 struct drm_display_mode *mode;
f453ba04
DA
128 struct drm_connector_helper_funcs *connector_funcs =
129 connector->helper_private;
40a518d9 130 int count = 0;
6714977b 131 int mode_flags = 0;
ebbd97ad 132 bool verbose_prune = true;
f453ba04 133
9440106b
JG
134 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n", connector->base.id,
135 drm_get_connector_name(connector));
f453ba04 136 /* set all modes to the unverified state */
a1178ca0 137 list_for_each_entry(mode, &connector->modes, head)
f453ba04
DA
138 mode->status = MODE_UNVERIFIED;
139
d50ba256
DA
140 if (connector->force) {
141 if (connector->force == DRM_FORCE_ON)
142 connector->status = connector_status_connected;
143 else
144 connector->status = connector_status_disconnected;
145 if (connector->funcs->force)
146 connector->funcs->force(connector);
e58f637b 147 } else {
930a9e28 148 connector->status = connector->funcs->detect(connector, true);
e58f637b 149 }
f453ba04 150
905bc9ff
DV
151 /* Re-enable polling in case the global poll config changed. */
152 if (drm_kms_helper_poll != dev->mode_config.poll_running)
153 drm_kms_helper_poll_enable(dev);
154
155 dev->mode_config.poll_running = drm_kms_helper_poll;
156
f453ba04 157 if (connector->status == connector_status_disconnected) {
9440106b
JG
158 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] disconnected\n",
159 connector->base.id, drm_get_connector_name(connector));
72539832 160 drm_mode_connector_update_edid_property(connector, NULL);
ebbd97ad 161 verbose_prune = false;
620f3781 162 goto prune;
f453ba04
DA
163 }
164
da0df92b
CE
165#ifdef CONFIG_DRM_LOAD_EDID_FIRMWARE
166 count = drm_load_edid_firmware(connector);
167 if (count == 0)
168#endif
169 count = (*connector_funcs->get_modes)(connector);
170
c7ef35a9 171 if (count == 0 && connector->status == connector_status_connected)
9632b41f 172 count = drm_add_modes_noedid(connector, 1024, 768);
c7ef35a9
CW
173 if (count == 0)
174 goto prune;
f453ba04 175
40a518d9 176 drm_mode_connector_list_update(connector);
f453ba04
DA
177
178 if (maxX && maxY)
3e70292c 179 drm_mode_validate_size(dev, &connector->modes, maxX, maxY);
6714977b 180
181 if (connector->interlace_allowed)
182 mode_flags |= DRM_MODE_FLAG_INTERLACE;
183 if (connector->doublescan_allowed)
184 mode_flags |= DRM_MODE_FLAG_DBLSCAN;
560a067a
DL
185 if (connector->stereo_allowed)
186 mode_flags |= DRM_MODE_FLAG_3D_MASK;
6714977b 187 drm_mode_validate_flag(connector, mode_flags);
188
a1178ca0 189 list_for_each_entry(mode, &connector->modes, head) {
f453ba04
DA
190 if (mode->status == MODE_OK)
191 mode->status = connector_funcs->mode_valid(connector,
192 mode);
193 }
194
620f3781 195prune:
ebbd97ad 196 drm_mode_prune_invalid(dev, &connector->modes, verbose_prune);
f453ba04 197
40a518d9
JB
198 if (list_empty(&connector->modes))
199 return 0;
f453ba04 200
9bc3cd56
VS
201 list_for_each_entry(mode, &connector->modes, head)
202 mode->vrefresh = drm_mode_vrefresh(mode);
203
f453ba04
DA
204 drm_mode_sort(&connector->modes);
205
9440106b
JG
206 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] probed modes :\n", connector->base.id,
207 drm_get_connector_name(connector));
a1178ca0 208 list_for_each_entry(mode, &connector->modes, head) {
f453ba04
DA
209 drm_mode_set_crtcinfo(mode, CRTC_INTERLACE_HALVE_V);
210 drm_mode_debug_printmodeline(mode);
211 }
40a518d9
JB
212
213 return count;
f453ba04
DA
214}
215EXPORT_SYMBOL(drm_helper_probe_single_connector_modes);
216
c9fb15f6
KP
217/**
218 * drm_helper_encoder_in_use - check if a given encoder is in use
219 * @encoder: encoder to check
220 *
221 * LOCKING:
222 * Caller must hold mode config lock.
223 *
224 * Walk @encoders's DRM device's mode_config and see if it's in use.
225 *
226 * RETURNS:
227 * True if @encoder is part of the mode_config, false otherwise.
228 */
229bool drm_helper_encoder_in_use(struct drm_encoder *encoder)
230{
231 struct drm_connector *connector;
232 struct drm_device *dev = encoder->dev;
233 list_for_each_entry(connector, &dev->mode_config.connector_list, head)
234 if (connector->encoder == encoder)
235 return true;
236 return false;
237}
238EXPORT_SYMBOL(drm_helper_encoder_in_use);
239
f453ba04
DA
240/**
241 * drm_helper_crtc_in_use - check if a given CRTC is in a mode_config
242 * @crtc: CRTC to check
243 *
244 * LOCKING:
245 * Caller must hold mode config lock.
246 *
247 * Walk @crtc's DRM device's mode_config and see if it's in use.
248 *
249 * RETURNS:
250 * True if @crtc is part of the mode_config, false otherwise.
251 */
252bool drm_helper_crtc_in_use(struct drm_crtc *crtc)
253{
254 struct drm_encoder *encoder;
255 struct drm_device *dev = crtc->dev;
256 /* FIXME: Locking around list access? */
257 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head)
c9fb15f6 258 if (encoder->crtc == crtc && drm_helper_encoder_in_use(encoder))
f453ba04
DA
259 return true;
260 return false;
261}
262EXPORT_SYMBOL(drm_helper_crtc_in_use);
263
86a1b9d1
BS
264static void
265drm_encoder_disable(struct drm_encoder *encoder)
266{
267 struct drm_encoder_helper_funcs *encoder_funcs = encoder->helper_private;
268
3b336ec4
SP
269 if (encoder->bridge)
270 encoder->bridge->funcs->disable(encoder->bridge);
271
86a1b9d1
BS
272 if (encoder_funcs->disable)
273 (*encoder_funcs->disable)(encoder);
274 else
275 (*encoder_funcs->dpms)(encoder, DRM_MODE_DPMS_OFF);
3b336ec4
SP
276
277 if (encoder->bridge)
278 encoder->bridge->funcs->post_disable(encoder->bridge);
86a1b9d1
BS
279}
280
f453ba04 281/**
89347bb8 282 * drm_helper_disable_unused_functions - disable unused objects
f453ba04
DA
283 * @dev: DRM device
284 *
285 * LOCKING:
286 * Caller must hold mode config lock.
287 *
288 * If an connector or CRTC isn't part of @dev's mode_config, it can be disabled
289 * by calling its dpms function, which should power it off.
290 */
291void drm_helper_disable_unused_functions(struct drm_device *dev)
292{
293 struct drm_encoder *encoder;
a3a0544b 294 struct drm_connector *connector;
f453ba04
DA
295 struct drm_crtc *crtc;
296
a3a0544b
DA
297 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
298 if (!connector->encoder)
299 continue;
300 if (connector->status == connector_status_disconnected)
301 connector->encoder = NULL;
302 }
303
f453ba04 304 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
92971021 305 if (!drm_helper_encoder_in_use(encoder)) {
86a1b9d1 306 drm_encoder_disable(encoder);
9c552dd7
DA
307 /* disconnector encoder from any connector */
308 encoder->crtc = NULL;
a3a0544b 309 }
f453ba04
DA
310 }
311
312 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
313 struct drm_crtc_helper_funcs *crtc_funcs = crtc->helper_private;
314 crtc->enabled = drm_helper_crtc_in_use(crtc);
315 if (!crtc->enabled) {
5c8d7171
AD
316 if (crtc_funcs->disable)
317 (*crtc_funcs->disable)(crtc);
318 else
319 (*crtc_funcs->dpms)(crtc, DRM_MODE_DPMS_OFF);
f453ba04
DA
320 crtc->fb = NULL;
321 }
322 }
323}
324EXPORT_SYMBOL(drm_helper_disable_unused_functions);
325
7bec756c
JB
326/*
327 * Check the CRTC we're going to map each output to vs. its current
328 * CRTC. If they don't match, we have to disable the output and the CRTC
329 * since the driver will have to re-route things.
330 */
331static void
332drm_crtc_prepare_encoders(struct drm_device *dev)
333{
334 struct drm_encoder_helper_funcs *encoder_funcs;
335 struct drm_encoder *encoder;
336
337 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
338 encoder_funcs = encoder->helper_private;
339 /* Disable unused encoders */
340 if (encoder->crtc == NULL)
86a1b9d1 341 drm_encoder_disable(encoder);
7bec756c
JB
342 /* Disable encoders whose CRTC is about to change */
343 if (encoder_funcs->get_crtc &&
344 encoder->crtc != (*encoder_funcs->get_crtc)(encoder))
86a1b9d1 345 drm_encoder_disable(encoder);
7bec756c
JB
346 }
347}
348
f453ba04 349/**
0d4ed4c8 350 * drm_crtc_helper_set_mode - internal helper to set a mode
f453ba04
DA
351 * @crtc: CRTC to program
352 * @mode: mode to use
4c9287c6
AD
353 * @x: horizontal offset into the surface
354 * @y: vertical offset into the surface
0d4ed4c8 355 * @old_fb: old framebuffer, for cleanup
f453ba04
DA
356 *
357 * LOCKING:
358 * Caller must hold mode config lock.
359 *
360 * Try to set @mode on @crtc. Give @crtc and its associated connectors a chance
0d4ed4c8
DV
361 * to fixup or reject the mode prior to trying to set it. This is an internal
362 * helper that drivers could e.g. use to update properties that require the
363 * entire output pipe to be disabled and re-enabled in a new configuration. For
364 * example for changing whether audio is enabled on a hdmi link or for changing
365 * panel fitter or dither attributes. It is also called by the
366 * drm_crtc_helper_set_config() helper function to drive the mode setting
367 * sequence.
f453ba04
DA
368 *
369 * RETURNS:
370 * True if the mode was set successfully, or false otherwise.
371 */
372bool drm_crtc_helper_set_mode(struct drm_crtc *crtc,
373 struct drm_display_mode *mode,
3c4fdcfb
KH
374 int x, int y,
375 struct drm_framebuffer *old_fb)
f453ba04
DA
376{
377 struct drm_device *dev = crtc->dev;
7e99acdc 378 struct drm_display_mode *adjusted_mode, saved_mode;
f453ba04
DA
379 struct drm_crtc_helper_funcs *crtc_funcs = crtc->helper_private;
380 struct drm_encoder_helper_funcs *encoder_funcs;
381 int saved_x, saved_y;
7e99acdc 382 bool saved_enabled;
f453ba04
DA
383 struct drm_encoder *encoder;
384 bool ret = true;
385
7e99acdc 386 saved_enabled = crtc->enabled;
f453ba04 387 crtc->enabled = drm_helper_crtc_in_use(crtc);
f453ba04
DA
388 if (!crtc->enabled)
389 return true;
390
021a8455 391 adjusted_mode = drm_mode_duplicate(dev, mode);
7e99acdc
IH
392 if (!adjusted_mode) {
393 crtc->enabled = saved_enabled;
6bfc56aa 394 return false;
7e99acdc 395 }
021a8455 396
f453ba04
DA
397 saved_mode = crtc->mode;
398 saved_x = crtc->x;
399 saved_y = crtc->y;
400
401 /* Update crtc values up front so the driver can rely on them for mode
402 * setting.
403 */
404 crtc->mode = *mode;
405 crtc->x = x;
406 crtc->y = y;
407
f453ba04
DA
408 /* Pass our mode to the connectors and the CRTC to give them a chance to
409 * adjust it according to limitations or connector properties, and also
410 * a chance to reject the mode entirely.
411 */
412 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
413
414 if (encoder->crtc != crtc)
415 continue;
3b336ec4
SP
416
417 if (encoder->bridge && encoder->bridge->funcs->mode_fixup) {
418 ret = encoder->bridge->funcs->mode_fixup(
419 encoder->bridge, mode, adjusted_mode);
420 if (!ret) {
421 DRM_DEBUG_KMS("Bridge fixup failed\n");
422 goto done;
423 }
424 }
425
f453ba04
DA
426 encoder_funcs = encoder->helper_private;
427 if (!(ret = encoder_funcs->mode_fixup(encoder, mode,
428 adjusted_mode))) {
836e53d7 429 DRM_DEBUG_KMS("Encoder fixup failed\n");
f453ba04
DA
430 goto done;
431 }
432 }
433
434 if (!(ret = crtc_funcs->mode_fixup(crtc, mode, adjusted_mode))) {
836e53d7 435 DRM_DEBUG_KMS("CRTC fixup failed\n");
f453ba04
DA
436 goto done;
437 }
9440106b 438 DRM_DEBUG_KMS("[CRTC:%d]\n", crtc->base.id);
f453ba04
DA
439
440 /* Prepare the encoders and CRTCs before setting the mode. */
441 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
442
443 if (encoder->crtc != crtc)
444 continue;
3b336ec4
SP
445
446 if (encoder->bridge)
447 encoder->bridge->funcs->disable(encoder->bridge);
448
f453ba04
DA
449 encoder_funcs = encoder->helper_private;
450 /* Disable the encoders as the first thing we do. */
451 encoder_funcs->prepare(encoder);
3b336ec4
SP
452
453 if (encoder->bridge)
454 encoder->bridge->funcs->post_disable(encoder->bridge);
f453ba04
DA
455 }
456
7bec756c
JB
457 drm_crtc_prepare_encoders(dev);
458
f453ba04
DA
459 crtc_funcs->prepare(crtc);
460
461 /* Set up the DPLL and any encoders state that needs to adjust or depend
462 * on the DPLL.
463 */
5c3b82e2
CW
464 ret = !crtc_funcs->mode_set(crtc, mode, adjusted_mode, x, y, old_fb);
465 if (!ret)
466 goto done;
f453ba04
DA
467
468 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
469
470 if (encoder->crtc != crtc)
471 continue;
472
9440106b
JG
473 DRM_DEBUG_KMS("[ENCODER:%d:%s] set [MODE:%d:%s]\n",
474 encoder->base.id, drm_get_encoder_name(encoder),
475 mode->base.id, mode->name);
f453ba04
DA
476 encoder_funcs = encoder->helper_private;
477 encoder_funcs->mode_set(encoder, mode, adjusted_mode);
3b336ec4
SP
478
479 if (encoder->bridge && encoder->bridge->funcs->mode_set)
480 encoder->bridge->funcs->mode_set(encoder->bridge, mode,
481 adjusted_mode);
f453ba04
DA
482 }
483
484 /* Now enable the clocks, plane, pipe, and connectors that we set up. */
485 crtc_funcs->commit(crtc);
486
487 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
488
489 if (encoder->crtc != crtc)
490 continue;
491
3b336ec4
SP
492 if (encoder->bridge)
493 encoder->bridge->funcs->pre_enable(encoder->bridge);
494
f453ba04
DA
495 encoder_funcs = encoder->helper_private;
496 encoder_funcs->commit(encoder);
497
3b336ec4
SP
498 if (encoder->bridge)
499 encoder->bridge->funcs->enable(encoder->bridge);
f453ba04
DA
500 }
501
27641c3f
MK
502 /* Store real post-adjustment hardware mode. */
503 crtc->hwmode = *adjusted_mode;
504
505 /* Calculate and store various constants which
506 * are later needed by vblank and swap-completion
507 * timestamping. They are derived from true hwmode.
508 */
545cdd55 509 drm_calc_timestamping_constants(crtc, &crtc->hwmode);
27641c3f 510
f453ba04
DA
511 /* FIXME: add subpixel order */
512done:
021a8455 513 drm_mode_destroy(dev, adjusted_mode);
f453ba04 514 if (!ret) {
7e99acdc 515 crtc->enabled = saved_enabled;
f453ba04
DA
516 crtc->mode = saved_mode;
517 crtc->x = saved_x;
518 crtc->y = saved_y;
519 }
520
521 return ret;
522}
523EXPORT_SYMBOL(drm_crtc_helper_set_mode);
524
525
6eebd6bb
CW
526static int
527drm_crtc_helper_disable(struct drm_crtc *crtc)
528{
529 struct drm_device *dev = crtc->dev;
530 struct drm_connector *connector;
531 struct drm_encoder *encoder;
532
533 /* Decouple all encoders and their attached connectors from this crtc */
534 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
535 if (encoder->crtc != crtc)
536 continue;
537
538 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
539 if (connector->encoder != encoder)
540 continue;
541
542 connector->encoder = NULL;
a6ad6230
TR
543
544 /*
545 * drm_helper_disable_unused_functions() ought to be
546 * doing this, but since we've decoupled the encoder
547 * from the connector above, the required connection
548 * between them is henceforth no longer available.
549 */
550 connector->dpms = DRM_MODE_DPMS_OFF;
6eebd6bb
CW
551 }
552 }
553
554 drm_helper_disable_unused_functions(dev);
555 return 0;
556}
557
f453ba04
DA
558/**
559 * drm_crtc_helper_set_config - set a new config from userspace
0d4ed4c8 560 * @set: mode set configuration
f453ba04
DA
561 *
562 * LOCKING:
563 * Caller must hold mode config lock.
564 *
0d4ed4c8
DV
565 * Setup a new configuration, provided by the upper layers (either an ioctl call
566 * from userspace or internally e.g. from the fbdev suppport code) in @set, and
567 * enable it. This is the main helper functions for drivers that implement
568 * kernel mode setting with the crtc helper functions and the assorted
569 * ->prepare(), ->modeset() and ->commit() helper callbacks.
f453ba04
DA
570 *
571 * RETURNS:
0d4ed4c8 572 * Returns 0 on success, -ERRNO on failure.
f453ba04
DA
573 */
574int drm_crtc_helper_set_config(struct drm_mode_set *set)
575{
576 struct drm_device *dev;
02ee4e94 577 struct drm_crtc *new_crtc;
e67aae79 578 struct drm_encoder *save_encoders, *new_encoder, *encoder;
4cb72b17
JB
579 bool mode_changed = false; /* if true do a full mode set */
580 bool fb_changed = false; /* if true and !mode_changed just do a flip */
e67aae79 581 struct drm_connector *save_connectors, *connector;
f453ba04
DA
582 int count = 0, ro, fail = 0;
583 struct drm_crtc_helper_funcs *crtc_funcs;
c5006cfe 584 struct drm_mode_set save_set;
4a1b0714 585 int ret;
bf9dc102 586 int i;
f453ba04 587
58367ed6 588 DRM_DEBUG_KMS("\n");
f453ba04 589
e58de880
DV
590 BUG_ON(!set);
591 BUG_ON(!set->crtc);
592 BUG_ON(!set->crtc->helper_private);
f453ba04 593
e58de880
DV
594 /* Enforce sane interface api - has been abused by the fb helper. */
595 BUG_ON(!set->mode && set->fb);
596 BUG_ON(set->fb && set->num_connectors == 0);
f453ba04
DA
597
598 crtc_funcs = set->crtc->helper_private;
599
ede3ff52
CW
600 if (!set->mode)
601 set->fb = NULL;
602
9440106b
JG
603 if (set->fb) {
604 DRM_DEBUG_KMS("[CRTC:%d] [FB:%d] #connectors=%d (x y) (%i %i)\n",
605 set->crtc->base.id, set->fb->base.id,
606 (int)set->num_connectors, set->x, set->y);
607 } else {
ede3ff52 608 DRM_DEBUG_KMS("[CRTC:%d] [NOFB]\n", set->crtc->base.id);
6eebd6bb 609 return drm_crtc_helper_disable(set->crtc);
9440106b 610 }
f453ba04
DA
611
612 dev = set->crtc->dev;
613
02ee4e94
IH
614 /*
615 * Allocate space for the backup of all (non-pointer) encoder and
616 * connector data.
617 */
e67aae79
MM
618 save_encoders = kzalloc(dev->mode_config.num_encoder *
619 sizeof(struct drm_encoder), GFP_KERNEL);
02ee4e94 620 if (!save_encoders)
f453ba04 621 return -ENOMEM;
f453ba04 622
e67aae79
MM
623 save_connectors = kzalloc(dev->mode_config.num_connector *
624 sizeof(struct drm_connector), GFP_KERNEL);
625 if (!save_connectors) {
e67aae79
MM
626 kfree(save_encoders);
627 return -ENOMEM;
628 }
629
02ee4e94
IH
630 /*
631 * Copy data. Note that driver private data is not affected.
e67aae79
MM
632 * Should anything bad happen only the expected state is
633 * restored, not the drivers personal bookkeeping.
634 */
e67aae79
MM
635 count = 0;
636 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
637 save_encoders[count++] = *encoder;
638 }
639
640 count = 0;
641 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
642 save_connectors[count++] = *connector;
643 }
644
c5006cfe
JB
645 save_set.crtc = set->crtc;
646 save_set.mode = &set->crtc->mode;
647 save_set.x = set->crtc->x;
648 save_set.y = set->crtc->y;
649 save_set.fb = set->crtc->fb;
650
f453ba04
DA
651 /* We should be able to check here if the fb has the same properties
652 * and then just flip_or_move it */
653 if (set->crtc->fb != set->fb) {
712531bf 654 /* If we have no fb then treat it as a full mode set */
7bec756c 655 if (set->crtc->fb == NULL) {
58367ed6 656 DRM_DEBUG_KMS("crtc has no fb, full mode set\n");
712531bf 657 mode_changed = true;
4cb72b17
JB
658 } else if (set->fb == NULL) {
659 mode_changed = true;
ce83adf7
LP
660 } else if (set->fb->pixel_format !=
661 set->crtc->fb->pixel_format) {
662 mode_changed = true;
8dff4742 663 } else
712531bf 664 fb_changed = true;
f453ba04
DA
665 }
666
667 if (set->x != set->crtc->x || set->y != set->crtc->y)
712531bf 668 fb_changed = true;
f453ba04
DA
669
670 if (set->mode && !drm_mode_equal(set->mode, &set->crtc->mode)) {
58367ed6 671 DRM_DEBUG_KMS("modes are different, full mode set\n");
f453ba04
DA
672 drm_mode_debug_printmodeline(&set->crtc->mode);
673 drm_mode_debug_printmodeline(set->mode);
712531bf 674 mode_changed = true;
f453ba04
DA
675 }
676
677 /* a) traverse passed in connector list and get encoders for them */
678 count = 0;
679 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
680 struct drm_connector_helper_funcs *connector_funcs =
681 connector->helper_private;
f453ba04
DA
682 new_encoder = connector->encoder;
683 for (ro = 0; ro < set->num_connectors; ro++) {
684 if (set->connectors[ro] == connector) {
685 new_encoder = connector_funcs->best_encoder(connector);
686 /* if we can't get an encoder for a connector
687 we are setting now - then fail */
688 if (new_encoder == NULL)
689 /* don't break so fail path works correct */
690 fail = 1;
691 break;
25f397a4
DV
692
693 if (connector->dpms != DRM_MODE_DPMS_ON) {
694 DRM_DEBUG_KMS("connector dpms not on, full mode switch\n");
695 mode_changed = true;
696 }
f453ba04
DA
697 }
698 }
699
700 if (new_encoder != connector->encoder) {
58367ed6 701 DRM_DEBUG_KMS("encoder changed, full mode switch\n");
712531bf 702 mode_changed = true;
ff846ab7
MM
703 /* If the encoder is reused for another connector, then
704 * the appropriate crtc will be set later.
705 */
ff6fdbed
MM
706 if (connector->encoder)
707 connector->encoder->crtc = NULL;
f453ba04
DA
708 connector->encoder = new_encoder;
709 }
710 }
711
712 if (fail) {
713 ret = -EINVAL;
e67aae79 714 goto fail;
f453ba04
DA
715 }
716
717 count = 0;
718 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
719 if (!connector->encoder)
720 continue;
721
f453ba04
DA
722 if (connector->encoder->crtc == set->crtc)
723 new_crtc = NULL;
724 else
725 new_crtc = connector->encoder->crtc;
726
727 for (ro = 0; ro < set->num_connectors; ro++) {
728 if (set->connectors[ro] == connector)
729 new_crtc = set->crtc;
730 }
7bec756c
JB
731
732 /* Make sure the new CRTC will work with the encoder */
733 if (new_crtc &&
734 !drm_encoder_crtc_ok(connector->encoder, new_crtc)) {
735 ret = -EINVAL;
e67aae79 736 goto fail;
7bec756c 737 }
f453ba04 738 if (new_crtc != connector->encoder->crtc) {
58367ed6 739 DRM_DEBUG_KMS("crtc changed, full mode switch\n");
712531bf 740 mode_changed = true;
f453ba04
DA
741 connector->encoder->crtc = new_crtc;
742 }
9440106b
JG
743 if (new_crtc) {
744 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] to [CRTC:%d]\n",
745 connector->base.id, drm_get_connector_name(connector),
746 new_crtc->base.id);
747 } else {
748 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] to [NOCRTC]\n",
749 connector->base.id, drm_get_connector_name(connector));
750 }
f453ba04
DA
751 }
752
753 /* mode_set_base is not a required function */
712531bf
JB
754 if (fb_changed && !crtc_funcs->mode_set_base)
755 mode_changed = true;
f453ba04 756
712531bf 757 if (mode_changed) {
48b1f5dd 758 if (drm_helper_crtc_in_use(set->crtc)) {
58367ed6
ZY
759 DRM_DEBUG_KMS("attempting to set mode from"
760 " userspace\n");
f453ba04 761 drm_mode_debug_printmodeline(set->mode);
356ad3cd 762 set->crtc->fb = set->fb;
f453ba04 763 if (!drm_crtc_helper_set_mode(set->crtc, set->mode,
3c4fdcfb 764 set->x, set->y,
bec2eac3 765 save_set.fb)) {
9440106b
JG
766 DRM_ERROR("failed to set mode on [CRTC:%d]\n",
767 set->crtc->base.id);
bec2eac3 768 set->crtc->fb = save_set.fb;
f453ba04 769 ret = -EINVAL;
e67aae79 770 goto fail;
f453ba04 771 }
25f397a4
DV
772 DRM_DEBUG_KMS("Setting connector DPMS state to on\n");
773 for (i = 0; i < set->num_connectors; i++) {
774 DRM_DEBUG_KMS("\t[CONNECTOR:%d:%s] set DPMS on\n", set->connectors[i]->base.id,
775 drm_get_connector_name(set->connectors[i]));
776 set->connectors[i]->funcs->dpms(set->connectors[i], DRM_MODE_DPMS_ON);
777 }
f453ba04
DA
778 }
779 drm_helper_disable_unused_functions(dev);
712531bf 780 } else if (fb_changed) {
9b1596af
BS
781 set->crtc->x = set->x;
782 set->crtc->y = set->y;
fc50a890 783 set->crtc->fb = set->fb;
5c3b82e2 784 ret = crtc_funcs->mode_set_base(set->crtc,
bec2eac3 785 set->x, set->y, save_set.fb);
0ba41e44 786 if (ret != 0) {
fbce4064
IH
787 set->crtc->x = save_set.x;
788 set->crtc->y = save_set.y;
bec2eac3 789 set->crtc->fb = save_set.fb;
e67aae79 790 goto fail;
0ba41e44 791 }
f453ba04
DA
792 }
793
e67aae79 794 kfree(save_connectors);
f453ba04 795 kfree(save_encoders);
f453ba04
DA
796 return 0;
797
e67aae79
MM
798fail:
799 /* Restore all previous data. */
e67aae79
MM
800 count = 0;
801 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
802 *encoder = save_encoders[count++];
e62fb64e 803 }
e67aae79 804
f453ba04
DA
805 count = 0;
806 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
e67aae79 807 *connector = save_connectors[count++];
f453ba04 808 }
e67aae79 809
c5006cfe
JB
810 /* Try to restore the config */
811 if (mode_changed &&
812 !drm_crtc_helper_set_mode(save_set.crtc, save_set.mode, save_set.x,
813 save_set.y, save_set.fb))
814 DRM_ERROR("failed to restore config after modeset failure\n");
815
e67aae79 816 kfree(save_connectors);
f453ba04
DA
817 kfree(save_encoders);
818 return ret;
819}
820EXPORT_SYMBOL(drm_crtc_helper_set_config);
821
c9fb15f6
KP
822static int drm_helper_choose_encoder_dpms(struct drm_encoder *encoder)
823{
824 int dpms = DRM_MODE_DPMS_OFF;
825 struct drm_connector *connector;
826 struct drm_device *dev = encoder->dev;
827
828 list_for_each_entry(connector, &dev->mode_config.connector_list, head)
829 if (connector->encoder == encoder)
830 if (connector->dpms < dpms)
831 dpms = connector->dpms;
832 return dpms;
833}
834
3b336ec4
SP
835/* Helper which handles bridge ordering around encoder dpms */
836static void drm_helper_encoder_dpms(struct drm_encoder *encoder, int mode)
837{
838 struct drm_bridge *bridge = encoder->bridge;
839 struct drm_encoder_helper_funcs *encoder_funcs;
840
841 if (bridge) {
842 if (mode == DRM_MODE_DPMS_ON)
843 bridge->funcs->pre_enable(bridge);
844 else
845 bridge->funcs->disable(bridge);
846 }
847
848 encoder_funcs = encoder->helper_private;
849 if (encoder_funcs->dpms)
850 encoder_funcs->dpms(encoder, mode);
851
852 if (bridge) {
853 if (mode == DRM_MODE_DPMS_ON)
854 bridge->funcs->enable(bridge);
855 else
856 bridge->funcs->post_disable(bridge);
857 }
858}
859
c9fb15f6
KP
860static int drm_helper_choose_crtc_dpms(struct drm_crtc *crtc)
861{
862 int dpms = DRM_MODE_DPMS_OFF;
863 struct drm_connector *connector;
864 struct drm_device *dev = crtc->dev;
865
866 list_for_each_entry(connector, &dev->mode_config.connector_list, head)
867 if (connector->encoder && connector->encoder->crtc == crtc)
868 if (connector->dpms < dpms)
869 dpms = connector->dpms;
870 return dpms;
871}
872
873/**
0d4ed4c8
DV
874 * drm_helper_connector_dpms() - connector dpms helper implementation
875 * @connector: affected connector
876 * @mode: DPMS mode
c9fb15f6 877 *
0d4ed4c8
DV
878 * This is the main helper function provided by the crtc helper framework for
879 * implementing the DPMS connector attribute. It computes the new desired DPMS
880 * state for all encoders and crtcs in the output mesh and calls the ->dpms()
881 * callback provided by the driver appropriately.
c9fb15f6
KP
882 */
883void drm_helper_connector_dpms(struct drm_connector *connector, int mode)
884{
885 struct drm_encoder *encoder = connector->encoder;
886 struct drm_crtc *crtc = encoder ? encoder->crtc : NULL;
3b336ec4 887 int old_dpms, encoder_dpms = DRM_MODE_DPMS_OFF;
c9fb15f6
KP
888
889 if (mode == connector->dpms)
890 return;
891
892 old_dpms = connector->dpms;
893 connector->dpms = mode;
894
3b336ec4
SP
895 if (encoder)
896 encoder_dpms = drm_helper_choose_encoder_dpms(encoder);
897
c9fb15f6
KP
898 /* from off to on, do crtc then encoder */
899 if (mode < old_dpms) {
900 if (crtc) {
901 struct drm_crtc_helper_funcs *crtc_funcs = crtc->helper_private;
902 if (crtc_funcs->dpms)
903 (*crtc_funcs->dpms) (crtc,
904 drm_helper_choose_crtc_dpms(crtc));
905 }
3b336ec4
SP
906 if (encoder)
907 drm_helper_encoder_dpms(encoder, encoder_dpms);
c9fb15f6
KP
908 }
909
910 /* from on to off, do encoder then crtc */
911 if (mode > old_dpms) {
3b336ec4
SP
912 if (encoder)
913 drm_helper_encoder_dpms(encoder, encoder_dpms);
c9fb15f6
KP
914 if (crtc) {
915 struct drm_crtc_helper_funcs *crtc_funcs = crtc->helper_private;
916 if (crtc_funcs->dpms)
917 (*crtc_funcs->dpms) (crtc,
918 drm_helper_choose_crtc_dpms(crtc));
919 }
920 }
921
922 return;
923}
924EXPORT_SYMBOL(drm_helper_connector_dpms);
925
9fd93784
DV
926void drm_helper_mode_fill_fb_struct(struct drm_framebuffer *fb,
927 struct drm_mode_fb_cmd2 *mode_cmd)
f453ba04 928{
01f2c773
VS
929 int i;
930
f453ba04
DA
931 fb->width = mode_cmd->width;
932 fb->height = mode_cmd->height;
01f2c773
VS
933 for (i = 0; i < 4; i++) {
934 fb->pitches[i] = mode_cmd->pitches[i];
935 fb->offsets[i] = mode_cmd->offsets[i];
936 }
248dbc23 937 drm_fb_get_bpp_depth(mode_cmd->pixel_format, &fb->depth,
308e5bcb
JB
938 &fb->bits_per_pixel);
939 fb->pixel_format = mode_cmd->pixel_format;
f453ba04
DA
940}
941EXPORT_SYMBOL(drm_helper_mode_fill_fb_struct);
942
aa4cd910
DV
943/**
944 * drm_helper_resume_force_mode - force-restore mode setting configuration
945 * @dev: drm_device which should be restored
946 *
947 * Drivers which use the mode setting helpers can use this function to
948 * force-restore the mode setting configuration e.g. on resume or when something
949 * else might have trampled over the hw state (like some overzealous old BIOSen
950 * tended to do).
951 */
f453ba04
DA
952int drm_helper_resume_force_mode(struct drm_device *dev)
953{
954 struct drm_crtc *crtc;
89347bb8 955 struct drm_encoder *encoder;
89347bb8 956 struct drm_crtc_helper_funcs *crtc_funcs;
3b336ec4 957 int ret, encoder_dpms;
f453ba04
DA
958
959 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
960
961 if (!crtc->enabled)
962 continue;
963
3c4fdcfb
KH
964 ret = drm_crtc_helper_set_mode(crtc, &crtc->mode,
965 crtc->x, crtc->y, crtc->fb);
f453ba04
DA
966
967 if (ret == false)
968 DRM_ERROR("failed to set mode on crtc %p\n", crtc);
89347bb8
DJ
969
970 /* Turn off outputs that were already powered off */
971 if (drm_helper_choose_crtc_dpms(crtc)) {
972 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
973
974 if(encoder->crtc != crtc)
975 continue;
976
3b336ec4
SP
977 encoder_dpms = drm_helper_choose_encoder_dpms(
978 encoder);
979
980 drm_helper_encoder_dpms(encoder, encoder_dpms);
89347bb8 981 }
817e631e
CW
982
983 crtc_funcs = crtc->helper_private;
984 if (crtc_funcs->dpms)
985 (*crtc_funcs->dpms) (crtc,
986 drm_helper_choose_crtc_dpms(crtc));
89347bb8 987 }
f453ba04 988 }
af4fcb57
ZY
989 /* disable the unused connectors while restoring the modesetting */
990 drm_helper_disable_unused_functions(dev);
f453ba04
DA
991 return 0;
992}
993EXPORT_SYMBOL(drm_helper_resume_force_mode);
eb1f8e4f 994
3d3683f0
DV
995void drm_kms_helper_hotplug_event(struct drm_device *dev)
996{
997 /* send a uevent + call fbdev */
998 drm_sysfs_hotplug_event(dev);
999 if (dev->mode_config.funcs->output_poll_changed)
1000 dev->mode_config.funcs->output_poll_changed(dev);
1001}
1002EXPORT_SYMBOL(drm_kms_helper_hotplug_event);
1003
eb1f8e4f 1004#define DRM_OUTPUT_POLL_PERIOD (10*HZ)
991ea75c 1005static void output_poll_execute(struct work_struct *work)
eb1f8e4f 1006{
991ea75c
TH
1007 struct delayed_work *delayed_work = to_delayed_work(work);
1008 struct drm_device *dev = container_of(delayed_work, struct drm_device, mode_config.output_poll_work);
eb1f8e4f 1009 struct drm_connector *connector;
c5027dec 1010 enum drm_connector_status old_status;
d482e5fa 1011 bool repoll = false, changed = false;
eb1f8e4f 1012
e58f637b
CW
1013 if (!drm_kms_helper_poll)
1014 return;
1015
eb1f8e4f
DA
1016 mutex_lock(&dev->mode_config.mutex);
1017 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
1018
11e68685
DV
1019 /* Ignore forced connectors. */
1020 if (connector->force)
1021 continue;
1022
816da85a
DV
1023 /* Ignore HPD capable connectors and connectors where we don't
1024 * want any hotplug detection at all for polling. */
1025 if (!connector->polled || connector->polled == DRM_CONNECTOR_POLL_HPD)
eb1f8e4f
DA
1026 continue;
1027
a4f968d8 1028 repoll = true;
eb1f8e4f
DA
1029
1030 old_status = connector->status;
1031 /* if we are connected and don't want to poll for disconnect
1032 skip it */
1033 if (old_status == connector_status_connected &&
816da85a 1034 !(connector->polled & DRM_CONNECTOR_POLL_DISCONNECT))
eb1f8e4f
DA
1035 continue;
1036
c5027dec 1037 connector->status = connector->funcs->detect(connector, false);
b2dfcae3
LD
1038 if (old_status != connector->status) {
1039 const char *old, *new;
1040
1041 old = drm_get_connector_status_name(old_status);
1042 new = drm_get_connector_status_name(connector->status);
1043
1044 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] "
1045 "status updated from %s to %s\n",
1046 connector->base.id,
1047 drm_get_connector_name(connector),
1048 old, new);
1049
eb1f8e4f 1050 changed = true;
b2dfcae3 1051 }
eb1f8e4f
DA
1052 }
1053
1054 mutex_unlock(&dev->mode_config.mutex);
1055
3d3683f0
DV
1056 if (changed)
1057 drm_kms_helper_hotplug_event(dev);
eb1f8e4f 1058
9a919c46 1059 if (repoll)
3b07e9ca 1060 schedule_delayed_work(delayed_work, DRM_OUTPUT_POLL_PERIOD);
eb1f8e4f
DA
1061}
1062
fbf81762
DA
1063void drm_kms_helper_poll_disable(struct drm_device *dev)
1064{
1065 if (!dev->mode_config.poll_enabled)
1066 return;
991ea75c 1067 cancel_delayed_work_sync(&dev->mode_config.output_poll_work);
fbf81762
DA
1068}
1069EXPORT_SYMBOL(drm_kms_helper_poll_disable);
1070
1071void drm_kms_helper_poll_enable(struct drm_device *dev)
eb1f8e4f 1072{
eb1f8e4f 1073 bool poll = false;
fbf81762 1074 struct drm_connector *connector;
eb1f8e4f 1075
e58f637b
CW
1076 if (!dev->mode_config.poll_enabled || !drm_kms_helper_poll)
1077 return;
1078
eb1f8e4f 1079 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
a4f968d8
DV
1080 if (connector->polled & (DRM_CONNECTOR_POLL_CONNECT |
1081 DRM_CONNECTOR_POLL_DISCONNECT))
eb1f8e4f
DA
1082 poll = true;
1083 }
eb1f8e4f 1084
9a919c46 1085 if (poll)
3b07e9ca 1086 schedule_delayed_work(&dev->mode_config.output_poll_work, DRM_OUTPUT_POLL_PERIOD);
eb1f8e4f 1087}
fbf81762
DA
1088EXPORT_SYMBOL(drm_kms_helper_poll_enable);
1089
1090void drm_kms_helper_poll_init(struct drm_device *dev)
1091{
991ea75c 1092 INIT_DELAYED_WORK(&dev->mode_config.output_poll_work, output_poll_execute);
fbf81762
DA
1093 dev->mode_config.poll_enabled = true;
1094
1095 drm_kms_helper_poll_enable(dev);
1096}
eb1f8e4f
DA
1097EXPORT_SYMBOL(drm_kms_helper_poll_init);
1098
1099void drm_kms_helper_poll_fini(struct drm_device *dev)
1100{
fbf81762 1101 drm_kms_helper_poll_disable(dev);
eb1f8e4f
DA
1102}
1103EXPORT_SYMBOL(drm_kms_helper_poll_fini);
1104
b8206d39 1105bool drm_helper_hpd_irq_event(struct drm_device *dev)
eb1f8e4f 1106{
816da85a
DV
1107 struct drm_connector *connector;
1108 enum drm_connector_status old_status;
1109 bool changed = false;
1110
eb1f8e4f 1111 if (!dev->mode_config.poll_enabled)
b8206d39 1112 return false;
e58f637b 1113
816da85a
DV
1114 mutex_lock(&dev->mode_config.mutex);
1115 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
1116
1117 /* Only handle HPD capable connectors. */
1118 if (!(connector->polled & DRM_CONNECTOR_POLL_HPD))
1119 continue;
1120
1121 old_status = connector->status;
1122
1123 connector->status = connector->funcs->detect(connector, false);
ed7951dc 1124 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] status updated from %s to %s\n",
816da85a
DV
1125 connector->base.id,
1126 drm_get_connector_name(connector),
ed7951dc
LD
1127 drm_get_connector_status_name(old_status),
1128 drm_get_connector_status_name(connector->status));
816da85a
DV
1129 if (old_status != connector->status)
1130 changed = true;
1131 }
1132
1133 mutex_unlock(&dev->mode_config.mutex);
1134
1135 if (changed)
1136 drm_kms_helper_hotplug_event(dev);
b8206d39
MAL
1137
1138 return changed;
816da85a 1139}
eb1f8e4f 1140EXPORT_SYMBOL(drm_helper_hpd_irq_event);
This page took 0.346124 seconds and 5 git commands to generate.