mirror of
				git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
				synced 2025-10-31 08:44:41 +00:00 
			
		
		
		
	msm: add MSM8x60 FFA support
The MSM8X60 FFA contains different components than the MSM8X60 SURF, and therefore requires a different ARCH type and machine ID. Signed-off-by: Gregory Bean <gbean@codeaurora.org> Signed-off-by: Daniel Walker <dwalker@codeaurora.org>
This commit is contained in:
		
							parent
							
								
									57bbf1cc8c
								
							
						
					
					
						commit
						69b7f6ff85
					
				
					 2 changed files with 15 additions and 1 deletions
				
			
		|  | @ -41,7 +41,8 @@ config ARCH_MSM8X60 | |||
| 	select CPU_V7 | ||||
| 	select MSM_V2_TLMM | ||||
| 	select MSM_GPIOMUX | ||||
| 	select MACH_MSM8X60_SURF if (!MACH_MSM8X60_RUMI3 && !MACH_MSM8X60_SIM) | ||||
| 	select MACH_MSM8X60_SURF if (!MACH_MSM8X60_RUMI3 && !MACH_MSM8X60_SIM \ | ||||
| 				  && !MACH_MSM8X60_FFA) | ||||
| 
 | ||||
| endchoice | ||||
| 
 | ||||
|  | @ -112,6 +113,12 @@ config MACH_MSM8X60_SIM | |||
| 	help | ||||
| 	  Support for the Qualcomm MSM8x60 simulator. | ||||
| 
 | ||||
| config MACH_MSM8X60_FFA | ||||
| 	depends on ARCH_MSM8X60 | ||||
| 	bool "MSM8x60 FFA" | ||||
| 	help | ||||
| 	  Support for the Qualcomm MSM8x60 FFA eval board. | ||||
| 
 | ||||
| endmenu | ||||
| 
 | ||||
| config MSM_DEBUG_UART | ||||
|  |  | |||
|  | @ -91,3 +91,10 @@ MACHINE_START(MSM8X60_SIM, "QCT MSM8X60 SIMULATOR") | |||
| 	.init_machine = msm8x60_init, | ||||
| 	.timer = &msm_timer, | ||||
| MACHINE_END | ||||
| 
 | ||||
| MACHINE_START(MSM8X60_FFA, "QCT MSM8X60 FFA") | ||||
| 	.map_io = msm8x60_map_io, | ||||
| 	.init_irq = msm8x60_init_irq, | ||||
| 	.init_machine = msm8x60_init, | ||||
| 	.timer = &msm_timer, | ||||
| MACHINE_END | ||||
|  |  | |||
		Loading…
	
	Add table
		
		Reference in a new issue
	
	 Gregory Bean
						Gregory Bean