blob: 738a4294d820e164d7534f830dd4eed7c880aa4d [file] [log] [blame]
Dave Airlief453ba02008-11-07 14:05:41 -08001/*
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
Paul Gortmaker2d1a8a42011-08-30 18:16:33 -040032#include <linux/export.h>
Paul Gortmaker0603ba12011-08-31 11:29:09 -040033#include <linux/moduleparam.h>
Paul Gortmaker2d1a8a42011-08-30 18:16:33 -040034
David Howells760285e2012-10-02 18:01:07 +010035#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>
Dave Airlief453ba02008-11-07 14:05:41 -080041
Daniel Vetter0d4ed4c2012-11-01 14:45:16 +010042/**
43 * drm_helper_move_panel_connectors_to_head() - move panels to the front in the
44 * connector list
45 * @dev: drm device to operate on
46 *
47 * Some userspace presumes that the first connected connector is the main
48 * display, where it's supposed to display e.g. the login screen. For
49 * laptops, this should be the main panel. Use this function to sort all
50 * (eDP/LVDS) panels to the front of the connector list, instead of
51 * painstakingly trying to initialize them in the right order.
52 */
Daniel Vettercfc1a062012-10-27 15:52:04 +020053void drm_helper_move_panel_connectors_to_head(struct drm_device *dev)
54{
55 struct drm_connector *connector, *tmp;
56 struct list_head panel_list;
57
58 INIT_LIST_HEAD(&panel_list);
59
60 list_for_each_entry_safe(connector, tmp,
61 &dev->mode_config.connector_list, head) {
62 if (connector->connector_type == DRM_MODE_CONNECTOR_LVDS ||
63 connector->connector_type == DRM_MODE_CONNECTOR_eDP)
64 list_move_tail(&connector->head, &panel_list);
65 }
66
67 list_splice(&panel_list, &dev->mode_config.connector_list);
68}
69EXPORT_SYMBOL(drm_helper_move_panel_connectors_to_head);
70
Chris Wilsone58f6372010-08-20 09:13:36 +010071static bool drm_kms_helper_poll = true;
72module_param_named(poll, drm_kms_helper_poll, bool, 0600);
73
yakui_zhao67149772009-04-02 11:52:12 +080074static void drm_mode_validate_flag(struct drm_connector *connector,
75 int flags)
76{
Sascha Hauera1178ca2012-02-01 11:38:30 +010077 struct drm_display_mode *mode;
yakui_zhao67149772009-04-02 11:52:12 +080078
79 if (flags == (DRM_MODE_FLAG_DBLSCAN | DRM_MODE_FLAG_INTERLACE))
80 return;
81
Sascha Hauera1178ca2012-02-01 11:38:30 +010082 list_for_each_entry(mode, &connector->modes, head) {
yakui_zhao67149772009-04-02 11:52:12 +080083 if ((mode->flags & DRM_MODE_FLAG_INTERLACE) &&
84 !(flags & DRM_MODE_FLAG_INTERLACE))
85 mode->status = MODE_NO_INTERLACE;
86 if ((mode->flags & DRM_MODE_FLAG_DBLSCAN) &&
87 !(flags & DRM_MODE_FLAG_DBLSCAN))
88 mode->status = MODE_NO_DBLESCAN;
89 }
90
91 return;
92}
93
Dave Airlief453ba02008-11-07 14:05:41 -080094/**
Dave Airlie38651672010-03-30 05:34:13 +000095 * drm_helper_probe_single_connector_modes - get complete set of display modes
Daniel Vetter0d4ed4c2012-11-01 14:45:16 +010096 * @connector: connector to probe
Dave Airlief453ba02008-11-07 14:05:41 -080097 * @maxX: max width for modes
98 * @maxY: max height for modes
99 *
100 * LOCKING:
101 * Caller must hold mode config lock.
102 *
Daniel Vetter0d4ed4c2012-11-01 14:45:16 +0100103 * Based on the helper callbacks implemented by @connector try to detect all
104 * valid modes. Modes will first be added to the connector's probed_modes list,
105 * then culled (based on validity and the @maxX, @maxY parameters) and put into
106 * the normal modes list.
Dave Airlief453ba02008-11-07 14:05:41 -0800107 *
Daniel Vetter0d4ed4c2012-11-01 14:45:16 +0100108 * Intended to be use as a generic implementation of the ->probe() @connector
109 * callback for drivers that use the crtc helpers for output mode filtering and
110 * detection.
Jesse Barnes40a518d2009-01-12 12:05:32 -0800111 *
112 * RETURNS:
113 * Number of modes found on @connector.
Dave Airlief453ba02008-11-07 14:05:41 -0800114 */
Jesse Barnes40a518d2009-01-12 12:05:32 -0800115int drm_helper_probe_single_connector_modes(struct drm_connector *connector,
116 uint32_t maxX, uint32_t maxY)
Dave Airlief453ba02008-11-07 14:05:41 -0800117{
118 struct drm_device *dev = connector->dev;
Sascha Hauera1178ca2012-02-01 11:38:30 +0100119 struct drm_display_mode *mode;
Dave Airlief453ba02008-11-07 14:05:41 -0800120 struct drm_connector_helper_funcs *connector_funcs =
121 connector->helper_private;
Jesse Barnes40a518d2009-01-12 12:05:32 -0800122 int count = 0;
yakui_zhao67149772009-04-02 11:52:12 +0800123 int mode_flags = 0;
Damien Lespiauebbd97a2013-05-08 17:03:32 +0100124 bool verbose_prune = true;
Dave Airlief453ba02008-11-07 14:05:41 -0800125
Jerome Glisse94401062010-07-15 15:43:25 -0400126 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n", connector->base.id,
127 drm_get_connector_name(connector));
Dave Airlief453ba02008-11-07 14:05:41 -0800128 /* set all modes to the unverified state */
Sascha Hauera1178ca2012-02-01 11:38:30 +0100129 list_for_each_entry(mode, &connector->modes, head)
Dave Airlief453ba02008-11-07 14:05:41 -0800130 mode->status = MODE_UNVERIFIED;
131
Dave Airlied50ba252009-09-23 14:44:08 +1000132 if (connector->force) {
133 if (connector->force == DRM_FORCE_ON)
134 connector->status = connector_status_connected;
135 else
136 connector->status = connector_status_disconnected;
137 if (connector->funcs->force)
138 connector->funcs->force(connector);
Chris Wilsone58f6372010-08-20 09:13:36 +0100139 } else {
Chris Wilson930a9e22010-09-14 11:07:23 +0100140 connector->status = connector->funcs->detect(connector, true);
Chris Wilsone58f6372010-08-20 09:13:36 +0100141 }
Dave Airlief453ba02008-11-07 14:05:41 -0800142
Daniel Vetter905bc9f2012-10-23 18:23:36 +0000143 /* Re-enable polling in case the global poll config changed. */
144 if (drm_kms_helper_poll != dev->mode_config.poll_running)
145 drm_kms_helper_poll_enable(dev);
146
147 dev->mode_config.poll_running = drm_kms_helper_poll;
148
Dave Airlief453ba02008-11-07 14:05:41 -0800149 if (connector->status == connector_status_disconnected) {
Jerome Glisse94401062010-07-15 15:43:25 -0400150 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] disconnected\n",
151 connector->base.id, drm_get_connector_name(connector));
Zhao Yakui72539832010-03-04 08:25:55 +0000152 drm_mode_connector_update_edid_property(connector, NULL);
Damien Lespiauebbd97a2013-05-08 17:03:32 +0100153 verbose_prune = false;
Adam Jackson620f3782009-09-08 11:51:46 +1000154 goto prune;
Dave Airlief453ba02008-11-07 14:05:41 -0800155 }
156
Carsten Emdeda0df922012-03-18 22:37:33 +0100157#ifdef CONFIG_DRM_LOAD_EDID_FIRMWARE
158 count = drm_load_edid_firmware(connector);
159 if (count == 0)
160#endif
161 count = (*connector_funcs->get_modes)(connector);
162
Chris Wilsonc7ef35a2010-09-05 16:55:25 +0100163 if (count == 0 && connector->status == connector_status_connected)
Adam Jackson9632b412009-11-23 14:23:07 -0500164 count = drm_add_modes_noedid(connector, 1024, 768);
Chris Wilsonc7ef35a2010-09-05 16:55:25 +0100165 if (count == 0)
166 goto prune;
Dave Airlief453ba02008-11-07 14:05:41 -0800167
Jesse Barnes40a518d2009-01-12 12:05:32 -0800168 drm_mode_connector_list_update(connector);
Dave Airlief453ba02008-11-07 14:05:41 -0800169
170 if (maxX && maxY)
171 drm_mode_validate_size(dev, &connector->modes, maxX,
172 maxY, 0);
yakui_zhao67149772009-04-02 11:52:12 +0800173
174 if (connector->interlace_allowed)
175 mode_flags |= DRM_MODE_FLAG_INTERLACE;
176 if (connector->doublescan_allowed)
177 mode_flags |= DRM_MODE_FLAG_DBLSCAN;
178 drm_mode_validate_flag(connector, mode_flags);
179
Sascha Hauera1178ca2012-02-01 11:38:30 +0100180 list_for_each_entry(mode, &connector->modes, head) {
Dave Airlief453ba02008-11-07 14:05:41 -0800181 if (mode->status == MODE_OK)
182 mode->status = connector_funcs->mode_valid(connector,
183 mode);
184 }
185
Adam Jackson620f3782009-09-08 11:51:46 +1000186prune:
Damien Lespiauebbd97a2013-05-08 17:03:32 +0100187 drm_mode_prune_invalid(dev, &connector->modes, verbose_prune);
Dave Airlief453ba02008-11-07 14:05:41 -0800188
Jesse Barnes40a518d2009-01-12 12:05:32 -0800189 if (list_empty(&connector->modes))
190 return 0;
Dave Airlief453ba02008-11-07 14:05:41 -0800191
Ville Syrjälä9bc3cd52013-05-31 12:17:08 +0000192 list_for_each_entry(mode, &connector->modes, head)
193 mode->vrefresh = drm_mode_vrefresh(mode);
194
Dave Airlief453ba02008-11-07 14:05:41 -0800195 drm_mode_sort(&connector->modes);
196
Jerome Glisse94401062010-07-15 15:43:25 -0400197 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] probed modes :\n", connector->base.id,
198 drm_get_connector_name(connector));
Sascha Hauera1178ca2012-02-01 11:38:30 +0100199 list_for_each_entry(mode, &connector->modes, head) {
Dave Airlief453ba02008-11-07 14:05:41 -0800200 drm_mode_set_crtcinfo(mode, CRTC_INTERLACE_HALVE_V);
201 drm_mode_debug_printmodeline(mode);
202 }
Jesse Barnes40a518d2009-01-12 12:05:32 -0800203
204 return count;
Dave Airlief453ba02008-11-07 14:05:41 -0800205}
206EXPORT_SYMBOL(drm_helper_probe_single_connector_modes);
207
Dave Airlief453ba02008-11-07 14:05:41 -0800208/**
Keith Packardc9fb15f2009-05-30 20:42:28 -0700209 * drm_helper_encoder_in_use - check if a given encoder is in use
210 * @encoder: encoder to check
211 *
212 * LOCKING:
213 * Caller must hold mode config lock.
214 *
215 * Walk @encoders's DRM device's mode_config and see if it's in use.
216 *
217 * RETURNS:
218 * True if @encoder is part of the mode_config, false otherwise.
219 */
220bool drm_helper_encoder_in_use(struct drm_encoder *encoder)
221{
222 struct drm_connector *connector;
223 struct drm_device *dev = encoder->dev;
224 list_for_each_entry(connector, &dev->mode_config.connector_list, head)
225 if (connector->encoder == encoder)
226 return true;
227 return false;
228}
229EXPORT_SYMBOL(drm_helper_encoder_in_use);
230
231/**
Dave Airlief453ba02008-11-07 14:05:41 -0800232 * drm_helper_crtc_in_use - check if a given CRTC is in a mode_config
233 * @crtc: CRTC to check
234 *
235 * LOCKING:
236 * Caller must hold mode config lock.
237 *
238 * Walk @crtc's DRM device's mode_config and see if it's in use.
239 *
240 * RETURNS:
241 * True if @crtc is part of the mode_config, false otherwise.
242 */
243bool drm_helper_crtc_in_use(struct drm_crtc *crtc)
244{
245 struct drm_encoder *encoder;
246 struct drm_device *dev = crtc->dev;
247 /* FIXME: Locking around list access? */
248 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head)
Keith Packardc9fb15f2009-05-30 20:42:28 -0700249 if (encoder->crtc == crtc && drm_helper_encoder_in_use(encoder))
Dave Airlief453ba02008-11-07 14:05:41 -0800250 return true;
251 return false;
252}
253EXPORT_SYMBOL(drm_helper_crtc_in_use);
254
Ben Skeggs86a1b9d2010-07-01 16:49:57 +1000255static void
256drm_encoder_disable(struct drm_encoder *encoder)
257{
258 struct drm_encoder_helper_funcs *encoder_funcs = encoder->helper_private;
259
260 if (encoder_funcs->disable)
261 (*encoder_funcs->disable)(encoder);
262 else
263 (*encoder_funcs->dpms)(encoder, DRM_MODE_DPMS_OFF);
264}
265
Dave Airlief453ba02008-11-07 14:05:41 -0800266/**
David John89347bb2009-12-31 12:00:46 +0530267 * drm_helper_disable_unused_functions - disable unused objects
Dave Airlief453ba02008-11-07 14:05:41 -0800268 * @dev: DRM device
269 *
270 * LOCKING:
271 * Caller must hold mode config lock.
272 *
273 * If an connector or CRTC isn't part of @dev's mode_config, it can be disabled
274 * by calling its dpms function, which should power it off.
275 */
276void drm_helper_disable_unused_functions(struct drm_device *dev)
277{
278 struct drm_encoder *encoder;
Dave Airliea3a05442009-08-31 15:16:30 +1000279 struct drm_connector *connector;
Dave Airlief453ba02008-11-07 14:05:41 -0800280 struct drm_crtc *crtc;
281
Dave Airliea3a05442009-08-31 15:16:30 +1000282 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
283 if (!connector->encoder)
284 continue;
285 if (connector->status == connector_status_disconnected)
286 connector->encoder = NULL;
287 }
288
Dave Airlief453ba02008-11-07 14:05:41 -0800289 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
Dave Airlie929710212010-12-21 12:47:56 +1000290 if (!drm_helper_encoder_in_use(encoder)) {
Ben Skeggs86a1b9d2010-07-01 16:49:57 +1000291 drm_encoder_disable(encoder);
Dave Airlie9c552dd2009-09-02 14:00:11 +1000292 /* disconnector encoder from any connector */
293 encoder->crtc = NULL;
Dave Airliea3a05442009-08-31 15:16:30 +1000294 }
Dave Airlief453ba02008-11-07 14:05:41 -0800295 }
296
297 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
298 struct drm_crtc_helper_funcs *crtc_funcs = crtc->helper_private;
299 crtc->enabled = drm_helper_crtc_in_use(crtc);
300 if (!crtc->enabled) {
Alex Deucher5c8d7172010-06-11 17:04:35 -0400301 if (crtc_funcs->disable)
302 (*crtc_funcs->disable)(crtc);
303 else
304 (*crtc_funcs->dpms)(crtc, DRM_MODE_DPMS_OFF);
Dave Airlief453ba02008-11-07 14:05:41 -0800305 crtc->fb = NULL;
306 }
307 }
308}
309EXPORT_SYMBOL(drm_helper_disable_unused_functions);
310
Jesse Barnes7bec7562009-02-23 16:09:34 -0800311/**
312 * drm_encoder_crtc_ok - can a given crtc drive a given encoder?
313 * @encoder: encoder to test
314 * @crtc: crtc to test
315 *
316 * Return false if @encoder can't be driven by @crtc, true otherwise.
317 */
318static bool drm_encoder_crtc_ok(struct drm_encoder *encoder,
319 struct drm_crtc *crtc)
320{
321 struct drm_device *dev;
322 struct drm_crtc *tmp;
323 int crtc_mask = 1;
324
Joe Perchesfce7d612010-10-30 21:08:30 +0000325 WARN(!crtc, "checking null crtc?\n");
Jesse Barnes7bec7562009-02-23 16:09:34 -0800326
327 dev = crtc->dev;
328
329 list_for_each_entry(tmp, &dev->mode_config.crtc_list, head) {
330 if (tmp == crtc)
331 break;
332 crtc_mask <<= 1;
333 }
334
335 if (encoder->possible_crtcs & crtc_mask)
336 return true;
337 return false;
338}
339
340/*
341 * Check the CRTC we're going to map each output to vs. its current
342 * CRTC. If they don't match, we have to disable the output and the CRTC
343 * since the driver will have to re-route things.
344 */
345static void
346drm_crtc_prepare_encoders(struct drm_device *dev)
347{
348 struct drm_encoder_helper_funcs *encoder_funcs;
349 struct drm_encoder *encoder;
350
351 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
352 encoder_funcs = encoder->helper_private;
353 /* Disable unused encoders */
354 if (encoder->crtc == NULL)
Ben Skeggs86a1b9d2010-07-01 16:49:57 +1000355 drm_encoder_disable(encoder);
Jesse Barnes7bec7562009-02-23 16:09:34 -0800356 /* Disable encoders whose CRTC is about to change */
357 if (encoder_funcs->get_crtc &&
358 encoder->crtc != (*encoder_funcs->get_crtc)(encoder))
Ben Skeggs86a1b9d2010-07-01 16:49:57 +1000359 drm_encoder_disable(encoder);
Jesse Barnes7bec7562009-02-23 16:09:34 -0800360 }
361}
362
Dave Airlief453ba02008-11-07 14:05:41 -0800363/**
Daniel Vetter0d4ed4c2012-11-01 14:45:16 +0100364 * drm_crtc_helper_set_mode - internal helper to set a mode
Dave Airlief453ba02008-11-07 14:05:41 -0800365 * @crtc: CRTC to program
366 * @mode: mode to use
Alex Deucher4c9287c2012-11-09 17:26:32 +0000367 * @x: horizontal offset into the surface
368 * @y: vertical offset into the surface
Daniel Vetter0d4ed4c2012-11-01 14:45:16 +0100369 * @old_fb: old framebuffer, for cleanup
Dave Airlief453ba02008-11-07 14:05:41 -0800370 *
371 * LOCKING:
372 * Caller must hold mode config lock.
373 *
374 * Try to set @mode on @crtc. Give @crtc and its associated connectors a chance
Daniel Vetter0d4ed4c2012-11-01 14:45:16 +0100375 * to fixup or reject the mode prior to trying to set it. This is an internal
376 * helper that drivers could e.g. use to update properties that require the
377 * entire output pipe to be disabled and re-enabled in a new configuration. For
378 * example for changing whether audio is enabled on a hdmi link or for changing
379 * panel fitter or dither attributes. It is also called by the
380 * drm_crtc_helper_set_config() helper function to drive the mode setting
381 * sequence.
Dave Airlief453ba02008-11-07 14:05:41 -0800382 *
383 * RETURNS:
384 * True if the mode was set successfully, or false otherwise.
385 */
386bool drm_crtc_helper_set_mode(struct drm_crtc *crtc,
387 struct drm_display_mode *mode,
Kristian Høgsberg3c4fdcf2008-12-17 22:14:46 -0500388 int x, int y,
389 struct drm_framebuffer *old_fb)
Dave Airlief453ba02008-11-07 14:05:41 -0800390{
391 struct drm_device *dev = crtc->dev;
Mario Kleiner27641c32010-10-23 04:20:23 +0200392 struct drm_display_mode *adjusted_mode, saved_mode, saved_hwmode;
Dave Airlief453ba02008-11-07 14:05:41 -0800393 struct drm_crtc_helper_funcs *crtc_funcs = crtc->helper_private;
394 struct drm_encoder_helper_funcs *encoder_funcs;
395 int saved_x, saved_y;
396 struct drm_encoder *encoder;
397 bool ret = true;
398
Dave Airlief453ba02008-11-07 14:05:41 -0800399 crtc->enabled = drm_helper_crtc_in_use(crtc);
Dave Airlief453ba02008-11-07 14:05:41 -0800400 if (!crtc->enabled)
401 return true;
402
Chris Wilson021a8452011-01-28 11:31:56 +0000403 adjusted_mode = drm_mode_duplicate(dev, mode);
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200404 if (!adjusted_mode)
405 return false;
Chris Wilson021a8452011-01-28 11:31:56 +0000406
Mario Kleiner27641c32010-10-23 04:20:23 +0200407 saved_hwmode = crtc->hwmode;
Dave Airlief453ba02008-11-07 14:05:41 -0800408 saved_mode = crtc->mode;
409 saved_x = crtc->x;
410 saved_y = crtc->y;
411
412 /* Update crtc values up front so the driver can rely on them for mode
413 * setting.
414 */
415 crtc->mode = *mode;
416 crtc->x = x;
417 crtc->y = y;
418
Dave Airlief453ba02008-11-07 14:05:41 -0800419 /* Pass our mode to the connectors and the CRTC to give them a chance to
420 * adjust it according to limitations or connector properties, and also
421 * a chance to reject the mode entirely.
422 */
423 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
424
425 if (encoder->crtc != crtc)
426 continue;
427 encoder_funcs = encoder->helper_private;
428 if (!(ret = encoder_funcs->mode_fixup(encoder, mode,
429 adjusted_mode))) {
Adam Jackson836e53d2011-10-10 16:21:27 -0400430 DRM_DEBUG_KMS("Encoder fixup failed\n");
Dave Airlief453ba02008-11-07 14:05:41 -0800431 goto done;
432 }
433 }
434
435 if (!(ret = crtc_funcs->mode_fixup(crtc, mode, adjusted_mode))) {
Adam Jackson836e53d2011-10-10 16:21:27 -0400436 DRM_DEBUG_KMS("CRTC fixup failed\n");
Dave Airlief453ba02008-11-07 14:05:41 -0800437 goto done;
438 }
Jerome Glisse94401062010-07-15 15:43:25 -0400439 DRM_DEBUG_KMS("[CRTC:%d]\n", crtc->base.id);
Dave Airlief453ba02008-11-07 14:05:41 -0800440
441 /* Prepare the encoders and CRTCs before setting the mode. */
442 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
443
444 if (encoder->crtc != crtc)
445 continue;
446 encoder_funcs = encoder->helper_private;
447 /* Disable the encoders as the first thing we do. */
448 encoder_funcs->prepare(encoder);
449 }
450
Jesse Barnes7bec7562009-02-23 16:09:34 -0800451 drm_crtc_prepare_encoders(dev);
452
Dave Airlief453ba02008-11-07 14:05:41 -0800453 crtc_funcs->prepare(crtc);
454
455 /* Set up the DPLL and any encoders state that needs to adjust or depend
456 * on the DPLL.
457 */
Chris Wilson5c3b82e2009-02-11 13:25:09 +0000458 ret = !crtc_funcs->mode_set(crtc, mode, adjusted_mode, x, y, old_fb);
459 if (!ret)
460 goto done;
Dave Airlief453ba02008-11-07 14:05:41 -0800461
462 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
463
464 if (encoder->crtc != crtc)
465 continue;
466
Jerome Glisse94401062010-07-15 15:43:25 -0400467 DRM_DEBUG_KMS("[ENCODER:%d:%s] set [MODE:%d:%s]\n",
468 encoder->base.id, drm_get_encoder_name(encoder),
469 mode->base.id, mode->name);
Dave Airlief453ba02008-11-07 14:05:41 -0800470 encoder_funcs = encoder->helper_private;
471 encoder_funcs->mode_set(encoder, mode, adjusted_mode);
472 }
473
474 /* Now enable the clocks, plane, pipe, and connectors that we set up. */
475 crtc_funcs->commit(crtc);
476
477 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
478
479 if (encoder->crtc != crtc)
480 continue;
481
482 encoder_funcs = encoder->helper_private;
483 encoder_funcs->commit(encoder);
484
485 }
486
Mario Kleiner27641c32010-10-23 04:20:23 +0200487 /* Store real post-adjustment hardware mode. */
488 crtc->hwmode = *adjusted_mode;
489
490 /* Calculate and store various constants which
491 * are later needed by vblank and swap-completion
492 * timestamping. They are derived from true hwmode.
493 */
494 drm_calc_timestamping_constants(crtc);
495
Dave Airlief453ba02008-11-07 14:05:41 -0800496 /* FIXME: add subpixel order */
497done:
Chris Wilson021a8452011-01-28 11:31:56 +0000498 drm_mode_destroy(dev, adjusted_mode);
Dave Airlief453ba02008-11-07 14:05:41 -0800499 if (!ret) {
Mario Kleiner27641c32010-10-23 04:20:23 +0200500 crtc->hwmode = saved_hwmode;
Dave Airlief453ba02008-11-07 14:05:41 -0800501 crtc->mode = saved_mode;
502 crtc->x = saved_x;
503 crtc->y = saved_y;
504 }
505
506 return ret;
507}
508EXPORT_SYMBOL(drm_crtc_helper_set_mode);
509
510
Chris Wilson6eebd6b2011-11-28 21:10:05 +0000511static int
512drm_crtc_helper_disable(struct drm_crtc *crtc)
513{
514 struct drm_device *dev = crtc->dev;
515 struct drm_connector *connector;
516 struct drm_encoder *encoder;
517
518 /* Decouple all encoders and their attached connectors from this crtc */
519 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
520 if (encoder->crtc != crtc)
521 continue;
522
523 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
524 if (connector->encoder != encoder)
525 continue;
526
527 connector->encoder = NULL;
528 }
529 }
530
531 drm_helper_disable_unused_functions(dev);
532 return 0;
533}
534
Dave Airlief453ba02008-11-07 14:05:41 -0800535/**
536 * drm_crtc_helper_set_config - set a new config from userspace
Daniel Vetter0d4ed4c2012-11-01 14:45:16 +0100537 * @set: mode set configuration
Dave Airlief453ba02008-11-07 14:05:41 -0800538 *
539 * LOCKING:
540 * Caller must hold mode config lock.
541 *
Daniel Vetter0d4ed4c2012-11-01 14:45:16 +0100542 * Setup a new configuration, provided by the upper layers (either an ioctl call
543 * from userspace or internally e.g. from the fbdev suppport code) in @set, and
544 * enable it. This is the main helper functions for drivers that implement
545 * kernel mode setting with the crtc helper functions and the assorted
546 * ->prepare(), ->modeset() and ->commit() helper callbacks.
Dave Airlief453ba02008-11-07 14:05:41 -0800547 *
548 * RETURNS:
Daniel Vetter0d4ed4c2012-11-01 14:45:16 +0100549 * Returns 0 on success, -ERRNO on failure.
Dave Airlief453ba02008-11-07 14:05:41 -0800550 */
551int drm_crtc_helper_set_config(struct drm_mode_set *set)
552{
553 struct drm_device *dev;
Maarten Maathuise67aae72009-08-27 10:18:29 +0200554 struct drm_crtc *save_crtcs, *new_crtc, *crtc;
555 struct drm_encoder *save_encoders, *new_encoder, *encoder;
Jesse Barnes7bec7562009-02-23 16:09:34 -0800556 struct drm_framebuffer *old_fb = NULL;
Jakob Bornecrantz4cb72b12009-08-03 13:43:59 +0100557 bool mode_changed = false; /* if true do a full mode set */
558 bool fb_changed = false; /* if true and !mode_changed just do a flip */
Maarten Maathuise67aae72009-08-27 10:18:29 +0200559 struct drm_connector *save_connectors, *connector;
Dave Airlief453ba02008-11-07 14:05:41 -0800560 int count = 0, ro, fail = 0;
561 struct drm_crtc_helper_funcs *crtc_funcs;
Jesse Barnesc5006cfe2011-11-07 10:39:57 -0800562 struct drm_mode_set save_set;
Laurent Pinchart4a1b0712012-05-17 13:27:21 +0200563 int ret;
Keith Packardbf9dc102010-11-26 10:45:58 -0800564 int i;
Dave Airlief453ba02008-11-07 14:05:41 -0800565
Zhao Yakui58367ed2009-07-20 13:48:07 +0800566 DRM_DEBUG_KMS("\n");
Dave Airlief453ba02008-11-07 14:05:41 -0800567
Daniel Vettere58de882013-06-15 00:13:11 +0200568 BUG_ON(!set);
569 BUG_ON(!set->crtc);
570 BUG_ON(!set->crtc->helper_private);
Dave Airlief453ba02008-11-07 14:05:41 -0800571
Daniel Vettere58de882013-06-15 00:13:11 +0200572 /* Enforce sane interface api - has been abused by the fb helper. */
573 BUG_ON(!set->mode && set->fb);
574 BUG_ON(set->fb && set->num_connectors == 0);
Dave Airlief453ba02008-11-07 14:05:41 -0800575
576 crtc_funcs = set->crtc->helper_private;
577
Chris Wilsonede3ff52011-01-31 11:16:33 +0000578 if (!set->mode)
579 set->fb = NULL;
580
Jerome Glisse94401062010-07-15 15:43:25 -0400581 if (set->fb) {
582 DRM_DEBUG_KMS("[CRTC:%d] [FB:%d] #connectors=%d (x y) (%i %i)\n",
583 set->crtc->base.id, set->fb->base.id,
584 (int)set->num_connectors, set->x, set->y);
585 } else {
Chris Wilsonede3ff52011-01-31 11:16:33 +0000586 DRM_DEBUG_KMS("[CRTC:%d] [NOFB]\n", set->crtc->base.id);
Chris Wilson6eebd6b2011-11-28 21:10:05 +0000587 return drm_crtc_helper_disable(set->crtc);
Jerome Glisse94401062010-07-15 15:43:25 -0400588 }
Dave Airlief453ba02008-11-07 14:05:41 -0800589
590 dev = set->crtc->dev;
591
Maarten Maathuise67aae72009-08-27 10:18:29 +0200592 /* Allocate space for the backup of all (non-pointer) crtc, encoder and
593 * connector data. */
594 save_crtcs = kzalloc(dev->mode_config.num_crtc *
595 sizeof(struct drm_crtc), GFP_KERNEL);
Dave Airlief453ba02008-11-07 14:05:41 -0800596 if (!save_crtcs)
597 return -ENOMEM;
598
Maarten Maathuise67aae72009-08-27 10:18:29 +0200599 save_encoders = kzalloc(dev->mode_config.num_encoder *
600 sizeof(struct drm_encoder), GFP_KERNEL);
Dave Airlief453ba02008-11-07 14:05:41 -0800601 if (!save_encoders) {
602 kfree(save_crtcs);
603 return -ENOMEM;
604 }
605
Maarten Maathuise67aae72009-08-27 10:18:29 +0200606 save_connectors = kzalloc(dev->mode_config.num_connector *
607 sizeof(struct drm_connector), GFP_KERNEL);
608 if (!save_connectors) {
609 kfree(save_crtcs);
610 kfree(save_encoders);
611 return -ENOMEM;
612 }
613
614 /* Copy data. Note that driver private data is not affected.
615 * Should anything bad happen only the expected state is
616 * restored, not the drivers personal bookkeeping.
617 */
618 count = 0;
619 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
620 save_crtcs[count++] = *crtc;
621 }
622
623 count = 0;
624 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
625 save_encoders[count++] = *encoder;
626 }
627
628 count = 0;
629 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
630 save_connectors[count++] = *connector;
631 }
632
Jesse Barnesc5006cfe2011-11-07 10:39:57 -0800633 save_set.crtc = set->crtc;
634 save_set.mode = &set->crtc->mode;
635 save_set.x = set->crtc->x;
636 save_set.y = set->crtc->y;
637 save_set.fb = set->crtc->fb;
638
Dave Airlief453ba02008-11-07 14:05:41 -0800639 /* We should be able to check here if the fb has the same properties
640 * and then just flip_or_move it */
641 if (set->crtc->fb != set->fb) {
Jesse Barnes712531b2009-01-09 13:56:14 -0800642 /* If we have no fb then treat it as a full mode set */
Jesse Barnes7bec7562009-02-23 16:09:34 -0800643 if (set->crtc->fb == NULL) {
Zhao Yakui58367ed2009-07-20 13:48:07 +0800644 DRM_DEBUG_KMS("crtc has no fb, full mode set\n");
Jesse Barnes712531b2009-01-09 13:56:14 -0800645 mode_changed = true;
Jakob Bornecrantz4cb72b12009-08-03 13:43:59 +0100646 } else if (set->fb == NULL) {
647 mode_changed = true;
Laurent Pinchartce83adf2013-04-22 01:38:47 +0200648 } else if (set->fb->pixel_format !=
649 set->crtc->fb->pixel_format) {
650 mode_changed = true;
Dave Airlie8dff4742010-02-11 14:28:58 +1000651 } else
Jesse Barnes712531b2009-01-09 13:56:14 -0800652 fb_changed = true;
Dave Airlief453ba02008-11-07 14:05:41 -0800653 }
654
655 if (set->x != set->crtc->x || set->y != set->crtc->y)
Jesse Barnes712531b2009-01-09 13:56:14 -0800656 fb_changed = true;
Dave Airlief453ba02008-11-07 14:05:41 -0800657
658 if (set->mode && !drm_mode_equal(set->mode, &set->crtc->mode)) {
Zhao Yakui58367ed2009-07-20 13:48:07 +0800659 DRM_DEBUG_KMS("modes are different, full mode set\n");
Dave Airlief453ba02008-11-07 14:05:41 -0800660 drm_mode_debug_printmodeline(&set->crtc->mode);
661 drm_mode_debug_printmodeline(set->mode);
Jesse Barnes712531b2009-01-09 13:56:14 -0800662 mode_changed = true;
Dave Airlief453ba02008-11-07 14:05:41 -0800663 }
664
665 /* a) traverse passed in connector list and get encoders for them */
666 count = 0;
667 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
668 struct drm_connector_helper_funcs *connector_funcs =
669 connector->helper_private;
Dave Airlief453ba02008-11-07 14:05:41 -0800670 new_encoder = connector->encoder;
671 for (ro = 0; ro < set->num_connectors; ro++) {
672 if (set->connectors[ro] == connector) {
673 new_encoder = connector_funcs->best_encoder(connector);
674 /* if we can't get an encoder for a connector
675 we are setting now - then fail */
676 if (new_encoder == NULL)
677 /* don't break so fail path works correct */
678 fail = 1;
679 break;
680 }
681 }
682
683 if (new_encoder != connector->encoder) {
Zhao Yakui58367ed2009-07-20 13:48:07 +0800684 DRM_DEBUG_KMS("encoder changed, full mode switch\n");
Jesse Barnes712531b2009-01-09 13:56:14 -0800685 mode_changed = true;
Maarten Maathuisff846ab2009-08-19 00:56:45 +0200686 /* If the encoder is reused for another connector, then
687 * the appropriate crtc will be set later.
688 */
Maarten Maathuisff6fdbe2009-09-01 03:39:04 +0200689 if (connector->encoder)
690 connector->encoder->crtc = NULL;
Dave Airlief453ba02008-11-07 14:05:41 -0800691 connector->encoder = new_encoder;
692 }
693 }
694
695 if (fail) {
696 ret = -EINVAL;
Maarten Maathuise67aae72009-08-27 10:18:29 +0200697 goto fail;
Dave Airlief453ba02008-11-07 14:05:41 -0800698 }
699
700 count = 0;
701 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
702 if (!connector->encoder)
703 continue;
704
Dave Airlief453ba02008-11-07 14:05:41 -0800705 if (connector->encoder->crtc == set->crtc)
706 new_crtc = NULL;
707 else
708 new_crtc = connector->encoder->crtc;
709
710 for (ro = 0; ro < set->num_connectors; ro++) {
711 if (set->connectors[ro] == connector)
712 new_crtc = set->crtc;
713 }
Jesse Barnes7bec7562009-02-23 16:09:34 -0800714
715 /* Make sure the new CRTC will work with the encoder */
716 if (new_crtc &&
717 !drm_encoder_crtc_ok(connector->encoder, new_crtc)) {
718 ret = -EINVAL;
Maarten Maathuise67aae72009-08-27 10:18:29 +0200719 goto fail;
Jesse Barnes7bec7562009-02-23 16:09:34 -0800720 }
Dave Airlief453ba02008-11-07 14:05:41 -0800721 if (new_crtc != connector->encoder->crtc) {
Zhao Yakui58367ed2009-07-20 13:48:07 +0800722 DRM_DEBUG_KMS("crtc changed, full mode switch\n");
Jesse Barnes712531b2009-01-09 13:56:14 -0800723 mode_changed = true;
Dave Airlief453ba02008-11-07 14:05:41 -0800724 connector->encoder->crtc = new_crtc;
725 }
Jerome Glisse94401062010-07-15 15:43:25 -0400726 if (new_crtc) {
727 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] to [CRTC:%d]\n",
728 connector->base.id, drm_get_connector_name(connector),
729 new_crtc->base.id);
730 } else {
731 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] to [NOCRTC]\n",
732 connector->base.id, drm_get_connector_name(connector));
733 }
Dave Airlief453ba02008-11-07 14:05:41 -0800734 }
735
736 /* mode_set_base is not a required function */
Jesse Barnes712531b2009-01-09 13:56:14 -0800737 if (fb_changed && !crtc_funcs->mode_set_base)
738 mode_changed = true;
Dave Airlief453ba02008-11-07 14:05:41 -0800739
Jesse Barnes712531b2009-01-09 13:56:14 -0800740 if (mode_changed) {
Chris Wilson9334ef72011-01-28 11:53:03 +0000741 set->crtc->enabled = drm_helper_crtc_in_use(set->crtc);
742 if (set->crtc->enabled) {
Zhao Yakui58367ed2009-07-20 13:48:07 +0800743 DRM_DEBUG_KMS("attempting to set mode from"
744 " userspace\n");
Dave Airlief453ba02008-11-07 14:05:41 -0800745 drm_mode_debug_printmodeline(set->mode);
Chris Wilson356ad3c2010-09-09 09:41:32 +0100746 old_fb = set->crtc->fb;
747 set->crtc->fb = set->fb;
Dave Airlief453ba02008-11-07 14:05:41 -0800748 if (!drm_crtc_helper_set_mode(set->crtc, set->mode,
Kristian Høgsberg3c4fdcf2008-12-17 22:14:46 -0500749 set->x, set->y,
750 old_fb)) {
Jerome Glisse94401062010-07-15 15:43:25 -0400751 DRM_ERROR("failed to set mode on [CRTC:%d]\n",
752 set->crtc->base.id);
Chris Wilson0ba41e42011-01-08 15:10:41 +0000753 set->crtc->fb = old_fb;
Dave Airlief453ba02008-11-07 14:05:41 -0800754 ret = -EINVAL;
Maarten Maathuise67aae72009-08-27 10:18:29 +0200755 goto fail;
Dave Airlief453ba02008-11-07 14:05:41 -0800756 }
Dave Airlief453ba02008-11-07 14:05:41 -0800757 }
758 drm_helper_disable_unused_functions(dev);
Jesse Barnes712531b2009-01-09 13:56:14 -0800759 } else if (fb_changed) {
Ben Skeggs9b1596a2009-09-18 10:43:52 +1000760 set->crtc->x = set->x;
761 set->crtc->y = set->y;
762
Kristian Høgsberg3c4fdcf2008-12-17 22:14:46 -0500763 old_fb = set->crtc->fb;
Dave Airlief453ba02008-11-07 14:05:41 -0800764 if (set->crtc->fb != set->fb)
765 set->crtc->fb = set->fb;
Chris Wilson5c3b82e2009-02-11 13:25:09 +0000766 ret = crtc_funcs->mode_set_base(set->crtc,
767 set->x, set->y, old_fb);
Chris Wilson0ba41e42011-01-08 15:10:41 +0000768 if (ret != 0) {
769 set->crtc->fb = old_fb;
Maarten Maathuise67aae72009-08-27 10:18:29 +0200770 goto fail;
Chris Wilson0ba41e42011-01-08 15:10:41 +0000771 }
Dave Airlief453ba02008-11-07 14:05:41 -0800772 }
773
Daniel Vetter372835a2013-06-15 00:13:13 +0200774 /*
775 * crtc set_config helpers implicit set the crtc and all connected
776 * encoders to DPMS on for a full mode set. But for just an fb update it
777 * doesn't do that. To not confuse userspace, do an explicit DPMS_ON
778 * unconditionally. This will also ensure driver internal dpms state is
779 * consistent again.
780 */
781 if (set->crtc->enabled) {
782 DRM_DEBUG_KMS("Setting connector DPMS state to on\n");
783 for (i = 0; i < set->num_connectors; i++) {
784 DRM_DEBUG_KMS("\t[CONNECTOR:%d:%s] set DPMS on\n", set->connectors[i]->base.id,
785 drm_get_connector_name(set->connectors[i]));
786 set->connectors[i]->funcs->dpms(set->connectors[i], DRM_MODE_DPMS_ON);
787 }
788 }
789
Maarten Maathuise67aae72009-08-27 10:18:29 +0200790 kfree(save_connectors);
Dave Airlief453ba02008-11-07 14:05:41 -0800791 kfree(save_encoders);
792 kfree(save_crtcs);
793 return 0;
794
Maarten Maathuise67aae72009-08-27 10:18:29 +0200795fail:
796 /* Restore all previous data. */
Dave Airlief453ba02008-11-07 14:05:41 -0800797 count = 0;
Maarten Maathuise67aae72009-08-27 10:18:29 +0200798 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
799 *crtc = save_crtcs[count++];
800 }
Chris Wilsone62fb642009-02-11 16:39:21 +0000801
Maarten Maathuise67aae72009-08-27 10:18:29 +0200802 count = 0;
803 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
804 *encoder = save_encoders[count++];
Chris Wilsone62fb642009-02-11 16:39:21 +0000805 }
Maarten Maathuise67aae72009-08-27 10:18:29 +0200806
Dave Airlief453ba02008-11-07 14:05:41 -0800807 count = 0;
808 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
Maarten Maathuise67aae72009-08-27 10:18:29 +0200809 *connector = save_connectors[count++];
Dave Airlief453ba02008-11-07 14:05:41 -0800810 }
Maarten Maathuise67aae72009-08-27 10:18:29 +0200811
Jesse Barnesc5006cfe2011-11-07 10:39:57 -0800812 /* Try to restore the config */
813 if (mode_changed &&
814 !drm_crtc_helper_set_mode(save_set.crtc, save_set.mode, save_set.x,
815 save_set.y, save_set.fb))
816 DRM_ERROR("failed to restore config after modeset failure\n");
817
Maarten Maathuise67aae72009-08-27 10:18:29 +0200818 kfree(save_connectors);
Dave Airlief453ba02008-11-07 14:05:41 -0800819 kfree(save_encoders);
Maarten Maathuise67aae72009-08-27 10:18:29 +0200820 kfree(save_crtcs);
Dave Airlief453ba02008-11-07 14:05:41 -0800821 return ret;
822}
823EXPORT_SYMBOL(drm_crtc_helper_set_config);
824
Keith Packardc9fb15f2009-05-30 20:42:28 -0700825static int drm_helper_choose_encoder_dpms(struct drm_encoder *encoder)
826{
827 int dpms = DRM_MODE_DPMS_OFF;
828 struct drm_connector *connector;
829 struct drm_device *dev = encoder->dev;
830
831 list_for_each_entry(connector, &dev->mode_config.connector_list, head)
832 if (connector->encoder == encoder)
833 if (connector->dpms < dpms)
834 dpms = connector->dpms;
835 return dpms;
836}
837
838static int drm_helper_choose_crtc_dpms(struct drm_crtc *crtc)
839{
840 int dpms = DRM_MODE_DPMS_OFF;
841 struct drm_connector *connector;
842 struct drm_device *dev = crtc->dev;
843
844 list_for_each_entry(connector, &dev->mode_config.connector_list, head)
845 if (connector->encoder && connector->encoder->crtc == crtc)
846 if (connector->dpms < dpms)
847 dpms = connector->dpms;
848 return dpms;
849}
850
851/**
Daniel Vetter0d4ed4c2012-11-01 14:45:16 +0100852 * drm_helper_connector_dpms() - connector dpms helper implementation
853 * @connector: affected connector
854 * @mode: DPMS mode
Keith Packardc9fb15f2009-05-30 20:42:28 -0700855 *
Daniel Vetter0d4ed4c2012-11-01 14:45:16 +0100856 * This is the main helper function provided by the crtc helper framework for
857 * implementing the DPMS connector attribute. It computes the new desired DPMS
858 * state for all encoders and crtcs in the output mesh and calls the ->dpms()
859 * callback provided by the driver appropriately.
Keith Packardc9fb15f2009-05-30 20:42:28 -0700860 */
861void drm_helper_connector_dpms(struct drm_connector *connector, int mode)
862{
863 struct drm_encoder *encoder = connector->encoder;
864 struct drm_crtc *crtc = encoder ? encoder->crtc : NULL;
865 int old_dpms;
866
867 if (mode == connector->dpms)
868 return;
869
870 old_dpms = connector->dpms;
871 connector->dpms = mode;
872
873 /* from off to on, do crtc then encoder */
874 if (mode < old_dpms) {
875 if (crtc) {
876 struct drm_crtc_helper_funcs *crtc_funcs = crtc->helper_private;
877 if (crtc_funcs->dpms)
878 (*crtc_funcs->dpms) (crtc,
879 drm_helper_choose_crtc_dpms(crtc));
880 }
881 if (encoder) {
882 struct drm_encoder_helper_funcs *encoder_funcs = encoder->helper_private;
883 if (encoder_funcs->dpms)
884 (*encoder_funcs->dpms) (encoder,
885 drm_helper_choose_encoder_dpms(encoder));
886 }
887 }
888
889 /* from on to off, do encoder then crtc */
890 if (mode > old_dpms) {
891 if (encoder) {
892 struct drm_encoder_helper_funcs *encoder_funcs = encoder->helper_private;
893 if (encoder_funcs->dpms)
894 (*encoder_funcs->dpms) (encoder,
895 drm_helper_choose_encoder_dpms(encoder));
896 }
897 if (crtc) {
898 struct drm_crtc_helper_funcs *crtc_funcs = crtc->helper_private;
899 if (crtc_funcs->dpms)
900 (*crtc_funcs->dpms) (crtc,
901 drm_helper_choose_crtc_dpms(crtc));
902 }
903 }
904
905 return;
906}
907EXPORT_SYMBOL(drm_helper_connector_dpms);
908
Dave Airlief453ba02008-11-07 14:05:41 -0800909int drm_helper_mode_fill_fb_struct(struct drm_framebuffer *fb,
Jesse Barnes308e5bc2011-11-14 14:51:28 -0800910 struct drm_mode_fb_cmd2 *mode_cmd)
Dave Airlief453ba02008-11-07 14:05:41 -0800911{
Ville Syrjälä01f2c772011-12-20 00:06:49 +0200912 int i;
913
Dave Airlief453ba02008-11-07 14:05:41 -0800914 fb->width = mode_cmd->width;
915 fb->height = mode_cmd->height;
Ville Syrjälä01f2c772011-12-20 00:06:49 +0200916 for (i = 0; i < 4; i++) {
917 fb->pitches[i] = mode_cmd->pitches[i];
918 fb->offsets[i] = mode_cmd->offsets[i];
919 }
Dave Airlie248dbc22011-11-29 20:02:54 +0000920 drm_fb_get_bpp_depth(mode_cmd->pixel_format, &fb->depth,
Jesse Barnes308e5bc2011-11-14 14:51:28 -0800921 &fb->bits_per_pixel);
922 fb->pixel_format = mode_cmd->pixel_format;
Dave Airlief453ba02008-11-07 14:05:41 -0800923
924 return 0;
925}
926EXPORT_SYMBOL(drm_helper_mode_fill_fb_struct);
927
928int drm_helper_resume_force_mode(struct drm_device *dev)
929{
930 struct drm_crtc *crtc;
David John89347bb2009-12-31 12:00:46 +0530931 struct drm_encoder *encoder;
932 struct drm_encoder_helper_funcs *encoder_funcs;
933 struct drm_crtc_helper_funcs *crtc_funcs;
Dave Airlief453ba02008-11-07 14:05:41 -0800934 int ret;
935
936 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
937
938 if (!crtc->enabled)
939 continue;
940
Kristian Høgsberg3c4fdcf2008-12-17 22:14:46 -0500941 ret = drm_crtc_helper_set_mode(crtc, &crtc->mode,
942 crtc->x, crtc->y, crtc->fb);
Dave Airlief453ba02008-11-07 14:05:41 -0800943
944 if (ret == false)
945 DRM_ERROR("failed to set mode on crtc %p\n", crtc);
David John89347bb2009-12-31 12:00:46 +0530946
947 /* Turn off outputs that were already powered off */
948 if (drm_helper_choose_crtc_dpms(crtc)) {
949 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
950
951 if(encoder->crtc != crtc)
952 continue;
953
954 encoder_funcs = encoder->helper_private;
955 if (encoder_funcs->dpms)
956 (*encoder_funcs->dpms) (encoder,
957 drm_helper_choose_encoder_dpms(encoder));
David John89347bb2009-12-31 12:00:46 +0530958 }
Chris Wilson817e6312010-08-06 15:03:31 +0100959
960 crtc_funcs = crtc->helper_private;
961 if (crtc_funcs->dpms)
962 (*crtc_funcs->dpms) (crtc,
963 drm_helper_choose_crtc_dpms(crtc));
David John89347bb2009-12-31 12:00:46 +0530964 }
Dave Airlief453ba02008-11-07 14:05:41 -0800965 }
Zhao Yakuiaf4fcb52009-07-08 14:13:13 +0800966 /* disable the unused connectors while restoring the modesetting */
967 drm_helper_disable_unused_functions(dev);
Dave Airlief453ba02008-11-07 14:05:41 -0800968 return 0;
969}
970EXPORT_SYMBOL(drm_helper_resume_force_mode);
Dave Airlieeb1f8e42010-05-07 06:42:51 +0000971
Daniel Vetter3d3683f2012-10-23 18:23:32 +0000972void drm_kms_helper_hotplug_event(struct drm_device *dev)
973{
974 /* send a uevent + call fbdev */
975 drm_sysfs_hotplug_event(dev);
976 if (dev->mode_config.funcs->output_poll_changed)
977 dev->mode_config.funcs->output_poll_changed(dev);
978}
979EXPORT_SYMBOL(drm_kms_helper_hotplug_event);
980
Dave Airlieeb1f8e42010-05-07 06:42:51 +0000981#define DRM_OUTPUT_POLL_PERIOD (10*HZ)
Tejun Heo991ea752010-07-20 22:09:02 +0200982static void output_poll_execute(struct work_struct *work)
Dave Airlieeb1f8e42010-05-07 06:42:51 +0000983{
Tejun Heo991ea752010-07-20 22:09:02 +0200984 struct delayed_work *delayed_work = to_delayed_work(work);
985 struct drm_device *dev = container_of(delayed_work, struct drm_device, mode_config.output_poll_work);
Dave Airlieeb1f8e42010-05-07 06:42:51 +0000986 struct drm_connector *connector;
Keith Packardc5027de2010-11-26 10:45:59 -0800987 enum drm_connector_status old_status;
Dave Airlied482e5f2013-06-28 20:31:34 +1000988 bool repoll = false, changed = false;
Dave Airlieeb1f8e42010-05-07 06:42:51 +0000989
Chris Wilsone58f6372010-08-20 09:13:36 +0100990 if (!drm_kms_helper_poll)
991 return;
992
Dave Airlieeb1f8e42010-05-07 06:42:51 +0000993 mutex_lock(&dev->mode_config.mutex);
994 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
995
Daniel Vetter11e68682012-10-23 18:23:38 +0000996 /* Ignore forced connectors. */
997 if (connector->force)
998 continue;
999
Daniel Vetter816da852012-10-23 18:23:33 +00001000 /* Ignore HPD capable connectors and connectors where we don't
1001 * want any hotplug detection at all for polling. */
1002 if (!connector->polled || connector->polled == DRM_CONNECTOR_POLL_HPD)
Dave Airlieeb1f8e42010-05-07 06:42:51 +00001003 continue;
1004
Daniel Vettera4f968d2012-10-24 13:35:50 +00001005 repoll = true;
Dave Airlieeb1f8e42010-05-07 06:42:51 +00001006
1007 old_status = connector->status;
1008 /* if we are connected and don't want to poll for disconnect
1009 skip it */
1010 if (old_status == connector_status_connected &&
Daniel Vetter816da852012-10-23 18:23:33 +00001011 !(connector->polled & DRM_CONNECTOR_POLL_DISCONNECT))
Dave Airlieeb1f8e42010-05-07 06:42:51 +00001012 continue;
1013
Keith Packardc5027de2010-11-26 10:45:59 -08001014 connector->status = connector->funcs->detect(connector, false);
Lespiau, Damienb2dfcae2013-05-10 12:36:44 +00001015 if (old_status != connector->status) {
1016 const char *old, *new;
1017
1018 old = drm_get_connector_status_name(old_status);
1019 new = drm_get_connector_status_name(connector->status);
1020
1021 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] "
1022 "status updated from %s to %s\n",
1023 connector->base.id,
1024 drm_get_connector_name(connector),
1025 old, new);
1026
Dave Airlieeb1f8e42010-05-07 06:42:51 +00001027 changed = true;
Lespiau, Damienb2dfcae2013-05-10 12:36:44 +00001028 }
Dave Airlieeb1f8e42010-05-07 06:42:51 +00001029 }
1030
1031 mutex_unlock(&dev->mode_config.mutex);
1032
Daniel Vetter3d3683f2012-10-23 18:23:32 +00001033 if (changed)
1034 drm_kms_helper_hotplug_event(dev);
Dave Airlieeb1f8e42010-05-07 06:42:51 +00001035
Tejun Heo9a919c42010-08-09 12:01:27 +02001036 if (repoll)
Tejun Heo3b07e9c2012-08-20 14:51:24 -07001037 schedule_delayed_work(delayed_work, DRM_OUTPUT_POLL_PERIOD);
Dave Airlieeb1f8e42010-05-07 06:42:51 +00001038}
1039
Dave Airliefbf81762010-06-01 09:09:06 +10001040void drm_kms_helper_poll_disable(struct drm_device *dev)
Dave Airlieeb1f8e42010-05-07 06:42:51 +00001041{
Dave Airliefbf81762010-06-01 09:09:06 +10001042 if (!dev->mode_config.poll_enabled)
1043 return;
Tejun Heo991ea752010-07-20 22:09:02 +02001044 cancel_delayed_work_sync(&dev->mode_config.output_poll_work);
Dave Airliefbf81762010-06-01 09:09:06 +10001045}
1046EXPORT_SYMBOL(drm_kms_helper_poll_disable);
1047
1048void drm_kms_helper_poll_enable(struct drm_device *dev)
1049{
Dave Airlieeb1f8e42010-05-07 06:42:51 +00001050 bool poll = false;
Dave Airliefbf81762010-06-01 09:09:06 +10001051 struct drm_connector *connector;
Dave Airlieeb1f8e42010-05-07 06:42:51 +00001052
Chris Wilsone58f6372010-08-20 09:13:36 +01001053 if (!dev->mode_config.poll_enabled || !drm_kms_helper_poll)
1054 return;
1055
Dave Airlieeb1f8e42010-05-07 06:42:51 +00001056 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
Daniel Vettera4f968d2012-10-24 13:35:50 +00001057 if (connector->polled & (DRM_CONNECTOR_POLL_CONNECT |
1058 DRM_CONNECTOR_POLL_DISCONNECT))
Dave Airlieeb1f8e42010-05-07 06:42:51 +00001059 poll = true;
1060 }
Dave Airlieeb1f8e42010-05-07 06:42:51 +00001061
Tejun Heo9a919c42010-08-09 12:01:27 +02001062 if (poll)
Tejun Heo3b07e9c2012-08-20 14:51:24 -07001063 schedule_delayed_work(&dev->mode_config.output_poll_work, DRM_OUTPUT_POLL_PERIOD);
Dave Airlieeb1f8e42010-05-07 06:42:51 +00001064}
Dave Airliefbf81762010-06-01 09:09:06 +10001065EXPORT_SYMBOL(drm_kms_helper_poll_enable);
1066
1067void drm_kms_helper_poll_init(struct drm_device *dev)
1068{
Tejun Heo991ea752010-07-20 22:09:02 +02001069 INIT_DELAYED_WORK(&dev->mode_config.output_poll_work, output_poll_execute);
Dave Airliefbf81762010-06-01 09:09:06 +10001070 dev->mode_config.poll_enabled = true;
1071
1072 drm_kms_helper_poll_enable(dev);
1073}
Dave Airlieeb1f8e42010-05-07 06:42:51 +00001074EXPORT_SYMBOL(drm_kms_helper_poll_init);
1075
1076void drm_kms_helper_poll_fini(struct drm_device *dev)
1077{
Dave Airliefbf81762010-06-01 09:09:06 +10001078 drm_kms_helper_poll_disable(dev);
Dave Airlieeb1f8e42010-05-07 06:42:51 +00001079}
1080EXPORT_SYMBOL(drm_kms_helper_poll_fini);
1081
Daniel Vetter69787f72012-10-23 18:23:34 +00001082void drm_helper_hpd_irq_event(struct drm_device *dev)
Dave Airlieeb1f8e42010-05-07 06:42:51 +00001083{
Daniel Vetter816da852012-10-23 18:23:33 +00001084 struct drm_connector *connector;
1085 enum drm_connector_status old_status;
1086 bool changed = false;
1087
Dave Airlieeb1f8e42010-05-07 06:42:51 +00001088 if (!dev->mode_config.poll_enabled)
1089 return;
Chris Wilsone58f6372010-08-20 09:13:36 +01001090
Daniel Vetter816da852012-10-23 18:23:33 +00001091 mutex_lock(&dev->mode_config.mutex);
1092 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
1093
1094 /* Only handle HPD capable connectors. */
1095 if (!(connector->polled & DRM_CONNECTOR_POLL_HPD))
1096 continue;
1097
1098 old_status = connector->status;
1099
1100 connector->status = connector->funcs->detect(connector, false);
Lespiau, Damiened7951d2013-05-10 12:36:42 +00001101 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] status updated from %s to %s\n",
Daniel Vetter816da852012-10-23 18:23:33 +00001102 connector->base.id,
1103 drm_get_connector_name(connector),
Lespiau, Damiened7951d2013-05-10 12:36:42 +00001104 drm_get_connector_status_name(old_status),
1105 drm_get_connector_status_name(connector->status));
Daniel Vetter816da852012-10-23 18:23:33 +00001106 if (old_status != connector->status)
1107 changed = true;
1108 }
1109
1110 mutex_unlock(&dev->mode_config.mutex);
1111
1112 if (changed)
1113 drm_kms_helper_hotplug_event(dev);
1114}
Dave Airlieeb1f8e42010-05-07 06:42:51 +00001115EXPORT_SYMBOL(drm_helper_hpd_irq_event);