c68adbaf5ab96646e1b11ca40895d4f08da91271
[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_mm_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_mm_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         drm_fence_manager_init(dev);
167         return 0;
168
169 error_out_unreg:
170         drm_lastclose(dev);
171         return retcode;
172 }
173
174 /**
175  * Get a secondary minor number.
176  *
177  * \param dev device data structure
178  * \param sec-minor structure to hold the assigned minor
179  * \return negative number on failure.
180  *
181  * Search an empty entry and initialize it to the given parameters, and
182  * create the proc init entry via proc_init(). This routines assigns
183  * minor numbers to secondary heads of multi-headed cards
184  */
185 static int drm_get_minor(struct drm_device *dev, struct drm_minor **minor, int type)
186 {
187         struct drm_minor *new_minor;
188         int ret;
189         int minor_id;
190
191         DRM_DEBUG("\n");
192
193         minor_id = drm_minor_get_id(dev, type);
194         if (minor_id < 0)
195                 return minor_id;
196
197         new_minor = kzalloc(sizeof(struct drm_minor), GFP_KERNEL);
198         if (!new_minor) {
199                 ret = -ENOMEM;
200                 goto err_idr;
201         }
202
203         new_minor->type = type;
204         new_minor->device = MKDEV(DRM_MAJOR, minor_id);
205         new_minor->dev = dev;
206         new_minor->index = minor_id;
207
208         idr_replace(&drm_minors_idr, new_minor, minor_id);
209         
210         if (type == DRM_MINOR_LEGACY) {
211                 ret = drm_proc_init(new_minor, minor_id, drm_proc_root);
212                 if (ret) {
213                         DRM_ERROR("DRM: Failed to initialize /proc/dri.\n");
214                         goto err_mem;
215                 }
216         } else
217                 new_minor->dev_root = NULL;
218
219         ret = drm_sysfs_device_add(new_minor);
220         if (ret) {
221                 printk(KERN_ERR
222                        "DRM: Error sysfs_device_add.\n");
223                 goto err_g2;
224         }
225         *minor = new_minor;
226         
227         DRM_DEBUG("new minor assigned %d\n", minor_id);
228         return 0;
229
230
231 err_g2:
232         if (new_minor->type == DRM_MINOR_LEGACY)
233                 drm_proc_cleanup(new_minor, drm_proc_root);
234 err_mem:
235         kfree(new_minor);
236 err_idr:
237         idr_remove(&drm_minors_idr, minor_id);
238         *minor = NULL;
239         return ret;
240 }
241
242 /**
243  * Register.
244  *
245  * \param pdev - PCI device structure
246  * \param ent entry from the PCI ID table with device type flags
247  * \return zero on success or a negative number on failure.
248  *
249  * Attempt to gets inter module "drm" information. If we are first
250  * then register the character device and inter module information.
251  * Try and register, if we fail to register, backout previous work.
252  */
253 int drm_get_dev(struct pci_dev *pdev, const struct pci_device_id *ent,
254                 struct drm_driver *driver)
255 {
256         struct drm_device *dev;
257         int ret;
258
259         DRM_DEBUG("\n");
260
261         dev = drm_calloc(1, sizeof(*dev), DRM_MEM_STUB);
262         if (!dev)
263                 return -ENOMEM;
264
265         if (!drm_fb_loaded) {
266                 pci_set_drvdata(pdev, dev);
267                 ret = pci_request_regions(pdev, driver->pci_driver.name);
268                 if (ret)
269                         goto err_g1;
270         }
271
272         ret = pci_enable_device(pdev);
273         if (ret)
274                 goto err_g2;
275         pci_set_master(pdev);
276
277         if ((ret = drm_fill_in_dev(dev, pdev, ent, driver))) {
278                 printk(KERN_ERR "DRM: fill_in_dev failed\n");
279                 goto err_g3;
280         }
281
282         /* only add the control node on a modesetting platform */
283         if ((ret = drm_get_minor(dev, &dev->primary, DRM_MINOR_LEGACY)))
284                 goto err_g3;
285
286         if (dev->driver->load)
287                 if ((ret = dev->driver->load(dev, ent->driver_data)))
288                         goto err_g4;
289
290         DRM_INFO("Initialized %s %d.%d.%d %s on minor %d\n",
291                  driver->name, driver->major, driver->minor, driver->patchlevel,
292                  driver->date, dev->primary->index);
293
294         return 0;
295 err_g4:
296         drm_put_minor(&dev->primary);
297 err_g3:
298         if (!drm_fb_loaded)
299                 pci_disable_device(pdev);
300 err_g2:
301         if (!drm_fb_loaded)
302                 pci_release_regions(pdev);
303 err_g1:
304         if (!drm_fb_loaded)
305                 pci_set_drvdata(pdev, NULL);
306
307         drm_free(dev, sizeof(*dev), DRM_MEM_STUB);
308         printk(KERN_ERR "DRM: drm_get_dev failed.\n");
309         return ret;
310 }
311 EXPORT_SYMBOL(drm_get_dev);
312
313
314 /**
315  * Put a device minor number.
316  *
317  * \param dev device data structure
318  * \return always zero
319  *
320  * Cleans up the proc resources. If it is the last minor then release the foreign
321  * "drm" data, otherwise unregisters the "drm" data, frees the dev list and
322  * unregisters the character device.
323  */
324 int drm_put_dev(struct drm_device * dev)
325 {
326         DRM_DEBUG("release primary %s\n", dev->driver->pci_driver.name);
327
328         if (dev->unique) {
329                 drm_free(dev->unique, strlen(dev->unique) + 1, DRM_MEM_DRIVER);
330                 dev->unique = NULL;
331                 dev->unique_len = 0;
332         }
333         if (dev->devname) {
334                 drm_free(dev->devname, strlen(dev->devname) + 1,
335                          DRM_MEM_DRIVER);
336                 dev->devname = NULL;
337         }
338         drm_free(dev, sizeof(*dev), DRM_MEM_STUB);
339         return 0;
340 }
341
342 /**
343  * Put a secondary minor number.
344  *
345  * \param sec_minor - structure to be released
346  * \return always zero
347  *
348  * Cleans up the proc resources. Not legal for this to be the
349  * last minor released.
350  *
351  */
352 int drm_put_minor(struct drm_minor **minor_p)
353 {
354         struct drm_minor *minor = *minor_p;
355         DRM_DEBUG("release secondary minor %d\n", minor->index);
356
357         if (minor->type == DRM_MINOR_LEGACY)
358                 drm_proc_cleanup(minor, drm_proc_root);
359         drm_sysfs_device_remove(minor);
360
361         idr_remove(&drm_minors_idr, minor->index);
362
363         kfree(minor);
364         *minor_p = NULL;
365         return 0;
366 }