drm_internal.h 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  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. /* drm_irq.c */
  24. extern unsigned int drm_timestamp_monotonic;
  25. /* drm_fops.c */
  26. extern struct mutex drm_global_mutex;
  27. int drm_lastclose(struct drm_device *dev);
  28. /* drm_pci.c */
  29. int drm_pci_set_unique(struct drm_device *dev,
  30. struct drm_master *master,
  31. struct drm_unique *u);
  32. int drm_irq_by_busid(struct drm_device *dev, void *data,
  33. struct drm_file *file_priv);
  34. /* drm_vm.c */
  35. int drm_vma_info(struct seq_file *m, void *data);
  36. void drm_vm_open_locked(struct drm_device *dev, struct vm_area_struct *vma);
  37. void drm_vm_close_locked(struct drm_device *dev, struct vm_area_struct *vma);
  38. /* drm_prime.c */
  39. int drm_prime_handle_to_fd_ioctl(struct drm_device *dev, void *data,
  40. struct drm_file *file_priv);
  41. int drm_prime_fd_to_handle_ioctl(struct drm_device *dev, void *data,
  42. struct drm_file *file_priv);
  43. void drm_prime_init_file_private(struct drm_prime_file_private *prime_fpriv);
  44. void drm_prime_destroy_file_private(struct drm_prime_file_private *prime_fpriv);
  45. void drm_prime_remove_buf_handle_locked(struct drm_prime_file_private *prime_fpriv,
  46. struct dma_buf *dma_buf);
  47. /* drm_info.c */
  48. int drm_name_info(struct seq_file *m, void *data);
  49. int drm_vm_info(struct seq_file *m, void *data);
  50. int drm_bufs_info(struct seq_file *m, void *data);
  51. int drm_clients_info(struct seq_file *m, void* data);
  52. int drm_gem_name_info(struct seq_file *m, void *data);
  53. /* drm_irq.c */
  54. int drm_control(struct drm_device *dev, void *data,
  55. struct drm_file *file_priv);
  56. int drm_modeset_ctl(struct drm_device *dev, void *data,
  57. struct drm_file *file_priv);
  58. /* drm_auth.c */
  59. int drm_getmagic(struct drm_device *dev, void *data,
  60. struct drm_file *file_priv);
  61. int drm_authmagic(struct drm_device *dev, void *data,
  62. struct drm_file *file_priv);
  63. int drm_remove_magic(struct drm_master *master, drm_magic_t magic);
  64. /* drm_sysfs.c */
  65. extern struct class *drm_class;
  66. struct class *drm_sysfs_create(struct module *owner, char *name);
  67. void drm_sysfs_destroy(void);
  68. struct device *drm_sysfs_minor_alloc(struct drm_minor *minor);
  69. int drm_sysfs_connector_add(struct drm_connector *connector);
  70. void drm_sysfs_connector_remove(struct drm_connector *connector);
  71. /* drm_gem.c */
  72. int drm_gem_init(struct drm_device *dev);
  73. void drm_gem_destroy(struct drm_device *dev);
  74. int drm_gem_handle_create_tail(struct drm_file *file_priv,
  75. struct drm_gem_object *obj,
  76. u32 *handlep);
  77. int drm_gem_close_ioctl(struct drm_device *dev, void *data,
  78. struct drm_file *file_priv);
  79. int drm_gem_flink_ioctl(struct drm_device *dev, void *data,
  80. struct drm_file *file_priv);
  81. int drm_gem_open_ioctl(struct drm_device *dev, void *data,
  82. struct drm_file *file_priv);
  83. void drm_gem_open(struct drm_device *dev, struct drm_file *file_private);
  84. void drm_gem_release(struct drm_device *dev, struct drm_file *file_private);
  85. /* drm_drv.c */
  86. int drm_setmaster_ioctl(struct drm_device *dev, void *data,
  87. struct drm_file *file_priv);
  88. int drm_dropmaster_ioctl(struct drm_device *dev, void *data,
  89. struct drm_file *file_priv);
  90. struct drm_master *drm_master_create(struct drm_minor *minor);
  91. /* drm_debugfs.c */
  92. #if defined(CONFIG_DEBUG_FS)
  93. int drm_debugfs_init(struct drm_minor *minor, int minor_id,
  94. struct dentry *root);
  95. int drm_debugfs_cleanup(struct drm_minor *minor);
  96. int drm_debugfs_connector_add(struct drm_connector *connector);
  97. void drm_debugfs_connector_remove(struct drm_connector *connector);
  98. #else
  99. static inline int drm_debugfs_init(struct drm_minor *minor, int minor_id,
  100. struct dentry *root)
  101. {
  102. return 0;
  103. }
  104. static inline int drm_debugfs_cleanup(struct drm_minor *minor)
  105. {
  106. return 0;
  107. }
  108. static inline int drm_debugfs_connector_add(struct drm_connector *connector)
  109. {
  110. return 0;
  111. }
  112. static inline void drm_debugfs_connector_remove(struct drm_connector *connector)
  113. {
  114. }
  115. #endif