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>
		
			
				
	
	
		
			28 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			Diff
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			Diff
		
	
	
	
	
	
From 719d68c874bde83f2410dc41a34c3ddf6d71bda9 Mon Sep 17 00:00:00 2001
 | 
						|
From: Dave Stevenson <dave.stevenson@raspberrypi.com>
 | 
						|
Date: Tue, 19 May 2020 16:20:30 +0100
 | 
						|
Subject: [PATCH 0004/1085] drm/vc4: Add FKMS as an acceptable node for dma
 | 
						|
 ranges.
 | 
						|
 | 
						|
Under FKMS, the firmware (via FKMS) also requires the VideoCore cache
 | 
						|
aliases for image planes, as defined by the dma-ranges under /soc.
 | 
						|
 | 
						|
Add rpi-firmware-kms to the list of acceptable nodes to look for
 | 
						|
to copy dma config from.
 | 
						|
 | 
						|
Signed-off-by: Dave Stevenson <dave.stevenson@raspberrypi.com>
 | 
						|
---
 | 
						|
 drivers/gpu/drm/vc4/vc4_drv.c | 1 +
 | 
						|
 1 file changed, 1 insertion(+)
 | 
						|
 | 
						|
--- a/drivers/gpu/drm/vc4/vc4_drv.c
 | 
						|
+++ b/drivers/gpu/drm/vc4/vc4_drv.c
 | 
						|
@@ -276,6 +276,7 @@ static void vc4_component_unbind_all(voi
 | 
						|
 static const struct of_device_id vc4_dma_range_matches[] = {
 | 
						|
 	{ .compatible = "brcm,bcm2711-hvs" },
 | 
						|
 	{ .compatible = "brcm,bcm2835-hvs" },
 | 
						|
+	{ .compatible = "raspberrypi,rpi-firmware-kms" },
 | 
						|
 	{ .compatible = "brcm,bcm2835-v3d" },
 | 
						|
 	{ .compatible = "brcm,cygnus-v3d" },
 | 
						|
 	{ .compatible = "brcm,vc4-v3d" },
 |