The patches were generated from the RPi repo with the following command: git format-patch v6.6.34..rpi-6.1.y Some patches needed rebasing and, as usual, the applied and reverted, wireless drivers, Github workflows, READMEs and defconfigs patches were removed. Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
		
			
				
	
	
		
			38 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			Diff
		
	
	
	
	
	
			
		
		
	
	
			38 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			Diff
		
	
	
	
	
	
From eba335e843ae7e9672c43ce39394d5d975cf2f1d Mon Sep 17 00:00:00 2001
 | 
						|
From: Maxime Ripard <maxime@cerno.tech>
 | 
						|
Date: Fri, 14 Apr 2023 11:26:58 +0200
 | 
						|
Subject: [PATCH 0630/1085] drm/vc4: tests: Add function to lookup a plane for
 | 
						|
 a CRTC
 | 
						|
 | 
						|
Some tests will need to find a plane to run a test on for a given CRTC.
 | 
						|
Let's create a small helper to do that.
 | 
						|
 | 
						|
Signed-off-by: Maxime Ripard <maxime@cerno.tech>
 | 
						|
---
 | 
						|
 drivers/gpu/drm/vc4/tests/vc4_mock.h | 14 ++++++++++++++
 | 
						|
 1 file changed, 14 insertions(+)
 | 
						|
 | 
						|
--- a/drivers/gpu/drm/vc4/tests/vc4_mock.h
 | 
						|
+++ b/drivers/gpu/drm/vc4/tests/vc4_mock.h
 | 
						|
@@ -21,6 +21,20 @@ struct drm_crtc *vc4_find_crtc_for_encod
 | 
						|
 	return NULL;
 | 
						|
 }
 | 
						|
 
 | 
						|
+static inline
 | 
						|
+struct drm_plane *vc4_mock_find_plane_for_crtc(struct kunit *test,
 | 
						|
+					       struct drm_crtc *crtc)
 | 
						|
+{
 | 
						|
+	struct drm_device *drm = crtc->dev;
 | 
						|
+	struct drm_plane *plane;
 | 
						|
+
 | 
						|
+	drm_for_each_plane(plane, drm)
 | 
						|
+		if (plane->possible_crtcs & drm_crtc_mask(crtc))
 | 
						|
+			return plane;
 | 
						|
+
 | 
						|
+	return NULL;
 | 
						|
+}
 | 
						|
+
 | 
						|
 struct vc4_dummy_plane {
 | 
						|
 	struct vc4_plane plane;
 | 
						|
 };
 |