blob: 39afe13a5fa2ff2e8fad34ff6aa1aae53e411912 [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 */
32#include <linux/list.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090033#include <linux/slab.h>
Paul Gortmaker2d1a8a42011-08-30 18:16:33 -040034#include <linux/export.h>
Dave Airlief453ba02008-11-07 14:05:41 -080035#include "drm.h"
36#include "drmP.h"
37#include "drm_crtc.h"
Adam Jackson7466f4c2010-03-29 21:43:23 +000038#include "drm_edid.h"
Jesse Barnes308e5bc2011-11-14 14:51:28 -080039#include "drm_fourcc.h"
Dave Airlief453ba02008-11-07 14:05:41 -080040
Dave Airlief453ba02008-11-07 14:05:41 -080041/* Avoid boilerplate. I'm tired of typing. */
42#define DRM_ENUM_NAME_FN(fnname, list) \
43 char *fnname(int val) \
44 { \
45 int i; \
46 for (i = 0; i < ARRAY_SIZE(list); i++) { \
47 if (list[i].type == val) \
48 return list[i].name; \
49 } \
50 return "(unknown)"; \
51 }
52
53/*
54 * Global properties
55 */
56static struct drm_prop_enum_list drm_dpms_enum_list[] =
57{ { DRM_MODE_DPMS_ON, "On" },
58 { DRM_MODE_DPMS_STANDBY, "Standby" },
59 { DRM_MODE_DPMS_SUSPEND, "Suspend" },
60 { DRM_MODE_DPMS_OFF, "Off" }
61};
62
63DRM_ENUM_NAME_FN(drm_get_dpms_name, drm_dpms_enum_list)
64
65/*
66 * Optional properties
67 */
68static struct drm_prop_enum_list drm_scaling_mode_enum_list[] =
69{
Jesse Barnes53bd8382009-07-01 10:04:40 -070070 { DRM_MODE_SCALE_NONE, "None" },
71 { DRM_MODE_SCALE_FULLSCREEN, "Full" },
72 { DRM_MODE_SCALE_CENTER, "Center" },
73 { DRM_MODE_SCALE_ASPECT, "Full aspect" },
Dave Airlief453ba02008-11-07 14:05:41 -080074};
75
76static struct drm_prop_enum_list drm_dithering_mode_enum_list[] =
77{
78 { DRM_MODE_DITHERING_OFF, "Off" },
79 { DRM_MODE_DITHERING_ON, "On" },
Ben Skeggs92897b52010-07-16 15:09:17 +100080 { DRM_MODE_DITHERING_AUTO, "Automatic" },
Dave Airlief453ba02008-11-07 14:05:41 -080081};
82
83/*
84 * Non-global properties, but "required" for certain connectors.
85 */
86static struct drm_prop_enum_list drm_dvi_i_select_enum_list[] =
87{
88 { DRM_MODE_SUBCONNECTOR_Automatic, "Automatic" }, /* DVI-I and TV-out */
89 { DRM_MODE_SUBCONNECTOR_DVID, "DVI-D" }, /* DVI-I */
90 { DRM_MODE_SUBCONNECTOR_DVIA, "DVI-A" }, /* DVI-I */
91};
92
93DRM_ENUM_NAME_FN(drm_get_dvi_i_select_name, drm_dvi_i_select_enum_list)
94
95static struct drm_prop_enum_list drm_dvi_i_subconnector_enum_list[] =
96{
97 { DRM_MODE_SUBCONNECTOR_Unknown, "Unknown" }, /* DVI-I and TV-out */
98 { DRM_MODE_SUBCONNECTOR_DVID, "DVI-D" }, /* DVI-I */
99 { DRM_MODE_SUBCONNECTOR_DVIA, "DVI-A" }, /* DVI-I */
100};
101
102DRM_ENUM_NAME_FN(drm_get_dvi_i_subconnector_name,
103 drm_dvi_i_subconnector_enum_list)
104
105static struct drm_prop_enum_list drm_tv_select_enum_list[] =
106{
107 { DRM_MODE_SUBCONNECTOR_Automatic, "Automatic" }, /* DVI-I and TV-out */
108 { DRM_MODE_SUBCONNECTOR_Composite, "Composite" }, /* TV-out */
109 { DRM_MODE_SUBCONNECTOR_SVIDEO, "SVIDEO" }, /* TV-out */
110 { DRM_MODE_SUBCONNECTOR_Component, "Component" }, /* TV-out */
Francisco Jerezaeaa1ad2009-08-02 04:19:19 +0200111 { DRM_MODE_SUBCONNECTOR_SCART, "SCART" }, /* TV-out */
Dave Airlief453ba02008-11-07 14:05:41 -0800112};
113
114DRM_ENUM_NAME_FN(drm_get_tv_select_name, drm_tv_select_enum_list)
115
116static struct drm_prop_enum_list drm_tv_subconnector_enum_list[] =
117{
118 { DRM_MODE_SUBCONNECTOR_Unknown, "Unknown" }, /* DVI-I and TV-out */
119 { DRM_MODE_SUBCONNECTOR_Composite, "Composite" }, /* TV-out */
120 { DRM_MODE_SUBCONNECTOR_SVIDEO, "SVIDEO" }, /* TV-out */
121 { DRM_MODE_SUBCONNECTOR_Component, "Component" }, /* TV-out */
Francisco Jerezaeaa1ad2009-08-02 04:19:19 +0200122 { DRM_MODE_SUBCONNECTOR_SCART, "SCART" }, /* TV-out */
Dave Airlief453ba02008-11-07 14:05:41 -0800123};
124
125DRM_ENUM_NAME_FN(drm_get_tv_subconnector_name,
126 drm_tv_subconnector_enum_list)
127
Jakob Bornecrantz884840a2009-12-03 23:25:47 +0000128static struct drm_prop_enum_list drm_dirty_info_enum_list[] = {
129 { DRM_MODE_DIRTY_OFF, "Off" },
130 { DRM_MODE_DIRTY_ON, "On" },
131 { DRM_MODE_DIRTY_ANNOTATE, "Annotate" },
132};
133
134DRM_ENUM_NAME_FN(drm_get_dirty_info_name,
135 drm_dirty_info_enum_list)
136
Dave Airlief453ba02008-11-07 14:05:41 -0800137struct drm_conn_prop_enum_list {
138 int type;
139 char *name;
140 int count;
141};
142
143/*
144 * Connector and encoder types.
145 */
146static struct drm_conn_prop_enum_list drm_connector_enum_list[] =
147{ { DRM_MODE_CONNECTOR_Unknown, "Unknown", 0 },
148 { DRM_MODE_CONNECTOR_VGA, "VGA", 0 },
149 { DRM_MODE_CONNECTOR_DVII, "DVI-I", 0 },
150 { DRM_MODE_CONNECTOR_DVID, "DVI-D", 0 },
151 { DRM_MODE_CONNECTOR_DVIA, "DVI-A", 0 },
152 { DRM_MODE_CONNECTOR_Composite, "Composite", 0 },
153 { DRM_MODE_CONNECTOR_SVIDEO, "SVIDEO", 0 },
154 { DRM_MODE_CONNECTOR_LVDS, "LVDS", 0 },
155 { DRM_MODE_CONNECTOR_Component, "Component", 0 },
Alex Deuchere76116c2010-12-08 19:09:42 -0500156 { DRM_MODE_CONNECTOR_9PinDIN, "DIN", 0 },
157 { DRM_MODE_CONNECTOR_DisplayPort, "DP", 0 },
158 { DRM_MODE_CONNECTOR_HDMIA, "HDMI-A", 0 },
159 { DRM_MODE_CONNECTOR_HDMIB, "HDMI-B", 0 },
Francisco Jerez74bd3c22009-08-02 04:19:18 +0200160 { DRM_MODE_CONNECTOR_TV, "TV", 0 },
Alex Deuchere76116c2010-12-08 19:09:42 -0500161 { DRM_MODE_CONNECTOR_eDP, "eDP", 0 },
Thomas Hellstroma7331e52011-10-22 10:36:19 +0200162 { DRM_MODE_CONNECTOR_VIRTUAL, "Virtual", 0},
Dave Airlief453ba02008-11-07 14:05:41 -0800163};
164
165static struct drm_prop_enum_list drm_encoder_enum_list[] =
166{ { DRM_MODE_ENCODER_NONE, "None" },
167 { DRM_MODE_ENCODER_DAC, "DAC" },
168 { DRM_MODE_ENCODER_TMDS, "TMDS" },
169 { DRM_MODE_ENCODER_LVDS, "LVDS" },
170 { DRM_MODE_ENCODER_TVDAC, "TV" },
Thomas Hellstroma7331e52011-10-22 10:36:19 +0200171 { DRM_MODE_ENCODER_VIRTUAL, "Virtual" },
Dave Airlief453ba02008-11-07 14:05:41 -0800172};
173
174char *drm_get_encoder_name(struct drm_encoder *encoder)
175{
176 static char buf[32];
177
178 snprintf(buf, 32, "%s-%d",
179 drm_encoder_enum_list[encoder->encoder_type].name,
180 encoder->base.id);
181 return buf;
182}
Dave Airlie13a81952009-09-07 15:45:33 +1000183EXPORT_SYMBOL(drm_get_encoder_name);
Dave Airlief453ba02008-11-07 14:05:41 -0800184
185char *drm_get_connector_name(struct drm_connector *connector)
186{
187 static char buf[32];
188
189 snprintf(buf, 32, "%s-%d",
190 drm_connector_enum_list[connector->connector_type].name,
191 connector->connector_type_id);
192 return buf;
193}
194EXPORT_SYMBOL(drm_get_connector_name);
195
196char *drm_get_connector_status_name(enum drm_connector_status status)
197{
198 if (status == connector_status_connected)
199 return "connected";
200 else if (status == connector_status_disconnected)
201 return "disconnected";
202 else
203 return "unknown";
204}
205
206/**
207 * drm_mode_object_get - allocate a new identifier
208 * @dev: DRM device
209 * @ptr: object pointer, used to generate unique ID
210 * @type: object type
211 *
212 * LOCKING:
Dave Airlief453ba02008-11-07 14:05:41 -0800213 *
214 * Create a unique identifier based on @ptr in @dev's identifier space. Used
215 * for tracking modes, CRTCs and connectors.
216 *
217 * RETURNS:
218 * New unique (relative to other objects in @dev) integer identifier for the
219 * object.
220 */
221static int drm_mode_object_get(struct drm_device *dev,
222 struct drm_mode_object *obj, uint32_t obj_type)
223{
224 int new_id = 0;
225 int ret;
226
Dave Airlief453ba02008-11-07 14:05:41 -0800227again:
228 if (idr_pre_get(&dev->mode_config.crtc_idr, GFP_KERNEL) == 0) {
229 DRM_ERROR("Ran out memory getting a mode number\n");
Ville Syrjäläf1ae1262012-03-15 19:58:31 +0200230 return -ENOMEM;
Dave Airlief453ba02008-11-07 14:05:41 -0800231 }
232
Jesse Barnesad2563c2009-01-19 17:21:45 +1000233 mutex_lock(&dev->mode_config.idr_mutex);
Dave Airlief453ba02008-11-07 14:05:41 -0800234 ret = idr_get_new_above(&dev->mode_config.crtc_idr, obj, 1, &new_id);
Jesse Barnesad2563c2009-01-19 17:21:45 +1000235 mutex_unlock(&dev->mode_config.idr_mutex);
Dave Airlief453ba02008-11-07 14:05:41 -0800236 if (ret == -EAGAIN)
237 goto again;
Ville Syrjäläf1ae1262012-03-15 19:58:31 +0200238 else if (ret)
239 return ret;
Dave Airlief453ba02008-11-07 14:05:41 -0800240
241 obj->id = new_id;
242 obj->type = obj_type;
243 return 0;
244}
245
246/**
247 * drm_mode_object_put - free an identifer
248 * @dev: DRM device
249 * @id: ID to free
250 *
251 * LOCKING:
252 * Caller must hold DRM mode_config lock.
253 *
254 * Free @id from @dev's unique identifier pool.
255 */
256static void drm_mode_object_put(struct drm_device *dev,
257 struct drm_mode_object *object)
258{
Jesse Barnesad2563c2009-01-19 17:21:45 +1000259 mutex_lock(&dev->mode_config.idr_mutex);
Dave Airlief453ba02008-11-07 14:05:41 -0800260 idr_remove(&dev->mode_config.crtc_idr, object->id);
Jesse Barnesad2563c2009-01-19 17:21:45 +1000261 mutex_unlock(&dev->mode_config.idr_mutex);
Dave Airlief453ba02008-11-07 14:05:41 -0800262}
263
Daniel Vetter7a9c9062009-09-15 22:57:31 +0200264struct drm_mode_object *drm_mode_object_find(struct drm_device *dev,
265 uint32_t id, uint32_t type)
Dave Airlief453ba02008-11-07 14:05:41 -0800266{
Jesse Barnesad2563c2009-01-19 17:21:45 +1000267 struct drm_mode_object *obj = NULL;
Dave Airlief453ba02008-11-07 14:05:41 -0800268
Jesse Barnesad2563c2009-01-19 17:21:45 +1000269 mutex_lock(&dev->mode_config.idr_mutex);
Dave Airlief453ba02008-11-07 14:05:41 -0800270 obj = idr_find(&dev->mode_config.crtc_idr, id);
271 if (!obj || (obj->type != type) || (obj->id != id))
Jesse Barnesad2563c2009-01-19 17:21:45 +1000272 obj = NULL;
273 mutex_unlock(&dev->mode_config.idr_mutex);
Dave Airlief453ba02008-11-07 14:05:41 -0800274
275 return obj;
276}
277EXPORT_SYMBOL(drm_mode_object_find);
278
279/**
Dave Airlief453ba02008-11-07 14:05:41 -0800280 * drm_framebuffer_init - initialize a framebuffer
281 * @dev: DRM device
282 *
283 * LOCKING:
284 * Caller must hold mode config lock.
285 *
286 * Allocates an ID for the framebuffer's parent mode object, sets its mode
287 * functions & device file and adds it to the master fd list.
288 *
289 * RETURNS:
André Goddard Rosaaf901ca2009-11-14 13:09:05 -0200290 * Zero on success, error code on failure.
Dave Airlief453ba02008-11-07 14:05:41 -0800291 */
292int drm_framebuffer_init(struct drm_device *dev, struct drm_framebuffer *fb,
293 const struct drm_framebuffer_funcs *funcs)
294{
295 int ret;
296
Rob Clarkf7eff602012-09-05 21:48:38 +0000297 kref_init(&fb->refcount);
298
Dave Airlief453ba02008-11-07 14:05:41 -0800299 ret = drm_mode_object_get(dev, &fb->base, DRM_MODE_OBJECT_FB);
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200300 if (ret)
Dave Airlief453ba02008-11-07 14:05:41 -0800301 return ret;
Dave Airlief453ba02008-11-07 14:05:41 -0800302
303 fb->dev = dev;
304 fb->funcs = funcs;
305 dev->mode_config.num_fb++;
306 list_add(&fb->head, &dev->mode_config.fb_list);
307
308 return 0;
309}
310EXPORT_SYMBOL(drm_framebuffer_init);
311
Rob Clarkf7eff602012-09-05 21:48:38 +0000312static void drm_framebuffer_free(struct kref *kref)
313{
314 struct drm_framebuffer *fb =
315 container_of(kref, struct drm_framebuffer, refcount);
316 fb->funcs->destroy(fb);
317}
318
319/**
320 * drm_framebuffer_unreference - unref a framebuffer
321 *
322 * LOCKING:
323 * Caller must hold mode config lock.
324 */
325void drm_framebuffer_unreference(struct drm_framebuffer *fb)
326{
327 struct drm_device *dev = fb->dev;
328 DRM_DEBUG("FB ID: %d\n", fb->base.id);
329 WARN_ON(!mutex_is_locked(&dev->mode_config.mutex));
330 kref_put(&fb->refcount, drm_framebuffer_free);
331}
332EXPORT_SYMBOL(drm_framebuffer_unreference);
333
334/**
335 * drm_framebuffer_reference - incr the fb refcnt
336 */
337void drm_framebuffer_reference(struct drm_framebuffer *fb)
338{
339 DRM_DEBUG("FB ID: %d\n", fb->base.id);
340 kref_get(&fb->refcount);
341}
342EXPORT_SYMBOL(drm_framebuffer_reference);
343
Dave Airlief453ba02008-11-07 14:05:41 -0800344/**
345 * drm_framebuffer_cleanup - remove a framebuffer object
346 * @fb: framebuffer to remove
347 *
348 * LOCKING:
349 * Caller must hold mode config lock.
350 *
351 * Scans all the CRTCs in @dev's mode_config. If they're using @fb, removes
352 * it, setting it to NULL.
353 */
354void drm_framebuffer_cleanup(struct drm_framebuffer *fb)
355{
356 struct drm_device *dev = fb->dev;
Rob Clarkf7eff602012-09-05 21:48:38 +0000357 /*
358 * This could be moved to drm_framebuffer_remove(), but for
359 * debugging is nice to keep around the list of fb's that are
360 * no longer associated w/ a drm_file but are not unreferenced
361 * yet. (i915 and omapdrm have debugfs files which will show
362 * this.)
363 */
364 drm_mode_object_put(dev, &fb->base);
365 list_del(&fb->head);
366 dev->mode_config.num_fb--;
367}
368EXPORT_SYMBOL(drm_framebuffer_cleanup);
369
370/**
371 * drm_framebuffer_remove - remove and unreference a framebuffer object
372 * @fb: framebuffer to remove
373 *
374 * LOCKING:
375 * Caller must hold mode config lock.
376 *
377 * Scans all the CRTCs and planes in @dev's mode_config. If they're
378 * using @fb, removes it, setting it to NULL.
379 */
380void drm_framebuffer_remove(struct drm_framebuffer *fb)
381{
382 struct drm_device *dev = fb->dev;
Dave Airlief453ba02008-11-07 14:05:41 -0800383 struct drm_crtc *crtc;
Jesse Barnes8cf5c912011-11-14 14:51:27 -0800384 struct drm_plane *plane;
Dave Airlie5ef5f722009-08-17 13:11:23 +1000385 struct drm_mode_set set;
386 int ret;
Dave Airlief453ba02008-11-07 14:05:41 -0800387
388 /* remove from any CRTC */
389 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
Dave Airlie5ef5f722009-08-17 13:11:23 +1000390 if (crtc->fb == fb) {
391 /* should turn off the crtc */
392 memset(&set, 0, sizeof(struct drm_mode_set));
393 set.crtc = crtc;
394 set.fb = NULL;
395 ret = crtc->funcs->set_config(&set);
396 if (ret)
397 DRM_ERROR("failed to reset crtc %p when fb was deleted\n", crtc);
398 }
Dave Airlief453ba02008-11-07 14:05:41 -0800399 }
400
Jesse Barnes8cf5c912011-11-14 14:51:27 -0800401 list_for_each_entry(plane, &dev->mode_config.plane_list, head) {
402 if (plane->fb == fb) {
403 /* should turn off the crtc */
404 ret = plane->funcs->disable_plane(plane);
405 if (ret)
406 DRM_ERROR("failed to disable plane with busy fb\n");
Rob Clarka9971152011-12-13 20:19:35 -0600407 /* disconnect the plane from the fb and crtc: */
408 plane->fb = NULL;
409 plane->crtc = NULL;
Jesse Barnes8cf5c912011-11-14 14:51:27 -0800410 }
411 }
412
Rob Clarkf7eff602012-09-05 21:48:38 +0000413 list_del(&fb->filp_head);
414
415 drm_framebuffer_unreference(fb);
Dave Airlief453ba02008-11-07 14:05:41 -0800416}
Rob Clarkf7eff602012-09-05 21:48:38 +0000417EXPORT_SYMBOL(drm_framebuffer_remove);
Dave Airlief453ba02008-11-07 14:05:41 -0800418
419/**
420 * drm_crtc_init - Initialise a new CRTC object
421 * @dev: DRM device
422 * @crtc: CRTC object to init
423 * @funcs: callbacks for the new CRTC
424 *
425 * LOCKING:
Laurent Pinchart3b02ab82012-05-17 13:27:20 +0200426 * Takes mode_config lock.
Dave Airlief453ba02008-11-07 14:05:41 -0800427 *
428 * Inits a new object created as base part of an driver crtc object.
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200429 *
430 * RETURNS:
431 * Zero on success, error code on failure.
Dave Airlief453ba02008-11-07 14:05:41 -0800432 */
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200433int drm_crtc_init(struct drm_device *dev, struct drm_crtc *crtc,
Dave Airlief453ba02008-11-07 14:05:41 -0800434 const struct drm_crtc_funcs *funcs)
435{
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200436 int ret;
437
Dave Airlief453ba02008-11-07 14:05:41 -0800438 crtc->dev = dev;
439 crtc->funcs = funcs;
440
441 mutex_lock(&dev->mode_config.mutex);
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200442
443 ret = drm_mode_object_get(dev, &crtc->base, DRM_MODE_OBJECT_CRTC);
444 if (ret)
445 goto out;
Dave Airlief453ba02008-11-07 14:05:41 -0800446
Paulo Zanonibffd9de02012-05-15 18:09:05 -0300447 crtc->base.properties = &crtc->properties;
448
Dave Airlief453ba02008-11-07 14:05:41 -0800449 list_add_tail(&crtc->head, &dev->mode_config.crtc_list);
450 dev->mode_config.num_crtc++;
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200451
452 out:
Dave Airlief453ba02008-11-07 14:05:41 -0800453 mutex_unlock(&dev->mode_config.mutex);
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200454
455 return ret;
Dave Airlief453ba02008-11-07 14:05:41 -0800456}
457EXPORT_SYMBOL(drm_crtc_init);
458
459/**
460 * drm_crtc_cleanup - Cleans up the core crtc usage.
461 * @crtc: CRTC to cleanup
462 *
463 * LOCKING:
464 * Caller must hold mode config lock.
465 *
466 * Cleanup @crtc. Removes from drm modesetting space
467 * does NOT free object, caller does that.
468 */
469void drm_crtc_cleanup(struct drm_crtc *crtc)
470{
471 struct drm_device *dev = crtc->dev;
472
473 if (crtc->gamma_store) {
474 kfree(crtc->gamma_store);
475 crtc->gamma_store = NULL;
476 }
477
478 drm_mode_object_put(dev, &crtc->base);
479 list_del(&crtc->head);
480 dev->mode_config.num_crtc--;
481}
482EXPORT_SYMBOL(drm_crtc_cleanup);
483
484/**
485 * drm_mode_probed_add - add a mode to a connector's probed mode list
486 * @connector: connector the new mode
487 * @mode: mode data
488 *
489 * LOCKING:
490 * Caller must hold mode config lock.
491 *
492 * Add @mode to @connector's mode list for later use.
493 */
494void drm_mode_probed_add(struct drm_connector *connector,
495 struct drm_display_mode *mode)
496{
497 list_add(&mode->head, &connector->probed_modes);
498}
499EXPORT_SYMBOL(drm_mode_probed_add);
500
501/**
502 * drm_mode_remove - remove and free a mode
503 * @connector: connector list to modify
504 * @mode: mode to remove
505 *
506 * LOCKING:
507 * Caller must hold mode config lock.
508 *
509 * Remove @mode from @connector's mode list, then free it.
510 */
511void drm_mode_remove(struct drm_connector *connector,
512 struct drm_display_mode *mode)
513{
514 list_del(&mode->head);
Sascha Hauer554f1d72012-02-01 11:38:19 +0100515 drm_mode_destroy(connector->dev, mode);
Dave Airlief453ba02008-11-07 14:05:41 -0800516}
517EXPORT_SYMBOL(drm_mode_remove);
518
519/**
520 * drm_connector_init - Init a preallocated connector
521 * @dev: DRM device
522 * @connector: the connector to init
523 * @funcs: callbacks for this connector
524 * @name: user visible name of the connector
525 *
526 * LOCKING:
Sascha Hauerb20f3862012-02-01 11:38:31 +0100527 * Takes mode config lock.
Dave Airlief453ba02008-11-07 14:05:41 -0800528 *
529 * Initialises a preallocated connector. Connectors should be
530 * subclassed as part of driver connector objects.
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200531 *
532 * RETURNS:
533 * Zero on success, error code on failure.
Dave Airlief453ba02008-11-07 14:05:41 -0800534 */
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200535int drm_connector_init(struct drm_device *dev,
536 struct drm_connector *connector,
537 const struct drm_connector_funcs *funcs,
538 int connector_type)
Dave Airlief453ba02008-11-07 14:05:41 -0800539{
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200540 int ret;
541
Dave Airlief453ba02008-11-07 14:05:41 -0800542 mutex_lock(&dev->mode_config.mutex);
543
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200544 ret = drm_mode_object_get(dev, &connector->base, DRM_MODE_OBJECT_CONNECTOR);
545 if (ret)
546 goto out;
547
Paulo Zanoni7e3bdf42012-05-15 18:09:01 -0300548 connector->base.properties = &connector->properties;
Dave Airlief453ba02008-11-07 14:05:41 -0800549 connector->dev = dev;
550 connector->funcs = funcs;
Dave Airlief453ba02008-11-07 14:05:41 -0800551 connector->connector_type = connector_type;
552 connector->connector_type_id =
553 ++drm_connector_enum_list[connector_type].count; /* TODO */
554 INIT_LIST_HEAD(&connector->user_modes);
555 INIT_LIST_HEAD(&connector->probed_modes);
556 INIT_LIST_HEAD(&connector->modes);
557 connector->edid_blob_ptr = NULL;
558
559 list_add_tail(&connector->head, &dev->mode_config.connector_list);
560 dev->mode_config.num_connector++;
561
Thomas Hellstroma7331e52011-10-22 10:36:19 +0200562 if (connector_type != DRM_MODE_CONNECTOR_VIRTUAL)
563 drm_connector_attach_property(connector,
564 dev->mode_config.edid_property,
565 0);
Dave Airlief453ba02008-11-07 14:05:41 -0800566
567 drm_connector_attach_property(connector,
568 dev->mode_config.dpms_property, 0);
569
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200570 out:
Dave Airlief453ba02008-11-07 14:05:41 -0800571 mutex_unlock(&dev->mode_config.mutex);
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200572
573 return ret;
Dave Airlief453ba02008-11-07 14:05:41 -0800574}
575EXPORT_SYMBOL(drm_connector_init);
576
577/**
578 * drm_connector_cleanup - cleans up an initialised connector
579 * @connector: connector to cleanup
580 *
581 * LOCKING:
Sascha Hauerb20f3862012-02-01 11:38:31 +0100582 * Takes mode config lock.
Dave Airlief453ba02008-11-07 14:05:41 -0800583 *
584 * Cleans up the connector but doesn't free the object.
585 */
586void drm_connector_cleanup(struct drm_connector *connector)
587{
588 struct drm_device *dev = connector->dev;
589 struct drm_display_mode *mode, *t;
590
591 list_for_each_entry_safe(mode, t, &connector->probed_modes, head)
592 drm_mode_remove(connector, mode);
593
594 list_for_each_entry_safe(mode, t, &connector->modes, head)
595 drm_mode_remove(connector, mode);
596
597 list_for_each_entry_safe(mode, t, &connector->user_modes, head)
598 drm_mode_remove(connector, mode);
599
600 mutex_lock(&dev->mode_config.mutex);
601 drm_mode_object_put(dev, &connector->base);
602 list_del(&connector->head);
Joonyoung Shim6380c502011-08-27 02:06:21 +0000603 dev->mode_config.num_connector--;
Dave Airlief453ba02008-11-07 14:05:41 -0800604 mutex_unlock(&dev->mode_config.mutex);
605}
606EXPORT_SYMBOL(drm_connector_cleanup);
607
Dave Airliecbc7e222012-02-20 14:16:40 +0000608void drm_connector_unplug_all(struct drm_device *dev)
609{
610 struct drm_connector *connector;
611
612 /* taking the mode config mutex ends up in a clash with sysfs */
613 list_for_each_entry(connector, &dev->mode_config.connector_list, head)
614 drm_sysfs_connector_remove(connector);
615
616}
617EXPORT_SYMBOL(drm_connector_unplug_all);
618
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200619int drm_encoder_init(struct drm_device *dev,
Dave Airliecbc7e222012-02-20 14:16:40 +0000620 struct drm_encoder *encoder,
621 const struct drm_encoder_funcs *funcs,
622 int encoder_type)
Dave Airlief453ba02008-11-07 14:05:41 -0800623{
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200624 int ret;
625
Dave Airlief453ba02008-11-07 14:05:41 -0800626 mutex_lock(&dev->mode_config.mutex);
627
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200628 ret = drm_mode_object_get(dev, &encoder->base, DRM_MODE_OBJECT_ENCODER);
629 if (ret)
630 goto out;
Dave Airlief453ba02008-11-07 14:05:41 -0800631
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200632 encoder->dev = dev;
Dave Airlief453ba02008-11-07 14:05:41 -0800633 encoder->encoder_type = encoder_type;
634 encoder->funcs = funcs;
635
636 list_add_tail(&encoder->head, &dev->mode_config.encoder_list);
637 dev->mode_config.num_encoder++;
638
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200639 out:
Dave Airlief453ba02008-11-07 14:05:41 -0800640 mutex_unlock(&dev->mode_config.mutex);
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200641
642 return ret;
Dave Airlief453ba02008-11-07 14:05:41 -0800643}
644EXPORT_SYMBOL(drm_encoder_init);
645
646void drm_encoder_cleanup(struct drm_encoder *encoder)
647{
648 struct drm_device *dev = encoder->dev;
649 mutex_lock(&dev->mode_config.mutex);
650 drm_mode_object_put(dev, &encoder->base);
651 list_del(&encoder->head);
Joonyoung Shim6380c502011-08-27 02:06:21 +0000652 dev->mode_config.num_encoder--;
Dave Airlief453ba02008-11-07 14:05:41 -0800653 mutex_unlock(&dev->mode_config.mutex);
654}
655EXPORT_SYMBOL(drm_encoder_cleanup);
656
Jesse Barnes8cf5c912011-11-14 14:51:27 -0800657int drm_plane_init(struct drm_device *dev, struct drm_plane *plane,
658 unsigned long possible_crtcs,
659 const struct drm_plane_funcs *funcs,
Rob Clark0a7eb242011-12-13 20:19:36 -0600660 const uint32_t *formats, uint32_t format_count,
661 bool priv)
Jesse Barnes8cf5c912011-11-14 14:51:27 -0800662{
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200663 int ret;
664
Jesse Barnes8cf5c912011-11-14 14:51:27 -0800665 mutex_lock(&dev->mode_config.mutex);
666
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200667 ret = drm_mode_object_get(dev, &plane->base, DRM_MODE_OBJECT_PLANE);
668 if (ret)
669 goto out;
670
Rob Clark4d939142012-05-17 02:23:27 -0600671 plane->base.properties = &plane->properties;
Jesse Barnes8cf5c912011-11-14 14:51:27 -0800672 plane->dev = dev;
Jesse Barnes8cf5c912011-11-14 14:51:27 -0800673 plane->funcs = funcs;
674 plane->format_types = kmalloc(sizeof(uint32_t) * format_count,
675 GFP_KERNEL);
676 if (!plane->format_types) {
677 DRM_DEBUG_KMS("out of memory when allocating plane\n");
678 drm_mode_object_put(dev, &plane->base);
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200679 ret = -ENOMEM;
680 goto out;
Jesse Barnes8cf5c912011-11-14 14:51:27 -0800681 }
682
Jesse Barnes308e5bc2011-11-14 14:51:28 -0800683 memcpy(plane->format_types, formats, format_count * sizeof(uint32_t));
Jesse Barnes8cf5c912011-11-14 14:51:27 -0800684 plane->format_count = format_count;
685 plane->possible_crtcs = possible_crtcs;
686
Rob Clark0a7eb242011-12-13 20:19:36 -0600687 /* private planes are not exposed to userspace, but depending on
688 * display hardware, might be convenient to allow sharing programming
689 * for the scanout engine with the crtc implementation.
690 */
691 if (!priv) {
692 list_add_tail(&plane->head, &dev->mode_config.plane_list);
693 dev->mode_config.num_plane++;
694 } else {
695 INIT_LIST_HEAD(&plane->head);
696 }
Jesse Barnes8cf5c912011-11-14 14:51:27 -0800697
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200698 out:
Jesse Barnes8cf5c912011-11-14 14:51:27 -0800699 mutex_unlock(&dev->mode_config.mutex);
700
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200701 return ret;
Jesse Barnes8cf5c912011-11-14 14:51:27 -0800702}
703EXPORT_SYMBOL(drm_plane_init);
704
705void drm_plane_cleanup(struct drm_plane *plane)
706{
707 struct drm_device *dev = plane->dev;
708
709 mutex_lock(&dev->mode_config.mutex);
710 kfree(plane->format_types);
711 drm_mode_object_put(dev, &plane->base);
Rob Clark0a7eb242011-12-13 20:19:36 -0600712 /* if not added to a list, it must be a private plane */
713 if (!list_empty(&plane->head)) {
714 list_del(&plane->head);
715 dev->mode_config.num_plane--;
716 }
Jesse Barnes8cf5c912011-11-14 14:51:27 -0800717 mutex_unlock(&dev->mode_config.mutex);
718}
719EXPORT_SYMBOL(drm_plane_cleanup);
720
Dave Airlief453ba02008-11-07 14:05:41 -0800721/**
722 * drm_mode_create - create a new display mode
723 * @dev: DRM device
724 *
725 * LOCKING:
726 * Caller must hold DRM mode_config lock.
727 *
728 * Create a new drm_display_mode, give it an ID, and return it.
729 *
730 * RETURNS:
731 * Pointer to new mode on success, NULL on error.
732 */
733struct drm_display_mode *drm_mode_create(struct drm_device *dev)
734{
735 struct drm_display_mode *nmode;
736
737 nmode = kzalloc(sizeof(struct drm_display_mode), GFP_KERNEL);
738 if (!nmode)
739 return NULL;
740
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200741 if (drm_mode_object_get(dev, &nmode->base, DRM_MODE_OBJECT_MODE)) {
742 kfree(nmode);
743 return NULL;
744 }
745
Dave Airlief453ba02008-11-07 14:05:41 -0800746 return nmode;
747}
748EXPORT_SYMBOL(drm_mode_create);
749
750/**
751 * drm_mode_destroy - remove a mode
752 * @dev: DRM device
753 * @mode: mode to remove
754 *
755 * LOCKING:
756 * Caller must hold mode config lock.
757 *
758 * Free @mode's unique identifier, then free it.
759 */
760void drm_mode_destroy(struct drm_device *dev, struct drm_display_mode *mode)
761{
Ville Syrjäläee34ab52012-03-13 12:35:43 +0200762 if (!mode)
763 return;
764
Dave Airlief453ba02008-11-07 14:05:41 -0800765 drm_mode_object_put(dev, &mode->base);
766
767 kfree(mode);
768}
769EXPORT_SYMBOL(drm_mode_destroy);
770
771static int drm_mode_create_standard_connector_properties(struct drm_device *dev)
772{
773 struct drm_property *edid;
774 struct drm_property *dpms;
Dave Airlief453ba02008-11-07 14:05:41 -0800775
776 /*
777 * Standard properties (apply to all connectors)
778 */
779 edid = drm_property_create(dev, DRM_MODE_PROP_BLOB |
780 DRM_MODE_PROP_IMMUTABLE,
781 "EDID", 0);
782 dev->mode_config.edid_property = edid;
783
Sascha Hauer4a67d392012-02-06 10:58:17 +0100784 dpms = drm_property_create_enum(dev, 0,
785 "DPMS", drm_dpms_enum_list,
786 ARRAY_SIZE(drm_dpms_enum_list));
Dave Airlief453ba02008-11-07 14:05:41 -0800787 dev->mode_config.dpms_property = dpms;
788
789 return 0;
790}
791
792/**
793 * drm_mode_create_dvi_i_properties - create DVI-I specific connector properties
794 * @dev: DRM device
795 *
796 * Called by a driver the first time a DVI-I connector is made.
797 */
798int drm_mode_create_dvi_i_properties(struct drm_device *dev)
799{
800 struct drm_property *dvi_i_selector;
801 struct drm_property *dvi_i_subconnector;
Dave Airlief453ba02008-11-07 14:05:41 -0800802
803 if (dev->mode_config.dvi_i_select_subconnector_property)
804 return 0;
805
806 dvi_i_selector =
Sascha Hauer4a67d392012-02-06 10:58:17 +0100807 drm_property_create_enum(dev, 0,
Dave Airlief453ba02008-11-07 14:05:41 -0800808 "select subconnector",
Sascha Hauer4a67d392012-02-06 10:58:17 +0100809 drm_dvi_i_select_enum_list,
Dave Airlief453ba02008-11-07 14:05:41 -0800810 ARRAY_SIZE(drm_dvi_i_select_enum_list));
Dave Airlief453ba02008-11-07 14:05:41 -0800811 dev->mode_config.dvi_i_select_subconnector_property = dvi_i_selector;
812
Sascha Hauer4a67d392012-02-06 10:58:17 +0100813 dvi_i_subconnector = drm_property_create_enum(dev, DRM_MODE_PROP_IMMUTABLE,
Dave Airlief453ba02008-11-07 14:05:41 -0800814 "subconnector",
Sascha Hauer4a67d392012-02-06 10:58:17 +0100815 drm_dvi_i_subconnector_enum_list,
Dave Airlief453ba02008-11-07 14:05:41 -0800816 ARRAY_SIZE(drm_dvi_i_subconnector_enum_list));
Dave Airlief453ba02008-11-07 14:05:41 -0800817 dev->mode_config.dvi_i_subconnector_property = dvi_i_subconnector;
818
819 return 0;
820}
821EXPORT_SYMBOL(drm_mode_create_dvi_i_properties);
822
823/**
824 * drm_create_tv_properties - create TV specific connector properties
825 * @dev: DRM device
826 * @num_modes: number of different TV formats (modes) supported
827 * @modes: array of pointers to strings containing name of each format
828 *
829 * Called by a driver's TV initialization routine, this function creates
830 * the TV specific connector properties for a given device. Caller is
831 * responsible for allocating a list of format names and passing them to
832 * this routine.
833 */
834int drm_mode_create_tv_properties(struct drm_device *dev, int num_modes,
835 char *modes[])
836{
837 struct drm_property *tv_selector;
838 struct drm_property *tv_subconnector;
839 int i;
840
841 if (dev->mode_config.tv_select_subconnector_property)
842 return 0;
843
844 /*
845 * Basic connector properties
846 */
Sascha Hauer4a67d392012-02-06 10:58:17 +0100847 tv_selector = drm_property_create_enum(dev, 0,
Dave Airlief453ba02008-11-07 14:05:41 -0800848 "select subconnector",
Sascha Hauer4a67d392012-02-06 10:58:17 +0100849 drm_tv_select_enum_list,
Dave Airlief453ba02008-11-07 14:05:41 -0800850 ARRAY_SIZE(drm_tv_select_enum_list));
Dave Airlief453ba02008-11-07 14:05:41 -0800851 dev->mode_config.tv_select_subconnector_property = tv_selector;
852
853 tv_subconnector =
Sascha Hauer4a67d392012-02-06 10:58:17 +0100854 drm_property_create_enum(dev, DRM_MODE_PROP_IMMUTABLE,
855 "subconnector",
856 drm_tv_subconnector_enum_list,
Dave Airlief453ba02008-11-07 14:05:41 -0800857 ARRAY_SIZE(drm_tv_subconnector_enum_list));
Dave Airlief453ba02008-11-07 14:05:41 -0800858 dev->mode_config.tv_subconnector_property = tv_subconnector;
859
860 /*
861 * Other, TV specific properties: margins & TV modes.
862 */
863 dev->mode_config.tv_left_margin_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +0100864 drm_property_create_range(dev, 0, "left margin", 0, 100);
Dave Airlief453ba02008-11-07 14:05:41 -0800865
866 dev->mode_config.tv_right_margin_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +0100867 drm_property_create_range(dev, 0, "right margin", 0, 100);
Dave Airlief453ba02008-11-07 14:05:41 -0800868
869 dev->mode_config.tv_top_margin_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +0100870 drm_property_create_range(dev, 0, "top margin", 0, 100);
Dave Airlief453ba02008-11-07 14:05:41 -0800871
872 dev->mode_config.tv_bottom_margin_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +0100873 drm_property_create_range(dev, 0, "bottom margin", 0, 100);
Dave Airlief453ba02008-11-07 14:05:41 -0800874
875 dev->mode_config.tv_mode_property =
876 drm_property_create(dev, DRM_MODE_PROP_ENUM,
877 "mode", num_modes);
878 for (i = 0; i < num_modes; i++)
879 drm_property_add_enum(dev->mode_config.tv_mode_property, i,
880 i, modes[i]);
881
Francisco Jerezb6b79022009-08-02 04:19:20 +0200882 dev->mode_config.tv_brightness_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +0100883 drm_property_create_range(dev, 0, "brightness", 0, 100);
Francisco Jerezb6b79022009-08-02 04:19:20 +0200884
885 dev->mode_config.tv_contrast_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +0100886 drm_property_create_range(dev, 0, "contrast", 0, 100);
Francisco Jerezb6b79022009-08-02 04:19:20 +0200887
888 dev->mode_config.tv_flicker_reduction_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +0100889 drm_property_create_range(dev, 0, "flicker reduction", 0, 100);
Francisco Jerezb6b79022009-08-02 04:19:20 +0200890
Francisco Jereza75f0232009-08-12 02:30:10 +0200891 dev->mode_config.tv_overscan_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +0100892 drm_property_create_range(dev, 0, "overscan", 0, 100);
Francisco Jereza75f0232009-08-12 02:30:10 +0200893
894 dev->mode_config.tv_saturation_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +0100895 drm_property_create_range(dev, 0, "saturation", 0, 100);
Francisco Jereza75f0232009-08-12 02:30:10 +0200896
897 dev->mode_config.tv_hue_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +0100898 drm_property_create_range(dev, 0, "hue", 0, 100);
Francisco Jereza75f0232009-08-12 02:30:10 +0200899
Dave Airlief453ba02008-11-07 14:05:41 -0800900 return 0;
901}
902EXPORT_SYMBOL(drm_mode_create_tv_properties);
903
904/**
905 * drm_mode_create_scaling_mode_property - create scaling mode property
906 * @dev: DRM device
907 *
908 * Called by a driver the first time it's needed, must be attached to desired
909 * connectors.
910 */
911int drm_mode_create_scaling_mode_property(struct drm_device *dev)
912{
913 struct drm_property *scaling_mode;
Dave Airlief453ba02008-11-07 14:05:41 -0800914
915 if (dev->mode_config.scaling_mode_property)
916 return 0;
917
918 scaling_mode =
Sascha Hauer4a67d392012-02-06 10:58:17 +0100919 drm_property_create_enum(dev, 0, "scaling mode",
920 drm_scaling_mode_enum_list,
Dave Airlief453ba02008-11-07 14:05:41 -0800921 ARRAY_SIZE(drm_scaling_mode_enum_list));
Dave Airlief453ba02008-11-07 14:05:41 -0800922
923 dev->mode_config.scaling_mode_property = scaling_mode;
924
925 return 0;
926}
927EXPORT_SYMBOL(drm_mode_create_scaling_mode_property);
928
929/**
930 * drm_mode_create_dithering_property - create dithering property
931 * @dev: DRM device
932 *
933 * Called by a driver the first time it's needed, must be attached to desired
934 * connectors.
935 */
936int drm_mode_create_dithering_property(struct drm_device *dev)
937{
938 struct drm_property *dithering_mode;
Dave Airlief453ba02008-11-07 14:05:41 -0800939
940 if (dev->mode_config.dithering_mode_property)
941 return 0;
942
943 dithering_mode =
Sascha Hauer4a67d392012-02-06 10:58:17 +0100944 drm_property_create_enum(dev, 0, "dithering",
945 drm_dithering_mode_enum_list,
Dave Airlief453ba02008-11-07 14:05:41 -0800946 ARRAY_SIZE(drm_dithering_mode_enum_list));
Dave Airlief453ba02008-11-07 14:05:41 -0800947 dev->mode_config.dithering_mode_property = dithering_mode;
948
949 return 0;
950}
951EXPORT_SYMBOL(drm_mode_create_dithering_property);
952
953/**
Jakob Bornecrantz884840a2009-12-03 23:25:47 +0000954 * drm_mode_create_dirty_property - create dirty property
955 * @dev: DRM device
956 *
957 * Called by a driver the first time it's needed, must be attached to desired
958 * connectors.
959 */
960int drm_mode_create_dirty_info_property(struct drm_device *dev)
961{
962 struct drm_property *dirty_info;
Jakob Bornecrantz884840a2009-12-03 23:25:47 +0000963
964 if (dev->mode_config.dirty_info_property)
965 return 0;
966
967 dirty_info =
Sascha Hauer4a67d392012-02-06 10:58:17 +0100968 drm_property_create_enum(dev, DRM_MODE_PROP_IMMUTABLE,
Jakob Bornecrantz884840a2009-12-03 23:25:47 +0000969 "dirty",
Sascha Hauer4a67d392012-02-06 10:58:17 +0100970 drm_dirty_info_enum_list,
Jakob Bornecrantz884840a2009-12-03 23:25:47 +0000971 ARRAY_SIZE(drm_dirty_info_enum_list));
Jakob Bornecrantz884840a2009-12-03 23:25:47 +0000972 dev->mode_config.dirty_info_property = dirty_info;
973
974 return 0;
975}
976EXPORT_SYMBOL(drm_mode_create_dirty_info_property);
977
978/**
Dave Airlief453ba02008-11-07 14:05:41 -0800979 * drm_mode_config_init - initialize DRM mode_configuration structure
980 * @dev: DRM device
981 *
982 * LOCKING:
983 * None, should happen single threaded at init time.
984 *
985 * Initialize @dev's mode_config structure, used for tracking the graphics
986 * configuration of @dev.
987 */
988void drm_mode_config_init(struct drm_device *dev)
989{
990 mutex_init(&dev->mode_config.mutex);
Jesse Barnesad2563c2009-01-19 17:21:45 +1000991 mutex_init(&dev->mode_config.idr_mutex);
Dave Airlief453ba02008-11-07 14:05:41 -0800992 INIT_LIST_HEAD(&dev->mode_config.fb_list);
Dave Airlief453ba02008-11-07 14:05:41 -0800993 INIT_LIST_HEAD(&dev->mode_config.crtc_list);
994 INIT_LIST_HEAD(&dev->mode_config.connector_list);
995 INIT_LIST_HEAD(&dev->mode_config.encoder_list);
996 INIT_LIST_HEAD(&dev->mode_config.property_list);
997 INIT_LIST_HEAD(&dev->mode_config.property_blob_list);
Jesse Barnes8cf5c912011-11-14 14:51:27 -0800998 INIT_LIST_HEAD(&dev->mode_config.plane_list);
Dave Airlief453ba02008-11-07 14:05:41 -0800999 idr_init(&dev->mode_config.crtc_idr);
1000
1001 mutex_lock(&dev->mode_config.mutex);
1002 drm_mode_create_standard_connector_properties(dev);
1003 mutex_unlock(&dev->mode_config.mutex);
1004
1005 /* Just to be sure */
1006 dev->mode_config.num_fb = 0;
1007 dev->mode_config.num_connector = 0;
1008 dev->mode_config.num_crtc = 0;
1009 dev->mode_config.num_encoder = 0;
Dave Airlief453ba02008-11-07 14:05:41 -08001010}
1011EXPORT_SYMBOL(drm_mode_config_init);
1012
1013int drm_mode_group_init(struct drm_device *dev, struct drm_mode_group *group)
1014{
1015 uint32_t total_objects = 0;
1016
1017 total_objects += dev->mode_config.num_crtc;
1018 total_objects += dev->mode_config.num_connector;
1019 total_objects += dev->mode_config.num_encoder;
1020
Dave Airlief453ba02008-11-07 14:05:41 -08001021 group->id_list = kzalloc(total_objects * sizeof(uint32_t), GFP_KERNEL);
1022 if (!group->id_list)
1023 return -ENOMEM;
1024
1025 group->num_crtcs = 0;
1026 group->num_connectors = 0;
1027 group->num_encoders = 0;
1028 return 0;
1029}
1030
1031int drm_mode_group_init_legacy_group(struct drm_device *dev,
1032 struct drm_mode_group *group)
1033{
1034 struct drm_crtc *crtc;
1035 struct drm_encoder *encoder;
1036 struct drm_connector *connector;
1037 int ret;
1038
1039 if ((ret = drm_mode_group_init(dev, group)))
1040 return ret;
1041
1042 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head)
1043 group->id_list[group->num_crtcs++] = crtc->base.id;
1044
1045 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head)
1046 group->id_list[group->num_crtcs + group->num_encoders++] =
1047 encoder->base.id;
1048
1049 list_for_each_entry(connector, &dev->mode_config.connector_list, head)
1050 group->id_list[group->num_crtcs + group->num_encoders +
1051 group->num_connectors++] = connector->base.id;
1052
1053 return 0;
1054}
Dave Airlie9c1dfc52012-03-20 06:59:29 +00001055EXPORT_SYMBOL(drm_mode_group_init_legacy_group);
Dave Airlief453ba02008-11-07 14:05:41 -08001056
1057/**
1058 * drm_mode_config_cleanup - free up DRM mode_config info
1059 * @dev: DRM device
1060 *
1061 * LOCKING:
1062 * Caller must hold mode config lock.
1063 *
1064 * Free up all the connectors and CRTCs associated with this DRM device, then
1065 * free up the framebuffers and associated buffer objects.
1066 *
1067 * FIXME: cleanup any dangling user buffer objects too
1068 */
1069void drm_mode_config_cleanup(struct drm_device *dev)
1070{
1071 struct drm_connector *connector, *ot;
1072 struct drm_crtc *crtc, *ct;
1073 struct drm_encoder *encoder, *enct;
1074 struct drm_framebuffer *fb, *fbt;
1075 struct drm_property *property, *pt;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001076 struct drm_plane *plane, *plt;
Dave Airlief453ba02008-11-07 14:05:41 -08001077
1078 list_for_each_entry_safe(encoder, enct, &dev->mode_config.encoder_list,
1079 head) {
1080 encoder->funcs->destroy(encoder);
1081 }
1082
1083 list_for_each_entry_safe(connector, ot,
1084 &dev->mode_config.connector_list, head) {
1085 connector->funcs->destroy(connector);
1086 }
1087
1088 list_for_each_entry_safe(property, pt, &dev->mode_config.property_list,
1089 head) {
1090 drm_property_destroy(dev, property);
1091 }
1092
1093 list_for_each_entry_safe(fb, fbt, &dev->mode_config.fb_list, head) {
Rob Clarkf7eff602012-09-05 21:48:38 +00001094 drm_framebuffer_remove(fb);
Dave Airlief453ba02008-11-07 14:05:41 -08001095 }
1096
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001097 list_for_each_entry_safe(plane, plt, &dev->mode_config.plane_list,
1098 head) {
1099 plane->funcs->destroy(plane);
1100 }
Sascha Hauer59ce0622012-02-01 11:38:20 +01001101
Chris Wilson31840092012-09-17 09:38:03 +00001102 list_for_each_entry_safe(crtc, ct, &dev->mode_config.crtc_list, head) {
1103 crtc->funcs->destroy(crtc);
1104 }
1105
Sascha Hauer59ce0622012-02-01 11:38:20 +01001106 idr_remove_all(&dev->mode_config.crtc_idr);
1107 idr_destroy(&dev->mode_config.crtc_idr);
Dave Airlief453ba02008-11-07 14:05:41 -08001108}
1109EXPORT_SYMBOL(drm_mode_config_cleanup);
1110
Dave Airlief453ba02008-11-07 14:05:41 -08001111/**
1112 * drm_crtc_convert_to_umode - convert a drm_display_mode into a modeinfo
1113 * @out: drm_mode_modeinfo struct to return to the user
1114 * @in: drm_display_mode to use
1115 *
1116 * LOCKING:
1117 * None.
1118 *
1119 * Convert a drm_display_mode into a drm_mode_modeinfo structure to return to
1120 * the user.
1121 */
Ville Syrjälä93bbf6d2012-03-13 12:35:47 +02001122static void drm_crtc_convert_to_umode(struct drm_mode_modeinfo *out,
1123 const struct drm_display_mode *in)
Dave Airlief453ba02008-11-07 14:05:41 -08001124{
Ville Syrjäläe36fae32012-03-13 12:35:40 +02001125 WARN(in->hdisplay > USHRT_MAX || in->hsync_start > USHRT_MAX ||
1126 in->hsync_end > USHRT_MAX || in->htotal > USHRT_MAX ||
1127 in->hskew > USHRT_MAX || in->vdisplay > USHRT_MAX ||
1128 in->vsync_start > USHRT_MAX || in->vsync_end > USHRT_MAX ||
1129 in->vtotal > USHRT_MAX || in->vscan > USHRT_MAX,
1130 "timing values too large for mode info\n");
1131
Dave Airlief453ba02008-11-07 14:05:41 -08001132 out->clock = in->clock;
1133 out->hdisplay = in->hdisplay;
1134 out->hsync_start = in->hsync_start;
1135 out->hsync_end = in->hsync_end;
1136 out->htotal = in->htotal;
1137 out->hskew = in->hskew;
1138 out->vdisplay = in->vdisplay;
1139 out->vsync_start = in->vsync_start;
1140 out->vsync_end = in->vsync_end;
1141 out->vtotal = in->vtotal;
1142 out->vscan = in->vscan;
1143 out->vrefresh = in->vrefresh;
1144 out->flags = in->flags;
1145 out->type = in->type;
1146 strncpy(out->name, in->name, DRM_DISPLAY_MODE_LEN);
1147 out->name[DRM_DISPLAY_MODE_LEN-1] = 0;
1148}
1149
1150/**
1151 * drm_crtc_convert_to_umode - convert a modeinfo into a drm_display_mode
1152 * @out: drm_display_mode to return to the user
1153 * @in: drm_mode_modeinfo to use
1154 *
1155 * LOCKING:
1156 * None.
1157 *
1158 * Convert a drm_mode_modeinfo into a drm_display_mode structure to return to
1159 * the caller.
Ville Syrjälä90367bf2012-03-13 12:35:44 +02001160 *
1161 * RETURNS:
1162 * Zero on success, errno on failure.
Dave Airlief453ba02008-11-07 14:05:41 -08001163 */
Ville Syrjälä93bbf6d2012-03-13 12:35:47 +02001164static int drm_crtc_convert_umode(struct drm_display_mode *out,
1165 const struct drm_mode_modeinfo *in)
Dave Airlief453ba02008-11-07 14:05:41 -08001166{
Ville Syrjälä90367bf2012-03-13 12:35:44 +02001167 if (in->clock > INT_MAX || in->vrefresh > INT_MAX)
1168 return -ERANGE;
1169
Dave Airlief453ba02008-11-07 14:05:41 -08001170 out->clock = in->clock;
1171 out->hdisplay = in->hdisplay;
1172 out->hsync_start = in->hsync_start;
1173 out->hsync_end = in->hsync_end;
1174 out->htotal = in->htotal;
1175 out->hskew = in->hskew;
1176 out->vdisplay = in->vdisplay;
1177 out->vsync_start = in->vsync_start;
1178 out->vsync_end = in->vsync_end;
1179 out->vtotal = in->vtotal;
1180 out->vscan = in->vscan;
1181 out->vrefresh = in->vrefresh;
1182 out->flags = in->flags;
1183 out->type = in->type;
1184 strncpy(out->name, in->name, DRM_DISPLAY_MODE_LEN);
1185 out->name[DRM_DISPLAY_MODE_LEN-1] = 0;
Ville Syrjälä90367bf2012-03-13 12:35:44 +02001186
1187 return 0;
Dave Airlief453ba02008-11-07 14:05:41 -08001188}
1189
1190/**
1191 * drm_mode_getresources - get graphics configuration
1192 * @inode: inode from the ioctl
1193 * @filp: file * from the ioctl
1194 * @cmd: cmd from ioctl
1195 * @arg: arg from ioctl
1196 *
1197 * LOCKING:
1198 * Takes mode config lock.
1199 *
1200 * Construct a set of configuration description structures and return
1201 * them to the user, including CRTC, connector and framebuffer configuration.
1202 *
1203 * Called by the user via ioctl.
1204 *
1205 * RETURNS:
1206 * Zero on success, errno on failure.
1207 */
1208int drm_mode_getresources(struct drm_device *dev, void *data,
1209 struct drm_file *file_priv)
1210{
1211 struct drm_mode_card_res *card_res = data;
1212 struct list_head *lh;
1213 struct drm_framebuffer *fb;
1214 struct drm_connector *connector;
1215 struct drm_crtc *crtc;
1216 struct drm_encoder *encoder;
1217 int ret = 0;
1218 int connector_count = 0;
1219 int crtc_count = 0;
1220 int fb_count = 0;
1221 int encoder_count = 0;
1222 int copied = 0, i;
1223 uint32_t __user *fb_id;
1224 uint32_t __user *crtc_id;
1225 uint32_t __user *connector_id;
1226 uint32_t __user *encoder_id;
1227 struct drm_mode_group *mode_group;
1228
Dave Airliefb3b06c2011-02-08 13:55:21 +10001229 if (!drm_core_check_feature(dev, DRIVER_MODESET))
1230 return -EINVAL;
1231
Dave Airlief453ba02008-11-07 14:05:41 -08001232 mutex_lock(&dev->mode_config.mutex);
1233
1234 /*
1235 * For the non-control nodes we need to limit the list of resources
1236 * by IDs in the group list for this node
1237 */
1238 list_for_each(lh, &file_priv->fbs)
1239 fb_count++;
1240
1241 mode_group = &file_priv->master->minor->mode_group;
1242 if (file_priv->master->minor->type == DRM_MINOR_CONTROL) {
1243
1244 list_for_each(lh, &dev->mode_config.crtc_list)
1245 crtc_count++;
1246
1247 list_for_each(lh, &dev->mode_config.connector_list)
1248 connector_count++;
1249
1250 list_for_each(lh, &dev->mode_config.encoder_list)
1251 encoder_count++;
1252 } else {
1253
1254 crtc_count = mode_group->num_crtcs;
1255 connector_count = mode_group->num_connectors;
1256 encoder_count = mode_group->num_encoders;
1257 }
1258
1259 card_res->max_height = dev->mode_config.max_height;
1260 card_res->min_height = dev->mode_config.min_height;
1261 card_res->max_width = dev->mode_config.max_width;
1262 card_res->min_width = dev->mode_config.min_width;
1263
1264 /* handle this in 4 parts */
1265 /* FBs */
1266 if (card_res->count_fbs >= fb_count) {
1267 copied = 0;
1268 fb_id = (uint32_t __user *)(unsigned long)card_res->fb_id_ptr;
Sascha Hauer618c75e2011-06-03 12:54:14 +02001269 list_for_each_entry(fb, &file_priv->fbs, filp_head) {
Dave Airlief453ba02008-11-07 14:05:41 -08001270 if (put_user(fb->base.id, fb_id + copied)) {
1271 ret = -EFAULT;
1272 goto out;
1273 }
1274 copied++;
1275 }
1276 }
1277 card_res->count_fbs = fb_count;
1278
1279 /* CRTCs */
1280 if (card_res->count_crtcs >= crtc_count) {
1281 copied = 0;
1282 crtc_id = (uint32_t __user *)(unsigned long)card_res->crtc_id_ptr;
1283 if (file_priv->master->minor->type == DRM_MINOR_CONTROL) {
1284 list_for_each_entry(crtc, &dev->mode_config.crtc_list,
1285 head) {
Jerome Glisse94401062010-07-15 15:43:25 -04001286 DRM_DEBUG_KMS("[CRTC:%d]\n", crtc->base.id);
Dave Airlief453ba02008-11-07 14:05:41 -08001287 if (put_user(crtc->base.id, crtc_id + copied)) {
1288 ret = -EFAULT;
1289 goto out;
1290 }
1291 copied++;
1292 }
1293 } else {
1294 for (i = 0; i < mode_group->num_crtcs; i++) {
1295 if (put_user(mode_group->id_list[i],
1296 crtc_id + copied)) {
1297 ret = -EFAULT;
1298 goto out;
1299 }
1300 copied++;
1301 }
1302 }
1303 }
1304 card_res->count_crtcs = crtc_count;
1305
1306 /* Encoders */
1307 if (card_res->count_encoders >= encoder_count) {
1308 copied = 0;
1309 encoder_id = (uint32_t __user *)(unsigned long)card_res->encoder_id_ptr;
1310 if (file_priv->master->minor->type == DRM_MINOR_CONTROL) {
1311 list_for_each_entry(encoder,
1312 &dev->mode_config.encoder_list,
1313 head) {
Jerome Glisse94401062010-07-15 15:43:25 -04001314 DRM_DEBUG_KMS("[ENCODER:%d:%s]\n", encoder->base.id,
1315 drm_get_encoder_name(encoder));
Dave Airlief453ba02008-11-07 14:05:41 -08001316 if (put_user(encoder->base.id, encoder_id +
1317 copied)) {
1318 ret = -EFAULT;
1319 goto out;
1320 }
1321 copied++;
1322 }
1323 } else {
1324 for (i = mode_group->num_crtcs; i < mode_group->num_crtcs + mode_group->num_encoders; i++) {
1325 if (put_user(mode_group->id_list[i],
1326 encoder_id + copied)) {
1327 ret = -EFAULT;
1328 goto out;
1329 }
1330 copied++;
1331 }
1332
1333 }
1334 }
1335 card_res->count_encoders = encoder_count;
1336
1337 /* Connectors */
1338 if (card_res->count_connectors >= connector_count) {
1339 copied = 0;
1340 connector_id = (uint32_t __user *)(unsigned long)card_res->connector_id_ptr;
1341 if (file_priv->master->minor->type == DRM_MINOR_CONTROL) {
1342 list_for_each_entry(connector,
1343 &dev->mode_config.connector_list,
1344 head) {
Jerome Glisse94401062010-07-15 15:43:25 -04001345 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
1346 connector->base.id,
1347 drm_get_connector_name(connector));
Dave Airlief453ba02008-11-07 14:05:41 -08001348 if (put_user(connector->base.id,
1349 connector_id + copied)) {
1350 ret = -EFAULT;
1351 goto out;
1352 }
1353 copied++;
1354 }
1355 } else {
1356 int start = mode_group->num_crtcs +
1357 mode_group->num_encoders;
1358 for (i = start; i < start + mode_group->num_connectors; i++) {
1359 if (put_user(mode_group->id_list[i],
1360 connector_id + copied)) {
1361 ret = -EFAULT;
1362 goto out;
1363 }
1364 copied++;
1365 }
1366 }
1367 }
1368 card_res->count_connectors = connector_count;
1369
Jerome Glisse94401062010-07-15 15:43:25 -04001370 DRM_DEBUG_KMS("CRTC[%d] CONNECTORS[%d] ENCODERS[%d]\n", card_res->count_crtcs,
Dave Airlief453ba02008-11-07 14:05:41 -08001371 card_res->count_connectors, card_res->count_encoders);
1372
1373out:
1374 mutex_unlock(&dev->mode_config.mutex);
1375 return ret;
1376}
1377
1378/**
1379 * drm_mode_getcrtc - get CRTC configuration
1380 * @inode: inode from the ioctl
1381 * @filp: file * from the ioctl
1382 * @cmd: cmd from ioctl
1383 * @arg: arg from ioctl
1384 *
1385 * LOCKING:
Sascha Hauerb20f3862012-02-01 11:38:31 +01001386 * Takes mode config lock.
Dave Airlief453ba02008-11-07 14:05:41 -08001387 *
1388 * Construct a CRTC configuration structure to return to the user.
1389 *
1390 * Called by the user via ioctl.
1391 *
1392 * RETURNS:
1393 * Zero on success, errno on failure.
1394 */
1395int drm_mode_getcrtc(struct drm_device *dev,
1396 void *data, struct drm_file *file_priv)
1397{
1398 struct drm_mode_crtc *crtc_resp = data;
1399 struct drm_crtc *crtc;
1400 struct drm_mode_object *obj;
1401 int ret = 0;
1402
Dave Airliefb3b06c2011-02-08 13:55:21 +10001403 if (!drm_core_check_feature(dev, DRIVER_MODESET))
1404 return -EINVAL;
1405
Dave Airlief453ba02008-11-07 14:05:41 -08001406 mutex_lock(&dev->mode_config.mutex);
1407
1408 obj = drm_mode_object_find(dev, crtc_resp->crtc_id,
1409 DRM_MODE_OBJECT_CRTC);
1410 if (!obj) {
1411 ret = -EINVAL;
1412 goto out;
1413 }
1414 crtc = obj_to_crtc(obj);
1415
1416 crtc_resp->x = crtc->x;
1417 crtc_resp->y = crtc->y;
1418 crtc_resp->gamma_size = crtc->gamma_size;
1419 if (crtc->fb)
1420 crtc_resp->fb_id = crtc->fb->base.id;
1421 else
1422 crtc_resp->fb_id = 0;
1423
1424 if (crtc->enabled) {
1425
1426 drm_crtc_convert_to_umode(&crtc_resp->mode, &crtc->mode);
1427 crtc_resp->mode_valid = 1;
1428
1429 } else {
1430 crtc_resp->mode_valid = 0;
1431 }
1432
1433out:
1434 mutex_unlock(&dev->mode_config.mutex);
1435 return ret;
1436}
1437
1438/**
1439 * drm_mode_getconnector - get connector configuration
1440 * @inode: inode from the ioctl
1441 * @filp: file * from the ioctl
1442 * @cmd: cmd from ioctl
1443 * @arg: arg from ioctl
1444 *
1445 * LOCKING:
Sascha Hauerb20f3862012-02-01 11:38:31 +01001446 * Takes mode config lock.
Dave Airlief453ba02008-11-07 14:05:41 -08001447 *
1448 * Construct a connector configuration structure to return to the user.
1449 *
1450 * Called by the user via ioctl.
1451 *
1452 * RETURNS:
1453 * Zero on success, errno on failure.
1454 */
1455int drm_mode_getconnector(struct drm_device *dev, void *data,
1456 struct drm_file *file_priv)
1457{
1458 struct drm_mode_get_connector *out_resp = data;
1459 struct drm_mode_object *obj;
1460 struct drm_connector *connector;
1461 struct drm_display_mode *mode;
1462 int mode_count = 0;
1463 int props_count = 0;
1464 int encoders_count = 0;
1465 int ret = 0;
1466 int copied = 0;
1467 int i;
1468 struct drm_mode_modeinfo u_mode;
1469 struct drm_mode_modeinfo __user *mode_ptr;
1470 uint32_t __user *prop_ptr;
1471 uint64_t __user *prop_values;
1472 uint32_t __user *encoder_ptr;
1473
Dave Airliefb3b06c2011-02-08 13:55:21 +10001474 if (!drm_core_check_feature(dev, DRIVER_MODESET))
1475 return -EINVAL;
1476
Dave Airlief453ba02008-11-07 14:05:41 -08001477 memset(&u_mode, 0, sizeof(struct drm_mode_modeinfo));
1478
Jerome Glisse94401062010-07-15 15:43:25 -04001479 DRM_DEBUG_KMS("[CONNECTOR:%d:?]\n", out_resp->connector_id);
Dave Airlief453ba02008-11-07 14:05:41 -08001480
1481 mutex_lock(&dev->mode_config.mutex);
1482
1483 obj = drm_mode_object_find(dev, out_resp->connector_id,
1484 DRM_MODE_OBJECT_CONNECTOR);
1485 if (!obj) {
1486 ret = -EINVAL;
1487 goto out;
1488 }
1489 connector = obj_to_connector(obj);
1490
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03001491 props_count = connector->properties.count;
Dave Airlief453ba02008-11-07 14:05:41 -08001492
1493 for (i = 0; i < DRM_CONNECTOR_MAX_ENCODER; i++) {
1494 if (connector->encoder_ids[i] != 0) {
1495 encoders_count++;
1496 }
1497 }
1498
1499 if (out_resp->count_modes == 0) {
1500 connector->funcs->fill_modes(connector,
1501 dev->mode_config.max_width,
1502 dev->mode_config.max_height);
1503 }
1504
1505 /* delayed so we get modes regardless of pre-fill_modes state */
1506 list_for_each_entry(mode, &connector->modes, head)
1507 mode_count++;
1508
1509 out_resp->connector_id = connector->base.id;
1510 out_resp->connector_type = connector->connector_type;
1511 out_resp->connector_type_id = connector->connector_type_id;
1512 out_resp->mm_width = connector->display_info.width_mm;
1513 out_resp->mm_height = connector->display_info.height_mm;
1514 out_resp->subpixel = connector->display_info.subpixel_order;
1515 out_resp->connection = connector->status;
1516 if (connector->encoder)
1517 out_resp->encoder_id = connector->encoder->base.id;
1518 else
1519 out_resp->encoder_id = 0;
1520
1521 /*
1522 * This ioctl is called twice, once to determine how much space is
1523 * needed, and the 2nd time to fill it.
1524 */
1525 if ((out_resp->count_modes >= mode_count) && mode_count) {
1526 copied = 0;
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02001527 mode_ptr = (struct drm_mode_modeinfo __user *)(unsigned long)out_resp->modes_ptr;
Dave Airlief453ba02008-11-07 14:05:41 -08001528 list_for_each_entry(mode, &connector->modes, head) {
1529 drm_crtc_convert_to_umode(&u_mode, mode);
1530 if (copy_to_user(mode_ptr + copied,
1531 &u_mode, sizeof(u_mode))) {
1532 ret = -EFAULT;
1533 goto out;
1534 }
1535 copied++;
1536 }
1537 }
1538 out_resp->count_modes = mode_count;
1539
1540 if ((out_resp->count_props >= props_count) && props_count) {
1541 copied = 0;
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02001542 prop_ptr = (uint32_t __user *)(unsigned long)(out_resp->props_ptr);
1543 prop_values = (uint64_t __user *)(unsigned long)(out_resp->prop_values_ptr);
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03001544 for (i = 0; i < connector->properties.count; i++) {
1545 if (put_user(connector->properties.ids[i],
1546 prop_ptr + copied)) {
1547 ret = -EFAULT;
1548 goto out;
Dave Airlief453ba02008-11-07 14:05:41 -08001549 }
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03001550
1551 if (put_user(connector->properties.values[i],
1552 prop_values + copied)) {
1553 ret = -EFAULT;
1554 goto out;
1555 }
1556 copied++;
Dave Airlief453ba02008-11-07 14:05:41 -08001557 }
1558 }
1559 out_resp->count_props = props_count;
1560
1561 if ((out_resp->count_encoders >= encoders_count) && encoders_count) {
1562 copied = 0;
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02001563 encoder_ptr = (uint32_t __user *)(unsigned long)(out_resp->encoders_ptr);
Dave Airlief453ba02008-11-07 14:05:41 -08001564 for (i = 0; i < DRM_CONNECTOR_MAX_ENCODER; i++) {
1565 if (connector->encoder_ids[i] != 0) {
1566 if (put_user(connector->encoder_ids[i],
1567 encoder_ptr + copied)) {
1568 ret = -EFAULT;
1569 goto out;
1570 }
1571 copied++;
1572 }
1573 }
1574 }
1575 out_resp->count_encoders = encoders_count;
1576
1577out:
1578 mutex_unlock(&dev->mode_config.mutex);
1579 return ret;
1580}
1581
1582int drm_mode_getencoder(struct drm_device *dev, void *data,
1583 struct drm_file *file_priv)
1584{
1585 struct drm_mode_get_encoder *enc_resp = data;
1586 struct drm_mode_object *obj;
1587 struct drm_encoder *encoder;
1588 int ret = 0;
1589
Dave Airliefb3b06c2011-02-08 13:55:21 +10001590 if (!drm_core_check_feature(dev, DRIVER_MODESET))
1591 return -EINVAL;
1592
Dave Airlief453ba02008-11-07 14:05:41 -08001593 mutex_lock(&dev->mode_config.mutex);
1594 obj = drm_mode_object_find(dev, enc_resp->encoder_id,
1595 DRM_MODE_OBJECT_ENCODER);
1596 if (!obj) {
1597 ret = -EINVAL;
1598 goto out;
1599 }
1600 encoder = obj_to_encoder(obj);
1601
1602 if (encoder->crtc)
1603 enc_resp->crtc_id = encoder->crtc->base.id;
1604 else
1605 enc_resp->crtc_id = 0;
1606 enc_resp->encoder_type = encoder->encoder_type;
1607 enc_resp->encoder_id = encoder->base.id;
1608 enc_resp->possible_crtcs = encoder->possible_crtcs;
1609 enc_resp->possible_clones = encoder->possible_clones;
1610
1611out:
1612 mutex_unlock(&dev->mode_config.mutex);
1613 return ret;
1614}
1615
1616/**
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001617 * drm_mode_getplane_res - get plane info
1618 * @dev: DRM device
1619 * @data: ioctl data
1620 * @file_priv: DRM file info
1621 *
Sascha Hauerb20f3862012-02-01 11:38:31 +01001622 * LOCKING:
1623 * Takes mode config lock.
1624 *
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001625 * Return an plane count and set of IDs.
1626 */
1627int drm_mode_getplane_res(struct drm_device *dev, void *data,
1628 struct drm_file *file_priv)
1629{
1630 struct drm_mode_get_plane_res *plane_resp = data;
1631 struct drm_mode_config *config;
1632 struct drm_plane *plane;
1633 uint32_t __user *plane_ptr;
1634 int copied = 0, ret = 0;
1635
1636 if (!drm_core_check_feature(dev, DRIVER_MODESET))
1637 return -EINVAL;
1638
1639 mutex_lock(&dev->mode_config.mutex);
1640 config = &dev->mode_config;
1641
1642 /*
1643 * This ioctl is called twice, once to determine how much space is
1644 * needed, and the 2nd time to fill it.
1645 */
1646 if (config->num_plane &&
1647 (plane_resp->count_planes >= config->num_plane)) {
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02001648 plane_ptr = (uint32_t __user *)(unsigned long)plane_resp->plane_id_ptr;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001649
1650 list_for_each_entry(plane, &config->plane_list, head) {
1651 if (put_user(plane->base.id, plane_ptr + copied)) {
1652 ret = -EFAULT;
1653 goto out;
1654 }
1655 copied++;
1656 }
1657 }
1658 plane_resp->count_planes = config->num_plane;
1659
1660out:
1661 mutex_unlock(&dev->mode_config.mutex);
1662 return ret;
1663}
1664
1665/**
1666 * drm_mode_getplane - get plane info
1667 * @dev: DRM device
1668 * @data: ioctl data
1669 * @file_priv: DRM file info
1670 *
Sascha Hauerb20f3862012-02-01 11:38:31 +01001671 * LOCKING:
1672 * Takes mode config lock.
1673 *
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001674 * Return plane info, including formats supported, gamma size, any
1675 * current fb, etc.
1676 */
1677int drm_mode_getplane(struct drm_device *dev, void *data,
1678 struct drm_file *file_priv)
1679{
1680 struct drm_mode_get_plane *plane_resp = data;
1681 struct drm_mode_object *obj;
1682 struct drm_plane *plane;
1683 uint32_t __user *format_ptr;
1684 int ret = 0;
1685
1686 if (!drm_core_check_feature(dev, DRIVER_MODESET))
1687 return -EINVAL;
1688
1689 mutex_lock(&dev->mode_config.mutex);
1690 obj = drm_mode_object_find(dev, plane_resp->plane_id,
1691 DRM_MODE_OBJECT_PLANE);
1692 if (!obj) {
1693 ret = -ENOENT;
1694 goto out;
1695 }
1696 plane = obj_to_plane(obj);
1697
1698 if (plane->crtc)
1699 plane_resp->crtc_id = plane->crtc->base.id;
1700 else
1701 plane_resp->crtc_id = 0;
1702
1703 if (plane->fb)
1704 plane_resp->fb_id = plane->fb->base.id;
1705 else
1706 plane_resp->fb_id = 0;
1707
1708 plane_resp->plane_id = plane->base.id;
1709 plane_resp->possible_crtcs = plane->possible_crtcs;
1710 plane_resp->gamma_size = plane->gamma_size;
1711
1712 /*
1713 * This ioctl is called twice, once to determine how much space is
1714 * needed, and the 2nd time to fill it.
1715 */
1716 if (plane->format_count &&
1717 (plane_resp->count_format_types >= plane->format_count)) {
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02001718 format_ptr = (uint32_t __user *)(unsigned long)plane_resp->format_type_ptr;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001719 if (copy_to_user(format_ptr,
1720 plane->format_types,
1721 sizeof(uint32_t) * plane->format_count)) {
1722 ret = -EFAULT;
1723 goto out;
1724 }
1725 }
1726 plane_resp->count_format_types = plane->format_count;
1727
1728out:
1729 mutex_unlock(&dev->mode_config.mutex);
1730 return ret;
1731}
1732
1733/**
1734 * drm_mode_setplane - set up or tear down an plane
1735 * @dev: DRM device
1736 * @data: ioctl data*
1737 * @file_prive: DRM file info
1738 *
Sascha Hauerb20f3862012-02-01 11:38:31 +01001739 * LOCKING:
1740 * Takes mode config lock.
1741 *
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001742 * Set plane info, including placement, fb, scaling, and other factors.
1743 * Or pass a NULL fb to disable.
1744 */
1745int drm_mode_setplane(struct drm_device *dev, void *data,
1746 struct drm_file *file_priv)
1747{
1748 struct drm_mode_set_plane *plane_req = data;
1749 struct drm_mode_object *obj;
1750 struct drm_plane *plane;
1751 struct drm_crtc *crtc;
1752 struct drm_framebuffer *fb;
1753 int ret = 0;
Ville Syrjälä42ef8782011-12-20 00:06:44 +02001754 unsigned int fb_width, fb_height;
Ville Syrjälä62443be2011-12-20 00:06:47 +02001755 int i;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001756
1757 if (!drm_core_check_feature(dev, DRIVER_MODESET))
1758 return -EINVAL;
1759
1760 mutex_lock(&dev->mode_config.mutex);
1761
1762 /*
1763 * First, find the plane, crtc, and fb objects. If not available,
1764 * we don't bother to call the driver.
1765 */
1766 obj = drm_mode_object_find(dev, plane_req->plane_id,
1767 DRM_MODE_OBJECT_PLANE);
1768 if (!obj) {
1769 DRM_DEBUG_KMS("Unknown plane ID %d\n",
1770 plane_req->plane_id);
1771 ret = -ENOENT;
1772 goto out;
1773 }
1774 plane = obj_to_plane(obj);
1775
1776 /* No fb means shut it down */
1777 if (!plane_req->fb_id) {
1778 plane->funcs->disable_plane(plane);
Ville Syrjäläe5e3b442011-12-20 00:06:43 +02001779 plane->crtc = NULL;
1780 plane->fb = NULL;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001781 goto out;
1782 }
1783
1784 obj = drm_mode_object_find(dev, plane_req->crtc_id,
1785 DRM_MODE_OBJECT_CRTC);
1786 if (!obj) {
1787 DRM_DEBUG_KMS("Unknown crtc ID %d\n",
1788 plane_req->crtc_id);
1789 ret = -ENOENT;
1790 goto out;
1791 }
1792 crtc = obj_to_crtc(obj);
1793
1794 obj = drm_mode_object_find(dev, plane_req->fb_id,
1795 DRM_MODE_OBJECT_FB);
1796 if (!obj) {
1797 DRM_DEBUG_KMS("Unknown framebuffer ID %d\n",
1798 plane_req->fb_id);
1799 ret = -ENOENT;
1800 goto out;
1801 }
1802 fb = obj_to_fb(obj);
1803
Ville Syrjälä62443be2011-12-20 00:06:47 +02001804 /* Check whether this plane supports the fb pixel format. */
1805 for (i = 0; i < plane->format_count; i++)
1806 if (fb->pixel_format == plane->format_types[i])
1807 break;
1808 if (i == plane->format_count) {
1809 DRM_DEBUG_KMS("Invalid pixel format 0x%08x\n", fb->pixel_format);
1810 ret = -EINVAL;
1811 goto out;
1812 }
1813
Ville Syrjälä42ef8782011-12-20 00:06:44 +02001814 fb_width = fb->width << 16;
1815 fb_height = fb->height << 16;
1816
1817 /* Make sure source coordinates are inside the fb. */
1818 if (plane_req->src_w > fb_width ||
1819 plane_req->src_x > fb_width - plane_req->src_w ||
1820 plane_req->src_h > fb_height ||
1821 plane_req->src_y > fb_height - plane_req->src_h) {
1822 DRM_DEBUG_KMS("Invalid source coordinates "
1823 "%u.%06ux%u.%06u+%u.%06u+%u.%06u\n",
1824 plane_req->src_w >> 16,
1825 ((plane_req->src_w & 0xffff) * 15625) >> 10,
1826 plane_req->src_h >> 16,
1827 ((plane_req->src_h & 0xffff) * 15625) >> 10,
1828 plane_req->src_x >> 16,
1829 ((plane_req->src_x & 0xffff) * 15625) >> 10,
1830 plane_req->src_y >> 16,
1831 ((plane_req->src_y & 0xffff) * 15625) >> 10);
1832 ret = -ENOSPC;
1833 goto out;
1834 }
1835
Ville Syrjälä687a0402011-12-20 00:06:45 +02001836 /* Give drivers some help against integer overflows */
1837 if (plane_req->crtc_w > INT_MAX ||
1838 plane_req->crtc_x > INT_MAX - (int32_t) plane_req->crtc_w ||
1839 plane_req->crtc_h > INT_MAX ||
1840 plane_req->crtc_y > INT_MAX - (int32_t) plane_req->crtc_h) {
1841 DRM_DEBUG_KMS("Invalid CRTC coordinates %ux%u+%d+%d\n",
1842 plane_req->crtc_w, plane_req->crtc_h,
1843 plane_req->crtc_x, plane_req->crtc_y);
1844 ret = -ERANGE;
1845 goto out;
1846 }
1847
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001848 ret = plane->funcs->update_plane(plane, crtc, fb,
1849 plane_req->crtc_x, plane_req->crtc_y,
1850 plane_req->crtc_w, plane_req->crtc_h,
1851 plane_req->src_x, plane_req->src_y,
1852 plane_req->src_w, plane_req->src_h);
1853 if (!ret) {
1854 plane->crtc = crtc;
1855 plane->fb = fb;
1856 }
1857
1858out:
1859 mutex_unlock(&dev->mode_config.mutex);
1860
1861 return ret;
1862}
1863
1864/**
Dave Airlief453ba02008-11-07 14:05:41 -08001865 * drm_mode_setcrtc - set CRTC configuration
1866 * @inode: inode from the ioctl
1867 * @filp: file * from the ioctl
1868 * @cmd: cmd from ioctl
1869 * @arg: arg from ioctl
1870 *
1871 * LOCKING:
Sascha Hauerb20f3862012-02-01 11:38:31 +01001872 * Takes mode config lock.
Dave Airlief453ba02008-11-07 14:05:41 -08001873 *
1874 * Build a new CRTC configuration based on user request.
1875 *
1876 * Called by the user via ioctl.
1877 *
1878 * RETURNS:
1879 * Zero on success, errno on failure.
1880 */
1881int drm_mode_setcrtc(struct drm_device *dev, void *data,
1882 struct drm_file *file_priv)
1883{
1884 struct drm_mode_config *config = &dev->mode_config;
1885 struct drm_mode_crtc *crtc_req = data;
1886 struct drm_mode_object *obj;
Ville Syrjälä6653cc82012-03-13 12:35:38 +02001887 struct drm_crtc *crtc;
Dave Airlief453ba02008-11-07 14:05:41 -08001888 struct drm_connector **connector_set = NULL, *connector;
1889 struct drm_framebuffer *fb = NULL;
1890 struct drm_display_mode *mode = NULL;
1891 struct drm_mode_set set;
1892 uint32_t __user *set_connectors_ptr;
Laurent Pinchart4a1b0712012-05-17 13:27:21 +02001893 int ret;
Dave Airlief453ba02008-11-07 14:05:41 -08001894 int i;
1895
Dave Airliefb3b06c2011-02-08 13:55:21 +10001896 if (!drm_core_check_feature(dev, DRIVER_MODESET))
1897 return -EINVAL;
1898
Ville Syrjälä1d97e912012-03-13 12:35:41 +02001899 /* For some reason crtc x/y offsets are signed internally. */
1900 if (crtc_req->x > INT_MAX || crtc_req->y > INT_MAX)
1901 return -ERANGE;
1902
Dave Airlief453ba02008-11-07 14:05:41 -08001903 mutex_lock(&dev->mode_config.mutex);
1904 obj = drm_mode_object_find(dev, crtc_req->crtc_id,
1905 DRM_MODE_OBJECT_CRTC);
1906 if (!obj) {
Zhao Yakui58367ed2009-07-20 13:48:07 +08001907 DRM_DEBUG_KMS("Unknown CRTC ID %d\n", crtc_req->crtc_id);
Dave Airlief453ba02008-11-07 14:05:41 -08001908 ret = -EINVAL;
1909 goto out;
1910 }
1911 crtc = obj_to_crtc(obj);
Jerome Glisse94401062010-07-15 15:43:25 -04001912 DRM_DEBUG_KMS("[CRTC:%d]\n", crtc->base.id);
Dave Airlief453ba02008-11-07 14:05:41 -08001913
1914 if (crtc_req->mode_valid) {
1915 /* If we have a mode we need a framebuffer. */
1916 /* If we pass -1, set the mode with the currently bound fb */
1917 if (crtc_req->fb_id == -1) {
Ville Syrjälä6653cc82012-03-13 12:35:38 +02001918 if (!crtc->fb) {
1919 DRM_DEBUG_KMS("CRTC doesn't have current FB\n");
1920 ret = -EINVAL;
1921 goto out;
Dave Airlief453ba02008-11-07 14:05:41 -08001922 }
Ville Syrjälä6653cc82012-03-13 12:35:38 +02001923 fb = crtc->fb;
Dave Airlief453ba02008-11-07 14:05:41 -08001924 } else {
1925 obj = drm_mode_object_find(dev, crtc_req->fb_id,
1926 DRM_MODE_OBJECT_FB);
1927 if (!obj) {
Zhao Yakui58367ed2009-07-20 13:48:07 +08001928 DRM_DEBUG_KMS("Unknown FB ID%d\n",
1929 crtc_req->fb_id);
Dave Airlief453ba02008-11-07 14:05:41 -08001930 ret = -EINVAL;
1931 goto out;
1932 }
1933 fb = obj_to_fb(obj);
1934 }
1935
1936 mode = drm_mode_create(dev);
Ville Syrjäläee34ab52012-03-13 12:35:43 +02001937 if (!mode) {
1938 ret = -ENOMEM;
1939 goto out;
1940 }
1941
Ville Syrjälä90367bf2012-03-13 12:35:44 +02001942 ret = drm_crtc_convert_umode(mode, &crtc_req->mode);
1943 if (ret) {
1944 DRM_DEBUG_KMS("Invalid mode\n");
1945 goto out;
1946 }
1947
Dave Airlief453ba02008-11-07 14:05:41 -08001948 drm_mode_set_crtcinfo(mode, CRTC_INTERLACE_HALVE_V);
Ville Syrjälä5f61bb42012-03-13 12:35:45 +02001949
1950 if (mode->hdisplay > fb->width ||
1951 mode->vdisplay > fb->height ||
1952 crtc_req->x > fb->width - mode->hdisplay ||
1953 crtc_req->y > fb->height - mode->vdisplay) {
1954 DRM_DEBUG_KMS("Invalid CRTC viewport %ux%u+%u+%u for fb size %ux%u.\n",
1955 mode->hdisplay, mode->vdisplay,
1956 crtc_req->x, crtc_req->y,
1957 fb->width, fb->height);
1958 ret = -ENOSPC;
1959 goto out;
1960 }
Dave Airlief453ba02008-11-07 14:05:41 -08001961 }
1962
1963 if (crtc_req->count_connectors == 0 && mode) {
Zhao Yakui58367ed2009-07-20 13:48:07 +08001964 DRM_DEBUG_KMS("Count connectors is 0 but mode set\n");
Dave Airlief453ba02008-11-07 14:05:41 -08001965 ret = -EINVAL;
1966 goto out;
1967 }
1968
Jakob Bornecrantz7781de72009-08-03 13:43:58 +01001969 if (crtc_req->count_connectors > 0 && (!mode || !fb)) {
Zhao Yakui58367ed2009-07-20 13:48:07 +08001970 DRM_DEBUG_KMS("Count connectors is %d but no mode or fb set\n",
Dave Airlief453ba02008-11-07 14:05:41 -08001971 crtc_req->count_connectors);
1972 ret = -EINVAL;
1973 goto out;
1974 }
1975
1976 if (crtc_req->count_connectors > 0) {
1977 u32 out_id;
1978
1979 /* Avoid unbounded kernel memory allocation */
1980 if (crtc_req->count_connectors > config->num_connector) {
1981 ret = -EINVAL;
1982 goto out;
1983 }
1984
1985 connector_set = kmalloc(crtc_req->count_connectors *
1986 sizeof(struct drm_connector *),
1987 GFP_KERNEL);
1988 if (!connector_set) {
1989 ret = -ENOMEM;
1990 goto out;
1991 }
1992
1993 for (i = 0; i < crtc_req->count_connectors; i++) {
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02001994 set_connectors_ptr = (uint32_t __user *)(unsigned long)crtc_req->set_connectors_ptr;
Dave Airlief453ba02008-11-07 14:05:41 -08001995 if (get_user(out_id, &set_connectors_ptr[i])) {
1996 ret = -EFAULT;
1997 goto out;
1998 }
1999
2000 obj = drm_mode_object_find(dev, out_id,
2001 DRM_MODE_OBJECT_CONNECTOR);
2002 if (!obj) {
Zhao Yakui58367ed2009-07-20 13:48:07 +08002003 DRM_DEBUG_KMS("Connector id %d unknown\n",
2004 out_id);
Dave Airlief453ba02008-11-07 14:05:41 -08002005 ret = -EINVAL;
2006 goto out;
2007 }
2008 connector = obj_to_connector(obj);
Jerome Glisse94401062010-07-15 15:43:25 -04002009 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
2010 connector->base.id,
2011 drm_get_connector_name(connector));
Dave Airlief453ba02008-11-07 14:05:41 -08002012
2013 connector_set[i] = connector;
2014 }
2015 }
2016
2017 set.crtc = crtc;
2018 set.x = crtc_req->x;
2019 set.y = crtc_req->y;
2020 set.mode = mode;
2021 set.connectors = connector_set;
2022 set.num_connectors = crtc_req->count_connectors;
Dave Airlie5ef5f722009-08-17 13:11:23 +10002023 set.fb = fb;
Dave Airlief453ba02008-11-07 14:05:41 -08002024 ret = crtc->funcs->set_config(&set);
2025
2026out:
2027 kfree(connector_set);
Ville Syrjäläee34ab52012-03-13 12:35:43 +02002028 drm_mode_destroy(dev, mode);
Dave Airlief453ba02008-11-07 14:05:41 -08002029 mutex_unlock(&dev->mode_config.mutex);
2030 return ret;
2031}
2032
2033int drm_mode_cursor_ioctl(struct drm_device *dev,
2034 void *data, struct drm_file *file_priv)
2035{
2036 struct drm_mode_cursor *req = data;
2037 struct drm_mode_object *obj;
2038 struct drm_crtc *crtc;
2039 int ret = 0;
2040
Dave Airliefb3b06c2011-02-08 13:55:21 +10002041 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2042 return -EINVAL;
2043
Jakob Bornecrantz7c4eaca2012-08-16 08:29:03 +00002044 if (!req->flags || (~DRM_MODE_CURSOR_FLAGS & req->flags))
Dave Airlief453ba02008-11-07 14:05:41 -08002045 return -EINVAL;
Dave Airlief453ba02008-11-07 14:05:41 -08002046
2047 mutex_lock(&dev->mode_config.mutex);
Jakob Bornecrantze0c84632008-12-19 14:50:50 +10002048 obj = drm_mode_object_find(dev, req->crtc_id, DRM_MODE_OBJECT_CRTC);
Dave Airlief453ba02008-11-07 14:05:41 -08002049 if (!obj) {
Zhao Yakui58367ed2009-07-20 13:48:07 +08002050 DRM_DEBUG_KMS("Unknown CRTC ID %d\n", req->crtc_id);
Dave Airlief453ba02008-11-07 14:05:41 -08002051 ret = -EINVAL;
2052 goto out;
2053 }
2054 crtc = obj_to_crtc(obj);
2055
2056 if (req->flags & DRM_MODE_CURSOR_BO) {
2057 if (!crtc->funcs->cursor_set) {
Dave Airlief453ba02008-11-07 14:05:41 -08002058 ret = -ENXIO;
2059 goto out;
2060 }
2061 /* Turns off the cursor if handle is 0 */
2062 ret = crtc->funcs->cursor_set(crtc, file_priv, req->handle,
2063 req->width, req->height);
2064 }
2065
2066 if (req->flags & DRM_MODE_CURSOR_MOVE) {
2067 if (crtc->funcs->cursor_move) {
2068 ret = crtc->funcs->cursor_move(crtc, req->x, req->y);
2069 } else {
Dave Airlief453ba02008-11-07 14:05:41 -08002070 ret = -EFAULT;
2071 goto out;
2072 }
2073 }
2074out:
2075 mutex_unlock(&dev->mode_config.mutex);
2076 return ret;
2077}
2078
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002079/* Original addfb only supported RGB formats, so figure out which one */
2080uint32_t drm_mode_legacy_fb_format(uint32_t bpp, uint32_t depth)
2081{
2082 uint32_t fmt;
2083
2084 switch (bpp) {
2085 case 8:
Ville Syrjälä04b39242011-11-17 18:05:13 +02002086 fmt = DRM_FORMAT_RGB332;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002087 break;
2088 case 16:
2089 if (depth == 15)
Ville Syrjälä04b39242011-11-17 18:05:13 +02002090 fmt = DRM_FORMAT_XRGB1555;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002091 else
Ville Syrjälä04b39242011-11-17 18:05:13 +02002092 fmt = DRM_FORMAT_RGB565;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002093 break;
2094 case 24:
Ville Syrjälä04b39242011-11-17 18:05:13 +02002095 fmt = DRM_FORMAT_RGB888;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002096 break;
2097 case 32:
2098 if (depth == 24)
Ville Syrjälä04b39242011-11-17 18:05:13 +02002099 fmt = DRM_FORMAT_XRGB8888;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002100 else if (depth == 30)
Ville Syrjälä04b39242011-11-17 18:05:13 +02002101 fmt = DRM_FORMAT_XRGB2101010;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002102 else
Ville Syrjälä04b39242011-11-17 18:05:13 +02002103 fmt = DRM_FORMAT_ARGB8888;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002104 break;
2105 default:
Ville Syrjälä04b39242011-11-17 18:05:13 +02002106 DRM_ERROR("bad bpp, assuming x8r8g8b8 pixel format\n");
2107 fmt = DRM_FORMAT_XRGB8888;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002108 break;
2109 }
2110
2111 return fmt;
2112}
2113EXPORT_SYMBOL(drm_mode_legacy_fb_format);
2114
Dave Airlief453ba02008-11-07 14:05:41 -08002115/**
2116 * drm_mode_addfb - add an FB to the graphics configuration
2117 * @inode: inode from the ioctl
2118 * @filp: file * from the ioctl
2119 * @cmd: cmd from ioctl
2120 * @arg: arg from ioctl
2121 *
2122 * LOCKING:
2123 * Takes mode config lock.
2124 *
2125 * Add a new FB to the specified CRTC, given a user request.
2126 *
2127 * Called by the user via ioctl.
2128 *
2129 * RETURNS:
2130 * Zero on success, errno on failure.
2131 */
2132int drm_mode_addfb(struct drm_device *dev,
2133 void *data, struct drm_file *file_priv)
2134{
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002135 struct drm_mode_fb_cmd *or = data;
2136 struct drm_mode_fb_cmd2 r = {};
2137 struct drm_mode_config *config = &dev->mode_config;
2138 struct drm_framebuffer *fb;
2139 int ret = 0;
2140
2141 /* Use new struct with format internally */
2142 r.fb_id = or->fb_id;
2143 r.width = or->width;
2144 r.height = or->height;
2145 r.pitches[0] = or->pitch;
2146 r.pixel_format = drm_mode_legacy_fb_format(or->bpp, or->depth);
2147 r.handles[0] = or->handle;
2148
2149 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2150 return -EINVAL;
2151
Jesse Barnesacb4b992011-11-07 12:03:23 -08002152 if ((config->min_width > r.width) || (r.width > config->max_width))
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002153 return -EINVAL;
Jesse Barnesacb4b992011-11-07 12:03:23 -08002154
2155 if ((config->min_height > r.height) || (r.height > config->max_height))
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002156 return -EINVAL;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002157
2158 mutex_lock(&dev->mode_config.mutex);
2159
2160 /* TODO check buffer is sufficiently large */
2161 /* TODO setup destructor callback */
2162
2163 fb = dev->mode_config.funcs->fb_create(dev, file_priv, &r);
2164 if (IS_ERR(fb)) {
Dave Airlie1aa1b112012-05-01 17:38:35 +01002165 DRM_DEBUG_KMS("could not create framebuffer\n");
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002166 ret = PTR_ERR(fb);
2167 goto out;
2168 }
2169
2170 or->fb_id = fb->base.id;
2171 list_add(&fb->filp_head, &file_priv->fbs);
2172 DRM_DEBUG_KMS("[FB:%d]\n", fb->base.id);
2173
2174out:
2175 mutex_unlock(&dev->mode_config.mutex);
2176 return ret;
2177}
2178
Ville Syrjäläcff91b62012-05-24 20:54:00 +03002179static int format_check(const struct drm_mode_fb_cmd2 *r)
Ville Syrjälä935b5972011-12-20 00:06:48 +02002180{
2181 uint32_t format = r->pixel_format & ~DRM_FORMAT_BIG_ENDIAN;
2182
2183 switch (format) {
2184 case DRM_FORMAT_C8:
2185 case DRM_FORMAT_RGB332:
2186 case DRM_FORMAT_BGR233:
2187 case DRM_FORMAT_XRGB4444:
2188 case DRM_FORMAT_XBGR4444:
2189 case DRM_FORMAT_RGBX4444:
2190 case DRM_FORMAT_BGRX4444:
2191 case DRM_FORMAT_ARGB4444:
2192 case DRM_FORMAT_ABGR4444:
2193 case DRM_FORMAT_RGBA4444:
2194 case DRM_FORMAT_BGRA4444:
2195 case DRM_FORMAT_XRGB1555:
2196 case DRM_FORMAT_XBGR1555:
2197 case DRM_FORMAT_RGBX5551:
2198 case DRM_FORMAT_BGRX5551:
2199 case DRM_FORMAT_ARGB1555:
2200 case DRM_FORMAT_ABGR1555:
2201 case DRM_FORMAT_RGBA5551:
2202 case DRM_FORMAT_BGRA5551:
2203 case DRM_FORMAT_RGB565:
2204 case DRM_FORMAT_BGR565:
2205 case DRM_FORMAT_RGB888:
2206 case DRM_FORMAT_BGR888:
2207 case DRM_FORMAT_XRGB8888:
2208 case DRM_FORMAT_XBGR8888:
2209 case DRM_FORMAT_RGBX8888:
2210 case DRM_FORMAT_BGRX8888:
2211 case DRM_FORMAT_ARGB8888:
2212 case DRM_FORMAT_ABGR8888:
2213 case DRM_FORMAT_RGBA8888:
2214 case DRM_FORMAT_BGRA8888:
2215 case DRM_FORMAT_XRGB2101010:
2216 case DRM_FORMAT_XBGR2101010:
2217 case DRM_FORMAT_RGBX1010102:
2218 case DRM_FORMAT_BGRX1010102:
2219 case DRM_FORMAT_ARGB2101010:
2220 case DRM_FORMAT_ABGR2101010:
2221 case DRM_FORMAT_RGBA1010102:
2222 case DRM_FORMAT_BGRA1010102:
2223 case DRM_FORMAT_YUYV:
2224 case DRM_FORMAT_YVYU:
2225 case DRM_FORMAT_UYVY:
2226 case DRM_FORMAT_VYUY:
2227 case DRM_FORMAT_AYUV:
2228 case DRM_FORMAT_NV12:
2229 case DRM_FORMAT_NV21:
2230 case DRM_FORMAT_NV16:
2231 case DRM_FORMAT_NV61:
Laurent Pinchartba623f62012-05-18 23:47:40 +02002232 case DRM_FORMAT_NV24:
2233 case DRM_FORMAT_NV42:
Ville Syrjälä935b5972011-12-20 00:06:48 +02002234 case DRM_FORMAT_YUV410:
2235 case DRM_FORMAT_YVU410:
2236 case DRM_FORMAT_YUV411:
2237 case DRM_FORMAT_YVU411:
2238 case DRM_FORMAT_YUV420:
2239 case DRM_FORMAT_YVU420:
2240 case DRM_FORMAT_YUV422:
2241 case DRM_FORMAT_YVU422:
2242 case DRM_FORMAT_YUV444:
2243 case DRM_FORMAT_YVU444:
2244 return 0;
2245 default:
2246 return -EINVAL;
2247 }
2248}
2249
Ville Syrjäläcff91b62012-05-24 20:54:00 +03002250static int framebuffer_check(const struct drm_mode_fb_cmd2 *r)
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03002251{
2252 int ret, hsub, vsub, num_planes, i;
2253
2254 ret = format_check(r);
2255 if (ret) {
Dave Airlie1aa1b112012-05-01 17:38:35 +01002256 DRM_DEBUG_KMS("bad framebuffer format 0x%08x\n", r->pixel_format);
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03002257 return ret;
2258 }
2259
2260 hsub = drm_format_horz_chroma_subsampling(r->pixel_format);
2261 vsub = drm_format_vert_chroma_subsampling(r->pixel_format);
2262 num_planes = drm_format_num_planes(r->pixel_format);
2263
2264 if (r->width == 0 || r->width % hsub) {
Dave Airlie1aa1b112012-05-01 17:38:35 +01002265 DRM_DEBUG_KMS("bad framebuffer width %u\n", r->height);
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03002266 return -EINVAL;
2267 }
2268
2269 if (r->height == 0 || r->height % vsub) {
Dave Airlie1aa1b112012-05-01 17:38:35 +01002270 DRM_DEBUG_KMS("bad framebuffer height %u\n", r->height);
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03002271 return -EINVAL;
2272 }
2273
2274 for (i = 0; i < num_planes; i++) {
2275 unsigned int width = r->width / (i != 0 ? hsub : 1);
2276
2277 if (!r->handles[i]) {
Dave Airlie1aa1b112012-05-01 17:38:35 +01002278 DRM_DEBUG_KMS("no buffer object handle for plane %d\n", i);
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03002279 return -EINVAL;
2280 }
2281
2282 if (r->pitches[i] < drm_format_plane_cpp(r->pixel_format, i) * width) {
Dave Airlie1aa1b112012-05-01 17:38:35 +01002283 DRM_DEBUG_KMS("bad pitch %u for plane %d\n", r->pitches[i], i);
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03002284 return -EINVAL;
2285 }
2286 }
2287
2288 return 0;
2289}
2290
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002291/**
2292 * drm_mode_addfb2 - add an FB to the graphics configuration
2293 * @inode: inode from the ioctl
2294 * @filp: file * from the ioctl
2295 * @cmd: cmd from ioctl
2296 * @arg: arg from ioctl
2297 *
2298 * LOCKING:
2299 * Takes mode config lock.
2300 *
2301 * Add a new FB to the specified CRTC, given a user request with format.
2302 *
2303 * Called by the user via ioctl.
2304 *
2305 * RETURNS:
2306 * Zero on success, errno on failure.
2307 */
2308int drm_mode_addfb2(struct drm_device *dev,
2309 void *data, struct drm_file *file_priv)
2310{
2311 struct drm_mode_fb_cmd2 *r = data;
Dave Airlief453ba02008-11-07 14:05:41 -08002312 struct drm_mode_config *config = &dev->mode_config;
2313 struct drm_framebuffer *fb;
Laurent Pinchart4a1b0712012-05-17 13:27:21 +02002314 int ret;
Dave Airlief453ba02008-11-07 14:05:41 -08002315
Dave Airliefb3b06c2011-02-08 13:55:21 +10002316 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2317 return -EINVAL;
2318
Dave Airlief453ba02008-11-07 14:05:41 -08002319 if ((config->min_width > r->width) || (r->width > config->max_width)) {
Dave Airlie1aa1b112012-05-01 17:38:35 +01002320 DRM_DEBUG_KMS("bad framebuffer width %d, should be >= %d && <= %d\n",
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002321 r->width, config->min_width, config->max_width);
Dave Airlief453ba02008-11-07 14:05:41 -08002322 return -EINVAL;
2323 }
2324 if ((config->min_height > r->height) || (r->height > config->max_height)) {
Dave Airlie1aa1b112012-05-01 17:38:35 +01002325 DRM_DEBUG_KMS("bad framebuffer height %d, should be >= %d && <= %d\n",
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002326 r->height, config->min_height, config->max_height);
Dave Airlief453ba02008-11-07 14:05:41 -08002327 return -EINVAL;
2328 }
2329
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03002330 ret = framebuffer_check(r);
2331 if (ret)
Ville Syrjälä935b5972011-12-20 00:06:48 +02002332 return ret;
Ville Syrjälä935b5972011-12-20 00:06:48 +02002333
Dave Airlief453ba02008-11-07 14:05:41 -08002334 mutex_lock(&dev->mode_config.mutex);
2335
Dave Airlief453ba02008-11-07 14:05:41 -08002336 fb = dev->mode_config.funcs->fb_create(dev, file_priv, r);
Chris Wilsoncce13ff2010-08-08 13:36:38 +01002337 if (IS_ERR(fb)) {
Dave Airlie1aa1b112012-05-01 17:38:35 +01002338 DRM_DEBUG_KMS("could not create framebuffer\n");
Chris Wilsoncce13ff2010-08-08 13:36:38 +01002339 ret = PTR_ERR(fb);
Dave Airlief453ba02008-11-07 14:05:41 -08002340 goto out;
2341 }
2342
Jakob Bornecrantze0c84632008-12-19 14:50:50 +10002343 r->fb_id = fb->base.id;
Dave Airlief453ba02008-11-07 14:05:41 -08002344 list_add(&fb->filp_head, &file_priv->fbs);
Jerome Glisse94401062010-07-15 15:43:25 -04002345 DRM_DEBUG_KMS("[FB:%d]\n", fb->base.id);
Dave Airlief453ba02008-11-07 14:05:41 -08002346
2347out:
2348 mutex_unlock(&dev->mode_config.mutex);
2349 return ret;
2350}
2351
2352/**
2353 * drm_mode_rmfb - remove an FB from the configuration
2354 * @inode: inode from the ioctl
2355 * @filp: file * from the ioctl
2356 * @cmd: cmd from ioctl
2357 * @arg: arg from ioctl
2358 *
2359 * LOCKING:
2360 * Takes mode config lock.
2361 *
2362 * Remove the FB specified by the user.
2363 *
2364 * Called by the user via ioctl.
2365 *
2366 * RETURNS:
2367 * Zero on success, errno on failure.
2368 */
2369int drm_mode_rmfb(struct drm_device *dev,
2370 void *data, struct drm_file *file_priv)
2371{
2372 struct drm_mode_object *obj;
2373 struct drm_framebuffer *fb = NULL;
2374 struct drm_framebuffer *fbl = NULL;
2375 uint32_t *id = data;
2376 int ret = 0;
2377 int found = 0;
2378
Dave Airliefb3b06c2011-02-08 13:55:21 +10002379 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2380 return -EINVAL;
2381
Dave Airlief453ba02008-11-07 14:05:41 -08002382 mutex_lock(&dev->mode_config.mutex);
2383 obj = drm_mode_object_find(dev, *id, DRM_MODE_OBJECT_FB);
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002384 /* TODO check that we really get a framebuffer back. */
Dave Airlief453ba02008-11-07 14:05:41 -08002385 if (!obj) {
Dave Airlief453ba02008-11-07 14:05:41 -08002386 ret = -EINVAL;
2387 goto out;
2388 }
2389 fb = obj_to_fb(obj);
2390
2391 list_for_each_entry(fbl, &file_priv->fbs, filp_head)
2392 if (fb == fbl)
2393 found = 1;
2394
2395 if (!found) {
Dave Airlief453ba02008-11-07 14:05:41 -08002396 ret = -EINVAL;
2397 goto out;
2398 }
2399
Rob Clarkf7eff602012-09-05 21:48:38 +00002400 drm_framebuffer_remove(fb);
Dave Airlief453ba02008-11-07 14:05:41 -08002401
2402out:
2403 mutex_unlock(&dev->mode_config.mutex);
2404 return ret;
2405}
2406
2407/**
2408 * drm_mode_getfb - get FB info
2409 * @inode: inode from the ioctl
2410 * @filp: file * from the ioctl
2411 * @cmd: cmd from ioctl
2412 * @arg: arg from ioctl
2413 *
2414 * LOCKING:
Sascha Hauerb20f3862012-02-01 11:38:31 +01002415 * Takes mode config lock.
Dave Airlief453ba02008-11-07 14:05:41 -08002416 *
2417 * Lookup the FB given its ID and return info about it.
2418 *
2419 * Called by the user via ioctl.
2420 *
2421 * RETURNS:
2422 * Zero on success, errno on failure.
2423 */
2424int drm_mode_getfb(struct drm_device *dev,
2425 void *data, struct drm_file *file_priv)
2426{
2427 struct drm_mode_fb_cmd *r = data;
2428 struct drm_mode_object *obj;
2429 struct drm_framebuffer *fb;
2430 int ret = 0;
2431
Dave Airliefb3b06c2011-02-08 13:55:21 +10002432 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2433 return -EINVAL;
2434
Dave Airlief453ba02008-11-07 14:05:41 -08002435 mutex_lock(&dev->mode_config.mutex);
Jakob Bornecrantze0c84632008-12-19 14:50:50 +10002436 obj = drm_mode_object_find(dev, r->fb_id, DRM_MODE_OBJECT_FB);
Dave Airlief453ba02008-11-07 14:05:41 -08002437 if (!obj) {
Dave Airlief453ba02008-11-07 14:05:41 -08002438 ret = -EINVAL;
2439 goto out;
2440 }
2441 fb = obj_to_fb(obj);
2442
2443 r->height = fb->height;
2444 r->width = fb->width;
2445 r->depth = fb->depth;
2446 r->bpp = fb->bits_per_pixel;
Ville Syrjälä01f2c772011-12-20 00:06:49 +02002447 r->pitch = fb->pitches[0];
Dave Airlief453ba02008-11-07 14:05:41 -08002448 fb->funcs->create_handle(fb, file_priv, &r->handle);
2449
2450out:
2451 mutex_unlock(&dev->mode_config.mutex);
2452 return ret;
2453}
2454
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00002455int drm_mode_dirtyfb_ioctl(struct drm_device *dev,
2456 void *data, struct drm_file *file_priv)
2457{
2458 struct drm_clip_rect __user *clips_ptr;
2459 struct drm_clip_rect *clips = NULL;
2460 struct drm_mode_fb_dirty_cmd *r = data;
2461 struct drm_mode_object *obj;
2462 struct drm_framebuffer *fb;
2463 unsigned flags;
2464 int num_clips;
Laurent Pinchart4a1b0712012-05-17 13:27:21 +02002465 int ret;
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00002466
Dave Airliefb3b06c2011-02-08 13:55:21 +10002467 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2468 return -EINVAL;
2469
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00002470 mutex_lock(&dev->mode_config.mutex);
2471 obj = drm_mode_object_find(dev, r->fb_id, DRM_MODE_OBJECT_FB);
2472 if (!obj) {
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00002473 ret = -EINVAL;
2474 goto out_err1;
2475 }
2476 fb = obj_to_fb(obj);
2477
2478 num_clips = r->num_clips;
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02002479 clips_ptr = (struct drm_clip_rect __user *)(unsigned long)r->clips_ptr;
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00002480
2481 if (!num_clips != !clips_ptr) {
2482 ret = -EINVAL;
2483 goto out_err1;
2484 }
2485
2486 flags = DRM_MODE_FB_DIRTY_FLAGS & r->flags;
2487
2488 /* If userspace annotates copy, clips must come in pairs */
2489 if (flags & DRM_MODE_FB_DIRTY_ANNOTATE_COPY && (num_clips % 2)) {
2490 ret = -EINVAL;
2491 goto out_err1;
2492 }
2493
2494 if (num_clips && clips_ptr) {
Xi Wanga5cd3352011-11-23 01:12:01 -05002495 if (num_clips < 0 || num_clips > DRM_MODE_FB_DIRTY_MAX_CLIPS) {
2496 ret = -EINVAL;
2497 goto out_err1;
2498 }
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00002499 clips = kzalloc(num_clips * sizeof(*clips), GFP_KERNEL);
2500 if (!clips) {
2501 ret = -ENOMEM;
2502 goto out_err1;
2503 }
2504
2505 ret = copy_from_user(clips, clips_ptr,
2506 num_clips * sizeof(*clips));
Dan Carpentere902a352010-06-04 12:23:21 +02002507 if (ret) {
2508 ret = -EFAULT;
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00002509 goto out_err2;
Dan Carpentere902a352010-06-04 12:23:21 +02002510 }
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00002511 }
2512
2513 if (fb->funcs->dirty) {
Thomas Hellstrom02b00162010-10-05 12:43:02 +02002514 ret = fb->funcs->dirty(fb, file_priv, flags, r->color,
2515 clips, num_clips);
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00002516 } else {
2517 ret = -ENOSYS;
2518 goto out_err2;
2519 }
2520
2521out_err2:
2522 kfree(clips);
2523out_err1:
2524 mutex_unlock(&dev->mode_config.mutex);
2525 return ret;
2526}
2527
2528
Dave Airlief453ba02008-11-07 14:05:41 -08002529/**
2530 * drm_fb_release - remove and free the FBs on this file
2531 * @filp: file * from the ioctl
2532 *
2533 * LOCKING:
2534 * Takes mode config lock.
2535 *
2536 * Destroy all the FBs associated with @filp.
2537 *
2538 * Called by the user via ioctl.
2539 *
2540 * RETURNS:
2541 * Zero on success, errno on failure.
2542 */
Kristian Høgsbergea39f832009-02-12 14:37:56 -05002543void drm_fb_release(struct drm_file *priv)
Dave Airlief453ba02008-11-07 14:05:41 -08002544{
Dave Airlief453ba02008-11-07 14:05:41 -08002545 struct drm_device *dev = priv->minor->dev;
2546 struct drm_framebuffer *fb, *tfb;
2547
2548 mutex_lock(&dev->mode_config.mutex);
2549 list_for_each_entry_safe(fb, tfb, &priv->fbs, filp_head) {
Rob Clarkf7eff602012-09-05 21:48:38 +00002550 drm_framebuffer_remove(fb);
Dave Airlief453ba02008-11-07 14:05:41 -08002551 }
2552 mutex_unlock(&dev->mode_config.mutex);
2553}
2554
2555/**
2556 * drm_mode_attachmode - add a mode to the user mode list
2557 * @dev: DRM device
2558 * @connector: connector to add the mode to
2559 * @mode: mode to add
2560 *
2561 * Add @mode to @connector's user mode list.
2562 */
Ville Syrjälä1dd6c8b2012-03-13 12:35:42 +02002563static void drm_mode_attachmode(struct drm_device *dev,
2564 struct drm_connector *connector,
2565 struct drm_display_mode *mode)
Dave Airlief453ba02008-11-07 14:05:41 -08002566{
Dave Airlief453ba02008-11-07 14:05:41 -08002567 list_add_tail(&mode->head, &connector->user_modes);
Dave Airlief453ba02008-11-07 14:05:41 -08002568}
2569
2570int drm_mode_attachmode_crtc(struct drm_device *dev, struct drm_crtc *crtc,
Ville Syrjäläac235da2012-03-13 12:35:46 +02002571 const struct drm_display_mode *mode)
Dave Airlief453ba02008-11-07 14:05:41 -08002572{
2573 struct drm_connector *connector;
Ville Syrjäläac235da2012-03-13 12:35:46 +02002574 int ret = 0;
2575 struct drm_display_mode *dup_mode, *next;
2576 LIST_HEAD(list);
2577
Dave Airlief453ba02008-11-07 14:05:41 -08002578 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
2579 if (!connector->encoder)
Ville Syrjäläac235da2012-03-13 12:35:46 +02002580 continue;
Dave Airlief453ba02008-11-07 14:05:41 -08002581 if (connector->encoder->crtc == crtc) {
Ville Syrjäläac235da2012-03-13 12:35:46 +02002582 dup_mode = drm_mode_duplicate(dev, mode);
2583 if (!dup_mode) {
2584 ret = -ENOMEM;
2585 goto out;
2586 }
2587 list_add_tail(&dup_mode->head, &list);
Dave Airlief453ba02008-11-07 14:05:41 -08002588 }
2589 }
Ville Syrjäläac235da2012-03-13 12:35:46 +02002590
2591 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
2592 if (!connector->encoder)
2593 continue;
2594 if (connector->encoder->crtc == crtc)
2595 list_move_tail(list.next, &connector->user_modes);
2596 }
2597
2598 WARN_ON(!list_empty(&list));
2599
2600 out:
2601 list_for_each_entry_safe(dup_mode, next, &list, head)
2602 drm_mode_destroy(dev, dup_mode);
2603
2604 return ret;
Dave Airlief453ba02008-11-07 14:05:41 -08002605}
2606EXPORT_SYMBOL(drm_mode_attachmode_crtc);
2607
2608static int drm_mode_detachmode(struct drm_device *dev,
2609 struct drm_connector *connector,
2610 struct drm_display_mode *mode)
2611{
2612 int found = 0;
2613 int ret = 0;
2614 struct drm_display_mode *match_mode, *t;
2615
2616 list_for_each_entry_safe(match_mode, t, &connector->user_modes, head) {
2617 if (drm_mode_equal(match_mode, mode)) {
2618 list_del(&match_mode->head);
2619 drm_mode_destroy(dev, match_mode);
2620 found = 1;
2621 break;
2622 }
2623 }
2624
2625 if (!found)
2626 ret = -EINVAL;
2627
2628 return ret;
2629}
2630
2631int drm_mode_detachmode_crtc(struct drm_device *dev, struct drm_display_mode *mode)
2632{
2633 struct drm_connector *connector;
2634
2635 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
2636 drm_mode_detachmode(dev, connector, mode);
2637 }
2638 return 0;
2639}
2640EXPORT_SYMBOL(drm_mode_detachmode_crtc);
2641
2642/**
2643 * drm_fb_attachmode - Attach a user mode to an connector
2644 * @inode: inode from the ioctl
2645 * @filp: file * from the ioctl
2646 * @cmd: cmd from ioctl
2647 * @arg: arg from ioctl
2648 *
2649 * This attaches a user specified mode to an connector.
2650 * Called by the user via ioctl.
2651 *
2652 * RETURNS:
2653 * Zero on success, errno on failure.
2654 */
2655int drm_mode_attachmode_ioctl(struct drm_device *dev,
2656 void *data, struct drm_file *file_priv)
2657{
2658 struct drm_mode_mode_cmd *mode_cmd = data;
2659 struct drm_connector *connector;
2660 struct drm_display_mode *mode;
2661 struct drm_mode_object *obj;
2662 struct drm_mode_modeinfo *umode = &mode_cmd->mode;
Laurent Pinchart4a1b0712012-05-17 13:27:21 +02002663 int ret;
Dave Airlief453ba02008-11-07 14:05:41 -08002664
Dave Airliefb3b06c2011-02-08 13:55:21 +10002665 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2666 return -EINVAL;
2667
Dave Airlief453ba02008-11-07 14:05:41 -08002668 mutex_lock(&dev->mode_config.mutex);
2669
2670 obj = drm_mode_object_find(dev, mode_cmd->connector_id, DRM_MODE_OBJECT_CONNECTOR);
2671 if (!obj) {
2672 ret = -EINVAL;
2673 goto out;
2674 }
2675 connector = obj_to_connector(obj);
2676
2677 mode = drm_mode_create(dev);
2678 if (!mode) {
2679 ret = -ENOMEM;
2680 goto out;
2681 }
2682
Ville Syrjälä90367bf2012-03-13 12:35:44 +02002683 ret = drm_crtc_convert_umode(mode, umode);
2684 if (ret) {
2685 DRM_DEBUG_KMS("Invalid mode\n");
2686 drm_mode_destroy(dev, mode);
2687 goto out;
2688 }
Dave Airlief453ba02008-11-07 14:05:41 -08002689
Ville Syrjälä1dd6c8b2012-03-13 12:35:42 +02002690 drm_mode_attachmode(dev, connector, mode);
Dave Airlief453ba02008-11-07 14:05:41 -08002691out:
2692 mutex_unlock(&dev->mode_config.mutex);
2693 return ret;
2694}
2695
2696
2697/**
2698 * drm_fb_detachmode - Detach a user specified mode from an connector
2699 * @inode: inode from the ioctl
2700 * @filp: file * from the ioctl
2701 * @cmd: cmd from ioctl
2702 * @arg: arg from ioctl
2703 *
2704 * Called by the user via ioctl.
2705 *
2706 * RETURNS:
2707 * Zero on success, errno on failure.
2708 */
2709int drm_mode_detachmode_ioctl(struct drm_device *dev,
2710 void *data, struct drm_file *file_priv)
2711{
2712 struct drm_mode_object *obj;
2713 struct drm_mode_mode_cmd *mode_cmd = data;
2714 struct drm_connector *connector;
2715 struct drm_display_mode mode;
2716 struct drm_mode_modeinfo *umode = &mode_cmd->mode;
Laurent Pinchart4a1b0712012-05-17 13:27:21 +02002717 int ret;
Dave Airlief453ba02008-11-07 14:05:41 -08002718
Dave Airliefb3b06c2011-02-08 13:55:21 +10002719 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2720 return -EINVAL;
2721
Dave Airlief453ba02008-11-07 14:05:41 -08002722 mutex_lock(&dev->mode_config.mutex);
2723
2724 obj = drm_mode_object_find(dev, mode_cmd->connector_id, DRM_MODE_OBJECT_CONNECTOR);
2725 if (!obj) {
2726 ret = -EINVAL;
2727 goto out;
2728 }
2729 connector = obj_to_connector(obj);
2730
Ville Syrjälä90367bf2012-03-13 12:35:44 +02002731 ret = drm_crtc_convert_umode(&mode, umode);
2732 if (ret) {
2733 DRM_DEBUG_KMS("Invalid mode\n");
2734 goto out;
2735 }
2736
Dave Airlief453ba02008-11-07 14:05:41 -08002737 ret = drm_mode_detachmode(dev, connector, &mode);
2738out:
2739 mutex_unlock(&dev->mode_config.mutex);
2740 return ret;
2741}
2742
2743struct drm_property *drm_property_create(struct drm_device *dev, int flags,
2744 const char *name, int num_values)
2745{
2746 struct drm_property *property = NULL;
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02002747 int ret;
Dave Airlief453ba02008-11-07 14:05:41 -08002748
2749 property = kzalloc(sizeof(struct drm_property), GFP_KERNEL);
2750 if (!property)
2751 return NULL;
2752
2753 if (num_values) {
2754 property->values = kzalloc(sizeof(uint64_t)*num_values, GFP_KERNEL);
2755 if (!property->values)
2756 goto fail;
2757 }
2758
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02002759 ret = drm_mode_object_get(dev, &property->base, DRM_MODE_OBJECT_PROPERTY);
2760 if (ret)
2761 goto fail;
2762
Dave Airlief453ba02008-11-07 14:05:41 -08002763 property->flags = flags;
2764 property->num_values = num_values;
2765 INIT_LIST_HEAD(&property->enum_blob_list);
2766
Vinson Lee471dd2e2011-11-10 11:55:40 -08002767 if (name) {
Dave Airlief453ba02008-11-07 14:05:41 -08002768 strncpy(property->name, name, DRM_PROP_NAME_LEN);
Vinson Lee471dd2e2011-11-10 11:55:40 -08002769 property->name[DRM_PROP_NAME_LEN-1] = '\0';
2770 }
Dave Airlief453ba02008-11-07 14:05:41 -08002771
2772 list_add_tail(&property->head, &dev->mode_config.property_list);
2773 return property;
2774fail:
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02002775 kfree(property->values);
Dave Airlief453ba02008-11-07 14:05:41 -08002776 kfree(property);
2777 return NULL;
2778}
2779EXPORT_SYMBOL(drm_property_create);
2780
Sascha Hauer4a67d392012-02-06 10:58:17 +01002781struct drm_property *drm_property_create_enum(struct drm_device *dev, int flags,
2782 const char *name,
2783 const struct drm_prop_enum_list *props,
2784 int num_values)
2785{
2786 struct drm_property *property;
2787 int i, ret;
2788
2789 flags |= DRM_MODE_PROP_ENUM;
2790
2791 property = drm_property_create(dev, flags, name, num_values);
2792 if (!property)
2793 return NULL;
2794
2795 for (i = 0; i < num_values; i++) {
2796 ret = drm_property_add_enum(property, i,
2797 props[i].type,
2798 props[i].name);
2799 if (ret) {
2800 drm_property_destroy(dev, property);
2801 return NULL;
2802 }
2803 }
2804
2805 return property;
2806}
2807EXPORT_SYMBOL(drm_property_create_enum);
2808
Rob Clark49e27542012-05-17 02:23:26 -06002809struct drm_property *drm_property_create_bitmask(struct drm_device *dev,
2810 int flags, const char *name,
2811 const struct drm_prop_enum_list *props,
2812 int num_values)
2813{
2814 struct drm_property *property;
2815 int i, ret;
2816
2817 flags |= DRM_MODE_PROP_BITMASK;
2818
2819 property = drm_property_create(dev, flags, name, num_values);
2820 if (!property)
2821 return NULL;
2822
2823 for (i = 0; i < num_values; i++) {
2824 ret = drm_property_add_enum(property, i,
2825 props[i].type,
2826 props[i].name);
2827 if (ret) {
2828 drm_property_destroy(dev, property);
2829 return NULL;
2830 }
2831 }
2832
2833 return property;
2834}
2835EXPORT_SYMBOL(drm_property_create_bitmask);
2836
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01002837struct drm_property *drm_property_create_range(struct drm_device *dev, int flags,
2838 const char *name,
2839 uint64_t min, uint64_t max)
2840{
2841 struct drm_property *property;
2842
2843 flags |= DRM_MODE_PROP_RANGE;
2844
2845 property = drm_property_create(dev, flags, name, 2);
2846 if (!property)
2847 return NULL;
2848
2849 property->values[0] = min;
2850 property->values[1] = max;
2851
2852 return property;
2853}
2854EXPORT_SYMBOL(drm_property_create_range);
2855
Dave Airlief453ba02008-11-07 14:05:41 -08002856int drm_property_add_enum(struct drm_property *property, int index,
2857 uint64_t value, const char *name)
2858{
2859 struct drm_property_enum *prop_enum;
2860
Rob Clark49e27542012-05-17 02:23:26 -06002861 if (!(property->flags & (DRM_MODE_PROP_ENUM | DRM_MODE_PROP_BITMASK)))
2862 return -EINVAL;
2863
2864 /*
2865 * Bitmask enum properties have the additional constraint of values
2866 * from 0 to 63
2867 */
2868 if ((property->flags & DRM_MODE_PROP_BITMASK) && (value > 63))
Dave Airlief453ba02008-11-07 14:05:41 -08002869 return -EINVAL;
2870
2871 if (!list_empty(&property->enum_blob_list)) {
2872 list_for_each_entry(prop_enum, &property->enum_blob_list, head) {
2873 if (prop_enum->value == value) {
2874 strncpy(prop_enum->name, name, DRM_PROP_NAME_LEN);
2875 prop_enum->name[DRM_PROP_NAME_LEN-1] = '\0';
2876 return 0;
2877 }
2878 }
2879 }
2880
2881 prop_enum = kzalloc(sizeof(struct drm_property_enum), GFP_KERNEL);
2882 if (!prop_enum)
2883 return -ENOMEM;
2884
2885 strncpy(prop_enum->name, name, DRM_PROP_NAME_LEN);
2886 prop_enum->name[DRM_PROP_NAME_LEN-1] = '\0';
2887 prop_enum->value = value;
2888
2889 property->values[index] = value;
2890 list_add_tail(&prop_enum->head, &property->enum_blob_list);
2891 return 0;
2892}
2893EXPORT_SYMBOL(drm_property_add_enum);
2894
2895void drm_property_destroy(struct drm_device *dev, struct drm_property *property)
2896{
2897 struct drm_property_enum *prop_enum, *pt;
2898
2899 list_for_each_entry_safe(prop_enum, pt, &property->enum_blob_list, head) {
2900 list_del(&prop_enum->head);
2901 kfree(prop_enum);
2902 }
2903
2904 if (property->num_values)
2905 kfree(property->values);
2906 drm_mode_object_put(dev, &property->base);
2907 list_del(&property->head);
2908 kfree(property);
2909}
2910EXPORT_SYMBOL(drm_property_destroy);
2911
Paulo Zanoniafea2ad2012-05-15 18:09:00 -03002912void drm_connector_attach_property(struct drm_connector *connector,
Dave Airlief453ba02008-11-07 14:05:41 -08002913 struct drm_property *property, uint64_t init_val)
2914{
Paulo Zanoni0057d8d2012-05-15 18:09:03 -03002915 drm_object_attach_property(&connector->base, property, init_val);
Dave Airlief453ba02008-11-07 14:05:41 -08002916}
2917EXPORT_SYMBOL(drm_connector_attach_property);
2918
2919int drm_connector_property_set_value(struct drm_connector *connector,
2920 struct drm_property *property, uint64_t value)
2921{
Paulo Zanoni0057d8d2012-05-15 18:09:03 -03002922 return drm_object_property_set_value(&connector->base, property, value);
Dave Airlief453ba02008-11-07 14:05:41 -08002923}
2924EXPORT_SYMBOL(drm_connector_property_set_value);
2925
2926int drm_connector_property_get_value(struct drm_connector *connector,
2927 struct drm_property *property, uint64_t *val)
2928{
Paulo Zanoni0057d8d2012-05-15 18:09:03 -03002929 return drm_object_property_get_value(&connector->base, property, val);
Dave Airlief453ba02008-11-07 14:05:41 -08002930}
2931EXPORT_SYMBOL(drm_connector_property_get_value);
2932
Paulo Zanonic5431882012-05-15 18:09:02 -03002933void drm_object_attach_property(struct drm_mode_object *obj,
2934 struct drm_property *property,
2935 uint64_t init_val)
2936{
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03002937 int count = obj->properties->count;
Paulo Zanonic5431882012-05-15 18:09:02 -03002938
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03002939 if (count == DRM_OBJECT_MAX_PROPERTY) {
2940 WARN(1, "Failed to attach object property (type: 0x%x). Please "
2941 "increase DRM_OBJECT_MAX_PROPERTY by 1 for each time "
2942 "you see this message on the same object type.\n",
2943 obj->type);
2944 return;
Paulo Zanonic5431882012-05-15 18:09:02 -03002945 }
2946
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03002947 obj->properties->ids[count] = property->base.id;
2948 obj->properties->values[count] = init_val;
2949 obj->properties->count++;
Paulo Zanonic5431882012-05-15 18:09:02 -03002950}
2951EXPORT_SYMBOL(drm_object_attach_property);
2952
2953int drm_object_property_set_value(struct drm_mode_object *obj,
2954 struct drm_property *property, uint64_t val)
2955{
2956 int i;
2957
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03002958 for (i = 0; i < obj->properties->count; i++) {
Paulo Zanonic5431882012-05-15 18:09:02 -03002959 if (obj->properties->ids[i] == property->base.id) {
2960 obj->properties->values[i] = val;
2961 return 0;
2962 }
2963 }
2964
2965 return -EINVAL;
2966}
2967EXPORT_SYMBOL(drm_object_property_set_value);
2968
2969int drm_object_property_get_value(struct drm_mode_object *obj,
2970 struct drm_property *property, uint64_t *val)
2971{
2972 int i;
2973
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03002974 for (i = 0; i < obj->properties->count; i++) {
Paulo Zanonic5431882012-05-15 18:09:02 -03002975 if (obj->properties->ids[i] == property->base.id) {
2976 *val = obj->properties->values[i];
2977 return 0;
2978 }
2979 }
2980
2981 return -EINVAL;
2982}
2983EXPORT_SYMBOL(drm_object_property_get_value);
2984
Dave Airlief453ba02008-11-07 14:05:41 -08002985int drm_mode_getproperty_ioctl(struct drm_device *dev,
2986 void *data, struct drm_file *file_priv)
2987{
2988 struct drm_mode_object *obj;
2989 struct drm_mode_get_property *out_resp = data;
2990 struct drm_property *property;
2991 int enum_count = 0;
2992 int blob_count = 0;
2993 int value_count = 0;
2994 int ret = 0, i;
2995 int copied;
2996 struct drm_property_enum *prop_enum;
2997 struct drm_mode_property_enum __user *enum_ptr;
2998 struct drm_property_blob *prop_blob;
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02002999 uint32_t __user *blob_id_ptr;
Dave Airlief453ba02008-11-07 14:05:41 -08003000 uint64_t __user *values_ptr;
3001 uint32_t __user *blob_length_ptr;
3002
Dave Airliefb3b06c2011-02-08 13:55:21 +10003003 if (!drm_core_check_feature(dev, DRIVER_MODESET))
3004 return -EINVAL;
3005
Dave Airlief453ba02008-11-07 14:05:41 -08003006 mutex_lock(&dev->mode_config.mutex);
3007 obj = drm_mode_object_find(dev, out_resp->prop_id, DRM_MODE_OBJECT_PROPERTY);
3008 if (!obj) {
3009 ret = -EINVAL;
3010 goto done;
3011 }
3012 property = obj_to_property(obj);
3013
Rob Clark49e27542012-05-17 02:23:26 -06003014 if (property->flags & (DRM_MODE_PROP_ENUM | DRM_MODE_PROP_BITMASK)) {
Dave Airlief453ba02008-11-07 14:05:41 -08003015 list_for_each_entry(prop_enum, &property->enum_blob_list, head)
3016 enum_count++;
3017 } else if (property->flags & DRM_MODE_PROP_BLOB) {
3018 list_for_each_entry(prop_blob, &property->enum_blob_list, head)
3019 blob_count++;
3020 }
3021
3022 value_count = property->num_values;
3023
3024 strncpy(out_resp->name, property->name, DRM_PROP_NAME_LEN);
3025 out_resp->name[DRM_PROP_NAME_LEN-1] = 0;
3026 out_resp->flags = property->flags;
3027
3028 if ((out_resp->count_values >= value_count) && value_count) {
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02003029 values_ptr = (uint64_t __user *)(unsigned long)out_resp->values_ptr;
Dave Airlief453ba02008-11-07 14:05:41 -08003030 for (i = 0; i < value_count; i++) {
3031 if (copy_to_user(values_ptr + i, &property->values[i], sizeof(uint64_t))) {
3032 ret = -EFAULT;
3033 goto done;
3034 }
3035 }
3036 }
3037 out_resp->count_values = value_count;
3038
Rob Clark49e27542012-05-17 02:23:26 -06003039 if (property->flags & (DRM_MODE_PROP_ENUM | DRM_MODE_PROP_BITMASK)) {
Dave Airlief453ba02008-11-07 14:05:41 -08003040 if ((out_resp->count_enum_blobs >= enum_count) && enum_count) {
3041 copied = 0;
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02003042 enum_ptr = (struct drm_mode_property_enum __user *)(unsigned long)out_resp->enum_blob_ptr;
Dave Airlief453ba02008-11-07 14:05:41 -08003043 list_for_each_entry(prop_enum, &property->enum_blob_list, head) {
3044
3045 if (copy_to_user(&enum_ptr[copied].value, &prop_enum->value, sizeof(uint64_t))) {
3046 ret = -EFAULT;
3047 goto done;
3048 }
3049
3050 if (copy_to_user(&enum_ptr[copied].name,
3051 &prop_enum->name, DRM_PROP_NAME_LEN)) {
3052 ret = -EFAULT;
3053 goto done;
3054 }
3055 copied++;
3056 }
3057 }
3058 out_resp->count_enum_blobs = enum_count;
3059 }
3060
3061 if (property->flags & DRM_MODE_PROP_BLOB) {
3062 if ((out_resp->count_enum_blobs >= blob_count) && blob_count) {
3063 copied = 0;
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02003064 blob_id_ptr = (uint32_t __user *)(unsigned long)out_resp->enum_blob_ptr;
3065 blob_length_ptr = (uint32_t __user *)(unsigned long)out_resp->values_ptr;
Dave Airlief453ba02008-11-07 14:05:41 -08003066
3067 list_for_each_entry(prop_blob, &property->enum_blob_list, head) {
3068 if (put_user(prop_blob->base.id, blob_id_ptr + copied)) {
3069 ret = -EFAULT;
3070 goto done;
3071 }
3072
3073 if (put_user(prop_blob->length, blob_length_ptr + copied)) {
3074 ret = -EFAULT;
3075 goto done;
3076 }
3077
3078 copied++;
3079 }
3080 }
3081 out_resp->count_enum_blobs = blob_count;
3082 }
3083done:
3084 mutex_unlock(&dev->mode_config.mutex);
3085 return ret;
3086}
3087
3088static struct drm_property_blob *drm_property_create_blob(struct drm_device *dev, int length,
3089 void *data)
3090{
3091 struct drm_property_blob *blob;
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02003092 int ret;
Dave Airlief453ba02008-11-07 14:05:41 -08003093
3094 if (!length || !data)
3095 return NULL;
3096
3097 blob = kzalloc(sizeof(struct drm_property_blob)+length, GFP_KERNEL);
3098 if (!blob)
3099 return NULL;
3100
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02003101 ret = drm_mode_object_get(dev, &blob->base, DRM_MODE_OBJECT_BLOB);
3102 if (ret) {
3103 kfree(blob);
3104 return NULL;
3105 }
3106
Dave Airlief453ba02008-11-07 14:05:41 -08003107 blob->length = length;
3108
3109 memcpy(blob->data, data, length);
3110
Dave Airlief453ba02008-11-07 14:05:41 -08003111 list_add_tail(&blob->head, &dev->mode_config.property_blob_list);
3112 return blob;
3113}
3114
3115static void drm_property_destroy_blob(struct drm_device *dev,
3116 struct drm_property_blob *blob)
3117{
3118 drm_mode_object_put(dev, &blob->base);
3119 list_del(&blob->head);
3120 kfree(blob);
3121}
3122
3123int drm_mode_getblob_ioctl(struct drm_device *dev,
3124 void *data, struct drm_file *file_priv)
3125{
3126 struct drm_mode_object *obj;
3127 struct drm_mode_get_blob *out_resp = data;
3128 struct drm_property_blob *blob;
3129 int ret = 0;
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02003130 void __user *blob_ptr;
Dave Airlief453ba02008-11-07 14:05:41 -08003131
Dave Airliefb3b06c2011-02-08 13:55:21 +10003132 if (!drm_core_check_feature(dev, DRIVER_MODESET))
3133 return -EINVAL;
3134
Dave Airlief453ba02008-11-07 14:05:41 -08003135 mutex_lock(&dev->mode_config.mutex);
3136 obj = drm_mode_object_find(dev, out_resp->blob_id, DRM_MODE_OBJECT_BLOB);
3137 if (!obj) {
3138 ret = -EINVAL;
3139 goto done;
3140 }
3141 blob = obj_to_blob(obj);
3142
3143 if (out_resp->length == blob->length) {
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02003144 blob_ptr = (void __user *)(unsigned long)out_resp->data;
Dave Airlief453ba02008-11-07 14:05:41 -08003145 if (copy_to_user(blob_ptr, blob->data, blob->length)){
3146 ret = -EFAULT;
3147 goto done;
3148 }
3149 }
3150 out_resp->length = blob->length;
3151
3152done:
3153 mutex_unlock(&dev->mode_config.mutex);
3154 return ret;
3155}
3156
3157int drm_mode_connector_update_edid_property(struct drm_connector *connector,
3158 struct edid *edid)
3159{
3160 struct drm_device *dev = connector->dev;
Laurent Pinchart4a1b0712012-05-17 13:27:21 +02003161 int ret, size;
Dave Airlief453ba02008-11-07 14:05:41 -08003162
3163 if (connector->edid_blob_ptr)
3164 drm_property_destroy_blob(dev, connector->edid_blob_ptr);
3165
3166 /* Delete edid, when there is none. */
3167 if (!edid) {
3168 connector->edid_blob_ptr = NULL;
3169 ret = drm_connector_property_set_value(connector, dev->mode_config.edid_property, 0);
3170 return ret;
3171 }
3172
Adam Jackson7466f4c2010-03-29 21:43:23 +00003173 size = EDID_LENGTH * (1 + edid->extensions);
3174 connector->edid_blob_ptr = drm_property_create_blob(connector->dev,
3175 size, edid);
Dave Airlief453ba02008-11-07 14:05:41 -08003176
3177 ret = drm_connector_property_set_value(connector,
3178 dev->mode_config.edid_property,
3179 connector->edid_blob_ptr->base.id);
3180
3181 return ret;
3182}
3183EXPORT_SYMBOL(drm_mode_connector_update_edid_property);
3184
Paulo Zanoni26a34812012-05-15 18:08:59 -03003185static bool drm_property_change_is_valid(struct drm_property *property,
Ville Syrjälä592c20e2012-05-24 20:53:58 +03003186 uint64_t value)
Paulo Zanoni26a34812012-05-15 18:08:59 -03003187{
3188 if (property->flags & DRM_MODE_PROP_IMMUTABLE)
3189 return false;
3190 if (property->flags & DRM_MODE_PROP_RANGE) {
3191 if (value < property->values[0] || value > property->values[1])
3192 return false;
3193 return true;
Rob Clark49e27542012-05-17 02:23:26 -06003194 } else if (property->flags & DRM_MODE_PROP_BITMASK) {
3195 int i;
Ville Syrjälä592c20e2012-05-24 20:53:58 +03003196 uint64_t valid_mask = 0;
Rob Clark49e27542012-05-17 02:23:26 -06003197 for (i = 0; i < property->num_values; i++)
3198 valid_mask |= (1ULL << property->values[i]);
3199 return !(value & ~valid_mask);
Paulo Zanoni26a34812012-05-15 18:08:59 -03003200 } else {
3201 int i;
3202 for (i = 0; i < property->num_values; i++)
3203 if (property->values[i] == value)
3204 return true;
3205 return false;
3206 }
3207}
3208
Dave Airlief453ba02008-11-07 14:05:41 -08003209int drm_mode_connector_property_set_ioctl(struct drm_device *dev,
3210 void *data, struct drm_file *file_priv)
3211{
Paulo Zanoni0057d8d2012-05-15 18:09:03 -03003212 struct drm_mode_connector_set_property *conn_set_prop = data;
3213 struct drm_mode_obj_set_property obj_set_prop = {
3214 .value = conn_set_prop->value,
3215 .prop_id = conn_set_prop->prop_id,
3216 .obj_id = conn_set_prop->connector_id,
3217 .obj_type = DRM_MODE_OBJECT_CONNECTOR
3218 };
Dave Airlief453ba02008-11-07 14:05:41 -08003219
Paulo Zanoni0057d8d2012-05-15 18:09:03 -03003220 /* It does all the locking and checking we need */
3221 return drm_mode_obj_set_property_ioctl(dev, &obj_set_prop, file_priv);
Dave Airlief453ba02008-11-07 14:05:41 -08003222}
3223
Paulo Zanonic5431882012-05-15 18:09:02 -03003224static int drm_mode_connector_set_obj_prop(struct drm_mode_object *obj,
3225 struct drm_property *property,
3226 uint64_t value)
3227{
3228 int ret = -EINVAL;
3229 struct drm_connector *connector = obj_to_connector(obj);
3230
3231 /* Do DPMS ourselves */
3232 if (property == connector->dev->mode_config.dpms_property) {
3233 if (connector->funcs->dpms)
3234 (*connector->funcs->dpms)(connector, (int)value);
3235 ret = 0;
3236 } else if (connector->funcs->set_property)
3237 ret = connector->funcs->set_property(connector, property, value);
3238
3239 /* store the property value if successful */
3240 if (!ret)
3241 drm_connector_property_set_value(connector, property, value);
3242 return ret;
3243}
3244
Paulo Zanonibffd9de02012-05-15 18:09:05 -03003245static int drm_mode_crtc_set_obj_prop(struct drm_mode_object *obj,
3246 struct drm_property *property,
3247 uint64_t value)
3248{
3249 int ret = -EINVAL;
3250 struct drm_crtc *crtc = obj_to_crtc(obj);
3251
3252 if (crtc->funcs->set_property)
3253 ret = crtc->funcs->set_property(crtc, property, value);
3254 if (!ret)
3255 drm_object_property_set_value(obj, property, value);
3256
3257 return ret;
3258}
3259
Rob Clark4d939142012-05-17 02:23:27 -06003260static int drm_mode_plane_set_obj_prop(struct drm_mode_object *obj,
3261 struct drm_property *property,
3262 uint64_t value)
3263{
3264 int ret = -EINVAL;
3265 struct drm_plane *plane = obj_to_plane(obj);
3266
3267 if (plane->funcs->set_property)
3268 ret = plane->funcs->set_property(plane, property, value);
3269 if (!ret)
3270 drm_object_property_set_value(obj, property, value);
3271
3272 return ret;
3273}
3274
Paulo Zanonic5431882012-05-15 18:09:02 -03003275int drm_mode_obj_get_properties_ioctl(struct drm_device *dev, void *data,
3276 struct drm_file *file_priv)
3277{
3278 struct drm_mode_obj_get_properties *arg = data;
3279 struct drm_mode_object *obj;
3280 int ret = 0;
3281 int i;
3282 int copied = 0;
3283 int props_count = 0;
3284 uint32_t __user *props_ptr;
3285 uint64_t __user *prop_values_ptr;
3286
3287 if (!drm_core_check_feature(dev, DRIVER_MODESET))
3288 return -EINVAL;
3289
3290 mutex_lock(&dev->mode_config.mutex);
3291
3292 obj = drm_mode_object_find(dev, arg->obj_id, arg->obj_type);
3293 if (!obj) {
3294 ret = -EINVAL;
3295 goto out;
3296 }
3297 if (!obj->properties) {
3298 ret = -EINVAL;
3299 goto out;
3300 }
3301
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03003302 props_count = obj->properties->count;
Paulo Zanonic5431882012-05-15 18:09:02 -03003303
3304 /* This ioctl is called twice, once to determine how much space is
3305 * needed, and the 2nd time to fill it. */
3306 if ((arg->count_props >= props_count) && props_count) {
3307 copied = 0;
3308 props_ptr = (uint32_t __user *)(unsigned long)(arg->props_ptr);
3309 prop_values_ptr = (uint64_t __user *)(unsigned long)
3310 (arg->prop_values_ptr);
3311 for (i = 0; i < props_count; i++) {
3312 if (put_user(obj->properties->ids[i],
3313 props_ptr + copied)) {
3314 ret = -EFAULT;
3315 goto out;
3316 }
3317 if (put_user(obj->properties->values[i],
3318 prop_values_ptr + copied)) {
3319 ret = -EFAULT;
3320 goto out;
3321 }
3322 copied++;
3323 }
3324 }
3325 arg->count_props = props_count;
3326out:
3327 mutex_unlock(&dev->mode_config.mutex);
3328 return ret;
3329}
3330
3331int drm_mode_obj_set_property_ioctl(struct drm_device *dev, void *data,
3332 struct drm_file *file_priv)
3333{
3334 struct drm_mode_obj_set_property *arg = data;
3335 struct drm_mode_object *arg_obj;
3336 struct drm_mode_object *prop_obj;
3337 struct drm_property *property;
3338 int ret = -EINVAL;
3339 int i;
3340
3341 if (!drm_core_check_feature(dev, DRIVER_MODESET))
3342 return -EINVAL;
3343
3344 mutex_lock(&dev->mode_config.mutex);
3345
3346 arg_obj = drm_mode_object_find(dev, arg->obj_id, arg->obj_type);
3347 if (!arg_obj)
3348 goto out;
3349 if (!arg_obj->properties)
3350 goto out;
3351
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03003352 for (i = 0; i < arg_obj->properties->count; i++)
Paulo Zanonic5431882012-05-15 18:09:02 -03003353 if (arg_obj->properties->ids[i] == arg->prop_id)
3354 break;
3355
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03003356 if (i == arg_obj->properties->count)
Paulo Zanonic5431882012-05-15 18:09:02 -03003357 goto out;
3358
3359 prop_obj = drm_mode_object_find(dev, arg->prop_id,
3360 DRM_MODE_OBJECT_PROPERTY);
3361 if (!prop_obj)
3362 goto out;
3363 property = obj_to_property(prop_obj);
3364
3365 if (!drm_property_change_is_valid(property, arg->value))
3366 goto out;
3367
3368 switch (arg_obj->type) {
3369 case DRM_MODE_OBJECT_CONNECTOR:
3370 ret = drm_mode_connector_set_obj_prop(arg_obj, property,
3371 arg->value);
3372 break;
Paulo Zanonibffd9de02012-05-15 18:09:05 -03003373 case DRM_MODE_OBJECT_CRTC:
3374 ret = drm_mode_crtc_set_obj_prop(arg_obj, property, arg->value);
3375 break;
Rob Clark4d939142012-05-17 02:23:27 -06003376 case DRM_MODE_OBJECT_PLANE:
3377 ret = drm_mode_plane_set_obj_prop(arg_obj, property, arg->value);
3378 break;
Paulo Zanonic5431882012-05-15 18:09:02 -03003379 }
3380
3381out:
3382 mutex_unlock(&dev->mode_config.mutex);
3383 return ret;
3384}
3385
Dave Airlief453ba02008-11-07 14:05:41 -08003386int drm_mode_connector_attach_encoder(struct drm_connector *connector,
3387 struct drm_encoder *encoder)
3388{
3389 int i;
3390
3391 for (i = 0; i < DRM_CONNECTOR_MAX_ENCODER; i++) {
3392 if (connector->encoder_ids[i] == 0) {
3393 connector->encoder_ids[i] = encoder->base.id;
3394 return 0;
3395 }
3396 }
3397 return -ENOMEM;
3398}
3399EXPORT_SYMBOL(drm_mode_connector_attach_encoder);
3400
3401void drm_mode_connector_detach_encoder(struct drm_connector *connector,
3402 struct drm_encoder *encoder)
3403{
3404 int i;
3405 for (i = 0; i < DRM_CONNECTOR_MAX_ENCODER; i++) {
3406 if (connector->encoder_ids[i] == encoder->base.id) {
3407 connector->encoder_ids[i] = 0;
3408 if (connector->encoder == encoder)
3409 connector->encoder = NULL;
3410 break;
3411 }
3412 }
3413}
3414EXPORT_SYMBOL(drm_mode_connector_detach_encoder);
3415
Sascha Hauer4cae5b82012-02-01 11:38:23 +01003416int drm_mode_crtc_set_gamma_size(struct drm_crtc *crtc,
Dave Airlief453ba02008-11-07 14:05:41 -08003417 int gamma_size)
3418{
3419 crtc->gamma_size = gamma_size;
3420
3421 crtc->gamma_store = kzalloc(gamma_size * sizeof(uint16_t) * 3, GFP_KERNEL);
3422 if (!crtc->gamma_store) {
3423 crtc->gamma_size = 0;
Sascha Hauer4cae5b82012-02-01 11:38:23 +01003424 return -ENOMEM;
Dave Airlief453ba02008-11-07 14:05:41 -08003425 }
3426
Sascha Hauer4cae5b82012-02-01 11:38:23 +01003427 return 0;
Dave Airlief453ba02008-11-07 14:05:41 -08003428}
3429EXPORT_SYMBOL(drm_mode_crtc_set_gamma_size);
3430
3431int drm_mode_gamma_set_ioctl(struct drm_device *dev,
3432 void *data, struct drm_file *file_priv)
3433{
3434 struct drm_mode_crtc_lut *crtc_lut = data;
3435 struct drm_mode_object *obj;
3436 struct drm_crtc *crtc;
3437 void *r_base, *g_base, *b_base;
3438 int size;
3439 int ret = 0;
3440
Dave Airliefb3b06c2011-02-08 13:55:21 +10003441 if (!drm_core_check_feature(dev, DRIVER_MODESET))
3442 return -EINVAL;
3443
Dave Airlief453ba02008-11-07 14:05:41 -08003444 mutex_lock(&dev->mode_config.mutex);
3445 obj = drm_mode_object_find(dev, crtc_lut->crtc_id, DRM_MODE_OBJECT_CRTC);
3446 if (!obj) {
3447 ret = -EINVAL;
3448 goto out;
3449 }
3450 crtc = obj_to_crtc(obj);
3451
Laurent Pinchartebe0f242012-05-17 13:27:24 +02003452 if (crtc->funcs->gamma_set == NULL) {
3453 ret = -ENOSYS;
3454 goto out;
3455 }
3456
Dave Airlief453ba02008-11-07 14:05:41 -08003457 /* memcpy into gamma store */
3458 if (crtc_lut->gamma_size != crtc->gamma_size) {
3459 ret = -EINVAL;
3460 goto out;
3461 }
3462
3463 size = crtc_lut->gamma_size * (sizeof(uint16_t));
3464 r_base = crtc->gamma_store;
3465 if (copy_from_user(r_base, (void __user *)(unsigned long)crtc_lut->red, size)) {
3466 ret = -EFAULT;
3467 goto out;
3468 }
3469
3470 g_base = r_base + size;
3471 if (copy_from_user(g_base, (void __user *)(unsigned long)crtc_lut->green, size)) {
3472 ret = -EFAULT;
3473 goto out;
3474 }
3475
3476 b_base = g_base + size;
3477 if (copy_from_user(b_base, (void __user *)(unsigned long)crtc_lut->blue, size)) {
3478 ret = -EFAULT;
3479 goto out;
3480 }
3481
James Simmons72034252010-08-03 01:33:19 +01003482 crtc->funcs->gamma_set(crtc, r_base, g_base, b_base, 0, crtc->gamma_size);
Dave Airlief453ba02008-11-07 14:05:41 -08003483
3484out:
3485 mutex_unlock(&dev->mode_config.mutex);
3486 return ret;
3487
3488}
3489
3490int drm_mode_gamma_get_ioctl(struct drm_device *dev,
3491 void *data, struct drm_file *file_priv)
3492{
3493 struct drm_mode_crtc_lut *crtc_lut = data;
3494 struct drm_mode_object *obj;
3495 struct drm_crtc *crtc;
3496 void *r_base, *g_base, *b_base;
3497 int size;
3498 int ret = 0;
3499
Dave Airliefb3b06c2011-02-08 13:55:21 +10003500 if (!drm_core_check_feature(dev, DRIVER_MODESET))
3501 return -EINVAL;
3502
Dave Airlief453ba02008-11-07 14:05:41 -08003503 mutex_lock(&dev->mode_config.mutex);
3504 obj = drm_mode_object_find(dev, crtc_lut->crtc_id, DRM_MODE_OBJECT_CRTC);
3505 if (!obj) {
3506 ret = -EINVAL;
3507 goto out;
3508 }
3509 crtc = obj_to_crtc(obj);
3510
3511 /* memcpy into gamma store */
3512 if (crtc_lut->gamma_size != crtc->gamma_size) {
3513 ret = -EINVAL;
3514 goto out;
3515 }
3516
3517 size = crtc_lut->gamma_size * (sizeof(uint16_t));
3518 r_base = crtc->gamma_store;
3519 if (copy_to_user((void __user *)(unsigned long)crtc_lut->red, r_base, size)) {
3520 ret = -EFAULT;
3521 goto out;
3522 }
3523
3524 g_base = r_base + size;
3525 if (copy_to_user((void __user *)(unsigned long)crtc_lut->green, g_base, size)) {
3526 ret = -EFAULT;
3527 goto out;
3528 }
3529
3530 b_base = g_base + size;
3531 if (copy_to_user((void __user *)(unsigned long)crtc_lut->blue, b_base, size)) {
3532 ret = -EFAULT;
3533 goto out;
3534 }
3535out:
3536 mutex_unlock(&dev->mode_config.mutex);
3537 return ret;
3538}
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05003539
3540int drm_mode_page_flip_ioctl(struct drm_device *dev,
3541 void *data, struct drm_file *file_priv)
3542{
3543 struct drm_mode_crtc_page_flip *page_flip = data;
3544 struct drm_mode_object *obj;
3545 struct drm_crtc *crtc;
3546 struct drm_framebuffer *fb;
3547 struct drm_pending_vblank_event *e = NULL;
3548 unsigned long flags;
3549 int ret = -EINVAL;
3550
3551 if (page_flip->flags & ~DRM_MODE_PAGE_FLIP_FLAGS ||
3552 page_flip->reserved != 0)
3553 return -EINVAL;
3554
3555 mutex_lock(&dev->mode_config.mutex);
3556 obj = drm_mode_object_find(dev, page_flip->crtc_id, DRM_MODE_OBJECT_CRTC);
3557 if (!obj)
3558 goto out;
3559 crtc = obj_to_crtc(obj);
3560
Chris Wilson90c1efd2010-07-17 20:23:26 +01003561 if (crtc->fb == NULL) {
3562 /* The framebuffer is currently unbound, presumably
3563 * due to a hotplug event, that userspace has not
3564 * yet discovered.
3565 */
3566 ret = -EBUSY;
3567 goto out;
3568 }
3569
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05003570 if (crtc->funcs->page_flip == NULL)
3571 goto out;
3572
3573 obj = drm_mode_object_find(dev, page_flip->fb_id, DRM_MODE_OBJECT_FB);
3574 if (!obj)
3575 goto out;
3576 fb = obj_to_fb(obj);
3577
Ville Syrjälä5f61bb42012-03-13 12:35:45 +02003578 if (crtc->mode.hdisplay > fb->width ||
3579 crtc->mode.vdisplay > fb->height ||
3580 crtc->x > fb->width - crtc->mode.hdisplay ||
3581 crtc->y > fb->height - crtc->mode.vdisplay) {
3582 DRM_DEBUG_KMS("Invalid fb size %ux%u for CRTC viewport %ux%u+%d+%d.\n",
3583 fb->width, fb->height,
3584 crtc->mode.hdisplay, crtc->mode.vdisplay,
3585 crtc->x, crtc->y);
3586 ret = -ENOSPC;
3587 goto out;
3588 }
3589
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05003590 if (page_flip->flags & DRM_MODE_PAGE_FLIP_EVENT) {
3591 ret = -ENOMEM;
3592 spin_lock_irqsave(&dev->event_lock, flags);
3593 if (file_priv->event_space < sizeof e->event) {
3594 spin_unlock_irqrestore(&dev->event_lock, flags);
3595 goto out;
3596 }
3597 file_priv->event_space -= sizeof e->event;
3598 spin_unlock_irqrestore(&dev->event_lock, flags);
3599
3600 e = kzalloc(sizeof *e, GFP_KERNEL);
3601 if (e == NULL) {
3602 spin_lock_irqsave(&dev->event_lock, flags);
3603 file_priv->event_space += sizeof e->event;
3604 spin_unlock_irqrestore(&dev->event_lock, flags);
3605 goto out;
3606 }
3607
Jesse Barnes7bd4d7b2009-11-19 10:50:22 -08003608 e->event.base.type = DRM_EVENT_FLIP_COMPLETE;
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05003609 e->event.base.length = sizeof e->event;
3610 e->event.user_data = page_flip->user_data;
3611 e->base.event = &e->event.base;
3612 e->base.file_priv = file_priv;
3613 e->base.destroy =
3614 (void (*) (struct drm_pending_event *)) kfree;
3615 }
3616
3617 ret = crtc->funcs->page_flip(crtc, fb, e);
3618 if (ret) {
Joonyoung Shimaef6a7e2012-04-18 13:47:02 +09003619 if (page_flip->flags & DRM_MODE_PAGE_FLIP_EVENT) {
3620 spin_lock_irqsave(&dev->event_lock, flags);
3621 file_priv->event_space += sizeof e->event;
3622 spin_unlock_irqrestore(&dev->event_lock, flags);
3623 kfree(e);
3624 }
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05003625 }
3626
3627out:
3628 mutex_unlock(&dev->mode_config.mutex);
3629 return ret;
3630}
Chris Wilsoneb033552011-01-24 15:11:08 +00003631
3632void drm_mode_config_reset(struct drm_device *dev)
3633{
3634 struct drm_crtc *crtc;
3635 struct drm_encoder *encoder;
3636 struct drm_connector *connector;
3637
3638 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head)
3639 if (crtc->funcs->reset)
3640 crtc->funcs->reset(crtc);
3641
3642 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head)
3643 if (encoder->funcs->reset)
3644 encoder->funcs->reset(encoder);
3645
3646 list_for_each_entry(connector, &dev->mode_config.connector_list, head)
3647 if (connector->funcs->reset)
3648 connector->funcs->reset(connector);
3649}
3650EXPORT_SYMBOL(drm_mode_config_reset);
Dave Airlieff72145b2011-02-07 12:16:14 +10003651
3652int drm_mode_create_dumb_ioctl(struct drm_device *dev,
3653 void *data, struct drm_file *file_priv)
3654{
3655 struct drm_mode_create_dumb *args = data;
3656
3657 if (!dev->driver->dumb_create)
3658 return -ENOSYS;
3659 return dev->driver->dumb_create(file_priv, dev, args);
3660}
3661
3662int drm_mode_mmap_dumb_ioctl(struct drm_device *dev,
3663 void *data, struct drm_file *file_priv)
3664{
3665 struct drm_mode_map_dumb *args = data;
3666
3667 /* call driver ioctl to get mmap offset */
3668 if (!dev->driver->dumb_map_offset)
3669 return -ENOSYS;
3670
3671 return dev->driver->dumb_map_offset(file_priv, dev, args->handle, &args->offset);
3672}
3673
3674int drm_mode_destroy_dumb_ioctl(struct drm_device *dev,
3675 void *data, struct drm_file *file_priv)
3676{
3677 struct drm_mode_destroy_dumb *args = data;
3678
3679 if (!dev->driver->dumb_destroy)
3680 return -ENOSYS;
3681
3682 return dev->driver->dumb_destroy(file_priv, dev, args->handle);
3683}
Dave Airlie248dbc22011-11-29 20:02:54 +00003684
3685/*
3686 * Just need to support RGB formats here for compat with code that doesn't
3687 * use pixel formats directly yet.
3688 */
3689void drm_fb_get_bpp_depth(uint32_t format, unsigned int *depth,
3690 int *bpp)
3691{
3692 switch (format) {
Ville Syrjälä04b39242011-11-17 18:05:13 +02003693 case DRM_FORMAT_RGB332:
3694 case DRM_FORMAT_BGR233:
Dave Airlie248dbc22011-11-29 20:02:54 +00003695 *depth = 8;
3696 *bpp = 8;
3697 break;
Ville Syrjälä04b39242011-11-17 18:05:13 +02003698 case DRM_FORMAT_XRGB1555:
3699 case DRM_FORMAT_XBGR1555:
3700 case DRM_FORMAT_RGBX5551:
3701 case DRM_FORMAT_BGRX5551:
3702 case DRM_FORMAT_ARGB1555:
3703 case DRM_FORMAT_ABGR1555:
3704 case DRM_FORMAT_RGBA5551:
3705 case DRM_FORMAT_BGRA5551:
Dave Airlie248dbc22011-11-29 20:02:54 +00003706 *depth = 15;
3707 *bpp = 16;
3708 break;
Ville Syrjälä04b39242011-11-17 18:05:13 +02003709 case DRM_FORMAT_RGB565:
3710 case DRM_FORMAT_BGR565:
Dave Airlie248dbc22011-11-29 20:02:54 +00003711 *depth = 16;
3712 *bpp = 16;
3713 break;
Ville Syrjälä04b39242011-11-17 18:05:13 +02003714 case DRM_FORMAT_RGB888:
3715 case DRM_FORMAT_BGR888:
3716 *depth = 24;
3717 *bpp = 24;
3718 break;
3719 case DRM_FORMAT_XRGB8888:
3720 case DRM_FORMAT_XBGR8888:
3721 case DRM_FORMAT_RGBX8888:
3722 case DRM_FORMAT_BGRX8888:
Dave Airlie248dbc22011-11-29 20:02:54 +00003723 *depth = 24;
3724 *bpp = 32;
3725 break;
Ville Syrjälä04b39242011-11-17 18:05:13 +02003726 case DRM_FORMAT_XRGB2101010:
3727 case DRM_FORMAT_XBGR2101010:
3728 case DRM_FORMAT_RGBX1010102:
3729 case DRM_FORMAT_BGRX1010102:
3730 case DRM_FORMAT_ARGB2101010:
3731 case DRM_FORMAT_ABGR2101010:
3732 case DRM_FORMAT_RGBA1010102:
3733 case DRM_FORMAT_BGRA1010102:
Dave Airlie248dbc22011-11-29 20:02:54 +00003734 *depth = 30;
3735 *bpp = 32;
3736 break;
Ville Syrjälä04b39242011-11-17 18:05:13 +02003737 case DRM_FORMAT_ARGB8888:
3738 case DRM_FORMAT_ABGR8888:
3739 case DRM_FORMAT_RGBA8888:
3740 case DRM_FORMAT_BGRA8888:
Dave Airlie248dbc22011-11-29 20:02:54 +00003741 *depth = 32;
3742 *bpp = 32;
3743 break;
3744 default:
3745 DRM_DEBUG_KMS("unsupported pixel format\n");
3746 *depth = 0;
3747 *bpp = 0;
3748 break;
3749 }
3750}
3751EXPORT_SYMBOL(drm_fb_get_bpp_depth);
Ville Syrjälä141670e2012-04-05 21:35:15 +03003752
3753/**
3754 * drm_format_num_planes - get the number of planes for format
3755 * @format: pixel format (DRM_FORMAT_*)
3756 *
3757 * RETURNS:
3758 * The number of planes used by the specified pixel format.
3759 */
3760int drm_format_num_planes(uint32_t format)
3761{
3762 switch (format) {
3763 case DRM_FORMAT_YUV410:
3764 case DRM_FORMAT_YVU410:
3765 case DRM_FORMAT_YUV411:
3766 case DRM_FORMAT_YVU411:
3767 case DRM_FORMAT_YUV420:
3768 case DRM_FORMAT_YVU420:
3769 case DRM_FORMAT_YUV422:
3770 case DRM_FORMAT_YVU422:
3771 case DRM_FORMAT_YUV444:
3772 case DRM_FORMAT_YVU444:
3773 return 3;
3774 case DRM_FORMAT_NV12:
3775 case DRM_FORMAT_NV21:
3776 case DRM_FORMAT_NV16:
3777 case DRM_FORMAT_NV61:
Laurent Pinchartba623f62012-05-18 23:47:40 +02003778 case DRM_FORMAT_NV24:
3779 case DRM_FORMAT_NV42:
Ville Syrjälä141670e2012-04-05 21:35:15 +03003780 return 2;
3781 default:
3782 return 1;
3783 }
3784}
3785EXPORT_SYMBOL(drm_format_num_planes);
Ville Syrjälä5a86bd52012-04-05 21:35:16 +03003786
3787/**
3788 * drm_format_plane_cpp - determine the bytes per pixel value
3789 * @format: pixel format (DRM_FORMAT_*)
3790 * @plane: plane index
3791 *
3792 * RETURNS:
3793 * The bytes per pixel value for the specified plane.
3794 */
3795int drm_format_plane_cpp(uint32_t format, int plane)
3796{
3797 unsigned int depth;
3798 int bpp;
3799
3800 if (plane >= drm_format_num_planes(format))
3801 return 0;
3802
3803 switch (format) {
3804 case DRM_FORMAT_YUYV:
3805 case DRM_FORMAT_YVYU:
3806 case DRM_FORMAT_UYVY:
3807 case DRM_FORMAT_VYUY:
3808 return 2;
3809 case DRM_FORMAT_NV12:
3810 case DRM_FORMAT_NV21:
3811 case DRM_FORMAT_NV16:
3812 case DRM_FORMAT_NV61:
Laurent Pinchartba623f62012-05-18 23:47:40 +02003813 case DRM_FORMAT_NV24:
3814 case DRM_FORMAT_NV42:
Ville Syrjälä5a86bd52012-04-05 21:35:16 +03003815 return plane ? 2 : 1;
3816 case DRM_FORMAT_YUV410:
3817 case DRM_FORMAT_YVU410:
3818 case DRM_FORMAT_YUV411:
3819 case DRM_FORMAT_YVU411:
3820 case DRM_FORMAT_YUV420:
3821 case DRM_FORMAT_YVU420:
3822 case DRM_FORMAT_YUV422:
3823 case DRM_FORMAT_YVU422:
3824 case DRM_FORMAT_YUV444:
3825 case DRM_FORMAT_YVU444:
3826 return 1;
3827 default:
3828 drm_fb_get_bpp_depth(format, &depth, &bpp);
3829 return bpp >> 3;
3830 }
3831}
3832EXPORT_SYMBOL(drm_format_plane_cpp);
Ville Syrjälä01b68b02012-04-05 21:35:17 +03003833
3834/**
3835 * drm_format_horz_chroma_subsampling - get the horizontal chroma subsampling factor
3836 * @format: pixel format (DRM_FORMAT_*)
3837 *
3838 * RETURNS:
3839 * The horizontal chroma subsampling factor for the
3840 * specified pixel format.
3841 */
3842int drm_format_horz_chroma_subsampling(uint32_t format)
3843{
3844 switch (format) {
3845 case DRM_FORMAT_YUV411:
3846 case DRM_FORMAT_YVU411:
3847 case DRM_FORMAT_YUV410:
3848 case DRM_FORMAT_YVU410:
3849 return 4;
3850 case DRM_FORMAT_YUYV:
3851 case DRM_FORMAT_YVYU:
3852 case DRM_FORMAT_UYVY:
3853 case DRM_FORMAT_VYUY:
3854 case DRM_FORMAT_NV12:
3855 case DRM_FORMAT_NV21:
3856 case DRM_FORMAT_NV16:
3857 case DRM_FORMAT_NV61:
3858 case DRM_FORMAT_YUV422:
3859 case DRM_FORMAT_YVU422:
3860 case DRM_FORMAT_YUV420:
3861 case DRM_FORMAT_YVU420:
3862 return 2;
3863 default:
3864 return 1;
3865 }
3866}
3867EXPORT_SYMBOL(drm_format_horz_chroma_subsampling);
3868
3869/**
3870 * drm_format_vert_chroma_subsampling - get the vertical chroma subsampling factor
3871 * @format: pixel format (DRM_FORMAT_*)
3872 *
3873 * RETURNS:
3874 * The vertical chroma subsampling factor for the
3875 * specified pixel format.
3876 */
3877int drm_format_vert_chroma_subsampling(uint32_t format)
3878{
3879 switch (format) {
3880 case DRM_FORMAT_YUV410:
3881 case DRM_FORMAT_YVU410:
3882 return 4;
3883 case DRM_FORMAT_YUV420:
3884 case DRM_FORMAT_YVU420:
3885 case DRM_FORMAT_NV12:
3886 case DRM_FORMAT_NV21:
3887 return 2;
3888 default:
3889 return 1;
3890 }
3891}
3892EXPORT_SYMBOL(drm_format_vert_chroma_subsampling);