drm_auth.h 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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. * struct drm_master - drm master structure
  31. *
  32. * @refcount: Refcount for this master object.
  33. * @dev: Link back to the DRM device
  34. * @unique: Unique identifier: e.g. busid. Protected by drm_global_mutex.
  35. * @unique_len: Length of unique field. Protected by drm_global_mutex.
  36. * @magic_map: Map of used authentication tokens. Protected by struct_mutex.
  37. * @lock: DRI lock information.
  38. * @driver_priv: Pointer to driver-private information.
  39. *
  40. * Note that master structures are only relevant for the legacy/primary device
  41. * nodes, hence there can only be one per device, not one per drm_minor.
  42. */
  43. struct drm_master {
  44. struct kref refcount;
  45. struct drm_device *dev;
  46. char *unique;
  47. int unique_len;
  48. struct idr magic_map;
  49. struct drm_lock_data lock;
  50. void *driver_priv;
  51. };
  52. struct drm_master *drm_master_get(struct drm_master *master);
  53. void drm_master_put(struct drm_master **master);
  54. bool drm_is_current_master(struct drm_file *fpriv);
  55. #endif