pandora: defconfig: update
[pandora-kernel.git] / drivers / gpu / drm / drm_stub.c
1 /**
2  * \file drm_stub.h
3  * Stub support
4  *
5  * \author Rickard E. (Rik) Faith <faith@valinux.com>
6  */
7
8 /*
9  * Created: Fri Jan 19 10:48:35 2001 by faith@acm.org
10  *
11  * Copyright 2001 VA Linux Systems, Inc., Sunnyvale, California.
12  * All Rights Reserved.
13  *
14  * Permission is hereby granted, free of charge, to any person obtaining a
15  * copy of this software and associated documentation files (the "Software"),
16  * to deal in the Software without restriction, including without limitation
17  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
18  * and/or sell copies of the Software, and to permit persons to whom the
19  * Software is furnished to do so, subject to the following conditions:
20  *
21  * The above copyright notice and this permission notice (including the next
22  * paragraph) shall be included in all copies or substantial portions of the
23  * Software.
24  *
25  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
26  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
27  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
28  * PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
29  * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
30  * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
31  * DEALINGS IN THE SOFTWARE.
32  */
33
34 #include <linux/module.h>
35 #include <linux/moduleparam.h>
36 #include <linux/slab.h>
37 #include "drmP.h"
38 #include "drm_core.h"
39
40 unsigned int drm_debug = 0;     /* 1 to enable debug output */
41 EXPORT_SYMBOL(drm_debug);
42
43 unsigned int drm_vblank_offdelay = 5000;    /* Default to 5000 msecs. */
44 EXPORT_SYMBOL(drm_vblank_offdelay);
45
46 unsigned int drm_timestamp_precision = 20;  /* Default to 20 usecs. */
47 EXPORT_SYMBOL(drm_timestamp_precision);
48
49 MODULE_AUTHOR(CORE_AUTHOR);
50 MODULE_DESCRIPTION(CORE_DESC);
51 MODULE_LICENSE("GPL and additional rights");
52 MODULE_PARM_DESC(debug, "Enable debug output");
53 MODULE_PARM_DESC(vblankoffdelay, "Delay until vblank irq auto-disable [msecs]");
54 MODULE_PARM_DESC(timestamp_precision_usec, "Max. error on timestamps [usecs]");
55
56 module_param_named(debug, drm_debug, int, 0600);
57 module_param_named(vblankoffdelay, drm_vblank_offdelay, int, 0600);
58 module_param_named(timestamp_precision_usec, drm_timestamp_precision, int, 0600);
59
60 struct idr drm_minors_idr;
61
62 struct class *drm_class;
63 struct proc_dir_entry *drm_proc_root;
64 struct dentry *drm_debugfs_root;
65
66 int drm_err(const char *func, const char *format, ...)
67 {
68         struct va_format vaf;
69         va_list args;
70         int r;
71
72         va_start(args, format);
73
74         vaf.fmt = format;
75         vaf.va = &args;
76
77         r = printk(KERN_ERR "[" DRM_NAME ":%s] *ERROR* %pV", func, &vaf);
78
79         va_end(args);
80
81         return r;
82 }
83 EXPORT_SYMBOL(drm_err);
84
85 void drm_ut_debug_printk(unsigned int request_level,
86                          const char *prefix,
87                          const char *function_name,
88                          const char *format, ...)
89 {
90         va_list args;
91
92         if (drm_debug & request_level) {
93                 if (function_name)
94                         printk(KERN_DEBUG "[%s:%s], ", prefix, function_name);
95                 va_start(args, format);
96                 vprintk(format, args);
97                 va_end(args);
98         }
99 }
100 EXPORT_SYMBOL(drm_ut_debug_printk);
101
102 static int drm_minor_get_id(struct drm_device *dev, int type)
103 {
104         int new_id;
105         int ret;
106         int base = 0, limit = 63;
107
108         if (type == DRM_MINOR_CONTROL) {
109                 base += 64;
110                 limit = base + 127;
111         } else if (type == DRM_MINOR_RENDER) {
112                 base += 128;
113                 limit = base + 255;
114         }
115
116 again:
117         if (idr_pre_get(&drm_minors_idr, GFP_KERNEL) == 0) {
118                 DRM_ERROR("Out of memory expanding drawable idr\n");
119                 return -ENOMEM;
120         }
121         mutex_lock(&dev->struct_mutex);
122         ret = idr_get_new_above(&drm_minors_idr, NULL,
123                                 base, &new_id);
124         mutex_unlock(&dev->struct_mutex);
125         if (ret == -EAGAIN) {
126                 goto again;
127         } else if (ret) {
128                 return ret;
129         }
130
131         if (new_id >= limit) {
132                 idr_remove(&drm_minors_idr, new_id);
133                 return -EINVAL;
134         }
135         return new_id;
136 }
137
138 struct drm_master *drm_master_create(struct drm_minor *minor)
139 {
140         struct drm_master *master;
141
142         master = kzalloc(sizeof(*master), GFP_KERNEL);
143         if (!master)
144                 return NULL;
145
146         kref_init(&master->refcount);
147         spin_lock_init(&master->lock.spinlock);
148         init_waitqueue_head(&master->lock.lock_queue);
149         drm_ht_create(&master->magiclist, DRM_MAGIC_HASH_ORDER);
150         INIT_LIST_HEAD(&master->magicfree);
151         master->minor = minor;
152
153         list_add_tail(&master->head, &minor->master_list);
154
155         return master;
156 }
157
158 struct drm_master *drm_master_get(struct drm_master *master)
159 {
160         kref_get(&master->refcount);
161         return master;
162 }
163 EXPORT_SYMBOL(drm_master_get);
164
165 static void drm_master_destroy(struct kref *kref)
166 {
167         struct drm_master *master = container_of(kref, struct drm_master, refcount);
168         struct drm_magic_entry *pt, *next;
169         struct drm_device *dev = master->minor->dev;
170         struct drm_map_list *r_list, *list_temp;
171
172         list_del(&master->head);
173
174         if (dev->driver->master_destroy)
175                 dev->driver->master_destroy(dev, master);
176
177         list_for_each_entry_safe(r_list, list_temp, &dev->maplist, head) {
178                 if (r_list->master == master) {
179                         drm_rmmap_locked(dev, r_list->map);
180                         r_list = NULL;
181                 }
182         }
183
184         if (master->unique) {
185                 kfree(master->unique);
186                 master->unique = NULL;
187                 master->unique_len = 0;
188         }
189
190         kfree(dev->devname);
191         dev->devname = NULL;
192
193         list_for_each_entry_safe(pt, next, &master->magicfree, head) {
194                 list_del(&pt->head);
195                 drm_ht_remove_item(&master->magiclist, &pt->hash_item);
196                 kfree(pt);
197         }
198
199         drm_ht_remove(&master->magiclist);
200
201         kfree(master);
202 }
203
204 void drm_master_put(struct drm_master **master)
205 {
206         kref_put(&(*master)->refcount, drm_master_destroy);
207         *master = NULL;
208 }
209 EXPORT_SYMBOL(drm_master_put);
210
211 int drm_setmaster_ioctl(struct drm_device *dev, void *data,
212                         struct drm_file *file_priv)
213 {
214         int ret = 0;
215
216         if (file_priv->is_master)
217                 return 0;
218
219         if (file_priv->minor->master && file_priv->minor->master != file_priv->master)
220                 return -EINVAL;
221
222         if (!file_priv->master)
223                 return -EINVAL;
224
225         if (!file_priv->minor->master &&
226             file_priv->minor->master != file_priv->master) {
227                 mutex_lock(&dev->struct_mutex);
228                 if (!file_priv->allowed_master) {
229                         ret = drm_new_set_master(dev, file_priv);
230                         goto out_unlock;
231                 }
232                 file_priv->minor->master = drm_master_get(file_priv->master);
233                 file_priv->is_master = 1;
234                 if (dev->driver->master_set) {
235                         ret = dev->driver->master_set(dev, file_priv, false);
236                         if (unlikely(ret != 0)) {
237                                 file_priv->is_master = 0;
238                                 drm_master_put(&file_priv->minor->master);
239                         }
240                 }
241         out_unlock:
242                 mutex_unlock(&dev->struct_mutex);
243         }
244
245         return ret;
246 }
247
248 int drm_dropmaster_ioctl(struct drm_device *dev, void *data,
249                          struct drm_file *file_priv)
250 {
251         if (!file_priv->is_master)
252                 return -EINVAL;
253
254         if (!file_priv->minor->master)
255                 return -EINVAL;
256
257         mutex_lock(&dev->struct_mutex);
258         if (dev->driver->master_drop)
259                 dev->driver->master_drop(dev, file_priv, false);
260         drm_master_put(&file_priv->minor->master);
261         file_priv->is_master = 0;
262         mutex_unlock(&dev->struct_mutex);
263         return 0;
264 }
265
266 int drm_fill_in_dev(struct drm_device *dev,
267                            const struct pci_device_id *ent,
268                            struct drm_driver *driver)
269 {
270         int retcode;
271
272         INIT_LIST_HEAD(&dev->filelist);
273         INIT_LIST_HEAD(&dev->ctxlist);
274         INIT_LIST_HEAD(&dev->vmalist);
275         INIT_LIST_HEAD(&dev->maplist);
276         INIT_LIST_HEAD(&dev->vblank_event_list);
277
278         spin_lock_init(&dev->count_lock);
279         spin_lock_init(&dev->event_lock);
280         mutex_init(&dev->struct_mutex);
281         mutex_init(&dev->ctxlist_mutex);
282
283         if (drm_ht_create(&dev->map_hash, 12)) {
284                 return -ENOMEM;
285         }
286
287         /* the DRM has 6 basic counters */
288         dev->counters = 6;
289         dev->types[0] = _DRM_STAT_LOCK;
290         dev->types[1] = _DRM_STAT_OPENS;
291         dev->types[2] = _DRM_STAT_CLOSES;
292         dev->types[3] = _DRM_STAT_IOCTLS;
293         dev->types[4] = _DRM_STAT_LOCKS;
294         dev->types[5] = _DRM_STAT_UNLOCKS;
295
296         dev->driver = driver;
297
298         if (dev->driver->bus->agp_init) {
299                 retcode = dev->driver->bus->agp_init(dev);
300                 if (retcode)
301                         goto error_out_unreg;
302         }
303
304
305
306         retcode = drm_ctxbitmap_init(dev);
307         if (retcode) {
308                 DRM_ERROR("Cannot allocate memory for context bitmap.\n");
309                 goto error_out_unreg;
310         }
311
312         if (driver->driver_features & DRIVER_GEM) {
313                 retcode = drm_gem_init(dev);
314                 if (retcode) {
315                         DRM_ERROR("Cannot initialize graphics execution "
316                                   "manager (GEM)\n");
317                         goto error_out_unreg;
318                 }
319         }
320
321         return 0;
322
323       error_out_unreg:
324         drm_lastclose(dev);
325         return retcode;
326 }
327
328
329 /**
330  * Get a secondary minor number.
331  *
332  * \param dev device data structure
333  * \param sec-minor structure to hold the assigned minor
334  * \return negative number on failure.
335  *
336  * Search an empty entry and initialize it to the given parameters, and
337  * create the proc init entry via proc_init(). This routines assigns
338  * minor numbers to secondary heads of multi-headed cards
339  */
340 int drm_get_minor(struct drm_device *dev, struct drm_minor **minor, int type)
341 {
342         struct drm_minor *new_minor;
343         int ret;
344         int minor_id;
345
346         DRM_DEBUG("\n");
347
348         minor_id = drm_minor_get_id(dev, type);
349         if (minor_id < 0)
350                 return minor_id;
351
352         new_minor = kzalloc(sizeof(struct drm_minor), GFP_KERNEL);
353         if (!new_minor) {
354                 ret = -ENOMEM;
355                 goto err_idr;
356         }
357
358         new_minor->type = type;
359         new_minor->device = MKDEV(DRM_MAJOR, minor_id);
360         new_minor->dev = dev;
361         new_minor->index = minor_id;
362         INIT_LIST_HEAD(&new_minor->master_list);
363
364         idr_replace(&drm_minors_idr, new_minor, minor_id);
365
366         if (type == DRM_MINOR_LEGACY) {
367                 ret = drm_proc_init(new_minor, minor_id, drm_proc_root);
368                 if (ret) {
369                         DRM_ERROR("DRM: Failed to initialize /proc/dri.\n");
370                         goto err_mem;
371                 }
372         } else
373                 new_minor->proc_root = NULL;
374
375 #if defined(CONFIG_DEBUG_FS)
376         ret = drm_debugfs_init(new_minor, minor_id, drm_debugfs_root);
377         if (ret) {
378                 DRM_ERROR("DRM: Failed to initialize /sys/kernel/debug/dri.\n");
379                 goto err_g2;
380         }
381 #endif
382
383         ret = drm_sysfs_device_add(new_minor);
384         if (ret) {
385                 printk(KERN_ERR
386                        "DRM: Error sysfs_device_add.\n");
387                 goto err_g2;
388         }
389         *minor = new_minor;
390
391         DRM_DEBUG("new minor assigned %d\n", minor_id);
392         return 0;
393
394
395 err_g2:
396         if (new_minor->type == DRM_MINOR_LEGACY)
397                 drm_proc_cleanup(new_minor, drm_proc_root);
398 err_mem:
399         kfree(new_minor);
400 err_idr:
401         idr_remove(&drm_minors_idr, minor_id);
402         *minor = NULL;
403         return ret;
404 }
405
406 /**
407  * Put a secondary minor number.
408  *
409  * \param sec_minor - structure to be released
410  * \return always zero
411  *
412  * Cleans up the proc resources. Not legal for this to be the
413  * last minor released.
414  *
415  */
416 int drm_put_minor(struct drm_minor **minor_p)
417 {
418         struct drm_minor *minor = *minor_p;
419
420         DRM_DEBUG("release secondary minor %d\n", minor->index);
421
422         if (minor->type == DRM_MINOR_LEGACY)
423                 drm_proc_cleanup(minor, drm_proc_root);
424 #if defined(CONFIG_DEBUG_FS)
425         drm_debugfs_cleanup(minor);
426 #endif
427
428         drm_sysfs_device_remove(minor);
429
430         idr_remove(&drm_minors_idr, minor->index);
431
432         kfree(minor);
433         *minor_p = NULL;
434         return 0;
435 }
436
437 /**
438  * Called via drm_exit() at module unload time or when pci device is
439  * unplugged.
440  *
441  * Cleans up all DRM device, calling drm_lastclose().
442  *
443  */
444 void drm_put_dev(struct drm_device *dev)
445 {
446         struct drm_driver *driver;
447         struct drm_map_list *r_list, *list_temp;
448
449         DRM_DEBUG("\n");
450
451         if (!dev) {
452                 DRM_ERROR("cleanup called no dev\n");
453                 return;
454         }
455         driver = dev->driver;
456
457         drm_lastclose(dev);
458
459         if (drm_core_has_MTRR(dev) && drm_core_has_AGP(dev) &&
460             dev->agp && dev->agp->agp_mtrr >= 0) {
461                 int retval;
462                 retval = mtrr_del(dev->agp->agp_mtrr,
463                                   dev->agp->agp_info.aper_base,
464                                   dev->agp->agp_info.aper_size * 1024 * 1024);
465                 DRM_DEBUG("mtrr_del=%d\n", retval);
466         }
467
468         if (dev->driver->unload)
469                 dev->driver->unload(dev);
470
471         if (drm_core_has_AGP(dev) && dev->agp) {
472                 kfree(dev->agp);
473                 dev->agp = NULL;
474         }
475
476         drm_vblank_cleanup(dev);
477
478         list_for_each_entry_safe(r_list, list_temp, &dev->maplist, head)
479                 drm_rmmap(dev, r_list->map);
480         drm_ht_remove(&dev->map_hash);
481
482         drm_ctxbitmap_cleanup(dev);
483
484         if (drm_core_check_feature(dev, DRIVER_MODESET))
485                 drm_put_minor(&dev->control);
486
487         if (driver->driver_features & DRIVER_GEM)
488                 drm_gem_destroy(dev);
489
490         drm_put_minor(&dev->primary);
491
492         list_del(&dev->driver_item);
493         if (dev->devname) {
494                 kfree(dev->devname);
495                 dev->devname = NULL;
496         }
497         kfree(dev);
498 }
499 EXPORT_SYMBOL(drm_put_dev);