Jeff Ohlstein | e14411d | 2010-11-30 13:06:36 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2002 ARM Ltd. |
| 3 | * All Rights Reserved |
Stepan Moskovchenko | 964e103 | 2012-01-06 18:16:10 -0800 | [diff] [blame] | 4 | * Copyright (c) 2010-2012, Code Aurora Forum. All rights reserved. |
Jeff Ohlstein | e14411d | 2010-11-30 13:06:36 -0800 | [diff] [blame] | 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify |
| 7 | * it under the terms of the GNU General Public License version 2 as |
| 8 | * published by the Free Software Foundation. |
| 9 | */ |
| 10 | |
Joel King | 274621c | 2011-12-05 06:18:20 -0800 | [diff] [blame] | 11 | #include <linux/kernel.h> |
Jeff Ohlstein | e14411d | 2010-11-30 13:06:36 -0800 | [diff] [blame] | 12 | #include <linux/init.h> |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 13 | #include <linux/cpumask.h> |
Jeff Ohlstein | e14411d | 2010-11-30 13:06:36 -0800 | [diff] [blame] | 14 | #include <linux/delay.h> |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 15 | #include <linux/interrupt.h> |
Jeff Ohlstein | e14411d | 2010-11-30 13:06:36 -0800 | [diff] [blame] | 16 | #include <linux/io.h> |
| 17 | |
| 18 | #include <asm/hardware/gic.h> |
| 19 | #include <asm/cacheflush.h> |
Jeff Ohlstein | 41ff445 | 2011-04-07 17:41:09 -0700 | [diff] [blame] | 20 | #include <asm/cputype.h> |
Jeff Ohlstein | e14411d | 2010-11-30 13:06:36 -0800 | [diff] [blame] | 21 | #include <asm/mach-types.h> |
Will Deacon | eb50439 | 2012-01-20 12:01:12 +0100 | [diff] [blame] | 22 | #include <asm/smp_plat.h> |
Jeff Ohlstein | e14411d | 2010-11-30 13:06:36 -0800 | [diff] [blame] | 23 | |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 24 | #include <mach/socinfo.h> |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 25 | #include <mach/hardware.h> |
Jeff Ohlstein | e14411d | 2010-11-30 13:06:36 -0800 | [diff] [blame] | 26 | #include <mach/msm_iomap.h> |
| 27 | |
Matt Wagantall | 7cca464 | 2012-02-01 16:43:24 -0800 | [diff] [blame] | 28 | #include "pm.h" |
Jeff Ohlstein | e14411d | 2010-11-30 13:06:36 -0800 | [diff] [blame] | 29 | #include "scm-boot.h" |
Stepan Moskovchenko | 9bbe585 | 2012-01-09 13:28:28 -0800 | [diff] [blame] | 30 | #include "spm.h" |
Jeff Ohlstein | e14411d | 2010-11-30 13:06:36 -0800 | [diff] [blame] | 31 | |
| 32 | #define VDD_SC1_ARRAY_CLAMP_GFS_CTL 0x15A0 |
| 33 | #define SCSS_CPU1CORE_RESET 0xD80 |
| 34 | #define SCSS_DBG_STATUS_CORE_PWRDUP 0xE64 |
| 35 | |
Jeff Ohlstein | e14411d | 2010-11-30 13:06:36 -0800 | [diff] [blame] | 36 | extern void msm_secondary_startup(void); |
Steve Muckle | f132c6c | 2012-06-06 18:30:57 -0700 | [diff] [blame^] | 37 | |
Jeff Ohlstein | e14411d | 2010-11-30 13:06:36 -0800 | [diff] [blame] | 38 | /* |
| 39 | * control for which core is the next to come out of the secondary |
| 40 | * boot "holding pen". |
| 41 | */ |
| 42 | volatile int pen_release = -1; |
| 43 | |
| 44 | static DEFINE_SPINLOCK(boot_lock); |
| 45 | |
| 46 | void __cpuinit platform_secondary_init(unsigned int cpu) |
| 47 | { |
Steve Muckle | f132c6c | 2012-06-06 18:30:57 -0700 | [diff] [blame^] | 48 | WARN_ON(msm_platform_secondary_init(cpu)); |
Jeff Ohlstein | e14411d | 2010-11-30 13:06:36 -0800 | [diff] [blame] | 49 | |
| 50 | /* |
| 51 | * if any interrupts are already enabled for the primary |
| 52 | * core (e.g. timer irq), then they will not have been enabled |
| 53 | * for us: do so |
| 54 | */ |
| 55 | gic_secondary_init(0); |
| 56 | |
| 57 | /* |
Jeff Ohlstein | e14411d | 2010-11-30 13:06:36 -0800 | [diff] [blame] | 58 | * Synchronise with the boot thread. |
| 59 | */ |
| 60 | spin_lock(&boot_lock); |
| 61 | spin_unlock(&boot_lock); |
| 62 | } |
| 63 | |
Stepan Moskovchenko | 964e103 | 2012-01-06 18:16:10 -0800 | [diff] [blame] | 64 | static int __cpuinit scorpion_release_secondary(void) |
Jeff Ohlstein | e14411d | 2010-11-30 13:06:36 -0800 | [diff] [blame] | 65 | { |
Stepan Moskovchenko | 964e103 | 2012-01-06 18:16:10 -0800 | [diff] [blame] | 66 | void *base_ptr = ioremap_nocache(0x00902000, SZ_4K*2); |
| 67 | if (!base_ptr) |
| 68 | return -EINVAL; |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 69 | |
Steve Muckle | f132c6c | 2012-06-06 18:30:57 -0700 | [diff] [blame^] | 70 | writel_relaxed(0, base_ptr + VDD_SC1_ARRAY_CLAMP_GFS_CTL); |
Stepan Moskovchenko | 964e103 | 2012-01-06 18:16:10 -0800 | [diff] [blame] | 71 | dmb(); |
Steve Muckle | f132c6c | 2012-06-06 18:30:57 -0700 | [diff] [blame^] | 72 | writel_relaxed(0, base_ptr + SCSS_CPU1CORE_RESET); |
| 73 | writel_relaxed(3, base_ptr + SCSS_DBG_STATUS_CORE_PWRDUP); |
Stepan Moskovchenko | 964e103 | 2012-01-06 18:16:10 -0800 | [diff] [blame] | 74 | mb(); |
| 75 | iounmap(base_ptr); |
| 76 | |
| 77 | return 0; |
Jeff Ohlstein | e14411d | 2010-11-30 13:06:36 -0800 | [diff] [blame] | 78 | } |
| 79 | |
Sathish Ambley | 576a697 | 2012-03-20 12:38:45 -0700 | [diff] [blame] | 80 | static int __cpuinit krait_release_secondary_sim(unsigned long base, int cpu) |
Stepan Moskovchenko | 964e103 | 2012-01-06 18:16:10 -0800 | [diff] [blame] | 81 | { |
Sathish Ambley | 576a697 | 2012-03-20 12:38:45 -0700 | [diff] [blame] | 82 | void *base_ptr = ioremap_nocache(base + (cpu * 0x10000), SZ_4K); |
Stepan Moskovchenko | 964e103 | 2012-01-06 18:16:10 -0800 | [diff] [blame] | 83 | if (!base_ptr) |
| 84 | return -ENODEV; |
| 85 | |
| 86 | if (machine_is_msm8960_sim() || machine_is_msm8960_rumi3()) { |
| 87 | writel_relaxed(0x10, base_ptr+0x04); |
| 88 | writel_relaxed(0x80, base_ptr+0x04); |
| 89 | } |
| 90 | |
| 91 | if (machine_is_apq8064_sim()) |
| 92 | writel_relaxed(0xf0000, base_ptr+0x04); |
| 93 | |
Sathish Ambley | cf59197 | 2012-04-26 16:24:15 -0700 | [diff] [blame] | 94 | if (machine_is_copper_sim()) { |
| 95 | writel_relaxed(0x800, base_ptr+0x04); |
| 96 | writel_relaxed(0x3FFF, base_ptr+0x14); |
| 97 | } |
Sathish Ambley | 576a697 | 2012-03-20 12:38:45 -0700 | [diff] [blame] | 98 | |
Stepan Moskovchenko | 964e103 | 2012-01-06 18:16:10 -0800 | [diff] [blame] | 99 | mb(); |
| 100 | iounmap(base_ptr); |
| 101 | return 0; |
| 102 | } |
| 103 | |
Sathish Ambley | 576a697 | 2012-03-20 12:38:45 -0700 | [diff] [blame] | 104 | static int __cpuinit krait_release_secondary(unsigned long base, int cpu) |
Stepan Moskovchenko | 964e103 | 2012-01-06 18:16:10 -0800 | [diff] [blame] | 105 | { |
Sathish Ambley | 576a697 | 2012-03-20 12:38:45 -0700 | [diff] [blame] | 106 | void *base_ptr = ioremap_nocache(base + (cpu * 0x10000), SZ_4K); |
Stepan Moskovchenko | 964e103 | 2012-01-06 18:16:10 -0800 | [diff] [blame] | 107 | if (!base_ptr) |
| 108 | return -ENODEV; |
| 109 | |
Stepan Moskovchenko | 9bbe585 | 2012-01-09 13:28:28 -0800 | [diff] [blame] | 110 | msm_spm_turn_on_cpu_rail(cpu); |
| 111 | |
Stepan Moskovchenko | 964e103 | 2012-01-06 18:16:10 -0800 | [diff] [blame] | 112 | writel_relaxed(0x109, base_ptr+0x04); |
| 113 | writel_relaxed(0x101, base_ptr+0x04); |
| 114 | ndelay(300); |
| 115 | |
| 116 | writel_relaxed(0x121, base_ptr+0x04); |
| 117 | udelay(2); |
| 118 | |
| 119 | writel_relaxed(0x020, base_ptr+0x04); |
| 120 | udelay(2); |
| 121 | |
| 122 | writel_relaxed(0x000, base_ptr+0x04); |
| 123 | udelay(100); |
| 124 | |
| 125 | writel_relaxed(0x080, base_ptr+0x04); |
| 126 | mb(); |
| 127 | iounmap(base_ptr); |
| 128 | return 0; |
| 129 | } |
| 130 | |
| 131 | static int __cpuinit release_secondary(unsigned int cpu) |
| 132 | { |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 133 | BUG_ON(cpu >= get_core_count()); |
| 134 | |
Stepan Moskovchenko | 964e103 | 2012-01-06 18:16:10 -0800 | [diff] [blame] | 135 | if (cpu_is_msm8x60()) |
| 136 | return scorpion_release_secondary(); |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 137 | |
Stepan Moskovchenko | 964e103 | 2012-01-06 18:16:10 -0800 | [diff] [blame] | 138 | if (machine_is_msm8960_sim() || machine_is_msm8960_rumi3() || |
| 139 | machine_is_apq8064_sim()) |
Sathish Ambley | 576a697 | 2012-03-20 12:38:45 -0700 | [diff] [blame] | 140 | return krait_release_secondary_sim(0x02088000, cpu); |
| 141 | |
| 142 | if (machine_is_copper_sim()) |
| 143 | return krait_release_secondary_sim(0xf9088000, cpu); |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 144 | |
Stepan Moskovchenko | 964e103 | 2012-01-06 18:16:10 -0800 | [diff] [blame] | 145 | if (cpu_is_msm8960() || cpu_is_msm8930() || cpu_is_apq8064()) |
Sathish Ambley | 576a697 | 2012-03-20 12:38:45 -0700 | [diff] [blame] | 146 | return krait_release_secondary(0x02088000, cpu); |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 147 | |
Stepan Moskovchenko | 964e103 | 2012-01-06 18:16:10 -0800 | [diff] [blame] | 148 | WARN(1, "unknown CPU case in release_secondary\n"); |
| 149 | return -EINVAL; |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 150 | } |
| 151 | |
Stepan Moskovchenko | 20a1233 | 2011-09-13 13:54:59 -0700 | [diff] [blame] | 152 | DEFINE_PER_CPU(int, cold_boot_done); |
Joel King | 274621c | 2011-12-05 06:18:20 -0800 | [diff] [blame] | 153 | static int cold_boot_flags[] = { |
| 154 | 0, |
| 155 | SCM_FLAG_COLDBOOT_CPU1, |
| 156 | SCM_FLAG_COLDBOOT_CPU2, |
| 157 | SCM_FLAG_COLDBOOT_CPU3, |
| 158 | }; |
Stepan Moskovchenko | 20a1233 | 2011-09-13 13:54:59 -0700 | [diff] [blame] | 159 | |
Jeff Ohlstein | e14411d | 2010-11-30 13:06:36 -0800 | [diff] [blame] | 160 | int __cpuinit boot_secondary(unsigned int cpu, struct task_struct *idle) |
| 161 | { |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 162 | int ret; |
Joel King | 274621c | 2011-12-05 06:18:20 -0800 | [diff] [blame] | 163 | int flag = 0; |
Jeff Ohlstein | e14411d | 2010-11-30 13:06:36 -0800 | [diff] [blame] | 164 | unsigned long timeout; |
Jeff Ohlstein | e14411d | 2010-11-30 13:06:36 -0800 | [diff] [blame] | 165 | |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 166 | pr_debug("Starting secondary CPU %d\n", cpu); |
| 167 | |
| 168 | /* Set preset_lpj to avoid subsequent lpj recalculations */ |
| 169 | preset_lpj = loops_per_jiffy; |
| 170 | |
Joel King | 274621c | 2011-12-05 06:18:20 -0800 | [diff] [blame] | 171 | if (cpu > 0 && cpu < ARRAY_SIZE(cold_boot_flags)) |
| 172 | flag = cold_boot_flags[cpu]; |
| 173 | else |
| 174 | __WARN(); |
| 175 | |
Stepan Moskovchenko | 20a1233 | 2011-09-13 13:54:59 -0700 | [diff] [blame] | 176 | if (per_cpu(cold_boot_done, cpu) == false) { |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 177 | ret = scm_set_boot_addr((void *) |
| 178 | virt_to_phys(msm_secondary_startup), |
Joel King | 274621c | 2011-12-05 06:18:20 -0800 | [diff] [blame] | 179 | flag); |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 180 | if (ret == 0) |
| 181 | release_secondary(cpu); |
| 182 | else |
| 183 | printk(KERN_DEBUG "Failed to set secondary core boot " |
| 184 | "address\n"); |
Stepan Moskovchenko | 20a1233 | 2011-09-13 13:54:59 -0700 | [diff] [blame] | 185 | per_cpu(cold_boot_done, cpu) = true; |
Jeff Ohlstein | e14411d | 2010-11-30 13:06:36 -0800 | [diff] [blame] | 186 | } |
| 187 | |
| 188 | /* |
| 189 | * set synchronisation state between this boot processor |
| 190 | * and the secondary one |
| 191 | */ |
| 192 | spin_lock(&boot_lock); |
| 193 | |
| 194 | /* |
| 195 | * The secondary processor is waiting to be released from |
| 196 | * the holding pen - release it, then wait for it to flag |
| 197 | * that it has been released by resetting pen_release. |
| 198 | * |
| 199 | * Note that "pen_release" is the hardware CPU ID, whereas |
| 200 | * "cpu" is Linux's internal ID. |
| 201 | */ |
Will Deacon | 1d3cfb3 | 2011-08-09 12:02:27 +0100 | [diff] [blame] | 202 | pen_release = cpu_logical_map(cpu); |
Jeff Ohlstein | e14411d | 2010-11-30 13:06:36 -0800 | [diff] [blame] | 203 | __cpuc_flush_dcache_area((void *)&pen_release, sizeof(pen_release)); |
| 204 | outer_clean_range(__pa(&pen_release), __pa(&pen_release + 1)); |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 205 | __asm__("sev"); |
| 206 | mb(); |
Jeff Ohlstein | e14411d | 2010-11-30 13:06:36 -0800 | [diff] [blame] | 207 | |
| 208 | /* |
| 209 | * Send the secondary CPU a soft interrupt, thereby causing |
| 210 | * the boot monitor to read the system wide flags register, |
| 211 | * and branch to the address found there. |
| 212 | */ |
Russell King | 0f7b332 | 2011-04-03 13:01:30 +0100 | [diff] [blame] | 213 | gic_raise_softirq(cpumask_of(cpu), 1); |
Jeff Ohlstein | e14411d | 2010-11-30 13:06:36 -0800 | [diff] [blame] | 214 | |
| 215 | timeout = jiffies + (1 * HZ); |
| 216 | while (time_before(jiffies, timeout)) { |
| 217 | smp_rmb(); |
| 218 | if (pen_release == -1) |
| 219 | break; |
| 220 | |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 221 | dmac_inv_range((void *)&pen_release, |
| 222 | (void *)(&pen_release+sizeof(pen_release))); |
Jeff Ohlstein | e14411d | 2010-11-30 13:06:36 -0800 | [diff] [blame] | 223 | udelay(10); |
| 224 | } |
| 225 | |
| 226 | /* |
| 227 | * now the secondary core is starting up let it run its |
| 228 | * calibrations, then wait for it to finish |
| 229 | */ |
| 230 | spin_unlock(&boot_lock); |
| 231 | |
| 232 | return pen_release != -1 ? -ENOSYS : 0; |
| 233 | } |
Jeff Ohlstein | e14411d | 2010-11-30 13:06:36 -0800 | [diff] [blame] | 234 | /* |
| 235 | * Initialise the CPU possible map early - this describes the CPUs |
Steve Muckle | f132c6c | 2012-06-06 18:30:57 -0700 | [diff] [blame^] | 236 | * which may be present or become present in the system. |
Jeff Ohlstein | e14411d | 2010-11-30 13:06:36 -0800 | [diff] [blame] | 237 | */ |
| 238 | void __init smp_init_cpus(void) |
| 239 | { |
Jeff Ohlstein | 41ff445 | 2011-04-07 17:41:09 -0700 | [diff] [blame] | 240 | unsigned int i, ncores = get_core_count(); |
Jeff Ohlstein | e14411d | 2010-11-30 13:06:36 -0800 | [diff] [blame] | 241 | |
Russell King | a06f916 | 2011-10-20 22:04:18 +0100 | [diff] [blame] | 242 | if (ncores > nr_cpu_ids) { |
| 243 | pr_warn("SMP: %u cores greater than maximum (%u), clipping\n", |
| 244 | ncores, nr_cpu_ids); |
| 245 | ncores = nr_cpu_ids; |
| 246 | } |
| 247 | |
Jeff Ohlstein | 41ff445 | 2011-04-07 17:41:09 -0700 | [diff] [blame] | 248 | for (i = 0; i < ncores; i++) |
Jeff Ohlstein | e14411d | 2010-11-30 13:06:36 -0800 | [diff] [blame] | 249 | set_cpu_possible(i, true); |
Russell King | 0f7b332 | 2011-04-03 13:01:30 +0100 | [diff] [blame] | 250 | |
Steve Muckle | f132c6c | 2012-06-06 18:30:57 -0700 | [diff] [blame^] | 251 | set_smp_cross_call(gic_raise_softirq); |
Jeff Ohlstein | e14411d | 2010-11-30 13:06:36 -0800 | [diff] [blame] | 252 | } |
| 253 | |
| 254 | void __init platform_smp_prepare_cpus(unsigned int max_cpus) |
| 255 | { |
Jeff Ohlstein | e14411d | 2010-11-30 13:06:36 -0800 | [diff] [blame] | 256 | } |