1 /* SPDX-License-Identifier: GPL-2.0-only */
3 * Copyright (c) 2015 MediaTek Inc.
6 #ifndef MTK_DRM_DDP_COMP_H
7 #define MTK_DRM_DDP_COMP_H
15 struct mtk_plane_state;
16 struct drm_crtc_state;
18 enum mtk_ddp_comp_type {
35 MTK_DDP_COMP_TYPE_MAX,
38 enum mtk_ddp_comp_id {
56 DDP_COMPONENT_OVL_2L0,
57 DDP_COMPONENT_OVL_2L1,
73 struct mtk_ddp_comp_funcs {
74 void (*config)(struct mtk_ddp_comp *comp, unsigned int w,
75 unsigned int h, unsigned int vrefresh, unsigned int bpc);
76 void (*start)(struct mtk_ddp_comp *comp);
77 void (*stop)(struct mtk_ddp_comp *comp);
78 void (*enable_vblank)(struct mtk_ddp_comp *comp, struct drm_crtc *crtc);
79 void (*disable_vblank)(struct mtk_ddp_comp *comp);
80 unsigned int (*supported_rotations)(struct mtk_ddp_comp *comp);
81 unsigned int (*layer_nr)(struct mtk_ddp_comp *comp);
82 void (*layer_on)(struct mtk_ddp_comp *comp, unsigned int idx);
83 void (*layer_off)(struct mtk_ddp_comp *comp, unsigned int idx);
84 int (*layer_check)(struct mtk_ddp_comp *comp,
86 struct mtk_plane_state *state);
87 void (*layer_config)(struct mtk_ddp_comp *comp, unsigned int idx,
88 struct mtk_plane_state *state);
89 void (*gamma_set)(struct mtk_ddp_comp *comp,
90 struct drm_crtc_state *state);
91 void (*bgclr_in_on)(struct mtk_ddp_comp *comp);
92 void (*bgclr_in_off)(struct mtk_ddp_comp *comp);
99 struct device *larb_dev;
100 enum mtk_ddp_comp_id id;
101 const struct mtk_ddp_comp_funcs *funcs;
104 static inline void mtk_ddp_comp_config(struct mtk_ddp_comp *comp,
105 unsigned int w, unsigned int h,
106 unsigned int vrefresh, unsigned int bpc)
108 if (comp->funcs && comp->funcs->config)
109 comp->funcs->config(comp, w, h, vrefresh, bpc);
112 static inline void mtk_ddp_comp_start(struct mtk_ddp_comp *comp)
114 if (comp->funcs && comp->funcs->start)
115 comp->funcs->start(comp);
118 static inline void mtk_ddp_comp_stop(struct mtk_ddp_comp *comp)
120 if (comp->funcs && comp->funcs->stop)
121 comp->funcs->stop(comp);
124 static inline void mtk_ddp_comp_enable_vblank(struct mtk_ddp_comp *comp,
125 struct drm_crtc *crtc)
127 if (comp->funcs && comp->funcs->enable_vblank)
128 comp->funcs->enable_vblank(comp, crtc);
131 static inline void mtk_ddp_comp_disable_vblank(struct mtk_ddp_comp *comp)
133 if (comp->funcs && comp->funcs->disable_vblank)
134 comp->funcs->disable_vblank(comp);
138 unsigned int mtk_ddp_comp_supported_rotations(struct mtk_ddp_comp *comp)
140 if (comp->funcs && comp->funcs->supported_rotations)
141 return comp->funcs->supported_rotations(comp);
146 static inline unsigned int mtk_ddp_comp_layer_nr(struct mtk_ddp_comp *comp)
148 if (comp->funcs && comp->funcs->layer_nr)
149 return comp->funcs->layer_nr(comp);
154 static inline void mtk_ddp_comp_layer_on(struct mtk_ddp_comp *comp,
157 if (comp->funcs && comp->funcs->layer_on)
158 comp->funcs->layer_on(comp, idx);
161 static inline void mtk_ddp_comp_layer_off(struct mtk_ddp_comp *comp,
164 if (comp->funcs && comp->funcs->layer_off)
165 comp->funcs->layer_off(comp, idx);
168 static inline int mtk_ddp_comp_layer_check(struct mtk_ddp_comp *comp,
170 struct mtk_plane_state *state)
172 if (comp->funcs && comp->funcs->layer_check)
173 return comp->funcs->layer_check(comp, idx, state);
177 static inline void mtk_ddp_comp_layer_config(struct mtk_ddp_comp *comp,
179 struct mtk_plane_state *state)
181 if (comp->funcs && comp->funcs->layer_config)
182 comp->funcs->layer_config(comp, idx, state);
185 static inline void mtk_ddp_gamma_set(struct mtk_ddp_comp *comp,
186 struct drm_crtc_state *state)
188 if (comp->funcs && comp->funcs->gamma_set)
189 comp->funcs->gamma_set(comp, state);
192 static inline void mtk_ddp_comp_bgclr_in_on(struct mtk_ddp_comp *comp)
194 if (comp->funcs && comp->funcs->bgclr_in_on)
195 comp->funcs->bgclr_in_on(comp);
198 static inline void mtk_ddp_comp_bgclr_in_off(struct mtk_ddp_comp *comp)
200 if (comp->funcs && comp->funcs->bgclr_in_off)
201 comp->funcs->bgclr_in_off(comp);
204 int mtk_ddp_comp_get_id(struct device_node *node,
205 enum mtk_ddp_comp_type comp_type);
206 int mtk_ddp_comp_init(struct device *dev, struct device_node *comp_node,
207 struct mtk_ddp_comp *comp, enum mtk_ddp_comp_id comp_id,
208 const struct mtk_ddp_comp_funcs *funcs);
209 int mtk_ddp_comp_register(struct drm_device *drm, struct mtk_ddp_comp *comp);
210 void mtk_ddp_comp_unregister(struct drm_device *drm, struct mtk_ddp_comp *comp);
211 void mtk_dither_set(struct mtk_ddp_comp *comp, unsigned int bpc,
214 #endif /* MTK_DRM_DDP_COMP_H */