diff options
author | Lina Iyer <lina.iyer@linaro.org> | 2015-03-02 18:30:28 -0500 |
---|---|---|
committer | Kumar Gala <galak@codeaurora.org> | 2015-03-11 16:15:05 -0400 |
commit | a353e4a06f24235138d483a2625726a5fc472949 (patch) | |
tree | 87c373a4ae708b8f2df901ff9c16592ae02e6338 /arch/arm/mach-qcom | |
parent | 916f743da3546c28a2f350d197e3bea95d97ba15 (diff) |
firmware: qcom: scm: Clean cold boot entry to export only the API
We dont need to export the SCM specific cold boot flags to the platform
code. Export only a function to set the cold boot address.
Signed-off-by: Lina Iyer <lina.iyer@linaro.org>
Signed-off-by: Kumar Gala <galak@codeaurora.org>
Diffstat (limited to 'arch/arm/mach-qcom')
-rw-r--r-- | arch/arm/mach-qcom/platsmp.c | 21 |
1 files changed, 3 insertions, 18 deletions
diff --git a/arch/arm/mach-qcom/platsmp.c b/arch/arm/mach-qcom/platsmp.c index 4b67e56911d3..5cde63a64b34 100644 --- a/arch/arm/mach-qcom/platsmp.c +++ b/arch/arm/mach-qcom/platsmp.c | |||
@@ -319,25 +319,10 @@ static int kpssv2_boot_secondary(unsigned int cpu, struct task_struct *idle) | |||
319 | 319 | ||
320 | static void __init qcom_smp_prepare_cpus(unsigned int max_cpus) | 320 | static void __init qcom_smp_prepare_cpus(unsigned int max_cpus) |
321 | { | 321 | { |
322 | int cpu, map; | 322 | int cpu; |
323 | unsigned int flags = 0; | ||
324 | static const int cold_boot_flags[] = { | ||
325 | 0, | ||
326 | QCOM_SCM_FLAG_COLDBOOT_CPU1, | ||
327 | QCOM_SCM_FLAG_COLDBOOT_CPU2, | ||
328 | QCOM_SCM_FLAG_COLDBOOT_CPU3, | ||
329 | }; | ||
330 | |||
331 | for_each_present_cpu(cpu) { | ||
332 | map = cpu_logical_map(cpu); | ||
333 | if (WARN_ON(map >= ARRAY_SIZE(cold_boot_flags))) { | ||
334 | set_cpu_present(cpu, false); | ||
335 | continue; | ||
336 | } | ||
337 | flags |= cold_boot_flags[map]; | ||
338 | } | ||
339 | 323 | ||
340 | if (qcom_scm_set_boot_addr(virt_to_phys(secondary_startup_arm), flags)) { | 324 | if (qcom_scm_set_cold_boot_addr(secondary_startup_arm, |
325 | cpu_present_mask)) { | ||
341 | for_each_present_cpu(cpu) { | 326 | for_each_present_cpu(cpu) { |
342 | if (cpu == smp_processor_id()) | 327 | if (cpu == smp_processor_id()) |
343 | continue; | 328 | continue; |