1
0
Fork 0
mirror of https://github.com/Ysurac/openmptcprouter.git synced 2025-02-24 06:54:16 +00:00
openmptcprouter/6.6/target/linux/bcm27xx/patches-6.6/0632-drm-vc4-tests-Support-a-few-more-plane-formats.patch
Ycarus (Yannick Chabanois) 12de1d2995 Add RPI kernel 6.6 support
2024-04-05 20:55:33 +02:00

31 lines
1 KiB
Diff

From 8471b6a7eba7cd79d3159e2e565504075cffa00b Mon Sep 17 00:00:00 2001
From: Maxime Ripard <maxime@cerno.tech>
Date: Fri, 14 Apr 2023 12:59:05 +0200
Subject: [PATCH 0632/1002] 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 <maxime@cerno.tech>
---
drivers/gpu/drm/vc4/tests/vc4_mock_plane.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/drivers/gpu/drm/vc4/tests/vc4_mock_plane.c b/drivers/gpu/drm/vc4/tests/vc4_mock_plane.c
index e1bdcb89bdf6..d5083695399f 100644
--- a/drivers/gpu/drm/vc4/tests/vc4_mock_plane.c
+++ b/drivers/gpu/drm/vc4/tests/vc4_mock_plane.c
@@ -21,7 +21,10 @@ static const struct drm_plane_funcs vc4_dummy_plane_funcs = {
};
static const uint32_t vc4_dummy_plane_formats[] = {
+ DRM_FORMAT_ARGB8888,
DRM_FORMAT_XRGB8888,
+ DRM_FORMAT_YUV420,
+ DRM_FORMAT_YUV422,
};
struct vc4_dummy_plane *vc4_dummy_plane(struct kunit *test,
--
2.44.0