drm: rcar-du: Share plane atomic check code between Gen2 and Gen3
The plane atomic check implementation is identical on Gen2 (DU planes) and Gen3 (VSP planes), but two separate functions exist as they operate on different data structures. Refactor the code to share the implementation. Signed-off-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com> Tested-by: Kieran Bingham <kieran.bingham+renesas@ideasonboard.com> Reviewed-by: Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
This commit is contained in:
parent
dd286a5314
commit
9c893a61b7
|
@ -565,27 +565,26 @@ void __rcar_du_plane_setup(struct rcar_du_group *rgrp,
|
|||
}
|
||||
}
|
||||
|
||||
static int rcar_du_plane_atomic_check(struct drm_plane *plane,
|
||||
struct drm_plane_state *state)
|
||||
int __rcar_du_plane_atomic_check(struct drm_plane *plane,
|
||||
struct drm_plane_state *state,
|
||||
const struct rcar_du_format_info **format)
|
||||
{
|
||||
struct rcar_du_plane_state *rstate = to_rcar_plane_state(state);
|
||||
struct rcar_du_plane *rplane = to_rcar_plane(plane);
|
||||
struct rcar_du_device *rcdu = rplane->group->dev;
|
||||
struct drm_device *dev = plane->dev;
|
||||
|
||||
if (!state->fb || !state->crtc) {
|
||||
rstate->format = NULL;
|
||||
*format = NULL;
|
||||
return 0;
|
||||
}
|
||||
|
||||
if (state->src_w >> 16 != state->crtc_w ||
|
||||
state->src_h >> 16 != state->crtc_h) {
|
||||
dev_dbg(rcdu->dev, "%s: scaling not supported\n", __func__);
|
||||
dev_dbg(dev->dev, "%s: scaling not supported\n", __func__);
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
rstate->format = rcar_du_format_info(state->fb->format->format);
|
||||
if (rstate->format == NULL) {
|
||||
dev_dbg(rcdu->dev, "%s: unsupported format %08x\n", __func__,
|
||||
*format = rcar_du_format_info(state->fb->format->format);
|
||||
if (*format == NULL) {
|
||||
dev_dbg(dev->dev, "%s: unsupported format %08x\n", __func__,
|
||||
state->fb->format->format);
|
||||
return -EINVAL;
|
||||
}
|
||||
|
@ -593,6 +592,14 @@ static int rcar_du_plane_atomic_check(struct drm_plane *plane,
|
|||
return 0;
|
||||
}
|
||||
|
||||
static int rcar_du_plane_atomic_check(struct drm_plane *plane,
|
||||
struct drm_plane_state *state)
|
||||
{
|
||||
struct rcar_du_plane_state *rstate = to_rcar_plane_state(state);
|
||||
|
||||
return __rcar_du_plane_atomic_check(plane, state, &rstate->format);
|
||||
}
|
||||
|
||||
static void rcar_du_plane_atomic_update(struct drm_plane *plane,
|
||||
struct drm_plane_state *old_state)
|
||||
{
|
||||
|
|
|
@ -73,6 +73,10 @@ to_rcar_plane_state(struct drm_plane_state *state)
|
|||
int rcar_du_atomic_check_planes(struct drm_device *dev,
|
||||
struct drm_atomic_state *state);
|
||||
|
||||
int __rcar_du_plane_atomic_check(struct drm_plane *plane,
|
||||
struct drm_plane_state *state,
|
||||
const struct rcar_du_format_info **format);
|
||||
|
||||
int rcar_du_planes_init(struct rcar_du_group *rgrp);
|
||||
|
||||
void __rcar_du_plane_setup(struct rcar_du_group *rgrp,
|
||||
|
|
|
@ -268,28 +268,8 @@ static int rcar_du_vsp_plane_atomic_check(struct drm_plane *plane,
|
|||
struct drm_plane_state *state)
|
||||
{
|
||||
struct rcar_du_vsp_plane_state *rstate = to_rcar_vsp_plane_state(state);
|
||||
struct rcar_du_vsp_plane *rplane = to_rcar_vsp_plane(plane);
|
||||
struct rcar_du_device *rcdu = rplane->vsp->dev;
|
||||
|
||||
if (!state->fb || !state->crtc) {
|
||||
rstate->format = NULL;
|
||||
return 0;
|
||||
}
|
||||
|
||||
if (state->src_w >> 16 != state->crtc_w ||
|
||||
state->src_h >> 16 != state->crtc_h) {
|
||||
dev_dbg(rcdu->dev, "%s: scaling not supported\n", __func__);
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
rstate->format = rcar_du_format_info(state->fb->format->format);
|
||||
if (rstate->format == NULL) {
|
||||
dev_dbg(rcdu->dev, "%s: unsupported format %08x\n", __func__,
|
||||
state->fb->format->format);
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
return 0;
|
||||
return __rcar_du_plane_atomic_check(plane, state, &rstate->format);
|
||||
}
|
||||
|
||||
static void rcar_du_vsp_plane_atomic_update(struct drm_plane *plane,
|
||||
|
|
Loading…
Reference in New Issue