smpboot.c 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932
  1. /*
  2. * SMP boot-related support
  3. *
  4. * Copyright (C) 1998-2003, 2005 Hewlett-Packard Co
  5. * David Mosberger-Tang <davidm@hpl.hp.com>
  6. * Copyright (C) 2001, 2004-2005 Intel Corp
  7. * Rohit Seth <rohit.seth@intel.com>
  8. * Suresh Siddha <suresh.b.siddha@intel.com>
  9. * Gordon Jin <gordon.jin@intel.com>
  10. * Ashok Raj <ashok.raj@intel.com>
  11. *
  12. * 01/05/16 Rohit Seth <rohit.seth@intel.com> Moved SMP booting functions from smp.c to here.
  13. * 01/04/27 David Mosberger <davidm@hpl.hp.com> Added ITC synching code.
  14. * 02/07/31 David Mosberger <davidm@hpl.hp.com> Switch over to hotplug-CPU boot-sequence.
  15. * smp_boot_cpus()/smp_commence() is replaced by
  16. * smp_prepare_cpus()/__cpu_up()/smp_cpus_done().
  17. * 04/06/21 Ashok Raj <ashok.raj@intel.com> Added CPU Hotplug Support
  18. * 04/12/26 Jin Gordon <gordon.jin@intel.com>
  19. * 04/12/26 Rohit Seth <rohit.seth@intel.com>
  20. * Add multi-threading and multi-core detection
  21. * 05/01/30 Suresh Siddha <suresh.b.siddha@intel.com>
  22. * Setup cpu_sibling_map and cpu_core_map
  23. */
  24. #include <linux/module.h>
  25. #include <linux/acpi.h>
  26. #include <linux/bootmem.h>
  27. #include <linux/cpu.h>
  28. #include <linux/delay.h>
  29. #include <linux/init.h>
  30. #include <linux/interrupt.h>
  31. #include <linux/irq.h>
  32. #include <linux/kernel.h>
  33. #include <linux/kernel_stat.h>
  34. #include <linux/mm.h>
  35. #include <linux/notifier.h>
  36. #include <linux/smp.h>
  37. #include <linux/spinlock.h>
  38. #include <linux/efi.h>
  39. #include <linux/percpu.h>
  40. #include <linux/bitops.h>
  41. #include <asm/atomic.h>
  42. #include <asm/cache.h>
  43. #include <asm/current.h>
  44. #include <asm/delay.h>
  45. #include <asm/ia32.h>
  46. #include <asm/io.h>
  47. #include <asm/irq.h>
  48. #include <asm/machvec.h>
  49. #include <asm/mca.h>
  50. #include <asm/page.h>
  51. #include <asm/paravirt.h>
  52. #include <asm/pgalloc.h>
  53. #include <asm/pgtable.h>
  54. #include <asm/processor.h>
  55. #include <asm/ptrace.h>
  56. #include <asm/sal.h>
  57. #include <asm/system.h>
  58. #include <asm/tlbflush.h>
  59. #include <asm/unistd.h>
  60. #include <asm/sn/arch.h>
  61. #define SMP_DEBUG 0
  62. #if SMP_DEBUG
  63. #define Dprintk(x...) printk(x)
  64. #else
  65. #define Dprintk(x...)
  66. #endif
  67. #ifdef CONFIG_HOTPLUG_CPU
  68. #ifdef CONFIG_PERMIT_BSP_REMOVE
  69. #define bsp_remove_ok 1
  70. #else
  71. #define bsp_remove_ok 0
  72. #endif
  73. /*
  74. * Store all idle threads, this can be reused instead of creating
  75. * a new thread. Also avoids complicated thread destroy functionality
  76. * for idle threads.
  77. */
  78. struct task_struct *idle_thread_array[NR_CPUS];
  79. /*
  80. * Global array allocated for NR_CPUS at boot time
  81. */
  82. struct sal_to_os_boot sal_boot_rendez_state[NR_CPUS];
  83. /*
  84. * start_ap in head.S uses this to store current booting cpu
  85. * info.
  86. */
  87. struct sal_to_os_boot *sal_state_for_booting_cpu = &sal_boot_rendez_state[0];
  88. #define set_brendez_area(x) (sal_state_for_booting_cpu = &sal_boot_rendez_state[(x)]);
  89. #define get_idle_for_cpu(x) (idle_thread_array[(x)])
  90. #define set_idle_for_cpu(x,p) (idle_thread_array[(x)] = (p))
  91. #else
  92. #define get_idle_for_cpu(x) (NULL)
  93. #define set_idle_for_cpu(x,p)
  94. #define set_brendez_area(x)
  95. #endif
  96. /*
  97. * ITC synchronization related stuff:
  98. */
  99. #define MASTER (0)
  100. #define SLAVE (SMP_CACHE_BYTES/8)
  101. #define NUM_ROUNDS 64 /* magic value */
  102. #define NUM_ITERS 5 /* likewise */
  103. static DEFINE_SPINLOCK(itc_sync_lock);
  104. static volatile unsigned long go[SLAVE + 1];
  105. #define DEBUG_ITC_SYNC 0
  106. extern void start_ap (void);
  107. extern unsigned long ia64_iobase;
  108. struct task_struct *task_for_booting_cpu;
  109. /*
  110. * State for each CPU
  111. */
  112. DEFINE_PER_CPU(int, cpu_state);
  113. cpumask_t cpu_core_map[NR_CPUS] __cacheline_aligned;
  114. EXPORT_SYMBOL(cpu_core_map);
  115. DEFINE_PER_CPU_SHARED_ALIGNED(cpumask_t, cpu_sibling_map);
  116. EXPORT_PER_CPU_SYMBOL(cpu_sibling_map);
  117. int smp_num_siblings = 1;
  118. /* which logical CPU number maps to which CPU (physical APIC ID) */
  119. volatile int ia64_cpu_to_sapicid[NR_CPUS];
  120. EXPORT_SYMBOL(ia64_cpu_to_sapicid);
  121. static volatile cpumask_t cpu_callin_map;
  122. struct smp_boot_data smp_boot_data __initdata;
  123. unsigned long ap_wakeup_vector = -1; /* External Int use to wakeup APs */
  124. char __initdata no_int_routing;
  125. unsigned char smp_int_redirect; /* are INT and IPI redirectable by the chipset? */
  126. #ifdef CONFIG_FORCE_CPEI_RETARGET
  127. #define CPEI_OVERRIDE_DEFAULT (1)
  128. #else
  129. #define CPEI_OVERRIDE_DEFAULT (0)
  130. #endif
  131. unsigned int force_cpei_retarget = CPEI_OVERRIDE_DEFAULT;
  132. static int __init
  133. cmdl_force_cpei(char *str)
  134. {
  135. int value=0;
  136. get_option (&str, &value);
  137. force_cpei_retarget = value;
  138. return 1;
  139. }
  140. __setup("force_cpei=", cmdl_force_cpei);
  141. static int __init
  142. nointroute (char *str)
  143. {
  144. no_int_routing = 1;
  145. printk ("no_int_routing on\n");
  146. return 1;
  147. }
  148. __setup("nointroute", nointroute);
  149. static void fix_b0_for_bsp(void)
  150. {
  151. #ifdef CONFIG_HOTPLUG_CPU
  152. int cpuid;
  153. static int fix_bsp_b0 = 1;
  154. cpuid = smp_processor_id();
  155. /*
  156. * Cache the b0 value on the first AP that comes up
  157. */
  158. if (!(fix_bsp_b0 && cpuid))
  159. return;
  160. sal_boot_rendez_state[0].br[0] = sal_boot_rendez_state[cpuid].br[0];
  161. printk ("Fixed BSP b0 value from CPU %d\n", cpuid);
  162. fix_bsp_b0 = 0;
  163. #endif
  164. }
  165. void
  166. sync_master (void *arg)
  167. {
  168. unsigned long flags, i;
  169. go[MASTER] = 0;
  170. local_irq_save(flags);
  171. {
  172. for (i = 0; i < NUM_ROUNDS*NUM_ITERS; ++i) {
  173. while (!go[MASTER])
  174. cpu_relax();
  175. go[MASTER] = 0;
  176. go[SLAVE] = ia64_get_itc();
  177. }
  178. }
  179. local_irq_restore(flags);
  180. }
  181. /*
  182. * Return the number of cycles by which our itc differs from the itc on the master
  183. * (time-keeper) CPU. A positive number indicates our itc is ahead of the master,
  184. * negative that it is behind.
  185. */
  186. static inline long
  187. get_delta (long *rt, long *master)
  188. {
  189. unsigned long best_t0 = 0, best_t1 = ~0UL, best_tm = 0;
  190. unsigned long tcenter, t0, t1, tm;
  191. long i;
  192. for (i = 0; i < NUM_ITERS; ++i) {
  193. t0 = ia64_get_itc();
  194. go[MASTER] = 1;
  195. while (!(tm = go[SLAVE]))
  196. cpu_relax();
  197. go[SLAVE] = 0;
  198. t1 = ia64_get_itc();
  199. if (t1 - t0 < best_t1 - best_t0)
  200. best_t0 = t0, best_t1 = t1, best_tm = tm;
  201. }
  202. *rt = best_t1 - best_t0;
  203. *master = best_tm - best_t0;
  204. /* average best_t0 and best_t1 without overflow: */
  205. tcenter = (best_t0/2 + best_t1/2);
  206. if (best_t0 % 2 + best_t1 % 2 == 2)
  207. ++tcenter;
  208. return tcenter - best_tm;
  209. }
  210. /*
  211. * Synchronize ar.itc of the current (slave) CPU with the ar.itc of the MASTER CPU
  212. * (normally the time-keeper CPU). We use a closed loop to eliminate the possibility of
  213. * unaccounted-for errors (such as getting a machine check in the middle of a calibration
  214. * step). The basic idea is for the slave to ask the master what itc value it has and to
  215. * read its own itc before and after the master responds. Each iteration gives us three
  216. * timestamps:
  217. *
  218. * slave master
  219. *
  220. * t0 ---\
  221. * ---\
  222. * --->
  223. * tm
  224. * /---
  225. * /---
  226. * t1 <---
  227. *
  228. *
  229. * The goal is to adjust the slave's ar.itc such that tm falls exactly half-way between t0
  230. * and t1. If we achieve this, the clocks are synchronized provided the interconnect
  231. * between the slave and the master is symmetric. Even if the interconnect were
  232. * asymmetric, we would still know that the synchronization error is smaller than the
  233. * roundtrip latency (t0 - t1).
  234. *
  235. * When the interconnect is quiet and symmetric, this lets us synchronize the itc to
  236. * within one or two cycles. However, we can only *guarantee* that the synchronization is
  237. * accurate to within a round-trip time, which is typically in the range of several
  238. * hundred cycles (e.g., ~500 cycles). In practice, this means that the itc's are usually
  239. * almost perfectly synchronized, but we shouldn't assume that the accuracy is much better
  240. * than half a micro second or so.
  241. */
  242. void
  243. ia64_sync_itc (unsigned int master)
  244. {
  245. long i, delta, adj, adjust_latency = 0, done = 0;
  246. unsigned long flags, rt, master_time_stamp, bound;
  247. #if DEBUG_ITC_SYNC
  248. struct {
  249. long rt; /* roundtrip time */
  250. long master; /* master's timestamp */
  251. long diff; /* difference between midpoint and master's timestamp */
  252. long lat; /* estimate of itc adjustment latency */
  253. } t[NUM_ROUNDS];
  254. #endif
  255. /*
  256. * Make sure local timer ticks are disabled while we sync. If
  257. * they were enabled, we'd have to worry about nasty issues
  258. * like setting the ITC ahead of (or a long time before) the
  259. * next scheduled tick.
  260. */
  261. BUG_ON((ia64_get_itv() & (1 << 16)) == 0);
  262. go[MASTER] = 1;
  263. if (smp_call_function_single(master, sync_master, NULL, 0) < 0) {
  264. printk(KERN_ERR "sync_itc: failed to get attention of CPU %u!\n", master);
  265. return;
  266. }
  267. while (go[MASTER])
  268. cpu_relax(); /* wait for master to be ready */
  269. spin_lock_irqsave(&itc_sync_lock, flags);
  270. {
  271. for (i = 0; i < NUM_ROUNDS; ++i) {
  272. delta = get_delta(&rt, &master_time_stamp);
  273. if (delta == 0) {
  274. done = 1; /* let's lock on to this... */
  275. bound = rt;
  276. }
  277. if (!done) {
  278. if (i > 0) {
  279. adjust_latency += -delta;
  280. adj = -delta + adjust_latency/4;
  281. } else
  282. adj = -delta;
  283. ia64_set_itc(ia64_get_itc() + adj);
  284. }
  285. #if DEBUG_ITC_SYNC
  286. t[i].rt = rt;
  287. t[i].master = master_time_stamp;
  288. t[i].diff = delta;
  289. t[i].lat = adjust_latency/4;
  290. #endif
  291. }
  292. }
  293. spin_unlock_irqrestore(&itc_sync_lock, flags);
  294. #if DEBUG_ITC_SYNC
  295. for (i = 0; i < NUM_ROUNDS; ++i)
  296. printk("rt=%5ld master=%5ld diff=%5ld adjlat=%5ld\n",
  297. t[i].rt, t[i].master, t[i].diff, t[i].lat);
  298. #endif
  299. printk(KERN_INFO "CPU %d: synchronized ITC with CPU %u (last diff %ld cycles, "
  300. "maxerr %lu cycles)\n", smp_processor_id(), master, delta, rt);
  301. }
  302. /*
  303. * Ideally sets up per-cpu profiling hooks. Doesn't do much now...
  304. */
  305. static inline void __devinit
  306. smp_setup_percpu_timer (void)
  307. {
  308. }
  309. static void __cpuinit
  310. smp_callin (void)
  311. {
  312. int cpuid, phys_id, itc_master;
  313. struct cpuinfo_ia64 *last_cpuinfo, *this_cpuinfo;
  314. extern void ia64_init_itm(void);
  315. extern volatile int time_keeper_id;
  316. #ifdef CONFIG_PERFMON
  317. extern void pfm_init_percpu(void);
  318. #endif
  319. cpuid = smp_processor_id();
  320. phys_id = hard_smp_processor_id();
  321. itc_master = time_keeper_id;
  322. if (cpu_online(cpuid)) {
  323. printk(KERN_ERR "huh, phys CPU#0x%x, CPU#0x%x already present??\n",
  324. phys_id, cpuid);
  325. BUG();
  326. }
  327. fix_b0_for_bsp();
  328. ipi_call_lock_irq();
  329. spin_lock(&vector_lock);
  330. /* Setup the per cpu irq handling data structures */
  331. __setup_vector_irq(cpuid);
  332. notify_cpu_starting(cpuid);
  333. cpu_set(cpuid, cpu_online_map);
  334. per_cpu(cpu_state, cpuid) = CPU_ONLINE;
  335. spin_unlock(&vector_lock);
  336. ipi_call_unlock_irq();
  337. smp_setup_percpu_timer();
  338. ia64_mca_cmc_vector_setup(); /* Setup vector on AP */
  339. #ifdef CONFIG_PERFMON
  340. pfm_init_percpu();
  341. #endif
  342. local_irq_enable();
  343. if (!(sal_platform_features & IA64_SAL_PLATFORM_FEATURE_ITC_DRIFT)) {
  344. /*
  345. * Synchronize the ITC with the BP. Need to do this after irqs are
  346. * enabled because ia64_sync_itc() calls smp_call_function_single(), which
  347. * calls spin_unlock_bh(), which calls spin_unlock_bh(), which calls
  348. * local_bh_enable(), which bugs out if irqs are not enabled...
  349. */
  350. Dprintk("Going to syncup ITC with ITC Master.\n");
  351. ia64_sync_itc(itc_master);
  352. }
  353. /*
  354. * Get our bogomips.
  355. */
  356. ia64_init_itm();
  357. /*
  358. * Delay calibration can be skipped if new processor is identical to the
  359. * previous processor.
  360. */
  361. last_cpuinfo = cpu_data(cpuid - 1);
  362. this_cpuinfo = local_cpu_data;
  363. if (last_cpuinfo->itc_freq != this_cpuinfo->itc_freq ||
  364. last_cpuinfo->proc_freq != this_cpuinfo->proc_freq ||
  365. last_cpuinfo->features != this_cpuinfo->features ||
  366. last_cpuinfo->revision != this_cpuinfo->revision ||
  367. last_cpuinfo->family != this_cpuinfo->family ||
  368. last_cpuinfo->archrev != this_cpuinfo->archrev ||
  369. last_cpuinfo->model != this_cpuinfo->model)
  370. calibrate_delay();
  371. local_cpu_data->loops_per_jiffy = loops_per_jiffy;
  372. #ifdef CONFIG_IA32_SUPPORT
  373. ia32_gdt_init();
  374. #endif
  375. /*
  376. * Allow the master to continue.
  377. */
  378. cpu_set(cpuid, cpu_callin_map);
  379. Dprintk("Stack on CPU %d at about %p\n",cpuid, &cpuid);
  380. }
  381. /*
  382. * Activate a secondary processor. head.S calls this.
  383. */
  384. int __cpuinit
  385. start_secondary (void *unused)
  386. {
  387. /* Early console may use I/O ports */
  388. ia64_set_kr(IA64_KR_IO_BASE, __pa(ia64_iobase));
  389. #ifndef CONFIG_PRINTK_TIME
  390. Dprintk("start_secondary: starting CPU 0x%x\n", hard_smp_processor_id());
  391. #endif
  392. efi_map_pal_code();
  393. cpu_init();
  394. preempt_disable();
  395. smp_callin();
  396. cpu_idle();
  397. return 0;
  398. }
  399. struct pt_regs * __cpuinit idle_regs(struct pt_regs *regs)
  400. {
  401. return NULL;
  402. }
  403. struct create_idle {
  404. struct work_struct work;
  405. struct task_struct *idle;
  406. struct completion done;
  407. int cpu;
  408. };
  409. void __cpuinit
  410. do_fork_idle(struct work_struct *work)
  411. {
  412. struct create_idle *c_idle =
  413. container_of(work, struct create_idle, work);
  414. c_idle->idle = fork_idle(c_idle->cpu);
  415. complete(&c_idle->done);
  416. }
  417. static int __cpuinit
  418. do_boot_cpu (int sapicid, int cpu)
  419. {
  420. int timeout;
  421. struct create_idle c_idle = {
  422. .work = __WORK_INITIALIZER(c_idle.work, do_fork_idle),
  423. .cpu = cpu,
  424. .done = COMPLETION_INITIALIZER(c_idle.done),
  425. };
  426. c_idle.idle = get_idle_for_cpu(cpu);
  427. if (c_idle.idle) {
  428. init_idle(c_idle.idle, cpu);
  429. goto do_rest;
  430. }
  431. /*
  432. * We can't use kernel_thread since we must avoid to reschedule the child.
  433. */
  434. if (!keventd_up() || current_is_keventd())
  435. c_idle.work.func(&c_idle.work);
  436. else {
  437. schedule_work(&c_idle.work);
  438. wait_for_completion(&c_idle.done);
  439. }
  440. if (IS_ERR(c_idle.idle))
  441. panic("failed fork for CPU %d", cpu);
  442. set_idle_for_cpu(cpu, c_idle.idle);
  443. do_rest:
  444. task_for_booting_cpu = c_idle.idle;
  445. Dprintk("Sending wakeup vector %lu to AP 0x%x/0x%x.\n", ap_wakeup_vector, cpu, sapicid);
  446. set_brendez_area(cpu);
  447. platform_send_ipi(cpu, ap_wakeup_vector, IA64_IPI_DM_INT, 0);
  448. /*
  449. * Wait 10s total for the AP to start
  450. */
  451. Dprintk("Waiting on callin_map ...");
  452. for (timeout = 0; timeout < 100000; timeout++) {
  453. if (cpu_isset(cpu, cpu_callin_map))
  454. break; /* It has booted */
  455. udelay(100);
  456. }
  457. Dprintk("\n");
  458. if (!cpu_isset(cpu, cpu_callin_map)) {
  459. printk(KERN_ERR "Processor 0x%x/0x%x is stuck.\n", cpu, sapicid);
  460. ia64_cpu_to_sapicid[cpu] = -1;
  461. cpu_clear(cpu, cpu_online_map); /* was set in smp_callin() */
  462. return -EINVAL;
  463. }
  464. return 0;
  465. }
  466. static int __init
  467. decay (char *str)
  468. {
  469. int ticks;
  470. get_option (&str, &ticks);
  471. return 1;
  472. }
  473. __setup("decay=", decay);
  474. /*
  475. * Initialize the logical CPU number to SAPICID mapping
  476. */
  477. void __init
  478. smp_build_cpu_map (void)
  479. {
  480. int sapicid, cpu, i;
  481. int boot_cpu_id = hard_smp_processor_id();
  482. for (cpu = 0; cpu < NR_CPUS; cpu++) {
  483. ia64_cpu_to_sapicid[cpu] = -1;
  484. }
  485. ia64_cpu_to_sapicid[0] = boot_cpu_id;
  486. cpus_clear(cpu_present_map);
  487. cpu_set(0, cpu_present_map);
  488. cpu_set(0, cpu_possible_map);
  489. for (cpu = 1, i = 0; i < smp_boot_data.cpu_count; i++) {
  490. sapicid = smp_boot_data.cpu_phys_id[i];
  491. if (sapicid == boot_cpu_id)
  492. continue;
  493. cpu_set(cpu, cpu_present_map);
  494. cpu_set(cpu, cpu_possible_map);
  495. ia64_cpu_to_sapicid[cpu] = sapicid;
  496. cpu++;
  497. }
  498. }
  499. /*
  500. * Cycle through the APs sending Wakeup IPIs to boot each.
  501. */
  502. void __init
  503. smp_prepare_cpus (unsigned int max_cpus)
  504. {
  505. int boot_cpu_id = hard_smp_processor_id();
  506. /*
  507. * Initialize the per-CPU profiling counter/multiplier
  508. */
  509. smp_setup_percpu_timer();
  510. /*
  511. * We have the boot CPU online for sure.
  512. */
  513. cpu_set(0, cpu_online_map);
  514. cpu_set(0, cpu_callin_map);
  515. local_cpu_data->loops_per_jiffy = loops_per_jiffy;
  516. ia64_cpu_to_sapicid[0] = boot_cpu_id;
  517. printk(KERN_INFO "Boot processor id 0x%x/0x%x\n", 0, boot_cpu_id);
  518. current_thread_info()->cpu = 0;
  519. /*
  520. * If SMP should be disabled, then really disable it!
  521. */
  522. if (!max_cpus) {
  523. printk(KERN_INFO "SMP mode deactivated.\n");
  524. cpus_clear(cpu_online_map);
  525. cpus_clear(cpu_present_map);
  526. cpus_clear(cpu_possible_map);
  527. cpu_set(0, cpu_online_map);
  528. cpu_set(0, cpu_present_map);
  529. cpu_set(0, cpu_possible_map);
  530. return;
  531. }
  532. }
  533. void __devinit smp_prepare_boot_cpu(void)
  534. {
  535. cpu_set(smp_processor_id(), cpu_online_map);
  536. cpu_set(smp_processor_id(), cpu_callin_map);
  537. per_cpu(cpu_state, smp_processor_id()) = CPU_ONLINE;
  538. paravirt_post_smp_prepare_boot_cpu();
  539. }
  540. #ifdef CONFIG_HOTPLUG_CPU
  541. static inline void
  542. clear_cpu_sibling_map(int cpu)
  543. {
  544. int i;
  545. for_each_cpu_mask(i, per_cpu(cpu_sibling_map, cpu))
  546. cpu_clear(cpu, per_cpu(cpu_sibling_map, i));
  547. for_each_cpu_mask(i, cpu_core_map[cpu])
  548. cpu_clear(cpu, cpu_core_map[i]);
  549. per_cpu(cpu_sibling_map, cpu) = cpu_core_map[cpu] = CPU_MASK_NONE;
  550. }
  551. static void
  552. remove_siblinginfo(int cpu)
  553. {
  554. int last = 0;
  555. if (cpu_data(cpu)->threads_per_core == 1 &&
  556. cpu_data(cpu)->cores_per_socket == 1) {
  557. cpu_clear(cpu, cpu_core_map[cpu]);
  558. cpu_clear(cpu, per_cpu(cpu_sibling_map, cpu));
  559. return;
  560. }
  561. last = (cpus_weight(cpu_core_map[cpu]) == 1 ? 1 : 0);
  562. /* remove it from all sibling map's */
  563. clear_cpu_sibling_map(cpu);
  564. }
  565. extern void fixup_irqs(void);
  566. int migrate_platform_irqs(unsigned int cpu)
  567. {
  568. int new_cpei_cpu;
  569. irq_desc_t *desc = NULL;
  570. const struct cpumask *mask;
  571. int retval = 0;
  572. /*
  573. * dont permit CPEI target to removed.
  574. */
  575. if (cpe_vector > 0 && is_cpu_cpei_target(cpu)) {
  576. printk ("CPU (%d) is CPEI Target\n", cpu);
  577. if (can_cpei_retarget()) {
  578. /*
  579. * Now re-target the CPEI to a different processor
  580. */
  581. new_cpei_cpu = any_online_cpu(cpu_online_map);
  582. mask = cpumask_of(new_cpei_cpu);
  583. set_cpei_target_cpu(new_cpei_cpu);
  584. desc = irq_desc + ia64_cpe_irq;
  585. /*
  586. * Switch for now, immediately, we need to do fake intr
  587. * as other interrupts, but need to study CPEI behaviour with
  588. * polling before making changes.
  589. */
  590. if (desc) {
  591. desc->chip->disable(ia64_cpe_irq);
  592. desc->chip->set_affinity(ia64_cpe_irq, mask);
  593. desc->chip->enable(ia64_cpe_irq);
  594. printk ("Re-targetting CPEI to cpu %d\n", new_cpei_cpu);
  595. }
  596. }
  597. if (!desc) {
  598. printk ("Unable to retarget CPEI, offline cpu [%d] failed\n", cpu);
  599. retval = -EBUSY;
  600. }
  601. }
  602. return retval;
  603. }
  604. /* must be called with cpucontrol mutex held */
  605. int __cpu_disable(void)
  606. {
  607. int cpu = smp_processor_id();
  608. /*
  609. * dont permit boot processor for now
  610. */
  611. if (cpu == 0 && !bsp_remove_ok) {
  612. printk ("Your platform does not support removal of BSP\n");
  613. return (-EBUSY);
  614. }
  615. if (ia64_platform_is("sn2")) {
  616. if (!sn_cpu_disable_allowed(cpu))
  617. return -EBUSY;
  618. }
  619. if (migrate_platform_irqs(cpu)) {
  620. cpu_set(cpu, cpu_online_map);
  621. return (-EBUSY);
  622. }
  623. remove_siblinginfo(cpu);
  624. fixup_irqs();
  625. cpu_clear(cpu, cpu_online_map);
  626. local_flush_tlb_all();
  627. cpu_clear(cpu, cpu_callin_map);
  628. return 0;
  629. }
  630. void __cpu_die(unsigned int cpu)
  631. {
  632. unsigned int i;
  633. for (i = 0; i < 100; i++) {
  634. /* They ack this in play_dead by setting CPU_DEAD */
  635. if (per_cpu(cpu_state, cpu) == CPU_DEAD)
  636. {
  637. printk ("CPU %d is now offline\n", cpu);
  638. return;
  639. }
  640. msleep(100);
  641. }
  642. printk(KERN_ERR "CPU %u didn't die...\n", cpu);
  643. }
  644. #endif /* CONFIG_HOTPLUG_CPU */
  645. void
  646. smp_cpus_done (unsigned int dummy)
  647. {
  648. int cpu;
  649. unsigned long bogosum = 0;
  650. /*
  651. * Allow the user to impress friends.
  652. */
  653. for_each_online_cpu(cpu) {
  654. bogosum += cpu_data(cpu)->loops_per_jiffy;
  655. }
  656. printk(KERN_INFO "Total of %d processors activated (%lu.%02lu BogoMIPS).\n",
  657. (int)num_online_cpus(), bogosum/(500000/HZ), (bogosum/(5000/HZ))%100);
  658. }
  659. static inline void __devinit
  660. set_cpu_sibling_map(int cpu)
  661. {
  662. int i;
  663. for_each_online_cpu(i) {
  664. if ((cpu_data(cpu)->socket_id == cpu_data(i)->socket_id)) {
  665. cpu_set(i, cpu_core_map[cpu]);
  666. cpu_set(cpu, cpu_core_map[i]);
  667. if (cpu_data(cpu)->core_id == cpu_data(i)->core_id) {
  668. cpu_set(i, per_cpu(cpu_sibling_map, cpu));
  669. cpu_set(cpu, per_cpu(cpu_sibling_map, i));
  670. }
  671. }
  672. }
  673. }
  674. int __cpuinit
  675. __cpu_up (unsigned int cpu)
  676. {
  677. int ret;
  678. int sapicid;
  679. sapicid = ia64_cpu_to_sapicid[cpu];
  680. if (sapicid == -1)
  681. return -EINVAL;
  682. /*
  683. * Already booted cpu? not valid anymore since we dont
  684. * do idle loop tightspin anymore.
  685. */
  686. if (cpu_isset(cpu, cpu_callin_map))
  687. return -EINVAL;
  688. per_cpu(cpu_state, cpu) = CPU_UP_PREPARE;
  689. /* Processor goes to start_secondary(), sets online flag */
  690. ret = do_boot_cpu(sapicid, cpu);
  691. if (ret < 0)
  692. return ret;
  693. if (cpu_data(cpu)->threads_per_core == 1 &&
  694. cpu_data(cpu)->cores_per_socket == 1) {
  695. cpu_set(cpu, per_cpu(cpu_sibling_map, cpu));
  696. cpu_set(cpu, cpu_core_map[cpu]);
  697. return 0;
  698. }
  699. set_cpu_sibling_map(cpu);
  700. return 0;
  701. }
  702. /*
  703. * Assume that CPUs have been discovered by some platform-dependent interface. For
  704. * SoftSDV/Lion, that would be ACPI.
  705. *
  706. * Setup of the IPI irq handler is done in irq.c:init_IRQ_SMP().
  707. */
  708. void __init
  709. init_smp_config(void)
  710. {
  711. struct fptr {
  712. unsigned long fp;
  713. unsigned long gp;
  714. } *ap_startup;
  715. long sal_ret;
  716. /* Tell SAL where to drop the APs. */
  717. ap_startup = (struct fptr *) start_ap;
  718. sal_ret = ia64_sal_set_vectors(SAL_VECTOR_OS_BOOT_RENDEZ,
  719. ia64_tpa(ap_startup->fp), ia64_tpa(ap_startup->gp), 0, 0, 0, 0);
  720. if (sal_ret < 0)
  721. printk(KERN_ERR "SMP: Can't set SAL AP Boot Rendezvous: %s\n",
  722. ia64_sal_strerror(sal_ret));
  723. }
  724. /*
  725. * identify_siblings(cpu) gets called from identify_cpu. This populates the
  726. * information related to logical execution units in per_cpu_data structure.
  727. */
  728. void __devinit
  729. identify_siblings(struct cpuinfo_ia64 *c)
  730. {
  731. s64 status;
  732. u16 pltid;
  733. pal_logical_to_physical_t info;
  734. status = ia64_pal_logical_to_phys(-1, &info);
  735. if (status != PAL_STATUS_SUCCESS) {
  736. if (status != PAL_STATUS_UNIMPLEMENTED) {
  737. printk(KERN_ERR
  738. "ia64_pal_logical_to_phys failed with %ld\n",
  739. status);
  740. return;
  741. }
  742. info.overview_ppid = 0;
  743. info.overview_cpp = 1;
  744. info.overview_tpc = 1;
  745. }
  746. status = ia64_sal_physical_id_info(&pltid);
  747. if (status != PAL_STATUS_SUCCESS) {
  748. if (status != PAL_STATUS_UNIMPLEMENTED)
  749. printk(KERN_ERR
  750. "ia64_sal_pltid failed with %ld\n",
  751. status);
  752. return;
  753. }
  754. c->socket_id = (pltid << 8) | info.overview_ppid;
  755. if (info.overview_cpp == 1 && info.overview_tpc == 1)
  756. return;
  757. c->cores_per_socket = info.overview_cpp;
  758. c->threads_per_core = info.overview_tpc;
  759. c->num_log = info.overview_num_log;
  760. c->core_id = info.log1_cid;
  761. c->thread_id = info.log1_tid;
  762. }
  763. /*
  764. * returns non zero, if multi-threading is enabled
  765. * on at least one physical package. Due to hotplug cpu
  766. * and (maxcpus=), all threads may not necessarily be enabled
  767. * even though the processor supports multi-threading.
  768. */
  769. int is_multithreading_enabled(void)
  770. {
  771. int i, j;
  772. for_each_present_cpu(i) {
  773. for_each_present_cpu(j) {
  774. if (j == i)
  775. continue;
  776. if ((cpu_data(j)->socket_id == cpu_data(i)->socket_id)) {
  777. if (cpu_data(j)->core_id == cpu_data(i)->core_id)
  778. return 1;
  779. }
  780. }
  781. }
  782. return 0;
  783. }
  784. EXPORT_SYMBOL_GPL(is_multithreading_enabled);