Taniya Das | 137dc8e | 2011-12-02 14:50:00 +0530 | [diff] [blame] | 1 | /* Copyright (c) 2012, Code Aurora Forum. All rights reserved. |
| 2 | * |
| 3 | * This program is free software; you can redistribute it and/or modify |
| 4 | * it under the terms of the GNU General Public License version 2 and |
| 5 | * only version 2 as published by the Free Software Foundation. |
| 6 | * |
| 7 | * This program is distributed in the hope that it will be useful, |
| 8 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 9 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 10 | * GNU General Public License for more details. |
| 11 | */ |
| 12 | |
| 13 | #include <linux/init.h> |
| 14 | #include <linux/errno.h> |
| 15 | #include <linux/delay.h> |
| 16 | #include <linux/device.h> |
| 17 | #include <linux/jiffies.h> |
| 18 | #include <linux/smp.h> |
| 19 | #include <linux/io.h> |
| 20 | |
| 21 | #include <asm/cacheflush.h> |
| 22 | #include <asm/hardware/gic.h> |
| 23 | #include <asm/hardware/cache-l2x0.h> |
| 24 | #include <asm/smp_scu.h> |
| 25 | #include <asm/unified.h> |
| 26 | #include <mach/msm_iomap.h> |
| 27 | #include <mach/smp.h> |
| 28 | #include "pm.h" |
| 29 | |
| 30 | #define MSM_CORE1_RESET 0xA8600590 |
Taniya Das | 63da646 | 2012-02-27 17:22:11 +0530 | [diff] [blame^] | 31 | #define MSM_CORE1_STATUS_MSK 0x02800000 |
| 32 | |
Taniya Das | 137dc8e | 2011-12-02 14:50:00 +0530 | [diff] [blame] | 33 | /* |
| 34 | * control for which core is the next to come out of the secondary |
| 35 | * boot "holding pen" |
| 36 | */ |
| 37 | int pen_release = -1; |
| 38 | |
| 39 | static bool cold_boot_done; |
| 40 | |
| 41 | static uint32_t *msm8625_boot_vector; |
| 42 | |
| 43 | /* |
| 44 | * Write pen_release in a way that is guaranteed to be visible to all |
| 45 | * observers, irrespective of whether they're taking part in coherency |
| 46 | * or not. This is necessary for the hotplug code to work reliably. |
| 47 | */ |
| 48 | static void __cpuinit write_pen_release(int val) |
| 49 | { |
| 50 | pen_release = val; |
| 51 | smp_wmb(); |
| 52 | __cpuc_flush_dcache_area((void *)&pen_release, sizeof(pen_release)); |
| 53 | outer_clean_range(__pa(&pen_release), __pa(&pen_release + 1)); |
| 54 | } |
| 55 | |
| 56 | static void __iomem *scu_base_addr(void) |
| 57 | { |
| 58 | return MSM_SCU_BASE; |
| 59 | } |
| 60 | |
| 61 | static DEFINE_SPINLOCK(boot_lock); |
| 62 | |
| 63 | void __cpuinit platform_secondary_init(unsigned int cpu) |
| 64 | { |
| 65 | /* |
| 66 | * if any interrupts are already enabled for the primary |
| 67 | * core (e.g. timer irq), then they will not have been enabled |
| 68 | * for us: do so |
| 69 | */ |
| 70 | gic_secondary_init(0); |
| 71 | |
| 72 | /* |
| 73 | * let the primary processor know we're out of the |
| 74 | * pen, then head off into the C entry point |
| 75 | */ |
| 76 | write_pen_release(-1); |
| 77 | |
| 78 | /* |
| 79 | * Synchronise with the boot thread. |
| 80 | */ |
| 81 | spin_lock(&boot_lock); |
| 82 | spin_unlock(&boot_lock); |
| 83 | } |
| 84 | |
Taniya Das | 63da646 | 2012-02-27 17:22:11 +0530 | [diff] [blame^] | 85 | static int __cpuinit msm8625_release_secondary(void) |
| 86 | { |
| 87 | void __iomem *base_ptr; |
| 88 | int value = 0; |
| 89 | unsigned long timeout; |
| 90 | |
| 91 | /* |
| 92 | * loop to ensure that the GHS_STATUS_CORE1 bit in the |
| 93 | * MPA5_STATUS_REG(0x3c) is set. The timeout for the while |
| 94 | * loop can be set as 20us as of now |
| 95 | */ |
| 96 | timeout = jiffies + usecs_to_jiffies(20); |
| 97 | while (time_before(jiffies, timeout)) { |
| 98 | value = __raw_readl(MSM_CFG_CTL_BASE + 0x3c); |
| 99 | if ((value & MSM_CORE1_STATUS_MSK) == |
| 100 | MSM_CORE1_STATUS_MSK) |
| 101 | break; |
| 102 | udelay(1); |
| 103 | } |
| 104 | |
| 105 | if (!value) { |
| 106 | pr_err("Core 1 cannot be brought out of Reset!!!\n"); |
| 107 | return -ENODEV; |
| 108 | } |
| 109 | |
| 110 | base_ptr = ioremap_nocache(MSM_CORE1_RESET, SZ_4); |
| 111 | if (!base_ptr) |
| 112 | return -ENODEV; |
| 113 | /* Reset core 1 out of reset */ |
| 114 | __raw_writel(0x0, base_ptr); |
| 115 | mb(); |
| 116 | |
| 117 | iounmap(base_ptr); |
| 118 | |
| 119 | return 0; |
| 120 | } |
| 121 | |
Taniya Das | 137dc8e | 2011-12-02 14:50:00 +0530 | [diff] [blame] | 122 | int __cpuinit boot_secondary(unsigned int cpu, struct task_struct *idle) |
| 123 | { |
| 124 | unsigned long timeout; |
Taniya Das | 137dc8e | 2011-12-02 14:50:00 +0530 | [diff] [blame] | 125 | |
| 126 | if (cold_boot_done == false) { |
Taniya Das | 63da646 | 2012-02-27 17:22:11 +0530 | [diff] [blame^] | 127 | if (msm8625_release_secondary()) { |
| 128 | pr_err("Failed to release secondary core\n"); |
Taniya Das | 137dc8e | 2011-12-02 14:50:00 +0530 | [diff] [blame] | 129 | return -ENODEV; |
Taniya Das | 63da646 | 2012-02-27 17:22:11 +0530 | [diff] [blame^] | 130 | } |
Taniya Das | 137dc8e | 2011-12-02 14:50:00 +0530 | [diff] [blame] | 131 | cold_boot_done = true; |
Taniya Das | 137dc8e | 2011-12-02 14:50:00 +0530 | [diff] [blame] | 132 | } |
| 133 | |
| 134 | /* |
| 135 | * Set synchronisation state between this boot processor |
| 136 | * and the secondary one |
| 137 | */ |
| 138 | spin_lock(&boot_lock); |
| 139 | |
| 140 | /* |
| 141 | * This is really belt and braces; we hold unintended secondary |
| 142 | * CPUs in the holding pen until we're ready for them. However, |
| 143 | * since we haven't sent them a soft interrupt, they shouldn't |
| 144 | * be there. |
| 145 | */ |
| 146 | write_pen_release(cpu); |
| 147 | |
| 148 | /* |
| 149 | * Send the secondary CPU a soft interrupt, thereby causing |
| 150 | * the boot monitor to read the system wide flags register, |
| 151 | * and branch to the address found there. |
| 152 | */ |
| 153 | gic_raise_softirq(cpumask_of(cpu), 1); |
| 154 | |
| 155 | timeout = jiffies + (1 * HZ); |
| 156 | while (time_before(jiffies, timeout)) { |
| 157 | smp_rmb(); |
| 158 | if (pen_release == -1) |
| 159 | break; |
| 160 | |
| 161 | udelay(10); |
| 162 | } |
| 163 | |
| 164 | /* |
| 165 | * now the secondary core is starting up let it run its |
| 166 | * calibrations, then wait for it to finish |
| 167 | */ |
| 168 | spin_unlock(&boot_lock); |
| 169 | |
| 170 | return 0; |
| 171 | } |
| 172 | |
| 173 | /* |
| 174 | * Initialise the CPU possible map early - this describes the CPUs |
| 175 | * which may be present or become present in the system. |
| 176 | */ |
| 177 | void __init smp_init_cpus(void) |
| 178 | { |
| 179 | void __iomem *scu_base = scu_base_addr(); |
| 180 | |
| 181 | unsigned int i, ncores; |
| 182 | |
| 183 | ncores = scu_base ? scu_get_core_count(scu_base) : 1; |
| 184 | |
| 185 | for (i = 0; i < ncores; i++) |
| 186 | set_cpu_possible(i, true); |
| 187 | |
| 188 | set_smp_cross_call(gic_raise_softirq); |
| 189 | } |
| 190 | |
| 191 | static void __init msm8625_boot_vector_init(uint32_t *boot_vector, |
| 192 | unsigned long entry) |
| 193 | { |
| 194 | if (!boot_vector) |
| 195 | return; |
| 196 | msm8625_boot_vector = boot_vector; |
| 197 | |
| 198 | msm8625_boot_vector[0] = 0xE51FF004; /* ldr pc, 4 */ |
| 199 | msm8625_boot_vector[1] = entry; |
| 200 | } |
| 201 | |
| 202 | void __init platform_smp_prepare_cpus(unsigned int max_cpus) |
| 203 | { |
| 204 | int i, value; |
| 205 | void __iomem *second_ptr; |
| 206 | |
| 207 | /* |
| 208 | * Initialise the present map, which describes the set of CPUs |
| 209 | * actually populated at the present time. |
| 210 | */ |
| 211 | for (i = 0; i < max_cpus; i++) |
| 212 | set_cpu_present(i, true); |
| 213 | |
| 214 | scu_enable(scu_base_addr()); |
| 215 | |
| 216 | /* |
| 217 | * Write the address of secondary startup into the |
| 218 | * boot remapper register. The secondary CPU branches to this address. |
| 219 | */ |
| 220 | __raw_writel(MSM8625_SECONDARY_PHYS, (MSM_CFG_CTL_BASE + 0x34)); |
| 221 | mb(); |
| 222 | |
| 223 | second_ptr = ioremap_nocache(MSM8625_SECONDARY_PHYS, SZ_8); |
| 224 | if (!second_ptr) { |
| 225 | pr_err("failed to ioremap for secondary core\n"); |
| 226 | return; |
| 227 | } |
| 228 | |
| 229 | msm8625_boot_vector_init(second_ptr, |
| 230 | virt_to_phys(msm_secondary_startup)); |
| 231 | iounmap(second_ptr); |
| 232 | |
| 233 | /* Enable boot remapper address: bit 26 for core1 */ |
| 234 | value = __raw_readl(MSM_CFG_CTL_BASE + 0x30); |
| 235 | __raw_writel(value | (0x4 << 24), MSM_CFG_CTL_BASE + 0x30) ; |
| 236 | mb(); |
| 237 | } |