x86: apic: simplify secondary CPU wakeup methods, fix
[linux-2.6/mini2440.git] / arch / x86 / kernel / apic / x2apic_uv_x.c
blob1bd6da1f8fadba5b0fd96c97355122629e9cc30d
1 /*
2 * This file is subject to the terms and conditions of the GNU General Public
3 * License. See the file "COPYING" in the main directory of this archive
4 * for more details.
6 * SGI UV APIC functions (note: not an Intel compatible APIC)
8 * Copyright (C) 2007-2008 Silicon Graphics, Inc. All rights reserved.
9 */
10 #include <linux/cpumask.h>
11 #include <linux/hardirq.h>
12 #include <linux/proc_fs.h>
13 #include <linux/threads.h>
14 #include <linux/kernel.h>
15 #include <linux/module.h>
16 #include <linux/string.h>
17 #include <linux/ctype.h>
18 #include <linux/sched.h>
19 #include <linux/timer.h>
20 #include <linux/cpu.h>
21 #include <linux/init.h>
23 #include <asm/uv/uv_mmrs.h>
24 #include <asm/uv/uv_hub.h>
25 #include <asm/current.h>
26 #include <asm/pgtable.h>
27 #include <asm/uv/bios.h>
28 #include <asm/uv/uv.h>
29 #include <asm/apic.h>
30 #include <asm/ipi.h>
31 #include <asm/smp.h>
33 DEFINE_PER_CPU(int, x2apic_extra_bits);
35 static enum uv_system_type uv_system_type;
37 static int uv_acpi_madt_oem_check(char *oem_id, char *oem_table_id)
39 if (!strcmp(oem_id, "SGI")) {
40 if (!strcmp(oem_table_id, "UVL"))
41 uv_system_type = UV_LEGACY_APIC;
42 else if (!strcmp(oem_table_id, "UVX"))
43 uv_system_type = UV_X2APIC;
44 else if (!strcmp(oem_table_id, "UVH")) {
45 uv_system_type = UV_NON_UNIQUE_APIC;
46 return 1;
49 return 0;
52 enum uv_system_type get_uv_system_type(void)
54 return uv_system_type;
57 int is_uv_system(void)
59 return uv_system_type != UV_NONE;
61 EXPORT_SYMBOL_GPL(is_uv_system);
63 DEFINE_PER_CPU(struct uv_hub_info_s, __uv_hub_info);
64 EXPORT_PER_CPU_SYMBOL_GPL(__uv_hub_info);
66 struct uv_blade_info *uv_blade_info;
67 EXPORT_SYMBOL_GPL(uv_blade_info);
69 short *uv_node_to_blade;
70 EXPORT_SYMBOL_GPL(uv_node_to_blade);
72 short *uv_cpu_to_blade;
73 EXPORT_SYMBOL_GPL(uv_cpu_to_blade);
75 short uv_possible_blades;
76 EXPORT_SYMBOL_GPL(uv_possible_blades);
78 unsigned long sn_rtc_cycles_per_second;
79 EXPORT_SYMBOL(sn_rtc_cycles_per_second);
81 /* Start with all IRQs pointing to boot CPU. IRQ balancing will shift them. */
83 static const struct cpumask *uv_target_cpus(void)
85 return cpumask_of(0);
88 static void uv_vector_allocation_domain(int cpu, struct cpumask *retmask)
90 cpumask_clear(retmask);
91 cpumask_set_cpu(cpu, retmask);
94 static int uv_wakeup_secondary(int phys_apicid, unsigned long start_rip)
96 #ifdef CONFIG_SMP
97 unsigned long val;
98 int pnode;
100 pnode = uv_apicid_to_pnode(phys_apicid);
101 val = (1UL << UVH_IPI_INT_SEND_SHFT) |
102 (phys_apicid << UVH_IPI_INT_APIC_ID_SHFT) |
103 ((start_rip << UVH_IPI_INT_VECTOR_SHFT) >> 12) |
104 APIC_DM_INIT;
105 uv_write_global_mmr64(pnode, UVH_IPI_INT, val);
106 mdelay(10);
108 val = (1UL << UVH_IPI_INT_SEND_SHFT) |
109 (phys_apicid << UVH_IPI_INT_APIC_ID_SHFT) |
110 ((start_rip << UVH_IPI_INT_VECTOR_SHFT) >> 12) |
111 APIC_DM_STARTUP;
112 uv_write_global_mmr64(pnode, UVH_IPI_INT, val);
114 atomic_set(&init_deasserted, 1);
115 #endif
116 return 0;
119 static void uv_send_IPI_one(int cpu, int vector)
121 unsigned long val, apicid;
122 int pnode;
124 apicid = per_cpu(x86_cpu_to_apicid, cpu);
125 pnode = uv_apicid_to_pnode(apicid);
127 val = (1UL << UVH_IPI_INT_SEND_SHFT) |
128 (apicid << UVH_IPI_INT_APIC_ID_SHFT) |
129 (vector << UVH_IPI_INT_VECTOR_SHFT);
131 uv_write_global_mmr64(pnode, UVH_IPI_INT, val);
134 static void uv_send_IPI_mask(const struct cpumask *mask, int vector)
136 unsigned int cpu;
138 for_each_cpu(cpu, mask)
139 uv_send_IPI_one(cpu, vector);
142 static void uv_send_IPI_mask_allbutself(const struct cpumask *mask, int vector)
144 unsigned int this_cpu = smp_processor_id();
145 unsigned int cpu;
147 for_each_cpu(cpu, mask) {
148 if (cpu != this_cpu)
149 uv_send_IPI_one(cpu, vector);
153 static void uv_send_IPI_allbutself(int vector)
155 unsigned int this_cpu = smp_processor_id();
156 unsigned int cpu;
158 for_each_online_cpu(cpu) {
159 if (cpu != this_cpu)
160 uv_send_IPI_one(cpu, vector);
164 static void uv_send_IPI_all(int vector)
166 uv_send_IPI_mask(cpu_online_mask, vector);
169 static int uv_apic_id_registered(void)
171 return 1;
174 static void uv_init_apic_ldr(void)
178 static unsigned int uv_cpu_mask_to_apicid(const struct cpumask *cpumask)
181 * We're using fixed IRQ delivery, can only return one phys APIC ID.
182 * May as well be the first.
184 int cpu = cpumask_first(cpumask);
186 if ((unsigned)cpu < nr_cpu_ids)
187 return per_cpu(x86_cpu_to_apicid, cpu);
188 else
189 return BAD_APICID;
192 static unsigned int
193 uv_cpu_mask_to_apicid_and(const struct cpumask *cpumask,
194 const struct cpumask *andmask)
196 int cpu;
199 * We're using fixed IRQ delivery, can only return one phys APIC ID.
200 * May as well be the first.
202 for_each_cpu_and(cpu, cpumask, andmask) {
203 if (cpumask_test_cpu(cpu, cpu_online_mask))
204 break;
206 if (cpu < nr_cpu_ids)
207 return per_cpu(x86_cpu_to_apicid, cpu);
209 return BAD_APICID;
212 static unsigned int x2apic_get_apic_id(unsigned long x)
214 unsigned int id;
216 WARN_ON(preemptible() && num_online_cpus() > 1);
217 id = x | __get_cpu_var(x2apic_extra_bits);
219 return id;
222 static unsigned long set_apic_id(unsigned int id)
224 unsigned long x;
226 /* maskout x2apic_extra_bits ? */
227 x = id;
228 return x;
231 static unsigned int uv_read_apic_id(void)
234 return x2apic_get_apic_id(apic_read(APIC_ID));
237 static int uv_phys_pkg_id(int initial_apicid, int index_msb)
239 return uv_read_apic_id() >> index_msb;
242 static void uv_send_IPI_self(int vector)
244 apic_write(APIC_SELF_IPI, vector);
247 struct apic apic_x2apic_uv_x = {
249 .name = "UV large system",
250 .probe = NULL,
251 .acpi_madt_oem_check = uv_acpi_madt_oem_check,
252 .apic_id_registered = uv_apic_id_registered,
254 .irq_delivery_mode = dest_Fixed,
255 .irq_dest_mode = 1, /* logical */
257 .target_cpus = uv_target_cpus,
258 .disable_esr = 0,
259 .dest_logical = APIC_DEST_LOGICAL,
260 .check_apicid_used = NULL,
261 .check_apicid_present = NULL,
263 .vector_allocation_domain = uv_vector_allocation_domain,
264 .init_apic_ldr = uv_init_apic_ldr,
266 .ioapic_phys_id_map = NULL,
267 .setup_apic_routing = NULL,
268 .multi_timer_check = NULL,
269 .apicid_to_node = NULL,
270 .cpu_to_logical_apicid = NULL,
271 .cpu_present_to_apicid = default_cpu_present_to_apicid,
272 .apicid_to_cpu_present = NULL,
273 .setup_portio_remap = NULL,
274 .check_phys_apicid_present = default_check_phys_apicid_present,
275 .enable_apic_mode = NULL,
276 .phys_pkg_id = uv_phys_pkg_id,
277 .mps_oem_check = NULL,
279 .get_apic_id = x2apic_get_apic_id,
280 .set_apic_id = set_apic_id,
281 .apic_id_mask = 0xFFFFFFFFu,
283 .cpu_mask_to_apicid = uv_cpu_mask_to_apicid,
284 .cpu_mask_to_apicid_and = uv_cpu_mask_to_apicid_and,
286 .send_IPI_mask = uv_send_IPI_mask,
287 .send_IPI_mask_allbutself = uv_send_IPI_mask_allbutself,
288 .send_IPI_allbutself = uv_send_IPI_allbutself,
289 .send_IPI_all = uv_send_IPI_all,
290 .send_IPI_self = uv_send_IPI_self,
292 .wakeup_secondary_cpu = uv_wakeup_secondary,
293 .trampoline_phys_low = DEFAULT_TRAMPOLINE_PHYS_LOW,
294 .trampoline_phys_high = DEFAULT_TRAMPOLINE_PHYS_HIGH,
295 .wait_for_init_deassert = NULL,
296 .smp_callin_clear_local_apic = NULL,
297 .inquire_remote_apic = NULL,
299 .read = native_apic_msr_read,
300 .write = native_apic_msr_write,
301 .icr_read = native_x2apic_icr_read,
302 .icr_write = native_x2apic_icr_write,
303 .wait_icr_idle = native_x2apic_wait_icr_idle,
304 .safe_wait_icr_idle = native_safe_x2apic_wait_icr_idle,
307 static __cpuinit void set_x2apic_extra_bits(int pnode)
309 __get_cpu_var(x2apic_extra_bits) = (pnode << 6);
313 * Called on boot cpu.
315 static __init int boot_pnode_to_blade(int pnode)
317 int blade;
319 for (blade = 0; blade < uv_num_possible_blades(); blade++)
320 if (pnode == uv_blade_info[blade].pnode)
321 return blade;
322 BUG();
325 struct redir_addr {
326 unsigned long redirect;
327 unsigned long alias;
330 #define DEST_SHIFT UVH_RH_GAM_ALIAS210_REDIRECT_CONFIG_0_MMR_DEST_BASE_SHFT
332 static __initdata struct redir_addr redir_addrs[] = {
333 {UVH_RH_GAM_ALIAS210_REDIRECT_CONFIG_0_MMR, UVH_SI_ALIAS0_OVERLAY_CONFIG},
334 {UVH_RH_GAM_ALIAS210_REDIRECT_CONFIG_1_MMR, UVH_SI_ALIAS1_OVERLAY_CONFIG},
335 {UVH_RH_GAM_ALIAS210_REDIRECT_CONFIG_2_MMR, UVH_SI_ALIAS2_OVERLAY_CONFIG},
338 static __init void get_lowmem_redirect(unsigned long *base, unsigned long *size)
340 union uvh_si_alias0_overlay_config_u alias;
341 union uvh_rh_gam_alias210_redirect_config_2_mmr_u redirect;
342 int i;
344 for (i = 0; i < ARRAY_SIZE(redir_addrs); i++) {
345 alias.v = uv_read_local_mmr(redir_addrs[i].alias);
346 if (alias.s.base == 0) {
347 *size = (1UL << alias.s.m_alias);
348 redirect.v = uv_read_local_mmr(redir_addrs[i].redirect);
349 *base = (unsigned long)redirect.s.dest_base << DEST_SHIFT;
350 return;
353 BUG();
356 static __init void map_low_mmrs(void)
358 init_extra_mapping_uc(UV_GLOBAL_MMR32_BASE, UV_GLOBAL_MMR32_SIZE);
359 init_extra_mapping_uc(UV_LOCAL_MMR_BASE, UV_LOCAL_MMR_SIZE);
362 enum map_type {map_wb, map_uc};
364 static __init void map_high(char *id, unsigned long base, int shift,
365 int max_pnode, enum map_type map_type)
367 unsigned long bytes, paddr;
369 paddr = base << shift;
370 bytes = (1UL << shift) * (max_pnode + 1);
371 printk(KERN_INFO "UV: Map %s_HI 0x%lx - 0x%lx\n", id, paddr,
372 paddr + bytes);
373 if (map_type == map_uc)
374 init_extra_mapping_uc(paddr, bytes);
375 else
376 init_extra_mapping_wb(paddr, bytes);
379 static __init void map_gru_high(int max_pnode)
381 union uvh_rh_gam_gru_overlay_config_mmr_u gru;
382 int shift = UVH_RH_GAM_GRU_OVERLAY_CONFIG_MMR_BASE_SHFT;
384 gru.v = uv_read_local_mmr(UVH_RH_GAM_GRU_OVERLAY_CONFIG_MMR);
385 if (gru.s.enable)
386 map_high("GRU", gru.s.base, shift, max_pnode, map_wb);
389 static __init void map_config_high(int max_pnode)
391 union uvh_rh_gam_cfg_overlay_config_mmr_u cfg;
392 int shift = UVH_RH_GAM_CFG_OVERLAY_CONFIG_MMR_BASE_SHFT;
394 cfg.v = uv_read_local_mmr(UVH_RH_GAM_CFG_OVERLAY_CONFIG_MMR);
395 if (cfg.s.enable)
396 map_high("CONFIG", cfg.s.base, shift, max_pnode, map_uc);
399 static __init void map_mmr_high(int max_pnode)
401 union uvh_rh_gam_mmr_overlay_config_mmr_u mmr;
402 int shift = UVH_RH_GAM_MMR_OVERLAY_CONFIG_MMR_BASE_SHFT;
404 mmr.v = uv_read_local_mmr(UVH_RH_GAM_MMR_OVERLAY_CONFIG_MMR);
405 if (mmr.s.enable)
406 map_high("MMR", mmr.s.base, shift, max_pnode, map_uc);
409 static __init void map_mmioh_high(int max_pnode)
411 union uvh_rh_gam_mmioh_overlay_config_mmr_u mmioh;
412 int shift = UVH_RH_GAM_MMIOH_OVERLAY_CONFIG_MMR_BASE_SHFT;
414 mmioh.v = uv_read_local_mmr(UVH_RH_GAM_MMIOH_OVERLAY_CONFIG_MMR);
415 if (mmioh.s.enable)
416 map_high("MMIOH", mmioh.s.base, shift, max_pnode, map_uc);
419 static __init void uv_rtc_init(void)
421 long status;
422 u64 ticks_per_sec;
424 status = uv_bios_freq_base(BIOS_FREQ_BASE_REALTIME_CLOCK,
425 &ticks_per_sec);
426 if (status != BIOS_STATUS_SUCCESS || ticks_per_sec < 100000) {
427 printk(KERN_WARNING
428 "unable to determine platform RTC clock frequency, "
429 "guessing.\n");
430 /* BIOS gives wrong value for clock freq. so guess */
431 sn_rtc_cycles_per_second = 1000000000000UL / 30000UL;
432 } else
433 sn_rtc_cycles_per_second = ticks_per_sec;
437 * percpu heartbeat timer
439 static void uv_heartbeat(unsigned long ignored)
441 struct timer_list *timer = &uv_hub_info->scir.timer;
442 unsigned char bits = uv_hub_info->scir.state;
444 /* flip heartbeat bit */
445 bits ^= SCIR_CPU_HEARTBEAT;
447 /* is this cpu idle? */
448 if (idle_cpu(raw_smp_processor_id()))
449 bits &= ~SCIR_CPU_ACTIVITY;
450 else
451 bits |= SCIR_CPU_ACTIVITY;
453 /* update system controller interface reg */
454 uv_set_scir_bits(bits);
456 /* enable next timer period */
457 mod_timer(timer, jiffies + SCIR_CPU_HB_INTERVAL);
460 static void __cpuinit uv_heartbeat_enable(int cpu)
462 if (!uv_cpu_hub_info(cpu)->scir.enabled) {
463 struct timer_list *timer = &uv_cpu_hub_info(cpu)->scir.timer;
465 uv_set_cpu_scir_bits(cpu, SCIR_CPU_HEARTBEAT|SCIR_CPU_ACTIVITY);
466 setup_timer(timer, uv_heartbeat, cpu);
467 timer->expires = jiffies + SCIR_CPU_HB_INTERVAL;
468 add_timer_on(timer, cpu);
469 uv_cpu_hub_info(cpu)->scir.enabled = 1;
472 /* check boot cpu */
473 if (!uv_cpu_hub_info(0)->scir.enabled)
474 uv_heartbeat_enable(0);
477 #ifdef CONFIG_HOTPLUG_CPU
478 static void __cpuinit uv_heartbeat_disable(int cpu)
480 if (uv_cpu_hub_info(cpu)->scir.enabled) {
481 uv_cpu_hub_info(cpu)->scir.enabled = 0;
482 del_timer(&uv_cpu_hub_info(cpu)->scir.timer);
484 uv_set_cpu_scir_bits(cpu, 0xff);
488 * cpu hotplug notifier
490 static __cpuinit int uv_scir_cpu_notify(struct notifier_block *self,
491 unsigned long action, void *hcpu)
493 long cpu = (long)hcpu;
495 switch (action) {
496 case CPU_ONLINE:
497 uv_heartbeat_enable(cpu);
498 break;
499 case CPU_DOWN_PREPARE:
500 uv_heartbeat_disable(cpu);
501 break;
502 default:
503 break;
505 return NOTIFY_OK;
508 static __init void uv_scir_register_cpu_notifier(void)
510 hotcpu_notifier(uv_scir_cpu_notify, 0);
513 #else /* !CONFIG_HOTPLUG_CPU */
515 static __init void uv_scir_register_cpu_notifier(void)
519 static __init int uv_init_heartbeat(void)
521 int cpu;
523 if (is_uv_system())
524 for_each_online_cpu(cpu)
525 uv_heartbeat_enable(cpu);
526 return 0;
529 late_initcall(uv_init_heartbeat);
531 #endif /* !CONFIG_HOTPLUG_CPU */
534 * Called on each cpu to initialize the per_cpu UV data area.
535 * FIXME: hotplug not supported yet
537 void __cpuinit uv_cpu_init(void)
539 /* CPU 0 initilization will be done via uv_system_init. */
540 if (!uv_blade_info)
541 return;
543 uv_blade_info[uv_numa_blade_id()].nr_online_cpus++;
545 if (get_uv_system_type() == UV_NON_UNIQUE_APIC)
546 set_x2apic_extra_bits(uv_hub_info->pnode);
550 void __init uv_system_init(void)
552 union uvh_si_addr_map_config_u m_n_config;
553 union uvh_node_id_u node_id;
554 unsigned long gnode_upper, lowmem_redir_base, lowmem_redir_size;
555 int bytes, nid, cpu, lcpu, pnode, blade, i, j, m_val, n_val;
556 int max_pnode = 0;
557 unsigned long mmr_base, present;
559 map_low_mmrs();
561 m_n_config.v = uv_read_local_mmr(UVH_SI_ADDR_MAP_CONFIG);
562 m_val = m_n_config.s.m_skt;
563 n_val = m_n_config.s.n_skt;
564 mmr_base =
565 uv_read_local_mmr(UVH_RH_GAM_MMR_OVERLAY_CONFIG_MMR) &
566 ~UV_MMR_ENABLE;
567 printk(KERN_DEBUG "UV: global MMR base 0x%lx\n", mmr_base);
569 for(i = 0; i < UVH_NODE_PRESENT_TABLE_DEPTH; i++)
570 uv_possible_blades +=
571 hweight64(uv_read_local_mmr( UVH_NODE_PRESENT_TABLE + i * 8));
572 printk(KERN_DEBUG "UV: Found %d blades\n", uv_num_possible_blades());
574 bytes = sizeof(struct uv_blade_info) * uv_num_possible_blades();
575 uv_blade_info = kmalloc(bytes, GFP_KERNEL);
577 get_lowmem_redirect(&lowmem_redir_base, &lowmem_redir_size);
579 bytes = sizeof(uv_node_to_blade[0]) * num_possible_nodes();
580 uv_node_to_blade = kmalloc(bytes, GFP_KERNEL);
581 memset(uv_node_to_blade, 255, bytes);
583 bytes = sizeof(uv_cpu_to_blade[0]) * num_possible_cpus();
584 uv_cpu_to_blade = kmalloc(bytes, GFP_KERNEL);
585 memset(uv_cpu_to_blade, 255, bytes);
587 blade = 0;
588 for (i = 0; i < UVH_NODE_PRESENT_TABLE_DEPTH; i++) {
589 present = uv_read_local_mmr(UVH_NODE_PRESENT_TABLE + i * 8);
590 for (j = 0; j < 64; j++) {
591 if (!test_bit(j, &present))
592 continue;
593 uv_blade_info[blade].pnode = (i * 64 + j);
594 uv_blade_info[blade].nr_possible_cpus = 0;
595 uv_blade_info[blade].nr_online_cpus = 0;
596 blade++;
600 node_id.v = uv_read_local_mmr(UVH_NODE_ID);
601 gnode_upper = (((unsigned long)node_id.s.node_id) &
602 ~((1 << n_val) - 1)) << m_val;
604 uv_bios_init();
605 uv_bios_get_sn_info(0, &uv_type, &sn_partition_id,
606 &sn_coherency_id, &sn_region_size);
607 uv_rtc_init();
609 for_each_present_cpu(cpu) {
610 nid = cpu_to_node(cpu);
611 pnode = uv_apicid_to_pnode(per_cpu(x86_cpu_to_apicid, cpu));
612 blade = boot_pnode_to_blade(pnode);
613 lcpu = uv_blade_info[blade].nr_possible_cpus;
614 uv_blade_info[blade].nr_possible_cpus++;
616 uv_cpu_hub_info(cpu)->lowmem_remap_base = lowmem_redir_base;
617 uv_cpu_hub_info(cpu)->lowmem_remap_top = lowmem_redir_size;
618 uv_cpu_hub_info(cpu)->m_val = m_val;
619 uv_cpu_hub_info(cpu)->n_val = m_val;
620 uv_cpu_hub_info(cpu)->numa_blade_id = blade;
621 uv_cpu_hub_info(cpu)->blade_processor_id = lcpu;
622 uv_cpu_hub_info(cpu)->pnode = pnode;
623 uv_cpu_hub_info(cpu)->pnode_mask = (1 << n_val) - 1;
624 uv_cpu_hub_info(cpu)->gpa_mask = (1 << (m_val + n_val)) - 1;
625 uv_cpu_hub_info(cpu)->gnode_upper = gnode_upper;
626 uv_cpu_hub_info(cpu)->global_mmr_base = mmr_base;
627 uv_cpu_hub_info(cpu)->coherency_domain_number = sn_coherency_id;
628 uv_cpu_hub_info(cpu)->scir.offset = SCIR_LOCAL_MMR_BASE + lcpu;
629 uv_node_to_blade[nid] = blade;
630 uv_cpu_to_blade[cpu] = blade;
631 max_pnode = max(pnode, max_pnode);
633 printk(KERN_DEBUG "UV: cpu %d, apicid 0x%x, pnode %d, nid %d, "
634 "lcpu %d, blade %d\n",
635 cpu, per_cpu(x86_cpu_to_apicid, cpu), pnode, nid,
636 lcpu, blade);
639 map_gru_high(max_pnode);
640 map_mmr_high(max_pnode);
641 map_config_high(max_pnode);
642 map_mmioh_high(max_pnode);
644 uv_cpu_init();
645 uv_scir_register_cpu_notifier();
646 proc_mkdir("sgi_uv", NULL);