blob: 7b2d378b257666626dac923f43ac09dfd2583248 [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;
Dave Airlief453ba02008-11-07 14:05:41 -0800124
Jerome Glisse94401062010-07-15 15:43:25 -0400125 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n", connector->base.id,
126 drm_get_connector_name(connector));
Dave Airlief453ba02008-11-07 14:05:41 -0800127 /* set all modes to the unverified state */
Sascha Hauera1178ca2012-02-01 11:38:30 +0100128 list_for_each_entry(mode, &connector->modes, head)
Dave Airlief453ba02008-11-07 14:05:41 -0800129 mode->status = MODE_UNVERIFIED;
130
Dave Airlied50ba252009-09-23 14:44:08 +1000131 if (connector->force) {
132 if (connector->force == DRM_FORCE_ON)
133 connector->status = connector_status_connected;
134 else
135 connector->status = connector_status_disconnected;
136 if (connector->funcs->force)
137 connector->funcs->force(connector);
Chris Wilsone58f6372010-08-20 09:13:36 +0100138 } else {
Chris Wilson930a9e22010-09-14 11:07:23 +0100139 connector->status = connector->funcs->detect(connector, true);
Chris Wilsone58f6372010-08-20 09:13:36 +0100140 }
Dave Airlief453ba02008-11-07 14:05:41 -0800141
Daniel Vetter905bc9f2012-10-23 18:23:36 +0000142 /* Re-enable polling in case the global poll config changed. */
143 if (drm_kms_helper_poll != dev->mode_config.poll_running)
144 drm_kms_helper_poll_enable(dev);
145
146 dev->mode_config.poll_running = drm_kms_helper_poll;
147
Dave Airlief453ba02008-11-07 14:05:41 -0800148 if (connector->status == connector_status_disconnected) {
Jerome Glisse94401062010-07-15 15:43:25 -0400149 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] disconnected\n",
150 connector->base.id, drm_get_connector_name(connector));
Zhao Yakui72539832010-03-04 08:25:55 +0000151 drm_mode_connector_update_edid_property(connector, NULL);
Adam Jackson620f3782009-09-08 11:51:46 +1000152 goto prune;
Dave Airlief453ba02008-11-07 14:05:41 -0800153 }
154
Carsten Emdeda0df922012-03-18 22:37:33 +0100155#ifdef CONFIG_DRM_LOAD_EDID_FIRMWARE
156 count = drm_load_edid_firmware(connector);
157 if (count == 0)
158#endif
159 count = (*connector_funcs->get_modes)(connector);
160
Chris Wilsonc7ef35a2010-09-05 16:55:25 +0100161 if (count == 0 && connector->status == connector_status_connected)
Adam Jackson9632b412009-11-23 14:23:07 -0500162 count = drm_add_modes_noedid(connector, 1024, 768);
Chris Wilsonc7ef35a2010-09-05 16:55:25 +0100163 if (count == 0)
164 goto prune;
Dave Airlief453ba02008-11-07 14:05:41 -0800165
Jesse Barnes40a518d2009-01-12 12:05:32 -0800166 drm_mode_connector_list_update(connector);
Dave Airlief453ba02008-11-07 14:05:41 -0800167
168 if (maxX && maxY)
169 drm_mode_validate_size(dev, &connector->modes, maxX,
170 maxY, 0);
yakui_zhao67149772009-04-02 11:52:12 +0800171
172 if (connector->interlace_allowed)
173 mode_flags |= DRM_MODE_FLAG_INTERLACE;
174 if (connector->doublescan_allowed)
175 mode_flags |= DRM_MODE_FLAG_DBLSCAN;
176 drm_mode_validate_flag(connector, mode_flags);
177
Sascha Hauera1178ca2012-02-01 11:38:30 +0100178 list_for_each_entry(mode, &connector->modes, head) {
Dave Airlief453ba02008-11-07 14:05:41 -0800179 if (mode->status == MODE_OK)
180 mode->status = connector_funcs->mode_valid(connector,
181 mode);
182 }
183
Adam Jackson620f3782009-09-08 11:51:46 +1000184prune:
Dave Airlief453ba02008-11-07 14:05:41 -0800185 drm_mode_prune_invalid(dev, &connector->modes, true);
186
Jesse Barnes40a518d2009-01-12 12:05:32 -0800187 if (list_empty(&connector->modes))
188 return 0;
Dave Airlief453ba02008-11-07 14:05:41 -0800189
190 drm_mode_sort(&connector->modes);
191
Jerome Glisse94401062010-07-15 15:43:25 -0400192 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] probed modes :\n", connector->base.id,
193 drm_get_connector_name(connector));
Sascha Hauera1178ca2012-02-01 11:38:30 +0100194 list_for_each_entry(mode, &connector->modes, head) {
Dave Airlief453ba02008-11-07 14:05:41 -0800195 mode->vrefresh = drm_mode_vrefresh(mode);
196
197 drm_mode_set_crtcinfo(mode, CRTC_INTERLACE_HALVE_V);
198 drm_mode_debug_printmodeline(mode);
199 }
Jesse Barnes40a518d2009-01-12 12:05:32 -0800200
201 return count;
Dave Airlief453ba02008-11-07 14:05:41 -0800202}
203EXPORT_SYMBOL(drm_helper_probe_single_connector_modes);
204
Dave Airlief453ba02008-11-07 14:05:41 -0800205/**
Keith Packardc9fb15f2009-05-30 20:42:28 -0700206 * drm_helper_encoder_in_use - check if a given encoder is in use
207 * @encoder: encoder to check
208 *
209 * LOCKING:
210 * Caller must hold mode config lock.
211 *
212 * Walk @encoders's DRM device's mode_config and see if it's in use.
213 *
214 * RETURNS:
215 * True if @encoder is part of the mode_config, false otherwise.
216 */
217bool drm_helper_encoder_in_use(struct drm_encoder *encoder)
218{
219 struct drm_connector *connector;
220 struct drm_device *dev = encoder->dev;
221 list_for_each_entry(connector, &dev->mode_config.connector_list, head)
222 if (connector->encoder == encoder)
223 return true;
224 return false;
225}
226EXPORT_SYMBOL(drm_helper_encoder_in_use);
227
228/**
Dave Airlief453ba02008-11-07 14:05:41 -0800229 * drm_helper_crtc_in_use - check if a given CRTC is in a mode_config
230 * @crtc: CRTC to check
231 *
232 * LOCKING:
233 * Caller must hold mode config lock.
234 *
235 * Walk @crtc's DRM device's mode_config and see if it's in use.
236 *
237 * RETURNS:
238 * True if @crtc is part of the mode_config, false otherwise.
239 */
240bool drm_helper_crtc_in_use(struct drm_crtc *crtc)
241{
242 struct drm_encoder *encoder;
243 struct drm_device *dev = crtc->dev;
244 /* FIXME: Locking around list access? */
245 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head)
Keith Packardc9fb15f2009-05-30 20:42:28 -0700246 if (encoder->crtc == crtc && drm_helper_encoder_in_use(encoder))
Dave Airlief453ba02008-11-07 14:05:41 -0800247 return true;
248 return false;
249}
250EXPORT_SYMBOL(drm_helper_crtc_in_use);
251
Ben Skeggs86a1b9d2010-07-01 16:49:57 +1000252static void
253drm_encoder_disable(struct drm_encoder *encoder)
254{
255 struct drm_encoder_helper_funcs *encoder_funcs = encoder->helper_private;
256
257 if (encoder_funcs->disable)
258 (*encoder_funcs->disable)(encoder);
259 else
260 (*encoder_funcs->dpms)(encoder, DRM_MODE_DPMS_OFF);
261}
262
Dave Airlief453ba02008-11-07 14:05:41 -0800263/**
David John89347bb2009-12-31 12:00:46 +0530264 * drm_helper_disable_unused_functions - disable unused objects
Dave Airlief453ba02008-11-07 14:05:41 -0800265 * @dev: DRM device
266 *
267 * LOCKING:
268 * Caller must hold mode config lock.
269 *
270 * If an connector or CRTC isn't part of @dev's mode_config, it can be disabled
271 * by calling its dpms function, which should power it off.
272 */
273void drm_helper_disable_unused_functions(struct drm_device *dev)
274{
275 struct drm_encoder *encoder;
Dave Airliea3a05442009-08-31 15:16:30 +1000276 struct drm_connector *connector;
Dave Airlief453ba02008-11-07 14:05:41 -0800277 struct drm_crtc *crtc;
278
Dave Airliea3a05442009-08-31 15:16:30 +1000279 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
280 if (!connector->encoder)
281 continue;
282 if (connector->status == connector_status_disconnected)
283 connector->encoder = NULL;
284 }
285
Dave Airlief453ba02008-11-07 14:05:41 -0800286 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
Dave Airlie929710212010-12-21 12:47:56 +1000287 if (!drm_helper_encoder_in_use(encoder)) {
Ben Skeggs86a1b9d2010-07-01 16:49:57 +1000288 drm_encoder_disable(encoder);
Dave Airlie9c552dd2009-09-02 14:00:11 +1000289 /* disconnector encoder from any connector */
290 encoder->crtc = NULL;
Dave Airliea3a05442009-08-31 15:16:30 +1000291 }
Dave Airlief453ba02008-11-07 14:05:41 -0800292 }
293
294 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
295 struct drm_crtc_helper_funcs *crtc_funcs = crtc->helper_private;
296 crtc->enabled = drm_helper_crtc_in_use(crtc);
297 if (!crtc->enabled) {
Alex Deucher5c8d7172010-06-11 17:04:35 -0400298 if (crtc_funcs->disable)
299 (*crtc_funcs->disable)(crtc);
300 else
301 (*crtc_funcs->dpms)(crtc, DRM_MODE_DPMS_OFF);
Dave Airlief453ba02008-11-07 14:05:41 -0800302 crtc->fb = NULL;
303 }
304 }
305}
306EXPORT_SYMBOL(drm_helper_disable_unused_functions);
307
Jesse Barnes7bec7562009-02-23 16:09:34 -0800308/**
309 * drm_encoder_crtc_ok - can a given crtc drive a given encoder?
310 * @encoder: encoder to test
311 * @crtc: crtc to test
312 *
313 * Return false if @encoder can't be driven by @crtc, true otherwise.
314 */
315static bool drm_encoder_crtc_ok(struct drm_encoder *encoder,
316 struct drm_crtc *crtc)
317{
318 struct drm_device *dev;
319 struct drm_crtc *tmp;
320 int crtc_mask = 1;
321
Joe Perchesfce7d612010-10-30 21:08:30 +0000322 WARN(!crtc, "checking null crtc?\n");
Jesse Barnes7bec7562009-02-23 16:09:34 -0800323
324 dev = crtc->dev;
325
326 list_for_each_entry(tmp, &dev->mode_config.crtc_list, head) {
327 if (tmp == crtc)
328 break;
329 crtc_mask <<= 1;
330 }
331
332 if (encoder->possible_crtcs & crtc_mask)
333 return true;
334 return false;
335}
336
337/*
338 * Check the CRTC we're going to map each output to vs. its current
339 * CRTC. If they don't match, we have to disable the output and the CRTC
340 * since the driver will have to re-route things.
341 */
342static void
343drm_crtc_prepare_encoders(struct drm_device *dev)
344{
345 struct drm_encoder_helper_funcs *encoder_funcs;
346 struct drm_encoder *encoder;
347
348 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
349 encoder_funcs = encoder->helper_private;
350 /* Disable unused encoders */
351 if (encoder->crtc == NULL)
Ben Skeggs86a1b9d2010-07-01 16:49:57 +1000352 drm_encoder_disable(encoder);
Jesse Barnes7bec7562009-02-23 16:09:34 -0800353 /* Disable encoders whose CRTC is about to change */
354 if (encoder_funcs->get_crtc &&
355 encoder->crtc != (*encoder_funcs->get_crtc)(encoder))
Ben Skeggs86a1b9d2010-07-01 16:49:57 +1000356 drm_encoder_disable(encoder);
Jesse Barnes7bec7562009-02-23 16:09:34 -0800357 }
358}
359
Dave Airlief453ba02008-11-07 14:05:41 -0800360/**
Daniel Vetter0d4ed4c2012-11-01 14:45:16 +0100361 * drm_crtc_helper_set_mode - internal helper to set a mode
Dave Airlief453ba02008-11-07 14:05:41 -0800362 * @crtc: CRTC to program
363 * @mode: mode to use
Alex Deucher4c9287c2012-11-09 17:26:32 +0000364 * @x: horizontal offset into the surface
365 * @y: vertical offset into the surface
Daniel Vetter0d4ed4c2012-11-01 14:45:16 +0100366 * @old_fb: old framebuffer, for cleanup
Dave Airlief453ba02008-11-07 14:05:41 -0800367 *
368 * LOCKING:
369 * Caller must hold mode config lock.
370 *
371 * Try to set @mode on @crtc. Give @crtc and its associated connectors a chance
Daniel Vetter0d4ed4c2012-11-01 14:45:16 +0100372 * to fixup or reject the mode prior to trying to set it. This is an internal
373 * helper that drivers could e.g. use to update properties that require the
374 * entire output pipe to be disabled and re-enabled in a new configuration. For
375 * example for changing whether audio is enabled on a hdmi link or for changing
376 * panel fitter or dither attributes. It is also called by the
377 * drm_crtc_helper_set_config() helper function to drive the mode setting
378 * sequence.
Dave Airlief453ba02008-11-07 14:05:41 -0800379 *
380 * RETURNS:
381 * True if the mode was set successfully, or false otherwise.
382 */
383bool drm_crtc_helper_set_mode(struct drm_crtc *crtc,
384 struct drm_display_mode *mode,
Kristian Høgsberg3c4fdcf2008-12-17 22:14:46 -0500385 int x, int y,
386 struct drm_framebuffer *old_fb)
Dave Airlief453ba02008-11-07 14:05:41 -0800387{
388 struct drm_device *dev = crtc->dev;
Mario Kleiner27641c32010-10-23 04:20:23 +0200389 struct drm_display_mode *adjusted_mode, saved_mode, saved_hwmode;
Dave Airlief453ba02008-11-07 14:05:41 -0800390 struct drm_crtc_helper_funcs *crtc_funcs = crtc->helper_private;
391 struct drm_encoder_helper_funcs *encoder_funcs;
392 int saved_x, saved_y;
393 struct drm_encoder *encoder;
394 bool ret = true;
395
Dave Airlief453ba02008-11-07 14:05:41 -0800396 crtc->enabled = drm_helper_crtc_in_use(crtc);
Dave Airlief453ba02008-11-07 14:05:41 -0800397 if (!crtc->enabled)
398 return true;
399
Chris Wilson021a8452011-01-28 11:31:56 +0000400 adjusted_mode = drm_mode_duplicate(dev, mode);
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200401 if (!adjusted_mode)
402 return false;
Chris Wilson021a8452011-01-28 11:31:56 +0000403
Mario Kleiner27641c32010-10-23 04:20:23 +0200404 saved_hwmode = crtc->hwmode;
Dave Airlief453ba02008-11-07 14:05:41 -0800405 saved_mode = crtc->mode;
406 saved_x = crtc->x;
407 saved_y = crtc->y;
408
409 /* Update crtc values up front so the driver can rely on them for mode
410 * setting.
411 */
412 crtc->mode = *mode;
413 crtc->x = x;
414 crtc->y = y;
415
Dave Airlief453ba02008-11-07 14:05:41 -0800416 /* Pass our mode to the connectors and the CRTC to give them a chance to
417 * adjust it according to limitations or connector properties, and also
418 * a chance to reject the mode entirely.
419 */
420 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
421
422 if (encoder->crtc != crtc)
423 continue;
424 encoder_funcs = encoder->helper_private;
425 if (!(ret = encoder_funcs->mode_fixup(encoder, mode,
426 adjusted_mode))) {
Adam Jackson836e53d2011-10-10 16:21:27 -0400427 DRM_DEBUG_KMS("Encoder fixup failed\n");
Dave Airlief453ba02008-11-07 14:05:41 -0800428 goto done;
429 }
430 }
431
432 if (!(ret = crtc_funcs->mode_fixup(crtc, mode, adjusted_mode))) {
Adam Jackson836e53d2011-10-10 16:21:27 -0400433 DRM_DEBUG_KMS("CRTC fixup failed\n");
Dave Airlief453ba02008-11-07 14:05:41 -0800434 goto done;
435 }
Jerome Glisse94401062010-07-15 15:43:25 -0400436 DRM_DEBUG_KMS("[CRTC:%d]\n", crtc->base.id);
Dave Airlief453ba02008-11-07 14:05:41 -0800437
438 /* Prepare the encoders and CRTCs before setting the mode. */
439 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
440
441 if (encoder->crtc != crtc)
442 continue;
443 encoder_funcs = encoder->helper_private;
444 /* Disable the encoders as the first thing we do. */
445 encoder_funcs->prepare(encoder);
446 }
447
Jesse Barnes7bec7562009-02-23 16:09:34 -0800448 drm_crtc_prepare_encoders(dev);
449
Dave Airlief453ba02008-11-07 14:05:41 -0800450 crtc_funcs->prepare(crtc);
451
452 /* Set up the DPLL and any encoders state that needs to adjust or depend
453 * on the DPLL.
454 */
Chris Wilson5c3b82e2009-02-11 13:25:09 +0000455 ret = !crtc_funcs->mode_set(crtc, mode, adjusted_mode, x, y, old_fb);
456 if (!ret)
457 goto done;
Dave Airlief453ba02008-11-07 14:05:41 -0800458
459 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
460
461 if (encoder->crtc != crtc)
462 continue;
463
Jerome Glisse94401062010-07-15 15:43:25 -0400464 DRM_DEBUG_KMS("[ENCODER:%d:%s] set [MODE:%d:%s]\n",
465 encoder->base.id, drm_get_encoder_name(encoder),
466 mode->base.id, mode->name);
Dave Airlief453ba02008-11-07 14:05:41 -0800467 encoder_funcs = encoder->helper_private;
468 encoder_funcs->mode_set(encoder, mode, adjusted_mode);
469 }
470
471 /* Now enable the clocks, plane, pipe, and connectors that we set up. */
472 crtc_funcs->commit(crtc);
473
474 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
475
476 if (encoder->crtc != crtc)
477 continue;
478
479 encoder_funcs = encoder->helper_private;
480 encoder_funcs->commit(encoder);
481
482 }
483
Mario Kleiner27641c32010-10-23 04:20:23 +0200484 /* Store real post-adjustment hardware mode. */
485 crtc->hwmode = *adjusted_mode;
486
487 /* Calculate and store various constants which
488 * are later needed by vblank and swap-completion
489 * timestamping. They are derived from true hwmode.
490 */
491 drm_calc_timestamping_constants(crtc);
492
Dave Airlief453ba02008-11-07 14:05:41 -0800493 /* FIXME: add subpixel order */
494done:
Chris Wilson021a8452011-01-28 11:31:56 +0000495 drm_mode_destroy(dev, adjusted_mode);
Dave Airlief453ba02008-11-07 14:05:41 -0800496 if (!ret) {
Mario Kleiner27641c32010-10-23 04:20:23 +0200497 crtc->hwmode = saved_hwmode;
Dave Airlief453ba02008-11-07 14:05:41 -0800498 crtc->mode = saved_mode;
499 crtc->x = saved_x;
500 crtc->y = saved_y;
501 }
502
503 return ret;
504}
505EXPORT_SYMBOL(drm_crtc_helper_set_mode);
506
507
Chris Wilson6eebd6b2011-11-28 21:10:05 +0000508static int
509drm_crtc_helper_disable(struct drm_crtc *crtc)
510{
511 struct drm_device *dev = crtc->dev;
512 struct drm_connector *connector;
513 struct drm_encoder *encoder;
514
515 /* Decouple all encoders and their attached connectors from this crtc */
516 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
517 if (encoder->crtc != crtc)
518 continue;
519
520 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
521 if (connector->encoder != encoder)
522 continue;
523
524 connector->encoder = NULL;
525 }
526 }
527
528 drm_helper_disable_unused_functions(dev);
529 return 0;
530}
531
Dave Airlief453ba02008-11-07 14:05:41 -0800532/**
533 * drm_crtc_helper_set_config - set a new config from userspace
Daniel Vetter0d4ed4c2012-11-01 14:45:16 +0100534 * @set: mode set configuration
Dave Airlief453ba02008-11-07 14:05:41 -0800535 *
536 * LOCKING:
537 * Caller must hold mode config lock.
538 *
Daniel Vetter0d4ed4c2012-11-01 14:45:16 +0100539 * Setup a new configuration, provided by the upper layers (either an ioctl call
540 * from userspace or internally e.g. from the fbdev suppport code) in @set, and
541 * enable it. This is the main helper functions for drivers that implement
542 * kernel mode setting with the crtc helper functions and the assorted
543 * ->prepare(), ->modeset() and ->commit() helper callbacks.
Dave Airlief453ba02008-11-07 14:05:41 -0800544 *
545 * RETURNS:
Daniel Vetter0d4ed4c2012-11-01 14:45:16 +0100546 * Returns 0 on success, -ERRNO on failure.
Dave Airlief453ba02008-11-07 14:05:41 -0800547 */
548int drm_crtc_helper_set_config(struct drm_mode_set *set)
549{
550 struct drm_device *dev;
Maarten Maathuise67aae72009-08-27 10:18:29 +0200551 struct drm_crtc *save_crtcs, *new_crtc, *crtc;
552 struct drm_encoder *save_encoders, *new_encoder, *encoder;
Jesse Barnes7bec7562009-02-23 16:09:34 -0800553 struct drm_framebuffer *old_fb = NULL;
Jakob Bornecrantz4cb72b12009-08-03 13:43:59 +0100554 bool mode_changed = false; /* if true do a full mode set */
555 bool fb_changed = false; /* if true and !mode_changed just do a flip */
Maarten Maathuise67aae72009-08-27 10:18:29 +0200556 struct drm_connector *save_connectors, *connector;
Dave Airlief453ba02008-11-07 14:05:41 -0800557 int count = 0, ro, fail = 0;
558 struct drm_crtc_helper_funcs *crtc_funcs;
Jesse Barnesc5006cfe2011-11-07 10:39:57 -0800559 struct drm_mode_set save_set;
Laurent Pinchart4a1b0712012-05-17 13:27:21 +0200560 int ret;
Keith Packardbf9dc102010-11-26 10:45:58 -0800561 int i;
Dave Airlief453ba02008-11-07 14:05:41 -0800562
Zhao Yakui58367ed2009-07-20 13:48:07 +0800563 DRM_DEBUG_KMS("\n");
Dave Airlief453ba02008-11-07 14:05:41 -0800564
565 if (!set)
566 return -EINVAL;
567
568 if (!set->crtc)
569 return -EINVAL;
570
571 if (!set->crtc->helper_private)
572 return -EINVAL;
573
574 crtc_funcs = set->crtc->helper_private;
575
Chris Wilsonede3ff52011-01-31 11:16:33 +0000576 if (!set->mode)
577 set->fb = NULL;
578
Jerome Glisse94401062010-07-15 15:43:25 -0400579 if (set->fb) {
580 DRM_DEBUG_KMS("[CRTC:%d] [FB:%d] #connectors=%d (x y) (%i %i)\n",
581 set->crtc->base.id, set->fb->base.id,
582 (int)set->num_connectors, set->x, set->y);
583 } else {
Chris Wilsonede3ff52011-01-31 11:16:33 +0000584 DRM_DEBUG_KMS("[CRTC:%d] [NOFB]\n", set->crtc->base.id);
Chris Wilson6eebd6b2011-11-28 21:10:05 +0000585 return drm_crtc_helper_disable(set->crtc);
Jerome Glisse94401062010-07-15 15:43:25 -0400586 }
Dave Airlief453ba02008-11-07 14:05:41 -0800587
588 dev = set->crtc->dev;
589
Maarten Maathuise67aae72009-08-27 10:18:29 +0200590 /* Allocate space for the backup of all (non-pointer) crtc, encoder and
591 * connector data. */
592 save_crtcs = kzalloc(dev->mode_config.num_crtc *
593 sizeof(struct drm_crtc), GFP_KERNEL);
Dave Airlief453ba02008-11-07 14:05:41 -0800594 if (!save_crtcs)
595 return -ENOMEM;
596
Maarten Maathuise67aae72009-08-27 10:18:29 +0200597 save_encoders = kzalloc(dev->mode_config.num_encoder *
598 sizeof(struct drm_encoder), GFP_KERNEL);
Dave Airlief453ba02008-11-07 14:05:41 -0800599 if (!save_encoders) {
600 kfree(save_crtcs);
601 return -ENOMEM;
602 }
603
Maarten Maathuise67aae72009-08-27 10:18:29 +0200604 save_connectors = kzalloc(dev->mode_config.num_connector *
605 sizeof(struct drm_connector), GFP_KERNEL);
606 if (!save_connectors) {
607 kfree(save_crtcs);
608 kfree(save_encoders);
609 return -ENOMEM;
610 }
611
612 /* Copy data. Note that driver private data is not affected.
613 * Should anything bad happen only the expected state is
614 * restored, not the drivers personal bookkeeping.
615 */
616 count = 0;
617 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
618 save_crtcs[count++] = *crtc;
619 }
620
621 count = 0;
622 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
623 save_encoders[count++] = *encoder;
624 }
625
626 count = 0;
627 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
628 save_connectors[count++] = *connector;
629 }
630
Jesse Barnesc5006cfe2011-11-07 10:39:57 -0800631 save_set.crtc = set->crtc;
632 save_set.mode = &set->crtc->mode;
633 save_set.x = set->crtc->x;
634 save_set.y = set->crtc->y;
635 save_set.fb = set->crtc->fb;
636
Dave Airlief453ba02008-11-07 14:05:41 -0800637 /* We should be able to check here if the fb has the same properties
638 * and then just flip_or_move it */
639 if (set->crtc->fb != set->fb) {
Jesse Barnes712531b2009-01-09 13:56:14 -0800640 /* If we have no fb then treat it as a full mode set */
Jesse Barnes7bec7562009-02-23 16:09:34 -0800641 if (set->crtc->fb == NULL) {
Zhao Yakui58367ed2009-07-20 13:48:07 +0800642 DRM_DEBUG_KMS("crtc has no fb, full mode set\n");
Jesse Barnes712531b2009-01-09 13:56:14 -0800643 mode_changed = true;
Jakob Bornecrantz4cb72b12009-08-03 13:43:59 +0100644 } else if (set->fb == NULL) {
645 mode_changed = true;
Jesse Barnes46e48452011-06-24 12:19:26 -0700646 } else if (set->fb->depth != set->crtc->fb->depth) {
647 mode_changed = true;
648 } else if (set->fb->bits_per_pixel !=
649 set->crtc->fb->bits_per_pixel) {
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 }
Keith Packard811aaa52011-02-03 16:57:28 -0800757 DRM_DEBUG_KMS("Setting connector DPMS state to on\n");
758 for (i = 0; i < set->num_connectors; i++) {
759 DRM_DEBUG_KMS("\t[CONNECTOR:%d:%s] set DPMS on\n", set->connectors[i]->base.id,
760 drm_get_connector_name(set->connectors[i]));
Rob Clarkc7548832011-12-15 14:53:24 -0600761 set->connectors[i]->funcs->dpms(set->connectors[i], DRM_MODE_DPMS_ON);
Keith Packard811aaa52011-02-03 16:57:28 -0800762 }
Dave Airlief453ba02008-11-07 14:05:41 -0800763 }
764 drm_helper_disable_unused_functions(dev);
Jesse Barnes712531b2009-01-09 13:56:14 -0800765 } else if (fb_changed) {
Ben Skeggs9b1596a2009-09-18 10:43:52 +1000766 set->crtc->x = set->x;
767 set->crtc->y = set->y;
768
Kristian Høgsberg3c4fdcf2008-12-17 22:14:46 -0500769 old_fb = set->crtc->fb;
Dave Airlief453ba02008-11-07 14:05:41 -0800770 if (set->crtc->fb != set->fb)
771 set->crtc->fb = set->fb;
Chris Wilson5c3b82e2009-02-11 13:25:09 +0000772 ret = crtc_funcs->mode_set_base(set->crtc,
773 set->x, set->y, old_fb);
Chris Wilson0ba41e42011-01-08 15:10:41 +0000774 if (ret != 0) {
775 set->crtc->fb = old_fb;
Maarten Maathuise67aae72009-08-27 10:18:29 +0200776 goto fail;
Chris Wilson0ba41e42011-01-08 15:10:41 +0000777 }
Dave Airlief453ba02008-11-07 14:05:41 -0800778 }
779
Maarten Maathuise67aae72009-08-27 10:18:29 +0200780 kfree(save_connectors);
Dave Airlief453ba02008-11-07 14:05:41 -0800781 kfree(save_encoders);
782 kfree(save_crtcs);
783 return 0;
784
Maarten Maathuise67aae72009-08-27 10:18:29 +0200785fail:
786 /* Restore all previous data. */
Dave Airlief453ba02008-11-07 14:05:41 -0800787 count = 0;
Maarten Maathuise67aae72009-08-27 10:18:29 +0200788 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
789 *crtc = save_crtcs[count++];
790 }
Chris Wilsone62fb642009-02-11 16:39:21 +0000791
Maarten Maathuise67aae72009-08-27 10:18:29 +0200792 count = 0;
793 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
794 *encoder = save_encoders[count++];
Chris Wilsone62fb642009-02-11 16:39:21 +0000795 }
Maarten Maathuise67aae72009-08-27 10:18:29 +0200796
Dave Airlief453ba02008-11-07 14:05:41 -0800797 count = 0;
798 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
Maarten Maathuise67aae72009-08-27 10:18:29 +0200799 *connector = save_connectors[count++];
Dave Airlief453ba02008-11-07 14:05:41 -0800800 }
Maarten Maathuise67aae72009-08-27 10:18:29 +0200801
Jesse Barnesc5006cfe2011-11-07 10:39:57 -0800802 /* Try to restore the config */
803 if (mode_changed &&
804 !drm_crtc_helper_set_mode(save_set.crtc, save_set.mode, save_set.x,
805 save_set.y, save_set.fb))
806 DRM_ERROR("failed to restore config after modeset failure\n");
807
Maarten Maathuise67aae72009-08-27 10:18:29 +0200808 kfree(save_connectors);
Dave Airlief453ba02008-11-07 14:05:41 -0800809 kfree(save_encoders);
Maarten Maathuise67aae72009-08-27 10:18:29 +0200810 kfree(save_crtcs);
Dave Airlief453ba02008-11-07 14:05:41 -0800811 return ret;
812}
813EXPORT_SYMBOL(drm_crtc_helper_set_config);
814
Keith Packardc9fb15f2009-05-30 20:42:28 -0700815static int drm_helper_choose_encoder_dpms(struct drm_encoder *encoder)
816{
817 int dpms = DRM_MODE_DPMS_OFF;
818 struct drm_connector *connector;
819 struct drm_device *dev = encoder->dev;
820
821 list_for_each_entry(connector, &dev->mode_config.connector_list, head)
822 if (connector->encoder == encoder)
823 if (connector->dpms < dpms)
824 dpms = connector->dpms;
825 return dpms;
826}
827
828static int drm_helper_choose_crtc_dpms(struct drm_crtc *crtc)
829{
830 int dpms = DRM_MODE_DPMS_OFF;
831 struct drm_connector *connector;
832 struct drm_device *dev = crtc->dev;
833
834 list_for_each_entry(connector, &dev->mode_config.connector_list, head)
835 if (connector->encoder && connector->encoder->crtc == crtc)
836 if (connector->dpms < dpms)
837 dpms = connector->dpms;
838 return dpms;
839}
840
841/**
Daniel Vetter0d4ed4c2012-11-01 14:45:16 +0100842 * drm_helper_connector_dpms() - connector dpms helper implementation
843 * @connector: affected connector
844 * @mode: DPMS mode
Keith Packardc9fb15f2009-05-30 20:42:28 -0700845 *
Daniel Vetter0d4ed4c2012-11-01 14:45:16 +0100846 * This is the main helper function provided by the crtc helper framework for
847 * implementing the DPMS connector attribute. It computes the new desired DPMS
848 * state for all encoders and crtcs in the output mesh and calls the ->dpms()
849 * callback provided by the driver appropriately.
Keith Packardc9fb15f2009-05-30 20:42:28 -0700850 */
851void drm_helper_connector_dpms(struct drm_connector *connector, int mode)
852{
853 struct drm_encoder *encoder = connector->encoder;
854 struct drm_crtc *crtc = encoder ? encoder->crtc : NULL;
855 int old_dpms;
856
857 if (mode == connector->dpms)
858 return;
859
860 old_dpms = connector->dpms;
861 connector->dpms = mode;
862
863 /* from off to on, do crtc then encoder */
864 if (mode < old_dpms) {
865 if (crtc) {
866 struct drm_crtc_helper_funcs *crtc_funcs = crtc->helper_private;
867 if (crtc_funcs->dpms)
868 (*crtc_funcs->dpms) (crtc,
869 drm_helper_choose_crtc_dpms(crtc));
870 }
871 if (encoder) {
872 struct drm_encoder_helper_funcs *encoder_funcs = encoder->helper_private;
873 if (encoder_funcs->dpms)
874 (*encoder_funcs->dpms) (encoder,
875 drm_helper_choose_encoder_dpms(encoder));
876 }
877 }
878
879 /* from on to off, do encoder then crtc */
880 if (mode > old_dpms) {
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 if (crtc) {
888 struct drm_crtc_helper_funcs *crtc_funcs = crtc->helper_private;
889 if (crtc_funcs->dpms)
890 (*crtc_funcs->dpms) (crtc,
891 drm_helper_choose_crtc_dpms(crtc));
892 }
893 }
894
895 return;
896}
897EXPORT_SYMBOL(drm_helper_connector_dpms);
898
Dave Airlief453ba02008-11-07 14:05:41 -0800899int drm_helper_mode_fill_fb_struct(struct drm_framebuffer *fb,
Jesse Barnes308e5bc2011-11-14 14:51:28 -0800900 struct drm_mode_fb_cmd2 *mode_cmd)
Dave Airlief453ba02008-11-07 14:05:41 -0800901{
Ville Syrjälä01f2c772011-12-20 00:06:49 +0200902 int i;
903
Dave Airlief453ba02008-11-07 14:05:41 -0800904 fb->width = mode_cmd->width;
905 fb->height = mode_cmd->height;
Ville Syrjälä01f2c772011-12-20 00:06:49 +0200906 for (i = 0; i < 4; i++) {
907 fb->pitches[i] = mode_cmd->pitches[i];
908 fb->offsets[i] = mode_cmd->offsets[i];
909 }
Dave Airlie248dbc22011-11-29 20:02:54 +0000910 drm_fb_get_bpp_depth(mode_cmd->pixel_format, &fb->depth,
Jesse Barnes308e5bc2011-11-14 14:51:28 -0800911 &fb->bits_per_pixel);
912 fb->pixel_format = mode_cmd->pixel_format;
Dave Airlief453ba02008-11-07 14:05:41 -0800913
914 return 0;
915}
916EXPORT_SYMBOL(drm_helper_mode_fill_fb_struct);
917
918int drm_helper_resume_force_mode(struct drm_device *dev)
919{
920 struct drm_crtc *crtc;
David John89347bb2009-12-31 12:00:46 +0530921 struct drm_encoder *encoder;
922 struct drm_encoder_helper_funcs *encoder_funcs;
923 struct drm_crtc_helper_funcs *crtc_funcs;
Dave Airlief453ba02008-11-07 14:05:41 -0800924 int ret;
925
926 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
927
928 if (!crtc->enabled)
929 continue;
930
Kristian Høgsberg3c4fdcf2008-12-17 22:14:46 -0500931 ret = drm_crtc_helper_set_mode(crtc, &crtc->mode,
932 crtc->x, crtc->y, crtc->fb);
Dave Airlief453ba02008-11-07 14:05:41 -0800933
934 if (ret == false)
935 DRM_ERROR("failed to set mode on crtc %p\n", crtc);
David John89347bb2009-12-31 12:00:46 +0530936
937 /* Turn off outputs that were already powered off */
938 if (drm_helper_choose_crtc_dpms(crtc)) {
939 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
940
941 if(encoder->crtc != crtc)
942 continue;
943
944 encoder_funcs = encoder->helper_private;
945 if (encoder_funcs->dpms)
946 (*encoder_funcs->dpms) (encoder,
947 drm_helper_choose_encoder_dpms(encoder));
David John89347bb2009-12-31 12:00:46 +0530948 }
Chris Wilson817e6312010-08-06 15:03:31 +0100949
950 crtc_funcs = crtc->helper_private;
951 if (crtc_funcs->dpms)
952 (*crtc_funcs->dpms) (crtc,
953 drm_helper_choose_crtc_dpms(crtc));
David John89347bb2009-12-31 12:00:46 +0530954 }
Dave Airlief453ba02008-11-07 14:05:41 -0800955 }
Zhao Yakuiaf4fcb52009-07-08 14:13:13 +0800956 /* disable the unused connectors while restoring the modesetting */
957 drm_helper_disable_unused_functions(dev);
Dave Airlief453ba02008-11-07 14:05:41 -0800958 return 0;
959}
960EXPORT_SYMBOL(drm_helper_resume_force_mode);
Dave Airlieeb1f8e42010-05-07 06:42:51 +0000961
Daniel Vetter3d3683f2012-10-23 18:23:32 +0000962void drm_kms_helper_hotplug_event(struct drm_device *dev)
963{
964 /* send a uevent + call fbdev */
965 drm_sysfs_hotplug_event(dev);
966 if (dev->mode_config.funcs->output_poll_changed)
967 dev->mode_config.funcs->output_poll_changed(dev);
968}
969EXPORT_SYMBOL(drm_kms_helper_hotplug_event);
970
Dave Airlieeb1f8e42010-05-07 06:42:51 +0000971#define DRM_OUTPUT_POLL_PERIOD (10*HZ)
Tejun Heo991ea752010-07-20 22:09:02 +0200972static void output_poll_execute(struct work_struct *work)
Dave Airlieeb1f8e42010-05-07 06:42:51 +0000973{
Tejun Heo991ea752010-07-20 22:09:02 +0200974 struct delayed_work *delayed_work = to_delayed_work(work);
975 struct drm_device *dev = container_of(delayed_work, struct drm_device, mode_config.output_poll_work);
Dave Airlieeb1f8e42010-05-07 06:42:51 +0000976 struct drm_connector *connector;
Keith Packardc5027de2010-11-26 10:45:59 -0800977 enum drm_connector_status old_status;
Dave Airlieeb1f8e42010-05-07 06:42:51 +0000978 bool repoll = false, changed = false;
Dave Airlieeb1f8e42010-05-07 06:42:51 +0000979
Chris Wilsone58f6372010-08-20 09:13:36 +0100980 if (!drm_kms_helper_poll)
981 return;
982
Dave Airlieeb1f8e42010-05-07 06:42:51 +0000983 mutex_lock(&dev->mode_config.mutex);
984 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
985
Daniel Vetter11e68682012-10-23 18:23:38 +0000986 /* Ignore forced connectors. */
987 if (connector->force)
988 continue;
989
Daniel Vetter816da852012-10-23 18:23:33 +0000990 /* Ignore HPD capable connectors and connectors where we don't
991 * want any hotplug detection at all for polling. */
992 if (!connector->polled || connector->polled == DRM_CONNECTOR_POLL_HPD)
Dave Airlieeb1f8e42010-05-07 06:42:51 +0000993 continue;
994
Daniel Vettera4f968d2012-10-24 13:35:50 +0000995 repoll = true;
Dave Airlieeb1f8e42010-05-07 06:42:51 +0000996
997 old_status = connector->status;
998 /* if we are connected and don't want to poll for disconnect
999 skip it */
1000 if (old_status == connector_status_connected &&
Daniel Vetter816da852012-10-23 18:23:33 +00001001 !(connector->polled & DRM_CONNECTOR_POLL_DISCONNECT))
Dave Airlieeb1f8e42010-05-07 06:42:51 +00001002 continue;
1003
Keith Packardc5027de2010-11-26 10:45:59 -08001004 connector->status = connector->funcs->detect(connector, false);
Chris Wilson0f168302010-12-21 22:49:28 +00001005 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] status updated from %d to %d\n",
1006 connector->base.id,
1007 drm_get_connector_name(connector),
1008 old_status, connector->status);
Keith Packardc5027de2010-11-26 10:45:59 -08001009 if (old_status != connector->status)
Dave Airlieeb1f8e42010-05-07 06:42:51 +00001010 changed = true;
1011 }
1012
1013 mutex_unlock(&dev->mode_config.mutex);
1014
Daniel Vetter3d3683f2012-10-23 18:23:32 +00001015 if (changed)
1016 drm_kms_helper_hotplug_event(dev);
Dave Airlieeb1f8e42010-05-07 06:42:51 +00001017
Tejun Heo9a919c42010-08-09 12:01:27 +02001018 if (repoll)
Tejun Heo3b07e9c2012-08-20 14:51:24 -07001019 schedule_delayed_work(delayed_work, DRM_OUTPUT_POLL_PERIOD);
Dave Airlieeb1f8e42010-05-07 06:42:51 +00001020}
1021
Dave Airliefbf81762010-06-01 09:09:06 +10001022void drm_kms_helper_poll_disable(struct drm_device *dev)
Dave Airlieeb1f8e42010-05-07 06:42:51 +00001023{
Dave Airliefbf81762010-06-01 09:09:06 +10001024 if (!dev->mode_config.poll_enabled)
1025 return;
Tejun Heo991ea752010-07-20 22:09:02 +02001026 cancel_delayed_work_sync(&dev->mode_config.output_poll_work);
Dave Airliefbf81762010-06-01 09:09:06 +10001027}
1028EXPORT_SYMBOL(drm_kms_helper_poll_disable);
1029
1030void drm_kms_helper_poll_enable(struct drm_device *dev)
1031{
Dave Airlieeb1f8e42010-05-07 06:42:51 +00001032 bool poll = false;
Dave Airliefbf81762010-06-01 09:09:06 +10001033 struct drm_connector *connector;
Dave Airlieeb1f8e42010-05-07 06:42:51 +00001034
Chris Wilsone58f6372010-08-20 09:13:36 +01001035 if (!dev->mode_config.poll_enabled || !drm_kms_helper_poll)
1036 return;
1037
Dave Airlieeb1f8e42010-05-07 06:42:51 +00001038 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
Daniel Vettera4f968d2012-10-24 13:35:50 +00001039 if (connector->polled & (DRM_CONNECTOR_POLL_CONNECT |
1040 DRM_CONNECTOR_POLL_DISCONNECT))
Dave Airlieeb1f8e42010-05-07 06:42:51 +00001041 poll = true;
1042 }
Dave Airlieeb1f8e42010-05-07 06:42:51 +00001043
Tejun Heo9a919c42010-08-09 12:01:27 +02001044 if (poll)
Tejun Heo3b07e9c2012-08-20 14:51:24 -07001045 schedule_delayed_work(&dev->mode_config.output_poll_work, DRM_OUTPUT_POLL_PERIOD);
Dave Airlieeb1f8e42010-05-07 06:42:51 +00001046}
Dave Airliefbf81762010-06-01 09:09:06 +10001047EXPORT_SYMBOL(drm_kms_helper_poll_enable);
1048
1049void drm_kms_helper_poll_init(struct drm_device *dev)
1050{
Tejun Heo991ea752010-07-20 22:09:02 +02001051 INIT_DELAYED_WORK(&dev->mode_config.output_poll_work, output_poll_execute);
Dave Airliefbf81762010-06-01 09:09:06 +10001052 dev->mode_config.poll_enabled = true;
1053
1054 drm_kms_helper_poll_enable(dev);
1055}
Dave Airlieeb1f8e42010-05-07 06:42:51 +00001056EXPORT_SYMBOL(drm_kms_helper_poll_init);
1057
1058void drm_kms_helper_poll_fini(struct drm_device *dev)
1059{
Dave Airliefbf81762010-06-01 09:09:06 +10001060 drm_kms_helper_poll_disable(dev);
Dave Airlieeb1f8e42010-05-07 06:42:51 +00001061}
1062EXPORT_SYMBOL(drm_kms_helper_poll_fini);
1063
Daniel Vetter69787f72012-10-23 18:23:34 +00001064void drm_helper_hpd_irq_event(struct drm_device *dev)
Dave Airlieeb1f8e42010-05-07 06:42:51 +00001065{
Daniel Vetter816da852012-10-23 18:23:33 +00001066 struct drm_connector *connector;
1067 enum drm_connector_status old_status;
1068 bool changed = false;
1069
Dave Airlieeb1f8e42010-05-07 06:42:51 +00001070 if (!dev->mode_config.poll_enabled)
1071 return;
Chris Wilsone58f6372010-08-20 09:13:36 +01001072
Daniel Vetter816da852012-10-23 18:23:33 +00001073 mutex_lock(&dev->mode_config.mutex);
1074 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
1075
1076 /* Only handle HPD capable connectors. */
1077 if (!(connector->polled & DRM_CONNECTOR_POLL_HPD))
1078 continue;
1079
1080 old_status = connector->status;
1081
1082 connector->status = connector->funcs->detect(connector, false);
1083 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] status updated from %d to %d\n",
1084 connector->base.id,
1085 drm_get_connector_name(connector),
1086 old_status, connector->status);
1087 if (old_status != connector->status)
1088 changed = true;
1089 }
1090
1091 mutex_unlock(&dev->mode_config.mutex);
1092
1093 if (changed)
1094 drm_kms_helper_hotplug_event(dev);
1095}
Dave Airlieeb1f8e42010-05-07 06:42:51 +00001096EXPORT_SYMBOL(drm_helper_hpd_irq_event);