1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright (c) 2015 MediaTek Inc.
7 #include <drm/drm_atomic.h>
8 #include <drm/drm_atomic_helper.h>
9 #include <drm/drm_fourcc.h>
10 #include <drm/drm_plane_helper.h>
11 #include <drm/drm_gem_framebuffer_helper.h>
13 #include "mtk_drm_crtc.h"
14 #include "mtk_drm_ddp_comp.h"
15 #include "mtk_drm_drv.h"
16 #include "mtk_drm_fb.h"
17 #include "mtk_drm_gem.h"
18 #include "mtk_drm_plane.h"
20 static const u32 formats[] = {
34 static void mtk_plane_reset(struct drm_plane *plane)
36 struct mtk_plane_state *state;
39 __drm_atomic_helper_plane_destroy_state(plane->state);
41 state = to_mtk_plane_state(plane->state);
42 memset(state, 0, sizeof(*state));
44 state = kzalloc(sizeof(*state), GFP_KERNEL);
47 plane->state = &state->base;
50 state->base.plane = plane;
51 state->pending.format = DRM_FORMAT_RGB565;
54 static struct drm_plane_state *mtk_plane_duplicate_state(struct drm_plane *plane)
56 struct mtk_plane_state *old_state = to_mtk_plane_state(plane->state);
57 struct mtk_plane_state *state;
59 state = kzalloc(sizeof(*state), GFP_KERNEL);
63 __drm_atomic_helper_plane_duplicate_state(plane, &state->base);
65 WARN_ON(state->base.plane != plane);
67 state->pending = old_state->pending;
72 static void mtk_drm_plane_destroy_state(struct drm_plane *plane,
73 struct drm_plane_state *state)
75 __drm_atomic_helper_plane_destroy_state(state);
76 kfree(to_mtk_plane_state(state));
79 static const struct drm_plane_funcs mtk_plane_funcs = {
80 .update_plane = drm_atomic_helper_update_plane,
81 .disable_plane = drm_atomic_helper_disable_plane,
82 .destroy = drm_plane_cleanup,
83 .reset = mtk_plane_reset,
84 .atomic_duplicate_state = mtk_plane_duplicate_state,
85 .atomic_destroy_state = mtk_drm_plane_destroy_state,
88 static int mtk_plane_atomic_check(struct drm_plane *plane,
89 struct drm_plane_state *state)
91 struct drm_framebuffer *fb = state->fb;
92 struct drm_crtc_state *crtc_state;
101 ret = mtk_drm_crtc_plane_check(state->crtc, plane,
102 to_mtk_plane_state(state));
106 crtc_state = drm_atomic_get_crtc_state(state->state, state->crtc);
107 if (IS_ERR(crtc_state))
108 return PTR_ERR(crtc_state);
110 return drm_atomic_helper_check_plane_state(state, crtc_state,
111 DRM_PLANE_HELPER_NO_SCALING,
112 DRM_PLANE_HELPER_NO_SCALING,
116 static void mtk_plane_atomic_update(struct drm_plane *plane,
117 struct drm_plane_state *old_state)
119 struct mtk_plane_state *state = to_mtk_plane_state(plane->state);
120 struct drm_crtc *crtc = plane->state->crtc;
121 struct drm_framebuffer *fb = plane->state->fb;
122 struct drm_gem_object *gem;
123 struct mtk_drm_gem_obj *mtk_gem;
124 unsigned int pitch, format;
127 if (!crtc || WARN_ON(!fb))
131 mtk_gem = to_mtk_gem_obj(gem);
132 addr = mtk_gem->dma_addr;
133 pitch = fb->pitches[0];
134 format = fb->format->format;
136 addr += (plane->state->src.x1 >> 16) * fb->format->cpp[0];
137 addr += (plane->state->src.y1 >> 16) * pitch;
139 state->pending.enable = true;
140 state->pending.pitch = pitch;
141 state->pending.format = format;
142 state->pending.addr = addr;
143 state->pending.x = plane->state->dst.x1;
144 state->pending.y = plane->state->dst.y1;
145 state->pending.width = drm_rect_width(&plane->state->dst);
146 state->pending.height = drm_rect_height(&plane->state->dst);
147 state->pending.rotation = plane->state->rotation;
148 wmb(); /* Make sure the above parameters are set before update */
149 state->pending.dirty = true;
152 static void mtk_plane_atomic_disable(struct drm_plane *plane,
153 struct drm_plane_state *old_state)
155 struct mtk_plane_state *state = to_mtk_plane_state(plane->state);
157 state->pending.enable = false;
158 wmb(); /* Make sure the above parameter is set before update */
159 state->pending.dirty = true;
162 static const struct drm_plane_helper_funcs mtk_plane_helper_funcs = {
163 .prepare_fb = drm_gem_fb_prepare_fb,
164 .atomic_check = mtk_plane_atomic_check,
165 .atomic_update = mtk_plane_atomic_update,
166 .atomic_disable = mtk_plane_atomic_disable,
169 int mtk_plane_init(struct drm_device *dev, struct drm_plane *plane,
170 unsigned long possible_crtcs, enum drm_plane_type type,
171 unsigned int supported_rotations)
175 err = drm_universal_plane_init(dev, plane, possible_crtcs,
176 &mtk_plane_funcs, formats,
177 ARRAY_SIZE(formats), NULL, type, NULL);
179 DRM_ERROR("failed to initialize plane\n");
183 if (supported_rotations & ~DRM_MODE_ROTATE_0) {
184 err = drm_plane_create_rotation_property(plane,
186 supported_rotations);
188 DRM_INFO("Create rotation property failed\n");
191 drm_plane_helper_add(plane, &mtk_plane_helper_funcs);