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
6 * SGI UV APIC functions (note: not an Intel compatible APIC)
8 * Copyright (C) 2007-2014 Silicon Graphics, Inc. All rights reserved.
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/export.h>
16 #include <linux/string.h>
17 #include <linux/ctype.h>
18 #include <linux/sched.h>
19 #include <linux/timer.h>
20 #include <linux/slab.h>
21 #include <linux/cpu.h>
22 #include <linux/init.h>
24 #include <linux/pci.h>
25 #include <linux/kdebug.h>
26 #include <linux/delay.h>
27 #include <linux/crash_dump.h>
28 #include <linux/reboot.h>
29 #include <linux/memory.h>
30 #include <linux/numa.h>
32 #include <asm/uv/uv_mmrs.h>
33 #include <asm/uv/uv_hub.h>
34 #include <asm/current.h>
35 #include <asm/pgtable.h>
36 #include <asm/uv/bios.h>
37 #include <asm/uv/uv.h>
39 #include <asm/e820/api.h>
42 #include <asm/x86_init.h>
45 DEFINE_PER_CPU(int, x2apic_extra_bits
);
47 static enum uv_system_type uv_system_type
;
48 static bool uv_hubless_system
;
49 static u64 gru_start_paddr
, gru_end_paddr
;
50 static u64 gru_dist_base
, gru_first_node_paddr
= -1LL, gru_last_node_paddr
;
51 static u64 gru_dist_lmask
, gru_dist_umask
;
52 static union uvh_apicid uvh_apicid
;
54 /* Information derived from CPUID: */
56 unsigned int apicid_shift
;
57 unsigned int apicid_mask
;
58 unsigned int socketid_shift
; /* aka pnode_shift for UV1/2/3 */
59 unsigned int pnode_mask
;
60 unsigned int gpa_shift
;
61 unsigned int gnode_shift
;
64 int uv_min_hub_revision_id
;
65 EXPORT_SYMBOL_GPL(uv_min_hub_revision_id
);
67 unsigned int uv_apicid_hibits
;
68 EXPORT_SYMBOL_GPL(uv_apicid_hibits
);
70 static struct apic apic_x2apic_uv_x
;
71 static struct uv_hub_info_s uv_hub_info_node0
;
73 /* Set this to use hardware error handler instead of kernel panic: */
74 static int disable_uv_undefined_panic
= 1;
76 unsigned long uv_undefined(char *str
)
78 if (likely(!disable_uv_undefined_panic
))
79 panic("UV: error: undefined MMR: %s\n", str
);
81 pr_crit("UV: error: undefined MMR: %s\n", str
);
83 /* Cause a machine fault: */
86 EXPORT_SYMBOL(uv_undefined
);
88 static unsigned long __init
uv_early_read_mmr(unsigned long addr
)
90 unsigned long val
, *mmr
;
92 mmr
= early_ioremap(UV_LOCAL_MMR_BASE
| addr
, sizeof(*mmr
));
94 early_iounmap(mmr
, sizeof(*mmr
));
99 static inline bool is_GRU_range(u64 start
, u64 end
)
102 u64 su
= start
& gru_dist_umask
; /* Upper (incl pnode) bits */
103 u64 sl
= start
& gru_dist_lmask
; /* Base offset bits */
104 u64 eu
= end
& gru_dist_umask
;
105 u64 el
= end
& gru_dist_lmask
;
107 /* Must reside completely within a single GRU range: */
108 return (sl
== gru_dist_base
&& el
== gru_dist_base
&&
109 su
>= gru_first_node_paddr
&&
110 su
<= gru_last_node_paddr
&&
113 return start
>= gru_start_paddr
&& end
<= gru_end_paddr
;
117 static bool uv_is_untracked_pat_range(u64 start
, u64 end
)
119 return is_ISA_range(start
, end
) || is_GRU_range(start
, end
);
122 static int __init
early_get_pnodeid(void)
124 union uvh_node_id_u node_id
;
125 union uvh_rh_gam_config_mmr_u m_n_config
;
128 /* Currently, all blades have same revision number */
129 node_id
.v
= uv_early_read_mmr(UVH_NODE_ID
);
130 m_n_config
.v
= uv_early_read_mmr(UVH_RH_GAM_CONFIG_MMR
);
131 uv_min_hub_revision_id
= node_id
.s
.revision
;
133 switch (node_id
.s
.part_number
) {
134 case UV2_HUB_PART_NUMBER
:
135 case UV2_HUB_PART_NUMBER_X
:
136 uv_min_hub_revision_id
+= UV2_HUB_REVISION_BASE
- 1;
138 case UV3_HUB_PART_NUMBER
:
139 case UV3_HUB_PART_NUMBER_X
:
140 uv_min_hub_revision_id
+= UV3_HUB_REVISION_BASE
;
143 /* Update: UV4A has only a modified revision to indicate HUB fixes */
144 case UV4_HUB_PART_NUMBER
:
145 uv_min_hub_revision_id
+= UV4_HUB_REVISION_BASE
- 1;
146 uv_cpuid
.gnode_shift
= 2; /* min partition is 4 sockets */
150 uv_hub_info
->hub_revision
= uv_min_hub_revision_id
;
151 uv_cpuid
.pnode_mask
= (1 << m_n_config
.s
.n_skt
) - 1;
152 pnode
= (node_id
.s
.node_id
>> 1) & uv_cpuid
.pnode_mask
;
153 uv_cpuid
.gpa_shift
= 46; /* Default unless changed */
155 pr_info("UV: rev:%d part#:%x nodeid:%04x n_skt:%d pnmsk:%x pn:%x\n",
156 node_id
.s
.revision
, node_id
.s
.part_number
, node_id
.s
.node_id
,
157 m_n_config
.s
.n_skt
, uv_cpuid
.pnode_mask
, pnode
);
161 static void __init
uv_tsc_check_sync(void)
169 /* Accommodate different UV arch BIOSes */
170 mmr
= uv_early_read_mmr(UVH_TSC_SYNC_MMR
);
173 is_uv2_hub() ? UVH_TSC_SYNC_SHIFT_UV2K
: UVH_TSC_SYNC_SHIFT
;
175 sync_state
= (mmr
>> mmr_shift
) & UVH_TSC_SYNC_MASK
;
179 switch (sync_state
) {
180 case UVH_TSC_SYNC_VALID
:
185 case UVH_TSC_SYNC_INVALID
:
190 state
= "unknown: assuming valid";
194 pr_info("UV: TSC sync state from BIOS:0%d(%s)\n", sync_state
, state
);
196 /* Mark flag that says TSC != 0 is valid for socket 0 */
198 mark_tsc_async_resets("UV BIOS");
200 mark_tsc_unstable("UV BIOS");
203 /* [Copied from arch/x86/kernel/cpu/topology.c:detect_extended_topology()] */
205 #define SMT_LEVEL 0 /* Leaf 0xb SMT level */
206 #define INVALID_TYPE 0 /* Leaf 0xb sub-leaf types */
209 #define LEAFB_SUBTYPE(ecx) (((ecx) >> 8) & 0xff)
210 #define BITS_SHIFT_NEXT_LEVEL(eax) ((eax) & 0x1f)
212 static void set_x2apic_bits(void)
214 unsigned int eax
, ebx
, ecx
, edx
, sub_index
;
215 unsigned int sid_shift
;
217 cpuid(0, &eax
, &ebx
, &ecx
, &edx
);
219 pr_info("UV: CPU does not have CPUID.11\n");
223 cpuid_count(0xb, SMT_LEVEL
, &eax
, &ebx
, &ecx
, &edx
);
224 if (ebx
== 0 || (LEAFB_SUBTYPE(ecx
) != SMT_TYPE
)) {
225 pr_info("UV: CPUID.11 not implemented\n");
229 sid_shift
= BITS_SHIFT_NEXT_LEVEL(eax
);
232 cpuid_count(0xb, sub_index
, &eax
, &ebx
, &ecx
, &edx
);
233 if (LEAFB_SUBTYPE(ecx
) == CORE_TYPE
) {
234 sid_shift
= BITS_SHIFT_NEXT_LEVEL(eax
);
238 } while (LEAFB_SUBTYPE(ecx
) != INVALID_TYPE
);
240 uv_cpuid
.apicid_shift
= 0;
241 uv_cpuid
.apicid_mask
= (~(-1 << sid_shift
));
242 uv_cpuid
.socketid_shift
= sid_shift
;
245 static void __init
early_get_apic_socketid_shift(void)
247 if (is_uv2_hub() || is_uv3_hub())
248 uvh_apicid
.v
= uv_early_read_mmr(UVH_APICID
);
252 pr_info("UV: apicid_shift:%d apicid_mask:0x%x\n", uv_cpuid
.apicid_shift
, uv_cpuid
.apicid_mask
);
253 pr_info("UV: socketid_shift:%d pnode_mask:0x%x\n", uv_cpuid
.socketid_shift
, uv_cpuid
.pnode_mask
);
257 * Add an extra bit as dictated by bios to the destination apicid of
258 * interrupts potentially passing through the UV HUB. This prevents
259 * a deadlock between interrupts and IO port operations.
261 static void __init
uv_set_apicid_hibit(void)
263 union uv1h_lb_target_physical_apic_id_mask_u apicid_mask
;
266 apicid_mask
.v
= uv_early_read_mmr(UV1H_LB_TARGET_PHYSICAL_APIC_ID_MASK
);
267 uv_apicid_hibits
= apicid_mask
.s1
.bit_enables
& UV_APICID_HIBIT_MASK
;
271 static int __init
uv_acpi_madt_oem_check(char *oem_id
, char *oem_table_id
)
276 if (strncmp(oem_id
, "SGI", 3) != 0) {
277 if (strncmp(oem_id
, "NSGI", 4) == 0) {
278 uv_hubless_system
= true;
279 pr_info("UV: OEM IDs %s/%s, HUBLESS\n",
280 oem_id
, oem_table_id
);
286 pr_err("UV: NUMA is off, disabling UV support\n");
290 /* Set up early hub type field in uv_hub_info for Node 0 */
291 uv_cpu_info
->p_uv_hub_info
= &uv_hub_info_node0
;
294 * Determine UV arch type.
297 * SGI3: UV300 (truncated to 4 chars because of different varieties)
298 * SGI4: UV400 (truncated to 4 chars because of different varieties)
300 uv_hub_info
->hub_revision
=
301 !strncmp(oem_id
, "SGI4", 4) ? UV4_HUB_REVISION_BASE
:
302 !strncmp(oem_id
, "SGI3", 4) ? UV3_HUB_REVISION_BASE
:
303 !strcmp(oem_id
, "SGI2") ? UV2_HUB_REVISION_BASE
:
304 !strcmp(oem_id
, "SGI") ? UV1_HUB_REVISION_BASE
: 0;
306 if (uv_hub_info
->hub_revision
== 0)
309 pnodeid
= early_get_pnodeid();
310 early_get_apic_socketid_shift();
312 x86_platform
.is_untracked_pat_range
= uv_is_untracked_pat_range
;
313 x86_platform
.nmi_init
= uv_nmi_init
;
315 if (!strcmp(oem_table_id
, "UVX")) {
316 /* This is the most common hardware variant: */
317 uv_system_type
= UV_X2APIC
;
320 } else if (!strcmp(oem_table_id
, "UVH")) {
321 /* Only UV1 systems: */
322 uv_system_type
= UV_NON_UNIQUE_APIC
;
323 x86_platform
.legacy
.warm_reset
= 0;
324 __this_cpu_write(x2apic_extra_bits
, pnodeid
<< uvh_apicid
.s
.pnode_shift
);
325 uv_set_apicid_hibit();
328 } else if (!strcmp(oem_table_id
, "UVL")) {
329 /* Only used for very small systems: */
330 uv_system_type
= UV_LEGACY_APIC
;
337 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
);
343 pr_err("UV: OEM_ID:%s OEM_TABLE_ID:%s\n", oem_id
, oem_table_id
);
344 pr_err("Current BIOS not supported, update kernel and/or BIOS\n");
348 enum uv_system_type
get_uv_system_type(void)
350 return uv_system_type
;
353 int is_uv_system(void)
355 return uv_system_type
!= UV_NONE
;
357 EXPORT_SYMBOL_GPL(is_uv_system
);
359 int is_uv_hubless(void)
361 return uv_hubless_system
;
363 EXPORT_SYMBOL_GPL(is_uv_hubless
);
365 void **__uv_hub_info_list
;
366 EXPORT_SYMBOL_GPL(__uv_hub_info_list
);
368 DEFINE_PER_CPU(struct uv_cpu_info_s
, __uv_cpu_info
);
369 EXPORT_PER_CPU_SYMBOL_GPL(__uv_cpu_info
);
371 short uv_possible_blades
;
372 EXPORT_SYMBOL_GPL(uv_possible_blades
);
374 unsigned long sn_rtc_cycles_per_second
;
375 EXPORT_SYMBOL(sn_rtc_cycles_per_second
);
377 /* The following values are used for the per node hub info struct */
378 static __initdata
unsigned short *_node_to_pnode
;
379 static __initdata
unsigned short _min_socket
, _max_socket
;
380 static __initdata
unsigned short _min_pnode
, _max_pnode
, _gr_table_len
;
381 static __initdata
struct uv_gam_range_entry
*uv_gre_table
;
382 static __initdata
struct uv_gam_parameters
*uv_gp_table
;
383 static __initdata
unsigned short *_socket_to_node
;
384 static __initdata
unsigned short *_socket_to_pnode
;
385 static __initdata
unsigned short *_pnode_to_socket
;
387 static __initdata
struct uv_gam_range_s
*_gr_table
;
389 #define SOCK_EMPTY ((unsigned short)~0)
391 extern int uv_hub_info_version(void)
393 return UV_HUB_INFO_VERSION
;
395 EXPORT_SYMBOL(uv_hub_info_version
);
397 /* Default UV memory block size is 2GB */
398 static unsigned long mem_block_size __initdata
= (2UL << 30);
400 /* Kernel parameter to specify UV mem block size */
401 static int __init
parse_mem_block_size(char *ptr
)
403 unsigned long size
= memparse(ptr
, NULL
);
405 /* Size will be rounded down by set_block_size() below */
406 mem_block_size
= size
;
409 early_param("uv_memblksize", parse_mem_block_size
);
411 static __init
int adj_blksize(u32 lgre
)
413 unsigned long base
= (unsigned long)lgre
<< UV_GAM_RANGE_SHFT
;
416 for (size
= mem_block_size
; size
> MIN_MEMORY_BLOCK_SIZE
; size
>>= 1)
417 if (IS_ALIGNED(base
, size
))
420 if (size
>= mem_block_size
)
423 mem_block_size
= size
;
427 static __init
void set_block_size(void)
429 unsigned int order
= ffs(mem_block_size
);
432 /* adjust for ffs return of 1..64 */
433 set_memory_block_size_order(order
- 1);
434 pr_info("UV: mem_block_size set to 0x%lx\n", mem_block_size
);
436 /* bad or zero value, default to 1UL << 31 (2GB) */
437 pr_err("UV: mem_block_size error with 0x%lx\n", mem_block_size
);
438 set_memory_block_size_order(31);
442 /* Build GAM range lookup table: */
443 static __init
void build_uv_gr_table(void)
445 struct uv_gam_range_entry
*gre
= uv_gre_table
;
446 struct uv_gam_range_s
*grt
;
447 unsigned long last_limit
= 0, ram_limit
= 0;
448 int bytes
, i
, sid
, lsid
= -1, indx
= 0, lindx
= -1;
453 bytes
= _gr_table_len
* sizeof(struct uv_gam_range_s
);
454 grt
= kzalloc(bytes
, GFP_KERNEL
);
458 for (; gre
->type
!= UV_GAM_RANGE_TYPE_UNUSED
; gre
++) {
459 if (gre
->type
== UV_GAM_RANGE_TYPE_HOLE
) {
461 /* Mark hole between RAM/non-RAM: */
462 ram_limit
= last_limit
;
463 last_limit
= gre
->limit
;
467 last_limit
= gre
->limit
;
468 pr_info("UV: extra hole in GAM RE table @%d\n", (int)(gre
- uv_gre_table
));
471 if (_max_socket
< gre
->sockid
) {
472 pr_err("UV: GAM table sockid(%d) too large(>%d) @%d\n", gre
->sockid
, _max_socket
, (int)(gre
- uv_gre_table
));
475 sid
= gre
->sockid
- _min_socket
;
478 grt
= &_gr_table
[indx
];
480 grt
->nasid
= gre
->nasid
;
481 grt
->limit
= last_limit
= gre
->limit
;
487 if (lsid
== sid
&& !ram_limit
) {
488 /* .. if contiguous: */
489 if (grt
->limit
== last_limit
) {
490 grt
->limit
= last_limit
= gre
->limit
;
494 /* Non-contiguous RAM range: */
498 grt
->nasid
= gre
->nasid
;
499 grt
->limit
= last_limit
= gre
->limit
;
502 /* Non-contiguous/non-RAM: */
504 /* base is this entry */
505 grt
->base
= grt
- _gr_table
;
506 grt
->nasid
= gre
->nasid
;
507 grt
->limit
= last_limit
= gre
->limit
;
511 /* Shorten table if possible */
514 if (i
< _gr_table_len
) {
517 bytes
= i
* sizeof(struct uv_gam_range_s
);
518 ret
= krealloc(_gr_table
, bytes
, GFP_KERNEL
);
525 /* Display resultant GAM range table: */
526 for (i
= 0, grt
= _gr_table
; i
< _gr_table_len
; i
++, grt
++) {
527 unsigned long start
, end
;
530 start
= gb
< 0 ? 0 : (unsigned long)_gr_table
[gb
].limit
<< UV_GAM_RANGE_SHFT
;
531 end
= (unsigned long)grt
->limit
<< UV_GAM_RANGE_SHFT
;
533 pr_info("UV: GAM Range %2d %04x 0x%013lx-0x%013lx (%d)\n", i
, grt
->nasid
, start
, end
, gb
);
537 static int uv_wakeup_secondary(int phys_apicid
, unsigned long start_rip
)
542 pnode
= uv_apicid_to_pnode(phys_apicid
);
543 phys_apicid
|= uv_apicid_hibits
;
545 val
= (1UL << UVH_IPI_INT_SEND_SHFT
) |
546 (phys_apicid
<< UVH_IPI_INT_APIC_ID_SHFT
) |
547 ((start_rip
<< UVH_IPI_INT_VECTOR_SHFT
) >> 12) |
550 uv_write_global_mmr64(pnode
, UVH_IPI_INT
, val
);
552 val
= (1UL << UVH_IPI_INT_SEND_SHFT
) |
553 (phys_apicid
<< UVH_IPI_INT_APIC_ID_SHFT
) |
554 ((start_rip
<< UVH_IPI_INT_VECTOR_SHFT
) >> 12) |
557 uv_write_global_mmr64(pnode
, UVH_IPI_INT
, val
);
562 static void uv_send_IPI_one(int cpu
, int vector
)
564 unsigned long apicid
;
567 apicid
= per_cpu(x86_cpu_to_apicid
, cpu
);
568 pnode
= uv_apicid_to_pnode(apicid
);
569 uv_hub_send_ipi(pnode
, apicid
, vector
);
572 static void uv_send_IPI_mask(const struct cpumask
*mask
, int vector
)
576 for_each_cpu(cpu
, mask
)
577 uv_send_IPI_one(cpu
, vector
);
580 static void uv_send_IPI_mask_allbutself(const struct cpumask
*mask
, int vector
)
582 unsigned int this_cpu
= smp_processor_id();
585 for_each_cpu(cpu
, mask
) {
587 uv_send_IPI_one(cpu
, vector
);
591 static void uv_send_IPI_allbutself(int vector
)
593 unsigned int this_cpu
= smp_processor_id();
596 for_each_online_cpu(cpu
) {
598 uv_send_IPI_one(cpu
, vector
);
602 static void uv_send_IPI_all(int vector
)
604 uv_send_IPI_mask(cpu_online_mask
, vector
);
607 static int uv_apic_id_valid(u32 apicid
)
612 static int uv_apic_id_registered(void)
617 static void uv_init_apic_ldr(void)
621 static u32
apic_uv_calc_apicid(unsigned int cpu
)
623 return apic_default_calc_apicid(cpu
) | uv_apicid_hibits
;
626 static unsigned int x2apic_get_apic_id(unsigned long x
)
630 WARN_ON(preemptible() && num_online_cpus() > 1);
631 id
= x
| __this_cpu_read(x2apic_extra_bits
);
636 static u32
set_apic_id(unsigned int id
)
638 /* CHECKME: Do we need to mask out the xapic extra bits? */
642 static unsigned int uv_read_apic_id(void)
644 return x2apic_get_apic_id(apic_read(APIC_ID
));
647 static int uv_phys_pkg_id(int initial_apicid
, int index_msb
)
649 return uv_read_apic_id() >> index_msb
;
652 static void uv_send_IPI_self(int vector
)
654 apic_write(APIC_SELF_IPI
, vector
);
657 static int uv_probe(void)
659 return apic
== &apic_x2apic_uv_x
;
662 static struct apic apic_x2apic_uv_x __ro_after_init
= {
664 .name
= "UV large system",
666 .acpi_madt_oem_check
= uv_acpi_madt_oem_check
,
667 .apic_id_valid
= uv_apic_id_valid
,
668 .apic_id_registered
= uv_apic_id_registered
,
670 .irq_delivery_mode
= dest_Fixed
,
671 .irq_dest_mode
= 0, /* Physical */
674 .dest_logical
= APIC_DEST_LOGICAL
,
675 .check_apicid_used
= NULL
,
677 .init_apic_ldr
= uv_init_apic_ldr
,
679 .ioapic_phys_id_map
= NULL
,
680 .setup_apic_routing
= NULL
,
681 .cpu_present_to_apicid
= default_cpu_present_to_apicid
,
682 .apicid_to_cpu_present
= NULL
,
683 .check_phys_apicid_present
= default_check_phys_apicid_present
,
684 .phys_pkg_id
= uv_phys_pkg_id
,
686 .get_apic_id
= x2apic_get_apic_id
,
687 .set_apic_id
= set_apic_id
,
689 .calc_dest_apicid
= apic_uv_calc_apicid
,
691 .send_IPI
= uv_send_IPI_one
,
692 .send_IPI_mask
= uv_send_IPI_mask
,
693 .send_IPI_mask_allbutself
= uv_send_IPI_mask_allbutself
,
694 .send_IPI_allbutself
= uv_send_IPI_allbutself
,
695 .send_IPI_all
= uv_send_IPI_all
,
696 .send_IPI_self
= uv_send_IPI_self
,
698 .wakeup_secondary_cpu
= uv_wakeup_secondary
,
699 .inquire_remote_apic
= NULL
,
701 .read
= native_apic_msr_read
,
702 .write
= native_apic_msr_write
,
703 .eoi_write
= native_apic_msr_eoi_write
,
704 .icr_read
= native_x2apic_icr_read
,
705 .icr_write
= native_x2apic_icr_write
,
706 .wait_icr_idle
= native_x2apic_wait_icr_idle
,
707 .safe_wait_icr_idle
= native_safe_x2apic_wait_icr_idle
,
710 static void set_x2apic_extra_bits(int pnode
)
712 __this_cpu_write(x2apic_extra_bits
, pnode
<< uvh_apicid
.s
.pnode_shift
);
715 #define UVH_RH_GAM_ALIAS210_REDIRECT_CONFIG_LENGTH 3
716 #define DEST_SHIFT UVH_RH_GAM_ALIAS210_REDIRECT_CONFIG_0_MMR_DEST_BASE_SHFT
718 static __init
void get_lowmem_redirect(unsigned long *base
, unsigned long *size
)
720 union uvh_rh_gam_alias210_overlay_config_2_mmr_u alias
;
721 union uvh_rh_gam_alias210_redirect_config_2_mmr_u redirect
;
722 unsigned long m_redirect
;
723 unsigned long m_overlay
;
726 for (i
= 0; i
< UVH_RH_GAM_ALIAS210_REDIRECT_CONFIG_LENGTH
; i
++) {
729 m_redirect
= UVH_RH_GAM_ALIAS210_REDIRECT_CONFIG_0_MMR
;
730 m_overlay
= UVH_RH_GAM_ALIAS210_OVERLAY_CONFIG_0_MMR
;
733 m_redirect
= UVH_RH_GAM_ALIAS210_REDIRECT_CONFIG_1_MMR
;
734 m_overlay
= UVH_RH_GAM_ALIAS210_OVERLAY_CONFIG_1_MMR
;
737 m_redirect
= UVH_RH_GAM_ALIAS210_REDIRECT_CONFIG_2_MMR
;
738 m_overlay
= UVH_RH_GAM_ALIAS210_OVERLAY_CONFIG_2_MMR
;
741 alias
.v
= uv_read_local_mmr(m_overlay
);
742 if (alias
.s
.enable
&& alias
.s
.base
== 0) {
743 *size
= (1UL << alias
.s
.m_alias
);
744 redirect
.v
= uv_read_local_mmr(m_redirect
);
745 *base
= (unsigned long)redirect
.s
.dest_base
<< DEST_SHIFT
;
752 enum map_type
{map_wb
, map_uc
};
754 static __init
void map_high(char *id
, unsigned long base
, int pshift
, int bshift
, int max_pnode
, enum map_type map_type
)
756 unsigned long bytes
, paddr
;
758 paddr
= base
<< pshift
;
759 bytes
= (1UL << bshift
) * (max_pnode
+ 1);
761 pr_info("UV: Map %s_HI base address NULL\n", id
);
764 pr_debug("UV: Map %s_HI 0x%lx - 0x%lx\n", id
, paddr
, paddr
+ bytes
);
765 if (map_type
== map_uc
)
766 init_extra_mapping_uc(paddr
, bytes
);
768 init_extra_mapping_wb(paddr
, bytes
);
771 static __init
void map_gru_distributed(unsigned long c
)
773 union uvh_rh_gam_gru_overlay_config_mmr_u gru
;
780 /* Only base bits 42:28 relevant in dist mode */
781 gru_dist_base
= gru
.v
& 0x000007fff0000000UL
;
782 if (!gru_dist_base
) {
783 pr_info("UV: Map GRU_DIST base address NULL\n");
787 bytes
= 1UL << UVH_RH_GAM_GRU_OVERLAY_CONFIG_MMR_BASE_SHFT
;
788 gru_dist_lmask
= ((1UL << uv_hub_info
->m_val
) - 1) & ~(bytes
- 1);
789 gru_dist_umask
= ~((1UL << uv_hub_info
->m_val
) - 1);
790 gru_dist_base
&= gru_dist_lmask
; /* Clear bits above M */
792 for_each_online_node(nid
) {
793 paddr
= ((u64
)uv_node_to_pnode(nid
) << uv_hub_info
->m_val
) |
795 init_extra_mapping_wb(paddr
, bytes
);
796 gru_first_node_paddr
= min(paddr
, gru_first_node_paddr
);
797 gru_last_node_paddr
= max(paddr
, gru_last_node_paddr
);
800 /* Save upper (63:M) bits of address only for is_GRU_range */
801 gru_first_node_paddr
&= gru_dist_umask
;
802 gru_last_node_paddr
&= gru_dist_umask
;
804 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
);
807 static __init
void map_gru_high(int max_pnode
)
809 union uvh_rh_gam_gru_overlay_config_mmr_u gru
;
810 int shift
= UVH_RH_GAM_GRU_OVERLAY_CONFIG_MMR_BASE_SHFT
;
811 unsigned long mask
= UVH_RH_GAM_GRU_OVERLAY_CONFIG_MMR_BASE_MASK
;
814 gru
.v
= uv_read_local_mmr(UVH_RH_GAM_GRU_OVERLAY_CONFIG_MMR
);
816 pr_info("UV: GRU disabled\n");
820 /* Only UV3 has distributed GRU mode */
821 if (is_uv3_hub() && gru
.s3
.mode
) {
822 map_gru_distributed(gru
.v
);
826 base
= (gru
.v
& mask
) >> shift
;
827 map_high("GRU", base
, shift
, shift
, max_pnode
, map_wb
);
828 gru_start_paddr
= ((u64
)base
<< shift
);
829 gru_end_paddr
= gru_start_paddr
+ (1UL << shift
) * (max_pnode
+ 1);
832 static __init
void map_mmr_high(int max_pnode
)
834 union uvh_rh_gam_mmr_overlay_config_mmr_u mmr
;
835 int shift
= UVH_RH_GAM_MMR_OVERLAY_CONFIG_MMR_BASE_SHFT
;
837 mmr
.v
= uv_read_local_mmr(UVH_RH_GAM_MMR_OVERLAY_CONFIG_MMR
);
839 map_high("MMR", mmr
.s
.base
, shift
, shift
, max_pnode
, map_uc
);
841 pr_info("UV: MMR disabled\n");
844 /* UV3/4 have identical MMIOH overlay configs, UV4A is slightly different */
845 static __init
void map_mmioh_high_uv34(int index
, int min_pnode
, int max_pnode
)
847 unsigned long overlay
;
850 unsigned long nasid_mask
;
851 unsigned long m_overlay
;
852 int i
, n
, shift
, m_io
, max_io
;
853 int nasid
, lnasid
, fi
, li
;
858 m_overlay
= UVH_RH_GAM_MMIOH_OVERLAY_CONFIG0_MMR
;
859 overlay
= uv_read_local_mmr(m_overlay
);
860 base
= overlay
& UVH_RH_GAM_MMIOH_OVERLAY_CONFIG0_MMR_BASE_MASK
;
861 mmr
= UVH_RH_GAM_MMIOH_REDIRECT_CONFIG0_MMR
;
862 m_io
= (overlay
& UVH_RH_GAM_MMIOH_OVERLAY_CONFIG0_MMR_M_IO_MASK
)
863 >> UVH_RH_GAM_MMIOH_OVERLAY_CONFIG0_MMR_M_IO_SHFT
;
864 shift
= UVH_RH_GAM_MMIOH_OVERLAY_CONFIG0_MMR_M_IO_SHFT
;
865 n
= UVH_RH_GAM_MMIOH_REDIRECT_CONFIG0_MMR_DEPTH
;
866 nasid_mask
= UVH_RH_GAM_MMIOH_REDIRECT_CONFIG0_MMR_NASID_MASK
;
869 m_overlay
= UVH_RH_GAM_MMIOH_OVERLAY_CONFIG1_MMR
;
870 overlay
= uv_read_local_mmr(m_overlay
);
871 base
= overlay
& UVH_RH_GAM_MMIOH_OVERLAY_CONFIG1_MMR_BASE_MASK
;
872 mmr
= UVH_RH_GAM_MMIOH_REDIRECT_CONFIG1_MMR
;
873 m_io
= (overlay
& UVH_RH_GAM_MMIOH_OVERLAY_CONFIG1_MMR_M_IO_MASK
)
874 >> UVH_RH_GAM_MMIOH_OVERLAY_CONFIG1_MMR_M_IO_SHFT
;
875 shift
= UVH_RH_GAM_MMIOH_OVERLAY_CONFIG1_MMR_M_IO_SHFT
;
876 n
= UVH_RH_GAM_MMIOH_REDIRECT_CONFIG1_MMR_DEPTH
;
877 nasid_mask
= UVH_RH_GAM_MMIOH_REDIRECT_CONFIG1_MMR_NASID_MASK
;
879 pr_info("UV: %s overlay 0x%lx base:0x%lx m_io:%d\n", id
, overlay
, base
, m_io
);
880 if (!(overlay
& UVH_RH_GAM_MMIOH_OVERLAY_CONFIG0_MMR_ENABLE_MASK
)) {
881 pr_info("UV: %s disabled\n", id
);
885 /* Convert to NASID: */
888 max_io
= lnasid
= fi
= li
= -1;
890 for (i
= 0; i
< n
; i
++) {
891 unsigned long m_redirect
= mmr
+ i
* 8;
892 unsigned long redirect
= uv_read_local_mmr(m_redirect
);
894 nasid
= redirect
& nasid_mask
;
896 pr_info("UV: %s redirect base 0x%lx(@0x%lx) 0x%04x\n",
897 id
, redirect
, m_redirect
, nasid
);
900 if (nasid
< min_pnode
|| max_pnode
< nasid
)
903 if (nasid
== lnasid
) {
905 /* Last entry check: */
910 /* Check if we have a cached (or last) redirect to print: */
911 if (lnasid
!= -1 || (i
== n
-1 && nasid
!= -1)) {
912 unsigned long addr1
, addr2
;
922 addr1
= (base
<< shift
) + f
* (1ULL << m_io
);
923 addr2
= (base
<< shift
) + (l
+ 1) * (1ULL << m_io
);
924 pr_info("UV: %s[%03d..%03d] NASID 0x%04x ADDR 0x%016lx - 0x%016lx\n", id
, fi
, li
, lnasid
, addr1
, addr2
);
932 pr_info("UV: %s base:0x%lx shift:%d M_IO:%d MAX_IO:%d\n", id
, base
, shift
, m_io
, max_io
);
935 map_high(id
, base
, shift
, m_io
, max_io
, map_uc
);
938 static __init
void map_mmioh_high(int min_pnode
, int max_pnode
)
940 union uvh_rh_gam_mmioh_overlay_config_mmr_u mmioh
;
941 unsigned long mmr
, base
;
942 int shift
, enable
, m_io
, n_io
;
944 if (is_uv3_hub() || is_uv4_hub()) {
945 /* Map both MMIOH regions: */
946 map_mmioh_high_uv34(0, min_pnode
, max_pnode
);
947 map_mmioh_high_uv34(1, min_pnode
, max_pnode
);
952 mmr
= UV1H_RH_GAM_MMIOH_OVERLAY_CONFIG_MMR
;
953 shift
= UV1H_RH_GAM_MMIOH_OVERLAY_CONFIG_MMR_BASE_SHFT
;
954 mmioh
.v
= uv_read_local_mmr(mmr
);
955 enable
= !!mmioh
.s1
.enable
;
956 base
= mmioh
.s1
.base
;
957 m_io
= mmioh
.s1
.m_io
;
958 n_io
= mmioh
.s1
.n_io
;
959 } else if (is_uv2_hub()) {
960 mmr
= UV2H_RH_GAM_MMIOH_OVERLAY_CONFIG_MMR
;
961 shift
= UV2H_RH_GAM_MMIOH_OVERLAY_CONFIG_MMR_BASE_SHFT
;
962 mmioh
.v
= uv_read_local_mmr(mmr
);
963 enable
= !!mmioh
.s2
.enable
;
964 base
= mmioh
.s2
.base
;
965 m_io
= mmioh
.s2
.m_io
;
966 n_io
= mmioh
.s2
.n_io
;
972 max_pnode
&= (1 << n_io
) - 1;
973 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
);
974 map_high("MMIOH", base
, shift
, m_io
, max_pnode
, map_uc
);
976 pr_info("UV: MMIOH disabled\n");
980 static __init
void map_low_mmrs(void)
982 init_extra_mapping_uc(UV_GLOBAL_MMR32_BASE
, UV_GLOBAL_MMR32_SIZE
);
983 init_extra_mapping_uc(UV_LOCAL_MMR_BASE
, UV_LOCAL_MMR_SIZE
);
986 static __init
void uv_rtc_init(void)
991 status
= uv_bios_freq_base(BIOS_FREQ_BASE_REALTIME_CLOCK
, &ticks_per_sec
);
993 if (status
!= BIOS_STATUS_SUCCESS
|| ticks_per_sec
< 100000) {
994 pr_warn("UV: unable to determine platform RTC clock frequency, guessing.\n");
996 /* BIOS gives wrong value for clock frequency, so guess: */
997 sn_rtc_cycles_per_second
= 1000000000000UL / 30000UL;
999 sn_rtc_cycles_per_second
= ticks_per_sec
;
1004 * percpu heartbeat timer
1006 static void uv_heartbeat(struct timer_list
*timer
)
1008 unsigned char bits
= uv_scir_info
->state
;
1010 /* Flip heartbeat bit: */
1011 bits
^= SCIR_CPU_HEARTBEAT
;
1013 /* Is this CPU idle? */
1014 if (idle_cpu(raw_smp_processor_id()))
1015 bits
&= ~SCIR_CPU_ACTIVITY
;
1017 bits
|= SCIR_CPU_ACTIVITY
;
1019 /* Update system controller interface reg: */
1020 uv_set_scir_bits(bits
);
1022 /* Enable next timer period: */
1023 mod_timer(timer
, jiffies
+ SCIR_CPU_HB_INTERVAL
);
1026 static int uv_heartbeat_enable(unsigned int cpu
)
1028 while (!uv_cpu_scir_info(cpu
)->enabled
) {
1029 struct timer_list
*timer
= &uv_cpu_scir_info(cpu
)->timer
;
1031 uv_set_cpu_scir_bits(cpu
, SCIR_CPU_HEARTBEAT
|SCIR_CPU_ACTIVITY
);
1032 timer_setup(timer
, uv_heartbeat
, TIMER_PINNED
);
1033 timer
->expires
= jiffies
+ SCIR_CPU_HB_INTERVAL
;
1034 add_timer_on(timer
, cpu
);
1035 uv_cpu_scir_info(cpu
)->enabled
= 1;
1037 /* Also ensure that boot CPU is enabled: */
1043 #ifdef CONFIG_HOTPLUG_CPU
1044 static int uv_heartbeat_disable(unsigned int cpu
)
1046 if (uv_cpu_scir_info(cpu
)->enabled
) {
1047 uv_cpu_scir_info(cpu
)->enabled
= 0;
1048 del_timer(&uv_cpu_scir_info(cpu
)->timer
);
1050 uv_set_cpu_scir_bits(cpu
, 0xff);
1054 static __init
void uv_scir_register_cpu_notifier(void)
1056 cpuhp_setup_state_nocalls(CPUHP_AP_ONLINE_DYN
, "x86/x2apic-uvx:online",
1057 uv_heartbeat_enable
, uv_heartbeat_disable
);
1060 #else /* !CONFIG_HOTPLUG_CPU */
1062 static __init
void uv_scir_register_cpu_notifier(void)
1066 static __init
int uv_init_heartbeat(void)
1070 if (is_uv_system()) {
1071 for_each_online_cpu(cpu
)
1072 uv_heartbeat_enable(cpu
);
1078 late_initcall(uv_init_heartbeat
);
1080 #endif /* !CONFIG_HOTPLUG_CPU */
1082 /* Direct Legacy VGA I/O traffic to designated IOH */
1083 static int uv_set_vga_state(struct pci_dev
*pdev
, bool decode
, unsigned int command_bits
, u32 flags
)
1085 int domain
, bus
, rc
;
1087 if (!(flags
& PCI_VGA_STATE_CHANGE_BRIDGE
))
1090 if ((command_bits
& PCI_COMMAND_IO
) == 0)
1093 domain
= pci_domain_nr(pdev
->bus
);
1094 bus
= pdev
->bus
->number
;
1096 rc
= uv_bios_set_legacy_vga_target(decode
, domain
, bus
);
1102 * Called on each CPU to initialize the per_cpu UV data area.
1103 * FIXME: hotplug not supported yet
1105 void uv_cpu_init(void)
1107 /* CPU 0 initialization will be done via uv_system_init. */
1108 if (smp_processor_id() == 0)
1111 uv_hub_info
->nr_online_cpus
++;
1113 if (get_uv_system_type() == UV_NON_UNIQUE_APIC
)
1114 set_x2apic_extra_bits(uv_hub_info
->pnode
);
1118 unsigned char m_val
;
1119 unsigned char n_val
;
1120 unsigned char m_shift
;
1121 unsigned char n_lshift
;
1124 static void get_mn(struct mn
*mnp
)
1126 union uvh_rh_gam_config_mmr_u m_n_config
;
1127 union uv3h_gr0_gam_gr_config_u m_gr_config
;
1129 /* Make sure the whole structure is well initialized: */
1130 memset(mnp
, 0, sizeof(*mnp
));
1132 m_n_config
.v
= uv_read_local_mmr(UVH_RH_GAM_CONFIG_MMR
);
1133 mnp
->n_val
= m_n_config
.s
.n_skt
;
1138 } else if (is_uv3_hub()) {
1139 mnp
->m_val
= m_n_config
.s3
.m_skt
;
1140 m_gr_config
.v
= uv_read_local_mmr(UV3H_GR0_GAM_GR_CONFIG
);
1141 mnp
->n_lshift
= m_gr_config
.s3
.m_skt
;
1142 } else if (is_uv2_hub()) {
1143 mnp
->m_val
= m_n_config
.s2
.m_skt
;
1144 mnp
->n_lshift
= mnp
->m_val
== 40 ? 40 : 39;
1145 } else if (is_uv1_hub()) {
1146 mnp
->m_val
= m_n_config
.s1
.m_skt
;
1147 mnp
->n_lshift
= mnp
->m_val
;
1149 mnp
->m_shift
= mnp
->m_val
? 64 - mnp
->m_val
: 0;
1152 static void __init
uv_init_hub_info(struct uv_hub_info_s
*hi
)
1154 union uvh_node_id_u node_id
;
1158 hi
->gpa_mask
= mn
.m_val
?
1159 (1UL << (mn
.m_val
+ mn
.n_val
)) - 1 :
1160 (1UL << uv_cpuid
.gpa_shift
) - 1;
1162 hi
->m_val
= mn
.m_val
;
1163 hi
->n_val
= mn
.n_val
;
1164 hi
->m_shift
= mn
.m_shift
;
1165 hi
->n_lshift
= mn
.n_lshift
? mn
.n_lshift
: 0;
1166 hi
->hub_revision
= uv_hub_info
->hub_revision
;
1167 hi
->pnode_mask
= uv_cpuid
.pnode_mask
;
1168 hi
->min_pnode
= _min_pnode
;
1169 hi
->min_socket
= _min_socket
;
1170 hi
->pnode_to_socket
= _pnode_to_socket
;
1171 hi
->socket_to_node
= _socket_to_node
;
1172 hi
->socket_to_pnode
= _socket_to_pnode
;
1173 hi
->gr_table_len
= _gr_table_len
;
1174 hi
->gr_table
= _gr_table
;
1176 node_id
.v
= uv_read_local_mmr(UVH_NODE_ID
);
1177 uv_cpuid
.gnode_shift
= max_t(unsigned int, uv_cpuid
.gnode_shift
, mn
.n_val
);
1178 hi
->gnode_extra
= (node_id
.s
.node_id
& ~((1 << uv_cpuid
.gnode_shift
) - 1)) >> 1;
1180 hi
->gnode_upper
= (u64
)hi
->gnode_extra
<< mn
.m_val
;
1183 hi
->global_mmr_base
= uv_gp_table
->mmr_base
;
1184 hi
->global_mmr_shift
= uv_gp_table
->mmr_shift
;
1185 hi
->global_gru_base
= uv_gp_table
->gru_base
;
1186 hi
->global_gru_shift
= uv_gp_table
->gru_shift
;
1187 hi
->gpa_shift
= uv_gp_table
->gpa_shift
;
1188 hi
->gpa_mask
= (1UL << hi
->gpa_shift
) - 1;
1190 hi
->global_mmr_base
= uv_read_local_mmr(UVH_RH_GAM_MMR_OVERLAY_CONFIG_MMR
) & ~UV_MMR_ENABLE
;
1191 hi
->global_mmr_shift
= _UV_GLOBAL_MMR64_PNODE_SHIFT
;
1194 get_lowmem_redirect(&hi
->lowmem_remap_base
, &hi
->lowmem_remap_top
);
1196 hi
->apic_pnode_shift
= uv_cpuid
.socketid_shift
;
1198 /* Show system specific info: */
1199 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
);
1200 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
);
1201 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
);
1202 pr_info("UV: gnode_upper:0x%lx gnode_extra:0x%x\n", hi
->gnode_upper
, hi
->gnode_extra
);
1205 static void __init
decode_gam_params(unsigned long ptr
)
1207 uv_gp_table
= (struct uv_gam_parameters
*)ptr
;
1209 pr_info("UV: GAM Params...\n");
1210 pr_info("UV: mmr_base/shift:0x%llx/%d gru_base/shift:0x%llx/%d gpa_shift:%d\n",
1211 uv_gp_table
->mmr_base
, uv_gp_table
->mmr_shift
,
1212 uv_gp_table
->gru_base
, uv_gp_table
->gru_shift
,
1213 uv_gp_table
->gpa_shift
);
1216 static void __init
decode_gam_rng_tbl(unsigned long ptr
)
1218 struct uv_gam_range_entry
*gre
= (struct uv_gam_range_entry
*)ptr
;
1219 unsigned long lgre
= 0;
1221 int sock_min
= 999999, pnode_min
= 99999;
1222 int sock_max
= -1, pnode_max
= -1;
1225 for (; gre
->type
!= UV_GAM_RANGE_TYPE_UNUSED
; gre
++) {
1226 unsigned long size
= ((unsigned long)(gre
->limit
- lgre
)
1227 << UV_GAM_RANGE_SHFT
);
1229 char suffix
[] = " KMGTPE";
1232 while (size
> 9999 && order
< sizeof(suffix
)) {
1237 /* adjust max block size to current range start */
1238 if (gre
->type
== 1 || gre
->type
== 2)
1239 if (adj_blksize(lgre
))
1243 pr_info("UV: GAM Range Table...\n");
1244 pr_info("UV: # %20s %14s %6s %4s %5s %3s %2s\n", "Range", "", "Size", "Type", "NASID", "SID", "PN");
1246 pr_info("UV: %2d: 0x%014lx-0x%014lx%c %5lu%c %3d %04x %02x %02x\n",
1248 (unsigned long)lgre
<< UV_GAM_RANGE_SHFT
,
1249 (unsigned long)gre
->limit
<< UV_GAM_RANGE_SHFT
,
1250 flag
, size
, suffix
[order
],
1251 gre
->type
, gre
->nasid
, gre
->sockid
, gre
->pnode
);
1253 /* update to next range start */
1255 if (sock_min
> gre
->sockid
)
1256 sock_min
= gre
->sockid
;
1257 if (sock_max
< gre
->sockid
)
1258 sock_max
= gre
->sockid
;
1259 if (pnode_min
> gre
->pnode
)
1260 pnode_min
= gre
->pnode
;
1261 if (pnode_max
< gre
->pnode
)
1262 pnode_max
= gre
->pnode
;
1264 _min_socket
= sock_min
;
1265 _max_socket
= sock_max
;
1266 _min_pnode
= pnode_min
;
1267 _max_pnode
= pnode_max
;
1268 _gr_table_len
= index
;
1270 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
);
1273 static int __init
decode_uv_systab(void)
1275 struct uv_systab
*st
;
1278 if (uv_hub_info
->hub_revision
< UV4_HUB_REVISION_BASE
)
1279 return 0; /* No extended UVsystab required */
1282 if ((!st
) || (st
->revision
< UV_SYSTAB_VERSION_UV4_LATEST
)) {
1283 int rev
= st
? st
->revision
: 0;
1285 pr_err("UV: BIOS UVsystab version(%x) mismatch, expecting(%x)\n", rev
, UV_SYSTAB_VERSION_UV4_LATEST
);
1286 pr_err("UV: Cannot support UV operations, switching to generic PC\n");
1287 uv_system_type
= UV_NONE
;
1292 for (i
= 0; st
->entry
[i
].type
!= UV_SYSTAB_TYPE_UNUSED
; i
++) {
1293 unsigned long ptr
= st
->entry
[i
].offset
;
1298 ptr
= ptr
+ (unsigned long)st
;
1300 switch (st
->entry
[i
].type
) {
1301 case UV_SYSTAB_TYPE_GAM_PARAMS
:
1302 decode_gam_params(ptr
);
1305 case UV_SYSTAB_TYPE_GAM_RNG_TBL
:
1306 decode_gam_rng_tbl(ptr
);
1314 * Set up physical blade translations from UVH_NODE_PRESENT_TABLE
1315 * .. NB: UVH_NODE_PRESENT_TABLE is going away,
1316 * .. being replaced by GAM Range Table
1318 static __init
void boot_init_possible_blades(struct uv_hub_info_s
*hub_info
)
1322 pr_info("UV: NODE_PRESENT_DEPTH = %d\n", UVH_NODE_PRESENT_TABLE_DEPTH
);
1323 for (i
= 0; i
< UVH_NODE_PRESENT_TABLE_DEPTH
; i
++) {
1326 np
= uv_read_local_mmr(UVH_NODE_PRESENT_TABLE
+ i
* 8);
1328 pr_info("UV: NODE_PRESENT(%d) = 0x%016lx\n", i
, np
);
1330 uv_pb
+= hweight64(np
);
1332 if (uv_possible_blades
!= uv_pb
)
1333 uv_possible_blades
= uv_pb
;
1336 static void __init
build_socket_tables(void)
1338 struct uv_gam_range_entry
*gre
= uv_gre_table
;
1341 int minsock
= _min_socket
;
1342 int maxsock
= _max_socket
;
1343 int minpnode
= _min_pnode
;
1344 int maxpnode
= _max_pnode
;
1348 if (is_uv1_hub() || is_uv2_hub() || is_uv3_hub()) {
1349 pr_info("UV: No UVsystab socket table, ignoring\n");
1352 pr_crit("UV: Error: UVsystab address translations not available!\n");
1356 /* Build socket id -> node id, pnode */
1357 num
= maxsock
- minsock
+ 1;
1358 bytes
= num
* sizeof(_socket_to_node
[0]);
1359 _socket_to_node
= kmalloc(bytes
, GFP_KERNEL
);
1360 _socket_to_pnode
= kmalloc(bytes
, GFP_KERNEL
);
1362 nump
= maxpnode
- minpnode
+ 1;
1363 bytes
= nump
* sizeof(_pnode_to_socket
[0]);
1364 _pnode_to_socket
= kmalloc(bytes
, GFP_KERNEL
);
1365 BUG_ON(!_socket_to_node
|| !_socket_to_pnode
|| !_pnode_to_socket
);
1367 for (i
= 0; i
< num
; i
++)
1368 _socket_to_node
[i
] = _socket_to_pnode
[i
] = SOCK_EMPTY
;
1370 for (i
= 0; i
< nump
; i
++)
1371 _pnode_to_socket
[i
] = SOCK_EMPTY
;
1373 /* Fill in pnode/node/addr conversion list values: */
1374 pr_info("UV: GAM Building socket/pnode conversion tables\n");
1375 for (; gre
->type
!= UV_GAM_RANGE_TYPE_UNUSED
; gre
++) {
1376 if (gre
->type
== UV_GAM_RANGE_TYPE_HOLE
)
1378 i
= gre
->sockid
- minsock
;
1380 if (_socket_to_pnode
[i
] != SOCK_EMPTY
)
1382 _socket_to_pnode
[i
] = gre
->pnode
;
1384 i
= gre
->pnode
- minpnode
;
1385 _pnode_to_socket
[i
] = gre
->sockid
;
1387 pr_info("UV: sid:%02x type:%d nasid:%04x pn:%02x pn2s:%2x\n",
1388 gre
->sockid
, gre
->type
, gre
->nasid
,
1389 _socket_to_pnode
[gre
->sockid
- minsock
],
1390 _pnode_to_socket
[gre
->pnode
- minpnode
]);
1393 /* Set socket -> node values: */
1394 lnid
= NUMA_NO_NODE
;
1395 for_each_present_cpu(cpu
) {
1396 int nid
= cpu_to_node(cpu
);
1402 apicid
= per_cpu(x86_cpu_to_apicid
, cpu
);
1403 sockid
= apicid
>> uv_cpuid
.socketid_shift
;
1404 _socket_to_node
[sockid
- minsock
] = nid
;
1405 pr_info("UV: sid:%02x: apicid:%04x node:%2d\n",
1406 sockid
, apicid
, nid
);
1409 /* Set up physical blade to pnode translation from GAM Range Table: */
1410 bytes
= num_possible_nodes() * sizeof(_node_to_pnode
[0]);
1411 _node_to_pnode
= kmalloc(bytes
, GFP_KERNEL
);
1412 BUG_ON(!_node_to_pnode
);
1414 for (lnid
= 0; lnid
< num_possible_nodes(); lnid
++) {
1415 unsigned short sockid
;
1417 for (sockid
= minsock
; sockid
<= maxsock
; sockid
++) {
1418 if (lnid
== _socket_to_node
[sockid
- minsock
]) {
1419 _node_to_pnode
[lnid
] = _socket_to_pnode
[sockid
- minsock
];
1423 if (sockid
> maxsock
) {
1424 pr_err("UV: socket for node %d not found!\n", lnid
);
1430 * If socket id == pnode or socket id == node for all nodes,
1431 * system runs faster by removing corresponding conversion table.
1433 pr_info("UV: Checking socket->node/pnode for identity maps\n");
1435 for (i
= 0; i
< num
; i
++)
1436 if (_socket_to_node
[i
] == SOCK_EMPTY
|| i
!= _socket_to_node
[i
])
1439 kfree(_socket_to_node
);
1440 _socket_to_node
= NULL
;
1441 pr_info("UV: 1:1 socket_to_node table removed\n");
1444 if (minsock
== minpnode
) {
1445 for (i
= 0; i
< num
; i
++)
1446 if (_socket_to_pnode
[i
] != SOCK_EMPTY
&&
1447 _socket_to_pnode
[i
] != i
+ minpnode
)
1450 kfree(_socket_to_pnode
);
1451 _socket_to_pnode
= NULL
;
1452 pr_info("UV: 1:1 socket_to_pnode table removed\n");
1457 static void __init
uv_system_init_hub(void)
1459 struct uv_hub_info_s hub_info
= {0};
1460 int bytes
, cpu
, nodeid
;
1461 unsigned short min_pnode
= 9999, max_pnode
= 0;
1462 char *hub
= is_uv4_hub() ? "UV400" :
1463 is_uv3_hub() ? "UV300" :
1464 is_uv2_hub() ? "UV2000/3000" :
1465 is_uv1_hub() ? "UV100/1000" : NULL
;
1468 pr_err("UV: Unknown/unsupported UV hub\n");
1471 pr_info("UV: Found %s hub\n", hub
);
1475 /* Get uv_systab for decoding: */
1478 /* If there's an UVsystab problem then abort UV init: */
1479 if (decode_uv_systab() < 0)
1482 build_socket_tables();
1483 build_uv_gr_table();
1485 uv_init_hub_info(&hub_info
);
1486 uv_possible_blades
= num_possible_nodes();
1487 if (!_node_to_pnode
)
1488 boot_init_possible_blades(&hub_info
);
1490 /* uv_num_possible_blades() is really the hub count: */
1491 pr_info("UV: Found %d hubs, %d nodes, %d CPUs\n", uv_num_possible_blades(), num_possible_nodes(), num_possible_cpus());
1493 uv_bios_get_sn_info(0, &uv_type
, &sn_partition_id
, &sn_coherency_id
, &sn_region_size
, &system_serial_number
);
1494 hub_info
.coherency_domain_number
= sn_coherency_id
;
1497 bytes
= sizeof(void *) * uv_num_possible_blades();
1498 __uv_hub_info_list
= kzalloc(bytes
, GFP_KERNEL
);
1499 BUG_ON(!__uv_hub_info_list
);
1501 bytes
= sizeof(struct uv_hub_info_s
);
1502 for_each_node(nodeid
) {
1503 struct uv_hub_info_s
*new_hub
;
1505 if (__uv_hub_info_list
[nodeid
]) {
1506 pr_err("UV: Node %d UV HUB already initialized!?\n", nodeid
);
1510 /* Allocate new per hub info list */
1511 new_hub
= (nodeid
== 0) ? &uv_hub_info_node0
: kzalloc_node(bytes
, GFP_KERNEL
, nodeid
);
1513 __uv_hub_info_list
[nodeid
] = new_hub
;
1514 new_hub
= uv_hub_info_list(nodeid
);
1516 *new_hub
= hub_info
;
1518 /* Use information from GAM table if available: */
1520 new_hub
->pnode
= _node_to_pnode
[nodeid
];
1521 else /* Or fill in during CPU loop: */
1522 new_hub
->pnode
= 0xffff;
1524 new_hub
->numa_blade_id
= uv_node_to_blade_id(nodeid
);
1525 new_hub
->memory_nid
= NUMA_NO_NODE
;
1526 new_hub
->nr_possible_cpus
= 0;
1527 new_hub
->nr_online_cpus
= 0;
1530 /* Initialize per CPU info: */
1531 for_each_possible_cpu(cpu
) {
1532 int apicid
= per_cpu(x86_cpu_to_apicid
, cpu
);
1534 unsigned short pnode
;
1536 nodeid
= cpu_to_node(cpu
);
1537 numa_node_id
= numa_cpu_node(cpu
);
1538 pnode
= uv_apicid_to_pnode(apicid
);
1540 uv_cpu_info_per(cpu
)->p_uv_hub_info
= uv_hub_info_list(nodeid
);
1541 uv_cpu_info_per(cpu
)->blade_cpu_id
= uv_cpu_hub_info(cpu
)->nr_possible_cpus
++;
1542 if (uv_cpu_hub_info(cpu
)->memory_nid
== NUMA_NO_NODE
)
1543 uv_cpu_hub_info(cpu
)->memory_nid
= cpu_to_node(cpu
);
1545 /* Init memoryless node: */
1546 if (nodeid
!= numa_node_id
&&
1547 uv_hub_info_list(numa_node_id
)->pnode
== 0xffff)
1548 uv_hub_info_list(numa_node_id
)->pnode
= pnode
;
1549 else if (uv_cpu_hub_info(cpu
)->pnode
== 0xffff)
1550 uv_cpu_hub_info(cpu
)->pnode
= pnode
;
1552 uv_cpu_scir_info(cpu
)->offset
= uv_scir_offset(apicid
);
1555 for_each_node(nodeid
) {
1556 unsigned short pnode
= uv_hub_info_list(nodeid
)->pnode
;
1558 /* Add pnode info for pre-GAM list nodes without CPUs: */
1559 if (pnode
== 0xffff) {
1560 unsigned long paddr
;
1562 paddr
= node_start_pfn(nodeid
) << PAGE_SHIFT
;
1563 pnode
= uv_gpa_to_pnode(uv_soc_phys_ram_to_gpa(paddr
));
1564 uv_hub_info_list(nodeid
)->pnode
= pnode
;
1566 min_pnode
= min(pnode
, min_pnode
);
1567 max_pnode
= max(pnode
, max_pnode
);
1568 pr_info("UV: UVHUB node:%2d pn:%02x nrcpus:%d\n",
1570 uv_hub_info_list(nodeid
)->pnode
,
1571 uv_hub_info_list(nodeid
)->nr_possible_cpus
);
1574 pr_info("UV: min_pnode:%02x max_pnode:%02x\n", min_pnode
, max_pnode
);
1575 map_gru_high(max_pnode
);
1576 map_mmr_high(max_pnode
);
1577 map_mmioh_high(min_pnode
, max_pnode
);
1581 uv_scir_register_cpu_notifier();
1582 proc_mkdir("sgi_uv", NULL
);
1584 /* Register Legacy VGA I/O redirection handler: */
1585 pci_register_set_vga_state(uv_set_vga_state
);
1588 * For a kdump kernel the reset must be BOOT_ACPI, not BOOT_EFI, as
1589 * EFI is not enabled in the kdump kernel:
1591 if (is_kdump_kernel())
1592 reboot_type
= BOOT_ACPI
;
1596 * There is a small amount of UV specific code needed to initialize a
1597 * UV system that does not have a "UV HUB" (referred to as "hubless").
1599 void __init
uv_system_init(void)
1601 if (likely(!is_uv_system() && !is_uv_hubless()))
1605 uv_system_init_hub();
1607 uv_nmi_setup_hubless();
1610 apic_driver(apic_x2apic_uv_x
);