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 | |
Abhimanyu Kapur | 90ced6e | 2012-06-26 17:41:25 -0700 | [diff] [blame] | 86 | if (machine_is_msm8974_sim()) { |
Sathish Ambley | cf59197 | 2012-04-26 16:24:15 -0700 | [diff] [blame] | 87 | writel_relaxed(0x800, base_ptr+0x04); |
| 88 | writel_relaxed(0x3FFF, base_ptr+0x14); |
| 89 | } |
Sathish Ambley | 576a697 | 2012-03-20 12:38:45 -0700 | [diff] [blame] | 90 | |
Stepan Moskovchenko | 964e103 | 2012-01-06 18:16:10 -0800 | [diff] [blame] | 91 | mb(); |
| 92 | iounmap(base_ptr); |
| 93 | return 0; |
| 94 | } |
| 95 | |
Sathish Ambley | 576a697 | 2012-03-20 12:38:45 -0700 | [diff] [blame] | 96 | static int __cpuinit krait_release_secondary(unsigned long base, int cpu) |
Stepan Moskovchenko | 964e103 | 2012-01-06 18:16:10 -0800 | [diff] [blame] | 97 | { |
Sathish Ambley | 576a697 | 2012-03-20 12:38:45 -0700 | [diff] [blame] | 98 | void *base_ptr = ioremap_nocache(base + (cpu * 0x10000), SZ_4K); |
Stepan Moskovchenko | 964e103 | 2012-01-06 18:16:10 -0800 | [diff] [blame] | 99 | if (!base_ptr) |
| 100 | return -ENODEV; |
| 101 | |
Stepan Moskovchenko | 9bbe585 | 2012-01-09 13:28:28 -0800 | [diff] [blame] | 102 | msm_spm_turn_on_cpu_rail(cpu); |
| 103 | |
Stepan Moskovchenko | 964e103 | 2012-01-06 18:16:10 -0800 | [diff] [blame] | 104 | writel_relaxed(0x109, base_ptr+0x04); |
| 105 | writel_relaxed(0x101, base_ptr+0x04); |
| 106 | ndelay(300); |
| 107 | |
| 108 | writel_relaxed(0x121, base_ptr+0x04); |
| 109 | udelay(2); |
| 110 | |
| 111 | writel_relaxed(0x020, base_ptr+0x04); |
| 112 | udelay(2); |
| 113 | |
| 114 | writel_relaxed(0x000, base_ptr+0x04); |
| 115 | udelay(100); |
| 116 | |
| 117 | writel_relaxed(0x080, base_ptr+0x04); |
| 118 | mb(); |
| 119 | iounmap(base_ptr); |
| 120 | return 0; |
| 121 | } |
| 122 | |
Stepan Moskovchenko | 2517372 | 2012-08-09 13:43:02 -0700 | [diff] [blame] | 123 | static int __cpuinit krait_release_secondary_p3(unsigned long base, int cpu) |
| 124 | { |
| 125 | void *base_ptr = ioremap_nocache(base + (cpu * 0x10000), SZ_4K); |
| 126 | if (!base_ptr) |
| 127 | return -ENODEV; |
| 128 | |
| 129 | writel_relaxed(0x021, base_ptr+0x04); |
| 130 | mb(); |
| 131 | udelay(2); |
| 132 | |
| 133 | writel_relaxed(0x020, base_ptr+0x04); |
| 134 | mb(); |
| 135 | udelay(2); |
| 136 | |
| 137 | writel_relaxed(0x000, base_ptr+0x04); |
| 138 | mb(); |
| 139 | |
| 140 | writel_relaxed(0x080, base_ptr+0x04); |
| 141 | mb(); |
| 142 | iounmap(base_ptr); |
| 143 | return 0; |
| 144 | } |
| 145 | |
Stepan Moskovchenko | 964e103 | 2012-01-06 18:16:10 -0800 | [diff] [blame] | 146 | static int __cpuinit release_secondary(unsigned int cpu) |
| 147 | { |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 148 | BUG_ON(cpu >= get_core_count()); |
| 149 | |
Stepan Moskovchenko | 964e103 | 2012-01-06 18:16:10 -0800 | [diff] [blame] | 150 | if (cpu_is_msm8x60()) |
| 151 | return scorpion_release_secondary(); |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 152 | |
Abhimanyu Kapur | 90ced6e | 2012-06-26 17:41:25 -0700 | [diff] [blame] | 153 | if (machine_is_msm8974_sim()) |
Sathish Ambley | 576a697 | 2012-03-20 12:38:45 -0700 | [diff] [blame] | 154 | return krait_release_secondary_sim(0xf9088000, cpu); |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 155 | |
Stepan Moskovchenko | 0df9bb2 | 2012-07-06 18:19:15 -0700 | [diff] [blame] | 156 | if (cpu_is_msm8960() || cpu_is_msm8930() || cpu_is_msm8930aa() || |
Stepan Moskovchenko | 9c74926 | 2012-07-09 19:30:44 -0700 | [diff] [blame] | 157 | cpu_is_apq8064() || cpu_is_msm8627() || cpu_is_msm8960ab()) |
Sathish Ambley | 576a697 | 2012-03-20 12:38:45 -0700 | [diff] [blame] | 158 | return krait_release_secondary(0x02088000, cpu); |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 159 | |
Stepan Moskovchenko | 2517372 | 2012-08-09 13:43:02 -0700 | [diff] [blame] | 160 | if (cpu_is_msm8974()) |
| 161 | return krait_release_secondary_p3(0xf9088000, cpu); |
| 162 | |
Stepan Moskovchenko | 964e103 | 2012-01-06 18:16:10 -0800 | [diff] [blame] | 163 | WARN(1, "unknown CPU case in release_secondary\n"); |
| 164 | return -EINVAL; |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 165 | } |
| 166 | |
Stepan Moskovchenko | 20a1233 | 2011-09-13 13:54:59 -0700 | [diff] [blame] | 167 | DEFINE_PER_CPU(int, cold_boot_done); |
Joel King | 274621c | 2011-12-05 06:18:20 -0800 | [diff] [blame] | 168 | static int cold_boot_flags[] = { |
| 169 | 0, |
| 170 | SCM_FLAG_COLDBOOT_CPU1, |
| 171 | SCM_FLAG_COLDBOOT_CPU2, |
| 172 | SCM_FLAG_COLDBOOT_CPU3, |
| 173 | }; |
Stepan Moskovchenko | 20a1233 | 2011-09-13 13:54:59 -0700 | [diff] [blame] | 174 | |
Jeff Ohlstein | e14411d | 2010-11-30 13:06:36 -0800 | [diff] [blame] | 175 | int __cpuinit boot_secondary(unsigned int cpu, struct task_struct *idle) |
| 176 | { |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 177 | int ret; |
Joel King | 274621c | 2011-12-05 06:18:20 -0800 | [diff] [blame] | 178 | int flag = 0; |
Jeff Ohlstein | e14411d | 2010-11-30 13:06:36 -0800 | [diff] [blame] | 179 | unsigned long timeout; |
Jeff Ohlstein | e14411d | 2010-11-30 13:06:36 -0800 | [diff] [blame] | 180 | |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 181 | pr_debug("Starting secondary CPU %d\n", cpu); |
| 182 | |
| 183 | /* Set preset_lpj to avoid subsequent lpj recalculations */ |
| 184 | preset_lpj = loops_per_jiffy; |
| 185 | |
Joel King | 274621c | 2011-12-05 06:18:20 -0800 | [diff] [blame] | 186 | if (cpu > 0 && cpu < ARRAY_SIZE(cold_boot_flags)) |
| 187 | flag = cold_boot_flags[cpu]; |
| 188 | else |
| 189 | __WARN(); |
| 190 | |
Stepan Moskovchenko | 20a1233 | 2011-09-13 13:54:59 -0700 | [diff] [blame] | 191 | if (per_cpu(cold_boot_done, cpu) == false) { |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 192 | ret = scm_set_boot_addr((void *) |
| 193 | virt_to_phys(msm_secondary_startup), |
Joel King | 274621c | 2011-12-05 06:18:20 -0800 | [diff] [blame] | 194 | flag); |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 195 | if (ret == 0) |
| 196 | release_secondary(cpu); |
| 197 | else |
| 198 | printk(KERN_DEBUG "Failed to set secondary core boot " |
| 199 | "address\n"); |
Stepan Moskovchenko | 20a1233 | 2011-09-13 13:54:59 -0700 | [diff] [blame] | 200 | per_cpu(cold_boot_done, cpu) = true; |
Jeff Ohlstein | e14411d | 2010-11-30 13:06:36 -0800 | [diff] [blame] | 201 | } |
| 202 | |
| 203 | /* |
| 204 | * set synchronisation state between this boot processor |
| 205 | * and the secondary one |
| 206 | */ |
| 207 | spin_lock(&boot_lock); |
| 208 | |
| 209 | /* |
| 210 | * The secondary processor is waiting to be released from |
| 211 | * the holding pen - release it, then wait for it to flag |
| 212 | * that it has been released by resetting pen_release. |
| 213 | * |
| 214 | * Note that "pen_release" is the hardware CPU ID, whereas |
| 215 | * "cpu" is Linux's internal ID. |
| 216 | */ |
Will Deacon | 1d3cfb3 | 2011-08-09 12:02:27 +0100 | [diff] [blame] | 217 | pen_release = cpu_logical_map(cpu); |
Jeff Ohlstein | e14411d | 2010-11-30 13:06:36 -0800 | [diff] [blame] | 218 | __cpuc_flush_dcache_area((void *)&pen_release, sizeof(pen_release)); |
| 219 | outer_clean_range(__pa(&pen_release), __pa(&pen_release + 1)); |
| 220 | |
| 221 | /* |
| 222 | * Send the secondary CPU a soft interrupt, thereby causing |
| 223 | * the boot monitor to read the system wide flags register, |
| 224 | * and branch to the address found there. |
| 225 | */ |
Russell King | 0f7b332 | 2011-04-03 13:01:30 +0100 | [diff] [blame] | 226 | gic_raise_softirq(cpumask_of(cpu), 1); |
Jeff Ohlstein | e14411d | 2010-11-30 13:06:36 -0800 | [diff] [blame] | 227 | |
| 228 | timeout = jiffies + (1 * HZ); |
| 229 | while (time_before(jiffies, timeout)) { |
| 230 | smp_rmb(); |
| 231 | if (pen_release == -1) |
| 232 | break; |
| 233 | |
Stephen Boyd | a812be8 | 2012-08-07 19:24:56 -0700 | [diff] [blame] | 234 | dmac_inv_range((char *)&pen_release, |
| 235 | (char *)&pen_release + sizeof(pen_release)); |
Jeff Ohlstein | e14411d | 2010-11-30 13:06:36 -0800 | [diff] [blame] | 236 | udelay(10); |
| 237 | } |
| 238 | |
| 239 | /* |
| 240 | * now the secondary core is starting up let it run its |
| 241 | * calibrations, then wait for it to finish |
| 242 | */ |
| 243 | spin_unlock(&boot_lock); |
| 244 | |
| 245 | return pen_release != -1 ? -ENOSYS : 0; |
| 246 | } |
Jeff Ohlstein | e14411d | 2010-11-30 13:06:36 -0800 | [diff] [blame] | 247 | /* |
| 248 | * Initialise the CPU possible map early - this describes the CPUs |
Steve Muckle | f132c6c | 2012-06-06 18:30:57 -0700 | [diff] [blame] | 249 | * which may be present or become present in the system. |
Jeff Ohlstein | e14411d | 2010-11-30 13:06:36 -0800 | [diff] [blame] | 250 | */ |
| 251 | void __init smp_init_cpus(void) |
| 252 | { |
Jeff Ohlstein | 41ff445 | 2011-04-07 17:41:09 -0700 | [diff] [blame] | 253 | unsigned int i, ncores = get_core_count(); |
Jeff Ohlstein | e14411d | 2010-11-30 13:06:36 -0800 | [diff] [blame] | 254 | |
Russell King | a06f916 | 2011-10-20 22:04:18 +0100 | [diff] [blame] | 255 | if (ncores > nr_cpu_ids) { |
| 256 | pr_warn("SMP: %u cores greater than maximum (%u), clipping\n", |
| 257 | ncores, nr_cpu_ids); |
| 258 | ncores = nr_cpu_ids; |
| 259 | } |
| 260 | |
Jeff Ohlstein | 41ff445 | 2011-04-07 17:41:09 -0700 | [diff] [blame] | 261 | for (i = 0; i < ncores; i++) |
Jeff Ohlstein | e14411d | 2010-11-30 13:06:36 -0800 | [diff] [blame] | 262 | set_cpu_possible(i, true); |
Russell King | 0f7b332 | 2011-04-03 13:01:30 +0100 | [diff] [blame] | 263 | |
Steve Muckle | f132c6c | 2012-06-06 18:30:57 -0700 | [diff] [blame] | 264 | set_smp_cross_call(gic_raise_softirq); |
Jeff Ohlstein | e14411d | 2010-11-30 13:06:36 -0800 | [diff] [blame] | 265 | } |
| 266 | |
| 267 | void __init platform_smp_prepare_cpus(unsigned int max_cpus) |
| 268 | { |
Jeff Ohlstein | e14411d | 2010-11-30 13:06:36 -0800 | [diff] [blame] | 269 | } |