All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH RESEND] drm/mediatek: Add valid modifier check
@ 2023-07-24 17:58 ` Justin Green
  0 siblings, 0 replies; 21+ messages in thread
From: Justin Green @ 2023-07-24 17:58 UTC (permalink / raw)
  To: linux-mediatek, dri-devel
  Cc: chunkuang.hu, wenst, jason-jh.lin, justin.yeh,
	angelogioacchino.delregno, Justin Green

Add a check to mtk_drm_mode_fb_create() that rejects any modifier that
is not the AFBC mode supported by MT8195's display overlays.

Tested by booting ChromeOS and verifying the UI works, and by running
the ChromeOS kms_addfb_basic binary, which has a test called
"addfb25-bad-modifier" that attempts to create a framebuffer with the
modifier DRM_FORMAT_MOD_INVALID and verifies the ADDFB2 ioctl returns
EINVAL.

Signed-off-by: Justin Green <greenjustin@chromium.org>
---
 drivers/gpu/drm/mediatek/mtk_drm_drv.c | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/drivers/gpu/drm/mediatek/mtk_drm_drv.c b/drivers/gpu/drm/mediatek/mtk_drm_drv.c
index cd5b18ef7951..2096e8a794ad 100644
--- a/drivers/gpu/drm/mediatek/mtk_drm_drv.c
+++ b/drivers/gpu/drm/mediatek/mtk_drm_drv.c
@@ -51,6 +51,13 @@ mtk_drm_mode_fb_create(struct drm_device *dev,
 	if (info->num_planes != 1)
 		return ERR_PTR(-EINVAL);
 
+	if (cmd->modifier[0] &&
+	    cmd->modifier[0] != DRM_FORMAT_MOD_ARM_AFBC(
+					AFBC_FORMAT_MOD_BLOCK_SIZE_32x8 |
+					AFBC_FORMAT_MOD_SPLIT |
+					AFBC_FORMAT_MOD_SPARSE))
+		return ERR_PTR(-EINVAL);
+
 	return drm_gem_fb_create(dev, file, cmd);
 }
 
-- 
2.41.0.162.gfafddb0af9-goog



^ permalink raw reply related	[flat|nested] 21+ messages in thread

end of thread, other threads:[~2023-08-04  4:43 UTC | newest]

Thread overview: 21+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-07-24 17:58 [PATCH RESEND] drm/mediatek: Add valid modifier check Justin Green
2023-07-24 17:58 ` Justin Green
2023-07-25  6:56 ` AngeloGioacchino Del Regno
2023-07-25  6:56   ` AngeloGioacchino Del Regno
2023-07-25  6:59 ` Fei Shao
2023-07-25  6:59   ` Fei Shao
2023-07-25 10:28 ` Daniel Stone
2023-07-26 19:44   ` Justin Green
2023-07-26 19:44     ` Justin Green
2023-07-27  9:37     ` AngeloGioacchino Del Regno
2023-07-27  9:37       ` AngeloGioacchino Del Regno
2023-07-27 18:05       ` Justin Green
2023-07-27 18:05         ` Justin Green
2023-08-03  8:24 ` Daniel Vetter
2023-08-03  8:24   ` Daniel Vetter
2023-08-03 12:48   ` Justin Green
2023-08-03 12:48     ` Justin Green
2023-08-03 14:57     ` Daniel Vetter
2023-08-03 14:57       ` Daniel Vetter
2023-08-04  4:42       ` Fei Shao
2023-08-04  4:42         ` Fei Shao

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.