smp.c 33 KB

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