|
@@ -2,6 +2,7 @@
|
|
|
* Copyright (C) 2002 ARM Ltd.
|
|
|
* All Rights Reserved
|
|
|
* Copyright (c) 2010, Code Aurora Forum. All rights reserved.
|
|
|
+ * Copyright (c) 2014 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 as
|
|
@@ -12,41 +13,37 @@
|
|
|
#include <linux/errno.h>
|
|
|
#include <linux/delay.h>
|
|
|
#include <linux/device.h>
|
|
|
-#include <linux/jiffies.h>
|
|
|
#include <linux/smp.h>
|
|
|
#include <linux/io.h>
|
|
|
|
|
|
-#include <asm/cacheflush.h>
|
|
|
#include <asm/cputype.h>
|
|
|
-#include <asm/mach-types.h>
|
|
|
#include <asm/smp_plat.h>
|
|
|
|
|
|
#include "scm-boot.h"
|
|
|
-#include "common.h"
|
|
|
|
|
|
#define VDD_SC1_ARRAY_CLAMP_GFS_CTL 0x15A0
|
|
|
#define SCSS_CPU1CORE_RESET 0xD80
|
|
|
#define SCSS_DBG_STATUS_CORE_PWRDUP 0xE64
|
|
|
|
|
|
-extern void msm_secondary_startup(void);
|
|
|
+extern void secondary_startup(void);
|
|
|
|
|
|
static DEFINE_SPINLOCK(boot_lock);
|
|
|
|
|
|
+#ifdef CONFIG_HOTPLUG_CPU
|
|
|
+static void __ref qcom_cpu_die(unsigned int cpu)
|
|
|
+{
|
|
|
+ wfi();
|
|
|
+}
|
|
|
+#endif
|
|
|
+
|
|
|
static inline int get_core_count(void)
|
|
|
{
|
|
|
/* 1 + the PART[1:0] field of MIDR */
|
|
|
return ((read_cpuid_id() >> 4) & 3) + 1;
|
|
|
}
|
|
|
|
|
|
-static void msm_secondary_init(unsigned int cpu)
|
|
|
+static void qcom_secondary_init(unsigned int cpu)
|
|
|
{
|
|
|
- /*
|
|
|
- * let the primary processor know we're out of the
|
|
|
- * pen, then head off into the C entry point
|
|
|
- */
|
|
|
- pen_release = -1;
|
|
|
- smp_wmb();
|
|
|
-
|
|
|
/*
|
|
|
* Synchronise with the boot thread.
|
|
|
*/
|
|
@@ -57,7 +54,7 @@ static void msm_secondary_init(unsigned int cpu)
|
|
|
static void prepare_cold_cpu(unsigned int cpu)
|
|
|
{
|
|
|
int ret;
|
|
|
- ret = scm_set_boot_addr(virt_to_phys(msm_secondary_startup),
|
|
|
+ ret = scm_set_boot_addr(virt_to_phys(secondary_startup),
|
|
|
SCM_FLAG_COLDBOOT_CPU1);
|
|
|
if (ret == 0) {
|
|
|
void __iomem *sc1_base_ptr;
|
|
@@ -73,9 +70,8 @@ static void prepare_cold_cpu(unsigned int cpu)
|
|
|
"address\n");
|
|
|
}
|
|
|
|
|
|
-static int msm_boot_secondary(unsigned int cpu, struct task_struct *idle)
|
|
|
+static int qcom_boot_secondary(unsigned int cpu, struct task_struct *idle)
|
|
|
{
|
|
|
- unsigned long timeout;
|
|
|
static int cold_boot_done;
|
|
|
|
|
|
/* Only need to bring cpu out of reset this way once */
|
|
@@ -90,17 +86,6 @@ static int msm_boot_secondary(unsigned int cpu, struct task_struct *idle)
|
|
|
*/
|
|
|
spin_lock(&boot_lock);
|
|
|
|
|
|
- /*
|
|
|
- * The secondary processor is waiting to be released from
|
|
|
- * the holding pen - release it, then wait for it to flag
|
|
|
- * that it has been released by resetting pen_release.
|
|
|
- *
|
|
|
- * Note that "pen_release" is the hardware CPU ID, whereas
|
|
|
- * "cpu" is Linux's internal ID.
|
|
|
- */
|
|
|
- pen_release = cpu_logical_map(cpu);
|
|
|
- sync_cache_w(&pen_release);
|
|
|
-
|
|
|
/*
|
|
|
* Send the secondary CPU a soft interrupt, thereby causing
|
|
|
* the boot monitor to read the system wide flags register,
|
|
@@ -108,22 +93,13 @@ static int msm_boot_secondary(unsigned int cpu, struct task_struct *idle)
|
|
|
*/
|
|
|
arch_send_wakeup_ipi_mask(cpumask_of(cpu));
|
|
|
|
|
|
- timeout = jiffies + (1 * HZ);
|
|
|
- while (time_before(jiffies, timeout)) {
|
|
|
- smp_rmb();
|
|
|
- if (pen_release == -1)
|
|
|
- break;
|
|
|
-
|
|
|
- udelay(10);
|
|
|
- }
|
|
|
-
|
|
|
/*
|
|
|
* now the secondary core is starting up let it run its
|
|
|
* calibrations, then wait for it to finish
|
|
|
*/
|
|
|
spin_unlock(&boot_lock);
|
|
|
|
|
|
- return pen_release != -1 ? -ENOSYS : 0;
|
|
|
+ return 0;
|
|
|
}
|
|
|
|
|
|
/*
|
|
@@ -132,7 +108,7 @@ static int msm_boot_secondary(unsigned int cpu, struct task_struct *idle)
|
|
|
* does not support the ARM SCU, so just set the possible cpu mask to
|
|
|
* NR_CPUS.
|
|
|
*/
|
|
|
-static void __init msm_smp_init_cpus(void)
|
|
|
+static void __init qcom_smp_init_cpus(void)
|
|
|
{
|
|
|
unsigned int i, ncores = get_core_count();
|
|
|
|
|
@@ -146,16 +122,16 @@ static void __init msm_smp_init_cpus(void)
|
|
|
set_cpu_possible(i, true);
|
|
|
}
|
|
|
|
|
|
-static void __init msm_smp_prepare_cpus(unsigned int max_cpus)
|
|
|
+static void __init qcom_smp_prepare_cpus(unsigned int max_cpus)
|
|
|
{
|
|
|
}
|
|
|
|
|
|
-struct smp_operations msm_smp_ops __initdata = {
|
|
|
- .smp_init_cpus = msm_smp_init_cpus,
|
|
|
- .smp_prepare_cpus = msm_smp_prepare_cpus,
|
|
|
- .smp_secondary_init = msm_secondary_init,
|
|
|
- .smp_boot_secondary = msm_boot_secondary,
|
|
|
+struct smp_operations qcom_smp_ops __initdata = {
|
|
|
+ .smp_init_cpus = qcom_smp_init_cpus,
|
|
|
+ .smp_prepare_cpus = qcom_smp_prepare_cpus,
|
|
|
+ .smp_secondary_init = qcom_secondary_init,
|
|
|
+ .smp_boot_secondary = qcom_boot_secondary,
|
|
|
#ifdef CONFIG_HOTPLUG_CPU
|
|
|
- .cpu_die = msm_cpu_die,
|
|
|
+ .cpu_die = qcom_cpu_die,
|
|
|
#endif
|
|
|
};
|