]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - arch/x86/kernel/apic/x2apic_uv_x.c
Merge remote-tracking branch 'asoc/topic/rcar' into asoc-next
[mirror_ubuntu-artful-kernel.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 *
5f40f7d9 8 * Copyright (C) 2007-2014 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>
186f4360 15#include <linux/export.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>
1b3a5d02 28#include <linux/reboot.h>
0b1da1c8 29
ac23d4ee
JS
30#include <asm/uv/uv_mmrs.h>
31#include <asm/uv/uv_hub.h>
0b1da1c8
IM
32#include <asm/current.h>
33#include <asm/pgtable.h>
7019cc2d 34#include <asm/uv/bios.h>
0b1da1c8
IM
35#include <asm/uv/uv.h>
36#include <asm/apic.h>
37#include <asm/ipi.h>
38#include <asm/smp.h>
fd12a0d6 39#include <asm/x86_init.h>
1d44e828
JS
40#include <asm/nmi.h>
41
510b3725
YL
42DEFINE_PER_CPU(int, x2apic_extra_bits);
43
7243e106 44static enum uv_system_type uv_system_type;
74862b03 45static bool uv_hubless_system;
7243e106
IM
46static u64 gru_start_paddr, gru_end_paddr;
47static u64 gru_dist_base, gru_first_node_paddr = -1LL, gru_last_node_paddr;
48static u64 gru_dist_lmask, gru_dist_umask;
49static union uvh_apicid uvh_apicid;
841582ea 50
7243e106 51/* Information derived from CPUID: */
405422d8
MT
52static struct {
53 unsigned int apicid_shift;
54 unsigned int apicid_mask;
55 unsigned int socketid_shift; /* aka pnode_shift for UV1/2/3 */
56 unsigned int pnode_mask;
57 unsigned int gpa_shift;
81a71176 58 unsigned int gnode_shift;
405422d8
MT
59} uv_cpuid;
60
7a1110e8
JS
61int uv_min_hub_revision_id;
62EXPORT_SYMBOL_GPL(uv_min_hub_revision_id);
7243e106 63
8191c9f6
DS
64unsigned int uv_apicid_hibits;
65EXPORT_SYMBOL_GPL(uv_apicid_hibits);
fd12a0d6 66
1a8880a1 67static struct apic apic_x2apic_uv_x;
3edcf2ff 68static struct uv_hub_info_s uv_hub_info_node0;
1a8880a1 69
7243e106 70/* Set this to use hardware error handler instead of kernel panic: */
7563421b 71static int disable_uv_undefined_panic = 1;
7243e106 72
7563421b
MT
73unsigned long uv_undefined(char *str)
74{
75 if (likely(!disable_uv_undefined_panic))
76 panic("UV: error: undefined MMR: %s\n", str);
77 else
78 pr_crit("UV: error: undefined MMR: %s\n", str);
7243e106
IM
79
80 /* Cause a machine fault: */
81 return ~0ul;
7563421b
MT
82}
83EXPORT_SYMBOL(uv_undefined);
84
e6810413
JS
85static unsigned long __init uv_early_read_mmr(unsigned long addr)
86{
87 unsigned long val, *mmr;
88
89 mmr = early_ioremap(UV_LOCAL_MMR_BASE | addr, sizeof(*mmr));
90 val = *mmr;
91 early_iounmap(mmr, sizeof(*mmr));
7243e106 92
e6810413
JS
93 return val;
94}
95
eb41c8be 96static inline bool is_GRU_range(u64 start, u64 end)
fd12a0d6 97{
879d5ad0 98 if (gru_dist_base) {
7243e106
IM
99 u64 su = start & gru_dist_umask; /* Upper (incl pnode) bits */
100 u64 sl = start & gru_dist_lmask; /* Base offset bits */
879d5ad0
DS
101 u64 eu = end & gru_dist_umask;
102 u64 el = end & gru_dist_lmask;
103
7243e106 104 /* Must reside completely within a single GRU range: */
879d5ad0
DS
105 return (sl == gru_dist_base && el == gru_dist_base &&
106 su >= gru_first_node_paddr &&
107 su <= gru_last_node_paddr &&
108 eu == su);
109 } else {
110 return start >= gru_start_paddr && end <= gru_end_paddr;
111 }
fd12a0d6
JS
112}
113
eb41c8be 114static bool uv_is_untracked_pat_range(u64 start, u64 end)
fd12a0d6
JS
115{
116 return is_ISA_range(start, end) || is_GRU_range(start, end);
117}
1b9b89e7 118
d8850ba4 119static int __init early_get_pnodeid(void)
27229ca6
JS
120{
121 union uvh_node_id_u node_id;
d8850ba4
JS
122 union uvh_rh_gam_config_mmr_u m_n_config;
123 int pnode;
7a1110e8
JS
124
125 /* Currently, all blades have same revision number */
e6810413 126 node_id.v = uv_early_read_mmr(UVH_NODE_ID);
d8850ba4 127 m_n_config.v = uv_early_read_mmr(UVH_RH_GAM_CONFIG_MMR);
7a1110e8
JS
128 uv_min_hub_revision_id = node_id.s.revision;
129
b15cc4a1
MT
130 switch (node_id.s.part_number) {
131 case UV2_HUB_PART_NUMBER:
132 case UV2_HUB_PART_NUMBER_X:
b495e039 133 uv_min_hub_revision_id += UV2_HUB_REVISION_BASE - 1;
b15cc4a1
MT
134 break;
135 case UV3_HUB_PART_NUMBER:
136 case UV3_HUB_PART_NUMBER_X:
dd3c9c4b 137 uv_min_hub_revision_id += UV3_HUB_REVISION_BASE;
b15cc4a1 138 break;
a0ec83f3
MT
139 case UV4_HUB_PART_NUMBER:
140 uv_min_hub_revision_id += UV4_HUB_REVISION_BASE - 1;
81a71176 141 uv_cpuid.gnode_shift = 2; /* min partition is 4 sockets */
a0ec83f3 142 break;
b15cc4a1 143 }
2a919596
JS
144
145 uv_hub_info->hub_revision = uv_min_hub_revision_id;
405422d8
MT
146 uv_cpuid.pnode_mask = (1 << m_n_config.s.n_skt) - 1;
147 pnode = (node_id.s.node_id >> 1) & uv_cpuid.pnode_mask;
7243e106 148 uv_cpuid.gpa_shift = 46; /* Default unless changed */
405422d8
MT
149
150 pr_info("UV: rev:%d part#:%x nodeid:%04x n_skt:%d pnmsk:%x pn:%x\n",
151 node_id.s.revision, node_id.s.part_number, node_id.s.node_id,
152 m_n_config.s.n_skt, uv_cpuid.pnode_mask, pnode);
d8850ba4 153 return pnode;
27229ca6
JS
154}
155
7243e106
IM
156/* [Copied from arch/x86/kernel/cpu/topology.c:detect_extended_topology()] */
157
158#define SMT_LEVEL 0 /* Leaf 0xb SMT level */
159#define INVALID_TYPE 0 /* Leaf 0xb sub-leaf types */
160#define SMT_TYPE 1
161#define CORE_TYPE 2
405422d8
MT
162#define LEAFB_SUBTYPE(ecx) (((ecx) >> 8) & 0xff)
163#define BITS_SHIFT_NEXT_LEVEL(eax) ((eax) & 0x1f)
164
165static void set_x2apic_bits(void)
166{
167 unsigned int eax, ebx, ecx, edx, sub_index;
168 unsigned int sid_shift;
169
170 cpuid(0, &eax, &ebx, &ecx, &edx);
171 if (eax < 0xb) {
172 pr_info("UV: CPU does not have CPUID.11\n");
173 return;
174 }
7243e106 175
405422d8
MT
176 cpuid_count(0xb, SMT_LEVEL, &eax, &ebx, &ecx, &edx);
177 if (ebx == 0 || (LEAFB_SUBTYPE(ecx) != SMT_TYPE)) {
178 pr_info("UV: CPUID.11 not implemented\n");
179 return;
180 }
7243e106 181
405422d8
MT
182 sid_shift = BITS_SHIFT_NEXT_LEVEL(eax);
183 sub_index = 1;
184 do {
185 cpuid_count(0xb, sub_index, &eax, &ebx, &ecx, &edx);
186 if (LEAFB_SUBTYPE(ecx) == CORE_TYPE) {
187 sid_shift = BITS_SHIFT_NEXT_LEVEL(eax);
188 break;
189 }
190 sub_index++;
191 } while (LEAFB_SUBTYPE(ecx) != INVALID_TYPE);
7243e106
IM
192
193 uv_cpuid.apicid_shift = 0;
194 uv_cpuid.apicid_mask = (~(-1 << sid_shift));
405422d8
MT
195 uv_cpuid.socketid_shift = sid_shift;
196}
197
198static void __init early_get_apic_socketid_shift(void)
c8f730b1 199{
405422d8
MT
200 if (is_uv2_hub() || is_uv3_hub())
201 uvh_apicid.v = uv_early_read_mmr(UVH_APICID);
202
203 set_x2apic_bits();
204
7243e106
IM
205 pr_info("UV: apicid_shift:%d apicid_mask:0x%x\n", uv_cpuid.apicid_shift, uv_cpuid.apicid_mask);
206 pr_info("UV: socketid_shift:%d pnode_mask:0x%x\n", uv_cpuid.socketid_shift, uv_cpuid.pnode_mask);
c8f730b1
RA
207}
208
8191c9f6
DS
209/*
210 * Add an extra bit as dictated by bios to the destination apicid of
211 * interrupts potentially passing through the UV HUB. This prevents
212 * a deadlock between interrupts and IO port operations.
213 */
214static void __init uv_set_apicid_hibit(void)
215{
2a919596 216 union uv1h_lb_target_physical_apic_id_mask_u apicid_mask;
8191c9f6 217
2a919596 218 if (is_uv1_hub()) {
7243e106
IM
219 apicid_mask.v = uv_early_read_mmr(UV1H_LB_TARGET_PHYSICAL_APIC_ID_MASK);
220 uv_apicid_hibits = apicid_mask.s1.bit_enables & UV_APICID_HIBIT_MASK;
2a919596 221 }
8191c9f6
DS
222}
223
52459ab9 224static int __init uv_acpi_madt_oem_check(char *oem_id, char *oem_table_id)
1b9b89e7 225{
379b97e2
MT
226 int pnodeid;
227 int uv_apic;
1d2c867c 228
74862b03 229 if (strncmp(oem_id, "SGI", 3) != 0) {
230 if (strncmp(oem_id, "NSGI", 4) == 0) {
231 uv_hubless_system = true;
232 pr_info("UV: OEM IDs %s/%s, HUBLESS\n",
233 oem_id, oem_table_id);
234 }
7a4e0170 235 return 0;
74862b03 236 }
7a4e0170 237
5a52e8f8
MT
238 if (numa_off) {
239 pr_err("UV: NUMA is off, disabling UV support\n");
240 return 0;
241 }
242
7243e106 243 /* Set up early hub type field in uv_hub_info for Node 0 */
3edcf2ff
MT
244 uv_cpu_info->p_uv_hub_info = &uv_hub_info_node0;
245
379b97e2
MT
246 /*
247 * Determine UV arch type.
7243e106 248 * SGI: UV100/1000
379b97e2
MT
249 * SGI2: UV2000/3000
250 * SGI3: UV300 (truncated to 4 chars because of different varieties)
a0ec83f3 251 * SGI4: UV400 (truncated to 4 chars because of different varieties)
379b97e2
MT
252 */
253 uv_hub_info->hub_revision =
a0ec83f3 254 !strncmp(oem_id, "SGI4", 4) ? UV4_HUB_REVISION_BASE :
379b97e2
MT
255 !strncmp(oem_id, "SGI3", 4) ? UV3_HUB_REVISION_BASE :
256 !strcmp(oem_id, "SGI2") ? UV2_HUB_REVISION_BASE :
257 !strcmp(oem_id, "SGI") ? UV1_HUB_REVISION_BASE : 0;
258
259 if (uv_hub_info->hub_revision == 0)
260 goto badbios;
261
262 pnodeid = early_get_pnodeid();
405422d8 263 early_get_apic_socketid_shift();
7243e106
IM
264
265 x86_platform.is_untracked_pat_range = uv_is_untracked_pat_range;
379b97e2
MT
266 x86_platform.nmi_init = uv_nmi_init;
267
7243e106
IM
268 if (!strcmp(oem_table_id, "UVX")) {
269 /* This is the most common hardware variant: */
379b97e2
MT
270 uv_system_type = UV_X2APIC;
271 uv_apic = 0;
272
7243e106
IM
273 } else if (!strcmp(oem_table_id, "UVH")) {
274 /* Only UV1 systems: */
379b97e2 275 uv_system_type = UV_NON_UNIQUE_APIC;
7243e106 276 __this_cpu_write(x2apic_extra_bits, pnodeid << uvh_apicid.s.pnode_shift);
379b97e2
MT
277 uv_set_apicid_hibit();
278 uv_apic = 1;
279
7243e106
IM
280 } else if (!strcmp(oem_table_id, "UVL")) {
281 /* Only used for very small systems: */
282 uv_system_type = UV_LEGACY_APIC;
379b97e2
MT
283 uv_apic = 0;
284
285 } else {
286 goto badbios;
1b9b89e7 287 }
379b97e2 288
7243e106 289 pr_info("UV: OEM IDs %s/%s, System/HUB Types %d/%d, uv_apic %d\n", oem_id, oem_table_id, uv_system_type, uv_min_hub_revision_id, uv_apic);
379b97e2
MT
290
291 return uv_apic;
292
293badbios:
294 pr_err("UV: OEM_ID:%s OEM_TABLE_ID:%s\n", oem_id, oem_table_id);
295 pr_err("Current BIOS not supported, update kernel and/or BIOS\n");
296 BUG();
1b9b89e7
YL
297}
298
299enum uv_system_type get_uv_system_type(void)
300{
301 return uv_system_type;
302}
303
304int is_uv_system(void)
305{
306 return uv_system_type != UV_NONE;
307}
8067794b 308EXPORT_SYMBOL_GPL(is_uv_system);
1b9b89e7 309
74862b03 310int is_uv_hubless(void)
311{
312 return uv_hubless_system;
313}
314EXPORT_SYMBOL_GPL(is_uv_hubless);
315
3edcf2ff
MT
316void **__uv_hub_info_list;
317EXPORT_SYMBOL_GPL(__uv_hub_info_list);
ac23d4ee 318
0045ddd2
MT
319DEFINE_PER_CPU(struct uv_cpu_info_s, __uv_cpu_info);
320EXPORT_PER_CPU_SYMBOL_GPL(__uv_cpu_info);
321
ac23d4ee
JS
322short uv_possible_blades;
323EXPORT_SYMBOL_GPL(uv_possible_blades);
324
7019cc2d
RA
325unsigned long sn_rtc_cycles_per_second;
326EXPORT_SYMBOL(sn_rtc_cycles_per_second);
327
7243e106
IM
328/* The following values are used for the per node hub info struct */
329static __initdata unsigned short *_node_to_pnode;
330static __initdata unsigned short _min_socket, _max_socket;
331static __initdata unsigned short _min_pnode, _max_pnode, _gr_table_len;
332static __initdata struct uv_gam_range_entry *uv_gre_table;
333static __initdata struct uv_gam_parameters *uv_gp_table;
334static __initdata unsigned short *_socket_to_node;
335static __initdata unsigned short *_socket_to_pnode;
336static __initdata unsigned short *_pnode_to_socket;
337
338static __initdata struct uv_gam_range_s *_gr_table;
339
1de329c1 340#define SOCK_EMPTY ((unsigned short)~0)
906f3b20 341
3edcf2ff
MT
342extern int uv_hub_info_version(void)
343{
344 return UV_HUB_INFO_VERSION;
345}
346EXPORT_SYMBOL(uv_hub_info_version);
347
7243e106 348/* Build GAM range lookup table: */
c85375cd
MT
349static __init void build_uv_gr_table(void)
350{
351 struct uv_gam_range_entry *gre = uv_gre_table;
352 struct uv_gam_range_s *grt;
353 unsigned long last_limit = 0, ram_limit = 0;
054f621f 354 int bytes, i, sid, lsid = -1, indx = 0, lindx = -1;
c85375cd
MT
355
356 if (!gre)
357 return;
358
359 bytes = _gr_table_len * sizeof(struct uv_gam_range_s);
360 grt = kzalloc(bytes, GFP_KERNEL);
361 BUG_ON(!grt);
362 _gr_table = grt;
363
364 for (; gre->type != UV_GAM_RANGE_TYPE_UNUSED; gre++) {
365 if (gre->type == UV_GAM_RANGE_TYPE_HOLE) {
7243e106
IM
366 if (!ram_limit) {
367 /* Mark hole between RAM/non-RAM: */
c85375cd
MT
368 ram_limit = last_limit;
369 last_limit = gre->limit;
370 lsid++;
371 continue;
372 }
373 last_limit = gre->limit;
7243e106 374 pr_info("UV: extra hole in GAM RE table @%d\n", (int)(gre - uv_gre_table));
c85375cd
MT
375 continue;
376 }
377 if (_max_socket < gre->sockid) {
7243e106 378 pr_err("UV: GAM table sockid(%d) too large(>%d) @%d\n", gre->sockid, _max_socket, (int)(gre - uv_gre_table));
c85375cd
MT
379 continue;
380 }
381 sid = gre->sockid - _min_socket;
7243e106
IM
382 if (lsid < sid) {
383 /* New range: */
054f621f
MT
384 grt = &_gr_table[indx];
385 grt->base = lindx;
c85375cd
MT
386 grt->nasid = gre->nasid;
387 grt->limit = last_limit = gre->limit;
388 lsid = sid;
054f621f 389 lindx = indx++;
c85375cd
MT
390 continue;
391 }
7243e106
IM
392 /* Update range: */
393 if (lsid == sid && !ram_limit) {
394 /* .. if contiguous: */
395 if (grt->limit == last_limit) {
c85375cd
MT
396 grt->limit = last_limit = gre->limit;
397 continue;
398 }
399 }
7243e106
IM
400 /* Non-contiguous RAM range: */
401 if (!ram_limit) {
c85375cd 402 grt++;
054f621f 403 grt->base = lindx;
c85375cd
MT
404 grt->nasid = gre->nasid;
405 grt->limit = last_limit = gre->limit;
406 continue;
407 }
7243e106
IM
408 /* Non-contiguous/non-RAM: */
409 grt++;
410 /* base is this entry */
411 grt->base = grt - _gr_table;
c85375cd
MT
412 grt->nasid = gre->nasid;
413 grt->limit = last_limit = gre->limit;
414 lsid++;
415 }
416
7243e106 417 /* Shorten table if possible */
c85375cd
MT
418 grt++;
419 i = grt - _gr_table;
420 if (i < _gr_table_len) {
421 void *ret;
422
423 bytes = i * sizeof(struct uv_gam_range_s);
424 ret = krealloc(_gr_table, bytes, GFP_KERNEL);
425 if (ret) {
426 _gr_table = ret;
427 _gr_table_len = i;
428 }
429 }
430
7243e106 431 /* Display resultant GAM range table: */
c85375cd 432 for (i = 0, grt = _gr_table; i < _gr_table_len; i++, grt++) {
7243e106 433 unsigned long start, end;
c85375cd 434 int gb = grt->base;
c85375cd 435
7243e106
IM
436 start = gb < 0 ? 0 : (unsigned long)_gr_table[gb].limit << UV_GAM_RANGE_SHFT;
437 end = (unsigned long)grt->limit << UV_GAM_RANGE_SHFT;
438
439 pr_info("UV: GAM Range %2d %04x 0x%013lx-0x%013lx (%d)\n", i, grt->nasid, start, end, gb);
c85375cd
MT
440 }
441}
442
148f9bb8 443static int uv_wakeup_secondary(int phys_apicid, unsigned long start_rip)
ac23d4ee
JS
444{
445 unsigned long val;
9f5314fb 446 int pnode;
ac23d4ee 447
9f5314fb 448 pnode = uv_apicid_to_pnode(phys_apicid);
8191c9f6 449 phys_apicid |= uv_apicid_hibits;
7243e106 450
ac23d4ee
JS
451 val = (1UL << UVH_IPI_INT_SEND_SHFT) |
452 (phys_apicid << UVH_IPI_INT_APIC_ID_SHFT) |
2b6163bf 453 ((start_rip << UVH_IPI_INT_VECTOR_SHFT) >> 12) |
34d05591 454 APIC_DM_INIT;
7243e106 455
9f5314fb 456 uv_write_global_mmr64(pnode, UVH_IPI_INT, val);
34d05591
JS
457
458 val = (1UL << UVH_IPI_INT_SEND_SHFT) |
459 (phys_apicid << UVH_IPI_INT_APIC_ID_SHFT) |
2b6163bf 460 ((start_rip << UVH_IPI_INT_VECTOR_SHFT) >> 12) |
34d05591 461 APIC_DM_STARTUP;
7243e106 462
9f5314fb 463 uv_write_global_mmr64(pnode, UVH_IPI_INT, val);
2b6163bf 464
ac23d4ee
JS
465 return 0;
466}
467
468static void uv_send_IPI_one(int cpu, int vector)
469{
66666e50 470 unsigned long apicid;
9f5314fb 471 int pnode;
ac23d4ee 472
1e0b5d00 473 apicid = per_cpu(x86_cpu_to_apicid, cpu);
9f5314fb 474 pnode = uv_apicid_to_pnode(apicid);
66666e50 475 uv_hub_send_ipi(pnode, apicid, vector);
ac23d4ee
JS
476}
477
bcda016e 478static void uv_send_IPI_mask(const struct cpumask *mask, int vector)
ac23d4ee
JS
479{
480 unsigned int cpu;
481
bcda016e 482 for_each_cpu(cpu, mask)
e7986739
MT
483 uv_send_IPI_one(cpu, vector);
484}
485
bcda016e 486static void uv_send_IPI_mask_allbutself(const struct cpumask *mask, int vector)
e7986739 487{
e7986739 488 unsigned int this_cpu = smp_processor_id();
dac5f412 489 unsigned int cpu;
e7986739 490
dac5f412 491 for_each_cpu(cpu, mask) {
e7986739 492 if (cpu != this_cpu)
ac23d4ee 493 uv_send_IPI_one(cpu, vector);
dac5f412 494 }
ac23d4ee
JS
495}
496
497static void uv_send_IPI_allbutself(int vector)
498{
e7986739 499 unsigned int this_cpu = smp_processor_id();
dac5f412 500 unsigned int cpu;
ac23d4ee 501
dac5f412 502 for_each_online_cpu(cpu) {
e7986739
MT
503 if (cpu != this_cpu)
504 uv_send_IPI_one(cpu, vector);
dac5f412 505 }
ac23d4ee
JS
506}
507
508static void uv_send_IPI_all(int vector)
509{
bcda016e 510 uv_send_IPI_mask(cpu_online_mask, vector);
ac23d4ee
JS
511}
512
b7157acf
SP
513static int uv_apic_id_valid(int apicid)
514{
515 return 1;
516}
517
ac23d4ee
JS
518static int uv_apic_id_registered(void)
519{
520 return 1;
521}
522
277d1f58 523static void uv_init_apic_ldr(void)
5c520a67
SS
524{
525}
526
ff164324 527static int
debccb3e 528uv_cpu_mask_to_apicid_and(const struct cpumask *cpumask,
ff164324
AG
529 const struct cpumask *andmask,
530 unsigned int *apicid)
95d313cf 531{
ea3807ea 532 int unsigned cpu;
95d313cf
MT
533
534 /*
535 * We're using fixed IRQ delivery, can only return one phys APIC ID.
536 * May as well be the first.
537 */
debccb3e 538 for_each_cpu_and(cpu, cpumask, andmask) {
a775a38b
MT
539 if (cpumask_test_cpu(cpu, cpu_online_mask))
540 break;
debccb3e 541 }
ff164324 542
ea3807ea 543 if (likely(cpu < nr_cpu_ids)) {
a5a39156
AG
544 *apicid = per_cpu(x86_cpu_to_apicid, cpu) | uv_apicid_hibits;
545 return 0;
a5a39156 546 }
ea3807ea
AG
547
548 return -EINVAL;
95d313cf
MT
549}
550
ca6c8ed4 551static unsigned int x2apic_get_apic_id(unsigned long x)
0c81c746
SS
552{
553 unsigned int id;
554
555 WARN_ON(preemptible() && num_online_cpus() > 1);
0a3aee0d 556 id = x | __this_cpu_read(x2apic_extra_bits);
0c81c746
SS
557
558 return id;
559}
560
1b9b89e7 561static unsigned long set_apic_id(unsigned int id)
f910a9dc 562{
f148b41e
MY
563 /* CHECKME: Do we need to mask out the xapic extra bits? */
564 return id;
f910a9dc
YL
565}
566
567static unsigned int uv_read_apic_id(void)
568{
ca6c8ed4 569 return x2apic_get_apic_id(apic_read(APIC_ID));
f910a9dc
YL
570}
571
d4c9a9f3 572static int uv_phys_pkg_id(int initial_apicid, int index_msb)
ac23d4ee 573{
0c81c746 574 return uv_read_apic_id() >> index_msb;
ac23d4ee
JS
575}
576
ac23d4ee
JS
577static void uv_send_IPI_self(int vector)
578{
579 apic_write(APIC_SELF_IPI, vector);
580}
ac23d4ee 581
9ebd680b
SS
582static int uv_probe(void)
583{
584 return apic == &apic_x2apic_uv_x;
585}
586
404f6aac 587static struct apic apic_x2apic_uv_x __ro_after_init = {
c7967329
IM
588
589 .name = "UV large system",
9ebd680b 590 .probe = uv_probe,
c7967329 591 .acpi_madt_oem_check = uv_acpi_madt_oem_check,
b7157acf 592 .apic_id_valid = uv_apic_id_valid,
c7967329
IM
593 .apic_id_registered = uv_apic_id_registered,
594
f8987a10 595 .irq_delivery_mode = dest_Fixed,
7243e106 596 .irq_dest_mode = 0, /* Physical */
c7967329 597
bf721d3a 598 .target_cpus = online_target_cpus,
08125d3e 599 .disable_esr = 0,
bdb1a9b6 600 .dest_logical = APIC_DEST_LOGICAL,
c7967329 601 .check_apicid_used = NULL,
c7967329 602
9d8e1066 603 .vector_allocation_domain = default_vector_allocation_domain,
c7967329
IM
604 .init_apic_ldr = uv_init_apic_ldr,
605
606 .ioapic_phys_id_map = NULL,
607 .setup_apic_routing = NULL,
a21769a4 608 .cpu_present_to_apicid = default_cpu_present_to_apicid,
c7967329 609 .apicid_to_cpu_present = NULL,
a27a6210 610 .check_phys_apicid_present = default_check_phys_apicid_present,
d4c9a9f3 611 .phys_pkg_id = uv_phys_pkg_id,
c7967329 612
ca6c8ed4 613 .get_apic_id = x2apic_get_apic_id,
c7967329 614 .set_apic_id = set_apic_id,
c7967329 615
c7967329
IM
616 .cpu_mask_to_apicid_and = uv_cpu_mask_to_apicid_and,
617
8642ea95 618 .send_IPI = uv_send_IPI_one,
c7967329
IM
619 .send_IPI_mask = uv_send_IPI_mask,
620 .send_IPI_mask_allbutself = uv_send_IPI_mask_allbutself,
621 .send_IPI_allbutself = uv_send_IPI_allbutself,
622 .send_IPI_all = uv_send_IPI_all,
623 .send_IPI_self = uv_send_IPI_self,
624
1f5bcabf 625 .wakeup_secondary_cpu = uv_wakeup_secondary,
c7967329 626 .inquire_remote_apic = NULL,
c1eeb2de
YL
627
628 .read = native_apic_msr_read,
629 .write = native_apic_msr_write,
0ab711ae 630 .eoi_write = native_apic_msr_eoi_write,
c1eeb2de
YL
631 .icr_read = native_x2apic_icr_read,
632 .icr_write = native_x2apic_icr_write,
633 .wait_icr_idle = native_x2apic_wait_icr_idle,
634 .safe_wait_icr_idle = native_safe_x2apic_wait_icr_idle,
ac23d4ee
JS
635};
636
148f9bb8 637static void set_x2apic_extra_bits(int pnode)
ac23d4ee 638{
16ee8db6 639 __this_cpu_write(x2apic_extra_bits, pnode << uvh_apicid.s.pnode_shift);
ac23d4ee
JS
640}
641
c443c03d 642#define UVH_RH_GAM_ALIAS210_REDIRECT_CONFIG_LENGTH 3
9f5314fb
JS
643#define DEST_SHIFT UVH_RH_GAM_ALIAS210_REDIRECT_CONFIG_0_MMR_DEST_BASE_SHFT
644
9f5314fb
JS
645static __init void get_lowmem_redirect(unsigned long *base, unsigned long *size)
646{
62b0cfc2 647 union uvh_rh_gam_alias210_overlay_config_2_mmr_u alias;
9f5314fb 648 union uvh_rh_gam_alias210_redirect_config_2_mmr_u redirect;
c443c03d
MT
649 unsigned long m_redirect;
650 unsigned long m_overlay;
9f5314fb
JS
651 int i;
652
c443c03d
MT
653 for (i = 0; i < UVH_RH_GAM_ALIAS210_REDIRECT_CONFIG_LENGTH; i++) {
654 switch (i) {
655 case 0:
656 m_redirect = UVH_RH_GAM_ALIAS210_REDIRECT_CONFIG_0_MMR;
7243e106 657 m_overlay = UVH_RH_GAM_ALIAS210_OVERLAY_CONFIG_0_MMR;
c443c03d
MT
658 break;
659 case 1:
660 m_redirect = UVH_RH_GAM_ALIAS210_REDIRECT_CONFIG_1_MMR;
7243e106 661 m_overlay = UVH_RH_GAM_ALIAS210_OVERLAY_CONFIG_1_MMR;
c443c03d
MT
662 break;
663 case 2:
664 m_redirect = UVH_RH_GAM_ALIAS210_REDIRECT_CONFIG_2_MMR;
7243e106 665 m_overlay = UVH_RH_GAM_ALIAS210_OVERLAY_CONFIG_2_MMR;
c443c03d
MT
666 break;
667 }
668 alias.v = uv_read_local_mmr(m_overlay);
036ed8ba 669 if (alias.s.enable && alias.s.base == 0) {
9f5314fb 670 *size = (1UL << alias.s.m_alias);
c443c03d 671 redirect.v = uv_read_local_mmr(m_redirect);
7243e106 672 *base = (unsigned long)redirect.s.dest_base << DEST_SHIFT;
9f5314fb
JS
673 return;
674 }
675 }
036ed8ba 676 *base = *size = 0;
9f5314fb
JS
677}
678
83f5d894
JS
679enum map_type {map_wb, map_uc};
680
7243e106 681static __init void map_high(char *id, unsigned long base, int pshift, int bshift, int max_pnode, enum map_type map_type)
83f5d894
JS
682{
683 unsigned long bytes, paddr;
684
fcfbb2b5
MT
685 paddr = base << pshift;
686 bytes = (1UL << bshift) * (max_pnode + 1);
b15cc4a1
MT
687 if (!paddr) {
688 pr_info("UV: Map %s_HI base address NULL\n", id);
689 return;
690 }
879d5ad0 691 pr_debug("UV: Map %s_HI 0x%lx - 0x%lx\n", id, paddr, paddr + bytes);
83f5d894
JS
692 if (map_type == map_uc)
693 init_extra_mapping_uc(paddr, bytes);
694 else
695 init_extra_mapping_wb(paddr, bytes);
83f5d894 696}
b15cc4a1 697
879d5ad0
DS
698static __init void map_gru_distributed(unsigned long c)
699{
700 union uvh_rh_gam_gru_overlay_config_mmr_u gru;
701 u64 paddr;
702 unsigned long bytes;
703 int nid;
704
705 gru.v = c;
7243e106
IM
706
707 /* Only base bits 42:28 relevant in dist mode */
879d5ad0
DS
708 gru_dist_base = gru.v & 0x000007fff0000000UL;
709 if (!gru_dist_base) {
710 pr_info("UV: Map GRU_DIST base address NULL\n");
711 return;
712 }
7243e106 713
879d5ad0
DS
714 bytes = 1UL << UVH_RH_GAM_GRU_OVERLAY_CONFIG_MMR_BASE_SHFT;
715 gru_dist_lmask = ((1UL << uv_hub_info->m_val) - 1) & ~(bytes - 1);
716 gru_dist_umask = ~((1UL << uv_hub_info->m_val) - 1);
717 gru_dist_base &= gru_dist_lmask; /* Clear bits above M */
7243e106 718
879d5ad0
DS
719 for_each_online_node(nid) {
720 paddr = ((u64)uv_node_to_pnode(nid) << uv_hub_info->m_val) |
721 gru_dist_base;
722 init_extra_mapping_wb(paddr, bytes);
723 gru_first_node_paddr = min(paddr, gru_first_node_paddr);
724 gru_last_node_paddr = max(paddr, gru_last_node_paddr);
725 }
7243e106 726
879d5ad0
DS
727 /* Save upper (63:M) bits of address only for is_GRU_range */
728 gru_first_node_paddr &= gru_dist_umask;
729 gru_last_node_paddr &= gru_dist_umask;
7243e106
IM
730
731 pr_debug("UV: Map GRU_DIST base 0x%016llx 0x%016llx - 0x%016llx\n", gru_dist_base, gru_first_node_paddr, gru_last_node_paddr);
879d5ad0
DS
732}
733
83f5d894
JS
734static __init void map_gru_high(int max_pnode)
735{
736 union uvh_rh_gam_gru_overlay_config_mmr_u gru;
737 int shift = UVH_RH_GAM_GRU_OVERLAY_CONFIG_MMR_BASE_SHFT;
c443c03d
MT
738 unsigned long mask = UVH_RH_GAM_GRU_OVERLAY_CONFIG_MMR_BASE_MASK;
739 unsigned long base;
83f5d894
JS
740
741 gru.v = uv_read_local_mmr(UVH_RH_GAM_GRU_OVERLAY_CONFIG_MMR);
879d5ad0 742 if (!gru.s.enable) {
b15cc4a1 743 pr_info("UV: GRU disabled\n");
879d5ad0
DS
744 return;
745 }
746
747 if (is_uv3_hub() && gru.s3.mode) {
748 map_gru_distributed(gru.v);
749 return;
fd12a0d6 750 }
7243e106 751
c443c03d
MT
752 base = (gru.v & mask) >> shift;
753 map_high("GRU", base, shift, shift, max_pnode, map_wb);
754 gru_start_paddr = ((u64)base << shift);
879d5ad0 755 gru_end_paddr = gru_start_paddr + (1UL << shift) * (max_pnode + 1);
83f5d894
JS
756}
757
daf7b9c9
JS
758static __init void map_mmr_high(int max_pnode)
759{
760 union uvh_rh_gam_mmr_overlay_config_mmr_u mmr;
761 int shift = UVH_RH_GAM_MMR_OVERLAY_CONFIG_MMR_BASE_SHFT;
762
763 mmr.v = uv_read_local_mmr(UVH_RH_GAM_MMR_OVERLAY_CONFIG_MMR);
764 if (mmr.s.enable)
fcfbb2b5 765 map_high("MMR", mmr.s.base, shift, shift, max_pnode, map_uc);
b15cc4a1
MT
766 else
767 pr_info("UV: MMR disabled\n");
768}
769
770/*
771 * This commonality works because both 0 & 1 versions of the MMIOH OVERLAY
772 * and REDIRECT MMR regs are exactly the same on UV3.
773 */
774struct mmioh_config {
775 unsigned long overlay;
776 unsigned long redirect;
777 char *id;
778};
779
780static __initdata struct mmioh_config mmiohs[] = {
781 {
782 UV3H_RH_GAM_MMIOH_OVERLAY_CONFIG0_MMR,
783 UV3H_RH_GAM_MMIOH_REDIRECT_CONFIG0_MMR,
784 "MMIOH0"
785 },
786 {
787 UV3H_RH_GAM_MMIOH_OVERLAY_CONFIG1_MMR,
788 UV3H_RH_GAM_MMIOH_REDIRECT_CONFIG1_MMR,
789 "MMIOH1"
790 },
791};
792
a2f28e69 793/* UV3 & UV4 have identical MMIOH overlay configs */
b15cc4a1
MT
794static __init void map_mmioh_high_uv3(int index, int min_pnode, int max_pnode)
795{
796 union uv3h_rh_gam_mmioh_overlay_config0_mmr_u overlay;
797 unsigned long mmr;
798 unsigned long base;
799 int i, n, shift, m_io, max_io;
800 int nasid, lnasid, fi, li;
801 char *id;
802
803 id = mmiohs[index].id;
804 overlay.v = uv_read_local_mmr(mmiohs[index].overlay);
7243e106
IM
805
806 pr_info("UV: %s overlay 0x%lx base:0x%x m_io:%d\n", id, overlay.v, overlay.s3.base, overlay.s3.m_io);
b15cc4a1
MT
807 if (!overlay.s3.enable) {
808 pr_info("UV: %s disabled\n", id);
809 return;
810 }
811
812 shift = UV3H_RH_GAM_MMIOH_OVERLAY_CONFIG0_MMR_BASE_SHFT;
813 base = (unsigned long)overlay.s3.base;
814 m_io = overlay.s3.m_io;
815 mmr = mmiohs[index].redirect;
816 n = UV3H_RH_GAM_MMIOH_REDIRECT_CONFIG0_MMR_DEPTH;
7243e106
IM
817 /* Convert to NASID: */
818 min_pnode *= 2;
b15cc4a1
MT
819 max_pnode *= 2;
820 max_io = lnasid = fi = li = -1;
821
822 for (i = 0; i < n; i++) {
823 union uv3h_rh_gam_mmioh_redirect_config0_mmr_u redirect;
824
825 redirect.v = uv_read_local_mmr(mmr + i * 8);
826 nasid = redirect.s3.nasid;
7243e106 827 /* Invalid NASID: */
b15cc4a1 828 if (nasid < min_pnode || max_pnode < nasid)
7243e106 829 nasid = -1;
b15cc4a1
MT
830
831 if (nasid == lnasid) {
832 li = i;
7243e106
IM
833 /* Last entry check: */
834 if (i != n-1)
b15cc4a1
MT
835 continue;
836 }
837
7243e106 838 /* Check if we have a cached (or last) redirect to print: */
b15cc4a1
MT
839 if (lnasid != -1 || (i == n-1 && nasid != -1)) {
840 unsigned long addr1, addr2;
841 int f, l;
842
843 if (lnasid == -1) {
844 f = l = i;
845 lnasid = nasid;
846 } else {
847 f = fi;
848 l = li;
849 }
7243e106
IM
850 addr1 = (base << shift) + f * (1ULL << m_io);
851 addr2 = (base << shift) + (l + 1) * (1ULL << m_io);
852 pr_info("UV: %s[%03d..%03d] NASID 0x%04x ADDR 0x%016lx - 0x%016lx\n", id, fi, li, lnasid, addr1, addr2);
b15cc4a1
MT
853 if (max_io < l)
854 max_io = l;
855 }
856 fi = li = i;
857 lnasid = nasid;
858 }
859
7243e106 860 pr_info("UV: %s base:0x%lx shift:%d M_IO:%d MAX_IO:%d\n", id, base, shift, m_io, max_io);
b15cc4a1
MT
861
862 if (max_io >= 0)
863 map_high(id, base, shift, m_io, max_io, map_uc);
daf7b9c9
JS
864}
865
b15cc4a1 866static __init void map_mmioh_high(int min_pnode, int max_pnode)
83f5d894
JS
867{
868 union uvh_rh_gam_mmioh_overlay_config_mmr_u mmioh;
b15cc4a1
MT
869 unsigned long mmr, base;
870 int shift, enable, m_io, n_io;
83f5d894 871
a2f28e69 872 if (is_uv3_hub() || is_uv4_hub()) {
7243e106 873 /* Map both MMIOH regions: */
b15cc4a1
MT
874 map_mmioh_high_uv3(0, min_pnode, max_pnode);
875 map_mmioh_high_uv3(1, min_pnode, max_pnode);
876 return;
2a919596 877 }
b15cc4a1
MT
878
879 if (is_uv1_hub()) {
7243e106
IM
880 mmr = UV1H_RH_GAM_MMIOH_OVERLAY_CONFIG_MMR;
881 shift = UV1H_RH_GAM_MMIOH_OVERLAY_CONFIG_MMR_BASE_SHFT;
882 mmioh.v = uv_read_local_mmr(mmr);
883 enable = !!mmioh.s1.enable;
884 base = mmioh.s1.base;
885 m_io = mmioh.s1.m_io;
886 n_io = mmioh.s1.n_io;
b15cc4a1 887 } else if (is_uv2_hub()) {
7243e106
IM
888 mmr = UV2H_RH_GAM_MMIOH_OVERLAY_CONFIG_MMR;
889 shift = UV2H_RH_GAM_MMIOH_OVERLAY_CONFIG_MMR_BASE_SHFT;
890 mmioh.v = uv_read_local_mmr(mmr);
891 enable = !!mmioh.s2.enable;
892 base = mmioh.s2.base;
893 m_io = mmioh.s2.m_io;
894 n_io = mmioh.s2.n_io;
895 } else {
b15cc4a1 896 return;
7243e106 897 }
b15cc4a1
MT
898
899 if (enable) {
900 max_pnode &= (1 << n_io) - 1;
7243e106 901 pr_info("UV: base:0x%lx shift:%d N_IO:%d M_IO:%d max_pnode:0x%x\n", base, shift, m_io, n_io, max_pnode);
b15cc4a1
MT
902 map_high("MMIOH", base, shift, m_io, max_pnode, map_uc);
903 } else {
904 pr_info("UV: MMIOH disabled\n");
2a919596 905 }
83f5d894
JS
906}
907
918bc960
JS
908static __init void map_low_mmrs(void)
909{
910 init_extra_mapping_uc(UV_GLOBAL_MMR32_BASE, UV_GLOBAL_MMR32_SIZE);
911 init_extra_mapping_uc(UV_LOCAL_MMR_BASE, UV_LOCAL_MMR_SIZE);
912}
913
7019cc2d
RA
914static __init void uv_rtc_init(void)
915{
922402f1
RA
916 long status;
917 u64 ticks_per_sec;
7019cc2d 918
7243e106
IM
919 status = uv_bios_freq_base(BIOS_FREQ_BASE_REALTIME_CLOCK, &ticks_per_sec);
920
922402f1 921 if (status != BIOS_STATUS_SUCCESS || ticks_per_sec < 100000) {
7243e106
IM
922 pr_warn("UV: unable to determine platform RTC clock frequency, guessing.\n");
923
924 /* BIOS gives wrong value for clock frequency, so guess: */
7019cc2d 925 sn_rtc_cycles_per_second = 1000000000000UL / 30000UL;
7243e106 926 } else {
7019cc2d 927 sn_rtc_cycles_per_second = ticks_per_sec;
7243e106 928 }
7019cc2d
RA
929}
930
7f1baa06
MT
931/*
932 * percpu heartbeat timer
933 */
934static void uv_heartbeat(unsigned long ignored)
935{
d38bb135
MT
936 struct timer_list *timer = &uv_scir_info->timer;
937 unsigned char bits = uv_scir_info->state;
7f1baa06 938
7243e106 939 /* Flip heartbeat bit: */
7f1baa06
MT
940 bits ^= SCIR_CPU_HEARTBEAT;
941
7243e106 942 /* Is this CPU idle? */
69a72a0e 943 if (idle_cpu(raw_smp_processor_id()))
7f1baa06
MT
944 bits &= ~SCIR_CPU_ACTIVITY;
945 else
946 bits |= SCIR_CPU_ACTIVITY;
947
7243e106 948 /* Update system controller interface reg: */
7f1baa06
MT
949 uv_set_scir_bits(bits);
950
7243e106 951 /* Enable next timer period: */
920a4a70 952 mod_timer(timer, jiffies + SCIR_CPU_HB_INTERVAL);
7f1baa06
MT
953}
954
b067a7be 955static int uv_heartbeat_enable(unsigned int cpu)
7f1baa06 956{
d38bb135
MT
957 while (!uv_cpu_scir_info(cpu)->enabled) {
958 struct timer_list *timer = &uv_cpu_scir_info(cpu)->timer;
7f1baa06
MT
959
960 uv_set_cpu_scir_bits(cpu, SCIR_CPU_HEARTBEAT|SCIR_CPU_ACTIVITY);
920a4a70 961 setup_pinned_timer(timer, uv_heartbeat, cpu);
7f1baa06
MT
962 timer->expires = jiffies + SCIR_CPU_HB_INTERVAL;
963 add_timer_on(timer, cpu);
d38bb135 964 uv_cpu_scir_info(cpu)->enabled = 1;
7f1baa06 965
7243e106 966 /* Also ensure that boot CPU is enabled: */
99659a92
RK
967 cpu = 0;
968 }
b067a7be 969 return 0;
7f1baa06
MT
970}
971
77be80e4 972#ifdef CONFIG_HOTPLUG_CPU
b067a7be 973static int uv_heartbeat_disable(unsigned int cpu)
7f1baa06 974{
d38bb135
MT
975 if (uv_cpu_scir_info(cpu)->enabled) {
976 uv_cpu_scir_info(cpu)->enabled = 0;
977 del_timer(&uv_cpu_scir_info(cpu)->timer);
7f1baa06
MT
978 }
979 uv_set_cpu_scir_bits(cpu, 0xff);
b067a7be 980 return 0;
7f1baa06
MT
981}
982
983static __init void uv_scir_register_cpu_notifier(void)
984{
b067a7be
SAS
985 cpuhp_setup_state_nocalls(CPUHP_AP_ONLINE_DYN, "x86/x2apic-uvx:online",
986 uv_heartbeat_enable, uv_heartbeat_disable);
7f1baa06
MT
987}
988
989#else /* !CONFIG_HOTPLUG_CPU */
990
991static __init void uv_scir_register_cpu_notifier(void)
992{
993}
994
995static __init int uv_init_heartbeat(void)
996{
997 int cpu;
998
7243e106 999 if (is_uv_system()) {
7f1baa06
MT
1000 for_each_online_cpu(cpu)
1001 uv_heartbeat_enable(cpu);
7243e106
IM
1002 }
1003
7f1baa06
MT
1004 return 0;
1005}
1006
1007late_initcall(uv_init_heartbeat);
1008
1009#endif /* !CONFIG_HOTPLUG_CPU */
1010
841582ea 1011/* Direct Legacy VGA I/O traffic to designated IOH */
7243e106 1012int uv_set_vga_state(struct pci_dev *pdev, bool decode, unsigned int command_bits, u32 flags)
841582ea
MT
1013{
1014 int domain, bus, rc;
1015
7ad35cf2 1016 if (!(flags & PCI_VGA_STATE_CHANGE_BRIDGE))
841582ea
MT
1017 return 0;
1018
1019 if ((command_bits & PCI_COMMAND_IO) == 0)
1020 return 0;
1021
1022 domain = pci_domain_nr(pdev->bus);
1023 bus = pdev->bus->number;
1024
1025 rc = uv_bios_set_legacy_vga_target(decode, domain, bus);
841582ea
MT
1026
1027 return rc;
1028}
1029
8da077d6 1030/*
7243e106 1031 * Called on each CPU to initialize the per_cpu UV data area.
0b1da1c8 1032 * FIXME: hotplug not supported yet
8da077d6 1033 */
148f9bb8 1034void uv_cpu_init(void)
8da077d6 1035{
6a6256f9 1036 /* CPU 0 initialization will be done via uv_system_init. */
906f3b20 1037 if (smp_processor_id() == 0)
8da077d6
JS
1038 return;
1039
906f3b20 1040 uv_hub_info->nr_online_cpus++;
8da077d6
JS
1041
1042 if (get_uv_system_type() == UV_NON_UNIQUE_APIC)
1043 set_x2apic_extra_bits(uv_hub_info->pnode);
1044}
1045
c443c03d
MT
1046struct mn {
1047 unsigned char m_val;
1048 unsigned char n_val;
1049 unsigned char m_shift;
1050 unsigned char n_lshift;
1051};
1052
1053static void get_mn(struct mn *mnp)
ac23d4ee 1054{
c443c03d
MT
1055 union uvh_rh_gam_config_mmr_u m_n_config;
1056 union uv3h_gr0_gam_gr_config_u m_gr_config;
1057
7243e106
IM
1058 /* Make sure the whole structure is well initialized: */
1059 memset(mnp, 0, sizeof(*mnp));
1060
1061 m_n_config.v = uv_read_local_mmr(UVH_RH_GAM_CONFIG_MMR);
1062 mnp->n_val = m_n_config.s.n_skt;
1063
c443c03d 1064 if (is_uv4_hub()) {
7243e106
IM
1065 mnp->m_val = 0;
1066 mnp->n_lshift = 0;
c443c03d 1067 } else if (is_uv3_hub()) {
7243e106
IM
1068 mnp->m_val = m_n_config.s3.m_skt;
1069 m_gr_config.v = uv_read_local_mmr(UV3H_GR0_GAM_GR_CONFIG);
1070 mnp->n_lshift = m_gr_config.s3.m_skt;
c443c03d 1071 } else if (is_uv2_hub()) {
7243e106
IM
1072 mnp->m_val = m_n_config.s2.m_skt;
1073 mnp->n_lshift = mnp->m_val == 40 ? 40 : 39;
c443c03d 1074 } else if (is_uv1_hub()) {
7243e106
IM
1075 mnp->m_val = m_n_config.s1.m_skt;
1076 mnp->n_lshift = mnp->m_val;
c443c03d
MT
1077 }
1078 mnp->m_shift = mnp->m_val ? 64 - mnp->m_val : 0;
1079}
1080
7243e106 1081void __init uv_init_hub_info(struct uv_hub_info_s *hi)
c443c03d 1082{
9f5314fb 1083 union uvh_node_id_u node_id;
7243e106 1084 struct mn mn;
c443c03d
MT
1085
1086 get_mn(&mn);
7243e106 1087 hi->gpa_mask = mn.m_val ?
405422d8
MT
1088 (1UL << (mn.m_val + mn.n_val)) - 1 :
1089 (1UL << uv_cpuid.gpa_shift) - 1;
c443c03d 1090
7243e106
IM
1091 hi->m_val = mn.m_val;
1092 hi->n_val = mn.n_val;
1093 hi->m_shift = mn.m_shift;
1094 hi->n_lshift = mn.n_lshift ? mn.n_lshift : 0;
1095 hi->hub_revision = uv_hub_info->hub_revision;
1096 hi->pnode_mask = uv_cpuid.pnode_mask;
1097 hi->min_pnode = _min_pnode;
1098 hi->min_socket = _min_socket;
1099 hi->pnode_to_socket = _pnode_to_socket;
1100 hi->socket_to_node = _socket_to_node;
1101 hi->socket_to_pnode = _socket_to_pnode;
1102 hi->gr_table_len = _gr_table_len;
1103 hi->gr_table = _gr_table;
1104
1105 node_id.v = uv_read_local_mmr(UVH_NODE_ID);
1106 uv_cpuid.gnode_shift = max_t(unsigned int, uv_cpuid.gnode_shift, mn.n_val);
1107 hi->gnode_extra = (node_id.s.node_id & ~((1 << uv_cpuid.gnode_shift) - 1)) >> 1;
ad483005
MT
1108 if (mn.m_val)
1109 hi->gnode_upper = (u64)hi->gnode_extra << mn.m_val;
c443c03d 1110
1de329c1 1111 if (uv_gp_table) {
7243e106
IM
1112 hi->global_mmr_base = uv_gp_table->mmr_base;
1113 hi->global_mmr_shift = uv_gp_table->mmr_shift;
1114 hi->global_gru_base = uv_gp_table->gru_base;
1115 hi->global_gru_shift = uv_gp_table->gru_shift;
1116 hi->gpa_shift = uv_gp_table->gpa_shift;
1117 hi->gpa_mask = (1UL << hi->gpa_shift) - 1;
1de329c1 1118 } else {
7243e106
IM
1119 hi->global_mmr_base = uv_read_local_mmr(UVH_RH_GAM_MMR_OVERLAY_CONFIG_MMR) & ~UV_MMR_ENABLE;
1120 hi->global_mmr_shift = _UV_GLOBAL_MMR64_PNODE_SHIFT;
1de329c1 1121 }
c443c03d 1122
7243e106 1123 get_lowmem_redirect(&hi->lowmem_remap_base, &hi->lowmem_remap_top);
c443c03d 1124
7243e106 1125 hi->apic_pnode_shift = uv_cpuid.socketid_shift;
c443c03d 1126
7243e106
IM
1127 /* Show system specific info: */
1128 pr_info("UV: N:%d M:%d m_shift:%d n_lshift:%d\n", hi->n_val, hi->m_val, hi->m_shift, hi->n_lshift);
1129 pr_info("UV: gpa_mask/shift:0x%lx/%d pnode_mask:0x%x apic_pns:%d\n", hi->gpa_mask, hi->gpa_shift, hi->pnode_mask, hi->apic_pnode_shift);
1130 pr_info("UV: mmr_base/shift:0x%lx/%ld gru_base/shift:0x%lx/%ld\n", hi->global_mmr_base, hi->global_mmr_shift, hi->global_gru_base, hi->global_gru_shift);
1131 pr_info("UV: gnode_upper:0x%lx gnode_extra:0x%x\n", hi->gnode_upper, hi->gnode_extra);
1de329c1
MT
1132}
1133
1134static void __init decode_gam_params(unsigned long ptr)
1135{
1136 uv_gp_table = (struct uv_gam_parameters *)ptr;
1137
1138 pr_info("UV: GAM Params...\n");
1139 pr_info("UV: mmr_base/shift:0x%llx/%d gru_base/shift:0x%llx/%d gpa_shift:%d\n",
1140 uv_gp_table->mmr_base, uv_gp_table->mmr_shift,
1141 uv_gp_table->gru_base, uv_gp_table->gru_shift,
1142 uv_gp_table->gpa_shift);
1143}
1144
1145static void __init decode_gam_rng_tbl(unsigned long ptr)
1146{
1147 struct uv_gam_range_entry *gre = (struct uv_gam_range_entry *)ptr;
1148 unsigned long lgre = 0;
1149 int index = 0;
1150 int sock_min = 999999, pnode_min = 99999;
1151 int sock_max = -1, pnode_max = -1;
1152
1153 uv_gre_table = gre;
1154 for (; gre->type != UV_GAM_RANGE_TYPE_UNUSED; gre++) {
1155 if (!index) {
1156 pr_info("UV: GAM Range Table...\n");
7243e106 1157 pr_info("UV: # %20s %14s %5s %4s %5s %3s %2s\n", "Range", "", "Size", "Type", "NASID", "SID", "PN");
1de329c1 1158 }
7243e106 1159 pr_info("UV: %2d: 0x%014lx-0x%014lx %5luG %3d %04x %02x %02x\n",
1de329c1
MT
1160 index++,
1161 (unsigned long)lgre << UV_GAM_RANGE_SHFT,
1162 (unsigned long)gre->limit << UV_GAM_RANGE_SHFT,
1163 ((unsigned long)(gre->limit - lgre)) >>
1164 (30 - UV_GAM_RANGE_SHFT), /* 64M -> 1G */
22ac2bca 1165 gre->type, gre->nasid, gre->sockid, gre->pnode);
1de329c1
MT
1166
1167 lgre = gre->limit;
1168 if (sock_min > gre->sockid)
1169 sock_min = gre->sockid;
1170 if (sock_max < gre->sockid)
1171 sock_max = gre->sockid;
1172 if (pnode_min > gre->pnode)
1173 pnode_min = gre->pnode;
1174 if (pnode_max < gre->pnode)
1175 pnode_max = gre->pnode;
1176 }
7243e106
IM
1177 _min_socket = sock_min;
1178 _max_socket = sock_max;
1179 _min_pnode = pnode_min;
1180 _max_pnode = pnode_max;
1181 _gr_table_len = index;
1182
1183 pr_info("UV: GRT: %d entries, sockets(min:%x,max:%x) pnodes(min:%x,max:%x)\n", index, _min_socket, _max_socket, _min_pnode, _max_pnode);
1de329c1
MT
1184}
1185
eee5715e 1186static int __init decode_uv_systab(void)
1de329c1
MT
1187{
1188 struct uv_systab *st;
1189 int i;
1190
eee5715e
MT
1191 if (uv_hub_info->hub_revision < UV4_HUB_REVISION_BASE)
1192 return 0; /* No extended UVsystab required */
1193
1de329c1 1194 st = uv_systab;
eee5715e
MT
1195 if ((!st) || (st->revision < UV_SYSTAB_VERSION_UV4_LATEST)) {
1196 int rev = st ? st->revision : 0;
1197
7243e106
IM
1198 pr_err("UV: BIOS UVsystab version(%x) mismatch, expecting(%x)\n", rev, UV_SYSTAB_VERSION_UV4_LATEST);
1199 pr_err("UV: Cannot support UV operations, switching to generic PC\n");
eee5715e 1200 uv_system_type = UV_NONE;
7243e106 1201
eee5715e 1202 return -EINVAL;
1de329c1 1203 }
c443c03d 1204
1de329c1
MT
1205 for (i = 0; st->entry[i].type != UV_SYSTAB_TYPE_UNUSED; i++) {
1206 unsigned long ptr = st->entry[i].offset;
c443c03d 1207
1de329c1
MT
1208 if (!ptr)
1209 continue;
1210
1211 ptr = ptr + (unsigned long)st;
1212
1213 switch (st->entry[i].type) {
1214 case UV_SYSTAB_TYPE_GAM_PARAMS:
1215 decode_gam_params(ptr);
1216 break;
1217
1218 case UV_SYSTAB_TYPE_GAM_RNG_TBL:
1219 decode_gam_rng_tbl(ptr);
1220 break;
1221 }
1222 }
eee5715e 1223 return 0;
c443c03d
MT
1224}
1225
906f3b20 1226/*
7243e106 1227 * Set up physical blade translations from UVH_NODE_PRESENT_TABLE
906f3b20
MT
1228 * .. NB: UVH_NODE_PRESENT_TABLE is going away,
1229 * .. being replaced by GAM Range Table
1230 */
1231static __init void boot_init_possible_blades(struct uv_hub_info_s *hub_info)
1232{
f68376fc 1233 int i, uv_pb = 0;
906f3b20
MT
1234
1235 pr_info("UV: NODE_PRESENT_DEPTH = %d\n", UVH_NODE_PRESENT_TABLE_DEPTH);
1236 for (i = 0; i < UVH_NODE_PRESENT_TABLE_DEPTH; i++) {
1237 unsigned long np;
1238
1239 np = uv_read_local_mmr(UVH_NODE_PRESENT_TABLE + i * 8);
1240 if (np)
1241 pr_info("UV: NODE_PRESENT(%d) = 0x%016lx\n", i, np);
1242
1243 uv_pb += hweight64(np);
1244 }
1245 if (uv_possible_blades != uv_pb)
1246 uv_possible_blades = uv_pb;
906f3b20
MT
1247}
1248
6e27b91c
MT
1249static void __init build_socket_tables(void)
1250{
1251 struct uv_gam_range_entry *gre = uv_gre_table;
1252 int num, nump;
1253 int cpu, i, lnid;
1254 int minsock = _min_socket;
1255 int maxsock = _max_socket;
1256 int minpnode = _min_pnode;
1257 int maxpnode = _max_pnode;
1258 size_t bytes;
1259
1260 if (!gre) {
1261 if (is_uv1_hub() || is_uv2_hub() || is_uv3_hub()) {
1262 pr_info("UV: No UVsystab socket table, ignoring\n");
7243e106 1263 return;
6e27b91c 1264 }
7243e106 1265 pr_crit("UV: Error: UVsystab address translations not available!\n");
6e27b91c
MT
1266 BUG();
1267 }
1268
7243e106 1269 /* Build socket id -> node id, pnode */
6e27b91c
MT
1270 num = maxsock - minsock + 1;
1271 bytes = num * sizeof(_socket_to_node[0]);
1272 _socket_to_node = kmalloc(bytes, GFP_KERNEL);
1273 _socket_to_pnode = kmalloc(bytes, GFP_KERNEL);
1274
1275 nump = maxpnode - minpnode + 1;
1276 bytes = nump * sizeof(_pnode_to_socket[0]);
1277 _pnode_to_socket = kmalloc(bytes, GFP_KERNEL);
1278 BUG_ON(!_socket_to_node || !_socket_to_pnode || !_pnode_to_socket);
1279
1280 for (i = 0; i < num; i++)
1281 _socket_to_node[i] = _socket_to_pnode[i] = SOCK_EMPTY;
1282
1283 for (i = 0; i < nump; i++)
1284 _pnode_to_socket[i] = SOCK_EMPTY;
1285
7243e106 1286 /* Fill in pnode/node/addr conversion list values: */
22ac2bca 1287 pr_info("UV: GAM Building socket/pnode conversion tables\n");
6e27b91c
MT
1288 for (; gre->type != UV_GAM_RANGE_TYPE_UNUSED; gre++) {
1289 if (gre->type == UV_GAM_RANGE_TYPE_HOLE)
1290 continue;
1291 i = gre->sockid - minsock;
7243e106 1292 /* Duplicate: */
6e27b91c 1293 if (_socket_to_pnode[i] != SOCK_EMPTY)
7243e106 1294 continue;
6e27b91c 1295 _socket_to_pnode[i] = gre->pnode;
6e27b91c
MT
1296
1297 i = gre->pnode - minpnode;
1298 _pnode_to_socket[i] = gre->sockid;
1299
7243e106 1300 pr_info("UV: sid:%02x type:%d nasid:%04x pn:%02x pn2s:%2x\n",
6e27b91c
MT
1301 gre->sockid, gre->type, gre->nasid,
1302 _socket_to_pnode[gre->sockid - minsock],
6e27b91c
MT
1303 _pnode_to_socket[gre->pnode - minpnode]);
1304 }
1305
7243e106 1306 /* Set socket -> node values: */
6e27b91c
MT
1307 lnid = -1;
1308 for_each_present_cpu(cpu) {
1309 int nid = cpu_to_node(cpu);
1310 int apicid, sockid;
1311
1312 if (lnid == nid)
1313 continue;
1314 lnid = nid;
1315 apicid = per_cpu(x86_cpu_to_apicid, cpu);
1316 sockid = apicid >> uv_cpuid.socketid_shift;
22ac2bca
MT
1317 _socket_to_node[sockid - minsock] = nid;
1318 pr_info("UV: sid:%02x: apicid:%04x node:%2d\n",
1319 sockid, apicid, nid);
6e27b91c
MT
1320 }
1321
7243e106 1322 /* Set up physical blade to pnode translation from GAM Range Table: */
6e27b91c
MT
1323 bytes = num_possible_nodes() * sizeof(_node_to_pnode[0]);
1324 _node_to_pnode = kmalloc(bytes, GFP_KERNEL);
1325 BUG_ON(!_node_to_pnode);
1326
1327 for (lnid = 0; lnid < num_possible_nodes(); lnid++) {
1328 unsigned short sockid;
1329
1330 for (sockid = minsock; sockid <= maxsock; sockid++) {
1331 if (lnid == _socket_to_node[sockid - minsock]) {
7243e106 1332 _node_to_pnode[lnid] = _socket_to_pnode[sockid - minsock];
6e27b91c
MT
1333 break;
1334 }
1335 }
1336 if (sockid > maxsock) {
1337 pr_err("UV: socket for node %d not found!\n", lnid);
1338 BUG();
1339 }
1340 }
1341
1342 /*
1343 * If socket id == pnode or socket id == node for all nodes,
1344 * system runs faster by removing corresponding conversion table.
1345 */
1346 pr_info("UV: Checking socket->node/pnode for identity maps\n");
1347 if (minsock == 0) {
1348 for (i = 0; i < num; i++)
7243e106 1349 if (_socket_to_node[i] == SOCK_EMPTY || i != _socket_to_node[i])
6e27b91c
MT
1350 break;
1351 if (i >= num) {
1352 kfree(_socket_to_node);
1353 _socket_to_node = NULL;
1354 pr_info("UV: 1:1 socket_to_node table removed\n");
1355 }
1356 }
1357 if (minsock == minpnode) {
1358 for (i = 0; i < num; i++)
1359 if (_socket_to_pnode[i] != SOCK_EMPTY &&
1360 _socket_to_pnode[i] != i + minpnode)
1361 break;
1362 if (i >= num) {
1363 kfree(_socket_to_pnode);
1364 _socket_to_pnode = NULL;
1365 pr_info("UV: 1:1 socket_to_pnode table removed\n");
1366 }
1367 }
1368}
1369
74862b03 1370static void __init uv_system_init_hub(void)
c443c03d
MT
1371{
1372 struct uv_hub_info_s hub_info = {0};
906f3b20
MT
1373 int bytes, cpu, nodeid;
1374 unsigned short min_pnode = 9999, max_pnode = 0;
a0ec83f3
MT
1375 char *hub = is_uv4_hub() ? "UV400" :
1376 is_uv3_hub() ? "UV300" :
1377 is_uv2_hub() ? "UV2000/3000" :
1378 is_uv1_hub() ? "UV100/1000" : NULL;
ac23d4ee 1379
1912c7af
MT
1380 if (!hub) {
1381 pr_err("UV: Unknown/unsupported UV hub\n");
1382 return;
1383 }
b15cc4a1 1384 pr_info("UV: Found %s hub\n", hub);
d394f2d9 1385
3cd0b535 1386 map_low_mmrs();
918bc960 1387
7243e106
IM
1388 /* Get uv_systab for decoding: */
1389 uv_bios_init();
1390
1391 /* If there's an UVsystab problem then abort UV init: */
eee5715e 1392 if (decode_uv_systab() < 0)
7243e106
IM
1393 return;
1394
6e27b91c 1395 build_socket_tables();
c85375cd 1396 build_uv_gr_table();
c443c03d 1397 uv_init_hub_info(&hub_info);
906f3b20
MT
1398 uv_possible_blades = num_possible_nodes();
1399 if (!_node_to_pnode)
1400 boot_init_possible_blades(&hub_info);
da517a08 1401
7243e106
IM
1402 /* uv_num_possible_blades() is really the hub count: */
1403 pr_info("UV: Found %d hubs, %d nodes, %d CPUs\n", uv_num_possible_blades(), num_possible_nodes(), num_possible_cpus());
ac23d4ee 1404
7243e106 1405 uv_bios_get_sn_info(0, &uv_type, &sn_partition_id, &sn_coherency_id, &sn_region_size, &system_serial_number);
c443c03d 1406 hub_info.coherency_domain_number = sn_coherency_id;
7019cc2d
RA
1407 uv_rtc_init();
1408
906f3b20
MT
1409 bytes = sizeof(void *) * uv_num_possible_blades();
1410 __uv_hub_info_list = kzalloc(bytes, GFP_KERNEL);
1411 BUG_ON(!__uv_hub_info_list);
39d30770 1412
906f3b20
MT
1413 bytes = sizeof(struct uv_hub_info_s);
1414 for_each_node(nodeid) {
1415 struct uv_hub_info_s *new_hub;
906f3b20
MT
1416
1417 if (__uv_hub_info_list[nodeid]) {
7243e106 1418 pr_err("UV: Node %d UV HUB already initialized!?\n", nodeid);
906f3b20 1419 BUG();
3edcf2ff 1420 }
9f5314fb 1421
906f3b20 1422 /* Allocate new per hub info list */
7243e106 1423 new_hub = (nodeid == 0) ? &uv_hub_info_node0 : kzalloc_node(bytes, GFP_KERNEL, nodeid);
906f3b20
MT
1424 BUG_ON(!new_hub);
1425 __uv_hub_info_list[nodeid] = new_hub;
1426 new_hub = uv_hub_info_list(nodeid);
1427 BUG_ON(!new_hub);
1428 *new_hub = hub_info;
1429
7243e106 1430 /* Use information from GAM table if available: */
f68376fc
DS
1431 if (_node_to_pnode)
1432 new_hub->pnode = _node_to_pnode[nodeid];
7243e106 1433 else /* Or fill in during CPU loop: */
f68376fc 1434 new_hub->pnode = 0xffff;
7243e106 1435
906f3b20
MT
1436 new_hub->numa_blade_id = uv_node_to_blade_id(nodeid);
1437 new_hub->memory_nid = -1;
1438 new_hub->nr_possible_cpus = 0;
1439 new_hub->nr_online_cpus = 0;
1440 }
6c7184b7 1441
7243e106 1442 /* Initialize per CPU info: */
906f3b20
MT
1443 for_each_possible_cpu(cpu) {
1444 int apicid = per_cpu(x86_cpu_to_apicid, cpu);
f68376fc
DS
1445 int numa_node_id;
1446 unsigned short pnode;
0045ddd2 1447
906f3b20 1448 nodeid = cpu_to_node(cpu);
f68376fc
DS
1449 numa_node_id = numa_cpu_node(cpu);
1450 pnode = uv_apicid_to_pnode(apicid);
1451
3edcf2ff 1452 uv_cpu_info_per(cpu)->p_uv_hub_info = uv_hub_info_list(nodeid);
7243e106 1453 uv_cpu_info_per(cpu)->blade_cpu_id = uv_cpu_hub_info(cpu)->nr_possible_cpus++;
906f3b20
MT
1454 if (uv_cpu_hub_info(cpu)->memory_nid == -1)
1455 uv_cpu_hub_info(cpu)->memory_nid = cpu_to_node(cpu);
7243e106
IM
1456
1457 /* Init memoryless node: */
1458 if (nodeid != numa_node_id &&
f68376fc
DS
1459 uv_hub_info_list(numa_node_id)->pnode == 0xffff)
1460 uv_hub_info_list(numa_node_id)->pnode = pnode;
1461 else if (uv_cpu_hub_info(cpu)->pnode == 0xffff)
1462 uv_cpu_hub_info(cpu)->pnode = pnode;
7243e106 1463
906f3b20 1464 uv_cpu_scir_info(cpu)->offset = uv_scir_offset(apicid);
ac23d4ee 1465 }
83f5d894 1466
906f3b20 1467 for_each_node(nodeid) {
f68376fc
DS
1468 unsigned short pnode = uv_hub_info_list(nodeid)->pnode;
1469
7243e106 1470 /* Add pnode info for pre-GAM list nodes without CPUs: */
f68376fc
DS
1471 if (pnode == 0xffff) {
1472 unsigned long paddr;
1473
1474 paddr = node_start_pfn(nodeid) << PAGE_SHIFT;
1475 pnode = uv_gpa_to_pnode(uv_soc_phys_ram_to_gpa(paddr));
1476 uv_hub_info_list(nodeid)->pnode = pnode;
1477 }
1478 min_pnode = min(pnode, min_pnode);
1479 max_pnode = max(pnode, max_pnode);
906f3b20
MT
1480 pr_info("UV: UVHUB node:%2d pn:%02x nrcpus:%d\n",
1481 nodeid,
1482 uv_hub_info_list(nodeid)->pnode,
1483 uv_hub_info_list(nodeid)->nr_possible_cpus);
6a891a24
JS
1484 }
1485
906f3b20 1486 pr_info("UV: min_pnode:%02x max_pnode:%02x\n", min_pnode, max_pnode);
83f5d894 1487 map_gru_high(max_pnode);
daf7b9c9 1488 map_mmr_high(max_pnode);
b15cc4a1 1489 map_mmioh_high(min_pnode, max_pnode);
ac23d4ee 1490
0d12ef0c 1491 uv_nmi_setup();
8da077d6 1492 uv_cpu_init();
7f1baa06 1493 uv_scir_register_cpu_notifier();
a3d732f9 1494 proc_mkdir("sgi_uv", NULL);
841582ea 1495
7243e106 1496 /* Register Legacy VGA I/O redirection handler: */
841582ea 1497 pci_register_set_vga_state(uv_set_vga_state);
818987e9
CW
1498
1499 /*
1500 * For a kdump kernel the reset must be BOOT_ACPI, not BOOT_EFI, as
7243e106 1501 * EFI is not enabled in the kdump kernel:
818987e9
CW
1502 */
1503 if (is_kdump_kernel())
1504 reboot_type = BOOT_ACPI;
ac23d4ee 1505}
107e0e0c 1506
74862b03 1507/*
1508 * There is a small amount of UV specific code needed to initialize a
1509 * UV system that does not have a "UV HUB" (referred to as "hubless").
1510 */
1511void __init uv_system_init(void)
1512{
1513 if (likely(!is_uv_system() && !is_uv_hubless()))
1514 return;
1515
1516 if (is_uv_system())
1517 uv_system_init_hub();
abdf1df6 1518 else
1519 uv_nmi_setup_hubless();
74862b03 1520}
1521
107e0e0c 1522apic_driver(apic_x2apic_uv_x);