drm_internal.h 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169
  1. /*
  2. * Copyright © 2014 Intel Corporation
  3. * Daniel Vetter <daniel.vetter@ffwll.ch>
  4. *
  5. * Permission is hereby granted, free of charge, to any person obtaining a
  6. * copy of this software and associated documentation files (the "Software"),
  7. * to deal in the Software without restriction, including without limitation
  8. * the rights to use, copy, modify, merge, publish, distribute, sublicense,
  9. * and/or sell copies of the Software, and to permit persons to whom the
  10. * Software is furnished to do so, subject to the following conditions:
  11. *
  12. * The above copyright notice and this permission notice shall be included in
  13. * all copies or substantial portions of the Software.
  14. *
  15. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  16. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  17. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
  18. * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
  19. * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
  20. * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
  21. * OTHER DEALINGS IN THE SOFTWARE.
  22. */
  23. #define DRM_IF_MAJOR 1
  24. #define DRM_IF_MINOR 4
  25. /* drm_file.c */
  26. extern struct mutex drm_global_mutex;
  27. void drm_lastclose(struct drm_device *dev);
  28. /* drm_pci.c */
  29. int drm_irq_by_busid(struct drm_device *dev, void *data,
  30. struct drm_file *file_priv);
  31. void drm_pci_agp_destroy(struct drm_device *dev);
  32. int drm_pci_set_busid(struct drm_device *dev, struct drm_master *master);
  33. /* drm_prime.c */
  34. int drm_prime_handle_to_fd_ioctl(struct drm_device *dev, void *data,
  35. struct drm_file *file_priv);
  36. int drm_prime_fd_to_handle_ioctl(struct drm_device *dev, void *data,
  37. struct drm_file *file_priv);
  38. void drm_prime_init_file_private(struct drm_prime_file_private *prime_fpriv);
  39. void drm_prime_destroy_file_private(struct drm_prime_file_private *prime_fpriv);
  40. void drm_prime_remove_buf_handle_locked(struct drm_prime_file_private *prime_fpriv,
  41. struct dma_buf *dma_buf);
  42. /* drm_drv.c */
  43. struct drm_minor *drm_minor_acquire(unsigned int minor_id);
  44. void drm_minor_release(struct drm_minor *minor);
  45. /* drm_info.c */
  46. int drm_name_info(struct seq_file *m, void *data);
  47. int drm_clients_info(struct seq_file *m, void* data);
  48. int drm_gem_name_info(struct seq_file *m, void *data);
  49. /* drm_vblank.c */
  50. extern unsigned int drm_timestamp_monotonic;
  51. void drm_vblank_disable_and_save(struct drm_device *dev, unsigned int pipe);
  52. void drm_vblank_cleanup(struct drm_device *dev);
  53. /* IOCTLS */
  54. int drm_wait_vblank_ioctl(struct drm_device *dev, void *data,
  55. struct drm_file *filp);
  56. int drm_legacy_modeset_ctl_ioctl(struct drm_device *dev, void *data,
  57. struct drm_file *file_priv);
  58. /* drm_irq.c */
  59. /* IOCTLS */
  60. int drm_legacy_irq_control(struct drm_device *dev, void *data,
  61. struct drm_file *file_priv);
  62. /* drm_auth.c */
  63. int drm_getmagic(struct drm_device *dev, void *data,
  64. struct drm_file *file_priv);
  65. int drm_authmagic(struct drm_device *dev, void *data,
  66. struct drm_file *file_priv);
  67. int drm_setmaster_ioctl(struct drm_device *dev, void *data,
  68. struct drm_file *file_priv);
  69. int drm_dropmaster_ioctl(struct drm_device *dev, void *data,
  70. struct drm_file *file_priv);
  71. int drm_master_open(struct drm_file *file_priv);
  72. void drm_master_release(struct drm_file *file_priv);
  73. /* drm_sysfs.c */
  74. extern struct class *drm_class;
  75. int drm_sysfs_init(void);
  76. void drm_sysfs_destroy(void);
  77. struct device *drm_sysfs_minor_alloc(struct drm_minor *minor);
  78. int drm_sysfs_connector_add(struct drm_connector *connector);
  79. void drm_sysfs_connector_remove(struct drm_connector *connector);
  80. /* drm_gem.c */
  81. int drm_gem_init(struct drm_device *dev);
  82. void drm_gem_destroy(struct drm_device *dev);
  83. int drm_gem_handle_create_tail(struct drm_file *file_priv,
  84. struct drm_gem_object *obj,
  85. u32 *handlep);
  86. int drm_gem_close_ioctl(struct drm_device *dev, void *data,
  87. struct drm_file *file_priv);
  88. int drm_gem_flink_ioctl(struct drm_device *dev, void *data,
  89. struct drm_file *file_priv);
  90. int drm_gem_open_ioctl(struct drm_device *dev, void *data,
  91. struct drm_file *file_priv);
  92. void drm_gem_open(struct drm_device *dev, struct drm_file *file_private);
  93. void drm_gem_release(struct drm_device *dev, struct drm_file *file_private);
  94. /* drm_debugfs.c drm_debugfs_crc.c */
  95. #if defined(CONFIG_DEBUG_FS)
  96. int drm_debugfs_init(struct drm_minor *minor, int minor_id,
  97. struct dentry *root);
  98. int drm_debugfs_cleanup(struct drm_minor *minor);
  99. int drm_debugfs_connector_add(struct drm_connector *connector);
  100. void drm_debugfs_connector_remove(struct drm_connector *connector);
  101. int drm_debugfs_crtc_add(struct drm_crtc *crtc);
  102. void drm_debugfs_crtc_remove(struct drm_crtc *crtc);
  103. int drm_debugfs_crtc_crc_add(struct drm_crtc *crtc);
  104. #else
  105. static inline int drm_debugfs_init(struct drm_minor *minor, int minor_id,
  106. struct dentry *root)
  107. {
  108. return 0;
  109. }
  110. static inline int drm_debugfs_cleanup(struct drm_minor *minor)
  111. {
  112. return 0;
  113. }
  114. static inline int drm_debugfs_connector_add(struct drm_connector *connector)
  115. {
  116. return 0;
  117. }
  118. static inline void drm_debugfs_connector_remove(struct drm_connector *connector)
  119. {
  120. }
  121. static inline int drm_debugfs_crtc_add(struct drm_crtc *crtc)
  122. {
  123. return 0;
  124. }
  125. static inline void drm_debugfs_crtc_remove(struct drm_crtc *crtc)
  126. {
  127. }
  128. static inline int drm_debugfs_crtc_crc_add(struct drm_crtc *crtc)
  129. {
  130. return 0;
  131. }
  132. #endif
  133. drm_ioctl_t drm_version;
  134. drm_ioctl_t drm_getunique;
  135. drm_ioctl_t drm_getclient;
  136. /* drm_syncobj.c */
  137. void drm_syncobj_open(struct drm_file *file_private);
  138. void drm_syncobj_release(struct drm_file *file_private);
  139. int drm_syncobj_create_ioctl(struct drm_device *dev, void *data,
  140. struct drm_file *file_private);
  141. int drm_syncobj_destroy_ioctl(struct drm_device *dev, void *data,
  142. struct drm_file *file_private);
  143. int drm_syncobj_handle_to_fd_ioctl(struct drm_device *dev, void *data,
  144. struct drm_file *file_private);
  145. int drm_syncobj_fd_to_handle_ioctl(struct drm_device *dev, void *data,
  146. struct drm_file *file_private);