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>
		
			
				
	
	
		
			29 lines
		
	
	
		
			894 B
		
	
	
	
		
			Diff
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			894 B
		
	
	
	
		
			Diff
		
	
	
	
	
	
From 138752fb6ebd4f86751da00f20ed3a0139cde389 Mon Sep 17 00:00:00 2001
 | 
						|
From: Dave Stevenson <dave.stevenson@raspberrypi.com>
 | 
						|
Date: Fri, 24 Nov 2023 16:22:10 +0000
 | 
						|
Subject: [PATCH 0736/1085] drm/vc4: vec: Add the margin properties to the
 | 
						|
 connector
 | 
						|
 | 
						|
All the handling for the properties was present, but they
 | 
						|
were never attached to the connector to allow userspace
 | 
						|
to change them.
 | 
						|
 | 
						|
Add them to the connector.
 | 
						|
 | 
						|
Signed-off-by: Dave Stevenson <dave.stevenson@raspberrypi.com>
 | 
						|
---
 | 
						|
 drivers/gpu/drm/vc4/vc4_vec.c | 2 ++
 | 
						|
 1 file changed, 2 insertions(+)
 | 
						|
 | 
						|
--- a/drivers/gpu/drm/vc4/vc4_vec.c
 | 
						|
+++ b/drivers/gpu/drm/vc4/vc4_vec.c
 | 
						|
@@ -584,6 +584,8 @@ static int vc4_vec_connector_init(struct
 | 
						|
 
 | 
						|
 	drm_object_attach_property(&connector->base, prop, legacy_default_mode);
 | 
						|
 
 | 
						|
+	drm_connector_attach_tv_margin_properties(connector);
 | 
						|
+
 | 
						|
 	drm_connector_attach_encoder(connector, &vec->encoder.base);
 | 
						|
 
 | 
						|
 	return 0;
 |