mirror of
https://github.com/torvalds/linux.git
synced 2025-12-07 20:06:24 +00:00
drm/sun4i: ui_layer: Move check from update to check callback
DRM requires that all checks are done in atomic_check callback. Move one check from atomic_commit to atomic_check callback. Reviewed-by: Chen-Yu Tsai <wens@csie.org> Tested-by: Ryan Walklin <ryan@testtoast.com> Signed-off-by: Jernej Skrabec <jernej.skrabec@gmail.com> Link: https://patch.msgid.link/20251104180942.61538-5-jernej.skrabec@gmail.com Signed-off-by: Chen-Yu Tsai <wens@kernel.org>
This commit is contained in:
committed by
Chen-Yu Tsai
parent
558716d558
commit
f841ea7e3f
@@ -135,16 +135,11 @@ static int sun8i_ui_layer_update_formats(struct sun8i_mixer *mixer, int channel,
|
||||
struct drm_plane_state *state = plane->state;
|
||||
const struct drm_format_info *fmt;
|
||||
u32 val, ch_base, hw_fmt;
|
||||
int ret;
|
||||
|
||||
ch_base = sun8i_channel_base(mixer, channel);
|
||||
|
||||
fmt = state->fb->format;
|
||||
ret = sun8i_mixer_drm_format_to_hw(fmt->format, &hw_fmt);
|
||||
if (ret || fmt->is_yuv) {
|
||||
DRM_DEBUG_DRIVER("Invalid format\n");
|
||||
return -EINVAL;
|
||||
}
|
||||
sun8i_mixer_drm_format_to_hw(fmt->format, &hw_fmt);
|
||||
|
||||
val = hw_fmt << SUN8I_MIXER_CHAN_UI_LAYER_ATTR_FBFMT_OFFSET;
|
||||
regmap_update_bits(mixer->engine.regs,
|
||||
@@ -202,7 +197,9 @@ static int sun8i_ui_layer_atomic_check(struct drm_plane *plane,
|
||||
struct sun8i_layer *layer = plane_to_sun8i_layer(plane);
|
||||
struct drm_crtc *crtc = new_plane_state->crtc;
|
||||
struct drm_crtc_state *crtc_state;
|
||||
int min_scale, max_scale;
|
||||
const struct drm_format_info *fmt;
|
||||
int min_scale, max_scale, ret;
|
||||
u32 hw_fmt;
|
||||
|
||||
if (!crtc)
|
||||
return 0;
|
||||
@@ -211,6 +208,13 @@ static int sun8i_ui_layer_atomic_check(struct drm_plane *plane,
|
||||
if (WARN_ON(!crtc_state))
|
||||
return -EINVAL;
|
||||
|
||||
fmt = new_plane_state->fb->format;
|
||||
ret = sun8i_mixer_drm_format_to_hw(fmt->format, &hw_fmt);
|
||||
if (ret || fmt->is_yuv) {
|
||||
DRM_DEBUG_DRIVER("Invalid plane format\n");
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
min_scale = DRM_PLANE_NO_SCALING;
|
||||
max_scale = DRM_PLANE_NO_SCALING;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user