blob: 93ad8a5704d19233c173c91d235b26a1f605e535 [file] [log] [blame]
Thomas Hellstromce65a442006-08-07 22:03:22 +10001/**************************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 *
Thomas Hellstromce65a442006-08-07 22:03:22 +10003 * Copyright 2006 Tungsten Graphics, Inc., Bismarck, ND., USA.
4 * All Rights Reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
6 * Permission is hereby granted, free of charge, to any person obtaining a
Thomas Hellstromce65a442006-08-07 22:03:22 +10007 * copy of this software and associated documentation files (the
8 * "Software"), to deal in the Software without restriction, including
9 * without limitation the rights to use, copy, modify, merge, publish,
10 * distribute, sub license, and/or sell copies of the Software, and to
11 * permit persons to whom the Software is furnished to do so, subject to
12 * the following conditions:
Dave Airlieb5e89ed2005-09-25 14:28:13 +100013 *
Thomas Hellstromce65a442006-08-07 22:03:22 +100014 * The above copyright notice and this permission notice (including the
15 * next paragraph) shall be included in all copies or substantial portions
16 * of the Software.
Dave Airlieb5e89ed2005-09-25 14:28:13 +100017 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070018 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
Thomas Hellstromce65a442006-08-07 22:03:22 +100020 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
21 * THE COPYRIGHT HOLDERS, AUTHORS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM,
22 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
23 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
24 * USE OR OTHER DEALINGS IN THE SOFTWARE.
Dave Airlieb5e89ed2005-09-25 14:28:13 +100025 *
Thomas Hellstromce65a442006-08-07 22:03:22 +100026 *
27 **************************************************************************/
28
29/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070030 * Authors:
Jan Engelhardt96de0e22007-10-19 23:21:04 +020031 * Thomas Hellström <thomas-at-tungstengraphics-dot-com>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032 */
33
David Howells760285e2012-10-02 18:01:07 +010034#include <drm/drmP.h>
35#include <drm/sis_drm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include "sis_drv.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
Thomas Hellstromce65a442006-08-07 22:03:22 +100038#include <video/sisfb.h>
39
Dave Airlieb5e89ed2005-09-25 14:28:13 +100040#define VIDEO_TYPE 0
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#define AGP_TYPE 1
42
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
Daniel Vetterbe2fb9d2011-10-26 22:22:59 +020044struct sis_memblock {
45 struct drm_mm_node mm_node;
46 struct sis_memreq req;
47 struct list_head owner_list;
48};
49
David Howells6bb9e4b2008-07-30 12:29:37 -070050#if defined(CONFIG_FB_SIS) || defined(CONFIG_FB_SIS_MODULE)
Dave Airlieb5e89ed2005-09-25 14:28:13 +100051/* fb management via fb device */
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
Thomas Hellstromce65a442006-08-07 22:03:22 +100053#define SIS_MM_ALIGN_SHIFT 0
54#define SIS_MM_ALIGN_MASK 0
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
David Howells6bb9e4b2008-07-30 12:29:37 -070056#else /* CONFIG_FB_SIS[_MODULE] */
Adrian Bunkfb41e542006-08-16 11:55:18 +100057
58#define SIS_MM_ALIGN_SHIFT 4
Nicolas Kaisera7b98b62010-07-09 16:47:28 +020059#define SIS_MM_ALIGN_MASK ((1 << SIS_MM_ALIGN_SHIFT) - 1)
Adrian Bunkfb41e542006-08-16 11:55:18 +100060
David Howells6bb9e4b2008-07-30 12:29:37 -070061#endif /* CONFIG_FB_SIS[_MODULE] */
Thomas Hellstromce65a442006-08-07 22:03:22 +100062
Eric Anholtc153f452007-09-03 12:06:45 +100063static int sis_fb_init(struct drm_device *dev, void *data, struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -070064{
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 drm_sis_private_t *dev_priv = dev->dev_private;
Eric Anholtc153f452007-09-03 12:06:45 +100066 drm_sis_fb_t *fb = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
Thomas Hellstromce65a442006-08-07 22:03:22 +100068 mutex_lock(&dev->struct_mutex);
Daniel Vetterbe2fb9d2011-10-26 22:22:59 +020069 /* Unconditionally init the drm_mm, even though we don't use it when the
70 * fb sis driver is available - make cleanup easier. */
71 drm_mm_init(&dev_priv->vram_mm, 0, fb->size >> SIS_MM_ALIGN_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
Andrew Mortona1d0fcf2006-08-14 11:35:15 +100073 dev_priv->vram_initialized = 1;
Eric Anholtc153f452007-09-03 12:06:45 +100074 dev_priv->vram_offset = fb->offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
Thomas Hellstromce65a442006-08-07 22:03:22 +100076 mutex_unlock(&dev->struct_mutex);
Daniel Vetter83bc5fd2012-06-24 19:57:24 +020077 DRM_DEBUG("offset = %lu, size = %lu\n", fb->offset, fb->size);
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
79 return 0;
80}
81
Daniel Vetterfdc0b8a2011-10-25 16:32:34 +020082static int sis_drm_alloc(struct drm_device *dev, struct drm_file *file,
Eric Anholtc153f452007-09-03 12:06:45 +100083 void *data, int pool)
Linus Torvalds1da177e2005-04-16 15:20:36 -070084{
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 drm_sis_private_t *dev_priv = dev->dev_private;
Eric Anholtc153f452007-09-03 12:06:45 +100086 drm_sis_mem_t *mem = data;
Daniel Vetter6de8a742011-10-25 18:00:41 +020087 int retval = 0, user_key;
Daniel Vetterbe2fb9d2011-10-26 22:22:59 +020088 struct sis_memblock *item;
Daniel Vetterfdc0b8a2011-10-25 16:32:34 +020089 struct sis_file_private *file_priv = file->driver_priv;
Daniel Vetterbe2fb9d2011-10-26 22:22:59 +020090 unsigned long offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
Thomas Hellstromce65a442006-08-07 22:03:22 +100092 mutex_lock(&dev->struct_mutex);
93
Andrew Mortona1d0fcf2006-08-14 11:35:15 +100094 if (0 == ((pool == 0) ? dev_priv->vram_initialized :
Thomas Hellstromce65a442006-08-07 22:03:22 +100095 dev_priv->agp_initialized)) {
96 DRM_ERROR
97 ("Attempt to allocate from uninitialized memory manager.\n");
Roel Kluin038477a2007-11-05 10:53:18 +100098 mutex_unlock(&dev->struct_mutex);
Eric Anholt20caafa2007-08-25 19:22:43 +100099 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 }
101
Daniel Vetterbe2fb9d2011-10-26 22:22:59 +0200102 item = kzalloc(sizeof(*item), GFP_KERNEL);
Daniel Vetter6de8a742011-10-25 18:00:41 +0200103 if (!item) {
Eric Anholt20caafa2007-08-25 19:22:43 +1000104 retval = -ENOMEM;
Daniel Vetter6de8a742011-10-25 18:00:41 +0200105 goto fail_alloc;
Thomas Hellstromce65a442006-08-07 22:03:22 +1000106 }
Daniel Vetter6de8a742011-10-25 18:00:41 +0200107
Daniel Vetterbe2fb9d2011-10-26 22:22:59 +0200108 mem->size = (mem->size + SIS_MM_ALIGN_MASK) >> SIS_MM_ALIGN_SHIFT;
109 if (pool == AGP_TYPE) {
110 retval = drm_mm_insert_node(&dev_priv->agp_mm,
111 &item->mm_node,
David Herrmann31e5d7c2013-07-27 13:36:27 +0200112 mem->size, 0,
113 DRM_MM_SEARCH_DEFAULT);
Daniel Vetterbe2fb9d2011-10-26 22:22:59 +0200114 offset = item->mm_node.start;
115 } else {
116#if defined(CONFIG_FB_SIS) || defined(CONFIG_FB_SIS_MODULE)
117 item->req.size = mem->size;
118 sis_malloc(&item->req);
119 if (item->req.size == 0)
120 retval = -ENOMEM;
121 offset = item->req.offset;
122#else
123 retval = drm_mm_insert_node(&dev_priv->vram_mm,
124 &item->mm_node,
David Herrmann31e5d7c2013-07-27 13:36:27 +0200125 mem->size, 0,
126 DRM_MM_SEARCH_DEFAULT);
Daniel Vetterbe2fb9d2011-10-26 22:22:59 +0200127 offset = item->mm_node.start;
128#endif
129 }
130 if (retval)
131 goto fail_alloc;
132
Tejun Heoff512352013-02-27 17:04:11 -0800133 retval = idr_alloc(&dev_priv->object_idr, item, 1, 0, GFP_KERNEL);
134 if (retval < 0)
Daniel Vetter6de8a742011-10-25 18:00:41 +0200135 goto fail_idr;
Tejun Heoff512352013-02-27 17:04:11 -0800136 user_key = retval;
Daniel Vetter6de8a742011-10-25 18:00:41 +0200137
138 list_add(&item->owner_list, &file_priv->obj_list);
Daniel Vetterfdc0b8a2011-10-25 16:32:34 +0200139 mutex_unlock(&dev->struct_mutex);
Thomas Hellstromce65a442006-08-07 22:03:22 +1000140
Daniel Vetter6de8a742011-10-25 18:00:41 +0200141 mem->offset = ((pool == 0) ?
142 dev_priv->vram_offset : dev_priv->agp_offset) +
Daniel Vetterbe2fb9d2011-10-26 22:22:59 +0200143 (offset << SIS_MM_ALIGN_SHIFT);
Daniel Vetter6de8a742011-10-25 18:00:41 +0200144 mem->free = user_key;
145 mem->size = mem->size << SIS_MM_ALIGN_SHIFT;
146
147 return 0;
148
149fail_idr:
Daniel Vetterbe2fb9d2011-10-26 22:22:59 +0200150 drm_mm_remove_node(&item->mm_node);
Daniel Vetter6de8a742011-10-25 18:00:41 +0200151fail_alloc:
Daniel Vetterbe2fb9d2011-10-26 22:22:59 +0200152 kfree(item);
Daniel Vetter6de8a742011-10-25 18:00:41 +0200153 mutex_unlock(&dev->struct_mutex);
154
155 mem->offset = 0;
156 mem->size = 0;
157 mem->free = 0;
158
Daniel Vetter83bc5fd2012-06-24 19:57:24 +0200159 DRM_DEBUG("alloc %d, size = %ld, offset = %ld\n", pool, mem->size,
Eric Anholtc153f452007-09-03 12:06:45 +1000160 mem->offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161
162 return retval;
163}
164
Eric Anholtc153f452007-09-03 12:06:45 +1000165static int sis_drm_free(struct drm_device *dev, void *data, struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 drm_sis_private_t *dev_priv = dev->dev_private;
Eric Anholtc153f452007-09-03 12:06:45 +1000168 drm_sis_mem_t *mem = data;
Daniel Vetterbe2fb9d2011-10-26 22:22:59 +0200169 struct sis_memblock *obj;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170
Thomas Hellstromce65a442006-08-07 22:03:22 +1000171 mutex_lock(&dev->struct_mutex);
Daniel Vetter6de8a742011-10-25 18:00:41 +0200172 obj = idr_find(&dev_priv->object_idr, mem->free);
173 if (obj == NULL) {
174 mutex_unlock(&dev->struct_mutex);
175 return -EINVAL;
176 }
177
178 idr_remove(&dev_priv->object_idr, mem->free);
Daniel Vetterbe2fb9d2011-10-26 22:22:59 +0200179 list_del(&obj->owner_list);
180 if (drm_mm_node_allocated(&obj->mm_node))
181 drm_mm_remove_node(&obj->mm_node);
182#if defined(CONFIG_FB_SIS) || defined(CONFIG_FB_SIS_MODULE)
183 else
184 sis_free(obj->req.offset);
185#endif
186 kfree(obj);
Thomas Hellstromce65a442006-08-07 22:03:22 +1000187 mutex_unlock(&dev->struct_mutex);
Eric Anholtc153f452007-09-03 12:06:45 +1000188 DRM_DEBUG("free = 0x%lx\n", mem->free);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189
Daniel Vetterb5215ef2012-01-08 22:42:27 +0100190 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191}
192
Eric Anholtc153f452007-09-03 12:06:45 +1000193static int sis_fb_alloc(struct drm_device *dev, void *data,
194 struct drm_file *file_priv)
Thomas Hellstromce65a442006-08-07 22:03:22 +1000195{
Eric Anholt6c340ea2007-08-25 20:23:09 +1000196 return sis_drm_alloc(dev, file_priv, data, VIDEO_TYPE);
Thomas Hellstromce65a442006-08-07 22:03:22 +1000197}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198
Eric Anholtc153f452007-09-03 12:06:45 +1000199static int sis_ioctl_agp_init(struct drm_device *dev, void *data,
200 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 drm_sis_private_t *dev_priv = dev->dev_private;
Eric Anholtc153f452007-09-03 12:06:45 +1000203 drm_sis_agp_t *agp = data;
Thomas Hellstromce65a442006-08-07 22:03:22 +1000204 dev_priv = dev->dev_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205
Thomas Hellstromce65a442006-08-07 22:03:22 +1000206 mutex_lock(&dev->struct_mutex);
Daniel Vetterbe2fb9d2011-10-26 22:22:59 +0200207 drm_mm_init(&dev_priv->agp_mm, 0, agp->size >> SIS_MM_ALIGN_SHIFT);
Thomas Hellstromce65a442006-08-07 22:03:22 +1000208
Andrew Mortona1d0fcf2006-08-14 11:35:15 +1000209 dev_priv->agp_initialized = 1;
Eric Anholtc153f452007-09-03 12:06:45 +1000210 dev_priv->agp_offset = agp->offset;
Thomas Hellstromce65a442006-08-07 22:03:22 +1000211 mutex_unlock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
Daniel Vetter83bc5fd2012-06-24 19:57:24 +0200213 DRM_DEBUG("offset = %lu, size = %lu\n", agp->offset, agp->size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 return 0;
215}
216
Eric Anholtc153f452007-09-03 12:06:45 +1000217static int sis_ioctl_agp_alloc(struct drm_device *dev, void *data,
218 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219{
Thomas Hellstromce65a442006-08-07 22:03:22 +1000220
Eric Anholt6c340ea2007-08-25 20:23:09 +1000221 return sis_drm_alloc(dev, file_priv, data, AGP_TYPE);
Thomas Hellstromce65a442006-08-07 22:03:22 +1000222}
223
Dave Airlie84b1fd12007-07-11 15:53:27 +1000224static drm_local_map_t *sis_reg_init(struct drm_device *dev)
Thomas Hellstrom7981bf72006-08-08 21:34:46 +1000225{
Dave Airlie55910512007-07-11 16:53:40 +1000226 struct drm_map_list *entry;
Thomas Hellstrom7981bf72006-08-08 21:34:46 +1000227 drm_local_map_t *map;
228
Dave Airliebd1b3312007-05-26 05:01:51 +1000229 list_for_each_entry(entry, &dev->maplist, head) {
Thomas Hellstrom7981bf72006-08-08 21:34:46 +1000230 map = entry->map;
231 if (!map)
232 continue;
Nicolas Kaisera7b98b62010-07-09 16:47:28 +0200233 if (map->type == _DRM_REGISTERS)
Thomas Hellstrom7981bf72006-08-08 21:34:46 +1000234 return map;
Thomas Hellstrom7981bf72006-08-08 21:34:46 +1000235 }
236 return NULL;
237}
238
Dave Airlie84b1fd12007-07-11 15:53:27 +1000239int sis_idle(struct drm_device *dev)
Thomas Hellstrom7981bf72006-08-08 21:34:46 +1000240{
241 drm_sis_private_t *dev_priv = dev->dev_private;
242 uint32_t idle_reg;
243 unsigned long end;
244 int i;
245
246 if (dev_priv->idle_fault)
247 return 0;
248
249 if (dev_priv->mmio == NULL) {
250 dev_priv->mmio = sis_reg_init(dev);
251 if (dev_priv->mmio == NULL) {
252 DRM_ERROR("Could not find register map.\n");
253 return 0;
254 }
255 }
Dave Airliebc5f4522007-11-05 12:50:58 +1000256
Thomas Hellstrom7981bf72006-08-08 21:34:46 +1000257 /*
258 * Implement a device switch here if needed
259 */
260
261 if (dev_priv->chipset != SIS_CHIP_315)
262 return 0;
263
264 /*
265 * Timeout after 3 seconds. We cannot use DRM_WAIT_ON here
266 * because its polling frequency is too low.
267 */
268
Daniel Vetterbfd83032013-12-11 11:34:41 +0100269 end = jiffies + (HZ * 3);
Thomas Hellstrom7981bf72006-08-08 21:34:46 +1000270
Nicolas Kaisera7b98b62010-07-09 16:47:28 +0200271 for (i = 0; i < 4; ++i) {
Thomas Hellstrom7981bf72006-08-08 21:34:46 +1000272 do {
273 idle_reg = SIS_READ(0x85cc);
Nicolas Kaisera7b98b62010-07-09 16:47:28 +0200274 } while (!time_after_eq(jiffies, end) &&
Thomas Hellstrom7981bf72006-08-08 21:34:46 +1000275 ((idle_reg & 0x80000000) != 0x80000000));
276 }
277
278 if (time_after_eq(jiffies, end)) {
279 DRM_ERROR("Graphics engine idle timeout. "
280 "Disabling idle check\n");
Andrew Mortona1d0fcf2006-08-14 11:35:15 +1000281 dev_priv->idle_fault = 1;
Thomas Hellstrom7981bf72006-08-08 21:34:46 +1000282 }
283
284 /*
285 * The caller never sees an error code. It gets trapped
286 * in libdrm.
287 */
288
289 return 0;
290}
291
292
Thomas Hellstromce65a442006-08-07 22:03:22 +1000293void sis_lastclose(struct drm_device *dev)
294{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 drm_sis_private_t *dev_priv = dev->dev_private;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000296
Thomas Hellstromce65a442006-08-07 22:03:22 +1000297 if (!dev_priv)
298 return;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000299
Thomas Hellstromce65a442006-08-07 22:03:22 +1000300 mutex_lock(&dev->struct_mutex);
Daniel Vetterbe2fb9d2011-10-26 22:22:59 +0200301 if (dev_priv->vram_initialized) {
302 drm_mm_takedown(&dev_priv->vram_mm);
303 dev_priv->vram_initialized = 0;
304 }
305 if (dev_priv->agp_initialized) {
306 drm_mm_takedown(&dev_priv->agp_mm);
307 dev_priv->agp_initialized = 0;
308 }
Thomas Hellstrom7981bf72006-08-08 21:34:46 +1000309 dev_priv->mmio = NULL;
Thomas Hellstromce65a442006-08-07 22:03:22 +1000310 mutex_unlock(&dev->struct_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311}
312
Nicolas Kaisera7b98b62010-07-09 16:47:28 +0200313void sis_reclaim_buffers_locked(struct drm_device *dev,
Daniel Vetterfdc0b8a2011-10-25 16:32:34 +0200314 struct drm_file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315{
Daniel Vetterfdc0b8a2011-10-25 16:32:34 +0200316 struct sis_file_private *file_priv = file->driver_priv;
Daniel Vetterbe2fb9d2011-10-26 22:22:59 +0200317 struct sis_memblock *entry, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318
Daniel Vetterea5e4372011-10-25 23:42:59 +0200319 if (!(file->minor->master && file->master->lock.hw_lock))
320 return;
321
David Herrmannbb6d8222014-08-29 12:12:46 +0200322 drm_legacy_idlelock_take(&file->master->lock);
Daniel Vetterea5e4372011-10-25 23:42:59 +0200323
Thomas Hellstromce65a442006-08-07 22:03:22 +1000324 mutex_lock(&dev->struct_mutex);
Daniel Vetterfdc0b8a2011-10-25 16:32:34 +0200325 if (list_empty(&file_priv->obj_list)) {
Thomas Hellstromce65a442006-08-07 22:03:22 +1000326 mutex_unlock(&dev->struct_mutex);
David Herrmannbb6d8222014-08-29 12:12:46 +0200327 drm_legacy_idlelock_release(&file->master->lock);
Daniel Vetterea5e4372011-10-25 23:42:59 +0200328
Thomas Hellstromce65a442006-08-07 22:03:22 +1000329 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 }
331
Daniel Vetterea5e4372011-10-25 23:42:59 +0200332 sis_idle(dev);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000333
Daniel Vetterfdc0b8a2011-10-25 16:32:34 +0200334
335 list_for_each_entry_safe(entry, next, &file_priv->obj_list,
336 owner_list) {
Daniel Vetterbe2fb9d2011-10-26 22:22:59 +0200337 list_del(&entry->owner_list);
338 if (drm_mm_node_allocated(&entry->mm_node))
339 drm_mm_remove_node(&entry->mm_node);
340#if defined(CONFIG_FB_SIS) || defined(CONFIG_FB_SIS_MODULE)
341 else
342 sis_free(entry->req.offset);
343#endif
344 kfree(entry);
Daniel Vetterfdc0b8a2011-10-25 16:32:34 +0200345 }
Thomas Hellstromce65a442006-08-07 22:03:22 +1000346 mutex_unlock(&dev->struct_mutex);
Daniel Vetterea5e4372011-10-25 23:42:59 +0200347
David Herrmannbb6d8222014-08-29 12:12:46 +0200348 drm_legacy_idlelock_release(&file->master->lock);
Daniel Vetterea5e4372011-10-25 23:42:59 +0200349
Thomas Hellstromce65a442006-08-07 22:03:22 +1000350 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351}
352
Rob Clarkbaa70942013-08-02 13:27:49 -0400353const struct drm_ioctl_desc sis_ioctls[] = {
Dave Airlie1b2f1482010-08-14 20:20:34 +1000354 DRM_IOCTL_DEF_DRV(SIS_FB_ALLOC, sis_fb_alloc, DRM_AUTH),
355 DRM_IOCTL_DEF_DRV(SIS_FB_FREE, sis_drm_free, DRM_AUTH),
356 DRM_IOCTL_DEF_DRV(SIS_AGP_INIT, sis_ioctl_agp_init, DRM_AUTH | DRM_MASTER | DRM_ROOT_ONLY),
357 DRM_IOCTL_DEF_DRV(SIS_AGP_ALLOC, sis_ioctl_agp_alloc, DRM_AUTH),
358 DRM_IOCTL_DEF_DRV(SIS_AGP_FREE, sis_drm_free, DRM_AUTH),
359 DRM_IOCTL_DEF_DRV(SIS_FB_INIT, sis_fb_init, DRM_AUTH | DRM_MASTER | DRM_ROOT_ONLY),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360};
361
Damien Lespiauf95aeb12014-06-09 14:39:49 +0100362int sis_max_ioctl = ARRAY_SIZE(sis_ioctls);