Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /** |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 2 | * \file drm_ioctl.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | |
David Howells | 760285e | 2012-10-02 18:01:07 +0100 | [diff] [blame] | 36 | #include <drm/drmP.h> |
| 37 | #include <drm/drm_core.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | |
David Howells | 760285e | 2012-10-02 18:01:07 +0100 | [diff] [blame] | 39 | #include <linux/pci.h> |
| 40 | #include <linux/export.h> |
Andy Lutomirski | 0dd99f1 | 2013-05-13 23:58:48 +0000 | [diff] [blame] | 41 | #ifdef CONFIG_X86 |
| 42 | #include <asm/mtrr.h> |
| 43 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | |
| 45 | /** |
| 46 | * Get the bus id. |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 47 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | * \param inode device inode. |
Eric Anholt | 6c340ea | 2007-08-25 20:23:09 +1000 | [diff] [blame] | 49 | * \param file_priv DRM file private. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | * \param cmd command. |
| 51 | * \param arg user argument, pointing to a drm_unique structure. |
| 52 | * \return zero on success or a negative number on failure. |
| 53 | * |
| 54 | * Copies the bus id from drm_device::unique into user space. |
| 55 | */ |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 56 | int drm_getunique(struct drm_device *dev, void *data, |
| 57 | struct drm_file *file_priv) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | { |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 59 | struct drm_unique *u = data; |
Dave Airlie | 7c1c287 | 2008-11-28 14:22:24 +1000 | [diff] [blame] | 60 | struct drm_master *master = file_priv->master; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | |
Dave Airlie | 7c1c287 | 2008-11-28 14:22:24 +1000 | [diff] [blame] | 62 | if (u->unique_len >= master->unique_len) { |
| 63 | if (copy_to_user(u->unique, master->unique, master->unique_len)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 | return -EFAULT; |
| 65 | } |
Dave Airlie | 7c1c287 | 2008-11-28 14:22:24 +1000 | [diff] [blame] | 66 | u->unique_len = master->unique_len; |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 67 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | return 0; |
| 69 | } |
| 70 | |
Chris Wilson | 3fb688f | 2010-08-04 11:09:42 +0100 | [diff] [blame] | 71 | static void |
| 72 | drm_unset_busid(struct drm_device *dev, |
| 73 | struct drm_master *master) |
| 74 | { |
Chris Wilson | 3fb688f | 2010-08-04 11:09:42 +0100 | [diff] [blame] | 75 | kfree(master->unique); |
| 76 | master->unique = NULL; |
| 77 | master->unique_len = 0; |
| 78 | master->unique_size = 0; |
| 79 | } |
| 80 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 81 | /** |
| 82 | * Set the bus id. |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 83 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 84 | * \param inode device inode. |
Eric Anholt | 6c340ea | 2007-08-25 20:23:09 +1000 | [diff] [blame] | 85 | * \param file_priv DRM file private. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 86 | * \param cmd command. |
| 87 | * \param arg user argument, pointing to a drm_unique structure. |
| 88 | * \return zero on success or a negative number on failure. |
| 89 | * |
| 90 | * Copies the bus id from userspace into drm_device::unique, and verifies that |
| 91 | * it matches the device this DRM is attached to (EINVAL otherwise). Deprecated |
| 92 | * in interface version 1.1 and will return EBUSY when setversion has requested |
Daniel Vetter | 53bf2a2 | 2013-11-03 21:47:18 +0100 | [diff] [blame] | 93 | * version 1.1 or greater. Also note that KMS is all version 1.1 and later and |
| 94 | * UMS was only ever supported on pci devices. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 | */ |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 96 | int drm_setunique(struct drm_device *dev, void *data, |
| 97 | struct drm_file *file_priv) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 98 | { |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 99 | struct drm_unique *u = data; |
Dave Airlie | 7c1c287 | 2008-11-28 14:22:24 +1000 | [diff] [blame] | 100 | struct drm_master *master = file_priv->master; |
Dave Airlie | 8410ea3 | 2010-12-15 03:16:38 +1000 | [diff] [blame] | 101 | int ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 102 | |
Dave Airlie | 7c1c287 | 2008-11-28 14:22:24 +1000 | [diff] [blame] | 103 | if (master->unique_len || master->unique) |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 104 | return -EBUSY; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 105 | |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 106 | if (!u->unique_len || u->unique_len > 1024) |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 107 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 108 | |
Daniel Vetter | 53bf2a2 | 2013-11-03 21:47:18 +0100 | [diff] [blame] | 109 | if (drm_core_check_feature(dev, DRIVER_MODESET)) |
| 110 | return 0; |
| 111 | |
| 112 | if (WARN_ON(!dev->pdev)) |
Dave Airlie | 8410ea3 | 2010-12-15 03:16:38 +1000 | [diff] [blame] | 113 | return -EINVAL; |
| 114 | |
Daniel Vetter | 53bf2a2 | 2013-11-03 21:47:18 +0100 | [diff] [blame] | 115 | ret = drm_pci_set_unique(dev, master, u); |
Dave Airlie | 8410ea3 | 2010-12-15 03:16:38 +1000 | [diff] [blame] | 116 | if (ret) |
Chris Wilson | 3fb688f | 2010-08-04 11:09:42 +0100 | [diff] [blame] | 117 | goto err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | |
| 119 | return 0; |
Chris Wilson | 3fb688f | 2010-08-04 11:09:42 +0100 | [diff] [blame] | 120 | |
| 121 | err: |
| 122 | drm_unset_busid(dev, master); |
| 123 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 124 | } |
| 125 | |
Dave Airlie | 7c1c287 | 2008-11-28 14:22:24 +1000 | [diff] [blame] | 126 | static int drm_set_busid(struct drm_device *dev, struct drm_file *file_priv) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 127 | { |
Dave Airlie | 7c1c287 | 2008-11-28 14:22:24 +1000 | [diff] [blame] | 128 | struct drm_master *master = file_priv->master; |
Dave Airlie | 8410ea3 | 2010-12-15 03:16:38 +1000 | [diff] [blame] | 129 | int ret; |
Chris Wilson | 3fb688f | 2010-08-04 11:09:42 +0100 | [diff] [blame] | 130 | |
| 131 | if (master->unique != NULL) |
| 132 | drm_unset_busid(dev, master); |
Dave Airlie | fe34765 | 2006-01-02 21:19:39 +1100 | [diff] [blame] | 133 | |
Thierry Reding | ca8e2ad | 2014-04-11 15:23:00 +0200 | [diff] [blame^] | 134 | if (dev->driver->bus && dev->driver->bus->set_busid) { |
| 135 | ret = dev->driver->bus->set_busid(dev, master); |
| 136 | if (ret) { |
| 137 | drm_unset_busid(dev, master); |
| 138 | return ret; |
| 139 | } |
| 140 | } else { |
| 141 | if (WARN(dev->unique == NULL, |
| 142 | "No drm_bus.set_busid() implementation provided by " |
| 143 | "%ps. Use drm_dev_set_unique() to set the unique " |
| 144 | "name explicitly.", dev->driver)) |
| 145 | return -EINVAL; |
| 146 | |
| 147 | master->unique = kstrdup(dev->unique, GFP_KERNEL); |
| 148 | if (master->unique) |
| 149 | master->unique_len = strlen(dev->unique); |
| 150 | } |
| 151 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 152 | return 0; |
| 153 | } |
| 154 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 155 | /** |
| 156 | * Get a mapping information. |
| 157 | * |
| 158 | * \param inode device inode. |
Eric Anholt | 6c340ea | 2007-08-25 20:23:09 +1000 | [diff] [blame] | 159 | * \param file_priv DRM file private. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 160 | * \param cmd command. |
| 161 | * \param arg user argument, pointing to a drm_map structure. |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 162 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 163 | * \return zero on success or a negative number on failure. |
| 164 | * |
| 165 | * Searches for the mapping with the specified offset and copies its information |
| 166 | * into userspace |
| 167 | */ |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 168 | int drm_getmap(struct drm_device *dev, void *data, |
| 169 | struct drm_file *file_priv) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 170 | { |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 171 | struct drm_map *map = data; |
Dave Airlie | 5591051 | 2007-07-11 16:53:40 +1000 | [diff] [blame] | 172 | struct drm_map_list *r_list = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 173 | struct list_head *list; |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 174 | int idx; |
| 175 | int i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 176 | |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 177 | idx = map->offset; |
Ilija Hadzic | 09b4ea4 | 2011-10-28 17:43:28 -0400 | [diff] [blame] | 178 | if (idx < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 179 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 180 | |
| 181 | i = 0; |
Ilija Hadzic | 09b4ea4 | 2011-10-28 17:43:28 -0400 | [diff] [blame] | 182 | mutex_lock(&dev->struct_mutex); |
Dave Airlie | bd1b331 | 2007-05-26 05:01:51 +1000 | [diff] [blame] | 183 | list_for_each(list, &dev->maplist) { |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 184 | if (i == idx) { |
Dave Airlie | 5591051 | 2007-07-11 16:53:40 +1000 | [diff] [blame] | 185 | r_list = list_entry(list, struct drm_map_list, head); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 186 | break; |
| 187 | } |
| 188 | i++; |
| 189 | } |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 190 | if (!r_list || !r_list->map) { |
Dave Airlie | 30e2fb1 | 2006-02-02 19:37:46 +1100 | [diff] [blame] | 191 | mutex_unlock(&dev->struct_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 192 | return -EINVAL; |
| 193 | } |
| 194 | |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 195 | map->offset = r_list->map->offset; |
| 196 | map->size = r_list->map->size; |
| 197 | map->type = r_list->map->type; |
| 198 | map->flags = r_list->map->flags; |
| 199 | map->handle = (void *)(unsigned long) r_list->user_token; |
Andy Lutomirski | 0dd99f1 | 2013-05-13 23:58:48 +0000 | [diff] [blame] | 200 | |
| 201 | #ifdef CONFIG_X86 |
| 202 | /* |
| 203 | * There appears to be exactly one user of the mtrr index: dritest. |
| 204 | * It's easy enough to keep it working on non-PAT systems. |
| 205 | */ |
| 206 | map->mtrr = phys_wc_to_mtrr_index(r_list->map->mtrr); |
| 207 | #else |
| 208 | map->mtrr = -1; |
| 209 | #endif |
| 210 | |
Dave Airlie | 30e2fb1 | 2006-02-02 19:37:46 +1100 | [diff] [blame] | 211 | mutex_unlock(&dev->struct_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 212 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 213 | return 0; |
| 214 | } |
| 215 | |
| 216 | /** |
| 217 | * Get client information. |
| 218 | * |
| 219 | * \param inode device inode. |
Eric Anholt | 6c340ea | 2007-08-25 20:23:09 +1000 | [diff] [blame] | 220 | * \param file_priv DRM file private. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 221 | * \param cmd command. |
| 222 | * \param arg user argument, pointing to a drm_client structure. |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 223 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 224 | * \return zero on success or a negative number on failure. |
| 225 | * |
| 226 | * Searches for the client with the specified index and copies its information |
| 227 | * into userspace |
| 228 | */ |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 229 | int drm_getclient(struct drm_device *dev, void *data, |
| 230 | struct drm_file *file_priv) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 231 | { |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 232 | struct drm_client *client = data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 233 | |
Daniel Vetter | 719524d | 2013-08-08 15:41:31 +0200 | [diff] [blame] | 234 | /* |
| 235 | * Hollowed-out getclient ioctl to keep some dead old drm tests/tools |
| 236 | * not breaking completely. Userspace tools stop enumerating one they |
| 237 | * get -EINVAL, hence this is the return value we need to hand back for |
| 238 | * no clients tracked. |
| 239 | * |
| 240 | * Unfortunately some clients (*cough* libva *cough*) use this in a fun |
| 241 | * attempt to figure out whether they're authenticated or not. Since |
| 242 | * that's the only thing they care about, give it to the directly |
| 243 | * instead of walking one giant list. |
| 244 | */ |
| 245 | if (client->idx == 0) { |
| 246 | client->auth = file_priv->authenticated; |
| 247 | client->pid = pid_vnr(file_priv->pid); |
| 248 | client->uid = from_kuid_munged(current_user_ns(), |
| 249 | file_priv->uid); |
| 250 | client->magic = 0; |
| 251 | client->iocs = 0; |
Ilija Hadzic | 09b4ea4 | 2011-10-28 17:43:28 -0400 | [diff] [blame] | 252 | |
Daniel Vetter | 719524d | 2013-08-08 15:41:31 +0200 | [diff] [blame] | 253 | return 0; |
| 254 | } else { |
| 255 | return -EINVAL; |
Eric Anholt | b018fcd | 2007-11-22 18:46:54 +1000 | [diff] [blame] | 256 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 257 | } |
| 258 | |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 259 | /** |
| 260 | * Get statistics information. |
| 261 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 262 | * \param inode device inode. |
Eric Anholt | 6c340ea | 2007-08-25 20:23:09 +1000 | [diff] [blame] | 263 | * \param file_priv DRM file private. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 264 | * \param cmd command. |
| 265 | * \param arg user argument, pointing to a drm_stats structure. |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 266 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 267 | * \return zero on success or a negative number on failure. |
| 268 | */ |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 269 | int drm_getstats(struct drm_device *dev, void *data, |
| 270 | struct drm_file *file_priv) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 271 | { |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 272 | struct drm_stats *stats = data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 273 | |
Daniel Vetter | d79cdc8 | 2013-08-08 15:41:32 +0200 | [diff] [blame] | 274 | /* Clear stats to prevent userspace from eating its stack garbage. */ |
Li Zefan | 246a3d1 | 2007-11-05 12:53:09 +1000 | [diff] [blame] | 275 | memset(stats, 0, sizeof(*stats)); |
Dave Airlie | b5e89ed | 2005-09-25 14:28:13 +1000 | [diff] [blame] | 276 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 277 | return 0; |
| 278 | } |
| 279 | |
| 280 | /** |
Ben Skeggs | 9f35421 | 2011-02-21 11:17:35 +1000 | [diff] [blame] | 281 | * Get device/driver capabilities |
| 282 | */ |
| 283 | int drm_getcap(struct drm_device *dev, void *data, struct drm_file *file_priv) |
| 284 | { |
| 285 | struct drm_get_cap *req = data; |
| 286 | |
| 287 | req->value = 0; |
Dave Airlie | e73f88a | 2011-03-04 14:50:28 +1000 | [diff] [blame] | 288 | switch (req->capability) { |
| 289 | case DRM_CAP_DUMB_BUFFER: |
| 290 | if (dev->driver->dumb_create) |
| 291 | req->value = 1; |
| 292 | break; |
Dave Airlie | 51eab41 | 2011-03-24 20:54:35 +1000 | [diff] [blame] | 293 | case DRM_CAP_VBLANK_HIGH_CRTC: |
Ilija Hadzic | 19b01b5 | 2011-03-18 16:58:04 -0500 | [diff] [blame] | 294 | req->value = 1; |
| 295 | break; |
Dave Airlie | 019d96c | 2011-09-29 16:20:42 +0100 | [diff] [blame] | 296 | case DRM_CAP_DUMB_PREFERRED_DEPTH: |
| 297 | req->value = dev->mode_config.preferred_depth; |
| 298 | break; |
| 299 | case DRM_CAP_DUMB_PREFER_SHADOW: |
| 300 | req->value = dev->mode_config.prefer_shadow; |
| 301 | break; |
Dave Airlie | 4271a40 | 2012-04-02 14:11:50 +0100 | [diff] [blame] | 302 | case DRM_CAP_PRIME: |
| 303 | req->value |= dev->driver->prime_fd_to_handle ? DRM_PRIME_CAP_IMPORT : 0; |
| 304 | req->value |= dev->driver->prime_handle_to_fd ? DRM_PRIME_CAP_EXPORT : 0; |
| 305 | break; |
Imre Deak | c61eef7 | 2012-10-23 18:53:26 +0000 | [diff] [blame] | 306 | case DRM_CAP_TIMESTAMP_MONOTONIC: |
| 307 | req->value = drm_timestamp_monotonic; |
| 308 | break; |
Keith Packard | 62f2104 | 2013-07-22 18:50:00 -0700 | [diff] [blame] | 309 | case DRM_CAP_ASYNC_PAGE_FLIP: |
| 310 | req->value = dev->mode_config.async_page_flip; |
| 311 | break; |
Alex Deucher | 8716ed4 | 2014-02-12 12:48:23 -0500 | [diff] [blame] | 312 | case DRM_CAP_CURSOR_WIDTH: |
| 313 | if (dev->mode_config.cursor_width) |
| 314 | req->value = dev->mode_config.cursor_width; |
| 315 | else |
| 316 | req->value = 64; |
| 317 | break; |
| 318 | case DRM_CAP_CURSOR_HEIGHT: |
| 319 | if (dev->mode_config.cursor_height) |
| 320 | req->value = dev->mode_config.cursor_height; |
| 321 | else |
| 322 | req->value = 64; |
| 323 | break; |
Dave Airlie | e73f88a | 2011-03-04 14:50:28 +1000 | [diff] [blame] | 324 | default: |
| 325 | return -EINVAL; |
| 326 | } |
Ben Skeggs | 9f35421 | 2011-02-21 11:17:35 +1000 | [diff] [blame] | 327 | return 0; |
| 328 | } |
| 329 | |
| 330 | /** |
Damien Lespiau | 1c0814f | 2013-09-25 16:45:20 +0100 | [diff] [blame] | 331 | * Set device/driver capabilities |
| 332 | */ |
| 333 | int |
| 334 | drm_setclientcap(struct drm_device *dev, void *data, struct drm_file *file_priv) |
| 335 | { |
Damien Lespiau | 61d8e32 | 2013-09-25 16:45:22 +0100 | [diff] [blame] | 336 | struct drm_set_client_cap *req = data; |
| 337 | |
| 338 | switch (req->capability) { |
| 339 | case DRM_CLIENT_CAP_STEREO_3D: |
| 340 | if (req->value > 1) |
| 341 | return -EINVAL; |
| 342 | file_priv->stereo_allowed = req->value; |
| 343 | break; |
Matt Roper | 681e7ec | 2014-04-01 15:22:42 -0700 | [diff] [blame] | 344 | case DRM_CLIENT_CAP_UNIVERSAL_PLANES: |
| 345 | if (!drm_universal_planes) |
| 346 | return -EINVAL; |
| 347 | if (req->value > 1) |
| 348 | return -EINVAL; |
| 349 | file_priv->universal_planes = req->value; |
| 350 | break; |
Damien Lespiau | 61d8e32 | 2013-09-25 16:45:22 +0100 | [diff] [blame] | 351 | default: |
| 352 | return -EINVAL; |
| 353 | } |
| 354 | |
| 355 | return 0; |
Damien Lespiau | 1c0814f | 2013-09-25 16:45:20 +0100 | [diff] [blame] | 356 | } |
| 357 | |
| 358 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 359 | * Setversion ioctl. |
| 360 | * |
| 361 | * \param inode device inode. |
Eric Anholt | 6c340ea | 2007-08-25 20:23:09 +1000 | [diff] [blame] | 362 | * \param file_priv DRM file private. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 363 | * \param cmd command. |
| 364 | * \param arg user argument, pointing to a drm_lock structure. |
| 365 | * \return zero on success or negative number on failure. |
| 366 | * |
| 367 | * Sets the requested interface version |
| 368 | */ |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 369 | int drm_setversion(struct drm_device *dev, void *data, struct drm_file *file_priv) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 370 | { |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 371 | struct drm_set_version *sv = data; |
| 372 | int if_version, retcode = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 373 | |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 374 | if (sv->drm_di_major != -1) { |
| 375 | if (sv->drm_di_major != DRM_IF_MAJOR || |
| 376 | sv->drm_di_minor < 0 || sv->drm_di_minor > DRM_IF_MINOR) { |
| 377 | retcode = -EINVAL; |
| 378 | goto done; |
| 379 | } |
| 380 | if_version = DRM_IF_VERSION(sv->drm_di_major, |
| 381 | sv->drm_di_minor); |
Dave Airlie | 3d77461 | 2006-08-07 20:07:43 +1000 | [diff] [blame] | 382 | dev->if_version = max(if_version, dev->if_version); |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 383 | if (sv->drm_di_minor >= 1) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 384 | /* |
| 385 | * Version 1.1 includes tying of DRM to specific device |
Benjamin Herrenschmidt | c17c2f8 | 2010-08-06 13:55:10 +1000 | [diff] [blame] | 386 | * Version 1.4 has proper PCI domain support |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 387 | */ |
Chris Wilson | 3fb688f | 2010-08-04 11:09:42 +0100 | [diff] [blame] | 388 | retcode = drm_set_busid(dev, file_priv); |
| 389 | if (retcode) |
| 390 | goto done; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 391 | } |
| 392 | } |
| 393 | |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 394 | if (sv->drm_dd_major != -1) { |
| 395 | if (sv->drm_dd_major != dev->driver->major || |
| 396 | sv->drm_dd_minor < 0 || sv->drm_dd_minor > |
| 397 | dev->driver->minor) { |
| 398 | retcode = -EINVAL; |
| 399 | goto done; |
| 400 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 401 | } |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 402 | |
| 403 | done: |
| 404 | sv->drm_di_major = DRM_IF_MAJOR; |
| 405 | sv->drm_di_minor = DRM_IF_MINOR; |
| 406 | sv->drm_dd_major = dev->driver->major; |
| 407 | sv->drm_dd_minor = dev->driver->minor; |
| 408 | |
| 409 | return retcode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 410 | } |
| 411 | |
| 412 | /** No-op ioctl. */ |
Eric Anholt | c153f45 | 2007-09-03 12:06:45 +1000 | [diff] [blame] | 413 | int drm_noop(struct drm_device *dev, void *data, |
| 414 | struct drm_file *file_priv) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 415 | { |
| 416 | DRM_DEBUG("\n"); |
| 417 | return 0; |
| 418 | } |
Daniel Vetter | b2c606f | 2012-01-17 12:50:12 +0100 | [diff] [blame] | 419 | EXPORT_SYMBOL(drm_noop); |