blob: 239b64c85098a744531ce567ff1b0722c6c432f4 [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 * Copyright (c) 2008 Red Hat Inc.
5 *
6 * DRM core CRTC related functions
7 *
8 * Permission to use, copy, modify, distribute, and sell this software and its
9 * documentation for any purpose is hereby granted without fee, provided that
10 * the above copyright notice appear in all copies and that both that copyright
11 * notice and this permission notice appear in supporting documentation, and
12 * that the name of the copyright holders not be used in advertising or
13 * publicity pertaining to distribution of the software without specific,
14 * written prior permission. The copyright holders make no representations
15 * about the suitability of this software for any purpose. It is provided "as
16 * is" without express or implied warranty.
17 *
18 * THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
19 * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
20 * EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY SPECIAL, INDIRECT OR
21 * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
22 * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
23 * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
24 * OF THIS SOFTWARE.
25 *
26 * Authors:
27 * Keith Packard
28 * Eric Anholt <eric@anholt.net>
29 * Dave Airlie <airlied@linux.ie>
30 * Jesse Barnes <jesse.barnes@intel.com>
31 */
Ville Syrjälä6ba6d032013-06-10 11:15:10 +030032#include <linux/ctype.h>
Dave Airlief453ba02008-11-07 14:05:41 -080033#include <linux/list.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090034#include <linux/slab.h>
Paul Gortmaker2d1a8a42011-08-30 18:16:33 -040035#include <linux/export.h>
David Howells760285e2012-10-02 18:01:07 +010036#include <drm/drmP.h>
37#include <drm/drm_crtc.h>
38#include <drm/drm_edid.h>
39#include <drm/drm_fourcc.h>
Rob Clark51fd3712013-11-19 12:10:12 -050040#include <drm/drm_modeset_lock.h>
Rob Clark88a48e22014-12-18 16:01:50 -050041#include <drm/drm_atomic.h>
Daniel Vetter3b96a0b2016-06-21 10:54:22 +020042#include <drm/drm_auth.h>
Tomeu Vizoso9edbf1f2016-10-06 17:21:06 +020043#include <drm/drm_debugfs_crc.h>
Dave Airlief453ba02008-11-07 14:05:41 -080044
Daniel Vetter8bd441b2014-01-23 15:35:24 +010045#include "drm_crtc_internal.h"
Daniel Vetter67d0ec42014-09-10 12:43:53 +020046#include "drm_internal.h"
Daniel Vetter8bd441b2014-01-23 15:35:24 +010047
Lukas Wunner6a0d9522016-06-08 18:47:27 +020048/**
49 * drm_crtc_force_disable - Forcibly turn off a CRTC
50 * @crtc: CRTC to turn off
51 *
52 * Returns:
53 * Zero on success, error code on failure.
54 */
55int drm_crtc_force_disable(struct drm_crtc *crtc)
56{
57 struct drm_mode_set set = {
58 .crtc = crtc,
59 };
60
61 return drm_mode_set_config_internal(&set);
62}
63EXPORT_SYMBOL(drm_crtc_force_disable);
64
65/**
66 * drm_crtc_force_disable_all - Forcibly turn off all enabled CRTCs
67 * @dev: DRM device whose CRTCs to turn off
68 *
69 * Drivers may want to call this on unload to ensure that all displays are
70 * unlit and the GPU is in a consistent, low power state. Takes modeset locks.
71 *
72 * Returns:
73 * Zero on success, error code on failure.
74 */
75int drm_crtc_force_disable_all(struct drm_device *dev)
76{
77 struct drm_crtc *crtc;
78 int ret = 0;
79
80 drm_modeset_lock_all(dev);
81 drm_for_each_crtc(crtc, dev)
82 if (crtc->enabled) {
83 ret = drm_crtc_force_disable(crtc);
84 if (ret)
85 goto out;
86 }
87out:
88 drm_modeset_unlock_all(dev);
89 return ret;
90}
91EXPORT_SYMBOL(drm_crtc_force_disable_all);
92
Ville Syrjäläfa3ab4c2015-12-08 18:41:53 +020093static unsigned int drm_num_crtcs(struct drm_device *dev)
94{
95 unsigned int num = 0;
96 struct drm_crtc *tmp;
97
98 drm_for_each_crtc(tmp, dev) {
99 num++;
100 }
101
102 return num;
103}
104
Daniel Vetter28575f12016-11-14 12:58:23 +0100105int drm_crtc_register_all(struct drm_device *dev)
Benjamin Gaignard79190ea2016-06-21 16:37:09 +0200106{
107 struct drm_crtc *crtc;
108 int ret = 0;
109
110 drm_for_each_crtc(crtc, dev) {
Tomeu Vizoso9edbf1f2016-10-06 17:21:06 +0200111 if (drm_debugfs_crtc_add(crtc))
112 DRM_ERROR("Failed to initialize debugfs entry for CRTC '%s'.\n",
113 crtc->name);
114
Benjamin Gaignard79190ea2016-06-21 16:37:09 +0200115 if (crtc->funcs->late_register)
116 ret = crtc->funcs->late_register(crtc);
117 if (ret)
118 return ret;
119 }
120
121 return 0;
122}
123
Daniel Vetter28575f12016-11-14 12:58:23 +0100124void drm_crtc_unregister_all(struct drm_device *dev)
Benjamin Gaignard79190ea2016-06-21 16:37:09 +0200125{
126 struct drm_crtc *crtc;
127
128 drm_for_each_crtc(crtc, dev) {
129 if (crtc->funcs->early_unregister)
130 crtc->funcs->early_unregister(crtc);
Tomeu Vizoso9edbf1f2016-10-06 17:21:06 +0200131 drm_debugfs_crtc_remove(crtc);
Benjamin Gaignard79190ea2016-06-21 16:37:09 +0200132 }
133}
134
Tomeu Vizoso9edbf1f2016-10-06 17:21:06 +0200135static int drm_crtc_crc_init(struct drm_crtc *crtc)
136{
137#ifdef CONFIG_DEBUG_FS
138 spin_lock_init(&crtc->crc.lock);
139 init_waitqueue_head(&crtc->crc.wq);
140 crtc->crc.source = kstrdup("auto", GFP_KERNEL);
141 if (!crtc->crc.source)
142 return -ENOMEM;
143#endif
144 return 0;
145}
146
147static void drm_crtc_crc_fini(struct drm_crtc *crtc)
148{
149#ifdef CONFIG_DEBUG_FS
150 kfree(crtc->crc.source);
151#endif
152}
153
Dave Airlief453ba02008-11-07 14:05:41 -0800154/**
Matt Ropere13161a2014-04-01 15:22:38 -0700155 * drm_crtc_init_with_planes - Initialise a new CRTC object with
156 * specified primary and cursor planes.
Dave Airlief453ba02008-11-07 14:05:41 -0800157 * @dev: DRM device
158 * @crtc: CRTC object to init
Matt Ropere13161a2014-04-01 15:22:38 -0700159 * @primary: Primary plane for CRTC
160 * @cursor: Cursor plane for CRTC
Dave Airlief453ba02008-11-07 14:05:41 -0800161 * @funcs: callbacks for the new CRTC
Ville Syrjäläf9882872015-12-09 16:19:31 +0200162 * @name: printf style format string for the CRTC name, or NULL for default name
Dave Airlief453ba02008-11-07 14:05:41 -0800163 *
Daniel Vetter532b3672016-09-21 10:59:25 +0200164 * Inits a new object created as base part of a driver crtc object. Drivers
165 * should use this function instead of drm_crtc_init(), which is only provided
166 * for backwards compatibility with drivers which do not yet support universal
167 * planes). For really simple hardware which has only 1 plane look at
168 * drm_simple_display_pipe_init() instead.
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200169 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100170 * Returns:
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200171 * Zero on success, error code on failure.
Dave Airlief453ba02008-11-07 14:05:41 -0800172 */
Matt Ropere13161a2014-04-01 15:22:38 -0700173int drm_crtc_init_with_planes(struct drm_device *dev, struct drm_crtc *crtc,
174 struct drm_plane *primary,
Matt Roperfc1d3e42014-06-10 08:28:11 -0700175 struct drm_plane *cursor,
Ville Syrjäläf9882872015-12-09 16:19:31 +0200176 const struct drm_crtc_funcs *funcs,
177 const char *name, ...)
Dave Airlief453ba02008-11-07 14:05:41 -0800178{
Rob Clark51fd3712013-11-19 12:10:12 -0500179 struct drm_mode_config *config = &dev->mode_config;
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200180 int ret;
181
Benjamin Gaignard522cf912015-03-17 12:05:29 +0100182 WARN_ON(primary && primary->type != DRM_PLANE_TYPE_PRIMARY);
183 WARN_ON(cursor && cursor->type != DRM_PLANE_TYPE_CURSOR);
184
Dave Airlief453ba02008-11-07 14:05:41 -0800185 crtc->dev = dev;
186 crtc->funcs = funcs;
187
Daniel Vetter3b24f7d2016-06-08 14:19:00 +0200188 INIT_LIST_HEAD(&crtc->commit_list);
189 spin_lock_init(&crtc->commit_lock);
190
Rob Clark51fd3712013-11-19 12:10:12 -0500191 drm_modeset_lock_init(&crtc->mutex);
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200192 ret = drm_mode_object_get(dev, &crtc->base, DRM_MODE_OBJECT_CRTC);
193 if (ret)
Daniel Vetterbaf698b2014-11-12 11:59:47 +0100194 return ret;
Dave Airlief453ba02008-11-07 14:05:41 -0800195
Ville Syrjäläfa3ab4c2015-12-08 18:41:53 +0200196 if (name) {
197 va_list ap;
198
199 va_start(ap, name);
200 crtc->name = kvasprintf(GFP_KERNEL, name, ap);
201 va_end(ap);
202 } else {
203 crtc->name = kasprintf(GFP_KERNEL, "crtc-%d",
204 drm_num_crtcs(dev));
205 }
206 if (!crtc->name) {
Dave Airlie7c8f6d22016-04-15 15:10:32 +1000207 drm_mode_object_unregister(dev, &crtc->base);
Ville Syrjäläfa3ab4c2015-12-08 18:41:53 +0200208 return -ENOMEM;
209 }
210
Paulo Zanonibffd9de02012-05-15 18:09:05 -0300211 crtc->base.properties = &crtc->properties;
212
Rob Clark51fd3712013-11-19 12:10:12 -0500213 list_add_tail(&crtc->head, &config->crtc_list);
Chris Wilson490d3d12016-05-27 20:05:00 +0100214 crtc->index = config->num_crtc++;
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200215
Matt Ropere13161a2014-04-01 15:22:38 -0700216 crtc->primary = primary;
Matt Roperfc1d3e42014-06-10 08:28:11 -0700217 crtc->cursor = cursor;
Rob Clark7abc7d42016-11-05 10:52:01 -0400218 if (primary && !primary->possible_crtcs)
Matt Ropere13161a2014-04-01 15:22:38 -0700219 primary->possible_crtcs = 1 << drm_crtc_index(crtc);
Rob Clark7abc7d42016-11-05 10:52:01 -0400220 if (cursor && !cursor->possible_crtcs)
Matt Roperfc1d3e42014-06-10 08:28:11 -0700221 cursor->possible_crtcs = 1 << drm_crtc_index(crtc);
Matt Ropere13161a2014-04-01 15:22:38 -0700222
Tomeu Vizoso9edbf1f2016-10-06 17:21:06 +0200223 ret = drm_crtc_crc_init(crtc);
224 if (ret) {
225 drm_mode_object_unregister(dev, &crtc->base);
226 return ret;
227 }
228
Daniel Vettereab3bbe2015-01-22 16:36:21 +0100229 if (drm_core_check_feature(dev, DRIVER_ATOMIC)) {
230 drm_object_attach_property(&crtc->base, config->prop_active, 0);
Daniel Stone955f3c32015-05-25 19:11:52 +0100231 drm_object_attach_property(&crtc->base, config->prop_mode_id, 0);
Daniel Vettereab3bbe2015-01-22 16:36:21 +0100232 }
233
Daniel Vetterbaf698b2014-11-12 11:59:47 +0100234 return 0;
Dave Airlief453ba02008-11-07 14:05:41 -0800235}
Matt Ropere13161a2014-04-01 15:22:38 -0700236EXPORT_SYMBOL(drm_crtc_init_with_planes);
Dave Airlief453ba02008-11-07 14:05:41 -0800237
238/**
Ville Syrjäläad6f5c32013-06-05 12:39:55 +0000239 * drm_crtc_cleanup - Clean up the core crtc usage
Dave Airlief453ba02008-11-07 14:05:41 -0800240 * @crtc: CRTC to cleanup
241 *
Ville Syrjäläad6f5c32013-06-05 12:39:55 +0000242 * This function cleans up @crtc and removes it from the DRM mode setting
243 * core. Note that the function does *not* free the crtc structure itself,
244 * this is the responsibility of the caller.
Dave Airlief453ba02008-11-07 14:05:41 -0800245 */
246void drm_crtc_cleanup(struct drm_crtc *crtc)
247{
248 struct drm_device *dev = crtc->dev;
249
Chris Wilson490d3d12016-05-27 20:05:00 +0100250 /* Note that the crtc_list is considered to be static; should we
251 * remove the drm_crtc at runtime we would have to decrement all
252 * the indices on the drm_crtc after us in the crtc_list.
253 */
254
Tomeu Vizoso9edbf1f2016-10-06 17:21:06 +0200255 drm_crtc_crc_fini(crtc);
256
Sachin Kamat9e1c1562012-11-19 09:44:56 +0000257 kfree(crtc->gamma_store);
258 crtc->gamma_store = NULL;
Dave Airlief453ba02008-11-07 14:05:41 -0800259
Rob Clark51fd3712013-11-19 12:10:12 -0500260 drm_modeset_lock_fini(&crtc->mutex);
261
Dave Airlie7c8f6d22016-04-15 15:10:32 +1000262 drm_mode_object_unregister(dev, &crtc->base);
Dave Airlief453ba02008-11-07 14:05:41 -0800263 list_del(&crtc->head);
264 dev->mode_config.num_crtc--;
Thierry Reding3009c032014-11-25 12:09:49 +0100265
266 WARN_ON(crtc->state && !crtc->funcs->atomic_destroy_state);
267 if (crtc->state && crtc->funcs->atomic_destroy_state)
268 crtc->funcs->atomic_destroy_state(crtc, crtc->state);
Thierry Redinga18c0af2014-12-10 11:38:49 +0100269
Ville Syrjäläfa3ab4c2015-12-08 18:41:53 +0200270 kfree(crtc->name);
271
Thierry Redinga18c0af2014-12-10 11:38:49 +0100272 memset(crtc, 0, sizeof(*crtc));
Dave Airlief453ba02008-11-07 14:05:41 -0800273}
274EXPORT_SYMBOL(drm_crtc_cleanup);
275
Dave Airlief453ba02008-11-07 14:05:41 -0800276/**
277 * drm_mode_getcrtc - get CRTC configuration
Daniel Vetter065a50ed2012-12-02 00:09:18 +0100278 * @dev: drm device for the ioctl
279 * @data: data pointer for the ioctl
280 * @file_priv: drm file for the ioctl call
Dave Airlief453ba02008-11-07 14:05:41 -0800281 *
Dave Airlief453ba02008-11-07 14:05:41 -0800282 * Construct a CRTC configuration structure to return to the user.
283 *
284 * Called by the user via ioctl.
285 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100286 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +0100287 * Zero on success, negative errno on failure.
Dave Airlief453ba02008-11-07 14:05:41 -0800288 */
289int drm_mode_getcrtc(struct drm_device *dev,
290 void *data, struct drm_file *file_priv)
291{
292 struct drm_mode_crtc *crtc_resp = data;
293 struct drm_crtc *crtc;
Dave Airlief453ba02008-11-07 14:05:41 -0800294
Dave Airliefb3b06c2011-02-08 13:55:21 +1000295 if (!drm_core_check_feature(dev, DRIVER_MODESET))
296 return -EINVAL;
297
Rob Clarka2b34e22013-10-05 16:36:52 -0400298 crtc = drm_crtc_find(dev, crtc_resp->crtc_id);
Daniel Vetterfcf93f62014-11-12 08:45:01 +0100299 if (!crtc)
300 return -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -0800301
Daniel Vetterfcf93f62014-11-12 08:45:01 +0100302 drm_modeset_lock_crtc(crtc, crtc->primary);
Dave Airlief453ba02008-11-07 14:05:41 -0800303 crtc_resp->gamma_size = crtc->gamma_size;
Matt Roperf4510a22014-04-01 15:22:40 -0700304 if (crtc->primary->fb)
305 crtc_resp->fb_id = crtc->primary->fb->base.id;
Dave Airlief453ba02008-11-07 14:05:41 -0800306 else
307 crtc_resp->fb_id = 0;
308
Daniel Vetter31c946e2015-02-22 12:24:17 +0100309 if (crtc->state) {
310 crtc_resp->x = crtc->primary->state->src_x >> 16;
311 crtc_resp->y = crtc->primary->state->src_y >> 16;
312 if (crtc->state->enable) {
Daniel Stone934a8a82015-05-22 13:34:48 +0100313 drm_mode_convert_to_umode(&crtc_resp->mode, &crtc->state->mode);
Daniel Vetter31c946e2015-02-22 12:24:17 +0100314 crtc_resp->mode_valid = 1;
Dave Airlief453ba02008-11-07 14:05:41 -0800315
Daniel Vetter31c946e2015-02-22 12:24:17 +0100316 } else {
317 crtc_resp->mode_valid = 0;
318 }
Dave Airlief453ba02008-11-07 14:05:41 -0800319 } else {
Daniel Vetter31c946e2015-02-22 12:24:17 +0100320 crtc_resp->x = crtc->x;
321 crtc_resp->y = crtc->y;
322 if (crtc->enabled) {
Daniel Stone934a8a82015-05-22 13:34:48 +0100323 drm_mode_convert_to_umode(&crtc_resp->mode, &crtc->mode);
Daniel Vetter31c946e2015-02-22 12:24:17 +0100324 crtc_resp->mode_valid = 1;
325
326 } else {
327 crtc_resp->mode_valid = 0;
328 }
Dave Airlief453ba02008-11-07 14:05:41 -0800329 }
Daniel Vetterfcf93f62014-11-12 08:45:01 +0100330 drm_modeset_unlock_crtc(crtc);
Dave Airlief453ba02008-11-07 14:05:41 -0800331
Daniel Vetterbaf698b2014-11-12 11:59:47 +0100332 return 0;
Dave Airlief453ba02008-11-07 14:05:41 -0800333}
334
Dave Airlief453ba02008-11-07 14:05:41 -0800335/**
Daniel Vetter2d13b672012-12-11 13:47:23 +0100336 * drm_mode_set_config_internal - helper to call ->set_config
337 * @set: modeset config to set
338 *
339 * This is a little helper to wrap internal calls to the ->set_config driver
340 * interface. The only thing it adds is correct refcounting dance.
Thierry Reding4dfd9092014-12-10 13:03:34 +0100341 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100342 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +0100343 * Zero on success, negative errno on failure.
Daniel Vetter2d13b672012-12-11 13:47:23 +0100344 */
345int drm_mode_set_config_internal(struct drm_mode_set *set)
346{
347 struct drm_crtc *crtc = set->crtc;
Daniel Vetter5cef29a2013-06-15 00:13:16 +0200348 struct drm_framebuffer *fb;
349 struct drm_crtc *tmp;
Daniel Vetterb0d12322012-12-11 01:07:12 +0100350 int ret;
Daniel Vetter2d13b672012-12-11 13:47:23 +0100351
Daniel Vetter5cef29a2013-06-15 00:13:16 +0200352 /*
353 * NOTE: ->set_config can also disable other crtcs (if we steal all
354 * connectors from it), hence we need to refcount the fbs across all
355 * crtcs. Atomic modeset will have saner semantics ...
356 */
Daniel Vettere4f62542015-07-09 23:44:35 +0200357 drm_for_each_crtc(tmp, crtc->dev)
Daniel Vetter3d30a592014-07-27 13:42:42 +0200358 tmp->primary->old_fb = tmp->primary->fb;
Daniel Vetter5cef29a2013-06-15 00:13:16 +0200359
Daniel Vetterb0d12322012-12-11 01:07:12 +0100360 fb = set->fb;
361
362 ret = crtc->funcs->set_config(set);
363 if (ret == 0) {
Matt Ropere13161a2014-04-01 15:22:38 -0700364 crtc->primary->crtc = crtc;
Daniel Vetter0fe27f02014-04-23 17:34:06 +0200365 crtc->primary->fb = fb;
Daniel Vetter5cef29a2013-06-15 00:13:16 +0200366 }
Daniel Vettercc85e122013-06-15 00:13:15 +0200367
Daniel Vettere4f62542015-07-09 23:44:35 +0200368 drm_for_each_crtc(tmp, crtc->dev) {
Matt Roperf4510a22014-04-01 15:22:40 -0700369 if (tmp->primary->fb)
370 drm_framebuffer_reference(tmp->primary->fb);
Daniel Vetter3d30a592014-07-27 13:42:42 +0200371 if (tmp->primary->old_fb)
372 drm_framebuffer_unreference(tmp->primary->old_fb);
373 tmp->primary->old_fb = NULL;
Daniel Vetterb0d12322012-12-11 01:07:12 +0100374 }
375
376 return ret;
Daniel Vetter2d13b672012-12-11 13:47:23 +0100377}
378EXPORT_SYMBOL(drm_mode_set_config_internal);
379
Matt Roperaf936292014-04-01 15:22:34 -0700380/**
Gustavo Padovanecb7e162014-12-01 15:40:09 -0800381 * drm_crtc_get_hv_timing - Fetches hdisplay/vdisplay for given mode
382 * @mode: mode to query
383 * @hdisplay: hdisplay value to fill in
384 * @vdisplay: vdisplay value to fill in
385 *
386 * The vdisplay value will be doubled if the specified mode is a stereo mode of
387 * the appropriate layout.
388 */
389void drm_crtc_get_hv_timing(const struct drm_display_mode *mode,
390 int *hdisplay, int *vdisplay)
391{
392 struct drm_display_mode adjusted;
393
394 drm_mode_copy(&adjusted, mode);
395 drm_mode_set_crtcinfo(&adjusted, CRTC_STEREO_DOUBLE_ONLY);
396 *hdisplay = adjusted.crtc_hdisplay;
397 *vdisplay = adjusted.crtc_vdisplay;
398}
399EXPORT_SYMBOL(drm_crtc_get_hv_timing);
400
401/**
Matt Roperaf936292014-04-01 15:22:34 -0700402 * drm_crtc_check_viewport - Checks that a framebuffer is big enough for the
403 * CRTC viewport
404 * @crtc: CRTC that framebuffer will be displayed on
405 * @x: x panning
406 * @y: y panning
407 * @mode: mode that framebuffer will be displayed under
408 * @fb: framebuffer to check size of
Damien Lespiauc11e9282013-09-25 16:45:30 +0100409 */
Matt Roperaf936292014-04-01 15:22:34 -0700410int drm_crtc_check_viewport(const struct drm_crtc *crtc,
411 int x, int y,
412 const struct drm_display_mode *mode,
413 const struct drm_framebuffer *fb)
Damien Lespiauc11e9282013-09-25 16:45:30 +0100414
415{
416 int hdisplay, vdisplay;
417
Gustavo Padovanecb7e162014-12-01 15:40:09 -0800418 drm_crtc_get_hv_timing(mode, &hdisplay, &vdisplay);
Damien Lespiaua0c1bbb2013-09-25 16:45:31 +0100419
Ville Syrjälä33e0be62015-10-16 18:38:39 +0300420 if (crtc->state &&
Ville Syrjäläbd2ef252016-09-26 19:30:46 +0300421 drm_rotation_90_or_270(crtc->primary->state->rotation))
Damien Lespiauc11e9282013-09-25 16:45:30 +0100422 swap(hdisplay, vdisplay);
423
Daniel Vetter43968d72016-09-21 10:59:24 +0200424 return drm_framebuffer_check_src_coords(x << 16, y << 16,
425 hdisplay << 16, vdisplay << 16,
426 fb);
Damien Lespiauc11e9282013-09-25 16:45:30 +0100427}
Matt Roperaf936292014-04-01 15:22:34 -0700428EXPORT_SYMBOL(drm_crtc_check_viewport);
Damien Lespiauc11e9282013-09-25 16:45:30 +0100429
Daniel Vetter2d13b672012-12-11 13:47:23 +0100430/**
Dave Airlief453ba02008-11-07 14:05:41 -0800431 * drm_mode_setcrtc - set CRTC configuration
Daniel Vetter065a50ed2012-12-02 00:09:18 +0100432 * @dev: drm device for the ioctl
433 * @data: data pointer for the ioctl
434 * @file_priv: drm file for the ioctl call
Dave Airlief453ba02008-11-07 14:05:41 -0800435 *
Dave Airlief453ba02008-11-07 14:05:41 -0800436 * Build a new CRTC configuration based on user request.
437 *
438 * Called by the user via ioctl.
439 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100440 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +0100441 * Zero on success, negative errno on failure.
Dave Airlief453ba02008-11-07 14:05:41 -0800442 */
443int drm_mode_setcrtc(struct drm_device *dev, void *data,
444 struct drm_file *file_priv)
445{
446 struct drm_mode_config *config = &dev->mode_config;
447 struct drm_mode_crtc *crtc_req = data;
Ville Syrjälä6653cc82012-03-13 12:35:38 +0200448 struct drm_crtc *crtc;
Dave Airlief453ba02008-11-07 14:05:41 -0800449 struct drm_connector **connector_set = NULL, *connector;
450 struct drm_framebuffer *fb = NULL;
451 struct drm_display_mode *mode = NULL;
452 struct drm_mode_set set;
453 uint32_t __user *set_connectors_ptr;
Laurent Pinchart4a1b0712012-05-17 13:27:21 +0200454 int ret;
Dave Airlief453ba02008-11-07 14:05:41 -0800455 int i;
456
Dave Airliefb3b06c2011-02-08 13:55:21 +1000457 if (!drm_core_check_feature(dev, DRIVER_MODESET))
458 return -EINVAL;
459
Zhao Junwang01447e92015-07-07 17:08:35 +0800460 /*
461 * Universal plane src offsets are only 16.16, prevent havoc for
462 * drivers using universal plane code internally.
463 */
464 if (crtc_req->x & 0xffff0000 || crtc_req->y & 0xffff0000)
Ville Syrjälä1d97e912012-03-13 12:35:41 +0200465 return -ERANGE;
466
Daniel Vetter84849902012-12-02 00:28:11 +0100467 drm_modeset_lock_all(dev);
Rob Clarka2b34e22013-10-05 16:36:52 -0400468 crtc = drm_crtc_find(dev, crtc_req->crtc_id);
469 if (!crtc) {
Zhao Yakui58367ed2009-07-20 13:48:07 +0800470 DRM_DEBUG_KMS("Unknown CRTC ID %d\n", crtc_req->crtc_id);
Ville Syrjäläf27657f2013-10-17 13:35:00 +0300471 ret = -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -0800472 goto out;
473 }
Ville Syrjäläfa3ab4c2015-12-08 18:41:53 +0200474 DRM_DEBUG_KMS("[CRTC:%d:%s]\n", crtc->base.id, crtc->name);
Dave Airlief453ba02008-11-07 14:05:41 -0800475
476 if (crtc_req->mode_valid) {
477 /* If we have a mode we need a framebuffer. */
478 /* If we pass -1, set the mode with the currently bound fb */
479 if (crtc_req->fb_id == -1) {
Matt Roperf4510a22014-04-01 15:22:40 -0700480 if (!crtc->primary->fb) {
Ville Syrjälä6653cc82012-03-13 12:35:38 +0200481 DRM_DEBUG_KMS("CRTC doesn't have current FB\n");
482 ret = -EINVAL;
483 goto out;
Dave Airlief453ba02008-11-07 14:05:41 -0800484 }
Matt Roperf4510a22014-04-01 15:22:40 -0700485 fb = crtc->primary->fb;
Daniel Vetterb0d12322012-12-11 01:07:12 +0100486 /* Make refcounting symmetric with the lookup path. */
487 drm_framebuffer_reference(fb);
Dave Airlief453ba02008-11-07 14:05:41 -0800488 } else {
Daniel Vetter786b99e2012-12-02 21:53:40 +0100489 fb = drm_framebuffer_lookup(dev, crtc_req->fb_id);
490 if (!fb) {
Zhao Yakui58367ed2009-07-20 13:48:07 +0800491 DRM_DEBUG_KMS("Unknown FB ID%d\n",
492 crtc_req->fb_id);
Ville Syrjälä37c4e702013-10-17 13:35:01 +0300493 ret = -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -0800494 goto out;
495 }
Dave Airlief453ba02008-11-07 14:05:41 -0800496 }
497
498 mode = drm_mode_create(dev);
Ville Syrjäläee34ab52012-03-13 12:35:43 +0200499 if (!mode) {
500 ret = -ENOMEM;
501 goto out;
502 }
503
Daniel Stone934a8a82015-05-22 13:34:48 +0100504 ret = drm_mode_convert_umode(mode, &crtc_req->mode);
Ville Syrjälä90367bf2012-03-13 12:35:44 +0200505 if (ret) {
506 DRM_DEBUG_KMS("Invalid mode\n");
507 goto out;
508 }
509
Laurent Pinchart7eb5f302015-03-09 10:41:07 +0200510 /*
511 * Check whether the primary plane supports the fb pixel format.
512 * Drivers not implementing the universal planes API use a
513 * default formats list provided by the DRM core which doesn't
514 * match real hardware capabilities. Skip the check in that
515 * case.
516 */
517 if (!crtc->primary->format_default) {
518 ret = drm_plane_check_pixel_format(crtc->primary,
519 fb->pixel_format);
520 if (ret) {
Eric Engestromb3c11ac2016-11-12 01:12:56 +0000521 struct drm_format_name_buf format_name;
522 DRM_DEBUG_KMS("Invalid pixel format %s\n",
523 drm_get_format_name(fb->pixel_format,
524 &format_name));
Laurent Pinchart7eb5f302015-03-09 10:41:07 +0200525 goto out;
526 }
527 }
528
Damien Lespiauc11e9282013-09-25 16:45:30 +0100529 ret = drm_crtc_check_viewport(crtc, crtc_req->x, crtc_req->y,
530 mode, fb);
531 if (ret)
Ville Syrjälä5f61bb42012-03-13 12:35:45 +0200532 goto out;
Damien Lespiauc11e9282013-09-25 16:45:30 +0100533
Dave Airlief453ba02008-11-07 14:05:41 -0800534 }
535
536 if (crtc_req->count_connectors == 0 && mode) {
Zhao Yakui58367ed2009-07-20 13:48:07 +0800537 DRM_DEBUG_KMS("Count connectors is 0 but mode set\n");
Dave Airlief453ba02008-11-07 14:05:41 -0800538 ret = -EINVAL;
539 goto out;
540 }
541
Jakob Bornecrantz7781de72009-08-03 13:43:58 +0100542 if (crtc_req->count_connectors > 0 && (!mode || !fb)) {
Zhao Yakui58367ed2009-07-20 13:48:07 +0800543 DRM_DEBUG_KMS("Count connectors is %d but no mode or fb set\n",
Dave Airlief453ba02008-11-07 14:05:41 -0800544 crtc_req->count_connectors);
545 ret = -EINVAL;
546 goto out;
547 }
548
549 if (crtc_req->count_connectors > 0) {
550 u32 out_id;
551
552 /* Avoid unbounded kernel memory allocation */
553 if (crtc_req->count_connectors > config->num_connector) {
554 ret = -EINVAL;
555 goto out;
556 }
557
Thierry Reding2f6c5382014-12-10 13:03:36 +0100558 connector_set = kmalloc_array(crtc_req->count_connectors,
559 sizeof(struct drm_connector *),
560 GFP_KERNEL);
Dave Airlief453ba02008-11-07 14:05:41 -0800561 if (!connector_set) {
562 ret = -ENOMEM;
563 goto out;
564 }
565
566 for (i = 0; i < crtc_req->count_connectors; i++) {
Dave Airlieb164d312016-04-27 11:10:09 +1000567 connector_set[i] = NULL;
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +0200568 set_connectors_ptr = (uint32_t __user *)(unsigned long)crtc_req->set_connectors_ptr;
Dave Airlief453ba02008-11-07 14:05:41 -0800569 if (get_user(out_id, &set_connectors_ptr[i])) {
570 ret = -EFAULT;
571 goto out;
572 }
573
Dave Airlieb164d312016-04-27 11:10:09 +1000574 connector = drm_connector_lookup(dev, out_id);
Rob Clarka2b34e22013-10-05 16:36:52 -0400575 if (!connector) {
Zhao Yakui58367ed2009-07-20 13:48:07 +0800576 DRM_DEBUG_KMS("Connector id %d unknown\n",
577 out_id);
Ville Syrjäläf27657f2013-10-17 13:35:00 +0300578 ret = -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -0800579 goto out;
580 }
Jerome Glisse94401062010-07-15 15:43:25 -0400581 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
582 connector->base.id,
Jani Nikula25933822014-06-03 14:56:20 +0300583 connector->name);
Dave Airlief453ba02008-11-07 14:05:41 -0800584
585 connector_set[i] = connector;
586 }
587 }
588
589 set.crtc = crtc;
590 set.x = crtc_req->x;
591 set.y = crtc_req->y;
592 set.mode = mode;
593 set.connectors = connector_set;
594 set.num_connectors = crtc_req->count_connectors;
Dave Airlie5ef5f722009-08-17 13:11:23 +1000595 set.fb = fb;
Daniel Vetter2d13b672012-12-11 13:47:23 +0100596 ret = drm_mode_set_config_internal(&set);
Dave Airlief453ba02008-11-07 14:05:41 -0800597
598out:
Daniel Vetterb0d12322012-12-11 01:07:12 +0100599 if (fb)
600 drm_framebuffer_unreference(fb);
601
Dave Airlieb164d312016-04-27 11:10:09 +1000602 if (connector_set) {
603 for (i = 0; i < crtc_req->count_connectors; i++) {
604 if (connector_set[i])
605 drm_connector_unreference(connector_set[i]);
606 }
607 }
Dave Airlief453ba02008-11-07 14:05:41 -0800608 kfree(connector_set);
Ville Syrjäläee34ab52012-03-13 12:35:43 +0200609 drm_mode_destroy(dev, mode);
Daniel Vetter84849902012-12-02 00:28:11 +0100610 drm_modeset_unlock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -0800611 return ret;
612}
613
Daniel Vetter949619f2016-08-29 10:27:51 +0200614int drm_mode_crtc_set_obj_prop(struct drm_mode_object *obj,
615 struct drm_property *property,
616 uint64_t value)
Paulo Zanonibffd9de02012-05-15 18:09:05 -0300617{
618 int ret = -EINVAL;
619 struct drm_crtc *crtc = obj_to_crtc(obj);
620
621 if (crtc->funcs->set_property)
622 ret = crtc->funcs->set_property(crtc, property, value);
623 if (!ret)
624 drm_object_property_set_value(obj, property, value);
625
626 return ret;
627}
628
Thomas Wood3a5f87c2014-08-20 14:45:00 +0100629/**
Dave Airlie138f9eb2014-10-20 16:17:17 +1000630 * DOC: Tile group
631 *
632 * Tile groups are used to represent tiled monitors with a unique
633 * integer identifier. Tiled monitors using DisplayID v1.3 have
634 * a unique 8-byte handle, we store this in a tile group, so we
635 * have a common identifier for all tiles in a monitor group.
636 */
637static void drm_tile_group_free(struct kref *kref)
638{
639 struct drm_tile_group *tg = container_of(kref, struct drm_tile_group, refcount);
640 struct drm_device *dev = tg->dev;
641 mutex_lock(&dev->mode_config.idr_mutex);
642 idr_remove(&dev->mode_config.tile_idr, tg->id);
643 mutex_unlock(&dev->mode_config.idr_mutex);
644 kfree(tg);
645}
646
647/**
648 * drm_mode_put_tile_group - drop a reference to a tile group.
649 * @dev: DRM device
650 * @tg: tile group to drop reference to.
651 *
652 * drop reference to tile group and free if 0.
653 */
654void drm_mode_put_tile_group(struct drm_device *dev,
655 struct drm_tile_group *tg)
656{
657 kref_put(&tg->refcount, drm_tile_group_free);
658}
659
660/**
661 * drm_mode_get_tile_group - get a reference to an existing tile group
662 * @dev: DRM device
663 * @topology: 8-bytes unique per monitor.
664 *
665 * Use the unique bytes to get a reference to an existing tile group.
666 *
667 * RETURNS:
668 * tile group or NULL if not found.
669 */
670struct drm_tile_group *drm_mode_get_tile_group(struct drm_device *dev,
671 char topology[8])
672{
673 struct drm_tile_group *tg;
674 int id;
675 mutex_lock(&dev->mode_config.idr_mutex);
676 idr_for_each_entry(&dev->mode_config.tile_idr, tg, id) {
677 if (!memcmp(tg->group_data, topology, 8)) {
678 if (!kref_get_unless_zero(&tg->refcount))
679 tg = NULL;
680 mutex_unlock(&dev->mode_config.idr_mutex);
681 return tg;
682 }
683 }
684 mutex_unlock(&dev->mode_config.idr_mutex);
685 return NULL;
686}
Rob Clark81ddd1b2015-03-27 13:01:52 -0400687EXPORT_SYMBOL(drm_mode_get_tile_group);
Dave Airlie138f9eb2014-10-20 16:17:17 +1000688
689/**
690 * drm_mode_create_tile_group - create a tile group from a displayid description
691 * @dev: DRM device
692 * @topology: 8-bytes unique per monitor.
693 *
694 * Create a tile group for the unique monitor, and get a unique
695 * identifier for the tile group.
696 *
697 * RETURNS:
698 * new tile group or error.
699 */
700struct drm_tile_group *drm_mode_create_tile_group(struct drm_device *dev,
701 char topology[8])
702{
703 struct drm_tile_group *tg;
704 int ret;
705
706 tg = kzalloc(sizeof(*tg), GFP_KERNEL);
707 if (!tg)
708 return ERR_PTR(-ENOMEM);
709
710 kref_init(&tg->refcount);
711 memcpy(tg->group_data, topology, 8);
712 tg->dev = dev;
713
714 mutex_lock(&dev->mode_config.idr_mutex);
715 ret = idr_alloc(&dev->mode_config.tile_idr, tg, 1, 0, GFP_KERNEL);
716 if (ret >= 0) {
717 tg->id = ret;
718 } else {
719 kfree(tg);
720 tg = ERR_PTR(ret);
721 }
722
723 mutex_unlock(&dev->mode_config.idr_mutex);
724 return tg;
725}
Rob Clark81ddd1b2015-03-27 13:01:52 -0400726EXPORT_SYMBOL(drm_mode_create_tile_group);