| 
									
										
										
										
											2012-09-05 12:28:58 -07:00
										 |  |  | /* Copyright (c) 2012, The Linux Foundation. All rights reserved.
 | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This program is free software; you can redistribute it and/or modify | 
					
						
							|  |  |  |  * it under the terms of the GNU General Public License version 2 and | 
					
						
							|  |  |  |  * only version 2 as published by the Free Software Foundation. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This program is distributed in the hope that it will be useful, | 
					
						
							|  |  |  |  * but WITHOUT ANY WARRANTY; without even the implied warranty of | 
					
						
							|  |  |  |  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
					
						
							|  |  |  |  * GNU General Public License for more details. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <linux/init.h>
 | 
					
						
							|  |  |  | #include <linux/of_platform.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <asm/mach/arch.h>
 | 
					
						
							| 
									
										
										
										
											2013-07-24 13:54:29 -07:00
										 |  |  | #include <asm/mach/map.h>
 | 
					
						
							| 
									
										
										
										
											2012-09-05 12:28:58 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | #include "common.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void __init msm_dt_init(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	of_platform_populate(NULL, of_default_bus_match_table, NULL, NULL); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static const char * const msm8960_dt_match[] __initconst = { | 
					
						
							|  |  |  | 	"qcom,msm8960-cdp", | 
					
						
							|  |  |  | 	NULL | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | DT_MACHINE_START(MSM8960_DT, "Qualcomm MSM (Flattened Device Tree)") | 
					
						
							| 
									
										
										
										
											2012-09-22 00:06:21 -07:00
										 |  |  | 	.smp = smp_ops(msm_smp_ops), | 
					
						
							| 
									
										
										
										
											2012-09-05 12:28:58 -07:00
										 |  |  | 	.init_machine = msm_dt_init, | 
					
						
							|  |  |  | 	.dt_compat = msm8960_dt_match, | 
					
						
							|  |  |  | MACHINE_END |