2 * Copyright (c) 2015 MediaTek Inc.
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
14 #ifndef MTK_DRM_DDP_COMP_H
15 #define MTK_DRM_DDP_COMP_H
23 struct mtk_plane_state;
24 struct drm_crtc_state;
26 enum mtk_ddp_comp_type {
40 MTK_DDP_COMP_TYPE_MAX,
43 enum mtk_ddp_comp_id {
74 struct mtk_ddp_comp_funcs {
75 void (*config)(struct mtk_ddp_comp *comp, unsigned int w,
76 unsigned int h, unsigned int vrefresh, unsigned int bpc);
77 void (*start)(struct mtk_ddp_comp *comp);
78 void (*stop)(struct mtk_ddp_comp *comp);
79 void (*enable_vblank)(struct mtk_ddp_comp *comp, struct drm_crtc *crtc);
80 void (*disable_vblank)(struct mtk_ddp_comp *comp);
81 void (*layer_on)(struct mtk_ddp_comp *comp, unsigned int idx);
82 void (*layer_off)(struct mtk_ddp_comp *comp, unsigned int idx);
83 void (*layer_config)(struct mtk_ddp_comp *comp, unsigned int idx,
84 struct mtk_plane_state *state);
85 void (*gamma_set)(struct mtk_ddp_comp *comp,
86 struct drm_crtc_state *state);
93 struct device *larb_dev;
94 enum mtk_ddp_comp_id id;
95 const struct mtk_ddp_comp_funcs *funcs;
98 static inline void mtk_ddp_comp_config(struct mtk_ddp_comp *comp,
99 unsigned int w, unsigned int h,
100 unsigned int vrefresh, unsigned int bpc)
102 if (comp->funcs && comp->funcs->config)
103 comp->funcs->config(comp, w, h, vrefresh, bpc);
106 static inline void mtk_ddp_comp_start(struct mtk_ddp_comp *comp)
108 if (comp->funcs && comp->funcs->start)
109 comp->funcs->start(comp);
112 static inline void mtk_ddp_comp_stop(struct mtk_ddp_comp *comp)
114 if (comp->funcs && comp->funcs->stop)
115 comp->funcs->stop(comp);
118 static inline void mtk_ddp_comp_enable_vblank(struct mtk_ddp_comp *comp,
119 struct drm_crtc *crtc)
121 if (comp->funcs && comp->funcs->enable_vblank)
122 comp->funcs->enable_vblank(comp, crtc);
125 static inline void mtk_ddp_comp_disable_vblank(struct mtk_ddp_comp *comp)
127 if (comp->funcs && comp->funcs->disable_vblank)
128 comp->funcs->disable_vblank(comp);
131 static inline void mtk_ddp_comp_layer_on(struct mtk_ddp_comp *comp,
134 if (comp->funcs && comp->funcs->layer_on)
135 comp->funcs->layer_on(comp, idx);
138 static inline void mtk_ddp_comp_layer_off(struct mtk_ddp_comp *comp,
141 if (comp->funcs && comp->funcs->layer_off)
142 comp->funcs->layer_off(comp, idx);
145 static inline void mtk_ddp_comp_layer_config(struct mtk_ddp_comp *comp,
147 struct mtk_plane_state *state)
149 if (comp->funcs && comp->funcs->layer_config)
150 comp->funcs->layer_config(comp, idx, state);
153 static inline void mtk_ddp_gamma_set(struct mtk_ddp_comp *comp,
154 struct drm_crtc_state *state)
156 if (comp->funcs && comp->funcs->gamma_set)
157 comp->funcs->gamma_set(comp, state);
160 int mtk_ddp_comp_get_id(struct device_node *node,
161 enum mtk_ddp_comp_type comp_type);
162 int mtk_ddp_comp_init(struct device *dev, struct device_node *comp_node,
163 struct mtk_ddp_comp *comp, enum mtk_ddp_comp_id comp_id,
164 const struct mtk_ddp_comp_funcs *funcs);
165 int mtk_ddp_comp_register(struct drm_device *drm, struct mtk_ddp_comp *comp);
166 void mtk_ddp_comp_unregister(struct drm_device *drm, struct mtk_ddp_comp *comp);
167 void mtk_dither_set(struct mtk_ddp_comp *comp, unsigned int bpc,
170 #endif /* MTK_DRM_DDP_COMP_H */