staging/wlan-ng: Fix 'Branch condition evaluates to a garbage value' in p80211netdev.c
[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 <drm/drmP.h>
38 #include <drm/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 /*
50  * Default to use monotonic timestamps for wait-for-vblank and page-flip
51  * complete events.
52  */
53 unsigned int drm_timestamp_monotonic = 1;
54
55 MODULE_AUTHOR(CORE_AUTHOR);
56 MODULE_DESCRIPTION(CORE_DESC);
57 MODULE_LICENSE("GPL and additional rights");
58 MODULE_PARM_DESC(debug, "Enable debug output");
59 MODULE_PARM_DESC(vblankoffdelay, "Delay until vblank irq auto-disable [msecs]");
60 MODULE_PARM_DESC(timestamp_precision_usec, "Max. error on timestamps [usecs]");
61 MODULE_PARM_DESC(timestamp_monotonic, "Use monotonic timestamps");
62
63 module_param_named(debug, drm_debug, int, 0600);
64 module_param_named(vblankoffdelay, drm_vblank_offdelay, int, 0600);
65 module_param_named(timestamp_precision_usec, drm_timestamp_precision, int, 0600);
66 module_param_named(timestamp_monotonic, drm_timestamp_monotonic, int, 0600);
67
68 struct idr drm_minors_idr;
69
70 struct class *drm_class;
71 struct proc_dir_entry *drm_proc_root;
72 struct dentry *drm_debugfs_root;
73
74 int drm_err(const char *func, const char *format, ...)
75 {
76         struct va_format vaf;
77         va_list args;
78         int r;
79
80         va_start(args, format);
81
82         vaf.fmt = format;
83         vaf.va = &args;
84
85         r = printk(KERN_ERR "[" DRM_NAME ":%s] *ERROR* %pV", func, &vaf);
86
87         va_end(args);
88
89         return r;
90 }
91 EXPORT_SYMBOL(drm_err);
92
93 void drm_ut_debug_printk(unsigned int request_level,
94                          const char *prefix,
95                          const char *function_name,
96                          const char *format, ...)
97 {
98         va_list args;
99
100         if (drm_debug & request_level) {
101                 if (function_name)
102                         printk(KERN_DEBUG "[%s:%s], ", prefix, function_name);
103                 va_start(args, format);
104                 vprintk(format, args);
105                 va_end(args);
106         }
107 }
108 EXPORT_SYMBOL(drm_ut_debug_printk);
109
110 static int drm_minor_get_id(struct drm_device *dev, int type)
111 {
112         int new_id;
113         int ret;
114         int base = 0, limit = 63;
115
116         if (type == DRM_MINOR_CONTROL) {
117                 base += 64;
118                 limit = base + 127;
119         } else if (type == DRM_MINOR_RENDER) {
120                 base += 128;
121                 limit = base + 255;
122         }
123
124 again:
125         if (idr_pre_get(&drm_minors_idr, GFP_KERNEL) == 0) {
126                 DRM_ERROR("Out of memory expanding drawable idr\n");
127                 return -ENOMEM;
128         }
129         mutex_lock(&dev->struct_mutex);
130         ret = idr_get_new_above(&drm_minors_idr, NULL,
131                                 base, &new_id);
132         mutex_unlock(&dev->struct_mutex);
133         if (ret == -EAGAIN)
134                 goto again;
135         else if (ret)
136                 return ret;
137
138         if (new_id >= limit) {
139                 idr_remove(&drm_minors_idr, new_id);
140                 return -EINVAL;
141         }
142         return new_id;
143 }
144
145 struct drm_master *drm_master_create(struct drm_minor *minor)
146 {
147         struct drm_master *master;
148
149         master = kzalloc(sizeof(*master), GFP_KERNEL);
150         if (!master)
151                 return NULL;
152
153         kref_init(&master->refcount);
154         spin_lock_init(&master->lock.spinlock);
155         init_waitqueue_head(&master->lock.lock_queue);
156         drm_ht_create(&master->magiclist, DRM_MAGIC_HASH_ORDER);
157         INIT_LIST_HEAD(&master->magicfree);
158         master->minor = minor;
159
160         list_add_tail(&master->head, &minor->master_list);
161
162         return master;
163 }
164
165 struct drm_master *drm_master_get(struct drm_master *master)
166 {
167         kref_get(&master->refcount);
168         return master;
169 }
170 EXPORT_SYMBOL(drm_master_get);
171
172 static void drm_master_destroy(struct kref *kref)
173 {
174         struct drm_master *master = container_of(kref, struct drm_master, refcount);
175         struct drm_magic_entry *pt, *next;
176         struct drm_device *dev = master->minor->dev;
177         struct drm_map_list *r_list, *list_temp;
178
179         list_del(&master->head);
180
181         if (dev->driver->master_destroy)
182                 dev->driver->master_destroy(dev, master);
183
184         list_for_each_entry_safe(r_list, list_temp, &dev->maplist, head) {
185                 if (r_list->master == master) {
186                         drm_rmmap_locked(dev, r_list->map);
187                         r_list = NULL;
188                 }
189         }
190
191         if (master->unique) {
192                 kfree(master->unique);
193                 master->unique = NULL;
194                 master->unique_len = 0;
195         }
196
197         kfree(dev->devname);
198         dev->devname = NULL;
199
200         list_for_each_entry_safe(pt, next, &master->magicfree, head) {
201                 list_del(&pt->head);
202                 drm_ht_remove_item(&master->magiclist, &pt->hash_item);
203                 kfree(pt);
204         }
205
206         drm_ht_remove(&master->magiclist);
207
208         kfree(master);
209 }
210
211 void drm_master_put(struct drm_master **master)
212 {
213         kref_put(&(*master)->refcount, drm_master_destroy);
214         *master = NULL;
215 }
216 EXPORT_SYMBOL(drm_master_put);
217
218 int drm_setmaster_ioctl(struct drm_device *dev, void *data,
219                         struct drm_file *file_priv)
220 {
221         int ret;
222
223         if (file_priv->is_master)
224                 return 0;
225
226         if (file_priv->minor->master && file_priv->minor->master != file_priv->master)
227                 return -EINVAL;
228
229         if (!file_priv->master)
230                 return -EINVAL;
231
232         if (file_priv->minor->master)
233                 return -EINVAL;
234
235         mutex_lock(&dev->struct_mutex);
236         file_priv->minor->master = drm_master_get(file_priv->master);
237         file_priv->is_master = 1;
238         if (dev->driver->master_set) {
239                 ret = dev->driver->master_set(dev, file_priv, false);
240                 if (unlikely(ret != 0)) {
241                         file_priv->is_master = 0;
242                         drm_master_put(&file_priv->minor->master);
243                 }
244         }
245         mutex_unlock(&dev->struct_mutex);
246
247         return 0;
248 }
249
250 int drm_dropmaster_ioctl(struct drm_device *dev, void *data,
251                          struct drm_file *file_priv)
252 {
253         if (!file_priv->is_master)
254                 return -EINVAL;
255
256         if (!file_priv->minor->master)
257                 return -EINVAL;
258
259         mutex_lock(&dev->struct_mutex);
260         if (dev->driver->master_drop)
261                 dev->driver->master_drop(dev, file_priv, false);
262         drm_master_put(&file_priv->minor->master);
263         file_priv->is_master = 0;
264         mutex_unlock(&dev->struct_mutex);
265         return 0;
266 }
267
268 int drm_fill_in_dev(struct drm_device *dev,
269                            const struct pci_device_id *ent,
270                            struct drm_driver *driver)
271 {
272         int retcode;
273
274         INIT_LIST_HEAD(&dev->filelist);
275         INIT_LIST_HEAD(&dev->ctxlist);
276         INIT_LIST_HEAD(&dev->vmalist);
277         INIT_LIST_HEAD(&dev->maplist);
278         INIT_LIST_HEAD(&dev->vblank_event_list);
279
280         spin_lock_init(&dev->count_lock);
281         spin_lock_init(&dev->event_lock);
282         mutex_init(&dev->struct_mutex);
283         mutex_init(&dev->ctxlist_mutex);
284
285         if (drm_ht_create(&dev->map_hash, 12)) {
286                 return -ENOMEM;
287         }
288
289         /* the DRM has 6 basic counters */
290         dev->counters = 6;
291         dev->types[0] = _DRM_STAT_LOCK;
292         dev->types[1] = _DRM_STAT_OPENS;
293         dev->types[2] = _DRM_STAT_CLOSES;
294         dev->types[3] = _DRM_STAT_IOCTLS;
295         dev->types[4] = _DRM_STAT_LOCKS;
296         dev->types[5] = _DRM_STAT_UNLOCKS;
297
298         dev->driver = driver;
299
300         if (dev->driver->bus->agp_init) {
301                 retcode = dev->driver->bus->agp_init(dev);
302                 if (retcode)
303                         goto error_out_unreg;
304         }
305
306
307
308         retcode = drm_ctxbitmap_init(dev);
309         if (retcode) {
310                 DRM_ERROR("Cannot allocate memory for context bitmap.\n");
311                 goto error_out_unreg;
312         }
313
314         if (driver->driver_features & DRIVER_GEM) {
315                 retcode = drm_gem_init(dev);
316                 if (retcode) {
317                         DRM_ERROR("Cannot initialize graphics execution "
318                                   "manager (GEM)\n");
319                         goto error_out_unreg;
320                 }
321         }
322
323         return 0;
324
325       error_out_unreg:
326         drm_lastclose(dev);
327         return retcode;
328 }
329 EXPORT_SYMBOL(drm_fill_in_dev);
330
331
332 /**
333  * Get a secondary minor number.
334  *
335  * \param dev device data structure
336  * \param sec-minor structure to hold the assigned minor
337  * \return negative number on failure.
338  *
339  * Search an empty entry and initialize it to the given parameters, and
340  * create the proc init entry via proc_init(). This routines assigns
341  * minor numbers to secondary heads of multi-headed cards
342  */
343 int drm_get_minor(struct drm_device *dev, struct drm_minor **minor, int type)
344 {
345         struct drm_minor *new_minor;
346         int ret;
347         int minor_id;
348
349         DRM_DEBUG("\n");
350
351         minor_id = drm_minor_get_id(dev, type);
352         if (minor_id < 0)
353                 return minor_id;
354
355         new_minor = kzalloc(sizeof(struct drm_minor), GFP_KERNEL);
356         if (!new_minor) {
357                 ret = -ENOMEM;
358                 goto err_idr;
359         }
360
361         new_minor->type = type;
362         new_minor->device = MKDEV(DRM_MAJOR, minor_id);
363         new_minor->dev = dev;
364         new_minor->index = minor_id;
365         INIT_LIST_HEAD(&new_minor->master_list);
366
367         idr_replace(&drm_minors_idr, new_minor, minor_id);
368
369         if (type == DRM_MINOR_LEGACY) {
370                 ret = drm_proc_init(new_minor, minor_id, drm_proc_root);
371                 if (ret) {
372                         DRM_ERROR("DRM: Failed to initialize /proc/dri.\n");
373                         goto err_mem;
374                 }
375         } else
376                 new_minor->proc_root = NULL;
377
378 #if defined(CONFIG_DEBUG_FS)
379         ret = drm_debugfs_init(new_minor, minor_id, drm_debugfs_root);
380         if (ret) {
381                 DRM_ERROR("DRM: Failed to initialize /sys/kernel/debug/dri.\n");
382                 goto err_g2;
383         }
384 #endif
385
386         ret = drm_sysfs_device_add(new_minor);
387         if (ret) {
388                 printk(KERN_ERR
389                        "DRM: Error sysfs_device_add.\n");
390                 goto err_g2;
391         }
392         *minor = new_minor;
393
394         DRM_DEBUG("new minor assigned %d\n", minor_id);
395         return 0;
396
397
398 err_g2:
399         if (new_minor->type == DRM_MINOR_LEGACY)
400                 drm_proc_cleanup(new_minor, drm_proc_root);
401 err_mem:
402         kfree(new_minor);
403 err_idr:
404         idr_remove(&drm_minors_idr, minor_id);
405         *minor = NULL;
406         return ret;
407 }
408 EXPORT_SYMBOL(drm_get_minor);
409
410 /**
411  * Put a secondary minor number.
412  *
413  * \param sec_minor - structure to be released
414  * \return always zero
415  *
416  * Cleans up the proc resources. Not legal for this to be the
417  * last minor released.
418  *
419  */
420 int drm_put_minor(struct drm_minor **minor_p)
421 {
422         struct drm_minor *minor = *minor_p;
423
424         DRM_DEBUG("release secondary minor %d\n", minor->index);
425
426         if (minor->type == DRM_MINOR_LEGACY)
427                 drm_proc_cleanup(minor, drm_proc_root);
428 #if defined(CONFIG_DEBUG_FS)
429         drm_debugfs_cleanup(minor);
430 #endif
431
432         drm_sysfs_device_remove(minor);
433
434         idr_remove(&drm_minors_idr, minor->index);
435
436         kfree(minor);
437         *minor_p = NULL;
438         return 0;
439 }
440 EXPORT_SYMBOL(drm_put_minor);
441
442 static void drm_unplug_minor(struct drm_minor *minor)
443 {
444         drm_sysfs_device_remove(minor);
445 }
446
447 /**
448  * Called via drm_exit() at module unload time or when pci device is
449  * unplugged.
450  *
451  * Cleans up all DRM device, calling drm_lastclose().
452  *
453  */
454 void drm_put_dev(struct drm_device *dev)
455 {
456         struct drm_driver *driver;
457         struct drm_map_list *r_list, *list_temp;
458
459         DRM_DEBUG("\n");
460
461         if (!dev) {
462                 DRM_ERROR("cleanup called no dev\n");
463                 return;
464         }
465         driver = dev->driver;
466
467         drm_lastclose(dev);
468
469         if (drm_core_has_MTRR(dev) && drm_core_has_AGP(dev) &&
470             dev->agp && dev->agp->agp_mtrr >= 0) {
471                 int retval;
472                 retval = mtrr_del(dev->agp->agp_mtrr,
473                                   dev->agp->agp_info.aper_base,
474                                   dev->agp->agp_info.aper_size * 1024 * 1024);
475                 DRM_DEBUG("mtrr_del=%d\n", retval);
476         }
477
478         if (dev->driver->unload)
479                 dev->driver->unload(dev);
480
481         if (drm_core_has_AGP(dev) && dev->agp) {
482                 kfree(dev->agp);
483                 dev->agp = NULL;
484         }
485
486         drm_vblank_cleanup(dev);
487
488         list_for_each_entry_safe(r_list, list_temp, &dev->maplist, head)
489                 drm_rmmap(dev, r_list->map);
490         drm_ht_remove(&dev->map_hash);
491
492         drm_ctxbitmap_cleanup(dev);
493
494         if (drm_core_check_feature(dev, DRIVER_MODESET))
495                 drm_put_minor(&dev->control);
496
497         if (driver->driver_features & DRIVER_GEM)
498                 drm_gem_destroy(dev);
499
500         drm_put_minor(&dev->primary);
501
502         list_del(&dev->driver_item);
503         kfree(dev->devname);
504         kfree(dev);
505 }
506 EXPORT_SYMBOL(drm_put_dev);
507
508 void drm_unplug_dev(struct drm_device *dev)
509 {
510         /* for a USB device */
511         if (drm_core_check_feature(dev, DRIVER_MODESET))
512                 drm_unplug_minor(dev->control);
513         drm_unplug_minor(dev->primary);
514
515         mutex_lock(&drm_global_mutex);
516
517         drm_device_set_unplugged(dev);
518
519         if (dev->open_count == 0) {
520                 drm_put_dev(dev);
521         }
522         mutex_unlock(&drm_global_mutex);
523 }
524 EXPORT_SYMBOL(drm_unplug_dev);