mirror of
				git://git.openwrt.org/openwrt/openwrt.git
				synced 2025-11-03 14:34:27 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			37 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Diff
		
	
	
	
	
	
			
		
		
	
	
			37 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Diff
		
	
	
	
	
	
From d088a94afc768683a881b627b6737442158e7db6 Mon Sep 17 00:00:00 2001
 | 
						|
From: John Crispin <blogic@openwrt.org>
 | 
						|
Date: Tue, 5 Jan 2016 17:24:28 +0100
 | 
						|
Subject: [PATCH 028/102] ARM: mediatek: add MT7623 smp bringup code
 | 
						|
 | 
						|
Add support for booting secondary CPUs on MT7623.
 | 
						|
 | 
						|
Signed-off-by: John Crispin <blogic@openwrt.org>
 | 
						|
Signed-off-by: Matthias Brugger <matthias.bgg@gmail.com>
 | 
						|
---
 | 
						|
 arch/arm/mach-mediatek/platsmp.c |    7 +++++++
 | 
						|
 1 file changed, 7 insertions(+)
 | 
						|
 | 
						|
--- a/arch/arm/mach-mediatek/platsmp.c
 | 
						|
+++ b/arch/arm/mach-mediatek/platsmp.c
 | 
						|
@@ -44,6 +44,12 @@ static const struct mtk_smp_boot_info mt
 | 
						|
 	{ 0x38, 0x3c, 0x40 },
 | 
						|
 };
 | 
						|
 
 | 
						|
+static const struct mtk_smp_boot_info mtk_mt7623_boot = {
 | 
						|
+	0x10202000, 0x34,
 | 
						|
+	{ 0x534c4131, 0x4c415332, 0x41534c33 },
 | 
						|
+	{ 0x38, 0x3c, 0x40 },
 | 
						|
+};
 | 
						|
+
 | 
						|
 static const struct of_device_id mtk_tz_smp_boot_infos[] __initconst = {
 | 
						|
 	{ .compatible   = "mediatek,mt8135", .data = &mtk_mt8135_tz_boot },
 | 
						|
 	{ .compatible   = "mediatek,mt8127", .data = &mtk_mt8135_tz_boot },
 | 
						|
@@ -51,6 +57,7 @@ static const struct of_device_id mtk_tz_
 | 
						|
 
 | 
						|
 static const struct of_device_id mtk_smp_boot_infos[] __initconst = {
 | 
						|
 	{ .compatible   = "mediatek,mt6589", .data = &mtk_mt6589_boot },
 | 
						|
+	{ .compatible   = "mediatek,mt7623", .data = &mtk_mt7623_boot },
 | 
						|
 };
 | 
						|
 
 | 
						|
 static void __iomem *mtk_smp_base;
 |