From 23e9130c5c624469f56a2674e69066b115432798 Mon Sep 17 00:00:00 2001 From: Maxime Ripard Date: Fri, 14 Apr 2023 12:59:05 +0200 Subject: [PATCH 675/697] drm/vc4: tests: Support a few more plane formats We'll start testing our planes code in situations where we will use more than XRGB8888, so let's add a few common pixel formats. Signed-off-by: Maxime Ripard --- drivers/gpu/drm/vc4/tests/vc4_mock_plane.c | 3 +++ 1 file changed, 3 insertions(+) --- a/drivers/gpu/drm/vc4/tests/vc4_mock_plane.c +++ b/drivers/gpu/drm/vc4/tests/vc4_mock_plane.c @@ -19,7 +19,10 @@ static const struct drm_plane_funcs vc4_ }; static const uint32_t vc4_dummy_plane_formats[] = { + DRM_FORMAT_ARGB8888, DRM_FORMAT_XRGB8888, + DRM_FORMAT_YUV420, + DRM_FORMAT_YUV422, }; struct drm_plane *vc4_dummy_plane(struct kunit *test, struct drm_device *drm,