|
@@ -31,7 +31,7 @@
|
|
|
* struct mtk_drm_crtc - MediaTek specific crtc structure.
|
|
|
* @base: crtc object.
|
|
|
* @enabled: records whether crtc_enable succeeded
|
|
|
- * @planes: array of 4 mtk_drm_plane structures, one for each overlay plane
|
|
|
+ * @planes: array of 4 drm_plane structures, one for each overlay plane
|
|
|
* @pending_planes: whether any plane has pending changes to be applied
|
|
|
* @config_regs: memory mapped mmsys configuration register space
|
|
|
* @mutex: handle to one of the ten disp_mutex streams
|
|
@@ -45,7 +45,7 @@ struct mtk_drm_crtc {
|
|
|
bool pending_needs_vblank;
|
|
|
struct drm_pending_vblank_event *event;
|
|
|
|
|
|
- struct mtk_drm_plane planes[OVL_LAYER_NR];
|
|
|
+ struct drm_plane planes[OVL_LAYER_NR];
|
|
|
bool pending_planes;
|
|
|
|
|
|
void __iomem *config_regs;
|
|
@@ -272,7 +272,7 @@ static int mtk_crtc_ddp_hw_init(struct mtk_drm_crtc *mtk_crtc)
|
|
|
|
|
|
/* Initially configure all planes */
|
|
|
for (i = 0; i < OVL_LAYER_NR; i++) {
|
|
|
- struct drm_plane *plane = &mtk_crtc->planes[i].base;
|
|
|
+ struct drm_plane *plane = &mtk_crtc->planes[i];
|
|
|
struct mtk_plane_state *plane_state;
|
|
|
|
|
|
plane_state = to_mtk_plane_state(plane->state);
|
|
@@ -351,7 +351,7 @@ static void mtk_drm_crtc_disable(struct drm_crtc *crtc)
|
|
|
|
|
|
/* Set all pending plane state to disabled */
|
|
|
for (i = 0; i < OVL_LAYER_NR; i++) {
|
|
|
- struct drm_plane *plane = &mtk_crtc->planes[i].base;
|
|
|
+ struct drm_plane *plane = &mtk_crtc->planes[i];
|
|
|
struct mtk_plane_state *plane_state;
|
|
|
|
|
|
plane_state = to_mtk_plane_state(plane->state);
|
|
@@ -397,7 +397,7 @@ static void mtk_drm_crtc_atomic_flush(struct drm_crtc *crtc,
|
|
|
if (mtk_crtc->event)
|
|
|
mtk_crtc->pending_needs_vblank = true;
|
|
|
for (i = 0; i < OVL_LAYER_NR; i++) {
|
|
|
- struct drm_plane *plane = &mtk_crtc->planes[i].base;
|
|
|
+ struct drm_plane *plane = &mtk_crtc->planes[i];
|
|
|
struct mtk_plane_state *plane_state;
|
|
|
|
|
|
plane_state = to_mtk_plane_state(plane->state);
|
|
@@ -471,7 +471,7 @@ void mtk_crtc_ddp_irq(struct drm_crtc *crtc, struct mtk_ddp_comp *ovl)
|
|
|
|
|
|
if (mtk_crtc->pending_planes) {
|
|
|
for (i = 0; i < OVL_LAYER_NR; i++) {
|
|
|
- struct drm_plane *plane = &mtk_crtc->planes[i].base;
|
|
|
+ struct drm_plane *plane = &mtk_crtc->planes[i];
|
|
|
struct mtk_plane_state *plane_state;
|
|
|
|
|
|
plane_state = to_mtk_plane_state(plane->state);
|
|
@@ -564,8 +564,8 @@ int mtk_drm_crtc_create(struct drm_device *drm_dev,
|
|
|
goto unprepare;
|
|
|
}
|
|
|
|
|
|
- ret = mtk_drm_crtc_init(drm_dev, mtk_crtc, &mtk_crtc->planes[0].base,
|
|
|
- &mtk_crtc->planes[1].base, pipe);
|
|
|
+ ret = mtk_drm_crtc_init(drm_dev, mtk_crtc, &mtk_crtc->planes[0],
|
|
|
+ &mtk_crtc->planes[1], pipe);
|
|
|
if (ret < 0)
|
|
|
goto unprepare;
|
|
|
|