drm: rcar-du: Rework plane setup code
Now that the plane setup code isn't called outside of the plane implementation, it can be simplified by merging the rcar_du_plane_compute_base() and rcar_du_plane_update_base() functions. Signed-off-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
This commit is contained in:
@@ -129,12 +129,14 @@ static void rcar_du_plane_release(struct rcar_du_plane *plane)
|
|||||||
plane->hwindex = -1;
|
plane->hwindex = -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void rcar_du_plane_update_base(struct rcar_du_plane *plane)
|
static void rcar_du_plane_setup_fb(struct rcar_du_plane *plane)
|
||||||
{
|
{
|
||||||
|
struct drm_framebuffer *fb = plane->plane.state->fb;
|
||||||
struct rcar_du_group *rgrp = plane->group;
|
struct rcar_du_group *rgrp = plane->group;
|
||||||
unsigned int src_x = plane->plane.state->src_x >> 16;
|
unsigned int src_x = plane->plane.state->src_x >> 16;
|
||||||
unsigned int src_y = plane->plane.state->src_y >> 16;
|
unsigned int src_y = plane->plane.state->src_y >> 16;
|
||||||
unsigned int index = plane->hwindex;
|
unsigned int index = plane->hwindex;
|
||||||
|
struct drm_gem_cma_object *gem;
|
||||||
bool interlaced;
|
bool interlaced;
|
||||||
u32 mwr;
|
u32 mwr;
|
||||||
|
|
||||||
@@ -144,9 +146,9 @@ static void rcar_du_plane_update_base(struct rcar_du_plane *plane)
|
|||||||
* operation with 32bpp formats.
|
* operation with 32bpp formats.
|
||||||
*/
|
*/
|
||||||
if (plane->format->planes == 2)
|
if (plane->format->planes == 2)
|
||||||
mwr = plane->pitch;
|
mwr = fb->pitches[0];
|
||||||
else
|
else
|
||||||
mwr = plane->pitch * 8 / plane->format->bpp;
|
mwr = fb->pitches[0] * 8 / plane->format->bpp;
|
||||||
|
|
||||||
if (interlaced && plane->format->bpp == 32)
|
if (interlaced && plane->format->bpp == 32)
|
||||||
mwr *= 2;
|
mwr *= 2;
|
||||||
@@ -168,33 +170,22 @@ static void rcar_du_plane_update_base(struct rcar_du_plane *plane)
|
|||||||
rcar_du_plane_write(rgrp, index, PnSPXR, src_x);
|
rcar_du_plane_write(rgrp, index, PnSPXR, src_x);
|
||||||
rcar_du_plane_write(rgrp, index, PnSPYR, src_y *
|
rcar_du_plane_write(rgrp, index, PnSPYR, src_y *
|
||||||
(!interlaced && plane->format->bpp == 32 ? 2 : 1));
|
(!interlaced && plane->format->bpp == 32 ? 2 : 1));
|
||||||
rcar_du_plane_write(rgrp, index, PnDSA0R, plane->dma[0]);
|
|
||||||
|
gem = drm_fb_cma_get_gem_obj(fb, 0);
|
||||||
|
rcar_du_plane_write(rgrp, index, PnDSA0R, gem->paddr + fb->offsets[0]);
|
||||||
|
|
||||||
if (plane->format->planes == 2) {
|
if (plane->format->planes == 2) {
|
||||||
index = (index + 1) % 8;
|
index = (index + 1) % 8;
|
||||||
|
|
||||||
rcar_du_plane_write(rgrp, index, PnMWR, plane->pitch);
|
rcar_du_plane_write(rgrp, index, PnMWR, fb->pitches[0]);
|
||||||
|
|
||||||
rcar_du_plane_write(rgrp, index, PnSPXR, src_x);
|
rcar_du_plane_write(rgrp, index, PnSPXR, src_x);
|
||||||
rcar_du_plane_write(rgrp, index, PnSPYR, src_y *
|
rcar_du_plane_write(rgrp, index, PnSPYR, src_y *
|
||||||
(plane->format->bpp == 16 ? 2 : 1) / 2);
|
(plane->format->bpp == 16 ? 2 : 1) / 2);
|
||||||
rcar_du_plane_write(rgrp, index, PnDSA0R, plane->dma[1]);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
static void rcar_du_plane_compute_base(struct rcar_du_plane *plane,
|
|
||||||
struct drm_framebuffer *fb)
|
|
||||||
{
|
|
||||||
struct drm_gem_cma_object *gem;
|
|
||||||
|
|
||||||
plane->pitch = fb->pitches[0];
|
|
||||||
|
|
||||||
gem = drm_fb_cma_get_gem_obj(fb, 0);
|
|
||||||
plane->dma[0] = gem->paddr + fb->offsets[0];
|
|
||||||
|
|
||||||
if (plane->format->planes == 2) {
|
|
||||||
gem = drm_fb_cma_get_gem_obj(fb, 1);
|
gem = drm_fb_cma_get_gem_obj(fb, 1);
|
||||||
plane->dma[1] = gem->paddr + fb->offsets[1];
|
rcar_du_plane_write(rgrp, index, PnDSA0R,
|
||||||
|
gem->paddr + fb->offsets[1]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -316,7 +307,7 @@ void rcar_du_plane_setup(struct rcar_du_plane *plane)
|
|||||||
if (plane->format->planes == 2)
|
if (plane->format->planes == 2)
|
||||||
__rcar_du_plane_setup(plane, (plane->hwindex + 1) % 8);
|
__rcar_du_plane_setup(plane, (plane->hwindex + 1) % 8);
|
||||||
|
|
||||||
rcar_du_plane_update_base(plane);
|
rcar_du_plane_setup_fb(plane);
|
||||||
}
|
}
|
||||||
|
|
||||||
static int rcar_du_plane_atomic_check(struct drm_plane *plane,
|
static int rcar_du_plane_atomic_check(struct drm_plane *plane,
|
||||||
@@ -403,7 +394,6 @@ static void rcar_du_plane_atomic_update(struct drm_plane *plane,
|
|||||||
rplane->crtc = state->crtc;
|
rplane->crtc = state->crtc;
|
||||||
rplane->format = format;
|
rplane->format = format;
|
||||||
|
|
||||||
rcar_du_plane_compute_base(rplane, state->fb);
|
|
||||||
rcar_du_plane_setup(rplane);
|
rcar_du_plane_setup(rplane);
|
||||||
|
|
||||||
mutex_lock(&rplane->group->planes.lock);
|
mutex_lock(&rplane->group->planes.lock);
|
||||||
|
|||||||
@@ -41,9 +41,6 @@ struct rcar_du_plane {
|
|||||||
int hwindex; /* 0-based, -1 means unused */
|
int hwindex; /* 0-based, -1 means unused */
|
||||||
|
|
||||||
const struct rcar_du_format_info *format;
|
const struct rcar_du_format_info *format;
|
||||||
|
|
||||||
unsigned long dma[2];
|
|
||||||
unsigned int pitch;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
struct rcar_du_planes {
|
struct rcar_du_planes {
|
||||||
|
|||||||
Reference in New Issue
Block a user