Add updated patches for 6.6. DMA/cache-handling patches have been reworked / backported from upstream. Signed-off-by: Zoltan HERPAI <wigyori@uid0.hu>
		
			
				
	
	
		
			33 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Diff
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Diff
		
	
	
	
	
	
From 3ea89ffbd6cc5a15acca6bc2130572f8bd85b9d4 Mon Sep 17 00:00:00 2001
 | 
						|
From: Changhuang Liang <changhuang.liang@starfivetech.com>
 | 
						|
Date: Wed, 27 Sep 2023 06:07:34 -0700
 | 
						|
Subject: [PATCH 046/116] pmdomain: starfive: Update prefixes for AON power
 | 
						|
 domain
 | 
						|
 | 
						|
Use "JH7110_AON_PD_" prefix for AON power doamin for JH7110 SoC.
 | 
						|
 | 
						|
Reviewed-by: Walker Chen <walker.chen@starfivetech.com>
 | 
						|
Signed-off-by: Changhuang Liang <changhuang.liang@starfivetech.com>
 | 
						|
Link: https://lore.kernel.org/r/20230927130734.9921-3-changhuang.liang@starfivetech.com
 | 
						|
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
 | 
						|
---
 | 
						|
 drivers/pmdomain/starfive/jh71xx-pmu.c | 4 ++--
 | 
						|
 1 file changed, 2 insertions(+), 2 deletions(-)
 | 
						|
 | 
						|
--- a/drivers/pmdomain/starfive/jh71xx-pmu.c
 | 
						|
+++ b/drivers/pmdomain/starfive/jh71xx-pmu.c
 | 
						|
@@ -420,11 +420,11 @@ static const struct jh71xx_pmu_match_dat
 | 
						|
 };
 | 
						|
 
 | 
						|
 static const struct jh71xx_domain_info jh7110_aon_power_domains[] = {
 | 
						|
-	[JH7110_PD_DPHY_TX] = {
 | 
						|
+	[JH7110_AON_PD_DPHY_TX] = {
 | 
						|
 		.name = "DPHY-TX",
 | 
						|
 		.bit = 30,
 | 
						|
 	},
 | 
						|
-	[JH7110_PD_DPHY_RX] = {
 | 
						|
+	[JH7110_AON_PD_DPHY_RX] = {
 | 
						|
 		.name = "DPHY-RX",
 | 
						|
 		.bit = 31,
 | 
						|
 	},
 |