drm_auth.h 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. /*
  2. * Internal Header for the Direct Rendering Manager
  3. *
  4. * Copyright 2016 Intel Corporation
  5. *
  6. * Author: Daniel Vetter <daniel.vetter@ffwll.ch>
  7. *
  8. * Permission is hereby granted, free of charge, to any person obtaining a
  9. * copy of this software and associated documentation files (the "Software"),
  10. * to deal in the Software without restriction, including without limitation
  11. * the rights to use, copy, modify, merge, publish, distribute, sublicense,
  12. * and/or sell copies of the Software, and to permit persons to whom the
  13. * Software is furnished to do so, subject to the following conditions:
  14. *
  15. * The above copyright notice and this permission notice (including the next
  16. * paragraph) shall be included in all copies or substantial portions of the
  17. * Software.
  18. *
  19. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  20. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  21. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
  22. * VA LINUX SYSTEMS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
  23. * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
  24. * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
  25. * OTHER DEALINGS IN THE SOFTWARE.
  26. */
  27. #ifndef _DRM_AUTH_H_
  28. #define _DRM_AUTH_H_
  29. /*
  30. * Legacy DRI1 locking data structure. Only here instead of in drm_legacy.h for
  31. * include ordering reasons.
  32. *
  33. * DO NOT USE.
  34. */
  35. struct drm_lock_data {
  36. struct drm_hw_lock *hw_lock;
  37. struct drm_file *file_priv;
  38. wait_queue_head_t lock_queue;
  39. unsigned long lock_time;
  40. spinlock_t spinlock;
  41. uint32_t kernel_waiters;
  42. uint32_t user_waiters;
  43. int idle_has_lock;
  44. };
  45. /**
  46. * struct drm_master - drm master structure
  47. *
  48. * @refcount: Refcount for this master object.
  49. * @dev: Link back to the DRM device
  50. * @lock: DRI1 lock information.
  51. * @driver_priv: Pointer to driver-private information.
  52. * @lessor: Lease holder
  53. * @lessee_id: id for lessees. Owners always have id 0
  54. * @lessee_list: other lessees of the same master
  55. * @lessees: drm_masters leasing from this one
  56. * @leases: Objects leased to this drm_master.
  57. * @lessee_idr: All lessees under this owner (only used where lessor == NULL)
  58. *
  59. * Note that master structures are only relevant for the legacy/primary device
  60. * nodes, hence there can only be one per device, not one per drm_minor.
  61. */
  62. struct drm_master {
  63. struct kref refcount;
  64. struct drm_device *dev;
  65. /**
  66. * @unique: Unique identifier: e.g. busid. Protected by
  67. * &drm_device.master_mutex.
  68. */
  69. char *unique;
  70. /**
  71. * @unique_len: Length of unique field. Protected by
  72. * &drm_device.master_mutex.
  73. */
  74. int unique_len;
  75. /**
  76. * @magic_map: Map of used authentication tokens. Protected by
  77. * &drm_device.master_mutex.
  78. */
  79. struct idr magic_map;
  80. struct drm_lock_data lock;
  81. void *driver_priv;
  82. /* Tree of display resource leases, each of which is a drm_master struct
  83. * All of these get activated simultaneously, so drm_device master points
  84. * at the top of the tree (for which lessor is NULL). Protected by
  85. * &drm_device.mode_config.idr_mutex.
  86. */
  87. struct drm_master *lessor;
  88. int lessee_id;
  89. struct list_head lessee_list;
  90. struct list_head lessees;
  91. struct idr leases;
  92. struct idr lessee_idr;
  93. };
  94. struct drm_master *drm_master_get(struct drm_master *master);
  95. void drm_master_put(struct drm_master **master);
  96. bool drm_is_current_master(struct drm_file *fpriv);
  97. struct drm_master *drm_master_create(struct drm_device *dev);
  98. #endif