mtk_drm_crtc.h 801 B

123456789101112131415161718192021222324252627
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * Copyright (c) 2015 MediaTek Inc.
  4. */
  5. #ifndef MTK_DRM_CRTC_H
  6. #define MTK_DRM_CRTC_H
  7. #include <drm/drm_crtc.h>
  8. #include "mtk_drm_ddp_comp.h"
  9. #include "mtk_drm_plane.h"
  10. #define MTK_LUT_SIZE 512
  11. #define MTK_MAX_BPC 10
  12. #define MTK_MIN_BPC 3
  13. void mtk_drm_crtc_commit(struct drm_crtc *crtc);
  14. void mtk_crtc_ddp_irq(struct drm_crtc *crtc, struct mtk_ddp_comp *comp);
  15. int mtk_drm_crtc_create(struct drm_device *drm_dev,
  16. const enum mtk_ddp_comp_id *path,
  17. unsigned int path_len);
  18. int mtk_drm_crtc_plane_check(struct drm_crtc *crtc, struct drm_plane *plane,
  19. struct mtk_plane_state *state);
  20. void mtk_drm_crtc_async_update(struct drm_crtc *crtc, struct drm_plane *plane,
  21. struct drm_plane_state *plane_state);
  22. #endif /* MTK_DRM_CRTC_H */