blob: 9f8b894f44809fcaa7b01e34d489e2e34038d4e1 [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
Sergei Antonovba6f5822014-05-12 00:30:48 +020032#include <linux/kernel.h>
Paul Gortmaker2d1a8a42011-08-30 18:16:33 -040033#include <linux/export.h>
Paul Gortmaker0603ba12011-08-31 11:29:09 -040034#include <linux/moduleparam.h>
Paul Gortmaker2d1a8a42011-08-30 18:16:33 -040035
David Howells760285e2012-10-02 18:01:07 +010036#include <drm/drmP.h>
Daniel Vetter321ebf02014-11-04 22:57:27 +010037#include <drm/drm_atomic.h>
David Howells760285e2012-10-02 18:01:07 +010038#include <drm/drm_crtc.h>
39#include <drm/drm_fourcc.h>
40#include <drm/drm_crtc_helper.h>
41#include <drm/drm_fb_helper.h>
Daniel Vetter2f324b42014-10-29 11:13:47 +010042#include <drm/drm_plane_helper.h>
Daniel Vetter321ebf02014-11-04 22:57:27 +010043#include <drm/drm_atomic_helper.h>
David Howells760285e2012-10-02 18:01:07 +010044#include <drm/drm_edid.h>
Dave Airlief453ba02008-11-07 14:05:41 -080045
Daniel Vetter3150c7d2014-11-06 20:53:29 +010046/**
47 * DOC: overview
48 *
49 * The CRTC modeset helper library provides a default set_config implementation
50 * in drm_crtc_helper_set_config(). Plus a few other convenience functions using
51 * the same callbacks which drivers can use to e.g. restore the modeset
52 * configuration on resume with drm_helper_resume_force_mode().
53 *
Daniel Vetter2be94972015-12-04 09:45:46 +010054 * Note that this helper library doesn't track the current power state of CRTCs
55 * and encoders. It can call callbacks like ->dpms() even though the hardware is
56 * already in the desired state. This deficiency has been fixed in the atomic
57 * helpers.
58 *
Daniel Vetter3150c7d2014-11-06 20:53:29 +010059 * The driver callbacks are mostly compatible with the atomic modeset helpers,
60 * except for the handling of the primary plane: Atomic helpers require that the
61 * primary plane is implemented as a real standalone plane and not directly tied
62 * to the CRTC state. For easier transition this library provides functions to
63 * implement the old semantics required by the CRTC helpers using the new plane
64 * and atomic helper callbacks.
65 *
66 * Drivers are strongly urged to convert to the atomic helpers (by way of first
67 * converting to the plane helpers). New drivers must not use these functions
68 * but need to implement the atomic interface instead, potentially using the
69 * atomic helpers for that.
Daniel Vetter092d01d2015-12-04 09:45:44 +010070 *
71 * These legacy modeset helpers use the same function table structures as
72 * all other modesetting helpers. See the documentation for struct
73 * &drm_crtc_helper_funcs, struct &drm_encoder_helper_funcs and struct
74 * &drm_connector_helper_funcs.
Daniel Vetter3150c7d2014-11-06 20:53:29 +010075 */
Daniel Vetter92b6f892013-10-08 17:44:47 +020076MODULE_AUTHOR("David Airlie, Jesse Barnes");
77MODULE_DESCRIPTION("DRM KMS helper");
78MODULE_LICENSE("GPL and additional rights");
79
Daniel Vetter0d4ed4c2012-11-01 14:45:16 +010080/**
81 * drm_helper_move_panel_connectors_to_head() - move panels to the front in the
82 * connector list
83 * @dev: drm device to operate on
84 *
85 * Some userspace presumes that the first connected connector is the main
86 * display, where it's supposed to display e.g. the login screen. For
87 * laptops, this should be the main panel. Use this function to sort all
88 * (eDP/LVDS) panels to the front of the connector list, instead of
89 * painstakingly trying to initialize them in the right order.
90 */
Daniel Vettercfc1a062012-10-27 15:52:04 +020091void drm_helper_move_panel_connectors_to_head(struct drm_device *dev)
92{
93 struct drm_connector *connector, *tmp;
94 struct list_head panel_list;
95
96 INIT_LIST_HEAD(&panel_list);
97
98 list_for_each_entry_safe(connector, tmp,
99 &dev->mode_config.connector_list, head) {
100 if (connector->connector_type == DRM_MODE_CONNECTOR_LVDS ||
101 connector->connector_type == DRM_MODE_CONNECTOR_eDP)
102 list_move_tail(&connector->head, &panel_list);
103 }
104
105 list_splice(&panel_list, &dev->mode_config.connector_list);
106}
107EXPORT_SYMBOL(drm_helper_move_panel_connectors_to_head);
108
Dave Airlief453ba02008-11-07 14:05:41 -0800109/**
Keith Packardc9fb15f2009-05-30 20:42:28 -0700110 * drm_helper_encoder_in_use - check if a given encoder is in use
111 * @encoder: encoder to check
112 *
Daniel Vetter3fcc42e2014-01-23 22:58:26 +0100113 * Checks whether @encoder is with the current mode setting output configuration
114 * in use by any connector. This doesn't mean that it is actually enabled since
115 * the DPMS state is tracked separately.
Keith Packardc9fb15f2009-05-30 20:42:28 -0700116 *
Daniel Vetter3fcc42e2014-01-23 22:58:26 +0100117 * Returns:
118 * True if @encoder is used, false otherwise.
Keith Packardc9fb15f2009-05-30 20:42:28 -0700119 */
120bool drm_helper_encoder_in_use(struct drm_encoder *encoder)
121{
122 struct drm_connector *connector;
123 struct drm_device *dev = encoder->dev;
Daniel Vetter62ff94a2014-01-23 22:18:47 +0100124
Sergei Antonovba6f5822014-05-12 00:30:48 +0200125 /*
126 * We can expect this mutex to be locked if we are not panicking.
127 * Locking is currently fubar in the panic handler.
128 */
Dave Airlie8d4ad9d2014-06-05 20:28:59 +1000129 if (!oops_in_progress) {
Sergei Antonovba6f5822014-05-12 00:30:48 +0200130 WARN_ON(!mutex_is_locked(&dev->mode_config.mutex));
Dave Airlie8d4ad9d2014-06-05 20:28:59 +1000131 WARN_ON(!drm_modeset_is_locked(&dev->mode_config.connection_mutex));
132 }
Sergei Antonovba6f5822014-05-12 00:30:48 +0200133
Daniel Vetter9a9f5ce2015-07-09 23:44:34 +0200134 drm_for_each_connector(connector, dev)
Keith Packardc9fb15f2009-05-30 20:42:28 -0700135 if (connector->encoder == encoder)
136 return true;
137 return false;
138}
139EXPORT_SYMBOL(drm_helper_encoder_in_use);
140
141/**
Dave Airlief453ba02008-11-07 14:05:41 -0800142 * drm_helper_crtc_in_use - check if a given CRTC is in a mode_config
143 * @crtc: CRTC to check
144 *
Daniel Vetter3fcc42e2014-01-23 22:58:26 +0100145 * Checks whether @crtc is with the current mode setting output configuration
146 * in use by any connector. This doesn't mean that it is actually enabled since
147 * the DPMS state is tracked separately.
Dave Airlief453ba02008-11-07 14:05:41 -0800148 *
Daniel Vetter3fcc42e2014-01-23 22:58:26 +0100149 * Returns:
150 * True if @crtc is used, false otherwise.
Dave Airlief453ba02008-11-07 14:05:41 -0800151 */
152bool drm_helper_crtc_in_use(struct drm_crtc *crtc)
153{
154 struct drm_encoder *encoder;
155 struct drm_device *dev = crtc->dev;
Daniel Vetter62ff94a2014-01-23 22:18:47 +0100156
Sergei Antonovba6f5822014-05-12 00:30:48 +0200157 /*
158 * We can expect this mutex to be locked if we are not panicking.
159 * Locking is currently fubar in the panic handler.
160 */
161 if (!oops_in_progress)
162 WARN_ON(!mutex_is_locked(&dev->mode_config.mutex));
163
Daniel Vettere4f62542015-07-09 23:44:35 +0200164 drm_for_each_encoder(encoder, dev)
Keith Packardc9fb15f2009-05-30 20:42:28 -0700165 if (encoder->crtc == crtc && drm_helper_encoder_in_use(encoder))
Dave Airlief453ba02008-11-07 14:05:41 -0800166 return true;
167 return false;
168}
169EXPORT_SYMBOL(drm_helper_crtc_in_use);
170
Ben Skeggs86a1b9d2010-07-01 16:49:57 +1000171static void
172drm_encoder_disable(struct drm_encoder *encoder)
173{
Jani Nikulabe26a662015-03-11 11:51:06 +0200174 const struct drm_encoder_helper_funcs *encoder_funcs = encoder->helper_private;
Ben Skeggs86a1b9d2010-07-01 16:49:57 +1000175
Archit Taneja862e6862015-05-21 11:03:16 +0530176 drm_bridge_disable(encoder->bridge);
Sean Paul3b336ec2013-08-14 16:47:37 -0400177
Ben Skeggs86a1b9d2010-07-01 16:49:57 +1000178 if (encoder_funcs->disable)
179 (*encoder_funcs->disable)(encoder);
180 else
181 (*encoder_funcs->dpms)(encoder, DRM_MODE_DPMS_OFF);
Sean Paul3b336ec2013-08-14 16:47:37 -0400182
Archit Taneja862e6862015-05-21 11:03:16 +0530183 drm_bridge_post_disable(encoder->bridge);
Ben Skeggs86a1b9d2010-07-01 16:49:57 +1000184}
185
Daniel Vetterb182cc52014-03-20 14:26:34 +0100186static void __drm_helper_disable_unused_functions(struct drm_device *dev)
Dave Airlief453ba02008-11-07 14:05:41 -0800187{
188 struct drm_encoder *encoder;
Dave Airlief453ba02008-11-07 14:05:41 -0800189 struct drm_crtc *crtc;
190
Daniel Vetter62ff94a2014-01-23 22:18:47 +0100191 drm_warn_on_modeset_not_all_locked(dev);
192
Daniel Vetter6295d602015-07-09 23:44:25 +0200193 drm_for_each_encoder(encoder, dev) {
Dave Airlie929710212010-12-21 12:47:56 +1000194 if (!drm_helper_encoder_in_use(encoder)) {
Ben Skeggs86a1b9d2010-07-01 16:49:57 +1000195 drm_encoder_disable(encoder);
Rob Clarkb5e6c1d2014-05-24 14:30:10 -0400196 /* disconnect encoder from any connector */
Dave Airlie9c552dd2009-09-02 14:00:11 +1000197 encoder->crtc = NULL;
Dave Airliea3a05442009-08-31 15:16:30 +1000198 }
Dave Airlief453ba02008-11-07 14:05:41 -0800199 }
200
Daniel Vetter6295d602015-07-09 23:44:25 +0200201 drm_for_each_crtc(crtc, dev) {
Jani Nikulabe26a662015-03-11 11:51:06 +0200202 const struct drm_crtc_helper_funcs *crtc_funcs = crtc->helper_private;
Dave Airlief453ba02008-11-07 14:05:41 -0800203 crtc->enabled = drm_helper_crtc_in_use(crtc);
204 if (!crtc->enabled) {
Alex Deucher5c8d7172010-06-11 17:04:35 -0400205 if (crtc_funcs->disable)
206 (*crtc_funcs->disable)(crtc);
207 else
208 (*crtc_funcs->dpms)(crtc, DRM_MODE_DPMS_OFF);
Matt Roperf4510a22014-04-01 15:22:40 -0700209 crtc->primary->fb = NULL;
Dave Airlief453ba02008-11-07 14:05:41 -0800210 }
211 }
212}
Daniel Vetterb182cc52014-03-20 14:26:34 +0100213
214/**
215 * drm_helper_disable_unused_functions - disable unused objects
216 * @dev: DRM device
217 *
218 * This function walks through the entire mode setting configuration of @dev. It
Daniel Vetter2be94972015-12-04 09:45:46 +0100219 * will remove any CRTC links of unused encoders and encoder links of
220 * disconnected connectors. Then it will disable all unused encoders and CRTCs
Daniel Vetterb182cc52014-03-20 14:26:34 +0100221 * either by calling their disable callback if available or by calling their
222 * dpms callback with DRM_MODE_DPMS_OFF.
Daniel Vetter09859d22016-01-13 15:31:16 +0100223 *
224 * NOTE:
225 *
226 * This function is part of the legacy modeset helper library and will cause
227 * major confusion with atomic drivers. This is because atomic helpers guarantee
228 * to never call ->disable() hooks on a disabled function, or ->enable() hooks
229 * on an enabled functions. drm_helper_disable_unused_functions() on the other
230 * hand throws such guarantees into the wind and calls disable hooks
231 * unconditionally on unused functions.
Daniel Vetterb182cc52014-03-20 14:26:34 +0100232 */
233void drm_helper_disable_unused_functions(struct drm_device *dev)
234{
235 drm_modeset_lock_all(dev);
236 __drm_helper_disable_unused_functions(dev);
237 drm_modeset_unlock_all(dev);
238}
Dave Airlief453ba02008-11-07 14:05:41 -0800239EXPORT_SYMBOL(drm_helper_disable_unused_functions);
240
Jesse Barnes7bec7562009-02-23 16:09:34 -0800241/*
242 * Check the CRTC we're going to map each output to vs. its current
243 * CRTC. If they don't match, we have to disable the output and the CRTC
244 * since the driver will have to re-route things.
245 */
246static void
247drm_crtc_prepare_encoders(struct drm_device *dev)
248{
Jani Nikulabe26a662015-03-11 11:51:06 +0200249 const struct drm_encoder_helper_funcs *encoder_funcs;
Jesse Barnes7bec7562009-02-23 16:09:34 -0800250 struct drm_encoder *encoder;
251
Daniel Vetter6295d602015-07-09 23:44:25 +0200252 drm_for_each_encoder(encoder, dev) {
Jesse Barnes7bec7562009-02-23 16:09:34 -0800253 encoder_funcs = encoder->helper_private;
254 /* Disable unused encoders */
255 if (encoder->crtc == NULL)
Ben Skeggs86a1b9d2010-07-01 16:49:57 +1000256 drm_encoder_disable(encoder);
Jesse Barnes7bec7562009-02-23 16:09:34 -0800257 /* Disable encoders whose CRTC is about to change */
258 if (encoder_funcs->get_crtc &&
259 encoder->crtc != (*encoder_funcs->get_crtc)(encoder))
Ben Skeggs86a1b9d2010-07-01 16:49:57 +1000260 drm_encoder_disable(encoder);
Jesse Barnes7bec7562009-02-23 16:09:34 -0800261 }
262}
263
Dave Airlief453ba02008-11-07 14:05:41 -0800264/**
Daniel Vetter0d4ed4c2012-11-01 14:45:16 +0100265 * drm_crtc_helper_set_mode - internal helper to set a mode
Dave Airlief453ba02008-11-07 14:05:41 -0800266 * @crtc: CRTC to program
267 * @mode: mode to use
Alex Deucher4c9287c2012-11-09 17:26:32 +0000268 * @x: horizontal offset into the surface
269 * @y: vertical offset into the surface
Daniel Vetter0d4ed4c2012-11-01 14:45:16 +0100270 * @old_fb: old framebuffer, for cleanup
Dave Airlief453ba02008-11-07 14:05:41 -0800271 *
Dave Airlief453ba02008-11-07 14:05:41 -0800272 * Try to set @mode on @crtc. Give @crtc and its associated connectors a chance
Daniel Vetter0d4ed4c2012-11-01 14:45:16 +0100273 * to fixup or reject the mode prior to trying to set it. This is an internal
274 * helper that drivers could e.g. use to update properties that require the
275 * entire output pipe to be disabled and re-enabled in a new configuration. For
276 * example for changing whether audio is enabled on a hdmi link or for changing
277 * panel fitter or dither attributes. It is also called by the
278 * drm_crtc_helper_set_config() helper function to drive the mode setting
279 * sequence.
Dave Airlief453ba02008-11-07 14:05:41 -0800280 *
Daniel Vetter3fcc42e2014-01-23 22:58:26 +0100281 * Returns:
282 * True if the mode was set successfully, false otherwise.
Dave Airlief453ba02008-11-07 14:05:41 -0800283 */
284bool drm_crtc_helper_set_mode(struct drm_crtc *crtc,
285 struct drm_display_mode *mode,
Kristian Høgsberg3c4fdcf2008-12-17 22:14:46 -0500286 int x, int y,
287 struct drm_framebuffer *old_fb)
Dave Airlief453ba02008-11-07 14:05:41 -0800288{
289 struct drm_device *dev = crtc->dev;
Daniel Stone5a275282015-03-19 04:33:03 +0000290 struct drm_display_mode *adjusted_mode, saved_mode, saved_hwmode;
Jani Nikulabe26a662015-03-11 11:51:06 +0200291 const struct drm_crtc_helper_funcs *crtc_funcs = crtc->helper_private;
292 const struct drm_encoder_helper_funcs *encoder_funcs;
Dave Airlief453ba02008-11-07 14:05:41 -0800293 int saved_x, saved_y;
Ilija Hadzic7e99acd2013-10-29 11:09:44 -0400294 bool saved_enabled;
Dave Airlief453ba02008-11-07 14:05:41 -0800295 struct drm_encoder *encoder;
296 bool ret = true;
297
Daniel Vetter62ff94a2014-01-23 22:18:47 +0100298 drm_warn_on_modeset_not_all_locked(dev);
299
Ilija Hadzic7e99acd2013-10-29 11:09:44 -0400300 saved_enabled = crtc->enabled;
Dave Airlief453ba02008-11-07 14:05:41 -0800301 crtc->enabled = drm_helper_crtc_in_use(crtc);
Dave Airlief453ba02008-11-07 14:05:41 -0800302 if (!crtc->enabled)
303 return true;
304
Chris Wilson021a8452011-01-28 11:31:56 +0000305 adjusted_mode = drm_mode_duplicate(dev, mode);
Ilija Hadzic7e99acd2013-10-29 11:09:44 -0400306 if (!adjusted_mode) {
307 crtc->enabled = saved_enabled;
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200308 return false;
Ilija Hadzic7e99acd2013-10-29 11:09:44 -0400309 }
Chris Wilson021a8452011-01-28 11:31:56 +0000310
Dave Airlief453ba02008-11-07 14:05:41 -0800311 saved_mode = crtc->mode;
Daniel Stone5a275282015-03-19 04:33:03 +0000312 saved_hwmode = crtc->hwmode;
Dave Airlief453ba02008-11-07 14:05:41 -0800313 saved_x = crtc->x;
314 saved_y = crtc->y;
315
316 /* Update crtc values up front so the driver can rely on them for mode
317 * setting.
318 */
319 crtc->mode = *mode;
320 crtc->x = x;
321 crtc->y = y;
322
Dave Airlief453ba02008-11-07 14:05:41 -0800323 /* Pass our mode to the connectors and the CRTC to give them a chance to
324 * adjust it according to limitations or connector properties, and also
325 * a chance to reject the mode entirely.
326 */
Daniel Vetter6295d602015-07-09 23:44:25 +0200327 drm_for_each_encoder(encoder, dev) {
Dave Airlief453ba02008-11-07 14:05:41 -0800328
329 if (encoder->crtc != crtc)
330 continue;
Sean Paul3b336ec2013-08-14 16:47:37 -0400331
Archit Taneja862e6862015-05-21 11:03:16 +0530332 ret = drm_bridge_mode_fixup(encoder->bridge,
333 mode, adjusted_mode);
334 if (!ret) {
335 DRM_DEBUG_KMS("Bridge fixup failed\n");
336 goto done;
Sean Paul3b336ec2013-08-14 16:47:37 -0400337 }
338
Dave Airlief453ba02008-11-07 14:05:41 -0800339 encoder_funcs = encoder->helper_private;
340 if (!(ret = encoder_funcs->mode_fixup(encoder, mode,
341 adjusted_mode))) {
Adam Jackson836e53d2011-10-10 16:21:27 -0400342 DRM_DEBUG_KMS("Encoder fixup failed\n");
Dave Airlief453ba02008-11-07 14:05:41 -0800343 goto done;
344 }
345 }
346
347 if (!(ret = crtc_funcs->mode_fixup(crtc, mode, adjusted_mode))) {
Adam Jackson836e53d2011-10-10 16:21:27 -0400348 DRM_DEBUG_KMS("CRTC fixup failed\n");
Dave Airlief453ba02008-11-07 14:05:41 -0800349 goto done;
350 }
Ville Syrjäläfa3ab4c2015-12-08 18:41:53 +0200351 DRM_DEBUG_KMS("[CRTC:%d:%s]\n", crtc->base.id, crtc->name);
Dave Airlief453ba02008-11-07 14:05:41 -0800352
Daniel Stone5a275282015-03-19 04:33:03 +0000353 crtc->hwmode = *adjusted_mode;
354
Dave Airlief453ba02008-11-07 14:05:41 -0800355 /* Prepare the encoders and CRTCs before setting the mode. */
Daniel Vetter6295d602015-07-09 23:44:25 +0200356 drm_for_each_encoder(encoder, dev) {
Dave Airlief453ba02008-11-07 14:05:41 -0800357
358 if (encoder->crtc != crtc)
359 continue;
Sean Paul3b336ec2013-08-14 16:47:37 -0400360
Archit Taneja862e6862015-05-21 11:03:16 +0530361 drm_bridge_disable(encoder->bridge);
Sean Paul3b336ec2013-08-14 16:47:37 -0400362
Dave Airlief453ba02008-11-07 14:05:41 -0800363 encoder_funcs = encoder->helper_private;
364 /* Disable the encoders as the first thing we do. */
365 encoder_funcs->prepare(encoder);
Sean Paul3b336ec2013-08-14 16:47:37 -0400366
Archit Taneja862e6862015-05-21 11:03:16 +0530367 drm_bridge_post_disable(encoder->bridge);
Dave Airlief453ba02008-11-07 14:05:41 -0800368 }
369
Jesse Barnes7bec7562009-02-23 16:09:34 -0800370 drm_crtc_prepare_encoders(dev);
371
Dave Airlief453ba02008-11-07 14:05:41 -0800372 crtc_funcs->prepare(crtc);
373
374 /* Set up the DPLL and any encoders state that needs to adjust or depend
375 * on the DPLL.
376 */
Chris Wilson5c3b82e2009-02-11 13:25:09 +0000377 ret = !crtc_funcs->mode_set(crtc, mode, adjusted_mode, x, y, old_fb);
378 if (!ret)
379 goto done;
Dave Airlief453ba02008-11-07 14:05:41 -0800380
Daniel Vetter6295d602015-07-09 23:44:25 +0200381 drm_for_each_encoder(encoder, dev) {
Dave Airlief453ba02008-11-07 14:05:41 -0800382
383 if (encoder->crtc != crtc)
384 continue;
385
Jerome Glisse94401062010-07-15 15:43:25 -0400386 DRM_DEBUG_KMS("[ENCODER:%d:%s] set [MODE:%d:%s]\n",
Jani Nikula83a8cfd2014-06-03 14:56:22 +0300387 encoder->base.id, encoder->name,
Jerome Glisse94401062010-07-15 15:43:25 -0400388 mode->base.id, mode->name);
Dave Airlief453ba02008-11-07 14:05:41 -0800389 encoder_funcs = encoder->helper_private;
390 encoder_funcs->mode_set(encoder, mode, adjusted_mode);
Sean Paul3b336ec2013-08-14 16:47:37 -0400391
Archit Taneja862e6862015-05-21 11:03:16 +0530392 drm_bridge_mode_set(encoder->bridge, mode, adjusted_mode);
Dave Airlief453ba02008-11-07 14:05:41 -0800393 }
394
395 /* Now enable the clocks, plane, pipe, and connectors that we set up. */
396 crtc_funcs->commit(crtc);
397
Daniel Vetter6295d602015-07-09 23:44:25 +0200398 drm_for_each_encoder(encoder, dev) {
Dave Airlief453ba02008-11-07 14:05:41 -0800399
400 if (encoder->crtc != crtc)
401 continue;
402
Archit Taneja862e6862015-05-21 11:03:16 +0530403 drm_bridge_pre_enable(encoder->bridge);
Sean Paul3b336ec2013-08-14 16:47:37 -0400404
Dave Airlief453ba02008-11-07 14:05:41 -0800405 encoder_funcs = encoder->helper_private;
406 encoder_funcs->commit(encoder);
407
Archit Taneja862e6862015-05-21 11:03:16 +0530408 drm_bridge_enable(encoder->bridge);
Dave Airlief453ba02008-11-07 14:05:41 -0800409 }
410
Mario Kleiner27641c32010-10-23 04:20:23 +0200411 /* Calculate and store various constants which
412 * are later needed by vblank and swap-completion
413 * timestamping. They are derived from true hwmode.
414 */
Ville Syrjälä545cdd52013-10-26 17:16:30 +0300415 drm_calc_timestamping_constants(crtc, &crtc->hwmode);
Mario Kleiner27641c32010-10-23 04:20:23 +0200416
Dave Airlief453ba02008-11-07 14:05:41 -0800417 /* FIXME: add subpixel order */
418done:
Chris Wilson021a8452011-01-28 11:31:56 +0000419 drm_mode_destroy(dev, adjusted_mode);
Dave Airlief453ba02008-11-07 14:05:41 -0800420 if (!ret) {
Ilija Hadzic7e99acd2013-10-29 11:09:44 -0400421 crtc->enabled = saved_enabled;
Dave Airlief453ba02008-11-07 14:05:41 -0800422 crtc->mode = saved_mode;
Daniel Stone5a275282015-03-19 04:33:03 +0000423 crtc->hwmode = saved_hwmode;
Dave Airlief453ba02008-11-07 14:05:41 -0800424 crtc->x = saved_x;
425 crtc->y = saved_y;
426 }
427
428 return ret;
429}
430EXPORT_SYMBOL(drm_crtc_helper_set_mode);
431
Thierry Redinga74591d2014-04-29 11:44:39 +0200432static void
Chris Wilson6eebd6b2011-11-28 21:10:05 +0000433drm_crtc_helper_disable(struct drm_crtc *crtc)
434{
435 struct drm_device *dev = crtc->dev;
436 struct drm_connector *connector;
437 struct drm_encoder *encoder;
438
439 /* Decouple all encoders and their attached connectors from this crtc */
Daniel Vetter6295d602015-07-09 23:44:25 +0200440 drm_for_each_encoder(encoder, dev) {
Chris Wilson6eebd6b2011-11-28 21:10:05 +0000441 if (encoder->crtc != crtc)
442 continue;
443
Daniel Vetter6295d602015-07-09 23:44:25 +0200444 drm_for_each_connector(connector, dev) {
Chris Wilson6eebd6b2011-11-28 21:10:05 +0000445 if (connector->encoder != encoder)
446 continue;
447
448 connector->encoder = NULL;
Thierry Redinga6ad6232013-10-02 15:50:06 +0200449
450 /*
451 * drm_helper_disable_unused_functions() ought to be
452 * doing this, but since we've decoupled the encoder
453 * from the connector above, the required connection
454 * between them is henceforth no longer available.
455 */
456 connector->dpms = DRM_MODE_DPMS_OFF;
Chris Wilson6eebd6b2011-11-28 21:10:05 +0000457 }
458 }
459
Daniel Vetterb182cc52014-03-20 14:26:34 +0100460 __drm_helper_disable_unused_functions(dev);
Chris Wilson6eebd6b2011-11-28 21:10:05 +0000461}
462
Dave Airlief453ba02008-11-07 14:05:41 -0800463/**
464 * drm_crtc_helper_set_config - set a new config from userspace
Daniel Vetter0d4ed4c2012-11-01 14:45:16 +0100465 * @set: mode set configuration
Dave Airlief453ba02008-11-07 14:05:41 -0800466 *
Daniel Vetter2be94972015-12-04 09:45:46 +0100467 * The drm_crtc_helper_set_config() helper function implements the set_config
468 * callback of struct &drm_crtc_funcs for drivers using the legacy CRTC helpers.
469 *
470 * It first tries to locate the best encoder for each connector by calling the
471 * connector ->best_encoder() (struct &drm_connector_helper_funcs) helper
472 * operation.
473 *
474 * After locating the appropriate encoders, the helper function will call the
475 * mode_fixup encoder and CRTC helper operations to adjust the requested mode,
476 * or reject it completely in which case an error will be returned to the
477 * application. If the new configuration after mode adjustment is identical to
478 * the current configuration the helper function will return without performing
479 * any other operation.
480 *
481 * If the adjusted mode is identical to the current mode but changes to the
482 * frame buffer need to be applied, the drm_crtc_helper_set_config() function
483 * will call the CRTC ->mode_set_base() (struct &drm_crtc_helper_funcs) helper
484 * operation.
485 *
486 * If the adjusted mode differs from the current mode, or if the
487 * ->mode_set_base() helper operation is not provided, the helper function
488 * performs a full mode set sequence by calling the ->prepare(), ->mode_set()
489 * and ->commit() CRTC and encoder helper operations, in that order.
490 * Alternatively it can also use the dpms and disable helper operations. For
491 * details see struct &drm_crtc_helper_funcs and struct
492 * &drm_encoder_helper_funcs.
493 *
494 * This function is deprecated. New drivers must implement atomic modeset
495 * support, for which this function is unsuitable. Instead drivers should use
496 * drm_atomic_helper_set_config().
Dave Airlief453ba02008-11-07 14:05:41 -0800497 *
Daniel Vetter3fcc42e2014-01-23 22:58:26 +0100498 * Returns:
499 * Returns 0 on success, negative errno numbers on failure.
Dave Airlief453ba02008-11-07 14:05:41 -0800500 */
501int drm_crtc_helper_set_config(struct drm_mode_set *set)
502{
503 struct drm_device *dev;
Ilija Hadzic02ee4e92013-10-29 11:09:46 -0400504 struct drm_crtc *new_crtc;
Maarten Maathuise67aae72009-08-27 10:18:29 +0200505 struct drm_encoder *save_encoders, *new_encoder, *encoder;
Jakob Bornecrantz4cb72b12009-08-03 13:43:59 +0100506 bool mode_changed = false; /* if true do a full mode set */
507 bool fb_changed = false; /* if true and !mode_changed just do a flip */
Maarten Maathuise67aae72009-08-27 10:18:29 +0200508 struct drm_connector *save_connectors, *connector;
Dave Airlief453ba02008-11-07 14:05:41 -0800509 int count = 0, ro, fail = 0;
Jani Nikulabe26a662015-03-11 11:51:06 +0200510 const struct drm_crtc_helper_funcs *crtc_funcs;
Jesse Barnesc5006cfe2011-11-07 10:39:57 -0800511 struct drm_mode_set save_set;
Laurent Pinchart4a1b0712012-05-17 13:27:21 +0200512 int ret;
Keith Packardbf9dc102010-11-26 10:45:58 -0800513 int i;
Dave Airlief453ba02008-11-07 14:05:41 -0800514
Zhao Yakui58367ed2009-07-20 13:48:07 +0800515 DRM_DEBUG_KMS("\n");
Dave Airlief453ba02008-11-07 14:05:41 -0800516
Daniel Vettere58de882013-06-15 00:13:11 +0200517 BUG_ON(!set);
518 BUG_ON(!set->crtc);
519 BUG_ON(!set->crtc->helper_private);
Dave Airlief453ba02008-11-07 14:05:41 -0800520
Daniel Vettere58de882013-06-15 00:13:11 +0200521 /* Enforce sane interface api - has been abused by the fb helper. */
522 BUG_ON(!set->mode && set->fb);
523 BUG_ON(set->fb && set->num_connectors == 0);
Dave Airlief453ba02008-11-07 14:05:41 -0800524
525 crtc_funcs = set->crtc->helper_private;
526
Chris Wilsonede3ff52011-01-31 11:16:33 +0000527 if (!set->mode)
528 set->fb = NULL;
529
Jerome Glisse94401062010-07-15 15:43:25 -0400530 if (set->fb) {
Ville Syrjäläfa3ab4c2015-12-08 18:41:53 +0200531 DRM_DEBUG_KMS("[CRTC:%d:%s] [FB:%d] #connectors=%d (x y) (%i %i)\n",
532 set->crtc->base.id, set->crtc->name,
533 set->fb->base.id,
534 (int)set->num_connectors, set->x, set->y);
Jerome Glisse94401062010-07-15 15:43:25 -0400535 } else {
Ville Syrjäläfa3ab4c2015-12-08 18:41:53 +0200536 DRM_DEBUG_KMS("[CRTC:%d:%s] [NOFB]\n",
537 set->crtc->base.id, set->crtc->name);
Thierry Redinga74591d2014-04-29 11:44:39 +0200538 drm_crtc_helper_disable(set->crtc);
539 return 0;
Jerome Glisse94401062010-07-15 15:43:25 -0400540 }
Dave Airlief453ba02008-11-07 14:05:41 -0800541
542 dev = set->crtc->dev;
543
Daniel Vetter62ff94a2014-01-23 22:18:47 +0100544 drm_warn_on_modeset_not_all_locked(dev);
545
Ilija Hadzic02ee4e92013-10-29 11:09:46 -0400546 /*
547 * Allocate space for the backup of all (non-pointer) encoder and
548 * connector data.
549 */
Maarten Maathuise67aae72009-08-27 10:18:29 +0200550 save_encoders = kzalloc(dev->mode_config.num_encoder *
551 sizeof(struct drm_encoder), GFP_KERNEL);
Ilija Hadzic02ee4e92013-10-29 11:09:46 -0400552 if (!save_encoders)
Dave Airlief453ba02008-11-07 14:05:41 -0800553 return -ENOMEM;
Dave Airlief453ba02008-11-07 14:05:41 -0800554
Maarten Maathuise67aae72009-08-27 10:18:29 +0200555 save_connectors = kzalloc(dev->mode_config.num_connector *
556 sizeof(struct drm_connector), GFP_KERNEL);
557 if (!save_connectors) {
Maarten Maathuise67aae72009-08-27 10:18:29 +0200558 kfree(save_encoders);
559 return -ENOMEM;
560 }
561
Ilija Hadzic02ee4e92013-10-29 11:09:46 -0400562 /*
563 * Copy data. Note that driver private data is not affected.
Maarten Maathuise67aae72009-08-27 10:18:29 +0200564 * Should anything bad happen only the expected state is
565 * restored, not the drivers personal bookkeeping.
566 */
567 count = 0;
Daniel Vetter6295d602015-07-09 23:44:25 +0200568 drm_for_each_encoder(encoder, dev) {
Maarten Maathuise67aae72009-08-27 10:18:29 +0200569 save_encoders[count++] = *encoder;
570 }
571
572 count = 0;
Daniel Vetter6295d602015-07-09 23:44:25 +0200573 drm_for_each_connector(connector, dev) {
Maarten Maathuise67aae72009-08-27 10:18:29 +0200574 save_connectors[count++] = *connector;
575 }
576
Jesse Barnesc5006cfe2011-11-07 10:39:57 -0800577 save_set.crtc = set->crtc;
578 save_set.mode = &set->crtc->mode;
579 save_set.x = set->crtc->x;
580 save_set.y = set->crtc->y;
Matt Roperf4510a22014-04-01 15:22:40 -0700581 save_set.fb = set->crtc->primary->fb;
Jesse Barnesc5006cfe2011-11-07 10:39:57 -0800582
Dave Airlief453ba02008-11-07 14:05:41 -0800583 /* We should be able to check here if the fb has the same properties
584 * and then just flip_or_move it */
Matt Roperf4510a22014-04-01 15:22:40 -0700585 if (set->crtc->primary->fb != set->fb) {
Jesse Barnes712531b2009-01-09 13:56:14 -0800586 /* If we have no fb then treat it as a full mode set */
Matt Roperf4510a22014-04-01 15:22:40 -0700587 if (set->crtc->primary->fb == NULL) {
Zhao Yakui58367ed2009-07-20 13:48:07 +0800588 DRM_DEBUG_KMS("crtc has no fb, full mode set\n");
Jesse Barnes712531b2009-01-09 13:56:14 -0800589 mode_changed = true;
Laurent Pinchartce83adf2013-04-22 01:38:47 +0200590 } else if (set->fb->pixel_format !=
Matt Roperf4510a22014-04-01 15:22:40 -0700591 set->crtc->primary->fb->pixel_format) {
Laurent Pinchartce83adf2013-04-22 01:38:47 +0200592 mode_changed = true;
Dave Airlie8dff4742010-02-11 14:28:58 +1000593 } else
Jesse Barnes712531b2009-01-09 13:56:14 -0800594 fb_changed = true;
Dave Airlief453ba02008-11-07 14:05:41 -0800595 }
596
597 if (set->x != set->crtc->x || set->y != set->crtc->y)
Jesse Barnes712531b2009-01-09 13:56:14 -0800598 fb_changed = true;
Dave Airlief453ba02008-11-07 14:05:41 -0800599
Liu Ying2deafc72016-01-14 14:00:10 +0800600 if (!drm_mode_equal(set->mode, &set->crtc->mode)) {
Zhao Yakui58367ed2009-07-20 13:48:07 +0800601 DRM_DEBUG_KMS("modes are different, full mode set\n");
Dave Airlief453ba02008-11-07 14:05:41 -0800602 drm_mode_debug_printmodeline(&set->crtc->mode);
603 drm_mode_debug_printmodeline(set->mode);
Jesse Barnes712531b2009-01-09 13:56:14 -0800604 mode_changed = true;
Dave Airlief453ba02008-11-07 14:05:41 -0800605 }
606
607 /* a) traverse passed in connector list and get encoders for them */
608 count = 0;
Daniel Vetter6295d602015-07-09 23:44:25 +0200609 drm_for_each_connector(connector, dev) {
Jani Nikulabe26a662015-03-11 11:51:06 +0200610 const struct drm_connector_helper_funcs *connector_funcs =
Dave Airlief453ba02008-11-07 14:05:41 -0800611 connector->helper_private;
Dave Airlief453ba02008-11-07 14:05:41 -0800612 new_encoder = connector->encoder;
613 for (ro = 0; ro < set->num_connectors; ro++) {
614 if (set->connectors[ro] == connector) {
615 new_encoder = connector_funcs->best_encoder(connector);
616 /* if we can't get an encoder for a connector
617 we are setting now - then fail */
618 if (new_encoder == NULL)
619 /* don't break so fail path works correct */
620 fail = 1;
Daniel Vetter25f397a2013-07-19 18:57:11 +0200621
622 if (connector->dpms != DRM_MODE_DPMS_ON) {
623 DRM_DEBUG_KMS("connector dpms not on, full mode switch\n");
624 mode_changed = true;
625 }
Daniel Vetter177cf922014-04-01 22:14:59 +0200626
627 break;
Dave Airlief453ba02008-11-07 14:05:41 -0800628 }
629 }
630
631 if (new_encoder != connector->encoder) {
Zhao Yakui58367ed2009-07-20 13:48:07 +0800632 DRM_DEBUG_KMS("encoder changed, full mode switch\n");
Jesse Barnes712531b2009-01-09 13:56:14 -0800633 mode_changed = true;
Maarten Maathuisff846ab2009-08-19 00:56:45 +0200634 /* If the encoder is reused for another connector, then
635 * the appropriate crtc will be set later.
636 */
Maarten Maathuisff6fdbe2009-09-01 03:39:04 +0200637 if (connector->encoder)
638 connector->encoder->crtc = NULL;
Dave Airlief453ba02008-11-07 14:05:41 -0800639 connector->encoder = new_encoder;
640 }
641 }
642
643 if (fail) {
644 ret = -EINVAL;
Maarten Maathuise67aae72009-08-27 10:18:29 +0200645 goto fail;
Dave Airlief453ba02008-11-07 14:05:41 -0800646 }
647
648 count = 0;
Daniel Vetter6295d602015-07-09 23:44:25 +0200649 drm_for_each_connector(connector, dev) {
Dave Airlief453ba02008-11-07 14:05:41 -0800650 if (!connector->encoder)
651 continue;
652
Dave Airlief453ba02008-11-07 14:05:41 -0800653 if (connector->encoder->crtc == set->crtc)
654 new_crtc = NULL;
655 else
656 new_crtc = connector->encoder->crtc;
657
658 for (ro = 0; ro < set->num_connectors; ro++) {
659 if (set->connectors[ro] == connector)
660 new_crtc = set->crtc;
661 }
Jesse Barnes7bec7562009-02-23 16:09:34 -0800662
663 /* Make sure the new CRTC will work with the encoder */
664 if (new_crtc &&
665 !drm_encoder_crtc_ok(connector->encoder, new_crtc)) {
666 ret = -EINVAL;
Maarten Maathuise67aae72009-08-27 10:18:29 +0200667 goto fail;
Jesse Barnes7bec7562009-02-23 16:09:34 -0800668 }
Dave Airlief453ba02008-11-07 14:05:41 -0800669 if (new_crtc != connector->encoder->crtc) {
Zhao Yakui58367ed2009-07-20 13:48:07 +0800670 DRM_DEBUG_KMS("crtc changed, full mode switch\n");
Jesse Barnes712531b2009-01-09 13:56:14 -0800671 mode_changed = true;
Dave Airlief453ba02008-11-07 14:05:41 -0800672 connector->encoder->crtc = new_crtc;
673 }
Jerome Glisse94401062010-07-15 15:43:25 -0400674 if (new_crtc) {
Ville Syrjäläfa3ab4c2015-12-08 18:41:53 +0200675 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] to [CRTC:%d:%s]\n",
676 connector->base.id, connector->name,
677 new_crtc->base.id, new_crtc->name);
Jerome Glisse94401062010-07-15 15:43:25 -0400678 } else {
679 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] to [NOCRTC]\n",
Ville Syrjäläfa3ab4c2015-12-08 18:41:53 +0200680 connector->base.id, connector->name);
Jerome Glisse94401062010-07-15 15:43:25 -0400681 }
Dave Airlief453ba02008-11-07 14:05:41 -0800682 }
683
684 /* mode_set_base is not a required function */
Jesse Barnes712531b2009-01-09 13:56:14 -0800685 if (fb_changed && !crtc_funcs->mode_set_base)
686 mode_changed = true;
Dave Airlief453ba02008-11-07 14:05:41 -0800687
Jesse Barnes712531b2009-01-09 13:56:14 -0800688 if (mode_changed) {
Ilija Hadzic48b1f5d2013-10-29 11:09:45 -0400689 if (drm_helper_crtc_in_use(set->crtc)) {
Zhao Yakui58367ed2009-07-20 13:48:07 +0800690 DRM_DEBUG_KMS("attempting to set mode from"
691 " userspace\n");
Dave Airlief453ba02008-11-07 14:05:41 -0800692 drm_mode_debug_printmodeline(set->mode);
Matt Roperf4510a22014-04-01 15:22:40 -0700693 set->crtc->primary->fb = set->fb;
Dave Airlief453ba02008-11-07 14:05:41 -0800694 if (!drm_crtc_helper_set_mode(set->crtc, set->mode,
Kristian Høgsberg3c4fdcf2008-12-17 22:14:46 -0500695 set->x, set->y,
Ilija Hadzicbec2eac2013-10-29 11:09:42 -0400696 save_set.fb)) {
Ville Syrjäläfa3ab4c2015-12-08 18:41:53 +0200697 DRM_ERROR("failed to set mode on [CRTC:%d:%s]\n",
698 set->crtc->base.id, set->crtc->name);
Matt Roperf4510a22014-04-01 15:22:40 -0700699 set->crtc->primary->fb = save_set.fb;
Dave Airlief453ba02008-11-07 14:05:41 -0800700 ret = -EINVAL;
Maarten Maathuise67aae72009-08-27 10:18:29 +0200701 goto fail;
Dave Airlief453ba02008-11-07 14:05:41 -0800702 }
Daniel Vetter25f397a2013-07-19 18:57:11 +0200703 DRM_DEBUG_KMS("Setting connector DPMS state to on\n");
704 for (i = 0; i < set->num_connectors; i++) {
705 DRM_DEBUG_KMS("\t[CONNECTOR:%d:%s] set DPMS on\n", set->connectors[i]->base.id,
Jani Nikula25933822014-06-03 14:56:20 +0300706 set->connectors[i]->name);
Daniel Vetter25f397a2013-07-19 18:57:11 +0200707 set->connectors[i]->funcs->dpms(set->connectors[i], DRM_MODE_DPMS_ON);
708 }
Dave Airlief453ba02008-11-07 14:05:41 -0800709 }
Daniel Vetterb182cc52014-03-20 14:26:34 +0100710 __drm_helper_disable_unused_functions(dev);
Jesse Barnes712531b2009-01-09 13:56:14 -0800711 } else if (fb_changed) {
Ben Skeggs9b1596a2009-09-18 10:43:52 +1000712 set->crtc->x = set->x;
713 set->crtc->y = set->y;
Matt Roperf4510a22014-04-01 15:22:40 -0700714 set->crtc->primary->fb = set->fb;
Chris Wilson5c3b82e2009-02-11 13:25:09 +0000715 ret = crtc_funcs->mode_set_base(set->crtc,
Ilija Hadzicbec2eac2013-10-29 11:09:42 -0400716 set->x, set->y, save_set.fb);
Chris Wilson0ba41e42011-01-08 15:10:41 +0000717 if (ret != 0) {
Ilija Hadzicfbce4062013-10-29 11:09:43 -0400718 set->crtc->x = save_set.x;
719 set->crtc->y = save_set.y;
Matt Roperf4510a22014-04-01 15:22:40 -0700720 set->crtc->primary->fb = save_set.fb;
Maarten Maathuise67aae72009-08-27 10:18:29 +0200721 goto fail;
Chris Wilson0ba41e42011-01-08 15:10:41 +0000722 }
Dave Airlief453ba02008-11-07 14:05:41 -0800723 }
724
Maarten Maathuise67aae72009-08-27 10:18:29 +0200725 kfree(save_connectors);
Dave Airlief453ba02008-11-07 14:05:41 -0800726 kfree(save_encoders);
Dave Airlief453ba02008-11-07 14:05:41 -0800727 return 0;
728
Maarten Maathuise67aae72009-08-27 10:18:29 +0200729fail:
730 /* Restore all previous data. */
Dave Airlief453ba02008-11-07 14:05:41 -0800731 count = 0;
Daniel Vetter6295d602015-07-09 23:44:25 +0200732 drm_for_each_encoder(encoder, dev) {
Maarten Maathuise67aae72009-08-27 10:18:29 +0200733 *encoder = save_encoders[count++];
Chris Wilsone62fb642009-02-11 16:39:21 +0000734 }
Maarten Maathuise67aae72009-08-27 10:18:29 +0200735
Dave Airlief453ba02008-11-07 14:05:41 -0800736 count = 0;
Daniel Vetter6295d602015-07-09 23:44:25 +0200737 drm_for_each_connector(connector, dev) {
Maarten Maathuise67aae72009-08-27 10:18:29 +0200738 *connector = save_connectors[count++];
Dave Airlief453ba02008-11-07 14:05:41 -0800739 }
Maarten Maathuise67aae72009-08-27 10:18:29 +0200740
Jesse Barnesc5006cfe2011-11-07 10:39:57 -0800741 /* Try to restore the config */
742 if (mode_changed &&
743 !drm_crtc_helper_set_mode(save_set.crtc, save_set.mode, save_set.x,
744 save_set.y, save_set.fb))
745 DRM_ERROR("failed to restore config after modeset failure\n");
746
Maarten Maathuise67aae72009-08-27 10:18:29 +0200747 kfree(save_connectors);
Dave Airlief453ba02008-11-07 14:05:41 -0800748 kfree(save_encoders);
749 return ret;
750}
751EXPORT_SYMBOL(drm_crtc_helper_set_config);
752
Keith Packardc9fb15f2009-05-30 20:42:28 -0700753static int drm_helper_choose_encoder_dpms(struct drm_encoder *encoder)
754{
755 int dpms = DRM_MODE_DPMS_OFF;
756 struct drm_connector *connector;
757 struct drm_device *dev = encoder->dev;
758
Daniel Vetter9a9f5ce2015-07-09 23:44:34 +0200759 drm_for_each_connector(connector, dev)
Keith Packardc9fb15f2009-05-30 20:42:28 -0700760 if (connector->encoder == encoder)
761 if (connector->dpms < dpms)
762 dpms = connector->dpms;
763 return dpms;
764}
765
Sean Paul3b336ec2013-08-14 16:47:37 -0400766/* Helper which handles bridge ordering around encoder dpms */
767static void drm_helper_encoder_dpms(struct drm_encoder *encoder, int mode)
768{
769 struct drm_bridge *bridge = encoder->bridge;
Jani Nikulabe26a662015-03-11 11:51:06 +0200770 const struct drm_encoder_helper_funcs *encoder_funcs;
Sean Paul3b336ec2013-08-14 16:47:37 -0400771
Archit Taneja862e6862015-05-21 11:03:16 +0530772 if (mode == DRM_MODE_DPMS_ON)
773 drm_bridge_pre_enable(bridge);
774 else
775 drm_bridge_disable(bridge);
Sean Paul3b336ec2013-08-14 16:47:37 -0400776
777 encoder_funcs = encoder->helper_private;
778 if (encoder_funcs->dpms)
779 encoder_funcs->dpms(encoder, mode);
780
Archit Taneja862e6862015-05-21 11:03:16 +0530781 if (mode == DRM_MODE_DPMS_ON)
782 drm_bridge_enable(bridge);
783 else
784 drm_bridge_post_disable(bridge);
Sean Paul3b336ec2013-08-14 16:47:37 -0400785}
786
Keith Packardc9fb15f2009-05-30 20:42:28 -0700787static int drm_helper_choose_crtc_dpms(struct drm_crtc *crtc)
788{
789 int dpms = DRM_MODE_DPMS_OFF;
790 struct drm_connector *connector;
791 struct drm_device *dev = crtc->dev;
792
Daniel Vetter9a9f5ce2015-07-09 23:44:34 +0200793 drm_for_each_connector(connector, dev)
Keith Packardc9fb15f2009-05-30 20:42:28 -0700794 if (connector->encoder && connector->encoder->crtc == crtc)
795 if (connector->dpms < dpms)
796 dpms = connector->dpms;
797 return dpms;
798}
799
800/**
Daniel Vetter0d4ed4c2012-11-01 14:45:16 +0100801 * drm_helper_connector_dpms() - connector dpms helper implementation
802 * @connector: affected connector
803 * @mode: DPMS mode
Keith Packardc9fb15f2009-05-30 20:42:28 -0700804 *
Daniel Vetter2be94972015-12-04 09:45:46 +0100805 * The drm_helper_connector_dpms() helper function implements the ->dpms()
806 * callback of struct &drm_connector_funcs for drivers using the legacy CRTC helpers.
807 *
808 * This is the main helper function provided by the CRTC helper framework for
Daniel Vetter0d4ed4c2012-11-01 14:45:16 +0100809 * implementing the DPMS connector attribute. It computes the new desired DPMS
Daniel Vetter2be94972015-12-04 09:45:46 +0100810 * state for all encoders and CRTCs in the output mesh and calls the ->dpms()
811 * callbacks provided by the driver in struct &drm_crtc_helper_funcs and struct
812 * &drm_encoder_helper_funcs appropriately.
813 *
814 * This function is deprecated. New drivers must implement atomic modeset
815 * support, for which this function is unsuitable. Instead drivers should use
816 * drm_atomic_helper_connector_dpms().
Maarten Lankhorst9a69a9a2015-07-21 11:34:55 +0200817 *
818 * Returns:
819 * Always returns 0.
Keith Packardc9fb15f2009-05-30 20:42:28 -0700820 */
Maarten Lankhorst9a69a9a2015-07-21 11:34:55 +0200821int drm_helper_connector_dpms(struct drm_connector *connector, int mode)
Keith Packardc9fb15f2009-05-30 20:42:28 -0700822{
823 struct drm_encoder *encoder = connector->encoder;
824 struct drm_crtc *crtc = encoder ? encoder->crtc : NULL;
Sean Paul3b336ec2013-08-14 16:47:37 -0400825 int old_dpms, encoder_dpms = DRM_MODE_DPMS_OFF;
Keith Packardc9fb15f2009-05-30 20:42:28 -0700826
827 if (mode == connector->dpms)
Maarten Lankhorst9a69a9a2015-07-21 11:34:55 +0200828 return 0;
Keith Packardc9fb15f2009-05-30 20:42:28 -0700829
830 old_dpms = connector->dpms;
831 connector->dpms = mode;
832
Sean Paul3b336ec2013-08-14 16:47:37 -0400833 if (encoder)
834 encoder_dpms = drm_helper_choose_encoder_dpms(encoder);
835
Keith Packardc9fb15f2009-05-30 20:42:28 -0700836 /* from off to on, do crtc then encoder */
837 if (mode < old_dpms) {
838 if (crtc) {
Jani Nikulabe26a662015-03-11 11:51:06 +0200839 const struct drm_crtc_helper_funcs *crtc_funcs = crtc->helper_private;
Keith Packardc9fb15f2009-05-30 20:42:28 -0700840 if (crtc_funcs->dpms)
841 (*crtc_funcs->dpms) (crtc,
842 drm_helper_choose_crtc_dpms(crtc));
843 }
Sean Paul3b336ec2013-08-14 16:47:37 -0400844 if (encoder)
845 drm_helper_encoder_dpms(encoder, encoder_dpms);
Keith Packardc9fb15f2009-05-30 20:42:28 -0700846 }
847
848 /* from on to off, do encoder then crtc */
849 if (mode > old_dpms) {
Sean Paul3b336ec2013-08-14 16:47:37 -0400850 if (encoder)
851 drm_helper_encoder_dpms(encoder, encoder_dpms);
Keith Packardc9fb15f2009-05-30 20:42:28 -0700852 if (crtc) {
Jani Nikulabe26a662015-03-11 11:51:06 +0200853 const struct drm_crtc_helper_funcs *crtc_funcs = crtc->helper_private;
Keith Packardc9fb15f2009-05-30 20:42:28 -0700854 if (crtc_funcs->dpms)
855 (*crtc_funcs->dpms) (crtc,
856 drm_helper_choose_crtc_dpms(crtc));
857 }
858 }
859
Maarten Lankhorst9a69a9a2015-07-21 11:34:55 +0200860 return 0;
Keith Packardc9fb15f2009-05-30 20:42:28 -0700861}
862EXPORT_SYMBOL(drm_helper_connector_dpms);
863
Daniel Vetter3fcc42e2014-01-23 22:58:26 +0100864/**
865 * drm_helper_mode_fill_fb_struct - fill out framebuffer metadata
866 * @fb: drm_framebuffer object to fill out
867 * @mode_cmd: metadata from the userspace fb creation request
868 *
869 * This helper can be used in a drivers fb_create callback to pre-fill the fb's
870 * metadata fields.
871 */
Daniel Vetter9fd93782014-01-23 22:16:24 +0100872void drm_helper_mode_fill_fb_struct(struct drm_framebuffer *fb,
Ville Syrjälä1eb83452015-11-11 19:11:29 +0200873 const struct drm_mode_fb_cmd2 *mode_cmd)
Dave Airlief453ba02008-11-07 14:05:41 -0800874{
Ville Syrjälä01f2c772011-12-20 00:06:49 +0200875 int i;
876
Dave Airlief453ba02008-11-07 14:05:41 -0800877 fb->width = mode_cmd->width;
878 fb->height = mode_cmd->height;
Ville Syrjälä01f2c772011-12-20 00:06:49 +0200879 for (i = 0; i < 4; i++) {
880 fb->pitches[i] = mode_cmd->pitches[i];
881 fb->offsets[i] = mode_cmd->offsets[i];
Rob Clarke3eb3252015-02-05 14:41:52 +0000882 fb->modifier[i] = mode_cmd->modifier[i];
Ville Syrjälä01f2c772011-12-20 00:06:49 +0200883 }
Dave Airlie248dbc22011-11-29 20:02:54 +0000884 drm_fb_get_bpp_depth(mode_cmd->pixel_format, &fb->depth,
Jesse Barnes308e5bc2011-11-14 14:51:28 -0800885 &fb->bits_per_pixel);
886 fb->pixel_format = mode_cmd->pixel_format;
Fabien DESSENNEd980b182014-07-01 14:40:42 +0200887 fb->flags = mode_cmd->flags;
Dave Airlief453ba02008-11-07 14:05:41 -0800888}
889EXPORT_SYMBOL(drm_helper_mode_fill_fb_struct);
890
Daniel Vetteraa4cd912014-01-22 16:42:02 +0100891/**
892 * drm_helper_resume_force_mode - force-restore mode setting configuration
893 * @dev: drm_device which should be restored
894 *
895 * Drivers which use the mode setting helpers can use this function to
896 * force-restore the mode setting configuration e.g. on resume or when something
897 * else might have trampled over the hw state (like some overzealous old BIOSen
898 * tended to do).
Daniel Vetter00d762c2014-01-23 22:28:30 +0100899 *
900 * This helper doesn't provide a error return value since restoring the old
901 * config should never fail due to resource allocation issues since the driver
902 * has successfully set the restored configuration already. Hence this should
903 * boil down to the equivalent of a few dpms on calls, which also don't provide
904 * an error code.
905 *
906 * Drivers where simply restoring an old configuration again might fail (e.g.
907 * due to slight differences in allocating shared resources when the
908 * configuration is restored in a different order than when userspace set it up)
909 * need to use their own restore logic.
Thierry Reding14942762015-12-02 17:50:04 +0100910 *
911 * This function is deprecated. New drivers should implement atomic mode-
912 * setting and use the atomic suspend/resume helpers.
913 *
914 * See also:
915 * drm_atomic_helper_suspend(), drm_atomic_helper_resume()
Daniel Vetteraa4cd912014-01-22 16:42:02 +0100916 */
Daniel Vetter00d762c2014-01-23 22:28:30 +0100917void drm_helper_resume_force_mode(struct drm_device *dev)
Dave Airlief453ba02008-11-07 14:05:41 -0800918{
919 struct drm_crtc *crtc;
David John89347bb2009-12-31 12:00:46 +0530920 struct drm_encoder *encoder;
Jani Nikulabe26a662015-03-11 11:51:06 +0200921 const struct drm_crtc_helper_funcs *crtc_funcs;
Daniel Vetter00d762c2014-01-23 22:28:30 +0100922 int encoder_dpms;
923 bool ret;
Dave Airlief453ba02008-11-07 14:05:41 -0800924
Dave Airlie3ea87852014-03-21 10:45:40 +1000925 drm_modeset_lock_all(dev);
Daniel Vetter6295d602015-07-09 23:44:25 +0200926 drm_for_each_crtc(crtc, dev) {
Dave Airlief453ba02008-11-07 14:05:41 -0800927
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,
Matt Roperf4510a22014-04-01 15:22:40 -0700932 crtc->x, crtc->y, crtc->primary->fb);
Dave Airlief453ba02008-11-07 14:05:41 -0800933
Daniel Vetter00d762c2014-01-23 22:28:30 +0100934 /* Restoring the old config should never fail! */
Dave Airlief453ba02008-11-07 14:05:41 -0800935 if (ret == false)
936 DRM_ERROR("failed to set mode on crtc %p\n", crtc);
David John89347bb2009-12-31 12:00:46 +0530937
938 /* Turn off outputs that were already powered off */
939 if (drm_helper_choose_crtc_dpms(crtc)) {
Daniel Vetter6295d602015-07-09 23:44:25 +0200940 drm_for_each_encoder(encoder, dev) {
David John89347bb2009-12-31 12:00:46 +0530941
942 if(encoder->crtc != crtc)
943 continue;
944
Sean Paul3b336ec2013-08-14 16:47:37 -0400945 encoder_dpms = drm_helper_choose_encoder_dpms(
946 encoder);
947
948 drm_helper_encoder_dpms(encoder, encoder_dpms);
David John89347bb2009-12-31 12:00:46 +0530949 }
Chris Wilson817e6312010-08-06 15:03:31 +0100950
951 crtc_funcs = crtc->helper_private;
952 if (crtc_funcs->dpms)
953 (*crtc_funcs->dpms) (crtc,
954 drm_helper_choose_crtc_dpms(crtc));
David John89347bb2009-12-31 12:00:46 +0530955 }
Dave Airlief453ba02008-11-07 14:05:41 -0800956 }
Daniel Vetter00d762c2014-01-23 22:28:30 +0100957
Zhao Yakuiaf4fcb52009-07-08 14:13:13 +0800958 /* disable the unused connectors while restoring the modesetting */
Daniel Vetterb182cc52014-03-20 14:26:34 +0100959 __drm_helper_disable_unused_functions(dev);
Dave Airlie3ea87852014-03-21 10:45:40 +1000960 drm_modeset_unlock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -0800961}
962EXPORT_SYMBOL(drm_helper_resume_force_mode);
Daniel Vetter2f324b42014-10-29 11:13:47 +0100963
964/**
965 * drm_helper_crtc_mode_set - mode_set implementation for atomic plane helpers
966 * @crtc: DRM CRTC
967 * @mode: DRM display mode which userspace requested
968 * @adjusted_mode: DRM display mode adjusted by ->mode_fixup callbacks
969 * @x: x offset of the CRTC scanout area on the underlying framebuffer
970 * @y: y offset of the CRTC scanout area on the underlying framebuffer
971 * @old_fb: previous framebuffer
972 *
973 * This function implements a callback useable as the ->mode_set callback
Daniel Vetter2be94972015-12-04 09:45:46 +0100974 * required by the CRTC helpers. Besides the atomic plane helper functions for
Daniel Vetter2f324b42014-10-29 11:13:47 +0100975 * the primary plane the driver must also provide the ->mode_set_nofb callback
Daniel Vetter2be94972015-12-04 09:45:46 +0100976 * to set up the CRTC.
Daniel Vetter2f324b42014-10-29 11:13:47 +0100977 *
978 * This is a transitional helper useful for converting drivers to the atomic
979 * interfaces.
980 */
981int drm_helper_crtc_mode_set(struct drm_crtc *crtc, struct drm_display_mode *mode,
982 struct drm_display_mode *adjusted_mode, int x, int y,
983 struct drm_framebuffer *old_fb)
984{
985 struct drm_crtc_state *crtc_state;
Jani Nikulabe26a662015-03-11 11:51:06 +0200986 const struct drm_crtc_helper_funcs *crtc_funcs = crtc->helper_private;
Daniel Vetter2f324b42014-10-29 11:13:47 +0100987 int ret;
988
989 if (crtc->funcs->atomic_duplicate_state)
990 crtc_state = crtc->funcs->atomic_duplicate_state(crtc);
Daniel Vettere4f31ad2015-07-02 16:33:53 +0200991 else {
992 if (!crtc->state)
993 drm_atomic_helper_crtc_reset(crtc);
994
Daniel Vetterce14ec22015-07-02 15:16:39 +0200995 crtc_state = drm_atomic_helper_crtc_duplicate_state(crtc);
Daniel Vettere4f31ad2015-07-02 16:33:53 +0200996 }
Daniel Vetterce14ec22015-07-02 15:16:39 +0200997
998 if (!crtc_state)
999 return -ENOMEM;
Daniel Vetter2f324b42014-10-29 11:13:47 +01001000
Daniel Vetter2f324b42014-10-29 11:13:47 +01001001 crtc_state->planes_changed = true;
Daniel Vetter623369e2014-09-16 17:50:47 +02001002 crtc_state->mode_changed = true;
Daniel Stone819364d2015-05-26 14:36:48 +01001003 ret = drm_atomic_set_mode_for_crtc(crtc_state, mode);
1004 if (ret)
1005 goto out;
Daniel Vetter2f324b42014-10-29 11:13:47 +01001006 drm_mode_copy(&crtc_state->adjusted_mode, adjusted_mode);
1007
1008 if (crtc_funcs->atomic_check) {
1009 ret = crtc_funcs->atomic_check(crtc, crtc_state);
Daniel Stone9f658b72015-05-22 13:34:45 +01001010 if (ret)
1011 goto out;
Daniel Vetter2f324b42014-10-29 11:13:47 +01001012 }
1013
1014 swap(crtc->state, crtc_state);
1015
1016 crtc_funcs->mode_set_nofb(crtc);
1017
Daniel Stone9f658b72015-05-22 13:34:45 +01001018 ret = drm_helper_crtc_mode_set_base(crtc, x, y, old_fb);
1019
1020out:
Daniel Vetterce14ec22015-07-02 15:16:39 +02001021 if (crtc_state) {
1022 if (crtc->funcs->atomic_destroy_state)
1023 crtc->funcs->atomic_destroy_state(crtc, crtc_state);
1024 else
1025 drm_atomic_helper_crtc_destroy_state(crtc, crtc_state);
Daniel Vetter2f324b42014-10-29 11:13:47 +01001026 }
1027
Daniel Stone9f658b72015-05-22 13:34:45 +01001028 return ret;
Daniel Vetter2f324b42014-10-29 11:13:47 +01001029}
1030EXPORT_SYMBOL(drm_helper_crtc_mode_set);
1031
1032/**
1033 * drm_helper_crtc_mode_set_base - mode_set_base implementation for atomic plane helpers
1034 * @crtc: DRM CRTC
1035 * @x: x offset of the CRTC scanout area on the underlying framebuffer
1036 * @y: y offset of the CRTC scanout area on the underlying framebuffer
1037 * @old_fb: previous framebuffer
1038 *
1039 * This function implements a callback useable as the ->mode_set_base used
Daniel Vetter2be94972015-12-04 09:45:46 +01001040 * required by the CRTC helpers. The driver must provide the atomic plane helper
Daniel Vetter2f324b42014-10-29 11:13:47 +01001041 * functions for the primary plane.
1042 *
1043 * This is a transitional helper useful for converting drivers to the atomic
1044 * interfaces.
1045 */
1046int drm_helper_crtc_mode_set_base(struct drm_crtc *crtc, int x, int y,
1047 struct drm_framebuffer *old_fb)
1048{
1049 struct drm_plane_state *plane_state;
1050 struct drm_plane *plane = crtc->primary;
1051
1052 if (plane->funcs->atomic_duplicate_state)
1053 plane_state = plane->funcs->atomic_duplicate_state(plane);
1054 else if (plane->state)
Daniel Vetter321ebf02014-11-04 22:57:27 +01001055 plane_state = drm_atomic_helper_plane_duplicate_state(plane);
Daniel Vetter2f324b42014-10-29 11:13:47 +01001056 else
1057 plane_state = kzalloc(sizeof(*plane_state), GFP_KERNEL);
1058 if (!plane_state)
1059 return -ENOMEM;
Daniel Vetter07cc0ef2014-11-27 15:49:39 +01001060 plane_state->plane = plane;
Daniel Vetter2f324b42014-10-29 11:13:47 +01001061
1062 plane_state->crtc = crtc;
Daniel Vetter321ebf02014-11-04 22:57:27 +01001063 drm_atomic_set_fb_for_plane(plane_state, crtc->primary->fb);
Daniel Vetter2f324b42014-10-29 11:13:47 +01001064 plane_state->crtc_x = 0;
1065 plane_state->crtc_y = 0;
1066 plane_state->crtc_h = crtc->mode.vdisplay;
1067 plane_state->crtc_w = crtc->mode.hdisplay;
1068 plane_state->src_x = x << 16;
1069 plane_state->src_y = y << 16;
1070 plane_state->src_h = crtc->mode.vdisplay << 16;
1071 plane_state->src_w = crtc->mode.hdisplay << 16;
1072
1073 return drm_plane_helper_commit(plane, plane_state, old_fb);
1074}
1075EXPORT_SYMBOL(drm_helper_crtc_mode_set_base);