x86, apic: Clean up bigsmp apic selection code
[deliverable/linux.git] / arch / x86 / kernel / apic / x2apic_uv_x.c
CommitLineData
ac23d4ee
JS
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.
5 *
6 * SGI UV APIC functions (note: not an Intel compatible APIC)
7 *
c8f730b1 8 * Copyright (C) 2007-2010 Silicon Graphics, Inc. All rights reserved.
ac23d4ee 9 */
ac23d4ee 10#include <linux/cpumask.h>
0b1da1c8
IM
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>
ac23d4ee 16#include <linux/string.h>
ac23d4ee 17#include <linux/ctype.h>
ac23d4ee 18#include <linux/sched.h>
7f1baa06 19#include <linux/timer.h>
5a0e3ad6 20#include <linux/slab.h>
0b1da1c8
IM
21#include <linux/cpu.h>
22#include <linux/init.h>
27229ca6 23#include <linux/io.h>
841582ea 24#include <linux/pci.h>
78c06176 25#include <linux/kdebug.h>
ca444564 26#include <linux/delay.h>
818987e9 27#include <linux/crash_dump.h>
0b1da1c8 28
ac23d4ee
JS
29#include <asm/uv/uv_mmrs.h>
30#include <asm/uv/uv_hub.h>
0b1da1c8
IM
31#include <asm/current.h>
32#include <asm/pgtable.h>
7019cc2d 33#include <asm/uv/bios.h>
0b1da1c8
IM
34#include <asm/uv/uv.h>
35#include <asm/apic.h>
36#include <asm/ipi.h>
37#include <asm/smp.h>
fd12a0d6 38#include <asm/x86_init.h>
818987e9 39#include <asm/emergency-restart.h>
1d44e828
JS
40#include <asm/nmi.h>
41
42/* BMC sets a bit this MMR non-zero before sending an NMI */
43#define UVH_NMI_MMR UVH_SCRATCH5
44#define UVH_NMI_MMR_CLEAR (UVH_NMI_MMR + 8)
45#define UV_NMI_PENDING_MASK (1UL << 63)
46DEFINE_PER_CPU(unsigned long, cpu_last_nmi_count);
ac23d4ee 47
510b3725
YL
48DEFINE_PER_CPU(int, x2apic_extra_bits);
49
841582ea
MT
50#define PR_DEVEL(fmt, args...) pr_devel("%s: " fmt, __func__, args)
51
1b9b89e7 52static enum uv_system_type uv_system_type;
fd12a0d6 53static u64 gru_start_paddr, gru_end_paddr;
c8f730b1 54static union uvh_apicid uvh_apicid;
7a1110e8
JS
55int uv_min_hub_revision_id;
56EXPORT_SYMBOL_GPL(uv_min_hub_revision_id);
8191c9f6
DS
57unsigned int uv_apicid_hibits;
58EXPORT_SYMBOL_GPL(uv_apicid_hibits);
78c06176 59static DEFINE_SPINLOCK(uv_nmi_lock);
fd12a0d6 60
e6810413
JS
61static unsigned long __init uv_early_read_mmr(unsigned long addr)
62{
63 unsigned long val, *mmr;
64
65 mmr = early_ioremap(UV_LOCAL_MMR_BASE | addr, sizeof(*mmr));
66 val = *mmr;
67 early_iounmap(mmr, sizeof(*mmr));
68 return val;
69}
70
eb41c8be 71static inline bool is_GRU_range(u64 start, u64 end)
fd12a0d6 72{
ccef0864 73 return start >= gru_start_paddr && end <= gru_end_paddr;
fd12a0d6
JS
74}
75
eb41c8be 76static bool uv_is_untracked_pat_range(u64 start, u64 end)
fd12a0d6
JS
77{
78 return is_ISA_range(start, end) || is_GRU_range(start, end);
79}
1b9b89e7 80
d8850ba4 81static int __init early_get_pnodeid(void)
27229ca6
JS
82{
83 union uvh_node_id_u node_id;
d8850ba4
JS
84 union uvh_rh_gam_config_mmr_u m_n_config;
85 int pnode;
7a1110e8
JS
86
87 /* Currently, all blades have same revision number */
e6810413 88 node_id.v = uv_early_read_mmr(UVH_NODE_ID);
d8850ba4 89 m_n_config.v = uv_early_read_mmr(UVH_RH_GAM_CONFIG_MMR);
7a1110e8
JS
90 uv_min_hub_revision_id = node_id.s.revision;
91
d8850ba4
JS
92 pnode = (node_id.s.node_id >> 1) & ((1 << m_n_config.s.n_skt) - 1);
93 return pnode;
27229ca6
JS
94}
95
0520bd84 96static void __init early_get_apic_pnode_shift(void)
c8f730b1 97{
e6810413 98 uvh_apicid.v = uv_early_read_mmr(UVH_APICID);
c8f730b1
RA
99 if (!uvh_apicid.v)
100 /*
101 * Old bios, use default value
102 */
103 uvh_apicid.s.pnode_shift = UV_APIC_PNODE_SHIFT;
c8f730b1
RA
104}
105
8191c9f6
DS
106/*
107 * Add an extra bit as dictated by bios to the destination apicid of
108 * interrupts potentially passing through the UV HUB. This prevents
109 * a deadlock between interrupts and IO port operations.
110 */
111static void __init uv_set_apicid_hibit(void)
112{
113 union uvh_lb_target_physical_apic_id_mask_u apicid_mask;
8191c9f6 114
e6810413 115 apicid_mask.v = uv_early_read_mmr(UVH_LB_TARGET_PHYSICAL_APIC_ID_MASK);
8191c9f6
DS
116 uv_apicid_hibits = apicid_mask.s.bit_enables & UV_APICID_HIBIT_MASK;
117}
118
52459ab9 119static int __init uv_acpi_madt_oem_check(char *oem_id, char *oem_table_id)
1b9b89e7 120{
d8850ba4 121 int pnodeid;
1d2c867c 122
1b9b89e7 123 if (!strcmp(oem_id, "SGI")) {
d8850ba4 124 pnodeid = early_get_pnodeid();
0520bd84 125 early_get_apic_pnode_shift();
fd12a0d6 126 x86_platform.is_untracked_pat_range = uv_is_untracked_pat_range;
78c06176 127 x86_platform.nmi_init = uv_nmi_init;
1b9b89e7
YL
128 if (!strcmp(oem_table_id, "UVL"))
129 uv_system_type = UV_LEGACY_APIC;
130 else if (!strcmp(oem_table_id, "UVX"))
131 uv_system_type = UV_X2APIC;
132 else if (!strcmp(oem_table_id, "UVH")) {
0a3aee0d 133 __this_cpu_write(x2apic_extra_bits,
72eb6a79 134 pnodeid << uvh_apicid.s.pnode_shift);
1b9b89e7 135 uv_system_type = UV_NON_UNIQUE_APIC;
8191c9f6 136 uv_set_apicid_hibit();
1b9b89e7
YL
137 return 1;
138 }
139 }
140 return 0;
141}
142
143enum uv_system_type get_uv_system_type(void)
144{
145 return uv_system_type;
146}
147
148int is_uv_system(void)
149{
150 return uv_system_type != UV_NONE;
151}
8067794b 152EXPORT_SYMBOL_GPL(is_uv_system);
1b9b89e7 153
ac23d4ee
JS
154DEFINE_PER_CPU(struct uv_hub_info_s, __uv_hub_info);
155EXPORT_PER_CPU_SYMBOL_GPL(__uv_hub_info);
156
157struct uv_blade_info *uv_blade_info;
158EXPORT_SYMBOL_GPL(uv_blade_info);
159
160short *uv_node_to_blade;
161EXPORT_SYMBOL_GPL(uv_node_to_blade);
162
163short *uv_cpu_to_blade;
164EXPORT_SYMBOL_GPL(uv_cpu_to_blade);
165
166short uv_possible_blades;
167EXPORT_SYMBOL_GPL(uv_possible_blades);
168
7019cc2d
RA
169unsigned long sn_rtc_cycles_per_second;
170EXPORT_SYMBOL(sn_rtc_cycles_per_second);
171
bcda016e 172static const struct cpumask *uv_target_cpus(void)
ac23d4ee 173{
8447b360 174 return cpu_online_mask;
ac23d4ee
JS
175}
176
bcda016e 177static void uv_vector_allocation_domain(int cpu, struct cpumask *retmask)
ac23d4ee 178{
bcda016e
MT
179 cpumask_clear(retmask);
180 cpumask_set_cpu(cpu, retmask);
ac23d4ee
JS
181}
182
667c5296 183static int __cpuinit uv_wakeup_secondary(int phys_apicid, unsigned long start_rip)
ac23d4ee 184{
0b1da1c8 185#ifdef CONFIG_SMP
ac23d4ee 186 unsigned long val;
9f5314fb 187 int pnode;
ac23d4ee 188
9f5314fb 189 pnode = uv_apicid_to_pnode(phys_apicid);
8191c9f6 190 phys_apicid |= uv_apicid_hibits;
ac23d4ee
JS
191 val = (1UL << UVH_IPI_INT_SEND_SHFT) |
192 (phys_apicid << UVH_IPI_INT_APIC_ID_SHFT) |
2b6163bf 193 ((start_rip << UVH_IPI_INT_VECTOR_SHFT) >> 12) |
34d05591 194 APIC_DM_INIT;
9f5314fb 195 uv_write_global_mmr64(pnode, UVH_IPI_INT, val);
34d05591
JS
196 mdelay(10);
197
198 val = (1UL << UVH_IPI_INT_SEND_SHFT) |
199 (phys_apicid << UVH_IPI_INT_APIC_ID_SHFT) |
2b6163bf 200 ((start_rip << UVH_IPI_INT_VECTOR_SHFT) >> 12) |
34d05591 201 APIC_DM_STARTUP;
9f5314fb 202 uv_write_global_mmr64(pnode, UVH_IPI_INT, val);
2b6163bf
YL
203
204 atomic_set(&init_deasserted, 1);
0b1da1c8 205#endif
ac23d4ee
JS
206 return 0;
207}
208
209static void uv_send_IPI_one(int cpu, int vector)
210{
66666e50 211 unsigned long apicid;
9f5314fb 212 int pnode;
ac23d4ee 213
1e0b5d00 214 apicid = per_cpu(x86_cpu_to_apicid, cpu);
9f5314fb 215 pnode = uv_apicid_to_pnode(apicid);
66666e50 216 uv_hub_send_ipi(pnode, apicid, vector);
ac23d4ee
JS
217}
218
bcda016e 219static void uv_send_IPI_mask(const struct cpumask *mask, int vector)
ac23d4ee
JS
220{
221 unsigned int cpu;
222
bcda016e 223 for_each_cpu(cpu, mask)
e7986739
MT
224 uv_send_IPI_one(cpu, vector);
225}
226
bcda016e 227static void uv_send_IPI_mask_allbutself(const struct cpumask *mask, int vector)
e7986739 228{
e7986739 229 unsigned int this_cpu = smp_processor_id();
dac5f412 230 unsigned int cpu;
e7986739 231
dac5f412 232 for_each_cpu(cpu, mask) {
e7986739 233 if (cpu != this_cpu)
ac23d4ee 234 uv_send_IPI_one(cpu, vector);
dac5f412 235 }
ac23d4ee
JS
236}
237
238static void uv_send_IPI_allbutself(int vector)
239{
e7986739 240 unsigned int this_cpu = smp_processor_id();
dac5f412 241 unsigned int cpu;
ac23d4ee 242
dac5f412 243 for_each_online_cpu(cpu) {
e7986739
MT
244 if (cpu != this_cpu)
245 uv_send_IPI_one(cpu, vector);
dac5f412 246 }
ac23d4ee
JS
247}
248
249static void uv_send_IPI_all(int vector)
250{
bcda016e 251 uv_send_IPI_mask(cpu_online_mask, vector);
ac23d4ee
JS
252}
253
254static int uv_apic_id_registered(void)
255{
256 return 1;
257}
258
277d1f58 259static void uv_init_apic_ldr(void)
5c520a67
SS
260{
261}
262
bcda016e 263static unsigned int uv_cpu_mask_to_apicid(const struct cpumask *cpumask)
ac23d4ee 264{
ac23d4ee
JS
265 /*
266 * We're using fixed IRQ delivery, can only return one phys APIC ID.
267 * May as well be the first.
268 */
debccb3e
IM
269 int cpu = cpumask_first(cpumask);
270
247bc6ca 271 if ((unsigned)cpu < nr_cpu_ids)
8191c9f6 272 return per_cpu(x86_cpu_to_apicid, cpu) | uv_apicid_hibits;
ac23d4ee
JS
273 else
274 return BAD_APICID;
275}
276
debccb3e
IM
277static unsigned int
278uv_cpu_mask_to_apicid_and(const struct cpumask *cpumask,
279 const struct cpumask *andmask)
95d313cf
MT
280{
281 int cpu;
282
283 /*
284 * We're using fixed IRQ delivery, can only return one phys APIC ID.
285 * May as well be the first.
286 */
debccb3e 287 for_each_cpu_and(cpu, cpumask, andmask) {
a775a38b
MT
288 if (cpumask_test_cpu(cpu, cpu_online_mask))
289 break;
debccb3e 290 }
8191c9f6 291 return per_cpu(x86_cpu_to_apicid, cpu) | uv_apicid_hibits;
95d313cf
MT
292}
293
ca6c8ed4 294static unsigned int x2apic_get_apic_id(unsigned long x)
0c81c746
SS
295{
296 unsigned int id;
297
298 WARN_ON(preemptible() && num_online_cpus() > 1);
0a3aee0d 299 id = x | __this_cpu_read(x2apic_extra_bits);
0c81c746
SS
300
301 return id;
302}
303
1b9b89e7 304static unsigned long set_apic_id(unsigned int id)
f910a9dc
YL
305{
306 unsigned long x;
307
308 /* maskout x2apic_extra_bits ? */
309 x = id;
310 return x;
311}
312
313static unsigned int uv_read_apic_id(void)
314{
315
ca6c8ed4 316 return x2apic_get_apic_id(apic_read(APIC_ID));
f910a9dc
YL
317}
318
d4c9a9f3 319static int uv_phys_pkg_id(int initial_apicid, int index_msb)
ac23d4ee 320{
0c81c746 321 return uv_read_apic_id() >> index_msb;
ac23d4ee
JS
322}
323
ac23d4ee
JS
324static void uv_send_IPI_self(int vector)
325{
326 apic_write(APIC_SELF_IPI, vector);
327}
ac23d4ee 328
9ebd680b
SS
329static int uv_probe(void)
330{
331 return apic == &apic_x2apic_uv_x;
332}
333
52459ab9 334struct apic __refdata apic_x2apic_uv_x = {
c7967329
IM
335
336 .name = "UV large system",
9ebd680b 337 .probe = uv_probe,
c7967329
IM
338 .acpi_madt_oem_check = uv_acpi_madt_oem_check,
339 .apic_id_registered = uv_apic_id_registered,
340
f8987a10 341 .irq_delivery_mode = dest_Fixed,
c5997fa8 342 .irq_dest_mode = 0, /* physical */
c7967329
IM
343
344 .target_cpus = uv_target_cpus,
08125d3e 345 .disable_esr = 0,
bdb1a9b6 346 .dest_logical = APIC_DEST_LOGICAL,
c7967329
IM
347 .check_apicid_used = NULL,
348 .check_apicid_present = NULL,
349
c7967329
IM
350 .vector_allocation_domain = uv_vector_allocation_domain,
351 .init_apic_ldr = uv_init_apic_ldr,
352
353 .ioapic_phys_id_map = NULL,
354 .setup_apic_routing = NULL,
355 .multi_timer_check = NULL,
a21769a4 356 .cpu_present_to_apicid = default_cpu_present_to_apicid,
c7967329
IM
357 .apicid_to_cpu_present = NULL,
358 .setup_portio_remap = NULL,
a27a6210 359 .check_phys_apicid_present = default_check_phys_apicid_present,
c7967329 360 .enable_apic_mode = NULL,
d4c9a9f3 361 .phys_pkg_id = uv_phys_pkg_id,
c7967329
IM
362 .mps_oem_check = NULL,
363
ca6c8ed4 364 .get_apic_id = x2apic_get_apic_id,
c7967329
IM
365 .set_apic_id = set_apic_id,
366 .apic_id_mask = 0xFFFFFFFFu,
367
368 .cpu_mask_to_apicid = uv_cpu_mask_to_apicid,
369 .cpu_mask_to_apicid_and = uv_cpu_mask_to_apicid_and,
370
371 .send_IPI_mask = uv_send_IPI_mask,
372 .send_IPI_mask_allbutself = uv_send_IPI_mask_allbutself,
373 .send_IPI_allbutself = uv_send_IPI_allbutself,
374 .send_IPI_all = uv_send_IPI_all,
375 .send_IPI_self = uv_send_IPI_self,
376
1f5bcabf 377 .wakeup_secondary_cpu = uv_wakeup_secondary,
abfa584c
IM
378 .trampoline_phys_low = DEFAULT_TRAMPOLINE_PHYS_LOW,
379 .trampoline_phys_high = DEFAULT_TRAMPOLINE_PHYS_HIGH,
c7967329
IM
380 .wait_for_init_deassert = NULL,
381 .smp_callin_clear_local_apic = NULL,
c7967329 382 .inquire_remote_apic = NULL,
c1eeb2de
YL
383
384 .read = native_apic_msr_read,
385 .write = native_apic_msr_write,
386 .icr_read = native_x2apic_icr_read,
387 .icr_write = native_x2apic_icr_write,
388 .wait_icr_idle = native_x2apic_wait_icr_idle,
389 .safe_wait_icr_idle = native_safe_x2apic_wait_icr_idle,
ac23d4ee
JS
390};
391
9f5314fb 392static __cpuinit void set_x2apic_extra_bits(int pnode)
ac23d4ee 393{
16ee8db6 394 __this_cpu_write(x2apic_extra_bits, pnode << uvh_apicid.s.pnode_shift);
ac23d4ee
JS
395}
396
397/*
398 * Called on boot cpu.
399 */
9f5314fb
JS
400static __init int boot_pnode_to_blade(int pnode)
401{
402 int blade;
403
404 for (blade = 0; blade < uv_num_possible_blades(); blade++)
405 if (pnode == uv_blade_info[blade].pnode)
406 return blade;
407 BUG();
408}
409
410struct redir_addr {
411 unsigned long redirect;
412 unsigned long alias;
413};
414
415#define DEST_SHIFT UVH_RH_GAM_ALIAS210_REDIRECT_CONFIG_0_MMR_DEST_BASE_SHFT
416
417static __initdata struct redir_addr redir_addrs[] = {
62b0cfc2
JS
418 {UVH_RH_GAM_ALIAS210_REDIRECT_CONFIG_0_MMR, UVH_RH_GAM_ALIAS210_OVERLAY_CONFIG_0_MMR},
419 {UVH_RH_GAM_ALIAS210_REDIRECT_CONFIG_1_MMR, UVH_RH_GAM_ALIAS210_OVERLAY_CONFIG_1_MMR},
420 {UVH_RH_GAM_ALIAS210_REDIRECT_CONFIG_2_MMR, UVH_RH_GAM_ALIAS210_OVERLAY_CONFIG_2_MMR},
9f5314fb
JS
421};
422
423static __init void get_lowmem_redirect(unsigned long *base, unsigned long *size)
424{
62b0cfc2 425 union uvh_rh_gam_alias210_overlay_config_2_mmr_u alias;
9f5314fb
JS
426 union uvh_rh_gam_alias210_redirect_config_2_mmr_u redirect;
427 int i;
428
429 for (i = 0; i < ARRAY_SIZE(redir_addrs); i++) {
430 alias.v = uv_read_local_mmr(redir_addrs[i].alias);
036ed8ba 431 if (alias.s.enable && alias.s.base == 0) {
9f5314fb
JS
432 *size = (1UL << alias.s.m_alias);
433 redirect.v = uv_read_local_mmr(redir_addrs[i].redirect);
434 *base = (unsigned long)redirect.s.dest_base << DEST_SHIFT;
435 return;
436 }
437 }
036ed8ba 438 *base = *size = 0;
9f5314fb
JS
439}
440
83f5d894
JS
441enum map_type {map_wb, map_uc};
442
fcfbb2b5
MT
443static __init void map_high(char *id, unsigned long base, int pshift,
444 int bshift, int max_pnode, enum map_type map_type)
83f5d894
JS
445{
446 unsigned long bytes, paddr;
447
fcfbb2b5
MT
448 paddr = base << pshift;
449 bytes = (1UL << bshift) * (max_pnode + 1);
83f5d894 450 printk(KERN_INFO "UV: Map %s_HI 0x%lx - 0x%lx\n", id, paddr,
0b1da1c8 451 paddr + bytes);
83f5d894
JS
452 if (map_type == map_uc)
453 init_extra_mapping_uc(paddr, bytes);
454 else
455 init_extra_mapping_wb(paddr, bytes);
456
457}
458static __init void map_gru_high(int max_pnode)
459{
460 union uvh_rh_gam_gru_overlay_config_mmr_u gru;
461 int shift = UVH_RH_GAM_GRU_OVERLAY_CONFIG_MMR_BASE_SHFT;
462
463 gru.v = uv_read_local_mmr(UVH_RH_GAM_GRU_OVERLAY_CONFIG_MMR);
fd12a0d6 464 if (gru.s.enable) {
fcfbb2b5 465 map_high("GRU", gru.s.base, shift, shift, max_pnode, map_wb);
fd12a0d6
JS
466 gru_start_paddr = ((u64)gru.s.base << shift);
467 gru_end_paddr = gru_start_paddr + (1UL << shift) * (max_pnode + 1);
468
469 }
83f5d894
JS
470}
471
daf7b9c9
JS
472static __init void map_mmr_high(int max_pnode)
473{
474 union uvh_rh_gam_mmr_overlay_config_mmr_u mmr;
475 int shift = UVH_RH_GAM_MMR_OVERLAY_CONFIG_MMR_BASE_SHFT;
476
477 mmr.v = uv_read_local_mmr(UVH_RH_GAM_MMR_OVERLAY_CONFIG_MMR);
478 if (mmr.s.enable)
fcfbb2b5 479 map_high("MMR", mmr.s.base, shift, shift, max_pnode, map_uc);
daf7b9c9
JS
480}
481
83f5d894
JS
482static __init void map_mmioh_high(int max_pnode)
483{
484 union uvh_rh_gam_mmioh_overlay_config_mmr_u mmioh;
485 int shift = UVH_RH_GAM_MMIOH_OVERLAY_CONFIG_MMR_BASE_SHFT;
486
487 mmioh.v = uv_read_local_mmr(UVH_RH_GAM_MMIOH_OVERLAY_CONFIG_MMR);
488 if (mmioh.s.enable)
fcfbb2b5
MT
489 map_high("MMIOH", mmioh.s.base, shift, mmioh.s.m_io,
490 max_pnode, map_uc);
83f5d894
JS
491}
492
918bc960
JS
493static __init void map_low_mmrs(void)
494{
495 init_extra_mapping_uc(UV_GLOBAL_MMR32_BASE, UV_GLOBAL_MMR32_SIZE);
496 init_extra_mapping_uc(UV_LOCAL_MMR_BASE, UV_LOCAL_MMR_SIZE);
497}
498
7019cc2d
RA
499static __init void uv_rtc_init(void)
500{
922402f1
RA
501 long status;
502 u64 ticks_per_sec;
7019cc2d 503
922402f1
RA
504 status = uv_bios_freq_base(BIOS_FREQ_BASE_REALTIME_CLOCK,
505 &ticks_per_sec);
506 if (status != BIOS_STATUS_SUCCESS || ticks_per_sec < 100000) {
7019cc2d
RA
507 printk(KERN_WARNING
508 "unable to determine platform RTC clock frequency, "
509 "guessing.\n");
510 /* BIOS gives wrong value for clock freq. so guess */
511 sn_rtc_cycles_per_second = 1000000000000UL / 30000UL;
512 } else
513 sn_rtc_cycles_per_second = ticks_per_sec;
514}
515
7f1baa06
MT
516/*
517 * percpu heartbeat timer
518 */
519static void uv_heartbeat(unsigned long ignored)
520{
521 struct timer_list *timer = &uv_hub_info->scir.timer;
522 unsigned char bits = uv_hub_info->scir.state;
523
524 /* flip heartbeat bit */
525 bits ^= SCIR_CPU_HEARTBEAT;
526
69a72a0e
MT
527 /* is this cpu idle? */
528 if (idle_cpu(raw_smp_processor_id()))
7f1baa06
MT
529 bits &= ~SCIR_CPU_ACTIVITY;
530 else
531 bits |= SCIR_CPU_ACTIVITY;
532
533 /* update system controller interface reg */
534 uv_set_scir_bits(bits);
535
536 /* enable next timer period */
5c333864 537 mod_timer_pinned(timer, jiffies + SCIR_CPU_HB_INTERVAL);
7f1baa06
MT
538}
539
540static void __cpuinit uv_heartbeat_enable(int cpu)
541{
99659a92 542 while (!uv_cpu_hub_info(cpu)->scir.enabled) {
7f1baa06
MT
543 struct timer_list *timer = &uv_cpu_hub_info(cpu)->scir.timer;
544
545 uv_set_cpu_scir_bits(cpu, SCIR_CPU_HEARTBEAT|SCIR_CPU_ACTIVITY);
546 setup_timer(timer, uv_heartbeat, cpu);
547 timer->expires = jiffies + SCIR_CPU_HB_INTERVAL;
548 add_timer_on(timer, cpu);
549 uv_cpu_hub_info(cpu)->scir.enabled = 1;
7f1baa06 550
99659a92
RK
551 /* also ensure that boot cpu is enabled */
552 cpu = 0;
553 }
7f1baa06
MT
554}
555
77be80e4 556#ifdef CONFIG_HOTPLUG_CPU
7f1baa06
MT
557static void __cpuinit uv_heartbeat_disable(int cpu)
558{
559 if (uv_cpu_hub_info(cpu)->scir.enabled) {
560 uv_cpu_hub_info(cpu)->scir.enabled = 0;
561 del_timer(&uv_cpu_hub_info(cpu)->scir.timer);
562 }
563 uv_set_cpu_scir_bits(cpu, 0xff);
564}
565
7f1baa06
MT
566/*
567 * cpu hotplug notifier
568 */
569static __cpuinit int uv_scir_cpu_notify(struct notifier_block *self,
570 unsigned long action, void *hcpu)
571{
572 long cpu = (long)hcpu;
573
574 switch (action) {
575 case CPU_ONLINE:
576 uv_heartbeat_enable(cpu);
577 break;
578 case CPU_DOWN_PREPARE:
579 uv_heartbeat_disable(cpu);
580 break;
581 default:
582 break;
583 }
584 return NOTIFY_OK;
585}
586
587static __init void uv_scir_register_cpu_notifier(void)
588{
589 hotcpu_notifier(uv_scir_cpu_notify, 0);
590}
591
592#else /* !CONFIG_HOTPLUG_CPU */
593
594static __init void uv_scir_register_cpu_notifier(void)
595{
596}
597
598static __init int uv_init_heartbeat(void)
599{
600 int cpu;
601
602 if (is_uv_system())
603 for_each_online_cpu(cpu)
604 uv_heartbeat_enable(cpu);
605 return 0;
606}
607
608late_initcall(uv_init_heartbeat);
609
610#endif /* !CONFIG_HOTPLUG_CPU */
611
841582ea
MT
612/* Direct Legacy VGA I/O traffic to designated IOH */
613int uv_set_vga_state(struct pci_dev *pdev, bool decode,
614 unsigned int command_bits, bool change_bridge)
615{
616 int domain, bus, rc;
617
618 PR_DEVEL("devfn %x decode %d cmd %x chg_brdg %d\n",
619 pdev->devfn, decode, command_bits, change_bridge);
620
621 if (!change_bridge)
622 return 0;
623
624 if ((command_bits & PCI_COMMAND_IO) == 0)
625 return 0;
626
627 domain = pci_domain_nr(pdev->bus);
628 bus = pdev->bus->number;
629
630 rc = uv_bios_set_legacy_vga_target(decode, domain, bus);
631 PR_DEVEL("vga decode %d %x:%x, rc: %d\n", decode, domain, bus, rc);
632
633 return rc;
634}
635
8da077d6
JS
636/*
637 * Called on each cpu to initialize the per_cpu UV data area.
0b1da1c8 638 * FIXME: hotplug not supported yet
8da077d6
JS
639 */
640void __cpuinit uv_cpu_init(void)
641{
642 /* CPU 0 initilization will be done via uv_system_init. */
643 if (!uv_blade_info)
644 return;
645
646 uv_blade_info[uv_numa_blade_id()].nr_online_cpus++;
647
648 if (get_uv_system_type() == UV_NON_UNIQUE_APIC)
649 set_x2apic_extra_bits(uv_hub_info->pnode);
650}
651
78c06176
RA
652/*
653 * When NMI is received, print a stack trace.
654 */
655int uv_handle_nmi(struct notifier_block *self, unsigned long reason, void *data)
656{
1d44e828
JS
657 unsigned long real_uv_nmi;
658 int bid;
659
673a6092 660 if (reason != DIE_NMIUNKNOWN)
78c06176 661 return NOTIFY_OK;
5edd19af
CW
662
663 if (in_crash_kexec)
664 /* do nothing if entering the crash kernel */
665 return NOTIFY_OK;
1d44e828 666
78c06176 667 /*
1d44e828
JS
668 * Each blade has an MMR that indicates when an NMI has been sent
669 * to cpus on the blade. If an NMI is detected, atomically
670 * clear the MMR and update a per-blade NMI count used to
671 * cause each cpu on the blade to notice a new NMI.
672 */
673 bid = uv_numa_blade_id();
674 real_uv_nmi = (uv_read_local_mmr(UVH_NMI_MMR) & UV_NMI_PENDING_MASK);
675
676 if (unlikely(real_uv_nmi)) {
677 spin_lock(&uv_blade_info[bid].nmi_lock);
678 real_uv_nmi = (uv_read_local_mmr(UVH_NMI_MMR) & UV_NMI_PENDING_MASK);
679 if (real_uv_nmi) {
680 uv_blade_info[bid].nmi_count++;
681 uv_write_local_mmr(UVH_NMI_MMR_CLEAR, UV_NMI_PENDING_MASK);
682 }
683 spin_unlock(&uv_blade_info[bid].nmi_lock);
684 }
685
686 if (likely(__get_cpu_var(cpu_last_nmi_count) == uv_blade_info[bid].nmi_count))
687 return NOTIFY_DONE;
688
689 __get_cpu_var(cpu_last_nmi_count) = uv_blade_info[bid].nmi_count;
690
691 /*
692 * Use a lock so only one cpu prints at a time.
693 * This prevents intermixed output.
78c06176
RA
694 */
695 spin_lock(&uv_nmi_lock);
1d44e828 696 pr_info("UV NMI stack dump cpu %u:\n", smp_processor_id());
78c06176
RA
697 dump_stack();
698 spin_unlock(&uv_nmi_lock);
699
700 return NOTIFY_STOP;
701}
702
703static struct notifier_block uv_dump_stack_nmi_nb = {
1d44e828
JS
704 .notifier_call = uv_handle_nmi,
705 .priority = NMI_LOCAL_LOW_PRIOR - 1,
78c06176
RA
706};
707
708void uv_register_nmi_notifier(void)
709{
710 if (register_die_notifier(&uv_dump_stack_nmi_nb))
711 printk(KERN_WARNING "UV NMI handler failed to register\n");
712}
713
714void uv_nmi_init(void)
715{
716 unsigned int value;
717
718 /*
719 * Unmask NMI on all cpus
720 */
721 value = apic_read(APIC_LVT1) | APIC_DM_NMI;
722 value &= ~APIC_LVT_MASKED;
723 apic_write(APIC_LVT1, value);
724}
c4bd1fda
MS
725
726void __init uv_system_init(void)
ac23d4ee 727{
62b0cfc2 728 union uvh_rh_gam_config_mmr_u m_n_config;
d8850ba4 729 union uvh_rh_gam_mmioh_overlay_config_mmr_u mmioh;
9f5314fb
JS
730 union uvh_node_id_u node_id;
731 unsigned long gnode_upper, lowmem_redir_base, lowmem_redir_size;
d8850ba4 732 int bytes, nid, cpu, lcpu, pnode, blade, i, j, m_val, n_val, n_io;
c4ed3f04 733 int gnode_extra, max_pnode = 0;
6a891a24 734 unsigned long mmr_base, present, paddr;
d8850ba4 735 unsigned short pnode_mask, pnode_io_mask;
ac23d4ee 736
918bc960
JS
737 map_low_mmrs();
738
62b0cfc2 739 m_n_config.v = uv_read_local_mmr(UVH_RH_GAM_CONFIG_MMR );
9f5314fb
JS
740 m_val = m_n_config.s.m_skt;
741 n_val = m_n_config.s.n_skt;
d8850ba4
JS
742 mmioh.v = uv_read_local_mmr(UVH_RH_GAM_MMIOH_OVERLAY_CONFIG_MMR);
743 n_io = mmioh.s.n_io;
ac23d4ee
JS
744 mmr_base =
745 uv_read_local_mmr(UVH_RH_GAM_MMR_OVERLAY_CONFIG_MMR) &
746 ~UV_MMR_ENABLE;
c4ed3f04 747 pnode_mask = (1 << n_val) - 1;
d8850ba4
JS
748 pnode_io_mask = (1 << n_io) - 1;
749
c4ed3f04
JS
750 node_id.v = uv_read_local_mmr(UVH_NODE_ID);
751 gnode_extra = (node_id.s.node_id & ~((1 << n_val) - 1)) >> 1;
752 gnode_upper = ((unsigned long)gnode_extra << m_val);
d8850ba4
JS
753 printk(KERN_INFO "UV: N %d, M %d, N_IO: %d, gnode_upper 0x%lx, gnode_extra 0x%x, pnode_mask 0x%x, pnode_io_mask 0x%x\n",
754 n_val, m_val, n_io, gnode_upper, gnode_extra, pnode_mask, pnode_io_mask);
c4ed3f04 755
ac23d4ee
JS
756 printk(KERN_DEBUG "UV: global MMR base 0x%lx\n", mmr_base);
757
9f5314fb
JS
758 for(i = 0; i < UVH_NODE_PRESENT_TABLE_DEPTH; i++)
759 uv_possible_blades +=
760 hweight64(uv_read_local_mmr( UVH_NODE_PRESENT_TABLE + i * 8));
ac23d4ee
JS
761 printk(KERN_DEBUG "UV: Found %d blades\n", uv_num_possible_blades());
762
763 bytes = sizeof(struct uv_blade_info) * uv_num_possible_blades();
1d44e828 764 uv_blade_info = kzalloc(bytes, GFP_KERNEL);
9a8709d4 765 BUG_ON(!uv_blade_info);
1d44e828 766
6c7184b7
JS
767 for (blade = 0; blade < uv_num_possible_blades(); blade++)
768 uv_blade_info[blade].memory_nid = -1;
ac23d4ee 769
9f5314fb
JS
770 get_lowmem_redirect(&lowmem_redir_base, &lowmem_redir_size);
771
ac23d4ee 772 bytes = sizeof(uv_node_to_blade[0]) * num_possible_nodes();
ef020ab0 773 uv_node_to_blade = kmalloc(bytes, GFP_KERNEL);
9a8709d4 774 BUG_ON(!uv_node_to_blade);
ac23d4ee
JS
775 memset(uv_node_to_blade, 255, bytes);
776
777 bytes = sizeof(uv_cpu_to_blade[0]) * num_possible_cpus();
ef020ab0 778 uv_cpu_to_blade = kmalloc(bytes, GFP_KERNEL);
9a8709d4 779 BUG_ON(!uv_cpu_to_blade);
ac23d4ee
JS
780 memset(uv_cpu_to_blade, 255, bytes);
781
9f5314fb
JS
782 blade = 0;
783 for (i = 0; i < UVH_NODE_PRESENT_TABLE_DEPTH; i++) {
784 present = uv_read_local_mmr(UVH_NODE_PRESENT_TABLE + i * 8);
785 for (j = 0; j < 64; j++) {
786 if (!test_bit(j, &present))
787 continue;
d8850ba4 788 pnode = (i * 64 + j) & pnode_mask;
36ac4b98 789 uv_blade_info[blade].pnode = pnode;
9f5314fb 790 uv_blade_info[blade].nr_possible_cpus = 0;
ac23d4ee 791 uv_blade_info[blade].nr_online_cpus = 0;
1d44e828 792 spin_lock_init(&uv_blade_info[blade].nmi_lock);
36ac4b98 793 max_pnode = max(pnode, max_pnode);
9f5314fb 794 blade++;
ac23d4ee 795 }
9f5314fb 796 }
ac23d4ee 797
7f594232 798 uv_bios_init();
b76365a1
RA
799 uv_bios_get_sn_info(0, &uv_type, &sn_partition_id, &sn_coherency_id,
800 &sn_region_size, &system_serial_number);
7019cc2d
RA
801 uv_rtc_init();
802
9f5314fb 803 for_each_present_cpu(cpu) {
39d30770
MT
804 int apicid = per_cpu(x86_cpu_to_apicid, cpu);
805
9f5314fb 806 nid = cpu_to_node(cpu);
c8f730b1
RA
807 /*
808 * apic_pnode_shift must be set before calling uv_apicid_to_pnode();
809 */
d8850ba4 810 uv_cpu_hub_info(cpu)->pnode_mask = pnode_mask;
c8f730b1 811 uv_cpu_hub_info(cpu)->apic_pnode_shift = uvh_apicid.s.pnode_shift;
39d30770 812 pnode = uv_apicid_to_pnode(apicid);
9f5314fb
JS
813 blade = boot_pnode_to_blade(pnode);
814 lcpu = uv_blade_info[blade].nr_possible_cpus;
815 uv_blade_info[blade].nr_possible_cpus++;
816
6c7184b7
JS
817 /* Any node on the blade, else will contain -1. */
818 uv_blade_info[blade].memory_nid = nid;
819
9f5314fb 820 uv_cpu_hub_info(cpu)->lowmem_remap_base = lowmem_redir_base;
189f67c4 821 uv_cpu_hub_info(cpu)->lowmem_remap_top = lowmem_redir_size;
9f5314fb 822 uv_cpu_hub_info(cpu)->m_val = m_val;
036ed8ba 823 uv_cpu_hub_info(cpu)->n_val = n_val;
ac23d4ee
JS
824 uv_cpu_hub_info(cpu)->numa_blade_id = blade;
825 uv_cpu_hub_info(cpu)->blade_processor_id = lcpu;
9f5314fb 826 uv_cpu_hub_info(cpu)->pnode = pnode;
036ed8ba 827 uv_cpu_hub_info(cpu)->gpa_mask = (1UL << (m_val + n_val)) - 1;
9f5314fb 828 uv_cpu_hub_info(cpu)->gnode_upper = gnode_upper;
c4ed3f04 829 uv_cpu_hub_info(cpu)->gnode_extra = gnode_extra;
ac23d4ee 830 uv_cpu_hub_info(cpu)->global_mmr_base = mmr_base;
b0f20989 831 uv_cpu_hub_info(cpu)->coherency_domain_number = sn_coherency_id;
39d30770 832 uv_cpu_hub_info(cpu)->scir.offset = uv_scir_offset(apicid);
ac23d4ee
JS
833 uv_node_to_blade[nid] = blade;
834 uv_cpu_to_blade[cpu] = blade;
ac23d4ee 835 }
83f5d894 836
6a891a24
JS
837 /* Add blade/pnode info for nodes without cpus */
838 for_each_online_node(nid) {
839 if (uv_node_to_blade[nid] >= 0)
840 continue;
841 paddr = node_start_pfn(nid) << PAGE_SHIFT;
fc61e663 842 paddr = uv_soc_phys_ram_to_gpa(paddr);
6a891a24
JS
843 pnode = (paddr >> m_val) & pnode_mask;
844 blade = boot_pnode_to_blade(pnode);
845 uv_node_to_blade[nid] = blade;
846 }
847
83f5d894 848 map_gru_high(max_pnode);
daf7b9c9 849 map_mmr_high(max_pnode);
d8850ba4 850 map_mmioh_high(max_pnode & pnode_io_mask);
ac23d4ee 851
8da077d6 852 uv_cpu_init();
7f1baa06 853 uv_scir_register_cpu_notifier();
78c06176 854 uv_register_nmi_notifier();
a3d732f9 855 proc_mkdir("sgi_uv", NULL);
841582ea
MT
856
857 /* register Legacy VGA I/O redirection handler */
858 pci_register_set_vga_state(uv_set_vga_state);
818987e9
CW
859
860 /*
861 * For a kdump kernel the reset must be BOOT_ACPI, not BOOT_EFI, as
862 * EFI is not enabled in the kdump kernel.
863 */
864 if (is_kdump_kernel())
865 reboot_type = BOOT_ACPI;
ac23d4ee 866}
107e0e0c
SS
867
868apic_driver(apic_x2apic_uv_x);
This page took 0.243163 seconds and 5 git commands to generate.