3 * IOCTL processing for DRM
5 * \author Rickard E. (Rik) Faith <faith@valinux.com>
6 * \author Gareth Hughes <gareth@valinux.com>
10 * Created: Fri Jan 8 09:01:26 1999 by faith@valinux.com
12 * Copyright 1999 Precision Insight, Inc., Cedar Park, Texas.
13 * Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California.
14 * All Rights Reserved.
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:
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
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.
39 #include "linux/pci.h"
44 * \param inode device inode.
45 * \param file_priv DRM file private.
47 * \param arg user argument, pointing to a drm_unique structure.
48 * \return zero on success or a negative number on failure.
50 * Copies the bus id from drm_device::unique into user space.
52 int drm_getunique(struct drm_device
*dev
, void *data
,
53 struct drm_file
*file_priv
)
55 struct drm_unique
*u
= data
;
56 struct drm_master
*master
= file_priv
->master
;
58 if (u
->unique_len
>= master
->unique_len
) {
59 if (copy_to_user(u
->unique
, master
->unique
, master
->unique_len
))
62 u
->unique_len
= master
->unique_len
;
68 drm_unset_busid(struct drm_device
*dev
,
69 struct drm_master
*master
)
74 kfree(master
->unique
);
75 master
->unique
= NULL
;
76 master
->unique_len
= 0;
77 master
->unique_size
= 0;
83 * \param inode device inode.
84 * \param file_priv DRM file private.
86 * \param arg user argument, pointing to a drm_unique structure.
87 * \return zero on success or a negative number on failure.
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.
94 int drm_setunique(struct drm_device
*dev
, void *data
,
95 struct drm_file
*file_priv
)
97 struct drm_unique
*u
= data
;
98 struct drm_master
*master
= file_priv
->master
;
101 if (master
->unique_len
|| master
->unique
)
104 if (!u
->unique_len
|| u
->unique_len
> 1024)
107 if (!dev
->driver
->bus
->set_unique
)
110 ret
= dev
->driver
->bus
->set_unique(dev
, master
, u
);
117 drm_unset_busid(dev
, master
);
121 static int drm_set_busid(struct drm_device
*dev
, struct drm_file
*file_priv
)
123 struct drm_master
*master
= file_priv
->master
;
126 if (master
->unique
!= NULL
)
127 drm_unset_busid(dev
, master
);
129 ret
= dev
->driver
->bus
->set_busid(dev
, master
);
134 drm_unset_busid(dev
, master
);
139 * Get a mapping information.
141 * \param inode device inode.
142 * \param file_priv DRM file private.
143 * \param cmd command.
144 * \param arg user argument, pointing to a drm_map structure.
146 * \return zero on success or a negative number on failure.
148 * Searches for the mapping with the specified offset and copies its information
151 int drm_getmap(struct drm_device
*dev
, void *data
,
152 struct drm_file
*file_priv
)
154 struct drm_map
*map
= data
;
155 struct drm_map_list
*r_list
= NULL
;
156 struct list_head
*list
;
162 mutex_lock(&dev
->struct_mutex
);
164 mutex_unlock(&dev
->struct_mutex
);
169 list_for_each(list
, &dev
->maplist
) {
171 r_list
= list_entry(list
, struct drm_map_list
, head
);
176 if (!r_list
|| !r_list
->map
) {
177 mutex_unlock(&dev
->struct_mutex
);
181 map
->offset
= r_list
->map
->offset
;
182 map
->size
= r_list
->map
->size
;
183 map
->type
= r_list
->map
->type
;
184 map
->flags
= r_list
->map
->flags
;
185 map
->handle
= (void *)(unsigned long) r_list
->user_token
;
186 map
->mtrr
= r_list
->map
->mtrr
;
187 mutex_unlock(&dev
->struct_mutex
);
193 * Get client information.
195 * \param inode device inode.
196 * \param file_priv DRM file private.
197 * \param cmd command.
198 * \param arg user argument, pointing to a drm_client structure.
200 * \return zero on success or a negative number on failure.
202 * Searches for the client with the specified index and copies its information
205 int drm_getclient(struct drm_device
*dev
, void *data
,
206 struct drm_file
*file_priv
)
208 struct drm_client
*client
= data
;
214 mutex_lock(&dev
->struct_mutex
);
217 list_for_each_entry(pt
, &dev
->filelist
, lhead
) {
219 client
->auth
= pt
->authenticated
;
220 client
->pid
= pt
->pid
;
221 client
->uid
= pt
->uid
;
222 client
->magic
= pt
->magic
;
223 client
->iocs
= pt
->ioctl_count
;
224 mutex_unlock(&dev
->struct_mutex
);
229 mutex_unlock(&dev
->struct_mutex
);
235 * Get statistics information.
237 * \param inode device inode.
238 * \param file_priv DRM file private.
239 * \param cmd command.
240 * \param arg user argument, pointing to a drm_stats structure.
242 * \return zero on success or a negative number on failure.
244 int drm_getstats(struct drm_device
*dev
, void *data
,
245 struct drm_file
*file_priv
)
247 struct drm_stats
*stats
= data
;
250 memset(stats
, 0, sizeof(*stats
));
252 mutex_lock(&dev
->struct_mutex
);
254 for (i
= 0; i
< dev
->counters
; i
++) {
255 if (dev
->types
[i
] == _DRM_STAT_LOCK
)
256 stats
->data
[i
].value
=
257 (file_priv
->master
->lock
.hw_lock
? file_priv
->master
->lock
.hw_lock
->lock
: 0);
259 stats
->data
[i
].value
= atomic_read(&dev
->counts
[i
]);
260 stats
->data
[i
].type
= dev
->types
[i
];
263 stats
->count
= dev
->counters
;
265 mutex_unlock(&dev
->struct_mutex
);
271 * Get device/driver capabilities
273 int drm_getcap(struct drm_device
*dev
, void *data
, struct drm_file
*file_priv
)
275 struct drm_get_cap
*req
= data
;
278 switch (req
->capability
) {
279 case DRM_CAP_DUMB_BUFFER
:
280 if (dev
->driver
->dumb_create
)
283 case DRM_CAP_VBLANK_HIGH_CRTC
:
295 * \param inode device inode.
296 * \param file_priv DRM file private.
297 * \param cmd command.
298 * \param arg user argument, pointing to a drm_lock structure.
299 * \return zero on success or negative number on failure.
301 * Sets the requested interface version
303 int drm_setversion(struct drm_device
*dev
, void *data
, struct drm_file
*file_priv
)
305 struct drm_set_version
*sv
= data
;
306 int if_version
, retcode
= 0;
308 if (sv
->drm_di_major
!= -1) {
309 if (sv
->drm_di_major
!= DRM_IF_MAJOR
||
310 sv
->drm_di_minor
< 0 || sv
->drm_di_minor
> DRM_IF_MINOR
) {
314 if_version
= DRM_IF_VERSION(sv
->drm_di_major
,
316 dev
->if_version
= max(if_version
, dev
->if_version
);
317 if (sv
->drm_di_minor
>= 1) {
319 * Version 1.1 includes tying of DRM to specific device
320 * Version 1.4 has proper PCI domain support
322 retcode
= drm_set_busid(dev
, file_priv
);
328 if (sv
->drm_dd_major
!= -1) {
329 if (sv
->drm_dd_major
!= dev
->driver
->major
||
330 sv
->drm_dd_minor
< 0 || sv
->drm_dd_minor
>
331 dev
->driver
->minor
) {
336 if (dev
->driver
->set_version
)
337 dev
->driver
->set_version(dev
, sv
);
341 sv
->drm_di_major
= DRM_IF_MAJOR
;
342 sv
->drm_di_minor
= DRM_IF_MINOR
;
343 sv
->drm_dd_major
= dev
->driver
->major
;
344 sv
->drm_dd_minor
= dev
->driver
->minor
;
350 int drm_noop(struct drm_device
*dev
, void *data
,
351 struct drm_file
*file_priv
)