drm: kill dead code in drm_mm.c
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / drivers / gpu / drm / drm_ioctl.c
CommitLineData
1da177e4 1/**
b5e89ed5 2 * \file drm_ioctl.c
1da177e4
LT
3 * 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.
b5e89ed5 43 *
1da177e4 44 * \param inode device inode.
6c340eac 45 * \param file_priv DRM file private.
1da177e4
LT
46 * \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 */
c153f45f
EA
52int drm_getunique(struct drm_device *dev, void *data,
53 struct drm_file *file_priv)
1da177e4 54{
c153f45f 55 struct drm_unique *u = data;
7c1c2871 56 struct drm_master *master = file_priv->master;
1da177e4 57
7c1c2871
DA
58 if (u->unique_len >= master->unique_len) {
59 if (copy_to_user(u->unique, master->unique, master->unique_len))
1da177e4
LT
60 return -EFAULT;
61 }
7c1c2871 62 u->unique_len = master->unique_len;
c153f45f 63
1da177e4
LT
64 return 0;
65}
66
67/**
68 * Set the bus id.
b5e89ed5 69 *
1da177e4 70 * \param inode device inode.
6c340eac 71 * \param file_priv DRM file private.
1da177e4
LT
72 * \param cmd command.
73 * \param arg user argument, pointing to a drm_unique structure.
74 * \return zero on success or a negative number on failure.
75 *
76 * Copies the bus id from userspace into drm_device::unique, and verifies that
77 * it matches the device this DRM is attached to (EINVAL otherwise). Deprecated
78 * in interface version 1.1 and will return EBUSY when setversion has requested
79 * version 1.1 or greater.
80 */
c153f45f
EA
81int drm_setunique(struct drm_device *dev, void *data,
82 struct drm_file *file_priv)
1da177e4 83{
c153f45f 84 struct drm_unique *u = data;
7c1c2871 85 struct drm_master *master = file_priv->master;
b5e89ed5 86 int domain, bus, slot, func, ret;
1da177e4 87
7c1c2871 88 if (master->unique_len || master->unique)
b5e89ed5 89 return -EBUSY;
1da177e4 90
c153f45f 91 if (!u->unique_len || u->unique_len > 1024)
b5e89ed5 92 return -EINVAL;
1da177e4 93
7c1c2871 94 master->unique_len = u->unique_len;
1147c9cd 95 master->unique_size = u->unique_len + 1;
9a298b2a 96 master->unique = kmalloc(master->unique_size, GFP_KERNEL);
7c1c2871 97 if (!master->unique)
b5e89ed5 98 return -ENOMEM;
7c1c2871 99 if (copy_from_user(master->unique, u->unique, master->unique_len))
1da177e4
LT
100 return -EFAULT;
101
7c1c2871 102 master->unique[master->unique_len] = '\0';
1da177e4 103
9a298b2a
EA
104 dev->devname = kmalloc(strlen(dev->driver->pci_driver.name) +
105 strlen(master->unique) + 2, GFP_KERNEL);
1da177e4
LT
106 if (!dev->devname)
107 return -ENOMEM;
108
b5e89ed5 109 sprintf(dev->devname, "%s@%s", dev->driver->pci_driver.name,
7c1c2871 110 master->unique);
1da177e4
LT
111
112 /* Return error if the busid submitted doesn't match the device's actual
113 * busid.
114 */
7c1c2871 115 ret = sscanf(master->unique, "PCI:%d:%d:%d", &bus, &slot, &func);
1da177e4 116 if (ret != 3)
20caafa6 117 return -EINVAL;
1da177e4
LT
118 domain = bus >> 8;
119 bus &= 0xff;
b5e89ed5 120
33229601 121 if ((domain != drm_get_pci_domain(dev)) ||
242ef0e1
D
122 (bus != dev->pdev->bus->number) ||
123 (slot != PCI_SLOT(dev->pdev->devfn)) ||
124 (func != PCI_FUNC(dev->pdev->devfn)))
1da177e4
LT
125 return -EINVAL;
126
127 return 0;
128}
129
7c1c2871 130static int drm_set_busid(struct drm_device *dev, struct drm_file *file_priv)
1da177e4 131{
7c1c2871 132 struct drm_master *master = file_priv->master;
fe34765b
DA
133 int len;
134
7c1c2871
DA
135 if (master->unique != NULL)
136 return -EBUSY;
1da177e4 137
7c1c2871 138 master->unique_len = 40;
1147c9cd 139 master->unique_size = master->unique_len;
9a298b2a 140 master->unique = kmalloc(master->unique_size, GFP_KERNEL);
7c1c2871 141 if (master->unique == NULL)
1f27ce6a 142 return -ENOMEM;
1da177e4 143
7c1c2871
DA
144 len = snprintf(master->unique, master->unique_len, "pci:%04x:%02x:%02x.%d",
145 drm_get_pci_domain(dev),
146 dev->pdev->bus->number,
242ef0e1
D
147 PCI_SLOT(dev->pdev->devfn),
148 PCI_FUNC(dev->pdev->devfn));
1147c9cd 149 if (len >= master->unique_len)
7c1c2871 150 DRM_ERROR("buffer overflow");
1147c9cd
VN
151 else
152 master->unique_len = len;
fe34765b 153
9a298b2a
EA
154 dev->devname = kmalloc(strlen(dev->driver->pci_driver.name) +
155 master->unique_len + 2, GFP_KERNEL);
1da177e4 156 if (dev->devname == NULL)
1f27ce6a 157 return -ENOMEM;
1da177e4 158
b5e89ed5 159 sprintf(dev->devname, "%s@%s", dev->driver->pci_driver.name,
7c1c2871 160 master->unique);
1da177e4
LT
161
162 return 0;
163}
164
1da177e4
LT
165/**
166 * Get a mapping information.
167 *
168 * \param inode device inode.
6c340eac 169 * \param file_priv DRM file private.
1da177e4
LT
170 * \param cmd command.
171 * \param arg user argument, pointing to a drm_map structure.
b5e89ed5 172 *
1da177e4
LT
173 * \return zero on success or a negative number on failure.
174 *
175 * Searches for the mapping with the specified offset and copies its information
176 * into userspace
177 */
c153f45f
EA
178int drm_getmap(struct drm_device *dev, void *data,
179 struct drm_file *file_priv)
1da177e4 180{
c153f45f 181 struct drm_map *map = data;
55910517 182 struct drm_map_list *r_list = NULL;
1da177e4 183 struct list_head *list;
b5e89ed5
DA
184 int idx;
185 int i;
1da177e4 186
c153f45f 187 idx = map->offset;
1da177e4 188
30e2fb18 189 mutex_lock(&dev->struct_mutex);
1da177e4 190 if (idx < 0) {
30e2fb18 191 mutex_unlock(&dev->struct_mutex);
1da177e4
LT
192 return -EINVAL;
193 }
194
195 i = 0;
bd1b331f 196 list_for_each(list, &dev->maplist) {
b5e89ed5 197 if (i == idx) {
55910517 198 r_list = list_entry(list, struct drm_map_list, head);
1da177e4
LT
199 break;
200 }
201 i++;
202 }
b5e89ed5 203 if (!r_list || !r_list->map) {
30e2fb18 204 mutex_unlock(&dev->struct_mutex);
1da177e4
LT
205 return -EINVAL;
206 }
207
c153f45f
EA
208 map->offset = r_list->map->offset;
209 map->size = r_list->map->size;
210 map->type = r_list->map->type;
211 map->flags = r_list->map->flags;
212 map->handle = (void *)(unsigned long) r_list->user_token;
213 map->mtrr = r_list->map->mtrr;
30e2fb18 214 mutex_unlock(&dev->struct_mutex);
1da177e4 215
1da177e4
LT
216 return 0;
217}
218
219/**
220 * Get client information.
221 *
222 * \param inode device inode.
6c340eac 223 * \param file_priv DRM file private.
1da177e4
LT
224 * \param cmd command.
225 * \param arg user argument, pointing to a drm_client structure.
b5e89ed5 226 *
1da177e4
LT
227 * \return zero on success or a negative number on failure.
228 *
229 * Searches for the client with the specified index and copies its information
230 * into userspace
231 */
c153f45f
EA
232int drm_getclient(struct drm_device *dev, void *data,
233 struct drm_file *file_priv)
1da177e4 234{
c153f45f 235 struct drm_client *client = data;
84b1fd10 236 struct drm_file *pt;
b5e89ed5
DA
237 int idx;
238 int i;
1da177e4 239
c153f45f 240 idx = client->idx;
30e2fb18 241 mutex_lock(&dev->struct_mutex);
bc5f4523 242
bd1b331f
DA
243 i = 0;
244 list_for_each_entry(pt, &dev->filelist, lhead) {
b018fcda
EA
245 if (i++ >= idx) {
246 client->auth = pt->authenticated;
247 client->pid = pt->pid;
248 client->uid = pt->uid;
249 client->magic = pt->magic;
250 client->iocs = pt->ioctl_count;
251 mutex_unlock(&dev->struct_mutex);
252
253 return 0;
254 }
bd1b331f 255 }
30e2fb18 256 mutex_unlock(&dev->struct_mutex);
1da177e4 257
b018fcda 258 return -EINVAL;
1da177e4
LT
259}
260
b5e89ed5
DA
261/**
262 * Get statistics information.
263 *
1da177e4 264 * \param inode device inode.
6c340eac 265 * \param file_priv DRM file private.
1da177e4
LT
266 * \param cmd command.
267 * \param arg user argument, pointing to a drm_stats structure.
b5e89ed5 268 *
1da177e4
LT
269 * \return zero on success or a negative number on failure.
270 */
c153f45f
EA
271int drm_getstats(struct drm_device *dev, void *data,
272 struct drm_file *file_priv)
1da177e4 273{
c153f45f 274 struct drm_stats *stats = data;
b5e89ed5 275 int i;
1da177e4 276
246a3d18 277 memset(stats, 0, sizeof(*stats));
b5e89ed5 278
30e2fb18 279 mutex_lock(&dev->struct_mutex);
1da177e4
LT
280
281 for (i = 0; i < dev->counters; i++) {
282 if (dev->types[i] == _DRM_STAT_LOCK)
c153f45f 283 stats->data[i].value =
7c1c2871 284 (file_priv->master->lock.hw_lock ? file_priv->master->lock.hw_lock->lock : 0);
b5e89ed5 285 else
c153f45f
EA
286 stats->data[i].value = atomic_read(&dev->counts[i]);
287 stats->data[i].type = dev->types[i];
1da177e4 288 }
b5e89ed5 289
c153f45f 290 stats->count = dev->counters;
1da177e4 291
30e2fb18 292 mutex_unlock(&dev->struct_mutex);
1da177e4 293
1da177e4
LT
294 return 0;
295}
296
297/**
298 * Setversion ioctl.
299 *
300 * \param inode device inode.
6c340eac 301 * \param file_priv DRM file private.
1da177e4
LT
302 * \param cmd command.
303 * \param arg user argument, pointing to a drm_lock structure.
304 * \return zero on success or negative number on failure.
305 *
306 * Sets the requested interface version
307 */
c153f45f 308int drm_setversion(struct drm_device *dev, void *data, struct drm_file *file_priv)
1da177e4 309{
c153f45f
EA
310 struct drm_set_version *sv = data;
311 int if_version, retcode = 0;
312
313 if (sv->drm_di_major != -1) {
314 if (sv->drm_di_major != DRM_IF_MAJOR ||
315 sv->drm_di_minor < 0 || sv->drm_di_minor > DRM_IF_MINOR) {
316 retcode = -EINVAL;
317 goto done;
318 }
319 if_version = DRM_IF_VERSION(sv->drm_di_major,
320 sv->drm_di_minor);
3d77461e 321 dev->if_version = max(if_version, dev->if_version);
c153f45f 322 if (sv->drm_di_minor >= 1) {
1da177e4
LT
323 /*
324 * Version 1.1 includes tying of DRM to specific device
325 */
7c1c2871 326 drm_set_busid(dev, file_priv);
1da177e4
LT
327 }
328 }
329
c153f45f
EA
330 if (sv->drm_dd_major != -1) {
331 if (sv->drm_dd_major != dev->driver->major ||
332 sv->drm_dd_minor < 0 || sv->drm_dd_minor >
333 dev->driver->minor) {
334 retcode = -EINVAL;
335 goto done;
336 }
1da177e4
LT
337
338 if (dev->driver->set_version)
c153f45f 339 dev->driver->set_version(dev, sv);
1da177e4 340 }
c153f45f
EA
341
342done:
343 sv->drm_di_major = DRM_IF_MAJOR;
344 sv->drm_di_minor = DRM_IF_MINOR;
345 sv->drm_dd_major = dev->driver->major;
346 sv->drm_dd_minor = dev->driver->minor;
347
348 return retcode;
1da177e4
LT
349}
350
351/** No-op ioctl. */
c153f45f
EA
352int drm_noop(struct drm_device *dev, void *data,
353 struct drm_file *file_priv)
1da177e4
LT
354{
355 DRM_DEBUG("\n");
356 return 0;
357}