Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* smp.c: Sparc64 SMP support. |
| 2 | * |
David S. Miller | 27a2ef3 | 2007-07-14 00:58:53 -0700 | [diff] [blame] | 3 | * Copyright (C) 1997, 2007 David S. Miller (davem@davemloft.net) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4 | */ |
| 5 | |
| 6 | #include <linux/module.h> |
| 7 | #include <linux/kernel.h> |
| 8 | #include <linux/sched.h> |
| 9 | #include <linux/mm.h> |
| 10 | #include <linux/pagemap.h> |
| 11 | #include <linux/threads.h> |
| 12 | #include <linux/smp.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | #include <linux/interrupt.h> |
| 14 | #include <linux/kernel_stat.h> |
| 15 | #include <linux/delay.h> |
| 16 | #include <linux/init.h> |
| 17 | #include <linux/spinlock.h> |
| 18 | #include <linux/fs.h> |
| 19 | #include <linux/seq_file.h> |
| 20 | #include <linux/cache.h> |
| 21 | #include <linux/jiffies.h> |
| 22 | #include <linux/profile.h> |
| 23 | #include <linux/bootmem.h> |
| 24 | |
| 25 | #include <asm/head.h> |
| 26 | #include <asm/ptrace.h> |
| 27 | #include <asm/atomic.h> |
| 28 | #include <asm/tlbflush.h> |
| 29 | #include <asm/mmu_context.h> |
| 30 | #include <asm/cpudata.h> |
David S. Miller | 27a2ef3 | 2007-07-14 00:58:53 -0700 | [diff] [blame] | 31 | #include <asm/hvtramp.h> |
| 32 | #include <asm/io.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | |
| 34 | #include <asm/irq.h> |
Al Viro | 6d24c8d | 2006-10-08 08:23:28 -0400 | [diff] [blame] | 35 | #include <asm/irq_regs.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | #include <asm/page.h> |
| 37 | #include <asm/pgtable.h> |
| 38 | #include <asm/oplib.h> |
| 39 | #include <asm/uaccess.h> |
| 40 | #include <asm/timer.h> |
| 41 | #include <asm/starfire.h> |
| 42 | #include <asm/tlb.h> |
David S. Miller | 56fb4df | 2006-02-26 23:24:22 -0800 | [diff] [blame] | 43 | #include <asm/sections.h> |
David S. Miller | 07f8e5f | 2006-06-21 23:34:02 -0700 | [diff] [blame] | 44 | #include <asm/prom.h> |
David S. Miller | 5cbc307 | 2007-05-25 15:49:59 -0700 | [diff] [blame] | 45 | #include <asm/mdesc.h> |
David S. Miller | 4f0234f | 2007-07-13 16:03:42 -0700 | [diff] [blame] | 46 | #include <asm/ldc.h> |
David S. Miller | e0204409 | 2007-07-16 03:49:40 -0700 | [diff] [blame] | 47 | #include <asm/hypervisor.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | extern void calibrate_delay(void); |
| 50 | |
David S. Miller | a2f9f6b | 2007-06-04 21:48:33 -0700 | [diff] [blame] | 51 | int sparc64_multi_core __read_mostly; |
| 52 | |
David S. Miller | 4f0234f | 2007-07-13 16:03:42 -0700 | [diff] [blame] | 53 | cpumask_t cpu_possible_map __read_mostly = CPU_MASK_NONE; |
Andrew Morton | c12a828 | 2005-07-12 12:09:43 -0700 | [diff] [blame] | 54 | cpumask_t cpu_online_map __read_mostly = CPU_MASK_NONE; |
David S. Miller | 8935dce | 2006-03-08 16:09:19 -0800 | [diff] [blame] | 55 | cpumask_t cpu_sibling_map[NR_CPUS] __read_mostly = |
| 56 | { [0 ... NR_CPUS-1] = CPU_MASK_NONE }; |
David S. Miller | f78eae2 | 2007-06-04 17:01:39 -0700 | [diff] [blame] | 57 | cpumask_t cpu_core_map[NR_CPUS] __read_mostly = |
| 58 | { [0 ... NR_CPUS-1] = CPU_MASK_NONE }; |
David S. Miller | 4f0234f | 2007-07-13 16:03:42 -0700 | [diff] [blame] | 59 | |
| 60 | EXPORT_SYMBOL(cpu_possible_map); |
| 61 | EXPORT_SYMBOL(cpu_online_map); |
| 62 | EXPORT_SYMBOL(cpu_sibling_map); |
| 63 | EXPORT_SYMBOL(cpu_core_map); |
| 64 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | static cpumask_t smp_commenced_mask; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 | |
| 67 | void smp_info(struct seq_file *m) |
| 68 | { |
| 69 | int i; |
| 70 | |
| 71 | seq_printf(m, "State:\n"); |
Andrew Morton | 394e390 | 2006-03-23 03:01:05 -0800 | [diff] [blame] | 72 | for_each_online_cpu(i) |
| 73 | seq_printf(m, "CPU%d:\t\tonline\n", i); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | } |
| 75 | |
| 76 | void smp_bogo(struct seq_file *m) |
| 77 | { |
| 78 | int i; |
| 79 | |
Andrew Morton | 394e390 | 2006-03-23 03:01:05 -0800 | [diff] [blame] | 80 | for_each_online_cpu(i) |
| 81 | seq_printf(m, |
Andrew Morton | 394e390 | 2006-03-23 03:01:05 -0800 | [diff] [blame] | 82 | "Cpu%dClkTck\t: %016lx\n", |
Andrew Morton | 394e390 | 2006-03-23 03:01:05 -0800 | [diff] [blame] | 83 | i, cpu_data(i).clock_tick); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 84 | } |
| 85 | |
David S. Miller | e0204409 | 2007-07-16 03:49:40 -0700 | [diff] [blame] | 86 | static __cacheline_aligned_in_smp DEFINE_SPINLOCK(call_lock); |
| 87 | |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 88 | extern void setup_sparc64_timer(void); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 89 | |
| 90 | static volatile unsigned long callin_flag = 0; |
| 91 | |
David S. Miller | 4f0234f | 2007-07-13 16:03:42 -0700 | [diff] [blame] | 92 | void __devinit smp_callin(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 93 | { |
| 94 | int cpuid = hard_smp_processor_id(); |
| 95 | |
David S. Miller | 56fb4df | 2006-02-26 23:24:22 -0800 | [diff] [blame] | 96 | __local_per_cpu_offset = __per_cpu_offset(cpuid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 97 | |
David S. Miller | 4a07e64 | 2006-02-14 13:49:32 -0800 | [diff] [blame] | 98 | if (tlb_type == hypervisor) |
David S. Miller | 490384e | 2006-02-11 14:41:18 -0800 | [diff] [blame] | 99 | sun4v_ktsb_register(); |
David S. Miller | 481295f | 2006-02-07 21:51:08 -0800 | [diff] [blame] | 100 | |
David S. Miller | 56fb4df | 2006-02-26 23:24:22 -0800 | [diff] [blame] | 101 | __flush_tlb_all(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 102 | |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 103 | setup_sparc64_timer(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 104 | |
David S. Miller | 816242d | 2005-05-23 15:52:08 -0700 | [diff] [blame] | 105 | if (cheetah_pcache_forced_on) |
| 106 | cheetah_enable_pcache(); |
| 107 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 108 | local_irq_enable(); |
| 109 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 110 | callin_flag = 1; |
| 111 | __asm__ __volatile__("membar #Sync\n\t" |
| 112 | "flush %%g6" : : : "memory"); |
| 113 | |
| 114 | /* Clear this or we will die instantly when we |
| 115 | * schedule back to this idler... |
| 116 | */ |
David S. Miller | db7d9a4 | 2005-07-24 19:36:26 -0700 | [diff] [blame] | 117 | current_thread_info()->new_child = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | |
| 119 | /* Attach to the address space of init_task. */ |
| 120 | atomic_inc(&init_mm.mm_count); |
| 121 | current->active_mm = &init_mm; |
| 122 | |
| 123 | while (!cpu_isset(cpuid, smp_commenced_mask)) |
David S. Miller | 4f07118 | 2005-08-29 12:46:22 -0700 | [diff] [blame] | 124 | rmb(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 125 | |
David S. Miller | e0204409 | 2007-07-16 03:49:40 -0700 | [diff] [blame] | 126 | spin_lock(&call_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 127 | cpu_set(cpuid, cpu_online_map); |
David S. Miller | e0204409 | 2007-07-16 03:49:40 -0700 | [diff] [blame] | 128 | spin_unlock(&call_lock); |
Nick Piggin | 5bfb5d6 | 2005-11-08 21:39:01 -0800 | [diff] [blame] | 129 | |
| 130 | /* idle thread is expected to have preempt disabled */ |
| 131 | preempt_disable(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 132 | } |
| 133 | |
| 134 | void cpu_panic(void) |
| 135 | { |
| 136 | printk("CPU[%d]: Returns from cpu_idle!\n", smp_processor_id()); |
| 137 | panic("SMP bolixed\n"); |
| 138 | } |
| 139 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 140 | /* This tick register synchronization scheme is taken entirely from |
| 141 | * the ia64 port, see arch/ia64/kernel/smpboot.c for details and credit. |
| 142 | * |
| 143 | * The only change I've made is to rework it so that the master |
| 144 | * initiates the synchonization instead of the slave. -DaveM |
| 145 | */ |
| 146 | |
| 147 | #define MASTER 0 |
| 148 | #define SLAVE (SMP_CACHE_BYTES/sizeof(unsigned long)) |
| 149 | |
| 150 | #define NUM_ROUNDS 64 /* magic value */ |
| 151 | #define NUM_ITERS 5 /* likewise */ |
| 152 | |
| 153 | static DEFINE_SPINLOCK(itc_sync_lock); |
| 154 | static unsigned long go[SLAVE + 1]; |
| 155 | |
| 156 | #define DEBUG_TICK_SYNC 0 |
| 157 | |
| 158 | static inline long get_delta (long *rt, long *master) |
| 159 | { |
| 160 | unsigned long best_t0 = 0, best_t1 = ~0UL, best_tm = 0; |
| 161 | unsigned long tcenter, t0, t1, tm; |
| 162 | unsigned long i; |
| 163 | |
| 164 | for (i = 0; i < NUM_ITERS; i++) { |
| 165 | t0 = tick_ops->get_tick(); |
| 166 | go[MASTER] = 1; |
David S. Miller | 4f07118 | 2005-08-29 12:46:22 -0700 | [diff] [blame] | 167 | membar_storeload(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 168 | while (!(tm = go[SLAVE])) |
David S. Miller | 4f07118 | 2005-08-29 12:46:22 -0700 | [diff] [blame] | 169 | rmb(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 170 | go[SLAVE] = 0; |
David S. Miller | 4f07118 | 2005-08-29 12:46:22 -0700 | [diff] [blame] | 171 | wmb(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 172 | t1 = tick_ops->get_tick(); |
| 173 | |
| 174 | if (t1 - t0 < best_t1 - best_t0) |
| 175 | best_t0 = t0, best_t1 = t1, best_tm = tm; |
| 176 | } |
| 177 | |
| 178 | *rt = best_t1 - best_t0; |
| 179 | *master = best_tm - best_t0; |
| 180 | |
| 181 | /* average best_t0 and best_t1 without overflow: */ |
| 182 | tcenter = (best_t0/2 + best_t1/2); |
| 183 | if (best_t0 % 2 + best_t1 % 2 == 2) |
| 184 | tcenter++; |
| 185 | return tcenter - best_tm; |
| 186 | } |
| 187 | |
| 188 | void smp_synchronize_tick_client(void) |
| 189 | { |
| 190 | long i, delta, adj, adjust_latency = 0, done = 0; |
| 191 | unsigned long flags, rt, master_time_stamp, bound; |
| 192 | #if DEBUG_TICK_SYNC |
| 193 | struct { |
| 194 | long rt; /* roundtrip time */ |
| 195 | long master; /* master's timestamp */ |
| 196 | long diff; /* difference between midpoint and master's timestamp */ |
| 197 | long lat; /* estimate of itc adjustment latency */ |
| 198 | } t[NUM_ROUNDS]; |
| 199 | #endif |
| 200 | |
| 201 | go[MASTER] = 1; |
| 202 | |
| 203 | while (go[MASTER]) |
David S. Miller | 4f07118 | 2005-08-29 12:46:22 -0700 | [diff] [blame] | 204 | rmb(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 205 | |
| 206 | local_irq_save(flags); |
| 207 | { |
| 208 | for (i = 0; i < NUM_ROUNDS; i++) { |
| 209 | delta = get_delta(&rt, &master_time_stamp); |
| 210 | if (delta == 0) { |
| 211 | done = 1; /* let's lock on to this... */ |
| 212 | bound = rt; |
| 213 | } |
| 214 | |
| 215 | if (!done) { |
| 216 | if (i > 0) { |
| 217 | adjust_latency += -delta; |
| 218 | adj = -delta + adjust_latency/4; |
| 219 | } else |
| 220 | adj = -delta; |
| 221 | |
David S. Miller | 112f487 | 2007-03-05 15:28:37 -0800 | [diff] [blame] | 222 | tick_ops->add_tick(adj); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 223 | } |
| 224 | #if DEBUG_TICK_SYNC |
| 225 | t[i].rt = rt; |
| 226 | t[i].master = master_time_stamp; |
| 227 | t[i].diff = delta; |
| 228 | t[i].lat = adjust_latency/4; |
| 229 | #endif |
| 230 | } |
| 231 | } |
| 232 | local_irq_restore(flags); |
| 233 | |
| 234 | #if DEBUG_TICK_SYNC |
| 235 | for (i = 0; i < NUM_ROUNDS; i++) |
| 236 | printk("rt=%5ld master=%5ld diff=%5ld adjlat=%5ld\n", |
| 237 | t[i].rt, t[i].master, t[i].diff, t[i].lat); |
| 238 | #endif |
| 239 | |
| 240 | printk(KERN_INFO "CPU %d: synchronized TICK with master CPU (last diff %ld cycles," |
| 241 | "maxerr %lu cycles)\n", smp_processor_id(), delta, rt); |
| 242 | } |
| 243 | |
| 244 | static void smp_start_sync_tick_client(int cpu); |
| 245 | |
| 246 | static void smp_synchronize_one_tick(int cpu) |
| 247 | { |
| 248 | unsigned long flags, i; |
| 249 | |
| 250 | go[MASTER] = 0; |
| 251 | |
| 252 | smp_start_sync_tick_client(cpu); |
| 253 | |
| 254 | /* wait for client to be ready */ |
| 255 | while (!go[MASTER]) |
David S. Miller | 4f07118 | 2005-08-29 12:46:22 -0700 | [diff] [blame] | 256 | rmb(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 257 | |
| 258 | /* now let the client proceed into his loop */ |
| 259 | go[MASTER] = 0; |
David S. Miller | 4f07118 | 2005-08-29 12:46:22 -0700 | [diff] [blame] | 260 | membar_storeload(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 261 | |
| 262 | spin_lock_irqsave(&itc_sync_lock, flags); |
| 263 | { |
| 264 | for (i = 0; i < NUM_ROUNDS*NUM_ITERS; i++) { |
| 265 | while (!go[MASTER]) |
David S. Miller | 4f07118 | 2005-08-29 12:46:22 -0700 | [diff] [blame] | 266 | rmb(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 267 | go[MASTER] = 0; |
David S. Miller | 4f07118 | 2005-08-29 12:46:22 -0700 | [diff] [blame] | 268 | wmb(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 269 | go[SLAVE] = tick_ops->get_tick(); |
David S. Miller | 4f07118 | 2005-08-29 12:46:22 -0700 | [diff] [blame] | 270 | membar_storeload(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 271 | } |
| 272 | } |
| 273 | spin_unlock_irqrestore(&itc_sync_lock, flags); |
| 274 | } |
| 275 | |
David S. Miller | b14f5c1 | 2007-07-14 00:45:16 -0700 | [diff] [blame] | 276 | #if defined(CONFIG_SUN_LDOMS) && defined(CONFIG_HOTPLUG_CPU) |
David S. Miller | 27a2ef3 | 2007-07-14 00:58:53 -0700 | [diff] [blame] | 277 | /* XXX Put this in some common place. XXX */ |
| 278 | static unsigned long kimage_addr_to_ra(void *p) |
| 279 | { |
| 280 | unsigned long val = (unsigned long) p; |
| 281 | |
| 282 | return kern_base + (val - KERNBASE); |
| 283 | } |
| 284 | |
David S. Miller | b14f5c1 | 2007-07-14 00:45:16 -0700 | [diff] [blame] | 285 | static void ldom_startcpu_cpuid(unsigned int cpu, unsigned long thread_reg) |
| 286 | { |
| 287 | extern unsigned long sparc64_ttable_tl0; |
| 288 | extern unsigned long kern_locked_tte_data; |
| 289 | extern int bigkernel; |
| 290 | struct hvtramp_descr *hdesc; |
| 291 | unsigned long trampoline_ra; |
| 292 | struct trap_per_cpu *tb; |
| 293 | u64 tte_vaddr, tte_data; |
| 294 | unsigned long hv_err; |
| 295 | |
| 296 | hdesc = kzalloc(sizeof(*hdesc), GFP_KERNEL); |
| 297 | if (!hdesc) { |
David S. Miller | 27a2ef3 | 2007-07-14 00:58:53 -0700 | [diff] [blame] | 298 | printk(KERN_ERR "ldom_startcpu_cpuid: Cannot allocate " |
David S. Miller | b14f5c1 | 2007-07-14 00:45:16 -0700 | [diff] [blame] | 299 | "hvtramp_descr.\n"); |
| 300 | return; |
| 301 | } |
| 302 | |
| 303 | hdesc->cpu = cpu; |
| 304 | hdesc->num_mappings = (bigkernel ? 2 : 1); |
| 305 | |
| 306 | tb = &trap_block[cpu]; |
| 307 | tb->hdesc = hdesc; |
| 308 | |
| 309 | hdesc->fault_info_va = (unsigned long) &tb->fault_info; |
| 310 | hdesc->fault_info_pa = kimage_addr_to_ra(&tb->fault_info); |
| 311 | |
| 312 | hdesc->thread_reg = thread_reg; |
| 313 | |
| 314 | tte_vaddr = (unsigned long) KERNBASE; |
| 315 | tte_data = kern_locked_tte_data; |
| 316 | |
| 317 | hdesc->maps[0].vaddr = tte_vaddr; |
| 318 | hdesc->maps[0].tte = tte_data; |
| 319 | if (bigkernel) { |
| 320 | tte_vaddr += 0x400000; |
| 321 | tte_data += 0x400000; |
| 322 | hdesc->maps[1].vaddr = tte_vaddr; |
| 323 | hdesc->maps[1].tte = tte_data; |
| 324 | } |
| 325 | |
| 326 | trampoline_ra = kimage_addr_to_ra(hv_cpu_startup); |
| 327 | |
| 328 | hv_err = sun4v_cpu_start(cpu, trampoline_ra, |
| 329 | kimage_addr_to_ra(&sparc64_ttable_tl0), |
| 330 | __pa(hdesc)); |
David S. Miller | e0204409 | 2007-07-16 03:49:40 -0700 | [diff] [blame] | 331 | if (hv_err) |
| 332 | printk(KERN_ERR "ldom_startcpu_cpuid: sun4v_cpu_start() " |
| 333 | "gives error %lu\n", hv_err); |
David S. Miller | b14f5c1 | 2007-07-14 00:45:16 -0700 | [diff] [blame] | 334 | } |
| 335 | #endif |
| 336 | |
David S. Miller | 72aff53 | 2006-02-17 01:29:17 -0800 | [diff] [blame] | 337 | extern void sun4v_init_mondo_queues(int use_bootmem, int cpu, int alloc, int load); |
| 338 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 339 | extern unsigned long sparc64_cpu_startup; |
| 340 | |
| 341 | /* The OBP cpu startup callback truncates the 3rd arg cookie to |
| 342 | * 32-bits (I think) so to be safe we have it read the pointer |
| 343 | * contained here so we work on >4GB machines. -DaveM |
| 344 | */ |
| 345 | static struct thread_info *cpu_new_thread = NULL; |
| 346 | |
| 347 | static int __devinit smp_boot_one_cpu(unsigned int cpu) |
| 348 | { |
David S. Miller | b37d40d | 2007-07-15 01:08:03 -0700 | [diff] [blame] | 349 | struct trap_per_cpu *tb = &trap_block[cpu]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 350 | unsigned long entry = |
| 351 | (unsigned long)(&sparc64_cpu_startup); |
| 352 | unsigned long cookie = |
| 353 | (unsigned long)(&cpu_new_thread); |
| 354 | struct task_struct *p; |
David S. Miller | 7890f79 | 2006-02-15 02:26:54 -0800 | [diff] [blame] | 355 | int timeout, ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 356 | |
| 357 | p = fork_idle(cpu); |
| 358 | callin_flag = 0; |
Al Viro | f316964 | 2006-01-12 01:05:42 -0800 | [diff] [blame] | 359 | cpu_new_thread = task_thread_info(p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 360 | |
David S. Miller | 7890f79 | 2006-02-15 02:26:54 -0800 | [diff] [blame] | 361 | if (tlb_type == hypervisor) { |
David S. Miller | 72aff53 | 2006-02-17 01:29:17 -0800 | [diff] [blame] | 362 | /* Alloc the mondo queues, cpu will load them. */ |
| 363 | sun4v_init_mondo_queues(0, cpu, 1, 0); |
| 364 | |
David S. Miller | b14f5c1 | 2007-07-14 00:45:16 -0700 | [diff] [blame] | 365 | #if defined(CONFIG_SUN_LDOMS) && defined(CONFIG_HOTPLUG_CPU) |
David S. Miller | 4f0234f | 2007-07-13 16:03:42 -0700 | [diff] [blame] | 366 | if (ldom_domaining_enabled) |
| 367 | ldom_startcpu_cpuid(cpu, |
| 368 | (unsigned long) cpu_new_thread); |
| 369 | else |
| 370 | #endif |
| 371 | prom_startcpu_cpuid(cpu, entry, cookie); |
David S. Miller | 7890f79 | 2006-02-15 02:26:54 -0800 | [diff] [blame] | 372 | } else { |
David S. Miller | 5cbc307 | 2007-05-25 15:49:59 -0700 | [diff] [blame] | 373 | struct device_node *dp = of_find_node_by_cpuid(cpu); |
David S. Miller | 7890f79 | 2006-02-15 02:26:54 -0800 | [diff] [blame] | 374 | |
David S. Miller | 07f8e5f | 2006-06-21 23:34:02 -0700 | [diff] [blame] | 375 | prom_startcpu(dp->node, entry, cookie); |
David S. Miller | 7890f79 | 2006-02-15 02:26:54 -0800 | [diff] [blame] | 376 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 377 | |
David S. Miller | 4f0234f | 2007-07-13 16:03:42 -0700 | [diff] [blame] | 378 | for (timeout = 0; timeout < 50000; timeout++) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 379 | if (callin_flag) |
| 380 | break; |
| 381 | udelay(100); |
| 382 | } |
David S. Miller | 72aff53 | 2006-02-17 01:29:17 -0800 | [diff] [blame] | 383 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 384 | if (callin_flag) { |
| 385 | ret = 0; |
| 386 | } else { |
| 387 | printk("Processor %d is stuck.\n", cpu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 388 | ret = -ENODEV; |
| 389 | } |
| 390 | cpu_new_thread = NULL; |
| 391 | |
David S. Miller | b37d40d | 2007-07-15 01:08:03 -0700 | [diff] [blame] | 392 | if (tb->hdesc) { |
| 393 | kfree(tb->hdesc); |
| 394 | tb->hdesc = NULL; |
| 395 | } |
| 396 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 397 | return ret; |
| 398 | } |
| 399 | |
| 400 | static void spitfire_xcall_helper(u64 data0, u64 data1, u64 data2, u64 pstate, unsigned long cpu) |
| 401 | { |
| 402 | u64 result, target; |
| 403 | int stuck, tmp; |
| 404 | |
| 405 | if (this_is_starfire) { |
| 406 | /* map to real upaid */ |
| 407 | cpu = (((cpu & 0x3c) << 1) | |
| 408 | ((cpu & 0x40) >> 4) | |
| 409 | (cpu & 0x3)); |
| 410 | } |
| 411 | |
| 412 | target = (cpu << 14) | 0x70; |
| 413 | again: |
| 414 | /* Ok, this is the real Spitfire Errata #54. |
| 415 | * One must read back from a UDB internal register |
| 416 | * after writes to the UDB interrupt dispatch, but |
| 417 | * before the membar Sync for that write. |
| 418 | * So we use the high UDB control register (ASI 0x7f, |
| 419 | * ADDR 0x20) for the dummy read. -DaveM |
| 420 | */ |
| 421 | tmp = 0x40; |
| 422 | __asm__ __volatile__( |
| 423 | "wrpr %1, %2, %%pstate\n\t" |
| 424 | "stxa %4, [%0] %3\n\t" |
| 425 | "stxa %5, [%0+%8] %3\n\t" |
| 426 | "add %0, %8, %0\n\t" |
| 427 | "stxa %6, [%0+%8] %3\n\t" |
| 428 | "membar #Sync\n\t" |
| 429 | "stxa %%g0, [%7] %3\n\t" |
| 430 | "membar #Sync\n\t" |
| 431 | "mov 0x20, %%g1\n\t" |
| 432 | "ldxa [%%g1] 0x7f, %%g0\n\t" |
| 433 | "membar #Sync" |
| 434 | : "=r" (tmp) |
| 435 | : "r" (pstate), "i" (PSTATE_IE), "i" (ASI_INTR_W), |
| 436 | "r" (data0), "r" (data1), "r" (data2), "r" (target), |
| 437 | "r" (0x10), "0" (tmp) |
| 438 | : "g1"); |
| 439 | |
| 440 | /* NOTE: PSTATE_IE is still clear. */ |
| 441 | stuck = 100000; |
| 442 | do { |
| 443 | __asm__ __volatile__("ldxa [%%g0] %1, %0" |
| 444 | : "=r" (result) |
| 445 | : "i" (ASI_INTR_DISPATCH_STAT)); |
| 446 | if (result == 0) { |
| 447 | __asm__ __volatile__("wrpr %0, 0x0, %%pstate" |
| 448 | : : "r" (pstate)); |
| 449 | return; |
| 450 | } |
| 451 | stuck -= 1; |
| 452 | if (stuck == 0) |
| 453 | break; |
| 454 | } while (result & 0x1); |
| 455 | __asm__ __volatile__("wrpr %0, 0x0, %%pstate" |
| 456 | : : "r" (pstate)); |
| 457 | if (stuck == 0) { |
| 458 | printk("CPU[%d]: mondo stuckage result[%016lx]\n", |
| 459 | smp_processor_id(), result); |
| 460 | } else { |
| 461 | udelay(2); |
| 462 | goto again; |
| 463 | } |
| 464 | } |
| 465 | |
| 466 | static __inline__ void spitfire_xcall_deliver(u64 data0, u64 data1, u64 data2, cpumask_t mask) |
| 467 | { |
| 468 | u64 pstate; |
| 469 | int i; |
| 470 | |
| 471 | __asm__ __volatile__("rdpr %%pstate, %0" : "=r" (pstate)); |
| 472 | for_each_cpu_mask(i, mask) |
| 473 | spitfire_xcall_helper(data0, data1, data2, pstate, i); |
| 474 | } |
| 475 | |
| 476 | /* Cheetah now allows to send the whole 64-bytes of data in the interrupt |
| 477 | * packet, but we have no use for that. However we do take advantage of |
| 478 | * the new pipelining feature (ie. dispatch to multiple cpus simultaneously). |
| 479 | */ |
| 480 | static void cheetah_xcall_deliver(u64 data0, u64 data1, u64 data2, cpumask_t mask) |
| 481 | { |
| 482 | u64 pstate, ver; |
David S. Miller | 22adb35 | 2007-05-26 01:14:43 -0700 | [diff] [blame] | 483 | int nack_busy_id, is_jbus, need_more; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 484 | |
| 485 | if (cpus_empty(mask)) |
| 486 | return; |
| 487 | |
| 488 | /* Unfortunately, someone at Sun had the brilliant idea to make the |
| 489 | * busy/nack fields hard-coded by ITID number for this Ultra-III |
| 490 | * derivative processor. |
| 491 | */ |
| 492 | __asm__ ("rdpr %%ver, %0" : "=r" (ver)); |
David S. Miller | 92704a1 | 2006-02-26 23:27:19 -0800 | [diff] [blame] | 493 | is_jbus = ((ver >> 32) == __JALAPENO_ID || |
| 494 | (ver >> 32) == __SERRANO_ID); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 495 | |
| 496 | __asm__ __volatile__("rdpr %%pstate, %0" : "=r" (pstate)); |
| 497 | |
| 498 | retry: |
David S. Miller | 22adb35 | 2007-05-26 01:14:43 -0700 | [diff] [blame] | 499 | need_more = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 500 | __asm__ __volatile__("wrpr %0, %1, %%pstate\n\t" |
| 501 | : : "r" (pstate), "i" (PSTATE_IE)); |
| 502 | |
| 503 | /* Setup the dispatch data registers. */ |
| 504 | __asm__ __volatile__("stxa %0, [%3] %6\n\t" |
| 505 | "stxa %1, [%4] %6\n\t" |
| 506 | "stxa %2, [%5] %6\n\t" |
| 507 | "membar #Sync\n\t" |
| 508 | : /* no outputs */ |
| 509 | : "r" (data0), "r" (data1), "r" (data2), |
| 510 | "r" (0x40), "r" (0x50), "r" (0x60), |
| 511 | "i" (ASI_INTR_W)); |
| 512 | |
| 513 | nack_busy_id = 0; |
| 514 | { |
| 515 | int i; |
| 516 | |
| 517 | for_each_cpu_mask(i, mask) { |
| 518 | u64 target = (i << 14) | 0x70; |
| 519 | |
David S. Miller | 92704a1 | 2006-02-26 23:27:19 -0800 | [diff] [blame] | 520 | if (!is_jbus) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 521 | target |= (nack_busy_id << 24); |
| 522 | __asm__ __volatile__( |
| 523 | "stxa %%g0, [%0] %1\n\t" |
| 524 | "membar #Sync\n\t" |
| 525 | : /* no outputs */ |
| 526 | : "r" (target), "i" (ASI_INTR_W)); |
| 527 | nack_busy_id++; |
David S. Miller | 22adb35 | 2007-05-26 01:14:43 -0700 | [diff] [blame] | 528 | if (nack_busy_id == 32) { |
| 529 | need_more = 1; |
| 530 | break; |
| 531 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 532 | } |
| 533 | } |
| 534 | |
| 535 | /* Now, poll for completion. */ |
| 536 | { |
| 537 | u64 dispatch_stat; |
| 538 | long stuck; |
| 539 | |
| 540 | stuck = 100000 * nack_busy_id; |
| 541 | do { |
| 542 | __asm__ __volatile__("ldxa [%%g0] %1, %0" |
| 543 | : "=r" (dispatch_stat) |
| 544 | : "i" (ASI_INTR_DISPATCH_STAT)); |
| 545 | if (dispatch_stat == 0UL) { |
| 546 | __asm__ __volatile__("wrpr %0, 0x0, %%pstate" |
| 547 | : : "r" (pstate)); |
David S. Miller | 22adb35 | 2007-05-26 01:14:43 -0700 | [diff] [blame] | 548 | if (unlikely(need_more)) { |
| 549 | int i, cnt = 0; |
| 550 | for_each_cpu_mask(i, mask) { |
| 551 | cpu_clear(i, mask); |
| 552 | cnt++; |
| 553 | if (cnt == 32) |
| 554 | break; |
| 555 | } |
| 556 | goto retry; |
| 557 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 558 | return; |
| 559 | } |
| 560 | if (!--stuck) |
| 561 | break; |
| 562 | } while (dispatch_stat & 0x5555555555555555UL); |
| 563 | |
| 564 | __asm__ __volatile__("wrpr %0, 0x0, %%pstate" |
| 565 | : : "r" (pstate)); |
| 566 | |
| 567 | if ((dispatch_stat & ~(0x5555555555555555UL)) == 0) { |
| 568 | /* Busy bits will not clear, continue instead |
| 569 | * of freezing up on this cpu. |
| 570 | */ |
| 571 | printk("CPU[%d]: mondo stuckage result[%016lx]\n", |
| 572 | smp_processor_id(), dispatch_stat); |
| 573 | } else { |
| 574 | int i, this_busy_nack = 0; |
| 575 | |
| 576 | /* Delay some random time with interrupts enabled |
| 577 | * to prevent deadlock. |
| 578 | */ |
| 579 | udelay(2 * nack_busy_id); |
| 580 | |
| 581 | /* Clear out the mask bits for cpus which did not |
| 582 | * NACK us. |
| 583 | */ |
| 584 | for_each_cpu_mask(i, mask) { |
| 585 | u64 check_mask; |
| 586 | |
David S. Miller | 92704a1 | 2006-02-26 23:27:19 -0800 | [diff] [blame] | 587 | if (is_jbus) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 588 | check_mask = (0x2UL << (2*i)); |
| 589 | else |
| 590 | check_mask = (0x2UL << |
| 591 | this_busy_nack); |
| 592 | if ((dispatch_stat & check_mask) == 0) |
| 593 | cpu_clear(i, mask); |
| 594 | this_busy_nack += 2; |
David S. Miller | 22adb35 | 2007-05-26 01:14:43 -0700 | [diff] [blame] | 595 | if (this_busy_nack == 64) |
| 596 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 597 | } |
| 598 | |
| 599 | goto retry; |
| 600 | } |
| 601 | } |
| 602 | } |
| 603 | |
David S. Miller | 1d2f1f9 | 2006-02-08 16:41:20 -0800 | [diff] [blame] | 604 | /* Multi-cpu list version. */ |
David S. Miller | a43fe0e | 2006-02-04 03:10:53 -0800 | [diff] [blame] | 605 | static void hypervisor_xcall_deliver(u64 data0, u64 data1, u64 data2, cpumask_t mask) |
| 606 | { |
David S. Miller | b830ab6 | 2006-02-28 15:10:26 -0800 | [diff] [blame] | 607 | struct trap_per_cpu *tb; |
| 608 | u16 *cpu_list; |
| 609 | u64 *mondo; |
| 610 | cpumask_t error_mask; |
| 611 | unsigned long flags, status; |
David S. Miller | 3cab0c3 | 2006-03-02 21:50:47 -0800 | [diff] [blame] | 612 | int cnt, retries, this_cpu, prev_sent, i; |
David S. Miller | 1d2f1f9 | 2006-02-08 16:41:20 -0800 | [diff] [blame] | 613 | |
David S. Miller | 17f34f0 | 2007-05-14 02:01:52 -0700 | [diff] [blame] | 614 | if (cpus_empty(mask)) |
| 615 | return; |
| 616 | |
David S. Miller | b830ab6 | 2006-02-28 15:10:26 -0800 | [diff] [blame] | 617 | /* We have to do this whole thing with interrupts fully disabled. |
| 618 | * Otherwise if we send an xcall from interrupt context it will |
| 619 | * corrupt both our mondo block and cpu list state. |
| 620 | * |
| 621 | * One consequence of this is that we cannot use timeout mechanisms |
| 622 | * that depend upon interrupts being delivered locally. So, for |
| 623 | * example, we cannot sample jiffies and expect it to advance. |
| 624 | * |
| 625 | * Fortunately, udelay() uses %stick/%tick so we can use that. |
| 626 | */ |
| 627 | local_irq_save(flags); |
| 628 | |
| 629 | this_cpu = smp_processor_id(); |
| 630 | tb = &trap_block[this_cpu]; |
| 631 | |
| 632 | mondo = __va(tb->cpu_mondo_block_pa); |
David S. Miller | 1d2f1f9 | 2006-02-08 16:41:20 -0800 | [diff] [blame] | 633 | mondo[0] = data0; |
| 634 | mondo[1] = data1; |
| 635 | mondo[2] = data2; |
| 636 | wmb(); |
| 637 | |
David S. Miller | b830ab6 | 2006-02-28 15:10:26 -0800 | [diff] [blame] | 638 | cpu_list = __va(tb->cpu_list_pa); |
| 639 | |
| 640 | /* Setup the initial cpu list. */ |
| 641 | cnt = 0; |
| 642 | for_each_cpu_mask(i, mask) |
| 643 | cpu_list[cnt++] = i; |
| 644 | |
| 645 | cpus_clear(error_mask); |
David S. Miller | 1d2f1f9 | 2006-02-08 16:41:20 -0800 | [diff] [blame] | 646 | retries = 0; |
David S. Miller | 3cab0c3 | 2006-03-02 21:50:47 -0800 | [diff] [blame] | 647 | prev_sent = 0; |
David S. Miller | 1d2f1f9 | 2006-02-08 16:41:20 -0800 | [diff] [blame] | 648 | do { |
David S. Miller | 3cab0c3 | 2006-03-02 21:50:47 -0800 | [diff] [blame] | 649 | int forward_progress, n_sent; |
David S. Miller | 1d2f1f9 | 2006-02-08 16:41:20 -0800 | [diff] [blame] | 650 | |
David S. Miller | b830ab6 | 2006-02-28 15:10:26 -0800 | [diff] [blame] | 651 | status = sun4v_cpu_mondo_send(cnt, |
| 652 | tb->cpu_list_pa, |
| 653 | tb->cpu_mondo_block_pa); |
David S. Miller | 1d2f1f9 | 2006-02-08 16:41:20 -0800 | [diff] [blame] | 654 | |
David S. Miller | b830ab6 | 2006-02-28 15:10:26 -0800 | [diff] [blame] | 655 | /* HV_EOK means all cpus received the xcall, we're done. */ |
| 656 | if (likely(status == HV_EOK)) |
David S. Miller | 1d2f1f9 | 2006-02-08 16:41:20 -0800 | [diff] [blame] | 657 | break; |
| 658 | |
David S. Miller | 3cab0c3 | 2006-03-02 21:50:47 -0800 | [diff] [blame] | 659 | /* First, see if we made any forward progress. |
| 660 | * |
| 661 | * The hypervisor indicates successful sends by setting |
| 662 | * cpu list entries to the value 0xffff. |
David S. Miller | b830ab6 | 2006-02-28 15:10:26 -0800 | [diff] [blame] | 663 | */ |
David S. Miller | 3cab0c3 | 2006-03-02 21:50:47 -0800 | [diff] [blame] | 664 | n_sent = 0; |
David S. Miller | b830ab6 | 2006-02-28 15:10:26 -0800 | [diff] [blame] | 665 | for (i = 0; i < cnt; i++) { |
David S. Miller | 3cab0c3 | 2006-03-02 21:50:47 -0800 | [diff] [blame] | 666 | if (likely(cpu_list[i] == 0xffff)) |
| 667 | n_sent++; |
David S. Miller | 1d2f1f9 | 2006-02-08 16:41:20 -0800 | [diff] [blame] | 668 | } |
| 669 | |
David S. Miller | 3cab0c3 | 2006-03-02 21:50:47 -0800 | [diff] [blame] | 670 | forward_progress = 0; |
| 671 | if (n_sent > prev_sent) |
| 672 | forward_progress = 1; |
| 673 | |
| 674 | prev_sent = n_sent; |
| 675 | |
David S. Miller | b830ab6 | 2006-02-28 15:10:26 -0800 | [diff] [blame] | 676 | /* If we get a HV_ECPUERROR, then one or more of the cpus |
| 677 | * in the list are in error state. Use the cpu_state() |
| 678 | * hypervisor call to find out which cpus are in error state. |
| 679 | */ |
| 680 | if (unlikely(status == HV_ECPUERROR)) { |
| 681 | for (i = 0; i < cnt; i++) { |
| 682 | long err; |
| 683 | u16 cpu; |
David S. Miller | 1d2f1f9 | 2006-02-08 16:41:20 -0800 | [diff] [blame] | 684 | |
David S. Miller | b830ab6 | 2006-02-28 15:10:26 -0800 | [diff] [blame] | 685 | cpu = cpu_list[i]; |
| 686 | if (cpu == 0xffff) |
| 687 | continue; |
| 688 | |
| 689 | err = sun4v_cpu_state(cpu); |
| 690 | if (err >= 0 && |
| 691 | err == HV_CPU_STATE_ERROR) { |
David S. Miller | 3cab0c3 | 2006-03-02 21:50:47 -0800 | [diff] [blame] | 692 | cpu_list[i] = 0xffff; |
David S. Miller | b830ab6 | 2006-02-28 15:10:26 -0800 | [diff] [blame] | 693 | cpu_set(cpu, error_mask); |
| 694 | } |
| 695 | } |
| 696 | } else if (unlikely(status != HV_EWOULDBLOCK)) |
| 697 | goto fatal_mondo_error; |
| 698 | |
David S. Miller | 3cab0c3 | 2006-03-02 21:50:47 -0800 | [diff] [blame] | 699 | /* Don't bother rewriting the CPU list, just leave the |
| 700 | * 0xffff and non-0xffff entries in there and the |
| 701 | * hypervisor will do the right thing. |
| 702 | * |
| 703 | * Only advance timeout state if we didn't make any |
| 704 | * forward progress. |
| 705 | */ |
David S. Miller | b830ab6 | 2006-02-28 15:10:26 -0800 | [diff] [blame] | 706 | if (unlikely(!forward_progress)) { |
| 707 | if (unlikely(++retries > 10000)) |
| 708 | goto fatal_mondo_timeout; |
| 709 | |
| 710 | /* Delay a little bit to let other cpus catch up |
| 711 | * on their cpu mondo queue work. |
| 712 | */ |
| 713 | udelay(2 * cnt); |
| 714 | } |
David S. Miller | 1d2f1f9 | 2006-02-08 16:41:20 -0800 | [diff] [blame] | 715 | } while (1); |
| 716 | |
David S. Miller | b830ab6 | 2006-02-28 15:10:26 -0800 | [diff] [blame] | 717 | local_irq_restore(flags); |
| 718 | |
| 719 | if (unlikely(!cpus_empty(error_mask))) |
| 720 | goto fatal_mondo_cpu_error; |
| 721 | |
| 722 | return; |
| 723 | |
| 724 | fatal_mondo_cpu_error: |
| 725 | printk(KERN_CRIT "CPU[%d]: SUN4V mondo cpu error, some target cpus " |
| 726 | "were in error state\n", |
| 727 | this_cpu); |
| 728 | printk(KERN_CRIT "CPU[%d]: Error mask [ ", this_cpu); |
| 729 | for_each_cpu_mask(i, error_mask) |
| 730 | printk("%d ", i); |
| 731 | printk("]\n"); |
| 732 | return; |
| 733 | |
| 734 | fatal_mondo_timeout: |
| 735 | local_irq_restore(flags); |
| 736 | printk(KERN_CRIT "CPU[%d]: SUN4V mondo timeout, no forward " |
| 737 | " progress after %d retries.\n", |
| 738 | this_cpu, retries); |
| 739 | goto dump_cpu_list_and_out; |
| 740 | |
| 741 | fatal_mondo_error: |
| 742 | local_irq_restore(flags); |
| 743 | printk(KERN_CRIT "CPU[%d]: Unexpected SUN4V mondo error %lu\n", |
| 744 | this_cpu, status); |
| 745 | printk(KERN_CRIT "CPU[%d]: Args were cnt(%d) cpulist_pa(%lx) " |
| 746 | "mondo_block_pa(%lx)\n", |
| 747 | this_cpu, cnt, tb->cpu_list_pa, tb->cpu_mondo_block_pa); |
| 748 | |
| 749 | dump_cpu_list_and_out: |
| 750 | printk(KERN_CRIT "CPU[%d]: CPU list [ ", this_cpu); |
| 751 | for (i = 0; i < cnt; i++) |
| 752 | printk("%u ", cpu_list[i]); |
| 753 | printk("]\n"); |
David S. Miller | a43fe0e | 2006-02-04 03:10:53 -0800 | [diff] [blame] | 754 | } |
| 755 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 756 | /* Send cross call to all processors mentioned in MASK |
| 757 | * except self. |
| 758 | */ |
| 759 | static void smp_cross_call_masked(unsigned long *func, u32 ctx, u64 data1, u64 data2, cpumask_t mask) |
| 760 | { |
| 761 | u64 data0 = (((u64)ctx)<<32 | (((u64)func) & 0xffffffff)); |
| 762 | int this_cpu = get_cpu(); |
| 763 | |
| 764 | cpus_and(mask, mask, cpu_online_map); |
| 765 | cpu_clear(this_cpu, mask); |
| 766 | |
| 767 | if (tlb_type == spitfire) |
| 768 | spitfire_xcall_deliver(data0, data1, data2, mask); |
David S. Miller | a43fe0e | 2006-02-04 03:10:53 -0800 | [diff] [blame] | 769 | else if (tlb_type == cheetah || tlb_type == cheetah_plus) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 770 | cheetah_xcall_deliver(data0, data1, data2, mask); |
David S. Miller | a43fe0e | 2006-02-04 03:10:53 -0800 | [diff] [blame] | 771 | else |
| 772 | hypervisor_xcall_deliver(data0, data1, data2, mask); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 773 | /* NOTE: Caller runs local copy on master. */ |
| 774 | |
| 775 | put_cpu(); |
| 776 | } |
| 777 | |
| 778 | extern unsigned long xcall_sync_tick; |
| 779 | |
| 780 | static void smp_start_sync_tick_client(int cpu) |
| 781 | { |
| 782 | cpumask_t mask = cpumask_of_cpu(cpu); |
| 783 | |
| 784 | smp_cross_call_masked(&xcall_sync_tick, |
| 785 | 0, 0, 0, mask); |
| 786 | } |
| 787 | |
| 788 | /* Send cross call to all processors except self. */ |
| 789 | #define smp_cross_call(func, ctx, data1, data2) \ |
| 790 | smp_cross_call_masked(func, ctx, data1, data2, cpu_online_map) |
| 791 | |
| 792 | struct call_data_struct { |
| 793 | void (*func) (void *info); |
| 794 | void *info; |
| 795 | atomic_t finished; |
| 796 | int wait; |
| 797 | }; |
| 798 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 799 | static struct call_data_struct *call_data; |
| 800 | |
| 801 | extern unsigned long xcall_call_function; |
| 802 | |
David S. Miller | aa1d1a0 | 2006-04-06 16:54:33 -0700 | [diff] [blame] | 803 | /** |
| 804 | * smp_call_function(): Run a function on all other CPUs. |
| 805 | * @func: The function to run. This must be fast and non-blocking. |
| 806 | * @info: An arbitrary pointer to pass to the function. |
| 807 | * @nonatomic: currently unused. |
| 808 | * @wait: If true, wait (atomically) until function has completed on other CPUs. |
| 809 | * |
| 810 | * Returns 0 on success, else a negative status code. Does not return until |
| 811 | * remote CPUs are nearly ready to execute <<func>> or are or have executed. |
| 812 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 813 | * You must not call this function with disabled interrupts or from a |
| 814 | * hardware interrupt handler or from a bottom half handler. |
| 815 | */ |
David S. Miller | bd40791 | 2006-01-31 18:31:38 -0800 | [diff] [blame] | 816 | static int smp_call_function_mask(void (*func)(void *info), void *info, |
| 817 | int nonatomic, int wait, cpumask_t mask) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 818 | { |
| 819 | struct call_data_struct data; |
David S. Miller | ee29074 | 2006-03-06 22:50:44 -0800 | [diff] [blame] | 820 | int cpus; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 821 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 822 | /* Can deadlock when called with interrupts disabled */ |
| 823 | WARN_ON(irqs_disabled()); |
| 824 | |
| 825 | data.func = func; |
| 826 | data.info = info; |
| 827 | atomic_set(&data.finished, 0); |
| 828 | data.wait = wait; |
| 829 | |
| 830 | spin_lock(&call_lock); |
| 831 | |
David S. Miller | ee29074 | 2006-03-06 22:50:44 -0800 | [diff] [blame] | 832 | cpu_clear(smp_processor_id(), mask); |
| 833 | cpus = cpus_weight(mask); |
| 834 | if (!cpus) |
| 835 | goto out_unlock; |
| 836 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 837 | call_data = &data; |
David S. Miller | aa1d1a0 | 2006-04-06 16:54:33 -0700 | [diff] [blame] | 838 | mb(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 839 | |
David S. Miller | bd40791 | 2006-01-31 18:31:38 -0800 | [diff] [blame] | 840 | smp_cross_call_masked(&xcall_call_function, 0, 0, 0, mask); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 841 | |
David S. Miller | aa1d1a0 | 2006-04-06 16:54:33 -0700 | [diff] [blame] | 842 | /* Wait for response */ |
| 843 | while (atomic_read(&data.finished) != cpus) |
| 844 | cpu_relax(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 845 | |
David S. Miller | ee29074 | 2006-03-06 22:50:44 -0800 | [diff] [blame] | 846 | out_unlock: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 847 | spin_unlock(&call_lock); |
| 848 | |
| 849 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 850 | } |
| 851 | |
David S. Miller | bd40791 | 2006-01-31 18:31:38 -0800 | [diff] [blame] | 852 | int smp_call_function(void (*func)(void *info), void *info, |
| 853 | int nonatomic, int wait) |
| 854 | { |
| 855 | return smp_call_function_mask(func, info, nonatomic, wait, |
| 856 | cpu_online_map); |
| 857 | } |
| 858 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 859 | void smp_call_function_client(int irq, struct pt_regs *regs) |
| 860 | { |
| 861 | void (*func) (void *info) = call_data->func; |
| 862 | void *info = call_data->info; |
| 863 | |
| 864 | clear_softint(1 << irq); |
| 865 | if (call_data->wait) { |
| 866 | /* let initiator proceed only after completion */ |
| 867 | func(info); |
| 868 | atomic_inc(&call_data->finished); |
| 869 | } else { |
| 870 | /* let initiator proceed after getting data */ |
| 871 | atomic_inc(&call_data->finished); |
| 872 | func(info); |
| 873 | } |
| 874 | } |
| 875 | |
David S. Miller | bd40791 | 2006-01-31 18:31:38 -0800 | [diff] [blame] | 876 | static void tsb_sync(void *info) |
| 877 | { |
David S. Miller | 6f25f39 | 2006-03-28 13:29:26 -0800 | [diff] [blame] | 878 | struct trap_per_cpu *tp = &trap_block[raw_smp_processor_id()]; |
David S. Miller | bd40791 | 2006-01-31 18:31:38 -0800 | [diff] [blame] | 879 | struct mm_struct *mm = info; |
| 880 | |
David S. Miller | 6f25f39 | 2006-03-28 13:29:26 -0800 | [diff] [blame] | 881 | /* It is not valid to test "currrent->active_mm == mm" here. |
| 882 | * |
| 883 | * The value of "current" is not changed atomically with |
| 884 | * switch_mm(). But that's OK, we just need to check the |
| 885 | * current cpu's trap block PGD physical address. |
| 886 | */ |
| 887 | if (tp->pgd_paddr == __pa(mm->pgd)) |
David S. Miller | bd40791 | 2006-01-31 18:31:38 -0800 | [diff] [blame] | 888 | tsb_context_switch(mm); |
| 889 | } |
| 890 | |
| 891 | void smp_tsb_sync(struct mm_struct *mm) |
| 892 | { |
| 893 | smp_call_function_mask(tsb_sync, mm, 0, 1, mm->cpu_vm_mask); |
| 894 | } |
| 895 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 896 | extern unsigned long xcall_flush_tlb_mm; |
| 897 | extern unsigned long xcall_flush_tlb_pending; |
| 898 | extern unsigned long xcall_flush_tlb_kernel_range; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 899 | extern unsigned long xcall_report_regs; |
| 900 | extern unsigned long xcall_receive_signal; |
David S. Miller | ee29074 | 2006-03-06 22:50:44 -0800 | [diff] [blame] | 901 | extern unsigned long xcall_new_mmu_context_version; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 902 | |
| 903 | #ifdef DCACHE_ALIASING_POSSIBLE |
| 904 | extern unsigned long xcall_flush_dcache_page_cheetah; |
| 905 | #endif |
| 906 | extern unsigned long xcall_flush_dcache_page_spitfire; |
| 907 | |
| 908 | #ifdef CONFIG_DEBUG_DCFLUSH |
| 909 | extern atomic_t dcpage_flushes; |
| 910 | extern atomic_t dcpage_flushes_xcall; |
| 911 | #endif |
| 912 | |
| 913 | static __inline__ void __local_flush_dcache_page(struct page *page) |
| 914 | { |
| 915 | #ifdef DCACHE_ALIASING_POSSIBLE |
| 916 | __flush_dcache_page(page_address(page), |
| 917 | ((tlb_type == spitfire) && |
| 918 | page_mapping(page) != NULL)); |
| 919 | #else |
| 920 | if (page_mapping(page) != NULL && |
| 921 | tlb_type == spitfire) |
| 922 | __flush_icache_page(__pa(page_address(page))); |
| 923 | #endif |
| 924 | } |
| 925 | |
| 926 | void smp_flush_dcache_page_impl(struct page *page, int cpu) |
| 927 | { |
| 928 | cpumask_t mask = cpumask_of_cpu(cpu); |
David S. Miller | a43fe0e | 2006-02-04 03:10:53 -0800 | [diff] [blame] | 929 | int this_cpu; |
| 930 | |
| 931 | if (tlb_type == hypervisor) |
| 932 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 933 | |
| 934 | #ifdef CONFIG_DEBUG_DCFLUSH |
| 935 | atomic_inc(&dcpage_flushes); |
| 936 | #endif |
David S. Miller | a43fe0e | 2006-02-04 03:10:53 -0800 | [diff] [blame] | 937 | |
| 938 | this_cpu = get_cpu(); |
| 939 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 940 | if (cpu == this_cpu) { |
| 941 | __local_flush_dcache_page(page); |
| 942 | } else if (cpu_online(cpu)) { |
| 943 | void *pg_addr = page_address(page); |
| 944 | u64 data0; |
| 945 | |
| 946 | if (tlb_type == spitfire) { |
| 947 | data0 = |
| 948 | ((u64)&xcall_flush_dcache_page_spitfire); |
| 949 | if (page_mapping(page) != NULL) |
| 950 | data0 |= ((u64)1 << 32); |
| 951 | spitfire_xcall_deliver(data0, |
| 952 | __pa(pg_addr), |
| 953 | (u64) pg_addr, |
| 954 | mask); |
David S. Miller | a43fe0e | 2006-02-04 03:10:53 -0800 | [diff] [blame] | 955 | } else if (tlb_type == cheetah || tlb_type == cheetah_plus) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 956 | #ifdef DCACHE_ALIASING_POSSIBLE |
| 957 | data0 = |
| 958 | ((u64)&xcall_flush_dcache_page_cheetah); |
| 959 | cheetah_xcall_deliver(data0, |
| 960 | __pa(pg_addr), |
| 961 | 0, mask); |
| 962 | #endif |
| 963 | } |
| 964 | #ifdef CONFIG_DEBUG_DCFLUSH |
| 965 | atomic_inc(&dcpage_flushes_xcall); |
| 966 | #endif |
| 967 | } |
| 968 | |
| 969 | put_cpu(); |
| 970 | } |
| 971 | |
| 972 | void flush_dcache_page_all(struct mm_struct *mm, struct page *page) |
| 973 | { |
| 974 | void *pg_addr = page_address(page); |
| 975 | cpumask_t mask = cpu_online_map; |
| 976 | u64 data0; |
David S. Miller | a43fe0e | 2006-02-04 03:10:53 -0800 | [diff] [blame] | 977 | int this_cpu; |
| 978 | |
| 979 | if (tlb_type == hypervisor) |
| 980 | return; |
| 981 | |
| 982 | this_cpu = get_cpu(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 983 | |
| 984 | cpu_clear(this_cpu, mask); |
| 985 | |
| 986 | #ifdef CONFIG_DEBUG_DCFLUSH |
| 987 | atomic_inc(&dcpage_flushes); |
| 988 | #endif |
| 989 | if (cpus_empty(mask)) |
| 990 | goto flush_self; |
| 991 | if (tlb_type == spitfire) { |
| 992 | data0 = ((u64)&xcall_flush_dcache_page_spitfire); |
| 993 | if (page_mapping(page) != NULL) |
| 994 | data0 |= ((u64)1 << 32); |
| 995 | spitfire_xcall_deliver(data0, |
| 996 | __pa(pg_addr), |
| 997 | (u64) pg_addr, |
| 998 | mask); |
David S. Miller | a43fe0e | 2006-02-04 03:10:53 -0800 | [diff] [blame] | 999 | } else if (tlb_type == cheetah || tlb_type == cheetah_plus) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1000 | #ifdef DCACHE_ALIASING_POSSIBLE |
| 1001 | data0 = ((u64)&xcall_flush_dcache_page_cheetah); |
| 1002 | cheetah_xcall_deliver(data0, |
| 1003 | __pa(pg_addr), |
| 1004 | 0, mask); |
| 1005 | #endif |
| 1006 | } |
| 1007 | #ifdef CONFIG_DEBUG_DCFLUSH |
| 1008 | atomic_inc(&dcpage_flushes_xcall); |
| 1009 | #endif |
| 1010 | flush_self: |
| 1011 | __local_flush_dcache_page(page); |
| 1012 | |
| 1013 | put_cpu(); |
| 1014 | } |
| 1015 | |
David S. Miller | a0663a7 | 2006-02-23 14:19:28 -0800 | [diff] [blame] | 1016 | static void __smp_receive_signal_mask(cpumask_t mask) |
| 1017 | { |
| 1018 | smp_cross_call_masked(&xcall_receive_signal, 0, 0, 0, mask); |
| 1019 | } |
| 1020 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1021 | void smp_receive_signal(int cpu) |
| 1022 | { |
| 1023 | cpumask_t mask = cpumask_of_cpu(cpu); |
| 1024 | |
David S. Miller | a0663a7 | 2006-02-23 14:19:28 -0800 | [diff] [blame] | 1025 | if (cpu_online(cpu)) |
| 1026 | __smp_receive_signal_mask(mask); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1027 | } |
| 1028 | |
| 1029 | void smp_receive_signal_client(int irq, struct pt_regs *regs) |
| 1030 | { |
David S. Miller | ee29074 | 2006-03-06 22:50:44 -0800 | [diff] [blame] | 1031 | clear_softint(1 << irq); |
| 1032 | } |
| 1033 | |
| 1034 | void smp_new_mmu_context_version_client(int irq, struct pt_regs *regs) |
| 1035 | { |
David S. Miller | a0663a7 | 2006-02-23 14:19:28 -0800 | [diff] [blame] | 1036 | struct mm_struct *mm; |
David S. Miller | ee29074 | 2006-03-06 22:50:44 -0800 | [diff] [blame] | 1037 | unsigned long flags; |
David S. Miller | a0663a7 | 2006-02-23 14:19:28 -0800 | [diff] [blame] | 1038 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1039 | clear_softint(1 << irq); |
David S. Miller | a0663a7 | 2006-02-23 14:19:28 -0800 | [diff] [blame] | 1040 | |
| 1041 | /* See if we need to allocate a new TLB context because |
| 1042 | * the version of the one we are using is now out of date. |
| 1043 | */ |
| 1044 | mm = current->active_mm; |
David S. Miller | ee29074 | 2006-03-06 22:50:44 -0800 | [diff] [blame] | 1045 | if (unlikely(!mm || (mm == &init_mm))) |
| 1046 | return; |
David S. Miller | a0663a7 | 2006-02-23 14:19:28 -0800 | [diff] [blame] | 1047 | |
David S. Miller | ee29074 | 2006-03-06 22:50:44 -0800 | [diff] [blame] | 1048 | spin_lock_irqsave(&mm->context.lock, flags); |
David S. Miller | aac0aad | 2006-02-27 17:56:51 -0800 | [diff] [blame] | 1049 | |
David S. Miller | ee29074 | 2006-03-06 22:50:44 -0800 | [diff] [blame] | 1050 | if (unlikely(!CTX_VALID(mm->context))) |
| 1051 | get_new_mmu_context(mm); |
David S. Miller | aac0aad | 2006-02-27 17:56:51 -0800 | [diff] [blame] | 1052 | |
David S. Miller | ee29074 | 2006-03-06 22:50:44 -0800 | [diff] [blame] | 1053 | spin_unlock_irqrestore(&mm->context.lock, flags); |
David S. Miller | aac0aad | 2006-02-27 17:56:51 -0800 | [diff] [blame] | 1054 | |
David S. Miller | ee29074 | 2006-03-06 22:50:44 -0800 | [diff] [blame] | 1055 | load_secondary_context(mm); |
| 1056 | __flush_tlb_mm(CTX_HWBITS(mm->context), |
| 1057 | SECONDARY_CONTEXT); |
David S. Miller | a0663a7 | 2006-02-23 14:19:28 -0800 | [diff] [blame] | 1058 | } |
| 1059 | |
| 1060 | void smp_new_mmu_context_version(void) |
| 1061 | { |
David S. Miller | ee29074 | 2006-03-06 22:50:44 -0800 | [diff] [blame] | 1062 | smp_cross_call(&xcall_new_mmu_context_version, 0, 0, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1063 | } |
| 1064 | |
| 1065 | void smp_report_regs(void) |
| 1066 | { |
| 1067 | smp_cross_call(&xcall_report_regs, 0, 0, 0); |
| 1068 | } |
| 1069 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1070 | /* We know that the window frames of the user have been flushed |
| 1071 | * to the stack before we get here because all callers of us |
| 1072 | * are flush_tlb_*() routines, and these run after flush_cache_*() |
| 1073 | * which performs the flushw. |
| 1074 | * |
| 1075 | * The SMP TLB coherency scheme we use works as follows: |
| 1076 | * |
| 1077 | * 1) mm->cpu_vm_mask is a bit mask of which cpus an address |
| 1078 | * space has (potentially) executed on, this is the heuristic |
| 1079 | * we use to avoid doing cross calls. |
| 1080 | * |
| 1081 | * Also, for flushing from kswapd and also for clones, we |
| 1082 | * use cpu_vm_mask as the list of cpus to make run the TLB. |
| 1083 | * |
| 1084 | * 2) TLB context numbers are shared globally across all processors |
| 1085 | * in the system, this allows us to play several games to avoid |
| 1086 | * cross calls. |
| 1087 | * |
| 1088 | * One invariant is that when a cpu switches to a process, and |
| 1089 | * that processes tsk->active_mm->cpu_vm_mask does not have the |
| 1090 | * current cpu's bit set, that tlb context is flushed locally. |
| 1091 | * |
| 1092 | * If the address space is non-shared (ie. mm->count == 1) we avoid |
| 1093 | * cross calls when we want to flush the currently running process's |
| 1094 | * tlb state. This is done by clearing all cpu bits except the current |
| 1095 | * processor's in current->active_mm->cpu_vm_mask and performing the |
| 1096 | * flush locally only. This will force any subsequent cpus which run |
| 1097 | * this task to flush the context from the local tlb if the process |
| 1098 | * migrates to another cpu (again). |
| 1099 | * |
| 1100 | * 3) For shared address spaces (threads) and swapping we bite the |
| 1101 | * bullet for most cases and perform the cross call (but only to |
| 1102 | * the cpus listed in cpu_vm_mask). |
| 1103 | * |
| 1104 | * The performance gain from "optimizing" away the cross call for threads is |
| 1105 | * questionable (in theory the big win for threads is the massive sharing of |
| 1106 | * address space state across processors). |
| 1107 | */ |
David S. Miller | 62dbec7 | 2005-11-07 14:09:58 -0800 | [diff] [blame] | 1108 | |
| 1109 | /* This currently is only used by the hugetlb arch pre-fault |
| 1110 | * hook on UltraSPARC-III+ and later when changing the pagesize |
| 1111 | * bits of the context register for an address space. |
| 1112 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1113 | void smp_flush_tlb_mm(struct mm_struct *mm) |
| 1114 | { |
David S. Miller | 62dbec7 | 2005-11-07 14:09:58 -0800 | [diff] [blame] | 1115 | u32 ctx = CTX_HWBITS(mm->context); |
| 1116 | int cpu = get_cpu(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1117 | |
David S. Miller | 62dbec7 | 2005-11-07 14:09:58 -0800 | [diff] [blame] | 1118 | if (atomic_read(&mm->mm_users) == 1) { |
| 1119 | mm->cpu_vm_mask = cpumask_of_cpu(cpu); |
| 1120 | goto local_flush_and_out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1121 | } |
David S. Miller | 62dbec7 | 2005-11-07 14:09:58 -0800 | [diff] [blame] | 1122 | |
| 1123 | smp_cross_call_masked(&xcall_flush_tlb_mm, |
| 1124 | ctx, 0, 0, |
| 1125 | mm->cpu_vm_mask); |
| 1126 | |
| 1127 | local_flush_and_out: |
| 1128 | __flush_tlb_mm(ctx, SECONDARY_CONTEXT); |
| 1129 | |
| 1130 | put_cpu(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1131 | } |
| 1132 | |
| 1133 | void smp_flush_tlb_pending(struct mm_struct *mm, unsigned long nr, unsigned long *vaddrs) |
| 1134 | { |
| 1135 | u32 ctx = CTX_HWBITS(mm->context); |
| 1136 | int cpu = get_cpu(); |
| 1137 | |
Hugh Dickins | dedeb00 | 2005-11-07 14:09:01 -0800 | [diff] [blame] | 1138 | if (mm == current->active_mm && atomic_read(&mm->mm_users) == 1) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1139 | mm->cpu_vm_mask = cpumask_of_cpu(cpu); |
Hugh Dickins | dedeb00 | 2005-11-07 14:09:01 -0800 | [diff] [blame] | 1140 | else |
| 1141 | smp_cross_call_masked(&xcall_flush_tlb_pending, |
| 1142 | ctx, nr, (unsigned long) vaddrs, |
| 1143 | mm->cpu_vm_mask); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1144 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1145 | __flush_tlb_pending(ctx, nr, vaddrs); |
| 1146 | |
| 1147 | put_cpu(); |
| 1148 | } |
| 1149 | |
| 1150 | void smp_flush_tlb_kernel_range(unsigned long start, unsigned long end) |
| 1151 | { |
| 1152 | start &= PAGE_MASK; |
| 1153 | end = PAGE_ALIGN(end); |
| 1154 | if (start != end) { |
| 1155 | smp_cross_call(&xcall_flush_tlb_kernel_range, |
| 1156 | 0, start, end); |
| 1157 | |
| 1158 | __flush_tlb_kernel_range(start, end); |
| 1159 | } |
| 1160 | } |
| 1161 | |
| 1162 | /* CPU capture. */ |
| 1163 | /* #define CAPTURE_DEBUG */ |
| 1164 | extern unsigned long xcall_capture; |
| 1165 | |
| 1166 | static atomic_t smp_capture_depth = ATOMIC_INIT(0); |
| 1167 | static atomic_t smp_capture_registry = ATOMIC_INIT(0); |
| 1168 | static unsigned long penguins_are_doing_time; |
| 1169 | |
| 1170 | void smp_capture(void) |
| 1171 | { |
| 1172 | int result = atomic_add_ret(1, &smp_capture_depth); |
| 1173 | |
| 1174 | if (result == 1) { |
| 1175 | int ncpus = num_online_cpus(); |
| 1176 | |
| 1177 | #ifdef CAPTURE_DEBUG |
| 1178 | printk("CPU[%d]: Sending penguins to jail...", |
| 1179 | smp_processor_id()); |
| 1180 | #endif |
| 1181 | penguins_are_doing_time = 1; |
David S. Miller | 4f07118 | 2005-08-29 12:46:22 -0700 | [diff] [blame] | 1182 | membar_storestore_loadstore(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1183 | atomic_inc(&smp_capture_registry); |
| 1184 | smp_cross_call(&xcall_capture, 0, 0, 0); |
| 1185 | while (atomic_read(&smp_capture_registry) != ncpus) |
David S. Miller | 4f07118 | 2005-08-29 12:46:22 -0700 | [diff] [blame] | 1186 | rmb(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1187 | #ifdef CAPTURE_DEBUG |
| 1188 | printk("done\n"); |
| 1189 | #endif |
| 1190 | } |
| 1191 | } |
| 1192 | |
| 1193 | void smp_release(void) |
| 1194 | { |
| 1195 | if (atomic_dec_and_test(&smp_capture_depth)) { |
| 1196 | #ifdef CAPTURE_DEBUG |
| 1197 | printk("CPU[%d]: Giving pardon to " |
| 1198 | "imprisoned penguins\n", |
| 1199 | smp_processor_id()); |
| 1200 | #endif |
| 1201 | penguins_are_doing_time = 0; |
David S. Miller | 4f07118 | 2005-08-29 12:46:22 -0700 | [diff] [blame] | 1202 | membar_storeload_storestore(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1203 | atomic_dec(&smp_capture_registry); |
| 1204 | } |
| 1205 | } |
| 1206 | |
| 1207 | /* Imprisoned penguins run with %pil == 15, but PSTATE_IE set, so they |
| 1208 | * can service tlb flush xcalls... |
| 1209 | */ |
| 1210 | extern void prom_world(int); |
David S. Miller | 96c6e0d | 2006-01-31 18:32:29 -0800 | [diff] [blame] | 1211 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1212 | void smp_penguin_jailcell(int irq, struct pt_regs *regs) |
| 1213 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1214 | clear_softint(1 << irq); |
| 1215 | |
| 1216 | preempt_disable(); |
| 1217 | |
| 1218 | __asm__ __volatile__("flushw"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1219 | prom_world(1); |
| 1220 | atomic_inc(&smp_capture_registry); |
David S. Miller | 4f07118 | 2005-08-29 12:46:22 -0700 | [diff] [blame] | 1221 | membar_storeload_storestore(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1222 | while (penguins_are_doing_time) |
David S. Miller | 4f07118 | 2005-08-29 12:46:22 -0700 | [diff] [blame] | 1223 | rmb(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1224 | atomic_dec(&smp_capture_registry); |
| 1225 | prom_world(0); |
| 1226 | |
| 1227 | preempt_enable(); |
| 1228 | } |
| 1229 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1230 | /* /proc/profile writes can call this, don't __init it please. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1231 | int setup_profiling_timer(unsigned int multiplier) |
| 1232 | { |
David S. Miller | 777a447 | 2007-02-22 06:24:10 -0800 | [diff] [blame] | 1233 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1234 | } |
| 1235 | |
| 1236 | void __init smp_prepare_cpus(unsigned int max_cpus) |
| 1237 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1238 | } |
| 1239 | |
| 1240 | void __devinit smp_prepare_boot_cpu(void) |
| 1241 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1242 | } |
| 1243 | |
David S. Miller | 5cbc307 | 2007-05-25 15:49:59 -0700 | [diff] [blame] | 1244 | void __devinit smp_fill_in_sib_core_maps(void) |
| 1245 | { |
| 1246 | unsigned int i; |
| 1247 | |
David S. Miller | e0204409 | 2007-07-16 03:49:40 -0700 | [diff] [blame] | 1248 | for_each_present_cpu(i) { |
David S. Miller | 5cbc307 | 2007-05-25 15:49:59 -0700 | [diff] [blame] | 1249 | unsigned int j; |
| 1250 | |
David S. Miller | 39dd992 | 2007-07-15 01:29:24 -0700 | [diff] [blame] | 1251 | cpus_clear(cpu_core_map[i]); |
David S. Miller | 5cbc307 | 2007-05-25 15:49:59 -0700 | [diff] [blame] | 1252 | if (cpu_data(i).core_id == 0) { |
David S. Miller | f78eae2 | 2007-06-04 17:01:39 -0700 | [diff] [blame] | 1253 | cpu_set(i, cpu_core_map[i]); |
David S. Miller | 5cbc307 | 2007-05-25 15:49:59 -0700 | [diff] [blame] | 1254 | continue; |
| 1255 | } |
| 1256 | |
David S. Miller | e0204409 | 2007-07-16 03:49:40 -0700 | [diff] [blame] | 1257 | for_each_present_cpu(j) { |
David S. Miller | 5cbc307 | 2007-05-25 15:49:59 -0700 | [diff] [blame] | 1258 | if (cpu_data(i).core_id == |
| 1259 | cpu_data(j).core_id) |
David S. Miller | f78eae2 | 2007-06-04 17:01:39 -0700 | [diff] [blame] | 1260 | cpu_set(j, cpu_core_map[i]); |
| 1261 | } |
| 1262 | } |
| 1263 | |
David S. Miller | e0204409 | 2007-07-16 03:49:40 -0700 | [diff] [blame] | 1264 | for_each_present_cpu(i) { |
David S. Miller | f78eae2 | 2007-06-04 17:01:39 -0700 | [diff] [blame] | 1265 | unsigned int j; |
| 1266 | |
David S. Miller | 39dd992 | 2007-07-15 01:29:24 -0700 | [diff] [blame] | 1267 | cpus_clear(cpu_sibling_map[i]); |
David S. Miller | f78eae2 | 2007-06-04 17:01:39 -0700 | [diff] [blame] | 1268 | if (cpu_data(i).proc_id == -1) { |
| 1269 | cpu_set(i, cpu_sibling_map[i]); |
| 1270 | continue; |
| 1271 | } |
| 1272 | |
David S. Miller | e0204409 | 2007-07-16 03:49:40 -0700 | [diff] [blame] | 1273 | for_each_present_cpu(j) { |
David S. Miller | f78eae2 | 2007-06-04 17:01:39 -0700 | [diff] [blame] | 1274 | if (cpu_data(i).proc_id == |
| 1275 | cpu_data(j).proc_id) |
David S. Miller | 5cbc307 | 2007-05-25 15:49:59 -0700 | [diff] [blame] | 1276 | cpu_set(j, cpu_sibling_map[i]); |
| 1277 | } |
| 1278 | } |
| 1279 | } |
| 1280 | |
Gautham R Shenoy | b282b6f | 2007-01-10 23:15:34 -0800 | [diff] [blame] | 1281 | int __cpuinit __cpu_up(unsigned int cpu) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1282 | { |
| 1283 | int ret = smp_boot_one_cpu(cpu); |
| 1284 | |
| 1285 | if (!ret) { |
| 1286 | cpu_set(cpu, smp_commenced_mask); |
| 1287 | while (!cpu_isset(cpu, cpu_online_map)) |
| 1288 | mb(); |
| 1289 | if (!cpu_isset(cpu, cpu_online_map)) { |
| 1290 | ret = -ENODEV; |
| 1291 | } else { |
David S. Miller | 02fead7 | 2006-02-11 23:22:47 -0800 | [diff] [blame] | 1292 | /* On SUN4V, writes to %tick and %stick are |
| 1293 | * not allowed. |
| 1294 | */ |
| 1295 | if (tlb_type != hypervisor) |
| 1296 | smp_synchronize_one_tick(cpu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1297 | } |
| 1298 | } |
| 1299 | return ret; |
| 1300 | } |
| 1301 | |
David S. Miller | 4f0234f | 2007-07-13 16:03:42 -0700 | [diff] [blame] | 1302 | #ifdef CONFIG_HOTPLUG_CPU |
David S. Miller | e0204409 | 2007-07-16 03:49:40 -0700 | [diff] [blame] | 1303 | void cpu_play_dead(void) |
| 1304 | { |
| 1305 | int cpu = smp_processor_id(); |
| 1306 | unsigned long pstate; |
| 1307 | |
| 1308 | idle_task_exit(); |
| 1309 | |
| 1310 | if (tlb_type == hypervisor) { |
| 1311 | struct trap_per_cpu *tb = &trap_block[cpu]; |
| 1312 | |
| 1313 | sun4v_cpu_qconf(HV_CPU_QUEUE_CPU_MONDO, |
| 1314 | tb->cpu_mondo_pa, 0); |
| 1315 | sun4v_cpu_qconf(HV_CPU_QUEUE_DEVICE_MONDO, |
| 1316 | tb->dev_mondo_pa, 0); |
| 1317 | sun4v_cpu_qconf(HV_CPU_QUEUE_RES_ERROR, |
| 1318 | tb->resum_mondo_pa, 0); |
| 1319 | sun4v_cpu_qconf(HV_CPU_QUEUE_NONRES_ERROR, |
| 1320 | tb->nonresum_mondo_pa, 0); |
| 1321 | } |
| 1322 | |
| 1323 | cpu_clear(cpu, smp_commenced_mask); |
| 1324 | membar_safe("#Sync"); |
| 1325 | |
| 1326 | local_irq_disable(); |
| 1327 | |
| 1328 | __asm__ __volatile__( |
| 1329 | "rdpr %%pstate, %0\n\t" |
| 1330 | "wrpr %0, %1, %%pstate" |
| 1331 | : "=r" (pstate) |
| 1332 | : "i" (PSTATE_IE)); |
| 1333 | |
| 1334 | while (1) |
| 1335 | barrier(); |
| 1336 | } |
| 1337 | |
David S. Miller | 4f0234f | 2007-07-13 16:03:42 -0700 | [diff] [blame] | 1338 | int __cpu_disable(void) |
| 1339 | { |
David S. Miller | e0204409 | 2007-07-16 03:49:40 -0700 | [diff] [blame] | 1340 | int cpu = smp_processor_id(); |
| 1341 | cpuinfo_sparc *c; |
| 1342 | int i; |
| 1343 | |
| 1344 | for_each_cpu_mask(i, cpu_core_map[cpu]) |
| 1345 | cpu_clear(cpu, cpu_core_map[i]); |
| 1346 | cpus_clear(cpu_core_map[cpu]); |
| 1347 | |
| 1348 | for_each_cpu_mask(i, cpu_sibling_map[cpu]) |
| 1349 | cpu_clear(cpu, cpu_sibling_map[i]); |
| 1350 | cpus_clear(cpu_sibling_map[cpu]); |
| 1351 | |
| 1352 | c = &cpu_data(cpu); |
| 1353 | |
| 1354 | c->core_id = 0; |
| 1355 | c->proc_id = -1; |
| 1356 | |
| 1357 | spin_lock(&call_lock); |
| 1358 | cpu_clear(cpu, cpu_online_map); |
| 1359 | spin_unlock(&call_lock); |
| 1360 | |
| 1361 | smp_wmb(); |
| 1362 | |
| 1363 | /* Make sure no interrupts point to this cpu. */ |
| 1364 | fixup_irqs(); |
| 1365 | |
| 1366 | local_irq_enable(); |
| 1367 | mdelay(1); |
| 1368 | local_irq_disable(); |
| 1369 | |
| 1370 | return 0; |
David S. Miller | 4f0234f | 2007-07-13 16:03:42 -0700 | [diff] [blame] | 1371 | } |
| 1372 | |
| 1373 | void __cpu_die(unsigned int cpu) |
| 1374 | { |
David S. Miller | e0204409 | 2007-07-16 03:49:40 -0700 | [diff] [blame] | 1375 | int i; |
| 1376 | |
| 1377 | for (i = 0; i < 100; i++) { |
| 1378 | smp_rmb(); |
| 1379 | if (!cpu_isset(cpu, smp_commenced_mask)) |
| 1380 | break; |
| 1381 | msleep(100); |
| 1382 | } |
| 1383 | if (cpu_isset(cpu, smp_commenced_mask)) { |
| 1384 | printk(KERN_ERR "CPU %u didn't die...\n", cpu); |
| 1385 | } else { |
| 1386 | #if defined(CONFIG_SUN_LDOMS) |
| 1387 | unsigned long hv_err; |
| 1388 | int limit = 100; |
| 1389 | |
| 1390 | do { |
| 1391 | hv_err = sun4v_cpu_stop(cpu); |
| 1392 | if (hv_err == HV_EOK) { |
| 1393 | cpu_clear(cpu, cpu_present_map); |
| 1394 | break; |
| 1395 | } |
| 1396 | } while (--limit > 0); |
| 1397 | if (limit <= 0) { |
| 1398 | printk(KERN_ERR "sun4v_cpu_stop() fails err=%lu\n", |
| 1399 | hv_err); |
| 1400 | } |
| 1401 | #endif |
| 1402 | } |
David S. Miller | 4f0234f | 2007-07-13 16:03:42 -0700 | [diff] [blame] | 1403 | } |
| 1404 | #endif |
| 1405 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1406 | void __init smp_cpus_done(unsigned int max_cpus) |
| 1407 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1408 | } |
| 1409 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1410 | void smp_send_reschedule(int cpu) |
| 1411 | { |
Nick Piggin | 64c7c8f | 2005-11-08 21:39:04 -0800 | [diff] [blame] | 1412 | smp_receive_signal(cpu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1413 | } |
| 1414 | |
| 1415 | /* This is a nop because we capture all other cpus |
| 1416 | * anyways when making the PROM active. |
| 1417 | */ |
| 1418 | void smp_send_stop(void) |
| 1419 | { |
| 1420 | } |
| 1421 | |
David S. Miller | d369ddd | 2005-07-10 15:45:11 -0700 | [diff] [blame] | 1422 | unsigned long __per_cpu_base __read_mostly; |
| 1423 | unsigned long __per_cpu_shift __read_mostly; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1424 | |
| 1425 | EXPORT_SYMBOL(__per_cpu_base); |
| 1426 | EXPORT_SYMBOL(__per_cpu_shift); |
| 1427 | |
David S. Miller | 5cbc307 | 2007-05-25 15:49:59 -0700 | [diff] [blame] | 1428 | void __init real_setup_per_cpu_areas(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1429 | { |
| 1430 | unsigned long goal, size, i; |
| 1431 | char *ptr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1432 | |
| 1433 | /* Copy section for each CPU (we discard the original) */ |
David S. Miller | 5a08900 | 2006-12-14 23:40:57 -0800 | [diff] [blame] | 1434 | goal = PERCPU_ENOUGH_ROOM; |
| 1435 | |
Jeremy Fitzhardinge | b6e3590 | 2007-05-02 19:27:12 +0200 | [diff] [blame] | 1436 | __per_cpu_shift = PAGE_SHIFT; |
| 1437 | for (size = PAGE_SIZE; size < goal; size <<= 1UL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1438 | __per_cpu_shift++; |
| 1439 | |
Jeremy Fitzhardinge | b6e3590 | 2007-05-02 19:27:12 +0200 | [diff] [blame] | 1440 | ptr = alloc_bootmem_pages(size * NR_CPUS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1441 | |
| 1442 | __per_cpu_base = ptr - __per_cpu_start; |
| 1443 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1444 | for (i = 0; i < NR_CPUS; i++, ptr += size) |
| 1445 | memcpy(ptr, __per_cpu_start, __per_cpu_end - __per_cpu_start); |
David S. Miller | 951bc82 | 2006-05-31 01:24:02 -0700 | [diff] [blame] | 1446 | |
| 1447 | /* Setup %g5 for the boot cpu. */ |
| 1448 | __local_per_cpu_offset = __per_cpu_offset(smp_processor_id()); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1449 | } |