OSDN Git Service

linux: on_each_cpu has 3 args on 2.6.27
[android-x86/external-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         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                 if (dev->driver->proc_init) {
226                         ret = dev->driver->proc_init(new_minor);
227                         if (ret) {
228                                 DRM_ERROR("DRM: Driver failed to initialize /proc/dri.\n");
229                                 goto err_mem;
230                         }
231                 }
232         } else
233                 new_minor->dev_root = NULL;
234
235         ret = drm_sysfs_device_add(new_minor);
236         if (ret) {
237                 printk(KERN_ERR
238                        "DRM: Error sysfs_device_add.\n");
239                 goto err_g2;
240         }
241         *minor = new_minor;
242         
243         DRM_DEBUG("new minor assigned %d\n", minor_id);
244         return 0;
245
246
247 err_g2:
248         if (new_minor->type == DRM_MINOR_LEGACY) {
249                 if (dev->driver->proc_cleanup)
250                         dev->driver->proc_cleanup(new_minor);
251                 drm_proc_cleanup(new_minor, drm_proc_root);
252         }
253 err_mem:
254         kfree(new_minor);
255 err_idr:
256         idr_remove(&drm_minors_idr, minor_id);
257         *minor = NULL;
258         return ret;
259 }
260
261 /**
262  * Register.
263  *
264  * \param pdev - PCI device structure
265  * \param ent entry from the PCI ID table with device type flags
266  * \return zero on success or a negative number on failure.
267  *
268  * Attempt to gets inter module "drm" information. If we are first
269  * then register the character device and inter module information.
270  * Try and register, if we fail to register, backout previous work.
271  */
272 int drm_get_dev(struct pci_dev *pdev, const struct pci_device_id *ent,
273                 struct drm_driver *driver)
274 {
275         struct drm_device *dev;
276         int ret;
277
278         DRM_DEBUG("\n");
279
280         dev = drm_calloc(1, sizeof(*dev), DRM_MEM_STUB);
281         if (!dev)
282                 return -ENOMEM;
283
284         if (!drm_fb_loaded) {
285                 pci_set_drvdata(pdev, dev);
286                 ret = pci_request_regions(pdev, driver->pci_driver.name);
287                 if (ret)
288                         goto err_g1;
289         }
290
291         ret = pci_enable_device(pdev);
292         if (ret)
293                 goto err_g2;
294         pci_set_master(pdev);
295
296         if ((ret = drm_fill_in_dev(dev, pdev, ent, driver))) {
297                 printk(KERN_ERR "DRM: fill_in_dev failed\n");
298                 goto err_g3;
299         }
300
301         /* only add the control node on a modesetting platform */
302         if ((ret = drm_get_minor(dev, &dev->primary, DRM_MINOR_LEGACY)))
303                 goto err_g3;
304
305         if (dev->driver->load)
306                 if ((ret = dev->driver->load(dev, ent->driver_data)))
307                         goto err_g4;
308
309         DRM_INFO("Initialized %s %d.%d.%d %s on minor %d\n",
310                  driver->name, driver->major, driver->minor, driver->patchlevel,
311                  driver->date, dev->primary->index);
312
313         return 0;
314 err_g4:
315         drm_put_minor(dev);
316 err_g3:
317         if (!drm_fb_loaded)
318                 pci_disable_device(pdev);
319 err_g2:
320         if (!drm_fb_loaded)
321                 pci_release_regions(pdev);
322 err_g1:
323         if (!drm_fb_loaded)
324                 pci_set_drvdata(pdev, NULL);
325
326         drm_free(dev, sizeof(*dev), DRM_MEM_STUB);
327         printk(KERN_ERR "DRM: drm_get_dev failed.\n");
328         return ret;
329 }
330 EXPORT_SYMBOL(drm_get_dev);
331
332
333 /**
334  * Put a device minor number.
335  *
336  * \param dev device data structure
337  * \return always zero
338  *
339  * Cleans up the proc resources. If it is the last minor then release the foreign
340  * "drm" data, otherwise unregisters the "drm" data, frees the dev list and
341  * unregisters the character device.
342  */
343 int drm_put_dev(struct drm_device * dev)
344 {
345         DRM_DEBUG("release primary %s\n", dev->driver->pci_driver.name);
346
347         if (dev->unique) {
348                 drm_free(dev->unique, strlen(dev->unique) + 1, DRM_MEM_DRIVER);
349                 dev->unique = NULL;
350                 dev->unique_len = 0;
351         }
352         if (dev->devname) {
353                 drm_free(dev->devname, strlen(dev->devname) + 1,
354                          DRM_MEM_DRIVER);
355                 dev->devname = NULL;
356         }
357         drm_free(dev, sizeof(*dev), DRM_MEM_STUB);
358         return 0;
359 }
360
361 /**
362  * Put a secondary minor number.
363  *
364  * \param sec_minor - structure to be released
365  * \return always zero
366  *
367  * Cleans up the proc resources. Not legal for this to be the
368  * last minor released.
369  *
370  */
371 int drm_put_minor(struct drm_device *dev)
372 {
373         struct drm_minor **minor_p = &dev->primary;
374         struct drm_minor *minor = *minor_p;
375         DRM_DEBUG("release secondary minor %d\n", minor->index);
376
377         if (minor->type == DRM_MINOR_LEGACY) {
378                 if (dev->driver->proc_cleanup)
379                         dev->driver->proc_cleanup(minor);
380                 drm_proc_cleanup(minor, drm_proc_root);
381         }
382         drm_sysfs_device_remove(minor);
383
384         idr_remove(&drm_minors_idr, minor->index);
385
386         kfree(minor);
387         *minor_p = NULL;
388         return 0;
389 }