blob: 956fd38d7c9ed6da526479cf8b1d91ad2038c22e [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/**
Dave Airlieb5e89ed2005-09-25 14:28:13 +10002 * \file drm_ioctl.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 * IOCTL processing for DRM
4 *
5 * \author Rickard E. (Rik) Faith <faith@valinux.com>
6 * \author Gareth Hughes <gareth@valinux.com>
7 */
8
9/*
10 * Created: Fri Jan 8 09:01:26 1999 by faith@valinux.com
11 *
12 * Copyright 1999 Precision Insight, Inc., Cedar Park, Texas.
13 * Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California.
14 * All Rights Reserved.
15 *
16 * Permission is hereby granted, free of charge, to any person obtaining a
17 * copy of this software and associated documentation files (the "Software"),
18 * to deal in the Software without restriction, including without limitation
19 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
20 * and/or sell copies of the Software, and to permit persons to whom the
21 * Software is furnished to do so, subject to the following conditions:
22 *
23 * The above copyright notice and this permission notice (including the next
24 * paragraph) shall be included in all copies or substantial portions of the
25 * Software.
26 *
27 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
28 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
29 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
30 * VA LINUX SYSTEMS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
31 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
32 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
33 * OTHER DEALINGS IN THE SOFTWARE.
34 */
35
36#include "drmP.h"
37#include "drm_core.h"
38
39#include "linux/pci.h"
40
41/**
42 * Get the bus id.
Dave Airlieb5e89ed2005-09-25 14:28:13 +100043 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070044 * \param inode device inode.
Eric Anholt6c340ea2007-08-25 20:23:09 +100045 * \param file_priv DRM file private.
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 * \param cmd command.
47 * \param arg user argument, pointing to a drm_unique structure.
48 * \return zero on success or a negative number on failure.
49 *
50 * Copies the bus id from drm_device::unique into user space.
51 */
Eric Anholtc153f452007-09-03 12:06:45 +100052int drm_getunique(struct drm_device *dev, void *data,
53 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -070054{
Eric Anholtc153f452007-09-03 12:06:45 +100055 struct drm_unique *u = data;
Dave Airlie7c1c2872008-11-28 14:22:24 +100056 struct drm_master *master = file_priv->master;
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
Dave Airlie7c1c2872008-11-28 14:22:24 +100058 if (u->unique_len >= master->unique_len) {
59 if (copy_to_user(u->unique, master->unique, master->unique_len))
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 return -EFAULT;
61 }
Dave Airlie7c1c2872008-11-28 14:22:24 +100062 u->unique_len = master->unique_len;
Eric Anholtc153f452007-09-03 12:06:45 +100063
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 return 0;
65}
66
Chris Wilson3fb688f2010-08-04 11:09:42 +010067static void
68drm_unset_busid(struct drm_device *dev,
69 struct drm_master *master)
70{
71 kfree(dev->devname);
72 dev->devname = NULL;
73
74 kfree(master->unique);
75 master->unique = NULL;
76 master->unique_len = 0;
77 master->unique_size = 0;
78}
79
Linus Torvalds1da177e2005-04-16 15:20:36 -070080/**
81 * Set the bus id.
Dave Airlieb5e89ed2005-09-25 14:28:13 +100082 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 * \param inode device inode.
Eric Anholt6c340ea2007-08-25 20:23:09 +100084 * \param file_priv DRM file private.
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 * \param cmd command.
86 * \param arg user argument, pointing to a drm_unique structure.
87 * \return zero on success or a negative number on failure.
88 *
89 * Copies the bus id from userspace into drm_device::unique, and verifies that
90 * it matches the device this DRM is attached to (EINVAL otherwise). Deprecated
91 * in interface version 1.1 and will return EBUSY when setversion has requested
92 * version 1.1 or greater.
93 */
Eric Anholtc153f452007-09-03 12:06:45 +100094int drm_setunique(struct drm_device *dev, void *data,
95 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -070096{
Eric Anholtc153f452007-09-03 12:06:45 +100097 struct drm_unique *u = data;
Dave Airlie7c1c2872008-11-28 14:22:24 +100098 struct drm_master *master = file_priv->master;
Dave Airlie8410ea32010-12-15 03:16:38 +100099 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100
Dave Airlie7c1c2872008-11-28 14:22:24 +1000101 if (master->unique_len || master->unique)
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000102 return -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103
Eric Anholtc153f452007-09-03 12:06:45 +1000104 if (!u->unique_len || u->unique_len > 1024)
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000105 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106
Dave Airlie8410ea32010-12-15 03:16:38 +1000107 if (!dev->driver->bus->set_unique)
108 return -EINVAL;
109
110 ret = dev->driver->bus->set_unique(dev, master, u);
111 if (ret)
Chris Wilson3fb688f2010-08-04 11:09:42 +0100112 goto err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
114 return 0;
Chris Wilson3fb688f2010-08-04 11:09:42 +0100115
116err:
117 drm_unset_busid(dev, master);
118 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119}
120
Dave Airlie7c1c2872008-11-28 14:22:24 +1000121static int drm_set_busid(struct drm_device *dev, struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122{
Dave Airlie7c1c2872008-11-28 14:22:24 +1000123 struct drm_master *master = file_priv->master;
Dave Airlie8410ea32010-12-15 03:16:38 +1000124 int ret;
Chris Wilson3fb688f2010-08-04 11:09:42 +0100125
126 if (master->unique != NULL)
127 drm_unset_busid(dev, master);
Dave Airliefe347652006-01-02 21:19:39 +1100128
Dave Airlie8410ea32010-12-15 03:16:38 +1000129 ret = dev->driver->bus->set_busid(dev, master);
130 if (ret)
131 goto err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 return 0;
Chris Wilson3fb688f2010-08-04 11:09:42 +0100133err:
134 drm_unset_busid(dev, master);
135 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136}
137
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138/**
139 * Get a mapping information.
140 *
141 * \param inode device inode.
Eric Anholt6c340ea2007-08-25 20:23:09 +1000142 * \param file_priv DRM file private.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 * \param cmd command.
144 * \param arg user argument, pointing to a drm_map structure.
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000145 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 * \return zero on success or a negative number on failure.
147 *
148 * Searches for the mapping with the specified offset and copies its information
149 * into userspace
150 */
Eric Anholtc153f452007-09-03 12:06:45 +1000151int drm_getmap(struct drm_device *dev, void *data,
152 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153{
Eric Anholtc153f452007-09-03 12:06:45 +1000154 struct drm_map *map = data;
Dave Airlie55910512007-07-11 16:53:40 +1000155 struct drm_map_list *r_list = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 struct list_head *list;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000157 int idx;
158 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159
Eric Anholtc153f452007-09-03 12:06:45 +1000160 idx = map->offset;
Ilija Hadzic09b4ea42011-10-28 17:43:28 -0400161 if (idx < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
164 i = 0;
Ilija Hadzic09b4ea42011-10-28 17:43:28 -0400165 mutex_lock(&dev->struct_mutex);
Dave Airliebd1b3312007-05-26 05:01:51 +1000166 list_for_each(list, &dev->maplist) {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000167 if (i == idx) {
Dave Airlie55910512007-07-11 16:53:40 +1000168 r_list = list_entry(list, struct drm_map_list, head);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 break;
170 }
171 i++;
172 }
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000173 if (!r_list || !r_list->map) {
Dave Airlie30e2fb12006-02-02 19:37:46 +1100174 mutex_unlock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 return -EINVAL;
176 }
177
Eric Anholtc153f452007-09-03 12:06:45 +1000178 map->offset = r_list->map->offset;
179 map->size = r_list->map->size;
180 map->type = r_list->map->type;
181 map->flags = r_list->map->flags;
182 map->handle = (void *)(unsigned long) r_list->user_token;
183 map->mtrr = r_list->map->mtrr;
Dave Airlie30e2fb12006-02-02 19:37:46 +1100184 mutex_unlock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 return 0;
187}
188
189/**
190 * Get client information.
191 *
192 * \param inode device inode.
Eric Anholt6c340ea2007-08-25 20:23:09 +1000193 * \param file_priv DRM file private.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 * \param cmd command.
195 * \param arg user argument, pointing to a drm_client structure.
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000196 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 * \return zero on success or a negative number on failure.
198 *
199 * Searches for the client with the specified index and copies its information
200 * into userspace
201 */
Eric Anholtc153f452007-09-03 12:06:45 +1000202int drm_getclient(struct drm_device *dev, void *data,
203 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204{
Eric Anholtc153f452007-09-03 12:06:45 +1000205 struct drm_client *client = data;
Dave Airlie84b1fd12007-07-11 15:53:27 +1000206 struct drm_file *pt;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000207 int idx;
208 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209
Eric Anholtc153f452007-09-03 12:06:45 +1000210 idx = client->idx;
Dave Airliebd1b3312007-05-26 05:01:51 +1000211 i = 0;
Ilija Hadzic09b4ea42011-10-28 17:43:28 -0400212
213 mutex_lock(&dev->struct_mutex);
Dave Airliebd1b3312007-05-26 05:01:51 +1000214 list_for_each_entry(pt, &dev->filelist, lhead) {
Eric Anholtb018fcd2007-11-22 18:46:54 +1000215 if (i++ >= idx) {
216 client->auth = pt->authenticated;
217 client->pid = pt->pid;
218 client->uid = pt->uid;
219 client->magic = pt->magic;
220 client->iocs = pt->ioctl_count;
221 mutex_unlock(&dev->struct_mutex);
Dave Airliebd1b3312007-05-26 05:01:51 +1000222
Eric Anholtb018fcd2007-11-22 18:46:54 +1000223 return 0;
224 }
225 }
Dave Airlie30e2fb12006-02-02 19:37:46 +1100226 mutex_unlock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227
Eric Anholtb018fcd2007-11-22 18:46:54 +1000228 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229}
230
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000231/**
232 * Get statistics information.
233 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 * \param inode device inode.
Eric Anholt6c340ea2007-08-25 20:23:09 +1000235 * \param file_priv DRM file private.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 * \param cmd command.
237 * \param arg user argument, pointing to a drm_stats structure.
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000238 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 * \return zero on success or a negative number on failure.
240 */
Eric Anholtc153f452007-09-03 12:06:45 +1000241int drm_getstats(struct drm_device *dev, void *data,
242 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243{
Eric Anholtc153f452007-09-03 12:06:45 +1000244 struct drm_stats *stats = data;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000245 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246
Li Zefan246a3d12007-11-05 12:53:09 +1000247 memset(stats, 0, sizeof(*stats));
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000248
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 for (i = 0; i < dev->counters; i++) {
250 if (dev->types[i] == _DRM_STAT_LOCK)
Eric Anholtc153f452007-09-03 12:06:45 +1000251 stats->data[i].value =
Dave Airlie7c1c2872008-11-28 14:22:24 +1000252 (file_priv->master->lock.hw_lock ? file_priv->master->lock.hw_lock->lock : 0);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000253 else
Eric Anholtc153f452007-09-03 12:06:45 +1000254 stats->data[i].value = atomic_read(&dev->counts[i]);
255 stats->data[i].type = dev->types[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 }
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000257
Eric Anholtc153f452007-09-03 12:06:45 +1000258 stats->count = dev->counters;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 return 0;
261}
262
263/**
Ben Skeggs9f354212011-02-21 11:17:35 +1000264 * Get device/driver capabilities
265 */
266int drm_getcap(struct drm_device *dev, void *data, struct drm_file *file_priv)
267{
268 struct drm_get_cap *req = data;
269
270 req->value = 0;
Dave Airliee73f88a2011-03-04 14:50:28 +1000271 switch (req->capability) {
272 case DRM_CAP_DUMB_BUFFER:
273 if (dev->driver->dumb_create)
274 req->value = 1;
275 break;
Dave Airlie51eab412011-03-24 20:54:35 +1000276 case DRM_CAP_VBLANK_HIGH_CRTC:
Ilija Hadzic19b01b52011-03-18 16:58:04 -0500277 req->value = 1;
278 break;
Dave Airliee73f88a2011-03-04 14:50:28 +1000279 default:
280 return -EINVAL;
281 }
Ben Skeggs9f354212011-02-21 11:17:35 +1000282 return 0;
283}
284
285/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 * Setversion ioctl.
287 *
288 * \param inode device inode.
Eric Anholt6c340ea2007-08-25 20:23:09 +1000289 * \param file_priv DRM file private.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 * \param cmd command.
291 * \param arg user argument, pointing to a drm_lock structure.
292 * \return zero on success or negative number on failure.
293 *
294 * Sets the requested interface version
295 */
Eric Anholtc153f452007-09-03 12:06:45 +1000296int drm_setversion(struct drm_device *dev, void *data, struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297{
Eric Anholtc153f452007-09-03 12:06:45 +1000298 struct drm_set_version *sv = data;
299 int if_version, retcode = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300
Eric Anholtc153f452007-09-03 12:06:45 +1000301 if (sv->drm_di_major != -1) {
302 if (sv->drm_di_major != DRM_IF_MAJOR ||
303 sv->drm_di_minor < 0 || sv->drm_di_minor > DRM_IF_MINOR) {
304 retcode = -EINVAL;
305 goto done;
306 }
307 if_version = DRM_IF_VERSION(sv->drm_di_major,
308 sv->drm_di_minor);
Dave Airlie3d774612006-08-07 20:07:43 +1000309 dev->if_version = max(if_version, dev->if_version);
Eric Anholtc153f452007-09-03 12:06:45 +1000310 if (sv->drm_di_minor >= 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 /*
312 * Version 1.1 includes tying of DRM to specific device
Benjamin Herrenschmidtc17c2f82010-08-06 13:55:10 +1000313 * Version 1.4 has proper PCI domain support
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 */
Chris Wilson3fb688f2010-08-04 11:09:42 +0100315 retcode = drm_set_busid(dev, file_priv);
316 if (retcode)
317 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 }
319 }
320
Eric Anholtc153f452007-09-03 12:06:45 +1000321 if (sv->drm_dd_major != -1) {
322 if (sv->drm_dd_major != dev->driver->major ||
323 sv->drm_dd_minor < 0 || sv->drm_dd_minor >
324 dev->driver->minor) {
325 retcode = -EINVAL;
326 goto done;
327 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328
329 if (dev->driver->set_version)
Eric Anholtc153f452007-09-03 12:06:45 +1000330 dev->driver->set_version(dev, sv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 }
Eric Anholtc153f452007-09-03 12:06:45 +1000332
333done:
334 sv->drm_di_major = DRM_IF_MAJOR;
335 sv->drm_di_minor = DRM_IF_MINOR;
336 sv->drm_dd_major = dev->driver->major;
337 sv->drm_dd_minor = dev->driver->minor;
338
339 return retcode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340}
341
342/** No-op ioctl. */
Eric Anholtc153f452007-09-03 12:06:45 +1000343int drm_noop(struct drm_device *dev, void *data,
344 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345{
346 DRM_DEBUG("\n");
347 return 0;
348}