2019-05-27 13:55:21 +07:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
2016-01-05 00:36:34 +07:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2015 MediaTek Inc.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef MTK_DRM_CRTC_H
|
|
|
|
#define MTK_DRM_CRTC_H
|
|
|
|
|
|
|
|
#include <drm/drm_crtc.h>
|
|
|
|
#include "mtk_drm_ddp_comp.h"
|
|
|
|
#include "mtk_drm_plane.h"
|
|
|
|
|
2016-07-28 09:22:54 +07:00
|
|
|
#define MTK_LUT_SIZE 512
|
2016-07-28 09:22:55 +07:00
|
|
|
#define MTK_MAX_BPC 10
|
|
|
|
#define MTK_MIN_BPC 3
|
2016-01-05 00:36:34 +07:00
|
|
|
|
|
|
|
void mtk_drm_crtc_commit(struct drm_crtc *crtc);
|
2018-08-09 09:15:48 +07:00
|
|
|
void mtk_crtc_ddp_irq(struct drm_crtc *crtc, struct mtk_ddp_comp *comp);
|
2016-01-05 00:36:34 +07:00
|
|
|
int mtk_drm_crtc_create(struct drm_device *drm_dev,
|
|
|
|
const enum mtk_ddp_comp_id *path,
|
|
|
|
unsigned int path_len);
|
2019-11-06 04:10:20 +07:00
|
|
|
int mtk_drm_crtc_plane_check(struct drm_crtc *crtc, struct drm_plane *plane,
|
|
|
|
struct mtk_plane_state *state);
|
2019-12-10 12:05:22 +07:00
|
|
|
void mtk_drm_crtc_async_update(struct drm_crtc *crtc, struct drm_plane *plane,
|
|
|
|
struct drm_plane_state *plane_state);
|
2016-01-05 00:36:34 +07:00
|
|
|
|
|
|
|
#endif /* MTK_DRM_CRTC_H */
|