mirror of
				git://git.openwrt.org/openwrt/openwrt.git
				synced 2025-11-03 22:44:27 -05:00 
			
		
		
		
	1. Add new symbols to generic config 2. Bump kernel Changelog: https://lore.kernel.org/stable/2023080818-groin-gradient-a031@gregkh/ All patches automatically rebased. Signed-off-by: John Audia <therealgraysky@proton.me>
		
			
				
	
	
		
			32 lines
		
	
	
		
			953 B
		
	
	
	
		
			Diff
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			953 B
		
	
	
	
		
			Diff
		
	
	
	
	
	
--- a/arch/arm/Kconfig
 | 
						|
+++ b/arch/arm/Kconfig
 | 
						|
@@ -572,6 +572,18 @@ config ARCH_VIRT
 | 
						|
 	select HAVE_ARM_ARCH_TIMER
 | 
						|
 	select ARCH_SUPPORTS_BIG_ENDIAN
 | 
						|
 
 | 
						|
+config ARCH_AIROHA
 | 
						|
+	bool "Airoha SoC Support"
 | 
						|
+	depends on ARCH_MULTI_V7
 | 
						|
+	select ARM_AMBA
 | 
						|
+	select ARM_GIC
 | 
						|
+	select ARM_GIC_V3
 | 
						|
+	select ARM_PSCI
 | 
						|
+	select HAVE_ARM_ARCH_TIMER
 | 
						|
+	select COMMON_CLK
 | 
						|
+	help
 | 
						|
+	  Support for Airoha EN7523 SoCs
 | 
						|
+
 | 
						|
 #
 | 
						|
 # This is sorted alphabetically by mach-* pathname.  However, plat-*
 | 
						|
 # Kconfigs may be included either alphabetically (according to the
 | 
						|
--- a/arch/arm/Makefile
 | 
						|
+++ b/arch/arm/Makefile
 | 
						|
@@ -156,6 +156,7 @@ textofs-$(CONFIG_ARCH_AXXIA) := 0x003080
 | 
						|
 # Machine directory name.  This list is sorted alphanumerically
 | 
						|
 # by CONFIG_* macro name.
 | 
						|
 machine-$(CONFIG_ARCH_ACTIONS)		+= actions
 | 
						|
+machine-$(CONFIG_ARCH_AIROHA)		+= airoha
 | 
						|
 machine-$(CONFIG_ARCH_ALPINE)		+= alpine
 | 
						|
 machine-$(CONFIG_ARCH_ARTPEC)		+= artpec
 | 
						|
 machine-$(CONFIG_ARCH_ASPEED)           += aspeed
 |