drm_crtc_helper.h 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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/types.h>
  34. struct drm_atomic_state;
  35. struct drm_connector;
  36. struct drm_crtc;
  37. struct drm_device;
  38. struct drm_display_mode;
  39. struct drm_encoder;
  40. struct drm_framebuffer;
  41. struct drm_mode_set;
  42. struct drm_modeset_acquire_ctx;
  43. void drm_helper_disable_unused_functions(struct drm_device *dev);
  44. int drm_crtc_helper_set_config(struct drm_mode_set *set,
  45. struct drm_modeset_acquire_ctx *ctx);
  46. bool drm_crtc_helper_set_mode(struct drm_crtc *crtc,
  47. struct drm_display_mode *mode,
  48. int x, int y,
  49. struct drm_framebuffer *old_fb);
  50. int drm_crtc_helper_atomic_check(struct drm_crtc *crtc,
  51. struct drm_atomic_state *state);
  52. bool drm_helper_crtc_in_use(struct drm_crtc *crtc);
  53. bool drm_helper_encoder_in_use(struct drm_encoder *encoder);
  54. int drm_helper_connector_dpms(struct drm_connector *connector, int mode);
  55. void drm_helper_resume_force_mode(struct drm_device *dev);
  56. int drm_helper_force_disable_all(struct drm_device *dev);
  57. #endif