mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-07 20:58:14 -04:00
drm/msm/dpu: pass drm_framebuffer to _dpu_format_get_plane_sizes()
Instead of passing width / height / pitches, pass drm_framebuffer directly. This allows us to drop the useless check for !pitches, since an array can not be NULL. Reviewed-by: Abhinav Kumar <quic_abhinavk@quicinc.com> Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org> Patchwork: https://patchwork.freedesktop.org/patch/612248/ Link: https://lore.kernel.org/r/20240903-dpu-mode-config-width-v6-8-617e1ecc4b7a@linaro.org
This commit is contained in:
@@ -95,8 +95,7 @@ static int _dpu_format_get_media_color_ubwc(const struct msm_format *fmt)
|
||||
|
||||
static int _dpu_format_get_plane_sizes_ubwc(
|
||||
const struct msm_format *fmt,
|
||||
const uint32_t width,
|
||||
const uint32_t height,
|
||||
struct drm_framebuffer *fb,
|
||||
struct dpu_hw_fmt_layout *layout)
|
||||
{
|
||||
int i;
|
||||
@@ -104,8 +103,8 @@ static int _dpu_format_get_plane_sizes_ubwc(
|
||||
bool meta = MSM_FORMAT_IS_UBWC(fmt);
|
||||
|
||||
memset(layout, 0, sizeof(struct dpu_hw_fmt_layout));
|
||||
layout->width = width;
|
||||
layout->height = height;
|
||||
layout->width = fb->width;
|
||||
layout->height = fb->height;
|
||||
layout->num_planes = fmt->num_planes;
|
||||
|
||||
color = _dpu_format_get_media_color_ubwc(fmt);
|
||||
@@ -121,13 +120,13 @@ static int _dpu_format_get_plane_sizes_ubwc(
|
||||
uint32_t uv_meta_scanlines = 0;
|
||||
|
||||
layout->num_planes = 2;
|
||||
layout->plane_pitch[0] = VENUS_Y_STRIDE(color, width);
|
||||
y_sclines = VENUS_Y_SCANLINES(color, height);
|
||||
layout->plane_pitch[0] = VENUS_Y_STRIDE(color, fb->width);
|
||||
y_sclines = VENUS_Y_SCANLINES(color, fb->height);
|
||||
layout->plane_size[0] = MSM_MEDIA_ALIGN(layout->plane_pitch[0] *
|
||||
y_sclines, DPU_UBWC_PLANE_SIZE_ALIGNMENT);
|
||||
|
||||
layout->plane_pitch[1] = VENUS_UV_STRIDE(color, width);
|
||||
uv_sclines = VENUS_UV_SCANLINES(color, height);
|
||||
layout->plane_pitch[1] = VENUS_UV_STRIDE(color, fb->width);
|
||||
uv_sclines = VENUS_UV_SCANLINES(color, fb->height);
|
||||
layout->plane_size[1] = MSM_MEDIA_ALIGN(layout->plane_pitch[1] *
|
||||
uv_sclines, DPU_UBWC_PLANE_SIZE_ALIGNMENT);
|
||||
|
||||
@@ -135,13 +134,13 @@ static int _dpu_format_get_plane_sizes_ubwc(
|
||||
goto done;
|
||||
|
||||
layout->num_planes += 2;
|
||||
layout->plane_pitch[2] = VENUS_Y_META_STRIDE(color, width);
|
||||
y_meta_scanlines = VENUS_Y_META_SCANLINES(color, height);
|
||||
layout->plane_pitch[2] = VENUS_Y_META_STRIDE(color, fb->width);
|
||||
y_meta_scanlines = VENUS_Y_META_SCANLINES(color, fb->height);
|
||||
layout->plane_size[2] = MSM_MEDIA_ALIGN(layout->plane_pitch[2] *
|
||||
y_meta_scanlines, DPU_UBWC_PLANE_SIZE_ALIGNMENT);
|
||||
|
||||
layout->plane_pitch[3] = VENUS_UV_META_STRIDE(color, width);
|
||||
uv_meta_scanlines = VENUS_UV_META_SCANLINES(color, height);
|
||||
layout->plane_pitch[3] = VENUS_UV_META_STRIDE(color, fb->width);
|
||||
uv_meta_scanlines = VENUS_UV_META_SCANLINES(color, fb->height);
|
||||
layout->plane_size[3] = MSM_MEDIA_ALIGN(layout->plane_pitch[3] *
|
||||
uv_meta_scanlines, DPU_UBWC_PLANE_SIZE_ALIGNMENT);
|
||||
|
||||
@@ -150,16 +149,16 @@ static int _dpu_format_get_plane_sizes_ubwc(
|
||||
|
||||
layout->num_planes = 1;
|
||||
|
||||
layout->plane_pitch[0] = VENUS_RGB_STRIDE(color, width);
|
||||
rgb_scanlines = VENUS_RGB_SCANLINES(color, height);
|
||||
layout->plane_pitch[0] = VENUS_RGB_STRIDE(color, fb->width);
|
||||
rgb_scanlines = VENUS_RGB_SCANLINES(color, fb->height);
|
||||
layout->plane_size[0] = MSM_MEDIA_ALIGN(layout->plane_pitch[0] *
|
||||
rgb_scanlines, DPU_UBWC_PLANE_SIZE_ALIGNMENT);
|
||||
|
||||
if (!meta)
|
||||
goto done;
|
||||
layout->num_planes += 2;
|
||||
layout->plane_pitch[2] = VENUS_RGB_META_STRIDE(color, width);
|
||||
rgb_meta_scanlines = VENUS_RGB_META_SCANLINES(color, height);
|
||||
layout->plane_pitch[2] = VENUS_RGB_META_STRIDE(color, fb->width);
|
||||
rgb_meta_scanlines = VENUS_RGB_META_SCANLINES(color, fb->height);
|
||||
layout->plane_size[2] = MSM_MEDIA_ALIGN(layout->plane_pitch[2] *
|
||||
rgb_meta_scanlines, DPU_UBWC_PLANE_SIZE_ALIGNMENT);
|
||||
}
|
||||
@@ -173,23 +172,21 @@ static int _dpu_format_get_plane_sizes_ubwc(
|
||||
|
||||
static int _dpu_format_get_plane_sizes_linear(
|
||||
const struct msm_format *fmt,
|
||||
const uint32_t width,
|
||||
const uint32_t height,
|
||||
struct dpu_hw_fmt_layout *layout,
|
||||
const uint32_t *pitches)
|
||||
struct drm_framebuffer *fb,
|
||||
struct dpu_hw_fmt_layout *layout)
|
||||
{
|
||||
int i;
|
||||
|
||||
memset(layout, 0, sizeof(struct dpu_hw_fmt_layout));
|
||||
layout->width = width;
|
||||
layout->height = height;
|
||||
layout->width = fb->width;
|
||||
layout->height = fb->height;
|
||||
layout->num_planes = fmt->num_planes;
|
||||
|
||||
/* Due to memset above, only need to set planes of interest */
|
||||
if (fmt->fetch_type == MDP_PLANE_INTERLEAVED) {
|
||||
layout->num_planes = 1;
|
||||
layout->plane_size[0] = width * height * fmt->bpp;
|
||||
layout->plane_pitch[0] = width * fmt->bpp;
|
||||
layout->plane_size[0] = fb->width * fb->height * fmt->bpp;
|
||||
layout->plane_pitch[0] = fb->width * fmt->bpp;
|
||||
} else {
|
||||
uint32_t v_subsample, h_subsample;
|
||||
uint32_t chroma_samp;
|
||||
@@ -199,7 +196,7 @@ static int _dpu_format_get_plane_sizes_linear(
|
||||
_dpu_get_v_h_subsample_rate(chroma_samp, &v_subsample,
|
||||
&h_subsample);
|
||||
|
||||
if (width % h_subsample || height % v_subsample) {
|
||||
if (fb->width % h_subsample || fb->height % v_subsample) {
|
||||
DRM_ERROR("mismatch in subsample vs dimensions\n");
|
||||
return -EINVAL;
|
||||
}
|
||||
@@ -207,11 +204,11 @@ static int _dpu_format_get_plane_sizes_linear(
|
||||
if ((fmt->pixel_format == DRM_FORMAT_NV12) &&
|
||||
(MSM_FORMAT_IS_DX(fmt)))
|
||||
bpp = 2;
|
||||
layout->plane_pitch[0] = width * bpp;
|
||||
layout->plane_pitch[0] = fb->width * bpp;
|
||||
layout->plane_pitch[1] = layout->plane_pitch[0] / h_subsample;
|
||||
layout->plane_size[0] = layout->plane_pitch[0] * height;
|
||||
layout->plane_size[0] = layout->plane_pitch[0] * fb->height;
|
||||
layout->plane_size[1] = layout->plane_pitch[1] *
|
||||
(height / v_subsample);
|
||||
(fb->height / v_subsample);
|
||||
|
||||
if (fmt->fetch_type == MDP_PLANE_PSEUDO_PLANAR) {
|
||||
layout->num_planes = 2;
|
||||
@@ -232,8 +229,8 @@ static int _dpu_format_get_plane_sizes_linear(
|
||||
* all the components based on ubwc specifications.
|
||||
*/
|
||||
for (i = 0; i < layout->num_planes && i < DPU_MAX_PLANES; ++i) {
|
||||
if (pitches && layout->plane_pitch[i] < pitches[i])
|
||||
layout->plane_pitch[i] = pitches[i];
|
||||
if (layout->plane_pitch[i] < fb->pitches[i])
|
||||
layout->plane_pitch[i] = fb->pitches[i];
|
||||
}
|
||||
|
||||
for (i = 0; i < DPU_MAX_PLANES; i++)
|
||||
@@ -244,25 +241,24 @@ static int _dpu_format_get_plane_sizes_linear(
|
||||
|
||||
static int dpu_format_get_plane_sizes(
|
||||
const struct msm_format *fmt,
|
||||
const uint32_t w,
|
||||
const uint32_t h,
|
||||
struct dpu_hw_fmt_layout *layout,
|
||||
const uint32_t *pitches)
|
||||
struct drm_framebuffer *fb,
|
||||
struct dpu_hw_fmt_layout *layout)
|
||||
{
|
||||
if (!layout || !fmt) {
|
||||
DRM_ERROR("invalid pointer\n");
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
if ((w > DPU_MAX_IMG_WIDTH) || (h > DPU_MAX_IMG_HEIGHT)) {
|
||||
if (fb->width > DPU_MAX_IMG_WIDTH ||
|
||||
fb->height > DPU_MAX_IMG_HEIGHT) {
|
||||
DRM_ERROR("image dimensions outside max range\n");
|
||||
return -ERANGE;
|
||||
}
|
||||
|
||||
if (MSM_FORMAT_IS_UBWC(fmt) || MSM_FORMAT_IS_TILE(fmt))
|
||||
return _dpu_format_get_plane_sizes_ubwc(fmt, w, h, layout);
|
||||
return _dpu_format_get_plane_sizes_ubwc(fmt, fb, layout);
|
||||
|
||||
return _dpu_format_get_plane_sizes_linear(fmt, w, h, layout, pitches);
|
||||
return _dpu_format_get_plane_sizes_linear(fmt, fb, layout);
|
||||
}
|
||||
|
||||
static int _dpu_format_populate_addrs_ubwc(
|
||||
@@ -407,8 +403,7 @@ int dpu_format_populate_layout(
|
||||
fmt = msm_framebuffer_format(fb);
|
||||
|
||||
/* Populate the plane sizes etc via get_format */
|
||||
ret = dpu_format_get_plane_sizes(fmt, fb->width, fb->height,
|
||||
layout, fb->pitches);
|
||||
ret = dpu_format_get_plane_sizes(fmt, fb, layout);
|
||||
if (ret)
|
||||
return ret;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user