radeon: remove unused legacy state
[platform/upstream/libdrm.git] / linux-core / drm_stub.c
1 /**
2  * \file drm_stub.c
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
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 MODULE_AUTHOR(CORE_AUTHOR);
44 MODULE_DESCRIPTION(CORE_DESC);
45 MODULE_LICENSE("GPL and additional rights");
46 MODULE_PARM_DESC(debug, "Enable debug output");
47
48 module_param_named(debug, drm_debug, int, 0600);
49
50 struct idr drm_minors_idr;
51
52 struct class *drm_class;
53 struct proc_dir_entry *drm_proc_root;
54
55 static int drm_minor_get_id(struct drm_device *dev, int type)
56 {
57         int new_id;
58         int ret;
59         int base = 0, limit = 63;
60
61         if (type == DRM_MINOR_CONTROL) {
62                 base += 64;
63                 limit = base + 127;
64         } else if (type == DRM_MINOR_RENDER) {
65                 base += 128;
66                 limit = base + 255;
67         }       
68
69 again:
70         if (idr_pre_get(&drm_minors_idr, GFP_KERNEL) == 0) {
71                 DRM_ERROR("Out of memory expanding drawable idr\n");
72                 return -ENOMEM;
73         }
74         mutex_lock(&dev->struct_mutex);
75         ret = idr_get_new_above(&drm_minors_idr, NULL,
76                                 base, &new_id);
77         mutex_unlock(&dev->struct_mutex);
78         if (ret == -EAGAIN) {
79                 goto again;
80         } else if (ret) {
81                 return ret;
82         }
83
84         if (new_id >= limit) {
85                 idr_remove(&drm_minors_idr, new_id);
86                 return -EINVAL;
87         }
88         return new_id;
89 }
90
91 struct drm_master *drm_master_create(struct drm_minor *minor)
92 {
93         struct drm_master *master;
94
95         master = drm_calloc(1, sizeof(*master), DRM_MEM_DRIVER);
96         if (!master)
97                 return NULL;
98
99         kref_init(&master->refcount);
100         spin_lock_init(&master->lock.spinlock);
101         init_waitqueue_head(&master->lock.lock_queue);
102         drm_ht_create(&master->magiclist, DRM_MAGIC_HASH_ORDER);
103         INIT_LIST_HEAD(&master->magicfree);
104         master->minor = minor;
105
106         list_add_tail(&master->head, &minor->master_list);
107
108         return master;
109 }
110
111 struct drm_master *drm_master_get(struct drm_master *master)
112 {
113         kref_get(&master->refcount);
114         return master;
115 }
116
117 static void drm_master_destroy(struct kref *kref)
118 {
119         struct drm_master *master = container_of(kref, struct drm_master, refcount);
120         struct drm_magic_entry *pt, *next;
121         struct drm_device *dev = master->minor->dev;
122
123         list_del(&master->head);
124
125         if (dev->driver->master_destroy)
126                 dev->driver->master_destroy(dev, master);
127
128         if (master->unique) {
129                 drm_free(master->unique, strlen(master->unique) + 1, DRM_MEM_DRIVER);
130                 master->unique = NULL;
131                 master->unique_len = 0;
132         }
133
134         list_for_each_entry_safe(pt, next, &master->magicfree, head) {
135                 list_del(&pt->head);
136                 drm_ht_remove_item(&master->magiclist, &pt->hash_item);
137                 drm_free(pt, sizeof(*pt), DRM_MEM_MAGIC);
138         }
139
140         drm_ht_remove(&master->magiclist);
141
142         if (master->lock.hw_lock) {
143                 if (dev->sigdata.lock == master->lock.hw_lock)
144                         dev->sigdata.lock = NULL;
145                 master->lock.hw_lock = NULL;    /* SHM removed */
146                 master->lock.file_priv = NULL;
147                 wake_up_interruptible(&master->lock.lock_queue);
148         }
149
150         drm_free(master, sizeof(*master), DRM_MEM_DRIVER);
151 }
152
153 void drm_master_put(struct drm_master **master)
154 {
155         kref_put(&(*master)->refcount, drm_master_destroy);
156         *master = NULL;
157 }
158
159 int drm_setmaster_ioctl(struct drm_device *dev, void *data,
160                         struct drm_file *file_priv)
161 {
162         if (file_priv->minor->master && file_priv->minor->master != file_priv->master)
163                 return -EINVAL;
164
165         if (!file_priv->master)
166                 return -EINVAL;
167
168         if (!file_priv->minor->master && file_priv->minor->master != file_priv->master) {
169                 mutex_lock(&dev->struct_mutex);
170                 file_priv->minor->master = drm_master_get(file_priv->master);
171                 mutex_unlock(&dev->struct_mutex);
172         }
173
174         return 0;
175 }
176
177 int drm_dropmaster_ioctl(struct drm_device *dev, void *data,
178                          struct drm_file *file_priv)
179 {
180         if (!file_priv->master)
181                 return -EINVAL;
182         mutex_lock(&dev->struct_mutex);
183         drm_master_put(&file_priv->minor->master);
184         mutex_unlock(&dev->struct_mutex);
185         return 0;
186 }
187
188 static int drm_fill_in_dev(struct drm_device * dev, struct pci_dev *pdev,
189                            const struct pci_device_id *ent,
190                            struct drm_driver *driver)
191 {
192         int retcode;
193
194         INIT_LIST_HEAD(&dev->filelist);
195         INIT_LIST_HEAD(&dev->ctxlist);
196         INIT_LIST_HEAD(&dev->vmalist);
197         INIT_LIST_HEAD(&dev->maplist);
198
199         spin_lock_init(&dev->count_lock);
200         spin_lock_init(&dev->drw_lock);
201         spin_lock_init(&dev->tasklet_lock);
202
203         init_timer(&dev->timer);
204         mutex_init(&dev->struct_mutex);
205         mutex_init(&dev->ctxlist_mutex);
206         mutex_init(&dev->bm.evict_mutex);
207
208         idr_init(&dev->drw_idr);
209
210         dev->pdev = pdev;
211         dev->pci_device = pdev->device;
212         dev->pci_vendor = pdev->vendor;
213
214 #ifdef __alpha__
215         dev->hose = pdev->sysdata;
216 #endif
217         dev->irq = pdev->irq;
218         dev->irq_enabled = 0;
219
220         if (drm_ht_create(&dev->map_hash, DRM_MAP_HASH_ORDER))
221                 return -ENOMEM;
222         if (drm_mm_init(&dev->offset_manager, DRM_FILE_PAGE_OFFSET_START,
223                         DRM_FILE_PAGE_OFFSET_SIZE)) {
224                 drm_ht_remove(&dev->map_hash);
225                 return -ENOMEM;
226         }
227
228         /* the DRM has 6 counters */
229         dev->counters = 6;
230         dev->types[0] = _DRM_STAT_LOCK;
231         dev->types[1] = _DRM_STAT_OPENS;
232         dev->types[2] = _DRM_STAT_CLOSES;
233         dev->types[3] = _DRM_STAT_IOCTLS;
234         dev->types[4] = _DRM_STAT_LOCKS;
235         dev->types[5] = _DRM_STAT_UNLOCKS;
236
237         dev->driver = driver;
238
239         if (drm_core_has_AGP(dev)) {
240                 if (drm_device_is_agp(dev))
241                         dev->agp = drm_agp_init(dev);
242                 if (drm_core_check_feature(dev, DRIVER_REQUIRE_AGP)
243                     && (dev->agp == NULL)) {
244                         DRM_ERROR("Cannot initialize the agpgart module.\n");
245                         retcode = -EINVAL;
246                         goto error_out_unreg;
247                 }
248
249                 if (drm_core_has_MTRR(dev)) {
250                         if (dev->agp)
251                                 dev->agp->agp_mtrr =
252                                     mtrr_add(dev->agp->agp_info.aper_base,
253                                              dev->agp->agp_info.aper_size *
254                                              1024 * 1024, MTRR_TYPE_WRCOMB, 1);
255                 }
256         }
257
258         retcode = drm_ctxbitmap_init(dev);
259         if (retcode) {
260                 DRM_ERROR("Cannot allocate memory for context bitmap.\n");
261                 goto error_out_unreg;
262         }
263
264         if (driver->driver_features & DRIVER_GEM) {
265                 retcode = drm_gem_init (dev);
266                 if (retcode) {
267                         DRM_ERROR("Cannot initialize graphics execution manager (GEM)\n");
268                         goto error_out_unreg;
269                 }
270         }
271
272         drm_fence_manager_init(dev);
273
274         return 0;
275
276 error_out_unreg:
277         drm_lastclose(dev);
278         return retcode;
279 }
280
281 /**
282  * Get a secondary minor number.
283  *
284  * \param dev device data structure
285  * \param sec-minor structure to hold the assigned minor
286  * \return negative number on failure.
287  *
288  * Search an empty entry and initialize it to the given parameters, and
289  * create the proc init entry via proc_init(). This routines assigns
290  * minor numbers to secondary heads of multi-headed cards
291  */
292 static int drm_get_minor(struct drm_device *dev, struct drm_minor **minor, int type)
293 {
294         struct drm_minor *new_minor;
295         int ret;
296         int minor_id;
297
298         DRM_DEBUG("\n");
299
300         minor_id = drm_minor_get_id(dev, type);
301         if (minor_id < 0)
302                 return minor_id;
303
304         new_minor = kzalloc(sizeof(struct drm_minor), GFP_KERNEL);
305         if (!new_minor) {
306                 ret = -ENOMEM;
307                 goto err_idr;
308         }
309
310         new_minor->type = type;
311         new_minor->device = MKDEV(DRM_MAJOR, minor_id);
312         new_minor->dev = dev;
313         new_minor->index = minor_id;
314         INIT_LIST_HEAD(&new_minor->master_list);
315
316         idr_replace(&drm_minors_idr, new_minor, minor_id);
317         
318         if (type == DRM_MINOR_LEGACY) {
319                 ret = drm_proc_init(new_minor, minor_id, drm_proc_root);
320                 if (ret) {
321                         DRM_ERROR("DRM: Failed to initialize /proc/dri.\n");
322                         goto err_mem;
323                 }
324                 if (dev->driver->proc_init) {
325                         ret = dev->driver->proc_init(new_minor);
326                         if (ret) {
327                                 DRM_ERROR("DRM: Driver failed to initialize /proc/dri.\n");
328                                 goto err_mem;
329                         }
330                 }
331         } else
332                 new_minor->dev_root = NULL;
333
334         ret = drm_sysfs_device_add(new_minor);
335         if (ret) {
336                 printk(KERN_ERR
337                        "DRM: Error sysfs_device_add.\n");
338                 goto err_g2;
339         }
340         *minor = new_minor;
341         
342         DRM_DEBUG("new minor assigned %d\n", minor_id);
343         return 0;
344
345
346 err_g2:
347         if (new_minor->type == DRM_MINOR_LEGACY) {
348                 if (dev->driver->proc_cleanup)
349                         dev->driver->proc_cleanup(new_minor);
350                 drm_proc_cleanup(new_minor, drm_proc_root);
351         }
352 err_mem:
353         kfree(new_minor);
354 err_idr:
355         idr_remove(&drm_minors_idr, minor_id);
356         *minor = NULL;
357         return ret;
358 }
359
360 /**
361  * Register.
362  *
363  * \param pdev - PCI device structure
364  * \param ent entry from the PCI ID table with device type flags
365  * \return zero on success or a negative number on failure.
366  *
367  * Attempt to gets inter module "drm" information. If we are first
368  * then register the character device and inter module information.
369  * Try and register, if we fail to register, backout previous work.
370  */
371 int drm_get_dev(struct pci_dev *pdev, const struct pci_device_id *ent,
372                 struct drm_driver *driver)
373 {
374         struct drm_device *dev;
375         int ret;
376
377         DRM_DEBUG("\n");
378
379         dev = drm_calloc(1, sizeof(*dev), DRM_MEM_STUB);
380         if (!dev)
381                 return -ENOMEM;
382
383         if (!drm_fb_loaded) {
384                 pci_set_drvdata(pdev, dev);
385                 ret = pci_request_regions(pdev, driver->pci_driver.name);
386                 if (ret)
387                         goto err_g1;
388         }
389
390         ret = pci_enable_device(pdev);
391         if (ret)
392                 goto err_g2;
393         pci_set_master(pdev);
394
395         if ((ret = drm_fill_in_dev(dev, pdev, ent, driver))) {
396                 printk(KERN_ERR "DRM: fill_in_dev failed\n");
397                 goto err_g3;
398         }
399
400         /* only add the control node on a modesetting platform */
401         if (drm_core_check_feature(dev, DRIVER_MODESET))
402                 if ((ret = drm_get_minor(dev, &dev->control, DRM_MINOR_CONTROL)))
403                         goto err_g3;
404
405         if ((ret = drm_get_minor(dev, &dev->primary, DRM_MINOR_LEGACY)))
406                 goto err_g4;
407
408         if (dev->driver->load)
409                 if ((ret = dev->driver->load(dev, ent->driver_data)))
410                         goto err_g5;
411
412         /* setup the grouping for the legacy output */
413         if (drm_core_check_feature(dev, DRIVER_MODESET))
414                 if (drm_mode_group_init_legacy_group(dev, &dev->primary->mode_group))
415                     goto err_g5;
416
417         DRM_INFO("Initialized %s %d.%d.%d %s on minor %d\n",
418                  driver->name, driver->major, driver->minor, driver->patchlevel,
419                  driver->date, dev->primary->index);
420
421         return 0;
422 err_g5:
423         drm_put_minor(&dev->primary);
424 err_g4:
425         if (drm_core_check_feature(dev, DRIVER_MODESET))
426                 drm_put_minor(&dev->control);
427 err_g3:
428         if (!drm_fb_loaded)
429                 pci_disable_device(pdev);
430 err_g2:
431         if (!drm_fb_loaded)
432                 pci_release_regions(pdev);
433 err_g1:
434         if (!drm_fb_loaded)
435                 pci_set_drvdata(pdev, NULL);
436
437         drm_free(dev, sizeof(*dev), DRM_MEM_STUB);
438         printk(KERN_ERR "DRM: drm_get_dev failed.\n");
439         return ret;
440 }
441 EXPORT_SYMBOL(drm_get_dev);
442
443
444 /**
445  * Put a device minor number.
446  *
447  * \param dev device data structure
448  * \return always zero
449  *
450  * Cleans up the proc resources. If it is the last minor then release the foreign
451  * "drm" data, otherwise unregisters the "drm" data, frees the dev list and
452  * unregisters the character device.
453  */
454 int drm_put_dev(struct drm_device * dev)
455 {
456         DRM_DEBUG("release primary %s\n", dev->driver->pci_driver.name);
457
458         if (dev->devname) {
459                 drm_free(dev->devname, strlen(dev->devname) + 1,
460                          DRM_MEM_DRIVER);
461                 dev->devname = NULL;
462         }
463         drm_free(dev, sizeof(*dev), DRM_MEM_STUB);
464         return 0;
465 }
466
467 /**
468  * Put a secondary minor number.
469  *
470  * \param sec_minor - structure to be released
471  * \return always zero
472  *
473  * Cleans up the proc resources. Not legal for this to be the
474  * last minor released.
475  *
476  */
477 int drm_put_minor(struct drm_minor **minor_p)
478 {
479         struct drm_minor *minor = *minor_p;
480         DRM_DEBUG("release secondary minor %d\n", minor->index);
481
482         if (minor->type == DRM_MINOR_LEGACY) {
483                 if (minor->dev->driver->proc_cleanup)
484                         minor->dev->driver->proc_cleanup(minor);
485                 drm_proc_cleanup(minor, drm_proc_root);
486         }
487         drm_sysfs_device_remove(minor);
488
489         idr_remove(&drm_minors_idr, minor->index);
490
491         kfree(minor);
492         *minor_p = NULL;
493         return 0;
494 }