55841826205dc95cc02b06290b7e282fe8a86ff1
[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 again:
62         if (idr_pre_get(&drm_minors_idr, GFP_KERNEL) == 0) {
63                 DRM_ERROR("Out of memory expanding drawable idr\n");
64                 return -ENOMEM;
65         }
66         mutex_lock(&dev->struct_mutex);
67         ret = idr_get_new_above(&drm_minors_idr, NULL,
68                                 base, &new_id);
69         mutex_unlock(&dev->struct_mutex);
70         if (ret == -EAGAIN) {
71                 goto again;
72         } else if (ret) {
73                 return ret;
74         }
75
76         if (new_id >= limit) {
77                 idr_remove(&drm_minors_idr, new_id);
78                 return -EINVAL;
79         }
80         return new_id;
81 }
82
83 static int drm_fill_in_dev(struct drm_device * dev, struct pci_dev *pdev,
84                            const struct pci_device_id *ent,
85                            struct drm_driver *driver)
86 {
87         int retcode;
88
89         INIT_LIST_HEAD(&dev->filelist);
90         INIT_LIST_HEAD(&dev->ctxlist);
91         INIT_LIST_HEAD(&dev->vmalist);
92         INIT_LIST_HEAD(&dev->maplist);
93
94         spin_lock_init(&dev->count_lock);
95         spin_lock_init(&dev->drw_lock);
96         spin_lock_init(&dev->tasklet_lock);
97         spin_lock_init(&dev->lock.spinlock);
98         init_timer(&dev->timer);
99         mutex_init(&dev->struct_mutex);
100         mutex_init(&dev->ctxlist_mutex);
101         mutex_init(&dev->bm.evict_mutex);
102
103         idr_init(&dev->drw_idr);
104
105         dev->pdev = pdev;
106         dev->pci_device = pdev->device;
107         dev->pci_vendor = pdev->vendor;
108
109 #ifdef __alpha__
110         dev->hose = pdev->sysdata;
111 #endif
112         dev->irq = pdev->irq;
113         dev->irq_enabled = 0;
114
115         if (drm_ht_create(&dev->map_hash, DRM_MAP_HASH_ORDER)) {
116                 return -ENOMEM;
117         }
118         if (drm_memrange_init(&dev->offset_manager, DRM_FILE_PAGE_OFFSET_START,
119                               DRM_FILE_PAGE_OFFSET_SIZE)) {
120                 drm_ht_remove(&dev->map_hash);
121                 return -ENOMEM;
122         }
123
124         if (drm_ht_create(&dev->object_hash, DRM_OBJECT_HASH_ORDER)) {
125                 drm_ht_remove(&dev->map_hash);
126                 drm_memrange_takedown(&dev->offset_manager);
127                 return -ENOMEM;
128         }
129
130         /* the DRM has 6 counters */
131         dev->counters = 6;
132         dev->types[0] = _DRM_STAT_LOCK;
133         dev->types[1] = _DRM_STAT_OPENS;
134         dev->types[2] = _DRM_STAT_CLOSES;
135         dev->types[3] = _DRM_STAT_IOCTLS;
136         dev->types[4] = _DRM_STAT_LOCKS;
137         dev->types[5] = _DRM_STAT_UNLOCKS;
138
139         dev->driver = driver;
140
141         if (drm_core_has_AGP(dev)) {
142                 if (drm_device_is_agp(dev))
143                         dev->agp = drm_agp_init(dev);
144                 if (drm_core_check_feature(dev, DRIVER_REQUIRE_AGP)
145                     && (dev->agp == NULL)) {
146                         DRM_ERROR("Cannot initialize the agpgart module.\n");
147                         retcode = -EINVAL;
148                         goto error_out_unreg;
149                 }
150
151                 if (drm_core_has_MTRR(dev)) {
152                         if (dev->agp)
153                                 dev->agp->agp_mtrr =
154                                     mtrr_add(dev->agp->agp_info.aper_base,
155                                              dev->agp->agp_info.aper_size *
156                                              1024 * 1024, MTRR_TYPE_WRCOMB, 1);
157                 }
158         }
159
160         retcode = drm_ctxbitmap_init(dev);
161         if (retcode) {
162                 DRM_ERROR("Cannot allocate memory for context bitmap.\n");
163                 goto error_out_unreg;
164         }
165
166         if (driver->driver_features & DRIVER_GEM) {
167                 retcode = drm_gem_init (dev);
168                 if (retcode) {
169                         DRM_ERROR("Cannot initialize graphics execution manager (GEM)\n");
170                         goto error_out_unreg;
171                 }
172         }
173
174         drm_fence_manager_init(dev);
175
176         return 0;
177
178 error_out_unreg:
179         drm_lastclose(dev);
180         return retcode;
181 }
182
183 /**
184  * Get a secondary minor number.
185  *
186  * \param dev device data structure
187  * \param sec-minor structure to hold the assigned minor
188  * \return negative number on failure.
189  *
190  * Search an empty entry and initialize it to the given parameters, and
191  * create the proc init entry via proc_init(). This routines assigns
192  * minor numbers to secondary heads of multi-headed cards
193  */
194 static int drm_get_minor(struct drm_device *dev, struct drm_minor **minor, int type)
195 {
196         struct drm_minor *new_minor;
197         int ret;
198         int minor_id;
199
200         DRM_DEBUG("\n");
201
202         minor_id = drm_minor_get_id(dev, type);
203         if (minor_id < 0)
204                 return minor_id;
205
206         new_minor = kzalloc(sizeof(struct drm_minor), GFP_KERNEL);
207         if (!new_minor) {
208                 ret = -ENOMEM;
209                 goto err_idr;
210         }
211
212         new_minor->type = type;
213         new_minor->device = MKDEV(DRM_MAJOR, minor_id);
214         new_minor->dev = dev;
215         new_minor->index = minor_id;
216
217         idr_replace(&drm_minors_idr, new_minor, minor_id);
218         
219         if (type == DRM_MINOR_LEGACY) {
220                 ret = drm_proc_init(new_minor, minor_id, drm_proc_root);
221                 if (ret) {
222                         DRM_ERROR("DRM: Failed to initialize /proc/dri.\n");
223                         goto err_mem;
224                 }
225         } else
226                 new_minor->dev_root = NULL;
227
228         ret = drm_sysfs_device_add(new_minor);
229         if (ret) {
230                 printk(KERN_ERR
231                        "DRM: Error sysfs_device_add.\n");
232                 goto err_g2;
233         }
234         *minor = new_minor;
235         
236         DRM_DEBUG("new minor assigned %d\n", minor_id);
237         return 0;
238
239
240 err_g2:
241         if (new_minor->type == DRM_MINOR_LEGACY)
242                 drm_proc_cleanup(new_minor, drm_proc_root);
243 err_mem:
244         kfree(new_minor);
245 err_idr:
246         idr_remove(&drm_minors_idr, minor_id);
247         *minor = NULL;
248         return ret;
249 }
250
251 /**
252  * Register.
253  *
254  * \param pdev - PCI device structure
255  * \param ent entry from the PCI ID table with device type flags
256  * \return zero on success or a negative number on failure.
257  *
258  * Attempt to gets inter module "drm" information. If we are first
259  * then register the character device and inter module information.
260  * Try and register, if we fail to register, backout previous work.
261  */
262 int drm_get_dev(struct pci_dev *pdev, const struct pci_device_id *ent,
263                 struct drm_driver *driver)
264 {
265         struct drm_device *dev;
266         int ret;
267
268         DRM_DEBUG("\n");
269
270         dev = drm_calloc(1, sizeof(*dev), DRM_MEM_STUB);
271         if (!dev)
272                 return -ENOMEM;
273
274         if (!drm_fb_loaded) {
275                 pci_set_drvdata(pdev, dev);
276                 ret = pci_request_regions(pdev, driver->pci_driver.name);
277                 if (ret)
278                         goto err_g1;
279         }
280
281         ret = pci_enable_device(pdev);
282         if (ret)
283                 goto err_g2;
284         pci_set_master(pdev);
285
286         if ((ret = drm_fill_in_dev(dev, pdev, ent, driver))) {
287                 printk(KERN_ERR "DRM: fill_in_dev failed\n");
288                 goto err_g3;
289         }
290
291         /* only add the control node on a modesetting platform */
292         if ((ret = drm_get_minor(dev, &dev->primary, DRM_MINOR_LEGACY)))
293                 goto err_g3;
294
295         if (dev->driver->load)
296                 if ((ret = dev->driver->load(dev, ent->driver_data)))
297                         goto err_g4;
298
299         DRM_INFO("Initialized %s %d.%d.%d %s on minor %d\n",
300                  driver->name, driver->major, driver->minor, driver->patchlevel,
301                  driver->date, dev->primary->index);
302
303         return 0;
304 err_g4:
305         drm_put_minor(&dev->primary);
306 err_g3:
307         if (!drm_fb_loaded)
308                 pci_disable_device(pdev);
309 err_g2:
310         if (!drm_fb_loaded)
311                 pci_release_regions(pdev);
312 err_g1:
313         if (!drm_fb_loaded)
314                 pci_set_drvdata(pdev, NULL);
315
316         drm_free(dev, sizeof(*dev), DRM_MEM_STUB);
317         printk(KERN_ERR "DRM: drm_get_dev failed.\n");
318         return ret;
319 }
320 EXPORT_SYMBOL(drm_get_dev);
321
322
323 /**
324  * Put a device minor number.
325  *
326  * \param dev device data structure
327  * \return always zero
328  *
329  * Cleans up the proc resources. If it is the last minor then release the foreign
330  * "drm" data, otherwise unregisters the "drm" data, frees the dev list and
331  * unregisters the character device.
332  */
333 int drm_put_dev(struct drm_device * dev)
334 {
335         DRM_DEBUG("release primary %s\n", dev->driver->pci_driver.name);
336
337         if (dev->unique) {
338                 drm_free(dev->unique, strlen(dev->unique) + 1, DRM_MEM_DRIVER);
339                 dev->unique = NULL;
340                 dev->unique_len = 0;
341         }
342         if (dev->devname) {
343                 drm_free(dev->devname, strlen(dev->devname) + 1,
344                          DRM_MEM_DRIVER);
345                 dev->devname = NULL;
346         }
347         drm_free(dev, sizeof(*dev), DRM_MEM_STUB);
348         return 0;
349 }
350
351 /**
352  * Put a secondary minor number.
353  *
354  * \param sec_minor - structure to be released
355  * \return always zero
356  *
357  * Cleans up the proc resources. Not legal for this to be the
358  * last minor released.
359  *
360  */
361 int drm_put_minor(struct drm_minor **minor_p)
362 {
363         struct drm_minor *minor = *minor_p;
364         DRM_DEBUG("release secondary minor %d\n", minor->index);
365
366         if (minor->type == DRM_MINOR_LEGACY)
367                 drm_proc_cleanup(minor, drm_proc_root);
368         drm_sysfs_device_remove(minor);
369
370         idr_remove(&drm_minors_idr, minor->index);
371
372         kfree(minor);
373         *minor_p = NULL;
374         return 0;
375 }