drm_crtc_helper.h 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228
  1. /*
  2. * Copyright © 2006 Keith Packard
  3. * Copyright © 2007-2008 Dave Airlie
  4. * Copyright © 2007-2008 Intel Corporation
  5. * Jesse Barnes <jesse.barnes@intel.com>
  6. *
  7. * Permission is hereby granted, free of charge, to any person obtaining a
  8. * copy of this software and associated documentation files (the "Software"),
  9. * to deal in the Software without restriction, including without limitation
  10. * the rights to use, copy, modify, merge, publish, distribute, sublicense,
  11. * and/or sell copies of the Software, and to permit persons to whom the
  12. * Software is furnished to do so, subject to the following conditions:
  13. *
  14. * The above copyright notice and this permission notice shall be included in
  15. * all copies or substantial portions of the Software.
  16. *
  17. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  18. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  19. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
  20. * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
  21. * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
  22. * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
  23. * OTHER DEALINGS IN THE SOFTWARE.
  24. */
  25. /*
  26. * The DRM mode setting helper functions are common code for drivers to use if
  27. * they wish. Drivers are not forced to use this code in their
  28. * implementations but it would be useful if they code they do use at least
  29. * provides a consistent interface and operation to userspace
  30. */
  31. #ifndef __DRM_CRTC_HELPER_H__
  32. #define __DRM_CRTC_HELPER_H__
  33. #include <linux/spinlock.h>
  34. #include <linux/types.h>
  35. #include <linux/idr.h>
  36. #include <linux/fb.h>
  37. enum mode_set_atomic {
  38. LEAVE_ATOMIC_MODE_SET,
  39. ENTER_ATOMIC_MODE_SET,
  40. };
  41. /**
  42. * drm_crtc_helper_funcs - helper operations for CRTCs
  43. * @mode_fixup: try to fixup proposed mode for this connector
  44. * @mode_set: set this mode
  45. * @mode_set_nofb: set mode only (no scanout buffer attached)
  46. * @mode_set_base: update the scanout buffer
  47. * @mode_set_base_atomic: non-blocking mode set (used for kgdb support)
  48. * @load_lut: load color palette
  49. * @disable: disable CRTC when no longer in use
  50. * @enable: enable CRTC
  51. * @atomic_check: check for validity of an atomic state
  52. * @atomic_begin: begin atomic update
  53. * @atomic_flush: flush atomic update
  54. *
  55. * The helper operations are called by the mid-layer CRTC helper.
  56. *
  57. * Note that with atomic helpers @dpms, @prepare and @commit hooks are
  58. * deprecated. Used @enable and @disable instead exclusively.
  59. *
  60. * With legacy crtc helpers there's a big semantic difference between @disable
  61. * and the other hooks: @disable also needs to release any resources acquired in
  62. * @mode_set (like shared PLLs).
  63. */
  64. struct drm_crtc_helper_funcs {
  65. /*
  66. * Control power levels on the CRTC. If the mode passed in is
  67. * unsupported, the provider must use the next lowest power level.
  68. */
  69. void (*dpms)(struct drm_crtc *crtc, int mode);
  70. void (*prepare)(struct drm_crtc *crtc);
  71. void (*commit)(struct drm_crtc *crtc);
  72. /* Provider can fixup or change mode timings before modeset occurs */
  73. bool (*mode_fixup)(struct drm_crtc *crtc,
  74. const struct drm_display_mode *mode,
  75. struct drm_display_mode *adjusted_mode);
  76. /* Actually set the mode */
  77. int (*mode_set)(struct drm_crtc *crtc, struct drm_display_mode *mode,
  78. struct drm_display_mode *adjusted_mode, int x, int y,
  79. struct drm_framebuffer *old_fb);
  80. /* Actually set the mode for atomic helpers, optional */
  81. void (*mode_set_nofb)(struct drm_crtc *crtc);
  82. /* Move the crtc on the current fb to the given position *optional* */
  83. int (*mode_set_base)(struct drm_crtc *crtc, int x, int y,
  84. struct drm_framebuffer *old_fb);
  85. int (*mode_set_base_atomic)(struct drm_crtc *crtc,
  86. struct drm_framebuffer *fb, int x, int y,
  87. enum mode_set_atomic);
  88. /* reload the current crtc LUT */
  89. void (*load_lut)(struct drm_crtc *crtc);
  90. void (*disable)(struct drm_crtc *crtc);
  91. void (*enable)(struct drm_crtc *crtc);
  92. /* atomic helpers */
  93. int (*atomic_check)(struct drm_crtc *crtc,
  94. struct drm_crtc_state *state);
  95. void (*atomic_begin)(struct drm_crtc *crtc);
  96. void (*atomic_flush)(struct drm_crtc *crtc);
  97. };
  98. /**
  99. * drm_encoder_helper_funcs - helper operations for encoders
  100. * @mode_fixup: try to fixup proposed mode for this connector
  101. * @mode_set: set this mode, optional for atomic helpers
  102. * @get_crtc: return CRTC that the encoder is currently attached to
  103. * @detect: connection status detection
  104. * @disable: disable encoder when not in use (overrides DPMS off)
  105. * @enable: enable encoder
  106. * @atomic_check: check for validity of an atomic update
  107. *
  108. * The helper operations are called by the mid-layer CRTC helper.
  109. *
  110. * Note that with atomic helpers @dpms, @prepare and @commit hooks are
  111. * deprecated. Used @enable and @disable instead exclusively.
  112. *
  113. * With legacy crtc helpers there's a big semantic difference between @disable
  114. * and the other hooks: @disable also needs to release any resources acquired in
  115. * @mode_set (like shared PLLs).
  116. */
  117. struct drm_encoder_helper_funcs {
  118. void (*dpms)(struct drm_encoder *encoder, int mode);
  119. void (*save)(struct drm_encoder *encoder);
  120. void (*restore)(struct drm_encoder *encoder);
  121. bool (*mode_fixup)(struct drm_encoder *encoder,
  122. const struct drm_display_mode *mode,
  123. struct drm_display_mode *adjusted_mode);
  124. void (*prepare)(struct drm_encoder *encoder);
  125. void (*commit)(struct drm_encoder *encoder);
  126. void (*mode_set)(struct drm_encoder *encoder,
  127. struct drm_display_mode *mode,
  128. struct drm_display_mode *adjusted_mode);
  129. struct drm_crtc *(*get_crtc)(struct drm_encoder *encoder);
  130. /* detect for DAC style encoders */
  131. enum drm_connector_status (*detect)(struct drm_encoder *encoder,
  132. struct drm_connector *connector);
  133. void (*disable)(struct drm_encoder *encoder);
  134. void (*enable)(struct drm_encoder *encoder);
  135. /* atomic helpers */
  136. int (*atomic_check)(struct drm_encoder *encoder,
  137. struct drm_crtc_state *crtc_state,
  138. struct drm_connector_state *conn_state);
  139. };
  140. /**
  141. * drm_connector_helper_funcs - helper operations for connectors
  142. * @get_modes: get mode list for this connector
  143. * @mode_valid (optional): is this mode valid on the given connector?
  144. *
  145. * The helper operations are called by the mid-layer CRTC helper.
  146. */
  147. struct drm_connector_helper_funcs {
  148. int (*get_modes)(struct drm_connector *connector);
  149. enum drm_mode_status (*mode_valid)(struct drm_connector *connector,
  150. struct drm_display_mode *mode);
  151. struct drm_encoder *(*best_encoder)(struct drm_connector *connector);
  152. };
  153. extern void drm_helper_disable_unused_functions(struct drm_device *dev);
  154. extern int drm_crtc_helper_set_config(struct drm_mode_set *set);
  155. extern bool drm_crtc_helper_set_mode(struct drm_crtc *crtc,
  156. struct drm_display_mode *mode,
  157. int x, int y,
  158. struct drm_framebuffer *old_fb);
  159. extern bool drm_helper_crtc_in_use(struct drm_crtc *crtc);
  160. extern bool drm_helper_encoder_in_use(struct drm_encoder *encoder);
  161. extern void drm_helper_connector_dpms(struct drm_connector *connector, int mode);
  162. extern void drm_helper_move_panel_connectors_to_head(struct drm_device *);
  163. extern void drm_helper_mode_fill_fb_struct(struct drm_framebuffer *fb,
  164. struct drm_mode_fb_cmd2 *mode_cmd);
  165. static inline void drm_crtc_helper_add(struct drm_crtc *crtc,
  166. const struct drm_crtc_helper_funcs *funcs)
  167. {
  168. crtc->helper_private = (void *)funcs;
  169. }
  170. static inline void drm_encoder_helper_add(struct drm_encoder *encoder,
  171. const struct drm_encoder_helper_funcs *funcs)
  172. {
  173. encoder->helper_private = (void *)funcs;
  174. }
  175. static inline void drm_connector_helper_add(struct drm_connector *connector,
  176. const struct drm_connector_helper_funcs *funcs)
  177. {
  178. connector->helper_private = (void *)funcs;
  179. }
  180. extern void drm_helper_resume_force_mode(struct drm_device *dev);
  181. int drm_helper_crtc_mode_set(struct drm_crtc *crtc, struct drm_display_mode *mode,
  182. struct drm_display_mode *adjusted_mode, int x, int y,
  183. struct drm_framebuffer *old_fb);
  184. int drm_helper_crtc_mode_set_base(struct drm_crtc *crtc, int x, int y,
  185. struct drm_framebuffer *old_fb);
  186. /* drm_probe_helper.c */
  187. extern int drm_helper_probe_single_connector_modes(struct drm_connector
  188. *connector, uint32_t maxX,
  189. uint32_t maxY);
  190. extern int drm_helper_probe_single_connector_modes_nomerge(struct drm_connector
  191. *connector,
  192. uint32_t maxX,
  193. uint32_t maxY);
  194. extern void drm_kms_helper_poll_init(struct drm_device *dev);
  195. extern void drm_kms_helper_poll_fini(struct drm_device *dev);
  196. extern bool drm_helper_hpd_irq_event(struct drm_device *dev);
  197. extern void drm_kms_helper_hotplug_event(struct drm_device *dev);
  198. extern void drm_kms_helper_poll_disable(struct drm_device *dev);
  199. extern void drm_kms_helper_poll_enable(struct drm_device *dev);
  200. #endif