| 
									
										
										
										
											2013-01-02 15:34:50 +00:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * PSCI SMP initialisation | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Copyright (C) 2013 ARM Ltd. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This program is free software; you can redistribute it and/or modify | 
					
						
							|  |  |  |  * it under the terms of the GNU General Public License 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. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * You should have received a copy of the GNU General Public License | 
					
						
							|  |  |  |  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <linux/init.h>
 | 
					
						
							|  |  |  | #include <linux/of.h>
 | 
					
						
							|  |  |  | #include <linux/smp.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <asm/psci.h>
 | 
					
						
							| 
									
										
										
										
											2013-03-26 11:02:51 +00:00
										 |  |  | #include <asm/smp_plat.h>
 | 
					
						
							| 
									
										
										
										
											2013-01-02 15:34:50 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | static int __init smp_psci_init_cpu(struct device_node *dn, int cpu) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int __init smp_psci_prepare_cpu(int cpu) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	int err; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!psci_ops.cpu_on) { | 
					
						
							|  |  |  | 		pr_err("psci: no cpu_on method, not booting CPU%d\n", cpu); | 
					
						
							|  |  |  | 		return -ENODEV; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-26 11:02:51 +00:00
										 |  |  | 	err = psci_ops.cpu_on(cpu_logical_map(cpu), __pa(secondary_holding_pen)); | 
					
						
							| 
									
										
										
										
											2013-01-02 15:34:50 +00:00
										 |  |  | 	if (err) { | 
					
						
							|  |  |  | 		pr_err("psci: failed to boot CPU%d (%d)\n", cpu, err); | 
					
						
							|  |  |  | 		return err; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | const struct smp_enable_ops smp_psci_ops __initconst = { | 
					
						
							|  |  |  | 	.name		= "psci", | 
					
						
							| 
									
										
										
										
											2013-03-26 11:02:51 +00:00
										 |  |  | 	.init_cpu	= smp_psci_init_cpu, | 
					
						
							| 
									
										
										
										
											2013-01-02 15:34:50 +00:00
										 |  |  | 	.prepare_cpu	= smp_psci_prepare_cpu, | 
					
						
							|  |  |  | }; |