1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * Copyright (C) Icenowy Zheng <icenowy@aosc.io>
5 * Based on sun4i_layer.h, which is:
6 * Copyright (C) 2015 Free Electrons
7 * Copyright (C) 2015 NextThing Co
9 * Maxime Ripard <maxime.ripard@free-electrons.com>
12 #include <drm/drm_atomic.h>
13 #include <drm/drm_atomic_helper.h>
14 #include <drm/drm_crtc.h>
15 #include <drm/drm_fb_cma_helper.h>
16 #include <drm/drm_fourcc.h>
17 #include <drm/drm_gem_cma_helper.h>
18 #include <drm/drm_gem_framebuffer_helper.h>
19 #include <drm/drm_plane_helper.h>
20 #include <drm/drm_probe_helper.h>
22 #include "sun8i_ui_layer.h"
23 #include "sun8i_mixer.h"
24 #include "sun8i_ui_scaler.h"
26 static void sun8i_ui_layer_enable(struct sun8i_mixer
*mixer
, int channel
,
27 int overlay
, bool enable
, unsigned int zpos
,
28 unsigned int old_zpos
)
30 u32 val
, bld_base
, ch_base
;
32 bld_base
= sun8i_blender_base(mixer
);
33 ch_base
= sun8i_channel_base(mixer
, channel
);
35 DRM_DEBUG_DRIVER("%sabling channel %d overlay %d\n",
36 enable
? "En" : "Dis", channel
, overlay
);
39 val
= SUN8I_MIXER_CHAN_UI_LAYER_ATTR_EN
;
43 regmap_update_bits(mixer
->engine
.regs
,
44 SUN8I_MIXER_CHAN_UI_LAYER_ATTR(ch_base
, overlay
),
45 SUN8I_MIXER_CHAN_UI_LAYER_ATTR_EN
, val
);
47 if (!enable
|| zpos
!= old_zpos
) {
48 regmap_update_bits(mixer
->engine
.regs
,
49 SUN8I_MIXER_BLEND_PIPE_CTL(bld_base
),
50 SUN8I_MIXER_BLEND_PIPE_CTL_EN(old_zpos
),
53 regmap_update_bits(mixer
->engine
.regs
,
54 SUN8I_MIXER_BLEND_ROUTE(bld_base
),
55 SUN8I_MIXER_BLEND_ROUTE_PIPE_MSK(old_zpos
),
60 val
= SUN8I_MIXER_BLEND_PIPE_CTL_EN(zpos
);
62 regmap_update_bits(mixer
->engine
.regs
,
63 SUN8I_MIXER_BLEND_PIPE_CTL(bld_base
),
66 val
= channel
<< SUN8I_MIXER_BLEND_ROUTE_PIPE_SHIFT(zpos
);
68 regmap_update_bits(mixer
->engine
.regs
,
69 SUN8I_MIXER_BLEND_ROUTE(bld_base
),
70 SUN8I_MIXER_BLEND_ROUTE_PIPE_MSK(zpos
),
75 static int sun8i_ui_layer_update_coord(struct sun8i_mixer
*mixer
, int channel
,
76 int overlay
, struct drm_plane
*plane
,
79 struct drm_plane_state
*state
= plane
->state
;
80 u32 src_w
, src_h
, dst_w
, dst_h
;
81 u32 bld_base
, ch_base
;
85 DRM_DEBUG_DRIVER("Updating UI channel %d overlay %d\n",
88 bld_base
= sun8i_blender_base(mixer
);
89 ch_base
= sun8i_channel_base(mixer
, channel
);
91 src_w
= drm_rect_width(&state
->src
) >> 16;
92 src_h
= drm_rect_height(&state
->src
) >> 16;
93 dst_w
= drm_rect_width(&state
->dst
);
94 dst_h
= drm_rect_height(&state
->dst
);
96 hphase
= state
->src
.x1
& 0xffff;
97 vphase
= state
->src
.y1
& 0xffff;
99 insize
= SUN8I_MIXER_SIZE(src_w
, src_h
);
100 outsize
= SUN8I_MIXER_SIZE(dst_w
, dst_h
);
102 if (plane
->type
== DRM_PLANE_TYPE_PRIMARY
) {
103 bool interlaced
= false;
106 DRM_DEBUG_DRIVER("Primary layer, updating global size W: %u H: %u\n",
108 regmap_write(mixer
->engine
.regs
,
109 SUN8I_MIXER_GLOBAL_SIZE
,
111 regmap_write(mixer
->engine
.regs
,
112 SUN8I_MIXER_BLEND_OUTSIZE(bld_base
), outsize
);
115 interlaced
= state
->crtc
->state
->adjusted_mode
.flags
116 & DRM_MODE_FLAG_INTERLACE
;
119 val
= SUN8I_MIXER_BLEND_OUTCTL_INTERLACED
;
123 regmap_update_bits(mixer
->engine
.regs
,
124 SUN8I_MIXER_BLEND_OUTCTL(bld_base
),
125 SUN8I_MIXER_BLEND_OUTCTL_INTERLACED
,
128 DRM_DEBUG_DRIVER("Switching display mixer interlaced mode %s\n",
129 interlaced
? "on" : "off");
132 /* Set height and width */
133 DRM_DEBUG_DRIVER("Layer source offset X: %d Y: %d\n",
134 state
->src
.x1
>> 16, state
->src
.y1
>> 16);
135 DRM_DEBUG_DRIVER("Layer source size W: %d H: %d\n", src_w
, src_h
);
136 regmap_write(mixer
->engine
.regs
,
137 SUN8I_MIXER_CHAN_UI_LAYER_SIZE(ch_base
, overlay
),
139 regmap_write(mixer
->engine
.regs
,
140 SUN8I_MIXER_CHAN_UI_OVL_SIZE(ch_base
),
143 if (insize
!= outsize
|| hphase
|| vphase
) {
146 DRM_DEBUG_DRIVER("HW scaling is enabled\n");
148 hscale
= state
->src_w
/ state
->crtc_w
;
149 vscale
= state
->src_h
/ state
->crtc_h
;
151 sun8i_ui_scaler_setup(mixer
, channel
, src_w
, src_h
, dst_w
,
152 dst_h
, hscale
, vscale
, hphase
, vphase
);
153 sun8i_ui_scaler_enable(mixer
, channel
, true);
155 DRM_DEBUG_DRIVER("HW scaling is not needed\n");
156 sun8i_ui_scaler_enable(mixer
, channel
, false);
159 /* Set base coordinates */
160 DRM_DEBUG_DRIVER("Layer destination coordinates X: %d Y: %d\n",
161 state
->dst
.x1
, state
->dst
.y1
);
162 DRM_DEBUG_DRIVER("Layer destination size W: %d H: %d\n", dst_w
, dst_h
);
163 regmap_write(mixer
->engine
.regs
,
164 SUN8I_MIXER_BLEND_ATTR_COORD(bld_base
, zpos
),
165 SUN8I_MIXER_COORD(state
->dst
.x1
, state
->dst
.y1
));
166 regmap_write(mixer
->engine
.regs
,
167 SUN8I_MIXER_BLEND_ATTR_INSIZE(bld_base
, zpos
),
173 static int sun8i_ui_layer_update_formats(struct sun8i_mixer
*mixer
, int channel
,
174 int overlay
, struct drm_plane
*plane
)
176 struct drm_plane_state
*state
= plane
->state
;
177 const struct de2_fmt_info
*fmt_info
;
180 ch_base
= sun8i_channel_base(mixer
, channel
);
182 fmt_info
= sun8i_mixer_format_info(state
->fb
->format
->format
);
183 if (!fmt_info
|| !fmt_info
->rgb
) {
184 DRM_DEBUG_DRIVER("Invalid format\n");
188 val
= fmt_info
->de2_fmt
<< SUN8I_MIXER_CHAN_UI_LAYER_ATTR_FBFMT_OFFSET
;
189 regmap_update_bits(mixer
->engine
.regs
,
190 SUN8I_MIXER_CHAN_UI_LAYER_ATTR(ch_base
, overlay
),
191 SUN8I_MIXER_CHAN_UI_LAYER_ATTR_FBFMT_MASK
, val
);
196 static int sun8i_ui_layer_update_buffer(struct sun8i_mixer
*mixer
, int channel
,
197 int overlay
, struct drm_plane
*plane
)
199 struct drm_plane_state
*state
= plane
->state
;
200 struct drm_framebuffer
*fb
= state
->fb
;
201 struct drm_gem_cma_object
*gem
;
206 ch_base
= sun8i_channel_base(mixer
, channel
);
208 /* Get the physical address of the buffer in memory */
209 gem
= drm_fb_cma_get_gem_obj(fb
, 0);
211 DRM_DEBUG_DRIVER("Using GEM @ %pad\n", &gem
->paddr
);
213 /* Compute the start of the displayed memory */
214 bpp
= fb
->format
->cpp
[0];
215 paddr
= gem
->paddr
+ fb
->offsets
[0];
217 /* Fixup framebuffer address for src coordinates */
218 paddr
+= (state
->src
.x1
>> 16) * bpp
;
219 paddr
+= (state
->src
.y1
>> 16) * fb
->pitches
[0];
221 /* Set the line width */
222 DRM_DEBUG_DRIVER("Layer line width: %d bytes\n", fb
->pitches
[0]);
223 regmap_write(mixer
->engine
.regs
,
224 SUN8I_MIXER_CHAN_UI_LAYER_PITCH(ch_base
, overlay
),
227 DRM_DEBUG_DRIVER("Setting buffer address to %pad\n", &paddr
);
229 regmap_write(mixer
->engine
.regs
,
230 SUN8I_MIXER_CHAN_UI_LAYER_TOP_LADDR(ch_base
, overlay
),
231 lower_32_bits(paddr
));
236 static int sun8i_ui_layer_atomic_check(struct drm_plane
*plane
,
237 struct drm_plane_state
*state
)
239 struct sun8i_ui_layer
*layer
= plane_to_sun8i_ui_layer(plane
);
240 struct drm_crtc
*crtc
= state
->crtc
;
241 struct drm_crtc_state
*crtc_state
;
242 int min_scale
, max_scale
;
247 crtc_state
= drm_atomic_get_existing_crtc_state(state
->state
, crtc
);
248 if (WARN_ON(!crtc_state
))
251 min_scale
= DRM_PLANE_HELPER_NO_SCALING
;
252 max_scale
= DRM_PLANE_HELPER_NO_SCALING
;
254 if (layer
->mixer
->cfg
->scaler_mask
& BIT(layer
->channel
)) {
255 min_scale
= SUN8I_UI_SCALER_SCALE_MIN
;
256 max_scale
= SUN8I_UI_SCALER_SCALE_MAX
;
259 return drm_atomic_helper_check_plane_state(state
, crtc_state
,
260 min_scale
, max_scale
,
264 static void sun8i_ui_layer_atomic_disable(struct drm_plane
*plane
,
265 struct drm_plane_state
*old_state
)
267 struct sun8i_ui_layer
*layer
= plane_to_sun8i_ui_layer(plane
);
268 unsigned int old_zpos
= old_state
->normalized_zpos
;
269 struct sun8i_mixer
*mixer
= layer
->mixer
;
271 sun8i_ui_layer_enable(mixer
, layer
->channel
, layer
->overlay
, false, 0,
275 static void sun8i_ui_layer_atomic_update(struct drm_plane
*plane
,
276 struct drm_plane_state
*old_state
)
278 struct sun8i_ui_layer
*layer
= plane_to_sun8i_ui_layer(plane
);
279 unsigned int zpos
= plane
->state
->normalized_zpos
;
280 unsigned int old_zpos
= old_state
->normalized_zpos
;
281 struct sun8i_mixer
*mixer
= layer
->mixer
;
283 if (!plane
->state
->visible
) {
284 sun8i_ui_layer_enable(mixer
, layer
->channel
,
285 layer
->overlay
, false, 0, old_zpos
);
289 sun8i_ui_layer_update_coord(mixer
, layer
->channel
,
290 layer
->overlay
, plane
, zpos
);
291 sun8i_ui_layer_update_formats(mixer
, layer
->channel
,
292 layer
->overlay
, plane
);
293 sun8i_ui_layer_update_buffer(mixer
, layer
->channel
,
294 layer
->overlay
, plane
);
295 sun8i_ui_layer_enable(mixer
, layer
->channel
, layer
->overlay
,
296 true, zpos
, old_zpos
);
299 static struct drm_plane_helper_funcs sun8i_ui_layer_helper_funcs
= {
300 .prepare_fb
= drm_gem_fb_prepare_fb
,
301 .atomic_check
= sun8i_ui_layer_atomic_check
,
302 .atomic_disable
= sun8i_ui_layer_atomic_disable
,
303 .atomic_update
= sun8i_ui_layer_atomic_update
,
306 static const struct drm_plane_funcs sun8i_ui_layer_funcs
= {
307 .atomic_destroy_state
= drm_atomic_helper_plane_destroy_state
,
308 .atomic_duplicate_state
= drm_atomic_helper_plane_duplicate_state
,
309 .destroy
= drm_plane_cleanup
,
310 .disable_plane
= drm_atomic_helper_disable_plane
,
311 .reset
= drm_atomic_helper_plane_reset
,
312 .update_plane
= drm_atomic_helper_update_plane
,
315 static const u32 sun8i_ui_layer_formats
[] = {
338 struct sun8i_ui_layer
*sun8i_ui_layer_init_one(struct drm_device
*drm
,
339 struct sun8i_mixer
*mixer
,
342 enum drm_plane_type type
= DRM_PLANE_TYPE_OVERLAY
;
343 int channel
= mixer
->cfg
->vi_num
+ index
;
344 struct sun8i_ui_layer
*layer
;
345 unsigned int plane_cnt
;
348 layer
= devm_kzalloc(drm
->dev
, sizeof(*layer
), GFP_KERNEL
);
350 return ERR_PTR(-ENOMEM
);
353 type
= DRM_PLANE_TYPE_PRIMARY
;
355 /* possible crtcs are set later */
356 ret
= drm_universal_plane_init(drm
, &layer
->plane
, 0,
357 &sun8i_ui_layer_funcs
,
358 sun8i_ui_layer_formats
,
359 ARRAY_SIZE(sun8i_ui_layer_formats
),
362 dev_err(drm
->dev
, "Couldn't initialize layer\n");
366 plane_cnt
= mixer
->cfg
->ui_num
+ mixer
->cfg
->vi_num
;
368 ret
= drm_plane_create_zpos_property(&layer
->plane
, channel
,
371 dev_err(drm
->dev
, "Couldn't add zpos property\n");
375 drm_plane_helper_add(&layer
->plane
, &sun8i_ui_layer_helper_funcs
);
376 layer
->mixer
= mixer
;
377 layer
->channel
= channel
;