mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-20 14:13:16 +00:00
2e715fb4fc
Add support for BCM2712 (Raspberry Pi 5).
3bb5880ab3
Patches were generated from the diff between linux kernel branch linux-6.1.y
and rpi-6.1.y from raspberry pi kernel source:
- git format-patch linux-6.1.y...rpi-6.1.y
Build system: x86_64
Build-tested: bcm2708, bcm2709, bcm2710, bcm2711
Run-tested: bcm2710/RPi3B, bcm2711/RPi4B
Signed-off-by: Marty Jones <mj8263788@gmail.com>
[Remove applied and reverted patches, squash patches and config commits]
Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
27 lines
857 B
Diff
27 lines
857 B
Diff
From 418d2e0e652c3870c29dd2e462f052a88fa027da Mon Sep 17 00:00:00 2001
|
|
From: Maxime Ripard <maxime@cerno.tech>
|
|
Date: Fri, 14 Apr 2023 12:59:05 +0200
|
|
Subject: [PATCH] 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(+)
|
|
|
|
--- 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_
|
|
};
|
|
|
|
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,
|