5 * \author Rickard E. (Rik) Faith <faith@valinux.com>
9 * Created: Fri Jan 19 10:48:35 2001 by faith@acm.org
11 * Copyright 2001 VA Linux Systems, Inc., Sunnyvale, California.
12 * All Rights Reserved.
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:
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
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.
34 #include <linux/module.h>
35 #include <linux/moduleparam.h>
39 unsigned int drm_debug = 0; /* 1 to enable debug output */
40 EXPORT_SYMBOL(drm_debug);
42 MODULE_AUTHOR(CORE_AUTHOR);
43 MODULE_DESCRIPTION(CORE_DESC);
44 MODULE_LICENSE("GPL and additional rights");
45 MODULE_PARM_DESC(debug, "Enable debug output");
47 module_param_named(debug, drm_debug, int, 0600);
49 struct idr drm_minors_idr;
51 struct class *drm_class;
52 struct proc_dir_entry *drm_proc_root;
53 struct dentry *drm_debugfs_root;
55 static int drm_minor_get_id(struct drm_device *dev, int type)
59 int base = 0, limit = 63;
61 if (type == DRM_MINOR_CONTROL) {
64 } else if (type == DRM_MINOR_RENDER) {
70 if (idr_pre_get(&drm_minors_idr, GFP_KERNEL) == 0) {
71 DRM_ERROR("Out of memory expanding drawable idr\n");
74 mutex_lock(&dev->struct_mutex);
75 ret = idr_get_new_above(&drm_minors_idr, NULL,
77 mutex_unlock(&dev->struct_mutex);
84 if (new_id >= limit) {
85 idr_remove(&drm_minors_idr, new_id);
91 struct drm_master *drm_master_create(struct drm_minor *minor)
93 struct drm_master *master;
95 master = drm_calloc(1, sizeof(*master), DRM_MEM_DRIVER);
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;
106 list_add_tail(&master->head, &minor->master_list);
111 struct drm_master *drm_master_get(struct drm_master *master)
113 kref_get(&master->refcount);
117 static void drm_master_destroy(struct kref *kref)
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 struct drm_map_list *r_list, *list_temp;
124 list_del(&master->head);
126 if (dev->driver->master_destroy)
127 dev->driver->master_destroy(dev, master);
129 list_for_each_entry_safe(r_list, list_temp, &dev->maplist, head) {
130 if (r_list->master == master) {
131 drm_rmmap_locked(dev, r_list->map);
136 if (master->unique) {
137 drm_free(master->unique, master->unique_size, DRM_MEM_DRIVER);
138 master->unique = NULL;
139 master->unique_len = 0;
142 list_for_each_entry_safe(pt, next, &master->magicfree, head) {
144 drm_ht_remove_item(&master->magiclist, &pt->hash_item);
145 drm_free(pt, sizeof(*pt), DRM_MEM_MAGIC);
148 drm_ht_remove(&master->magiclist);
150 drm_free(master, sizeof(*master), DRM_MEM_DRIVER);
153 void drm_master_put(struct drm_master **master)
155 kref_put(&(*master)->refcount, drm_master_destroy);
159 int drm_setmaster_ioctl(struct drm_device *dev, void *data,
160 struct drm_file *file_priv)
162 if (file_priv->is_master)
165 if (file_priv->minor->master && file_priv->minor->master != file_priv->master)
168 if (!file_priv->master)
171 if (!file_priv->minor->master &&
172 file_priv->minor->master != file_priv->master) {
173 mutex_lock(&dev->struct_mutex);
174 file_priv->minor->master = drm_master_get(file_priv->master);
175 file_priv->is_master = 1;
176 mutex_unlock(&dev->struct_mutex);
182 int drm_dropmaster_ioctl(struct drm_device *dev, void *data,
183 struct drm_file *file_priv)
185 if (!file_priv->is_master)
188 if (!file_priv->minor->master)
191 mutex_lock(&dev->struct_mutex);
192 drm_master_put(&file_priv->minor->master);
193 file_priv->is_master = 0;
194 mutex_unlock(&dev->struct_mutex);
198 static int drm_fill_in_dev(struct drm_device * dev, struct pci_dev *pdev,
199 const struct pci_device_id *ent,
200 struct drm_driver *driver)
204 INIT_LIST_HEAD(&dev->filelist);
205 INIT_LIST_HEAD(&dev->ctxlist);
206 INIT_LIST_HEAD(&dev->vmalist);
207 INIT_LIST_HEAD(&dev->maplist);
209 spin_lock_init(&dev->count_lock);
210 spin_lock_init(&dev->drw_lock);
211 init_timer(&dev->timer);
212 mutex_init(&dev->struct_mutex);
213 mutex_init(&dev->ctxlist_mutex);
215 idr_init(&dev->drw_idr);
218 dev->pci_device = pdev->device;
219 dev->pci_vendor = pdev->vendor;
222 dev->hose = pdev->sysdata;
225 if (drm_ht_create(&dev->map_hash, 12)) {
229 /* the DRM has 6 basic counters */
231 dev->types[0] = _DRM_STAT_LOCK;
232 dev->types[1] = _DRM_STAT_OPENS;
233 dev->types[2] = _DRM_STAT_CLOSES;
234 dev->types[3] = _DRM_STAT_IOCTLS;
235 dev->types[4] = _DRM_STAT_LOCKS;
236 dev->types[5] = _DRM_STAT_UNLOCKS;
238 dev->driver = driver;
240 if (drm_core_has_AGP(dev)) {
241 if (drm_device_is_agp(dev))
242 dev->agp = drm_agp_init(dev);
243 if (drm_core_check_feature(dev, DRIVER_REQUIRE_AGP)
244 && (dev->agp == NULL)) {
245 DRM_ERROR("Cannot initialize the agpgart module.\n");
247 goto error_out_unreg;
249 if (drm_core_has_MTRR(dev)) {
252 mtrr_add(dev->agp->agp_info.aper_base,
253 dev->agp->agp_info.aper_size *
254 1024 * 1024, MTRR_TYPE_WRCOMB, 1);
259 retcode = drm_ctxbitmap_init(dev);
261 DRM_ERROR("Cannot allocate memory for context bitmap.\n");
262 goto error_out_unreg;
265 if (driver->driver_features & DRIVER_GEM) {
266 retcode = drm_gem_init(dev);
268 DRM_ERROR("Cannot initialize graphics execution "
270 goto error_out_unreg;
283 * Get a secondary minor number.
285 * \param dev device data structure
286 * \param sec-minor structure to hold the assigned minor
287 * \return negative number on failure.
289 * Search an empty entry and initialize it to the given parameters, and
290 * create the proc init entry via proc_init(). This routines assigns
291 * minor numbers to secondary heads of multi-headed cards
293 static int drm_get_minor(struct drm_device *dev, struct drm_minor **minor, int type)
295 struct drm_minor *new_minor;
301 minor_id = drm_minor_get_id(dev, type);
305 new_minor = kzalloc(sizeof(struct drm_minor), GFP_KERNEL);
311 new_minor->type = type;
312 new_minor->device = MKDEV(DRM_MAJOR, minor_id);
313 new_minor->dev = dev;
314 new_minor->index = minor_id;
315 INIT_LIST_HEAD(&new_minor->master_list);
317 idr_replace(&drm_minors_idr, new_minor, minor_id);
319 if (type == DRM_MINOR_LEGACY) {
320 ret = drm_proc_init(new_minor, minor_id, drm_proc_root);
322 DRM_ERROR("DRM: Failed to initialize /proc/dri.\n");
326 new_minor->proc_root = NULL;
328 #if defined(CONFIG_DEBUG_FS)
329 ret = drm_debugfs_init(new_minor, minor_id, drm_debugfs_root);
331 DRM_ERROR("DRM: Failed to initialize /debugfs/dri.\n");
336 ret = drm_sysfs_device_add(new_minor);
339 "DRM: Error sysfs_device_add.\n");
344 DRM_DEBUG("new minor assigned %d\n", minor_id);
349 if (new_minor->type == DRM_MINOR_LEGACY)
350 drm_proc_cleanup(new_minor, drm_proc_root);
354 idr_remove(&drm_minors_idr, minor_id);
362 * \param pdev - PCI device structure
363 * \param ent entry from the PCI ID table with device type flags
364 * \return zero on success or a negative number on failure.
366 * Attempt to gets inter module "drm" information. If we are first
367 * then register the character device and inter module information.
368 * Try and register, if we fail to register, backout previous work.
370 int drm_get_dev(struct pci_dev *pdev, const struct pci_device_id *ent,
371 struct drm_driver *driver)
373 struct drm_device *dev;
378 dev = drm_calloc(1, sizeof(*dev), DRM_MEM_STUB);
382 ret = pci_enable_device(pdev);
386 pci_set_master(pdev);
387 if ((ret = drm_fill_in_dev(dev, pdev, ent, driver))) {
388 printk(KERN_ERR "DRM: Fill_in_dev failed.\n");
392 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
393 pci_set_drvdata(pdev, dev);
394 ret = drm_get_minor(dev, &dev->control, DRM_MINOR_CONTROL);
399 if ((ret = drm_get_minor(dev, &dev->primary, DRM_MINOR_LEGACY)))
402 if (dev->driver->load) {
403 ret = dev->driver->load(dev, ent->driver_data);
408 /* setup the grouping for the legacy output */
409 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
410 ret = drm_mode_group_init_legacy_group(dev, &dev->primary->mode_group);
415 list_add_tail(&dev->driver_item, &driver->device_list);
417 DRM_INFO("Initialized %s %d.%d.%d %s for %s on minor %d\n",
418 driver->name, driver->major, driver->minor, driver->patchlevel,
419 driver->date, pci_name(pdev), dev->primary->index);
424 drm_put_minor(&dev->primary);
426 if (drm_core_check_feature(dev, DRIVER_MODESET))
427 drm_put_minor(&dev->control);
429 pci_disable_device(pdev);
431 drm_free(dev, sizeof(*dev), DRM_MEM_STUB);
434 EXPORT_SYMBOL(drm_get_dev);
437 * Put a secondary minor number.
439 * \param sec_minor - structure to be released
440 * \return always zero
442 * Cleans up the proc resources. Not legal for this to be the
443 * last minor released.
446 int drm_put_minor(struct drm_minor **minor_p)
448 struct drm_minor *minor = *minor_p;
450 DRM_DEBUG("release secondary minor %d\n", minor->index);
452 if (minor->type == DRM_MINOR_LEGACY)
453 drm_proc_cleanup(minor, drm_proc_root);
454 #if defined(CONFIG_DEBUG_FS)
455 drm_debugfs_cleanup(minor);
458 drm_sysfs_device_remove(minor);
460 idr_remove(&drm_minors_idr, minor->index);
468 * Called via drm_exit() at module unload time or when pci device is
471 * Cleans up all DRM device, calling drm_lastclose().
475 void drm_put_dev(struct drm_device *dev)
477 struct drm_driver *driver = dev->driver;
478 struct drm_map_list *r_list, *list_temp;
483 DRM_ERROR("cleanup called no dev\n");
487 drm_vblank_cleanup(dev);
491 if (drm_core_has_MTRR(dev) && drm_core_has_AGP(dev) &&
492 dev->agp && dev->agp->agp_mtrr >= 0) {
494 retval = mtrr_del(dev->agp->agp_mtrr,
495 dev->agp->agp_info.aper_base,
496 dev->agp->agp_info.aper_size * 1024 * 1024);
497 DRM_DEBUG("mtrr_del=%d\n", retval);
500 if (dev->driver->unload)
501 dev->driver->unload(dev);
503 if (drm_core_has_AGP(dev) && dev->agp) {
504 drm_free(dev->agp, sizeof(*dev->agp), DRM_MEM_AGPLISTS);
508 list_for_each_entry_safe(r_list, list_temp, &dev->maplist, head)
509 drm_rmmap(dev, r_list->map);
510 drm_ht_remove(&dev->map_hash);
512 drm_ctxbitmap_cleanup(dev);
514 if (drm_core_check_feature(dev, DRIVER_MODESET))
515 drm_put_minor(&dev->control);
517 if (driver->driver_features & DRIVER_GEM)
518 drm_gem_destroy(dev);
520 drm_put_minor(&dev->primary);
523 drm_free(dev->devname, strlen(dev->devname) + 1,
527 drm_free(dev, sizeof(*dev), DRM_MEM_STUB);
529 EXPORT_SYMBOL(drm_put_dev);