platsmp.c 3.3 KB
Newer Older
J
Jeff Ohlstein 已提交
1 2 3 4
/*
 *  Copyright (C) 2002 ARM Ltd.
 *  All Rights Reserved
 *  Copyright (c) 2010, Code Aurora Forum. All rights reserved.
5
 *  Copyright (c) 2014 The Linux Foundation. All rights reserved.
J
Jeff Ohlstein 已提交
6 7 8 9 10 11 12 13 14 15 16 17 18
 *
 * 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.
 */

#include <linux/init.h>
#include <linux/errno.h>
#include <linux/delay.h>
#include <linux/device.h>
#include <linux/smp.h>
#include <linux/io.h>

19
#include <asm/cputype.h>
20
#include <asm/smp_plat.h>
J
Jeff Ohlstein 已提交
21 22 23 24 25 26 27

#include "scm-boot.h"

#define VDD_SC1_ARRAY_CLAMP_GFS_CTL 0x15A0
#define SCSS_CPU1CORE_RESET 0xD80
#define SCSS_DBG_STATUS_CORE_PWRDUP 0xE64

28
extern void secondary_startup(void);
J
Jeff Ohlstein 已提交
29 30 31

static DEFINE_SPINLOCK(boot_lock);

K
Kumar Gala 已提交
32 33 34 35 36 37 38
#ifdef CONFIG_HOTPLUG_CPU
static void __ref msm_cpu_die(unsigned int cpu)
{
	wfi();
}
#endif

39 40 41 42 43 44
static inline int get_core_count(void)
{
	/* 1 + the PART[1:0] field of MIDR */
	return ((read_cpuid_id() >> 4) & 3) + 1;
}

45
static void msm_secondary_init(unsigned int cpu)
J
Jeff Ohlstein 已提交
46 47 48 49 50 51 52 53
{
	/*
	 * Synchronise with the boot thread.
	 */
	spin_lock(&boot_lock);
	spin_unlock(&boot_lock);
}

54
static void prepare_cold_cpu(unsigned int cpu)
J
Jeff Ohlstein 已提交
55 56
{
	int ret;
57
	ret = scm_set_boot_addr(virt_to_phys(secondary_startup),
J
Jeff Ohlstein 已提交
58 59
				SCM_FLAG_COLDBOOT_CPU1);
	if (ret == 0) {
60
		void __iomem *sc1_base_ptr;
J
Jeff Ohlstein 已提交
61 62 63 64 65 66 67 68 69 70 71 72
		sc1_base_ptr = ioremap_nocache(0x00902000, SZ_4K*2);
		if (sc1_base_ptr) {
			writel(0, sc1_base_ptr + VDD_SC1_ARRAY_CLAMP_GFS_CTL);
			writel(0, sc1_base_ptr + SCSS_CPU1CORE_RESET);
			writel(3, sc1_base_ptr + SCSS_DBG_STATUS_CORE_PWRDUP);
			iounmap(sc1_base_ptr);
		}
	} else
		printk(KERN_DEBUG "Failed to set secondary core boot "
				  "address\n");
}

73
static int msm_boot_secondary(unsigned int cpu, struct task_struct *idle)
J
Jeff Ohlstein 已提交
74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93
{
	static int cold_boot_done;

	/* Only need to bring cpu out of reset this way once */
	if (cold_boot_done == false) {
		prepare_cold_cpu(cpu);
		cold_boot_done = true;
	}

	/*
	 * set synchronisation state between this boot processor
	 * and the secondary one
	 */
	spin_lock(&boot_lock);

	/*
	 * Send the secondary CPU a soft interrupt, thereby causing
	 * the boot monitor to read the system wide flags register,
	 * and branch to the address found there.
	 */
94
	arch_send_wakeup_ipi_mask(cpumask_of(cpu));
J
Jeff Ohlstein 已提交
95 96 97 98 99 100 101

	/*
	 * now the secondary core is starting up let it run its
	 * calibrations, then wait for it to finish
	 */
	spin_unlock(&boot_lock);

102
	return 0;
J
Jeff Ohlstein 已提交
103 104 105 106 107 108 109 110
}

/*
 * Initialise the CPU possible map early - this describes the CPUs
 * which may be present or become present in the system. The msm8x60
 * does not support the ARM SCU, so just set the possible cpu mask to
 * NR_CPUS.
 */
111
static void __init msm_smp_init_cpus(void)
J
Jeff Ohlstein 已提交
112
{
113
	unsigned int i, ncores = get_core_count();
J
Jeff Ohlstein 已提交
114

115 116 117 118 119 120
	if (ncores > nr_cpu_ids) {
		pr_warn("SMP: %u cores greater than maximum (%u), clipping\n",
			ncores, nr_cpu_ids);
		ncores = nr_cpu_ids;
	}

121
	for (i = 0; i < ncores; i++)
J
Jeff Ohlstein 已提交
122 123 124
		set_cpu_possible(i, true);
}

125
static void __init msm_smp_prepare_cpus(unsigned int max_cpus)
J
Jeff Ohlstein 已提交
126 127
{
}
128 129 130 131 132 133 134 135 136 137

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,
#ifdef CONFIG_HOTPLUG_CPU
	.cpu_die		= msm_cpu_die,
#endif
};