drm_stub.c 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529
  1. /**
  2. * \file drm_stub.h
  3. * Stub support
  4. *
  5. * \author Rickard E. (Rik) Faith <faith@valinux.com>
  6. */
  7. /*
  8. * Created: Fri Jan 19 10:48:35 2001 by faith@acm.org
  9. *
  10. * Copyright 2001 VA Linux Systems, Inc., Sunnyvale, California.
  11. * All Rights Reserved.
  12. *
  13. * Permission is hereby granted, free of charge, to any person obtaining a
  14. * copy of this software and associated documentation files (the "Software"),
  15. * to deal in the Software without restriction, including without limitation
  16. * the rights to use, copy, modify, merge, publish, distribute, sublicense,
  17. * and/or sell copies of the Software, and to permit persons to whom the
  18. * Software is furnished to do so, subject to the following conditions:
  19. *
  20. * The above copyright notice and this permission notice (including the next
  21. * paragraph) shall be included in all copies or substantial portions of the
  22. * Software.
  23. *
  24. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  25. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  26. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
  27. * PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
  28. * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
  29. * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
  30. * DEALINGS IN THE SOFTWARE.
  31. */
  32. #include <linux/module.h>
  33. #include <linux/moduleparam.h>
  34. #include "drmP.h"
  35. #include "drm_core.h"
  36. unsigned int drm_debug = 0; /* 1 to enable debug output */
  37. EXPORT_SYMBOL(drm_debug);
  38. MODULE_AUTHOR(CORE_AUTHOR);
  39. MODULE_DESCRIPTION(CORE_DESC);
  40. MODULE_LICENSE("GPL and additional rights");
  41. MODULE_PARM_DESC(debug, "Enable debug output");
  42. module_param_named(debug, drm_debug, int, 0600);
  43. struct idr drm_minors_idr;
  44. struct class *drm_class;
  45. struct proc_dir_entry *drm_proc_root;
  46. struct dentry *drm_debugfs_root;
  47. static int drm_minor_get_id(struct drm_device *dev, int type)
  48. {
  49. int new_id;
  50. int ret;
  51. int base = 0, limit = 63;
  52. if (type == DRM_MINOR_CONTROL) {
  53. base += 64;
  54. limit = base + 127;
  55. } else if (type == DRM_MINOR_RENDER) {
  56. base += 128;
  57. limit = base + 255;
  58. }
  59. again:
  60. if (idr_pre_get(&drm_minors_idr, GFP_KERNEL) == 0) {
  61. DRM_ERROR("Out of memory expanding drawable idr\n");
  62. return -ENOMEM;
  63. }
  64. mutex_lock(&dev->struct_mutex);
  65. ret = idr_get_new_above(&drm_minors_idr, NULL,
  66. base, &new_id);
  67. mutex_unlock(&dev->struct_mutex);
  68. if (ret == -EAGAIN) {
  69. goto again;
  70. } else if (ret) {
  71. return ret;
  72. }
  73. if (new_id >= limit) {
  74. idr_remove(&drm_minors_idr, new_id);
  75. return -EINVAL;
  76. }
  77. return new_id;
  78. }
  79. struct drm_master *drm_master_create(struct drm_minor *minor)
  80. {
  81. struct drm_master *master;
  82. master = drm_calloc(1, sizeof(*master), DRM_MEM_DRIVER);
  83. if (!master)
  84. return NULL;
  85. kref_init(&master->refcount);
  86. spin_lock_init(&master->lock.spinlock);
  87. init_waitqueue_head(&master->lock.lock_queue);
  88. drm_ht_create(&master->magiclist, DRM_MAGIC_HASH_ORDER);
  89. INIT_LIST_HEAD(&master->magicfree);
  90. master->minor = minor;
  91. list_add_tail(&master->head, &minor->master_list);
  92. return master;
  93. }
  94. struct drm_master *drm_master_get(struct drm_master *master)
  95. {
  96. kref_get(&master->refcount);
  97. return master;
  98. }
  99. static void drm_master_destroy(struct kref *kref)
  100. {
  101. struct drm_master *master = container_of(kref, struct drm_master, refcount);
  102. struct drm_magic_entry *pt, *next;
  103. struct drm_device *dev = master->minor->dev;
  104. struct drm_map_list *r_list, *list_temp;
  105. list_del(&master->head);
  106. if (dev->driver->master_destroy)
  107. dev->driver->master_destroy(dev, master);
  108. list_for_each_entry_safe(r_list, list_temp, &dev->maplist, head) {
  109. if (r_list->master == master) {
  110. drm_rmmap_locked(dev, r_list->map);
  111. r_list = NULL;
  112. }
  113. }
  114. if (master->unique) {
  115. drm_free(master->unique, master->unique_size, DRM_MEM_DRIVER);
  116. master->unique = NULL;
  117. master->unique_len = 0;
  118. }
  119. list_for_each_entry_safe(pt, next, &master->magicfree, head) {
  120. list_del(&pt->head);
  121. drm_ht_remove_item(&master->magiclist, &pt->hash_item);
  122. drm_free(pt, sizeof(*pt), DRM_MEM_MAGIC);
  123. }
  124. drm_ht_remove(&master->magiclist);
  125. drm_free(master, sizeof(*master), DRM_MEM_DRIVER);
  126. }
  127. void drm_master_put(struct drm_master **master)
  128. {
  129. kref_put(&(*master)->refcount, drm_master_destroy);
  130. *master = NULL;
  131. }
  132. int drm_setmaster_ioctl(struct drm_device *dev, void *data,
  133. struct drm_file *file_priv)
  134. {
  135. if (file_priv->is_master)
  136. return 0;
  137. if (file_priv->minor->master && file_priv->minor->master != file_priv->master)
  138. return -EINVAL;
  139. if (!file_priv->master)
  140. return -EINVAL;
  141. if (!file_priv->minor->master &&
  142. file_priv->minor->master != file_priv->master) {
  143. mutex_lock(&dev->struct_mutex);
  144. file_priv->minor->master = drm_master_get(file_priv->master);
  145. file_priv->is_master = 1;
  146. mutex_unlock(&dev->struct_mutex);
  147. }
  148. return 0;
  149. }
  150. int drm_dropmaster_ioctl(struct drm_device *dev, void *data,
  151. struct drm_file *file_priv)
  152. {
  153. if (!file_priv->is_master)
  154. return -EINVAL;
  155. if (!file_priv->minor->master)
  156. return -EINVAL;
  157. mutex_lock(&dev->struct_mutex);
  158. drm_master_put(&file_priv->minor->master);
  159. file_priv->is_master = 0;
  160. mutex_unlock(&dev->struct_mutex);
  161. return 0;
  162. }
  163. static int drm_fill_in_dev(struct drm_device * dev, struct pci_dev *pdev,
  164. const struct pci_device_id *ent,
  165. struct drm_driver *driver)
  166. {
  167. int retcode;
  168. INIT_LIST_HEAD(&dev->filelist);
  169. INIT_LIST_HEAD(&dev->ctxlist);
  170. INIT_LIST_HEAD(&dev->vmalist);
  171. INIT_LIST_HEAD(&dev->maplist);
  172. spin_lock_init(&dev->count_lock);
  173. spin_lock_init(&dev->drw_lock);
  174. init_timer(&dev->timer);
  175. mutex_init(&dev->struct_mutex);
  176. mutex_init(&dev->ctxlist_mutex);
  177. idr_init(&dev->drw_idr);
  178. dev->pdev = pdev;
  179. dev->pci_device = pdev->device;
  180. dev->pci_vendor = pdev->vendor;
  181. #ifdef __alpha__
  182. dev->hose = pdev->sysdata;
  183. #endif
  184. if (drm_ht_create(&dev->map_hash, 12)) {
  185. return -ENOMEM;
  186. }
  187. /* the DRM has 6 basic counters */
  188. dev->counters = 6;
  189. dev->types[0] = _DRM_STAT_LOCK;
  190. dev->types[1] = _DRM_STAT_OPENS;
  191. dev->types[2] = _DRM_STAT_CLOSES;
  192. dev->types[3] = _DRM_STAT_IOCTLS;
  193. dev->types[4] = _DRM_STAT_LOCKS;
  194. dev->types[5] = _DRM_STAT_UNLOCKS;
  195. dev->driver = driver;
  196. if (drm_core_has_AGP(dev)) {
  197. if (drm_device_is_agp(dev))
  198. dev->agp = drm_agp_init(dev);
  199. if (drm_core_check_feature(dev, DRIVER_REQUIRE_AGP)
  200. && (dev->agp == NULL)) {
  201. DRM_ERROR("Cannot initialize the agpgart module.\n");
  202. retcode = -EINVAL;
  203. goto error_out_unreg;
  204. }
  205. if (drm_core_has_MTRR(dev)) {
  206. if (dev->agp)
  207. dev->agp->agp_mtrr =
  208. mtrr_add(dev->agp->agp_info.aper_base,
  209. dev->agp->agp_info.aper_size *
  210. 1024 * 1024, MTRR_TYPE_WRCOMB, 1);
  211. }
  212. }
  213. retcode = drm_ctxbitmap_init(dev);
  214. if (retcode) {
  215. DRM_ERROR("Cannot allocate memory for context bitmap.\n");
  216. goto error_out_unreg;
  217. }
  218. if (driver->driver_features & DRIVER_GEM) {
  219. retcode = drm_gem_init(dev);
  220. if (retcode) {
  221. DRM_ERROR("Cannot initialize graphics execution "
  222. "manager (GEM)\n");
  223. goto error_out_unreg;
  224. }
  225. }
  226. return 0;
  227. error_out_unreg:
  228. drm_lastclose(dev);
  229. return retcode;
  230. }
  231. /**
  232. * Get a secondary minor number.
  233. *
  234. * \param dev device data structure
  235. * \param sec-minor structure to hold the assigned minor
  236. * \return negative number on failure.
  237. *
  238. * Search an empty entry and initialize it to the given parameters, and
  239. * create the proc init entry via proc_init(). This routines assigns
  240. * minor numbers to secondary heads of multi-headed cards
  241. */
  242. static int drm_get_minor(struct drm_device *dev, struct drm_minor **minor, int type)
  243. {
  244. struct drm_minor *new_minor;
  245. int ret;
  246. int minor_id;
  247. DRM_DEBUG("\n");
  248. minor_id = drm_minor_get_id(dev, type);
  249. if (minor_id < 0)
  250. return minor_id;
  251. new_minor = kzalloc(sizeof(struct drm_minor), GFP_KERNEL);
  252. if (!new_minor) {
  253. ret = -ENOMEM;
  254. goto err_idr;
  255. }
  256. new_minor->type = type;
  257. new_minor->device = MKDEV(DRM_MAJOR, minor_id);
  258. new_minor->dev = dev;
  259. new_minor->index = minor_id;
  260. INIT_LIST_HEAD(&new_minor->master_list);
  261. idr_replace(&drm_minors_idr, new_minor, minor_id);
  262. if (type == DRM_MINOR_LEGACY) {
  263. ret = drm_proc_init(new_minor, minor_id, drm_proc_root);
  264. if (ret) {
  265. DRM_ERROR("DRM: Failed to initialize /proc/dri.\n");
  266. goto err_mem;
  267. }
  268. } else
  269. new_minor->proc_root = NULL;
  270. #if defined(CONFIG_DEBUG_FS)
  271. ret = drm_debugfs_init(new_minor, minor_id, drm_debugfs_root);
  272. if (ret) {
  273. DRM_ERROR("DRM: Failed to initialize /debugfs/dri.\n");
  274. goto err_g2;
  275. }
  276. #endif
  277. ret = drm_sysfs_device_add(new_minor);
  278. if (ret) {
  279. printk(KERN_ERR
  280. "DRM: Error sysfs_device_add.\n");
  281. goto err_g2;
  282. }
  283. *minor = new_minor;
  284. DRM_DEBUG("new minor assigned %d\n", minor_id);
  285. return 0;
  286. err_g2:
  287. if (new_minor->type == DRM_MINOR_LEGACY)
  288. drm_proc_cleanup(new_minor, drm_proc_root);
  289. err_mem:
  290. kfree(new_minor);
  291. err_idr:
  292. idr_remove(&drm_minors_idr, minor_id);
  293. *minor = NULL;
  294. return ret;
  295. }
  296. /**
  297. * Register.
  298. *
  299. * \param pdev - PCI device structure
  300. * \param ent entry from the PCI ID table with device type flags
  301. * \return zero on success or a negative number on failure.
  302. *
  303. * Attempt to gets inter module "drm" information. If we are first
  304. * then register the character device and inter module information.
  305. * Try and register, if we fail to register, backout previous work.
  306. */
  307. int drm_get_dev(struct pci_dev *pdev, const struct pci_device_id *ent,
  308. struct drm_driver *driver)
  309. {
  310. struct drm_device *dev;
  311. int ret;
  312. DRM_DEBUG("\n");
  313. dev = drm_calloc(1, sizeof(*dev), DRM_MEM_STUB);
  314. if (!dev)
  315. return -ENOMEM;
  316. ret = pci_enable_device(pdev);
  317. if (ret)
  318. goto err_g1;
  319. pci_set_master(pdev);
  320. if ((ret = drm_fill_in_dev(dev, pdev, ent, driver))) {
  321. printk(KERN_ERR "DRM: Fill_in_dev failed.\n");
  322. goto err_g2;
  323. }
  324. if (drm_core_check_feature(dev, DRIVER_MODESET)) {
  325. pci_set_drvdata(pdev, dev);
  326. ret = drm_get_minor(dev, &dev->control, DRM_MINOR_CONTROL);
  327. if (ret)
  328. goto err_g2;
  329. }
  330. if ((ret = drm_get_minor(dev, &dev->primary, DRM_MINOR_LEGACY)))
  331. goto err_g3;
  332. if (dev->driver->load) {
  333. ret = dev->driver->load(dev, ent->driver_data);
  334. if (ret)
  335. goto err_g4;
  336. }
  337. /* setup the grouping for the legacy output */
  338. if (drm_core_check_feature(dev, DRIVER_MODESET)) {
  339. ret = drm_mode_group_init_legacy_group(dev, &dev->primary->mode_group);
  340. if (ret)
  341. goto err_g4;
  342. }
  343. list_add_tail(&dev->driver_item, &driver->device_list);
  344. DRM_INFO("Initialized %s %d.%d.%d %s for %s on minor %d\n",
  345. driver->name, driver->major, driver->minor, driver->patchlevel,
  346. driver->date, pci_name(pdev), dev->primary->index);
  347. return 0;
  348. err_g4:
  349. drm_put_minor(&dev->primary);
  350. err_g3:
  351. if (drm_core_check_feature(dev, DRIVER_MODESET))
  352. drm_put_minor(&dev->control);
  353. err_g2:
  354. pci_disable_device(pdev);
  355. err_g1:
  356. drm_free(dev, sizeof(*dev), DRM_MEM_STUB);
  357. return ret;
  358. }
  359. EXPORT_SYMBOL(drm_get_dev);
  360. /**
  361. * Put a secondary minor number.
  362. *
  363. * \param sec_minor - structure to be released
  364. * \return always zero
  365. *
  366. * Cleans up the proc resources. Not legal for this to be the
  367. * last minor released.
  368. *
  369. */
  370. int drm_put_minor(struct drm_minor **minor_p)
  371. {
  372. struct drm_minor *minor = *minor_p;
  373. DRM_DEBUG("release secondary minor %d\n", minor->index);
  374. if (minor->type == DRM_MINOR_LEGACY)
  375. drm_proc_cleanup(minor, drm_proc_root);
  376. #if defined(CONFIG_DEBUG_FS)
  377. drm_debugfs_cleanup(minor);
  378. #endif
  379. drm_sysfs_device_remove(minor);
  380. idr_remove(&drm_minors_idr, minor->index);
  381. kfree(minor);
  382. *minor_p = NULL;
  383. return 0;
  384. }
  385. /**
  386. * Called via drm_exit() at module unload time or when pci device is
  387. * unplugged.
  388. *
  389. * Cleans up all DRM device, calling drm_lastclose().
  390. *
  391. * \sa drm_init
  392. */
  393. void drm_put_dev(struct drm_device *dev)
  394. {
  395. struct drm_driver *driver = dev->driver;
  396. struct drm_map_list *r_list, *list_temp;
  397. DRM_DEBUG("\n");
  398. if (!dev) {
  399. DRM_ERROR("cleanup called no dev\n");
  400. return;
  401. }
  402. drm_vblank_cleanup(dev);
  403. drm_lastclose(dev);
  404. if (drm_core_has_MTRR(dev) && drm_core_has_AGP(dev) &&
  405. dev->agp && dev->agp->agp_mtrr >= 0) {
  406. int retval;
  407. retval = mtrr_del(dev->agp->agp_mtrr,
  408. dev->agp->agp_info.aper_base,
  409. dev->agp->agp_info.aper_size * 1024 * 1024);
  410. DRM_DEBUG("mtrr_del=%d\n", retval);
  411. }
  412. if (dev->driver->unload)
  413. dev->driver->unload(dev);
  414. if (drm_core_has_AGP(dev) && dev->agp) {
  415. drm_free(dev->agp, sizeof(*dev->agp), DRM_MEM_AGPLISTS);
  416. dev->agp = NULL;
  417. }
  418. list_for_each_entry_safe(r_list, list_temp, &dev->maplist, head)
  419. drm_rmmap(dev, r_list->map);
  420. drm_ht_remove(&dev->map_hash);
  421. drm_ctxbitmap_cleanup(dev);
  422. if (drm_core_check_feature(dev, DRIVER_MODESET))
  423. drm_put_minor(&dev->control);
  424. if (driver->driver_features & DRIVER_GEM)
  425. drm_gem_destroy(dev);
  426. drm_put_minor(&dev->primary);
  427. if (dev->devname) {
  428. drm_free(dev->devname, strlen(dev->devname) + 1,
  429. DRM_MEM_DRIVER);
  430. dev->devname = NULL;
  431. }
  432. drm_free(dev, sizeof(*dev), DRM_MEM_STUB);
  433. }
  434. EXPORT_SYMBOL(drm_put_dev);