drm_legacy_misc.c 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. /*
  2. * \file drm_legacy_misc.c
  3. * Misc legacy support functions.
  4. *
  5. * \author Rickard E. (Rik) Faith <[email protected]>
  6. * \author Gareth Hughes <[email protected]>
  7. */
  8. /*
  9. * Created: Tue Feb 2 08:37:54 1999 by [email protected]
  10. *
  11. * Copyright 1999 Precision Insight, Inc., Cedar Park, Texas.
  12. * Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California.
  13. * All Rights Reserved.
  14. *
  15. * Permission is hereby granted, free of charge, to any person obtaining a
  16. * copy of this software and associated documentation files (the "Software"),
  17. * to deal in the Software without restriction, including without limitation
  18. * the rights to use, copy, modify, merge, publish, distribute, sublicense,
  19. * and/or sell copies of the Software, and to permit persons to whom the
  20. * Software is furnished to do so, subject to the following conditions:
  21. *
  22. * The above copyright notice and this permission notice (including the next
  23. * paragraph) shall be included in all copies or substantial portions of the
  24. * Software.
  25. *
  26. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  27. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  28. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
  29. * VA LINUX SYSTEMS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
  30. * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
  31. * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
  32. * OTHER DEALINGS IN THE SOFTWARE.
  33. */
  34. #include <drm/drm_device.h>
  35. #include <drm/drm_drv.h>
  36. #include <drm/drm_print.h>
  37. #include "drm_internal.h"
  38. #include "drm_legacy.h"
  39. void drm_legacy_init_members(struct drm_device *dev)
  40. {
  41. INIT_LIST_HEAD(&dev->ctxlist);
  42. INIT_LIST_HEAD(&dev->vmalist);
  43. INIT_LIST_HEAD(&dev->maplist);
  44. spin_lock_init(&dev->buf_lock);
  45. mutex_init(&dev->ctxlist_mutex);
  46. }
  47. void drm_legacy_destroy_members(struct drm_device *dev)
  48. {
  49. mutex_destroy(&dev->ctxlist_mutex);
  50. }
  51. int drm_legacy_setup(struct drm_device * dev)
  52. {
  53. int ret;
  54. if (dev->driver->firstopen &&
  55. drm_core_check_feature(dev, DRIVER_LEGACY)) {
  56. ret = dev->driver->firstopen(dev);
  57. if (ret != 0)
  58. return ret;
  59. }
  60. ret = drm_legacy_dma_setup(dev);
  61. if (ret < 0)
  62. return ret;
  63. DRM_DEBUG("\n");
  64. return 0;
  65. }
  66. void drm_legacy_dev_reinit(struct drm_device *dev)
  67. {
  68. if (dev->irq_enabled)
  69. drm_legacy_irq_uninstall(dev);
  70. mutex_lock(&dev->struct_mutex);
  71. drm_legacy_agp_clear(dev);
  72. drm_legacy_sg_cleanup(dev);
  73. drm_legacy_vma_flush(dev);
  74. drm_legacy_dma_takedown(dev);
  75. mutex_unlock(&dev->struct_mutex);
  76. dev->sigdata.lock = NULL;
  77. dev->context_flag = 0;
  78. dev->last_context = 0;
  79. dev->if_version = 0;
  80. DRM_DEBUG("lastclose completed\n");
  81. }
  82. void drm_master_legacy_init(struct drm_master *master)
  83. {
  84. spin_lock_init(&master->lock.spinlock);
  85. init_waitqueue_head(&master->lock.lock_queue);
  86. }