2008-03-29 03:12:16 +08:00
|
|
|
/*
|
|
|
|
* This file is subject to the terms and conditions of the GNU General Public
|
|
|
|
* License. See the file "COPYING" in the main directory of this archive
|
|
|
|
* for more details.
|
|
|
|
*
|
|
|
|
* SGI UV APIC functions (note: not an Intel compatible APIC)
|
|
|
|
*
|
2014-03-31 22:37:00 +08:00
|
|
|
* Copyright (C) 2007-2014 Silicon Graphics, Inc. All rights reserved.
|
2008-03-29 03:12:16 +08:00
|
|
|
*/
|
2019-07-23 02:47:11 +08:00
|
|
|
#include <linux/crash_dump.h>
|
|
|
|
#include <linux/cpuhotplug.h>
|
2008-03-29 03:12:16 +08:00
|
|
|
#include <linux/cpumask.h>
|
2009-02-26 21:10:10 +08:00
|
|
|
#include <linux/proc_fs.h>
|
2019-07-23 02:47:11 +08:00
|
|
|
#include <linux/memory.h>
|
2016-07-14 08:18:56 +08:00
|
|
|
#include <linux/export.h>
|
2010-02-03 06:38:14 +08:00
|
|
|
#include <linux/pci.h>
|
2019-09-10 22:58:40 +08:00
|
|
|
#include <linux/acpi.h>
|
2019-09-10 22:58:46 +08:00
|
|
|
#include <linux/efi.h>
|
2009-02-26 21:10:10 +08:00
|
|
|
|
2019-07-23 02:47:11 +08:00
|
|
|
#include <asm/e820/api.h>
|
2008-03-29 03:12:16 +08:00
|
|
|
#include <asm/uv/uv_mmrs.h>
|
|
|
|
#include <asm/uv/uv_hub.h>
|
2008-07-10 04:27:19 +08:00
|
|
|
#include <asm/uv/bios.h>
|
2009-02-26 21:10:10 +08:00
|
|
|
#include <asm/uv/uv.h>
|
|
|
|
#include <asm/apic.h>
|
2011-05-10 00:35:19 +08:00
|
|
|
|
2019-07-23 02:47:15 +08:00
|
|
|
static DEFINE_PER_CPU(int, x2apic_extra_bits);
|
2008-07-23 04:20:22 +08:00
|
|
|
|
2017-01-14 16:26:12 +08:00
|
|
|
static enum uv_system_type uv_system_type;
|
2019-09-10 22:58:44 +08:00
|
|
|
static int uv_hubbed_system;
|
2019-09-10 22:58:41 +08:00
|
|
|
static int uv_hubless_system;
|
2017-01-14 16:26:12 +08:00
|
|
|
static u64 gru_start_paddr, gru_end_paddr;
|
|
|
|
static u64 gru_dist_base, gru_first_node_paddr = -1LL, gru_last_node_paddr;
|
|
|
|
static u64 gru_dist_lmask, gru_dist_umask;
|
|
|
|
static union uvh_apicid uvh_apicid;
|
2010-02-03 06:38:14 +08:00
|
|
|
|
2019-09-10 22:58:40 +08:00
|
|
|
/* Unpack OEM/TABLE ID's to be NULL terminated strings */
|
|
|
|
static u8 oem_id[ACPI_OEM_ID_SIZE + 1];
|
|
|
|
static u8 oem_table_id[ACPI_OEM_TABLE_ID_SIZE + 1];
|
|
|
|
|
2017-01-14 16:26:12 +08:00
|
|
|
/* Information derived from CPUID: */
|
2016-04-30 05:54:17 +08:00
|
|
|
static struct {
|
|
|
|
unsigned int apicid_shift;
|
|
|
|
unsigned int apicid_mask;
|
|
|
|
unsigned int socketid_shift; /* aka pnode_shift for UV1/2/3 */
|
|
|
|
unsigned int pnode_mask;
|
|
|
|
unsigned int gpa_shift;
|
2017-01-13 23:21:12 +08:00
|
|
|
unsigned int gnode_shift;
|
2016-04-30 05:54:17 +08:00
|
|
|
} uv_cpuid;
|
|
|
|
|
2020-05-05 01:15:23 +08:00
|
|
|
static int uv_min_hub_revision_id;
|
2017-01-14 16:26:12 +08:00
|
|
|
|
2010-11-17 06:23:52 +08:00
|
|
|
unsigned int uv_apicid_hibits;
|
2009-11-20 04:23:41 +08:00
|
|
|
|
2011-05-21 08:51:20 +08:00
|
|
|
static struct apic apic_x2apic_uv_x;
|
2016-04-30 05:54:15 +08:00
|
|
|
static struct uv_hub_info_s uv_hub_info_node0;
|
2011-05-21 08:51:20 +08:00
|
|
|
|
2017-01-14 16:26:12 +08:00
|
|
|
/* Set this to use hardware error handler instead of kernel panic: */
|
2016-04-30 05:54:06 +08:00
|
|
|
static int disable_uv_undefined_panic = 1;
|
2017-01-14 16:26:12 +08:00
|
|
|
|
2016-04-30 05:54:06 +08:00
|
|
|
unsigned long uv_undefined(char *str)
|
|
|
|
{
|
|
|
|
if (likely(!disable_uv_undefined_panic))
|
|
|
|
panic("UV: error: undefined MMR: %s\n", str);
|
|
|
|
else
|
|
|
|
pr_crit("UV: error: undefined MMR: %s\n", str);
|
2017-01-14 16:26:12 +08:00
|
|
|
|
|
|
|
/* Cause a machine fault: */
|
|
|
|
return ~0ul;
|
2016-04-30 05:54:06 +08:00
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(uv_undefined);
|
|
|
|
|
2010-12-01 03:55:39 +08:00
|
|
|
static unsigned long __init uv_early_read_mmr(unsigned long addr)
|
|
|
|
{
|
|
|
|
unsigned long val, *mmr;
|
|
|
|
|
|
|
|
mmr = early_ioremap(UV_LOCAL_MMR_BASE | addr, sizeof(*mmr));
|
|
|
|
val = *mmr;
|
|
|
|
early_iounmap(mmr, sizeof(*mmr));
|
2017-01-14 16:26:12 +08:00
|
|
|
|
2010-12-01 03:55:39 +08:00
|
|
|
return val;
|
|
|
|
}
|
|
|
|
|
2009-11-24 06:46:07 +08:00
|
|
|
static inline bool is_GRU_range(u64 start, u64 end)
|
2009-11-20 04:23:41 +08:00
|
|
|
{
|
2013-05-29 23:56:09 +08:00
|
|
|
if (gru_dist_base) {
|
2017-01-14 16:26:12 +08:00
|
|
|
u64 su = start & gru_dist_umask; /* Upper (incl pnode) bits */
|
|
|
|
u64 sl = start & gru_dist_lmask; /* Base offset bits */
|
2013-05-29 23:56:09 +08:00
|
|
|
u64 eu = end & gru_dist_umask;
|
|
|
|
u64 el = end & gru_dist_lmask;
|
|
|
|
|
2017-01-14 16:26:12 +08:00
|
|
|
/* Must reside completely within a single GRU range: */
|
2013-05-29 23:56:09 +08:00
|
|
|
return (sl == gru_dist_base && el == gru_dist_base &&
|
|
|
|
su >= gru_first_node_paddr &&
|
|
|
|
su <= gru_last_node_paddr &&
|
|
|
|
eu == su);
|
|
|
|
} else {
|
|
|
|
return start >= gru_start_paddr && end <= gru_end_paddr;
|
|
|
|
}
|
2009-11-20 04:23:41 +08:00
|
|
|
}
|
|
|
|
|
2009-11-24 06:46:07 +08:00
|
|
|
static bool uv_is_untracked_pat_range(u64 start, u64 end)
|
2009-11-20 04:23:41 +08:00
|
|
|
{
|
|
|
|
return is_ISA_range(start, end) || is_GRU_range(start, end);
|
|
|
|
}
|
2008-07-22 13:08:21 +08:00
|
|
|
|
2010-12-01 03:55:40 +08:00
|
|
|
static int __init early_get_pnodeid(void)
|
2009-04-17 22:24:47 +08:00
|
|
|
{
|
|
|
|
union uvh_node_id_u node_id;
|
2010-12-01 03:55:40 +08:00
|
|
|
union uvh_rh_gam_config_mmr_u m_n_config;
|
|
|
|
int pnode;
|
2010-01-13 05:09:04 +08:00
|
|
|
|
|
|
|
/* Currently, all blades have same revision number */
|
2010-12-01 03:55:39 +08:00
|
|
|
node_id.v = uv_early_read_mmr(UVH_NODE_ID);
|
2010-12-01 03:55:40 +08:00
|
|
|
m_n_config.v = uv_early_read_mmr(UVH_RH_GAM_CONFIG_MMR);
|
2010-01-13 05:09:04 +08:00
|
|
|
uv_min_hub_revision_id = node_id.s.revision;
|
|
|
|
|
2013-02-12 03:45:12 +08:00
|
|
|
switch (node_id.s.part_number) {
|
|
|
|
case UV2_HUB_PART_NUMBER:
|
|
|
|
case UV2_HUB_PART_NUMBER_X:
|
2011-11-30 05:00:58 +08:00
|
|
|
uv_min_hub_revision_id += UV2_HUB_REVISION_BASE - 1;
|
2013-02-12 03:45:12 +08:00
|
|
|
break;
|
|
|
|
case UV3_HUB_PART_NUMBER:
|
|
|
|
case UV3_HUB_PART_NUMBER_X:
|
2013-10-15 00:17:34 +08:00
|
|
|
uv_min_hub_revision_id += UV3_HUB_REVISION_BASE;
|
2013-02-12 03:45:12 +08:00
|
|
|
break;
|
2018-01-09 03:40:01 +08:00
|
|
|
|
|
|
|
/* Update: UV4A has only a modified revision to indicate HUB fixes */
|
2016-04-30 05:54:05 +08:00
|
|
|
case UV4_HUB_PART_NUMBER:
|
|
|
|
uv_min_hub_revision_id += UV4_HUB_REVISION_BASE - 1;
|
2017-01-13 23:21:12 +08:00
|
|
|
uv_cpuid.gnode_shift = 2; /* min partition is 4 sockets */
|
2016-04-30 05:54:05 +08:00
|
|
|
break;
|
2013-02-12 03:45:12 +08:00
|
|
|
}
|
2011-05-12 01:50:28 +08:00
|
|
|
|
|
|
|
uv_hub_info->hub_revision = uv_min_hub_revision_id;
|
2016-04-30 05:54:17 +08:00
|
|
|
uv_cpuid.pnode_mask = (1 << m_n_config.s.n_skt) - 1;
|
|
|
|
pnode = (node_id.s.node_id >> 1) & uv_cpuid.pnode_mask;
|
2017-01-14 16:26:12 +08:00
|
|
|
uv_cpuid.gpa_shift = 46; /* Default unless changed */
|
2016-04-30 05:54:17 +08:00
|
|
|
|
|
|
|
pr_info("UV: rev:%d part#:%x nodeid:%04x n_skt:%d pnmsk:%x pn:%x\n",
|
|
|
|
node_id.s.revision, node_id.s.part_number, node_id.s.node_id,
|
|
|
|
m_n_config.s.n_skt, uv_cpuid.pnode_mask, pnode);
|
2010-12-01 03:55:40 +08:00
|
|
|
return pnode;
|
2009-04-17 22:24:47 +08:00
|
|
|
}
|
|
|
|
|
2017-10-24 03:18:42 +08:00
|
|
|
static void __init uv_tsc_check_sync(void)
|
2017-10-13 00:32:06 +08:00
|
|
|
{
|
|
|
|
u64 mmr;
|
|
|
|
int sync_state;
|
|
|
|
int mmr_shift;
|
|
|
|
char *state;
|
|
|
|
bool valid;
|
|
|
|
|
|
|
|
/* Accommodate different UV arch BIOSes */
|
|
|
|
mmr = uv_early_read_mmr(UVH_TSC_SYNC_MMR);
|
|
|
|
mmr_shift =
|
|
|
|
is_uv1_hub() ? 0 :
|
|
|
|
is_uv2_hub() ? UVH_TSC_SYNC_SHIFT_UV2K : UVH_TSC_SYNC_SHIFT;
|
|
|
|
if (mmr_shift)
|
|
|
|
sync_state = (mmr >> mmr_shift) & UVH_TSC_SYNC_MASK;
|
|
|
|
else
|
|
|
|
sync_state = 0;
|
|
|
|
|
|
|
|
switch (sync_state) {
|
|
|
|
case UVH_TSC_SYNC_VALID:
|
|
|
|
state = "in sync";
|
|
|
|
valid = true;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case UVH_TSC_SYNC_INVALID:
|
|
|
|
state = "unstable";
|
|
|
|
valid = false;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
state = "unknown: assuming valid";
|
|
|
|
valid = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
pr_info("UV: TSC sync state from BIOS:0%d(%s)\n", sync_state, state);
|
|
|
|
|
|
|
|
/* Mark flag that says TSC != 0 is valid for socket 0 */
|
|
|
|
if (valid)
|
|
|
|
mark_tsc_async_resets("UV BIOS");
|
|
|
|
else
|
|
|
|
mark_tsc_unstable("UV BIOS");
|
|
|
|
}
|
|
|
|
|
2017-01-14 16:26:12 +08:00
|
|
|
/* [Copied from arch/x86/kernel/cpu/topology.c:detect_extended_topology()] */
|
|
|
|
|
|
|
|
#define SMT_LEVEL 0 /* Leaf 0xb SMT level */
|
|
|
|
#define INVALID_TYPE 0 /* Leaf 0xb sub-leaf types */
|
|
|
|
#define SMT_TYPE 1
|
|
|
|
#define CORE_TYPE 2
|
2016-04-30 05:54:17 +08:00
|
|
|
#define LEAFB_SUBTYPE(ecx) (((ecx) >> 8) & 0xff)
|
|
|
|
#define BITS_SHIFT_NEXT_LEVEL(eax) ((eax) & 0x1f)
|
|
|
|
|
|
|
|
static void set_x2apic_bits(void)
|
|
|
|
{
|
|
|
|
unsigned int eax, ebx, ecx, edx, sub_index;
|
|
|
|
unsigned int sid_shift;
|
|
|
|
|
|
|
|
cpuid(0, &eax, &ebx, &ecx, &edx);
|
|
|
|
if (eax < 0xb) {
|
|
|
|
pr_info("UV: CPU does not have CPUID.11\n");
|
|
|
|
return;
|
|
|
|
}
|
2017-01-14 16:26:12 +08:00
|
|
|
|
2016-04-30 05:54:17 +08:00
|
|
|
cpuid_count(0xb, SMT_LEVEL, &eax, &ebx, &ecx, &edx);
|
|
|
|
if (ebx == 0 || (LEAFB_SUBTYPE(ecx) != SMT_TYPE)) {
|
|
|
|
pr_info("UV: CPUID.11 not implemented\n");
|
|
|
|
return;
|
|
|
|
}
|
2017-01-14 16:26:12 +08:00
|
|
|
|
2016-04-30 05:54:17 +08:00
|
|
|
sid_shift = BITS_SHIFT_NEXT_LEVEL(eax);
|
|
|
|
sub_index = 1;
|
|
|
|
do {
|
|
|
|
cpuid_count(0xb, sub_index, &eax, &ebx, &ecx, &edx);
|
|
|
|
if (LEAFB_SUBTYPE(ecx) == CORE_TYPE) {
|
|
|
|
sid_shift = BITS_SHIFT_NEXT_LEVEL(eax);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
sub_index++;
|
|
|
|
} while (LEAFB_SUBTYPE(ecx) != INVALID_TYPE);
|
2017-01-14 16:26:12 +08:00
|
|
|
|
|
|
|
uv_cpuid.apicid_shift = 0;
|
|
|
|
uv_cpuid.apicid_mask = (~(-1 << sid_shift));
|
2016-04-30 05:54:17 +08:00
|
|
|
uv_cpuid.socketid_shift = sid_shift;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void __init early_get_apic_socketid_shift(void)
|
2010-10-27 05:27:28 +08:00
|
|
|
{
|
2016-04-30 05:54:17 +08:00
|
|
|
if (is_uv2_hub() || is_uv3_hub())
|
|
|
|
uvh_apicid.v = uv_early_read_mmr(UVH_APICID);
|
|
|
|
|
|
|
|
set_x2apic_bits();
|
|
|
|
|
2017-01-14 16:26:12 +08:00
|
|
|
pr_info("UV: apicid_shift:%d apicid_mask:0x%x\n", uv_cpuid.apicid_shift, uv_cpuid.apicid_mask);
|
|
|
|
pr_info("UV: socketid_shift:%d pnode_mask:0x%x\n", uv_cpuid.socketid_shift, uv_cpuid.pnode_mask);
|
2010-10-27 05:27:28 +08:00
|
|
|
}
|
|
|
|
|
2010-11-17 06:23:52 +08:00
|
|
|
/*
|
|
|
|
* Add an extra bit as dictated by bios to the destination apicid of
|
|
|
|
* interrupts potentially passing through the UV HUB. This prevents
|
|
|
|
* a deadlock between interrupts and IO port operations.
|
|
|
|
*/
|
|
|
|
static void __init uv_set_apicid_hibit(void)
|
|
|
|
{
|
2011-05-12 01:50:28 +08:00
|
|
|
union uv1h_lb_target_physical_apic_id_mask_u apicid_mask;
|
2010-11-17 06:23:52 +08:00
|
|
|
|
2011-05-12 01:50:28 +08:00
|
|
|
if (is_uv1_hub()) {
|
2017-01-14 16:26:12 +08:00
|
|
|
apicid_mask.v = uv_early_read_mmr(UV1H_LB_TARGET_PHYSICAL_APIC_ID_MASK);
|
|
|
|
uv_apicid_hibits = apicid_mask.s1.bit_enables & UV_APICID_HIBIT_MASK;
|
2011-05-12 01:50:28 +08:00
|
|
|
}
|
2010-11-17 06:23:52 +08:00
|
|
|
}
|
|
|
|
|
2019-09-10 22:58:40 +08:00
|
|
|
static void __init uv_stringify(int len, char *to, char *from)
|
|
|
|
{
|
|
|
|
/* Relies on 'to' being NULL chars so result will be NULL terminated */
|
|
|
|
strncpy(to, from, len-1);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int __init uv_acpi_madt_oem_check(char *_oem_id, char *_oem_table_id)
|
2008-07-22 13:08:21 +08:00
|
|
|
{
|
2015-04-10 02:26:30 +08:00
|
|
|
int pnodeid;
|
|
|
|
int uv_apic;
|
2010-01-16 02:09:09 +08:00
|
|
|
|
2019-09-10 22:58:40 +08:00
|
|
|
uv_stringify(sizeof(oem_id), oem_id, _oem_id);
|
|
|
|
uv_stringify(sizeof(oem_table_id), oem_table_id, _oem_table_id);
|
|
|
|
|
2017-01-26 00:35:18 +08:00
|
|
|
if (strncmp(oem_id, "SGI", 3) != 0) {
|
2019-09-10 22:58:41 +08:00
|
|
|
if (strncmp(oem_id, "NSGI", 4) != 0)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
/* UV4 Hubless, CH, (0x11:UV4+Any) */
|
|
|
|
if (strncmp(oem_id, "NSGI4", 5) == 0)
|
|
|
|
uv_hubless_system = 0x11;
|
|
|
|
|
|
|
|
/* UV3 Hubless, UV300/MC990X w/o hub (0x9:UV3+Any) */
|
|
|
|
else
|
|
|
|
uv_hubless_system = 0x9;
|
|
|
|
|
|
|
|
pr_info("UV: OEM IDs %s/%s, HUBLESS(0x%x)\n",
|
|
|
|
oem_id, oem_table_id, uv_hubless_system);
|
|
|
|
|
2015-04-10 02:26:29 +08:00
|
|
|
return 0;
|
2017-01-26 00:35:18 +08:00
|
|
|
}
|
2015-04-10 02:26:29 +08:00
|
|
|
|
2016-08-02 02:40:53 +08:00
|
|
|
if (numa_off) {
|
|
|
|
pr_err("UV: NUMA is off, disabling UV support\n");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-01-14 16:26:12 +08:00
|
|
|
/* Set up early hub type field in uv_hub_info for Node 0 */
|
2016-04-30 05:54:15 +08:00
|
|
|
uv_cpu_info->p_uv_hub_info = &uv_hub_info_node0;
|
|
|
|
|
2015-04-10 02:26:30 +08:00
|
|
|
/*
|
|
|
|
* Determine UV arch type.
|
2017-01-14 16:26:12 +08:00
|
|
|
* SGI: UV100/1000
|
2015-04-10 02:26:30 +08:00
|
|
|
* SGI2: UV2000/3000
|
|
|
|
* SGI3: UV300 (truncated to 4 chars because of different varieties)
|
2016-04-30 05:54:05 +08:00
|
|
|
* SGI4: UV400 (truncated to 4 chars because of different varieties)
|
2015-04-10 02:26:30 +08:00
|
|
|
*/
|
|
|
|
uv_hub_info->hub_revision =
|
2016-04-30 05:54:05 +08:00
|
|
|
!strncmp(oem_id, "SGI4", 4) ? UV4_HUB_REVISION_BASE :
|
2015-04-10 02:26:30 +08:00
|
|
|
!strncmp(oem_id, "SGI3", 4) ? UV3_HUB_REVISION_BASE :
|
|
|
|
!strcmp(oem_id, "SGI2") ? UV2_HUB_REVISION_BASE :
|
|
|
|
!strcmp(oem_id, "SGI") ? UV1_HUB_REVISION_BASE : 0;
|
|
|
|
|
|
|
|
if (uv_hub_info->hub_revision == 0)
|
|
|
|
goto badbios;
|
|
|
|
|
2019-09-10 22:58:44 +08:00
|
|
|
switch (uv_hub_info->hub_revision) {
|
|
|
|
case UV4_HUB_REVISION_BASE:
|
|
|
|
uv_hubbed_system = 0x11;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case UV3_HUB_REVISION_BASE:
|
|
|
|
uv_hubbed_system = 0x9;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case UV2_HUB_REVISION_BASE:
|
|
|
|
uv_hubbed_system = 0x5;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case UV1_HUB_REVISION_BASE:
|
|
|
|
uv_hubbed_system = 0x3;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2015-04-10 02:26:30 +08:00
|
|
|
pnodeid = early_get_pnodeid();
|
2016-04-30 05:54:17 +08:00
|
|
|
early_get_apic_socketid_shift();
|
2017-01-14 16:26:12 +08:00
|
|
|
|
|
|
|
x86_platform.is_untracked_pat_range = uv_is_untracked_pat_range;
|
2015-04-10 02:26:30 +08:00
|
|
|
x86_platform.nmi_init = uv_nmi_init;
|
|
|
|
|
2017-01-14 16:26:12 +08:00
|
|
|
if (!strcmp(oem_table_id, "UVX")) {
|
|
|
|
/* This is the most common hardware variant: */
|
2015-04-10 02:26:30 +08:00
|
|
|
uv_system_type = UV_X2APIC;
|
|
|
|
uv_apic = 0;
|
|
|
|
|
2017-01-14 16:26:12 +08:00
|
|
|
} else if (!strcmp(oem_table_id, "UVH")) {
|
|
|
|
/* Only UV1 systems: */
|
2015-04-10 02:26:30 +08:00
|
|
|
uv_system_type = UV_NON_UNIQUE_APIC;
|
2017-11-27 16:11:44 +08:00
|
|
|
x86_platform.legacy.warm_reset = 0;
|
2017-01-14 16:26:12 +08:00
|
|
|
__this_cpu_write(x2apic_extra_bits, pnodeid << uvh_apicid.s.pnode_shift);
|
2015-04-10 02:26:30 +08:00
|
|
|
uv_set_apicid_hibit();
|
|
|
|
uv_apic = 1;
|
|
|
|
|
2017-01-14 16:26:12 +08:00
|
|
|
} else if (!strcmp(oem_table_id, "UVL")) {
|
|
|
|
/* Only used for very small systems: */
|
|
|
|
uv_system_type = UV_LEGACY_APIC;
|
2015-04-10 02:26:30 +08:00
|
|
|
uv_apic = 0;
|
|
|
|
|
|
|
|
} else {
|
|
|
|
goto badbios;
|
2008-07-22 13:08:21 +08:00
|
|
|
}
|
2015-04-10 02:26:30 +08:00
|
|
|
|
2017-01-14 16:26:12 +08:00
|
|
|
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);
|
2017-10-13 00:32:06 +08:00
|
|
|
uv_tsc_check_sync();
|
2015-04-10 02:26:30 +08:00
|
|
|
|
|
|
|
return uv_apic;
|
|
|
|
|
|
|
|
badbios:
|
|
|
|
pr_err("UV: OEM_ID:%s OEM_TABLE_ID:%s\n", oem_id, oem_table_id);
|
|
|
|
pr_err("Current BIOS not supported, update kernel and/or BIOS\n");
|
|
|
|
BUG();
|
2008-07-22 13:08:21 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
enum uv_system_type get_uv_system_type(void)
|
|
|
|
{
|
|
|
|
return uv_system_type;
|
|
|
|
}
|
|
|
|
|
|
|
|
int is_uv_system(void)
|
|
|
|
{
|
|
|
|
return uv_system_type != UV_NONE;
|
|
|
|
}
|
2008-08-11 17:19:20 +08:00
|
|
|
EXPORT_SYMBOL_GPL(is_uv_system);
|
2008-07-22 13:08:21 +08:00
|
|
|
|
2019-09-10 22:58:44 +08:00
|
|
|
int is_uv_hubbed(int uvtype)
|
|
|
|
{
|
|
|
|
return (uv_hubbed_system & uvtype);
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL_GPL(is_uv_hubbed);
|
|
|
|
|
2020-05-05 01:15:22 +08:00
|
|
|
static int is_uv_hubless(int uvtype)
|
2017-01-26 00:35:18 +08:00
|
|
|
{
|
2019-09-10 22:58:41 +08:00
|
|
|
return (uv_hubless_system & uvtype);
|
2017-01-26 00:35:18 +08:00
|
|
|
}
|
|
|
|
|
2016-04-30 05:54:15 +08:00
|
|
|
void **__uv_hub_info_list;
|
|
|
|
EXPORT_SYMBOL_GPL(__uv_hub_info_list);
|
2008-03-29 03:12:16 +08:00
|
|
|
|
2016-04-30 05:54:12 +08:00
|
|
|
DEFINE_PER_CPU(struct uv_cpu_info_s, __uv_cpu_info);
|
|
|
|
EXPORT_PER_CPU_SYMBOL_GPL(__uv_cpu_info);
|
|
|
|
|
2008-03-29 03:12:16 +08:00
|
|
|
short uv_possible_blades;
|
|
|
|
EXPORT_SYMBOL_GPL(uv_possible_blades);
|
|
|
|
|
2008-07-10 04:27:19 +08:00
|
|
|
unsigned long sn_rtc_cycles_per_second;
|
|
|
|
EXPORT_SYMBOL(sn_rtc_cycles_per_second);
|
|
|
|
|
2017-01-14 16:26:12 +08:00
|
|
|
/* The following values are used for the per node hub info struct */
|
|
|
|
static __initdata unsigned short *_node_to_pnode;
|
|
|
|
static __initdata unsigned short _min_socket, _max_socket;
|
|
|
|
static __initdata unsigned short _min_pnode, _max_pnode, _gr_table_len;
|
|
|
|
static __initdata struct uv_gam_range_entry *uv_gre_table;
|
|
|
|
static __initdata struct uv_gam_parameters *uv_gp_table;
|
|
|
|
static __initdata unsigned short *_socket_to_node;
|
|
|
|
static __initdata unsigned short *_socket_to_pnode;
|
|
|
|
static __initdata unsigned short *_pnode_to_socket;
|
|
|
|
|
|
|
|
static __initdata struct uv_gam_range_s *_gr_table;
|
|
|
|
|
2016-04-30 05:54:19 +08:00
|
|
|
#define SOCK_EMPTY ((unsigned short)~0)
|
2016-04-30 05:54:16 +08:00
|
|
|
|
2018-05-25 04:17:13 +08:00
|
|
|
/* Default UV memory block size is 2GB */
|
2018-07-30 15:59:47 +08:00
|
|
|
static unsigned long mem_block_size __initdata = (2UL << 30);
|
2018-05-25 04:17:13 +08:00
|
|
|
|
2018-05-25 04:17:14 +08:00
|
|
|
/* Kernel parameter to specify UV mem block size */
|
2018-07-30 15:59:47 +08:00
|
|
|
static int __init parse_mem_block_size(char *ptr)
|
2018-05-25 04:17:14 +08:00
|
|
|
{
|
|
|
|
unsigned long size = memparse(ptr, NULL);
|
|
|
|
|
|
|
|
/* Size will be rounded down by set_block_size() below */
|
|
|
|
mem_block_size = size;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
early_param("uv_memblksize", parse_mem_block_size);
|
|
|
|
|
2018-05-25 04:17:13 +08:00
|
|
|
static __init int adj_blksize(u32 lgre)
|
|
|
|
{
|
|
|
|
unsigned long base = (unsigned long)lgre << UV_GAM_RANGE_SHFT;
|
|
|
|
unsigned long size;
|
|
|
|
|
|
|
|
for (size = mem_block_size; size > MIN_MEMORY_BLOCK_SIZE; size >>= 1)
|
|
|
|
if (IS_ALIGNED(base, size))
|
|
|
|
break;
|
|
|
|
|
|
|
|
if (size >= mem_block_size)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
mem_block_size = size;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static __init void set_block_size(void)
|
|
|
|
{
|
|
|
|
unsigned int order = ffs(mem_block_size);
|
|
|
|
|
|
|
|
if (order) {
|
|
|
|
/* adjust for ffs return of 1..64 */
|
|
|
|
set_memory_block_size_order(order - 1);
|
|
|
|
pr_info("UV: mem_block_size set to 0x%lx\n", mem_block_size);
|
|
|
|
} else {
|
|
|
|
/* bad or zero value, default to 1UL << 31 (2GB) */
|
|
|
|
pr_err("UV: mem_block_size error with 0x%lx\n", mem_block_size);
|
|
|
|
set_memory_block_size_order(31);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-01-14 16:26:12 +08:00
|
|
|
/* Build GAM range lookup table: */
|
2016-04-30 05:54:21 +08:00
|
|
|
static __init void build_uv_gr_table(void)
|
|
|
|
{
|
|
|
|
struct uv_gam_range_entry *gre = uv_gre_table;
|
|
|
|
struct uv_gam_range_s *grt;
|
|
|
|
unsigned long last_limit = 0, ram_limit = 0;
|
2016-08-02 02:40:50 +08:00
|
|
|
int bytes, i, sid, lsid = -1, indx = 0, lindx = -1;
|
2016-04-30 05:54:21 +08:00
|
|
|
|
|
|
|
if (!gre)
|
|
|
|
return;
|
|
|
|
|
|
|
|
bytes = _gr_table_len * sizeof(struct uv_gam_range_s);
|
|
|
|
grt = kzalloc(bytes, GFP_KERNEL);
|
|
|
|
BUG_ON(!grt);
|
|
|
|
_gr_table = grt;
|
|
|
|
|
|
|
|
for (; gre->type != UV_GAM_RANGE_TYPE_UNUSED; gre++) {
|
|
|
|
if (gre->type == UV_GAM_RANGE_TYPE_HOLE) {
|
2017-01-14 16:26:12 +08:00
|
|
|
if (!ram_limit) {
|
|
|
|
/* Mark hole between RAM/non-RAM: */
|
2016-04-30 05:54:21 +08:00
|
|
|
ram_limit = last_limit;
|
|
|
|
last_limit = gre->limit;
|
|
|
|
lsid++;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
last_limit = gre->limit;
|
2017-01-14 16:26:12 +08:00
|
|
|
pr_info("UV: extra hole in GAM RE table @%d\n", (int)(gre - uv_gre_table));
|
2016-04-30 05:54:21 +08:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (_max_socket < gre->sockid) {
|
2017-01-14 16:26:12 +08:00
|
|
|
pr_err("UV: GAM table sockid(%d) too large(>%d) @%d\n", gre->sockid, _max_socket, (int)(gre - uv_gre_table));
|
2016-04-30 05:54:21 +08:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
sid = gre->sockid - _min_socket;
|
2017-01-14 16:26:12 +08:00
|
|
|
if (lsid < sid) {
|
|
|
|
/* New range: */
|
2016-08-02 02:40:50 +08:00
|
|
|
grt = &_gr_table[indx];
|
|
|
|
grt->base = lindx;
|
2016-04-30 05:54:21 +08:00
|
|
|
grt->nasid = gre->nasid;
|
|
|
|
grt->limit = last_limit = gre->limit;
|
|
|
|
lsid = sid;
|
2016-08-02 02:40:50 +08:00
|
|
|
lindx = indx++;
|
2016-04-30 05:54:21 +08:00
|
|
|
continue;
|
|
|
|
}
|
2017-01-14 16:26:12 +08:00
|
|
|
/* Update range: */
|
|
|
|
if (lsid == sid && !ram_limit) {
|
|
|
|
/* .. if contiguous: */
|
|
|
|
if (grt->limit == last_limit) {
|
2016-04-30 05:54:21 +08:00
|
|
|
grt->limit = last_limit = gre->limit;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
2017-01-14 16:26:12 +08:00
|
|
|
/* Non-contiguous RAM range: */
|
|
|
|
if (!ram_limit) {
|
2016-04-30 05:54:21 +08:00
|
|
|
grt++;
|
2016-08-02 02:40:50 +08:00
|
|
|
grt->base = lindx;
|
2016-04-30 05:54:21 +08:00
|
|
|
grt->nasid = gre->nasid;
|
|
|
|
grt->limit = last_limit = gre->limit;
|
|
|
|
continue;
|
|
|
|
}
|
2017-01-14 16:26:12 +08:00
|
|
|
/* Non-contiguous/non-RAM: */
|
|
|
|
grt++;
|
|
|
|
/* base is this entry */
|
|
|
|
grt->base = grt - _gr_table;
|
2016-04-30 05:54:21 +08:00
|
|
|
grt->nasid = gre->nasid;
|
|
|
|
grt->limit = last_limit = gre->limit;
|
|
|
|
lsid++;
|
|
|
|
}
|
|
|
|
|
2017-01-14 16:26:12 +08:00
|
|
|
/* Shorten table if possible */
|
2016-04-30 05:54:21 +08:00
|
|
|
grt++;
|
|
|
|
i = grt - _gr_table;
|
|
|
|
if (i < _gr_table_len) {
|
|
|
|
void *ret;
|
|
|
|
|
|
|
|
bytes = i * sizeof(struct uv_gam_range_s);
|
|
|
|
ret = krealloc(_gr_table, bytes, GFP_KERNEL);
|
|
|
|
if (ret) {
|
|
|
|
_gr_table = ret;
|
|
|
|
_gr_table_len = i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-01-14 16:26:12 +08:00
|
|
|
/* Display resultant GAM range table: */
|
2016-04-30 05:54:21 +08:00
|
|
|
for (i = 0, grt = _gr_table; i < _gr_table_len; i++, grt++) {
|
2017-01-14 16:26:12 +08:00
|
|
|
unsigned long start, end;
|
2016-04-30 05:54:21 +08:00
|
|
|
int gb = grt->base;
|
|
|
|
|
2017-01-14 16:26:12 +08:00
|
|
|
start = gb < 0 ? 0 : (unsigned long)_gr_table[gb].limit << UV_GAM_RANGE_SHFT;
|
|
|
|
end = (unsigned long)grt->limit << UV_GAM_RANGE_SHFT;
|
|
|
|
|
|
|
|
pr_info("UV: GAM Range %2d %04x 0x%013lx-0x%013lx (%d)\n", i, grt->nasid, start, end, gb);
|
2016-04-30 05:54:21 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
x86: delete __cpuinit usage from all x86 files
The __cpuinit type of throwaway sections might have made sense
some time ago when RAM was more constrained, but now the savings
do not offset the cost and complications. For example, the fix in
commit 5e427ec2d0 ("x86: Fix bit corruption at CPU resume time")
is a good example of the nasty type of bugs that can be created
with improper use of the various __init prefixes.
After a discussion on LKML[1] it was decided that cpuinit should go
the way of devinit and be phased out. Once all the users are gone,
we can then finally remove the macros themselves from linux/init.h.
Note that some harmless section mismatch warnings may result, since
notify_cpu_starting() and cpu_up() are arch independent (kernel/cpu.c)
are flagged as __cpuinit -- so if we remove the __cpuinit from
arch specific callers, we will also get section mismatch warnings.
As an intermediate step, we intend to turn the linux/init.h cpuinit
content into no-ops as early as possible, since that will get rid
of these warnings. In any case, they are temporary and harmless.
This removes all the arch/x86 uses of the __cpuinit macros from
all C files. x86 only had the one __CPUINIT used in assembly files,
and it wasn't paired off with a .previous or a __FINIT, so we can
delete it directly w/o any corresponding additional change there.
[1] https://lkml.org/lkml/2013/5/20/589
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: "H. Peter Anvin" <hpa@zytor.com>
Cc: x86@kernel.org
Acked-by: Ingo Molnar <mingo@kernel.org>
Acked-by: Thomas Gleixner <tglx@linutronix.de>
Acked-by: H. Peter Anvin <hpa@linux.intel.com>
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
2013-06-19 06:23:59 +08:00
|
|
|
static int uv_wakeup_secondary(int phys_apicid, unsigned long start_rip)
|
2008-03-29 03:12:16 +08:00
|
|
|
{
|
|
|
|
unsigned long val;
|
2008-05-28 22:51:18 +08:00
|
|
|
int pnode;
|
2008-03-29 03:12:16 +08:00
|
|
|
|
2008-05-28 22:51:18 +08:00
|
|
|
pnode = uv_apicid_to_pnode(phys_apicid);
|
2010-11-17 06:23:52 +08:00
|
|
|
phys_apicid |= uv_apicid_hibits;
|
2017-01-14 16:26:12 +08:00
|
|
|
|
2008-03-29 03:12:16 +08:00
|
|
|
val = (1UL << UVH_IPI_INT_SEND_SHFT) |
|
|
|
|
(phys_apicid << UVH_IPI_INT_APIC_ID_SHFT) |
|
2009-02-26 12:50:49 +08:00
|
|
|
((start_rip << UVH_IPI_INT_VECTOR_SHFT) >> 12) |
|
2008-04-17 00:45:15 +08:00
|
|
|
APIC_DM_INIT;
|
2017-01-14 16:26:12 +08:00
|
|
|
|
2008-05-28 22:51:18 +08:00
|
|
|
uv_write_global_mmr64(pnode, UVH_IPI_INT, val);
|
2008-04-17 00:45:15 +08:00
|
|
|
|
|
|
|
val = (1UL << UVH_IPI_INT_SEND_SHFT) |
|
|
|
|
(phys_apicid << UVH_IPI_INT_APIC_ID_SHFT) |
|
2009-02-26 12:50:49 +08:00
|
|
|
((start_rip << UVH_IPI_INT_VECTOR_SHFT) >> 12) |
|
2008-04-17 00:45:15 +08:00
|
|
|
APIC_DM_STARTUP;
|
2017-01-14 16:26:12 +08:00
|
|
|
|
2008-05-28 22:51:18 +08:00
|
|
|
uv_write_global_mmr64(pnode, UVH_IPI_INT, val);
|
2009-02-26 12:50:49 +08:00
|
|
|
|
2008-03-29 03:12:16 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void uv_send_IPI_one(int cpu, int vector)
|
|
|
|
{
|
2020-05-05 01:15:24 +08:00
|
|
|
unsigned long apicid = per_cpu(x86_cpu_to_apicid, cpu);
|
|
|
|
int pnode = uv_apicid_to_pnode(apicid);
|
|
|
|
unsigned long dmode, val;
|
|
|
|
|
|
|
|
if (vector == NMI_VECTOR)
|
|
|
|
dmode = dest_NMI;
|
|
|
|
else
|
|
|
|
dmode = dest_Fixed;
|
2008-03-29 03:12:16 +08:00
|
|
|
|
2020-05-05 01:15:24 +08:00
|
|
|
val = (1UL << UVH_IPI_INT_SEND_SHFT) |
|
|
|
|
((apicid | uv_apicid_hibits) << UVH_IPI_INT_APIC_ID_SHFT) |
|
|
|
|
(dmode << UVH_IPI_INT_DELIVERY_MODE_SHFT) |
|
|
|
|
(vector << UVH_IPI_INT_VECTOR_SHFT);
|
|
|
|
|
|
|
|
uv_write_global_mmr64(pnode, UVH_IPI_INT, val);
|
2008-03-29 03:12:16 +08:00
|
|
|
}
|
|
|
|
|
2008-12-17 09:33:59 +08:00
|
|
|
static void uv_send_IPI_mask(const struct cpumask *mask, int vector)
|
2008-03-29 03:12:16 +08:00
|
|
|
{
|
|
|
|
unsigned int cpu;
|
|
|
|
|
2008-12-17 09:33:59 +08:00
|
|
|
for_each_cpu(cpu, mask)
|
2008-12-17 09:33:52 +08:00
|
|
|
uv_send_IPI_one(cpu, vector);
|
|
|
|
}
|
|
|
|
|
2008-12-17 09:33:59 +08:00
|
|
|
static void uv_send_IPI_mask_allbutself(const struct cpumask *mask, int vector)
|
2008-12-17 09:33:52 +08:00
|
|
|
{
|
|
|
|
unsigned int this_cpu = smp_processor_id();
|
2009-01-28 22:42:24 +08:00
|
|
|
unsigned int cpu;
|
2008-12-17 09:33:52 +08:00
|
|
|
|
2009-01-28 22:42:24 +08:00
|
|
|
for_each_cpu(cpu, mask) {
|
2008-12-17 09:33:52 +08:00
|
|
|
if (cpu != this_cpu)
|
2008-03-29 03:12:16 +08:00
|
|
|
uv_send_IPI_one(cpu, vector);
|
2009-01-28 22:42:24 +08:00
|
|
|
}
|
2008-03-29 03:12:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void uv_send_IPI_allbutself(int vector)
|
|
|
|
{
|
2008-12-17 09:33:52 +08:00
|
|
|
unsigned int this_cpu = smp_processor_id();
|
2009-01-28 22:42:24 +08:00
|
|
|
unsigned int cpu;
|
2008-03-29 03:12:16 +08:00
|
|
|
|
2009-01-28 22:42:24 +08:00
|
|
|
for_each_online_cpu(cpu) {
|
2008-12-17 09:33:52 +08:00
|
|
|
if (cpu != this_cpu)
|
|
|
|
uv_send_IPI_one(cpu, vector);
|
2009-01-28 22:42:24 +08:00
|
|
|
}
|
2008-03-29 03:12:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void uv_send_IPI_all(int vector)
|
|
|
|
{
|
2008-12-17 09:33:59 +08:00
|
|
|
uv_send_IPI_mask(cpu_online_mask, vector);
|
2008-03-29 03:12:16 +08:00
|
|
|
}
|
|
|
|
|
2018-04-10 09:16:06 +08:00
|
|
|
static int uv_apic_id_valid(u32 apicid)
|
2012-03-17 03:25:35 +08:00
|
|
|
{
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2008-03-29 03:12:16 +08:00
|
|
|
static int uv_apic_id_registered(void)
|
|
|
|
{
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2008-07-12 04:11:55 +08:00
|
|
|
static void uv_init_apic_ldr(void)
|
2008-07-11 02:16:55 +08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2017-09-14 05:29:37 +08:00
|
|
|
static u32 apic_uv_calc_apicid(unsigned int cpu)
|
2008-12-17 09:33:54 +08:00
|
|
|
{
|
2017-09-14 05:29:37 +08:00
|
|
|
return apic_default_calc_apicid(cpu) | uv_apicid_hibits;
|
2008-12-17 09:33:54 +08:00
|
|
|
}
|
|
|
|
|
2009-01-28 21:08:38 +08:00
|
|
|
static unsigned int x2apic_get_apic_id(unsigned long x)
|
2008-07-11 02:16:48 +08:00
|
|
|
{
|
|
|
|
unsigned int id;
|
|
|
|
|
|
|
|
WARN_ON(preemptible() && num_online_cpus() > 1);
|
2010-12-18 23:28:55 +08:00
|
|
|
id = x | __this_cpu_read(x2apic_extra_bits);
|
2008-07-11 02:16:48 +08:00
|
|
|
|
|
|
|
return id;
|
|
|
|
}
|
|
|
|
|
2017-09-14 05:29:17 +08:00
|
|
|
static u32 set_apic_id(unsigned int id)
|
2008-07-12 16:01:20 +08:00
|
|
|
{
|
2016-09-11 13:58:21 +08:00
|
|
|
/* CHECKME: Do we need to mask out the xapic extra bits? */
|
|
|
|
return id;
|
2008-07-12 16:01:20 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static unsigned int uv_read_apic_id(void)
|
|
|
|
{
|
2009-01-28 21:08:38 +08:00
|
|
|
return x2apic_get_apic_id(apic_read(APIC_ID));
|
2008-07-12 16:01:20 +08:00
|
|
|
}
|
|
|
|
|
2009-01-28 20:31:22 +08:00
|
|
|
static int uv_phys_pkg_id(int initial_apicid, int index_msb)
|
2008-03-29 03:12:16 +08:00
|
|
|
{
|
2008-07-11 02:16:48 +08:00
|
|
|
return uv_read_apic_id() >> index_msb;
|
2008-03-29 03:12:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void uv_send_IPI_self(int vector)
|
|
|
|
{
|
|
|
|
apic_write(APIC_SELF_IPI, vector);
|
|
|
|
}
|
|
|
|
|
2011-05-20 07:45:46 +08:00
|
|
|
static int uv_probe(void)
|
|
|
|
{
|
|
|
|
return apic == &apic_x2apic_uv_x;
|
|
|
|
}
|
|
|
|
|
2016-08-09 07:29:06 +08:00
|
|
|
static struct apic apic_x2apic_uv_x __ro_after_init = {
|
2009-01-28 09:37:01 +08:00
|
|
|
|
|
|
|
.name = "UV large system",
|
2011-05-20 07:45:46 +08:00
|
|
|
.probe = uv_probe,
|
2009-01-28 09:37:01 +08:00
|
|
|
.acpi_madt_oem_check = uv_acpi_madt_oem_check,
|
2012-03-17 03:25:35 +08:00
|
|
|
.apic_id_valid = uv_apic_id_valid,
|
2009-01-28 09:37:01 +08:00
|
|
|
.apic_id_registered = uv_apic_id_registered,
|
|
|
|
|
2009-01-28 11:02:31 +08:00
|
|
|
.irq_delivery_mode = dest_Fixed,
|
2017-01-14 16:26:12 +08:00
|
|
|
.irq_dest_mode = 0, /* Physical */
|
2009-01-28 09:37:01 +08:00
|
|
|
|
2009-01-28 12:08:44 +08:00
|
|
|
.disable_esr = 0,
|
2009-01-28 12:29:25 +08:00
|
|
|
.dest_logical = APIC_DEST_LOGICAL,
|
2009-01-28 09:37:01 +08:00
|
|
|
.check_apicid_used = NULL,
|
|
|
|
|
|
|
|
.init_apic_ldr = uv_init_apic_ldr,
|
|
|
|
|
|
|
|
.ioapic_phys_id_map = NULL,
|
|
|
|
.setup_apic_routing = NULL,
|
2009-01-28 13:50:47 +08:00
|
|
|
.cpu_present_to_apicid = default_cpu_present_to_apicid,
|
2009-01-28 09:37:01 +08:00
|
|
|
.apicid_to_cpu_present = NULL,
|
2009-01-28 19:43:18 +08:00
|
|
|
.check_phys_apicid_present = default_check_phys_apicid_present,
|
2009-01-28 20:31:22 +08:00
|
|
|
.phys_pkg_id = uv_phys_pkg_id,
|
2009-01-28 09:37:01 +08:00
|
|
|
|
2009-01-28 21:08:38 +08:00
|
|
|
.get_apic_id = x2apic_get_apic_id,
|
2009-01-28 09:37:01 +08:00
|
|
|
.set_apic_id = set_apic_id,
|
|
|
|
|
2017-09-14 05:29:37 +08:00
|
|
|
.calc_dest_apicid = apic_uv_calc_apicid,
|
2009-01-28 09:37:01 +08:00
|
|
|
|
2015-11-05 06:57:05 +08:00
|
|
|
.send_IPI = uv_send_IPI_one,
|
2009-01-28 09:37:01 +08:00
|
|
|
.send_IPI_mask = uv_send_IPI_mask,
|
|
|
|
.send_IPI_mask_allbutself = uv_send_IPI_mask_allbutself,
|
|
|
|
.send_IPI_allbutself = uv_send_IPI_allbutself,
|
|
|
|
.send_IPI_all = uv_send_IPI_all,
|
|
|
|
.send_IPI_self = uv_send_IPI_self,
|
|
|
|
|
2009-02-26 20:51:40 +08:00
|
|
|
.wakeup_secondary_cpu = uv_wakeup_secondary,
|
2009-01-28 09:37:01 +08:00
|
|
|
.inquire_remote_apic = NULL,
|
2009-02-17 15:02:14 +08:00
|
|
|
|
|
|
|
.read = native_apic_msr_read,
|
|
|
|
.write = native_apic_msr_write,
|
2012-05-17 00:03:58 +08:00
|
|
|
.eoi_write = native_apic_msr_eoi_write,
|
2009-02-17 15:02:14 +08:00
|
|
|
.icr_read = native_x2apic_icr_read,
|
|
|
|
.icr_write = native_x2apic_icr_write,
|
|
|
|
.wait_icr_idle = native_x2apic_wait_icr_idle,
|
|
|
|
.safe_wait_icr_idle = native_safe_x2apic_wait_icr_idle,
|
2008-03-29 03:12:16 +08:00
|
|
|
};
|
|
|
|
|
x86: delete __cpuinit usage from all x86 files
The __cpuinit type of throwaway sections might have made sense
some time ago when RAM was more constrained, but now the savings
do not offset the cost and complications. For example, the fix in
commit 5e427ec2d0 ("x86: Fix bit corruption at CPU resume time")
is a good example of the nasty type of bugs that can be created
with improper use of the various __init prefixes.
After a discussion on LKML[1] it was decided that cpuinit should go
the way of devinit and be phased out. Once all the users are gone,
we can then finally remove the macros themselves from linux/init.h.
Note that some harmless section mismatch warnings may result, since
notify_cpu_starting() and cpu_up() are arch independent (kernel/cpu.c)
are flagged as __cpuinit -- so if we remove the __cpuinit from
arch specific callers, we will also get section mismatch warnings.
As an intermediate step, we intend to turn the linux/init.h cpuinit
content into no-ops as early as possible, since that will get rid
of these warnings. In any case, they are temporary and harmless.
This removes all the arch/x86 uses of the __cpuinit macros from
all C files. x86 only had the one __CPUINIT used in assembly files,
and it wasn't paired off with a .previous or a __FINIT, so we can
delete it directly w/o any corresponding additional change there.
[1] https://lkml.org/lkml/2013/5/20/589
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: "H. Peter Anvin" <hpa@zytor.com>
Cc: x86@kernel.org
Acked-by: Ingo Molnar <mingo@kernel.org>
Acked-by: Thomas Gleixner <tglx@linutronix.de>
Acked-by: H. Peter Anvin <hpa@linux.intel.com>
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
2013-06-19 06:23:59 +08:00
|
|
|
static void set_x2apic_extra_bits(int pnode)
|
2008-03-29 03:12:16 +08:00
|
|
|
{
|
Merge branch 'x86-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip
* 'x86-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip:
x86: Fix Moorestown VRTC fixmap placement
x86/gpio: Implement x86 gpio_to_irq convert function
x86, UV: Fix APICID shift for Westmere processors
x86: Use PCI method for enabling AMD extended config space before MSR method
x86: tsc: Prevent delayed init if initial tsc calibration failed
x86, lapic-timer: Increase the max_delta to 31 bits
x86: Fix sparse non-ANSI function warnings in smpboot.c
x86, numa: Fix CONFIG_DEBUG_PER_CPU_MAPS without NUMA emulation
x86, AMD, PCI: Add AMD northbridge PCI device id for CPU families 12h and 14h
x86, numa: Fix cpu to node mapping for sparse node ids
x86, numa: Fake node-to-cpumask for NUMA emulation
x86, numa: Fake apicid and pxm mappings for NUMA emulation
x86, numa: Avoid compiling NUMA emulation functions without CONFIG_NUMA_EMU
x86, numa: Reduce minimum fake node size to 32M
Fix up trivial conflict in arch/x86/kernel/apic/x2apic_uv_x.c
2011-01-12 03:11:46 +08:00
|
|
|
__this_cpu_write(x2apic_extra_bits, pnode << uvh_apicid.s.pnode_shift);
|
2008-03-29 03:12:16 +08:00
|
|
|
}
|
|
|
|
|
2016-04-30 05:54:07 +08:00
|
|
|
#define UVH_RH_GAM_ALIAS210_REDIRECT_CONFIG_LENGTH 3
|
2008-05-28 22:51:18 +08:00
|
|
|
#define DEST_SHIFT UVH_RH_GAM_ALIAS210_REDIRECT_CONFIG_0_MMR_DEST_BASE_SHFT
|
|
|
|
|
|
|
|
static __init void get_lowmem_redirect(unsigned long *base, unsigned long *size)
|
|
|
|
{
|
2010-11-07 04:41:04 +08:00
|
|
|
union uvh_rh_gam_alias210_overlay_config_2_mmr_u alias;
|
2008-05-28 22:51:18 +08:00
|
|
|
union uvh_rh_gam_alias210_redirect_config_2_mmr_u redirect;
|
2016-04-30 05:54:07 +08:00
|
|
|
unsigned long m_redirect;
|
|
|
|
unsigned long m_overlay;
|
2008-05-28 22:51:18 +08:00
|
|
|
int i;
|
|
|
|
|
2016-04-30 05:54:07 +08:00
|
|
|
for (i = 0; i < UVH_RH_GAM_ALIAS210_REDIRECT_CONFIG_LENGTH; i++) {
|
|
|
|
switch (i) {
|
|
|
|
case 0:
|
|
|
|
m_redirect = UVH_RH_GAM_ALIAS210_REDIRECT_CONFIG_0_MMR;
|
2017-01-14 16:26:12 +08:00
|
|
|
m_overlay = UVH_RH_GAM_ALIAS210_OVERLAY_CONFIG_0_MMR;
|
2016-04-30 05:54:07 +08:00
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
m_redirect = UVH_RH_GAM_ALIAS210_REDIRECT_CONFIG_1_MMR;
|
2017-01-14 16:26:12 +08:00
|
|
|
m_overlay = UVH_RH_GAM_ALIAS210_OVERLAY_CONFIG_1_MMR;
|
2016-04-30 05:54:07 +08:00
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
m_redirect = UVH_RH_GAM_ALIAS210_REDIRECT_CONFIG_2_MMR;
|
2017-01-14 16:26:12 +08:00
|
|
|
m_overlay = UVH_RH_GAM_ALIAS210_OVERLAY_CONFIG_2_MMR;
|
2016-04-30 05:54:07 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
alias.v = uv_read_local_mmr(m_overlay);
|
2009-10-16 06:40:00 +08:00
|
|
|
if (alias.s.enable && alias.s.base == 0) {
|
2008-05-28 22:51:18 +08:00
|
|
|
*size = (1UL << alias.s.m_alias);
|
2016-04-30 05:54:07 +08:00
|
|
|
redirect.v = uv_read_local_mmr(m_redirect);
|
2017-01-14 16:26:12 +08:00
|
|
|
*base = (unsigned long)redirect.s.dest_base << DEST_SHIFT;
|
2008-05-28 22:51:18 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2009-10-16 06:40:00 +08:00
|
|
|
*base = *size = 0;
|
2008-05-28 22:51:18 +08:00
|
|
|
}
|
|
|
|
|
2008-07-02 03:45:38 +08:00
|
|
|
enum map_type {map_wb, map_uc};
|
|
|
|
|
2017-01-14 16:26:12 +08:00
|
|
|
static __init void map_high(char *id, unsigned long base, int pshift, int bshift, int max_pnode, enum map_type map_type)
|
2008-07-02 03:45:38 +08:00
|
|
|
{
|
|
|
|
unsigned long bytes, paddr;
|
|
|
|
|
2010-01-09 04:13:54 +08:00
|
|
|
paddr = base << pshift;
|
|
|
|
bytes = (1UL << bshift) * (max_pnode + 1);
|
2013-02-12 03:45:12 +08:00
|
|
|
if (!paddr) {
|
|
|
|
pr_info("UV: Map %s_HI base address NULL\n", id);
|
|
|
|
return;
|
|
|
|
}
|
2013-05-29 23:56:09 +08:00
|
|
|
pr_debug("UV: Map %s_HI 0x%lx - 0x%lx\n", id, paddr, paddr + bytes);
|
2008-07-02 03:45:38 +08:00
|
|
|
if (map_type == map_uc)
|
|
|
|
init_extra_mapping_uc(paddr, bytes);
|
|
|
|
else
|
|
|
|
init_extra_mapping_wb(paddr, bytes);
|
|
|
|
}
|
2013-02-12 03:45:12 +08:00
|
|
|
|
2013-05-29 23:56:09 +08:00
|
|
|
static __init void map_gru_distributed(unsigned long c)
|
|
|
|
{
|
|
|
|
union uvh_rh_gam_gru_overlay_config_mmr_u gru;
|
|
|
|
u64 paddr;
|
|
|
|
unsigned long bytes;
|
|
|
|
int nid;
|
|
|
|
|
|
|
|
gru.v = c;
|
2017-01-14 16:26:12 +08:00
|
|
|
|
|
|
|
/* Only base bits 42:28 relevant in dist mode */
|
2013-05-29 23:56:09 +08:00
|
|
|
gru_dist_base = gru.v & 0x000007fff0000000UL;
|
|
|
|
if (!gru_dist_base) {
|
|
|
|
pr_info("UV: Map GRU_DIST base address NULL\n");
|
|
|
|
return;
|
|
|
|
}
|
2017-01-14 16:26:12 +08:00
|
|
|
|
2013-05-29 23:56:09 +08:00
|
|
|
bytes = 1UL << UVH_RH_GAM_GRU_OVERLAY_CONFIG_MMR_BASE_SHFT;
|
|
|
|
gru_dist_lmask = ((1UL << uv_hub_info->m_val) - 1) & ~(bytes - 1);
|
|
|
|
gru_dist_umask = ~((1UL << uv_hub_info->m_val) - 1);
|
|
|
|
gru_dist_base &= gru_dist_lmask; /* Clear bits above M */
|
2017-01-14 16:26:12 +08:00
|
|
|
|
2013-05-29 23:56:09 +08:00
|
|
|
for_each_online_node(nid) {
|
|
|
|
paddr = ((u64)uv_node_to_pnode(nid) << uv_hub_info->m_val) |
|
|
|
|
gru_dist_base;
|
|
|
|
init_extra_mapping_wb(paddr, bytes);
|
|
|
|
gru_first_node_paddr = min(paddr, gru_first_node_paddr);
|
|
|
|
gru_last_node_paddr = max(paddr, gru_last_node_paddr);
|
|
|
|
}
|
2017-01-14 16:26:12 +08:00
|
|
|
|
2013-05-29 23:56:09 +08:00
|
|
|
/* Save upper (63:M) bits of address only for is_GRU_range */
|
|
|
|
gru_first_node_paddr &= gru_dist_umask;
|
|
|
|
gru_last_node_paddr &= gru_dist_umask;
|
2017-01-14 16:26:12 +08:00
|
|
|
|
|
|
|
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);
|
2013-05-29 23:56:09 +08:00
|
|
|
}
|
|
|
|
|
2008-07-02 03:45:38 +08:00
|
|
|
static __init void map_gru_high(int max_pnode)
|
|
|
|
{
|
|
|
|
union uvh_rh_gam_gru_overlay_config_mmr_u gru;
|
|
|
|
int shift = UVH_RH_GAM_GRU_OVERLAY_CONFIG_MMR_BASE_SHFT;
|
2016-04-30 05:54:07 +08:00
|
|
|
unsigned long mask = UVH_RH_GAM_GRU_OVERLAY_CONFIG_MMR_BASE_MASK;
|
|
|
|
unsigned long base;
|
2008-07-02 03:45:38 +08:00
|
|
|
|
|
|
|
gru.v = uv_read_local_mmr(UVH_RH_GAM_GRU_OVERLAY_CONFIG_MMR);
|
2013-05-29 23:56:09 +08:00
|
|
|
if (!gru.s.enable) {
|
2013-02-12 03:45:12 +08:00
|
|
|
pr_info("UV: GRU disabled\n");
|
2013-05-29 23:56:09 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-01-09 03:40:00 +08:00
|
|
|
/* Only UV3 has distributed GRU mode */
|
2013-05-29 23:56:09 +08:00
|
|
|
if (is_uv3_hub() && gru.s3.mode) {
|
|
|
|
map_gru_distributed(gru.v);
|
|
|
|
return;
|
2009-11-20 04:23:41 +08:00
|
|
|
}
|
2017-01-14 16:26:12 +08:00
|
|
|
|
2016-04-30 05:54:07 +08:00
|
|
|
base = (gru.v & mask) >> shift;
|
|
|
|
map_high("GRU", base, shift, shift, max_pnode, map_wb);
|
|
|
|
gru_start_paddr = ((u64)base << shift);
|
2013-05-29 23:56:09 +08:00
|
|
|
gru_end_paddr = gru_start_paddr + (1UL << shift) * (max_pnode + 1);
|
2008-07-02 03:45:38 +08:00
|
|
|
}
|
|
|
|
|
2009-09-09 23:43:39 +08:00
|
|
|
static __init void map_mmr_high(int max_pnode)
|
|
|
|
{
|
|
|
|
union uvh_rh_gam_mmr_overlay_config_mmr_u mmr;
|
|
|
|
int shift = UVH_RH_GAM_MMR_OVERLAY_CONFIG_MMR_BASE_SHFT;
|
|
|
|
|
|
|
|
mmr.v = uv_read_local_mmr(UVH_RH_GAM_MMR_OVERLAY_CONFIG_MMR);
|
|
|
|
if (mmr.s.enable)
|
2010-01-09 04:13:54 +08:00
|
|
|
map_high("MMR", mmr.s.base, shift, shift, max_pnode, map_uc);
|
2013-02-12 03:45:12 +08:00
|
|
|
else
|
|
|
|
pr_info("UV: MMR disabled\n");
|
|
|
|
}
|
|
|
|
|
2018-01-09 03:40:03 +08:00
|
|
|
/* UV3/4 have identical MMIOH overlay configs, UV4A is slightly different */
|
|
|
|
static __init void map_mmioh_high_uv34(int index, int min_pnode, int max_pnode)
|
2013-02-12 03:45:12 +08:00
|
|
|
{
|
2018-01-09 03:40:03 +08:00
|
|
|
unsigned long overlay;
|
2013-02-12 03:45:12 +08:00
|
|
|
unsigned long mmr;
|
|
|
|
unsigned long base;
|
2018-01-09 03:40:03 +08:00
|
|
|
unsigned long nasid_mask;
|
2018-01-09 03:40:00 +08:00
|
|
|
unsigned long m_overlay;
|
2013-02-12 03:45:12 +08:00
|
|
|
int i, n, shift, m_io, max_io;
|
|
|
|
int nasid, lnasid, fi, li;
|
|
|
|
char *id;
|
|
|
|
|
2018-01-09 03:40:03 +08:00
|
|
|
if (index == 0) {
|
|
|
|
id = "MMIOH0";
|
|
|
|
m_overlay = UVH_RH_GAM_MMIOH_OVERLAY_CONFIG0_MMR;
|
|
|
|
overlay = uv_read_local_mmr(m_overlay);
|
|
|
|
base = overlay & UVH_RH_GAM_MMIOH_OVERLAY_CONFIG0_MMR_BASE_MASK;
|
|
|
|
mmr = UVH_RH_GAM_MMIOH_REDIRECT_CONFIG0_MMR;
|
|
|
|
m_io = (overlay & UVH_RH_GAM_MMIOH_OVERLAY_CONFIG0_MMR_M_IO_MASK)
|
|
|
|
>> UVH_RH_GAM_MMIOH_OVERLAY_CONFIG0_MMR_M_IO_SHFT;
|
|
|
|
shift = UVH_RH_GAM_MMIOH_OVERLAY_CONFIG0_MMR_M_IO_SHFT;
|
|
|
|
n = UVH_RH_GAM_MMIOH_REDIRECT_CONFIG0_MMR_DEPTH;
|
|
|
|
nasid_mask = UVH_RH_GAM_MMIOH_REDIRECT_CONFIG0_MMR_NASID_MASK;
|
|
|
|
} else {
|
|
|
|
id = "MMIOH1";
|
|
|
|
m_overlay = UVH_RH_GAM_MMIOH_OVERLAY_CONFIG1_MMR;
|
|
|
|
overlay = uv_read_local_mmr(m_overlay);
|
|
|
|
base = overlay & UVH_RH_GAM_MMIOH_OVERLAY_CONFIG1_MMR_BASE_MASK;
|
|
|
|
mmr = UVH_RH_GAM_MMIOH_REDIRECT_CONFIG1_MMR;
|
|
|
|
m_io = (overlay & UVH_RH_GAM_MMIOH_OVERLAY_CONFIG1_MMR_M_IO_MASK)
|
|
|
|
>> UVH_RH_GAM_MMIOH_OVERLAY_CONFIG1_MMR_M_IO_SHFT;
|
|
|
|
shift = UVH_RH_GAM_MMIOH_OVERLAY_CONFIG1_MMR_M_IO_SHFT;
|
|
|
|
n = UVH_RH_GAM_MMIOH_REDIRECT_CONFIG1_MMR_DEPTH;
|
|
|
|
nasid_mask = UVH_RH_GAM_MMIOH_REDIRECT_CONFIG1_MMR_NASID_MASK;
|
|
|
|
}
|
|
|
|
pr_info("UV: %s overlay 0x%lx base:0x%lx m_io:%d\n", id, overlay, base, m_io);
|
|
|
|
if (!(overlay & UVH_RH_GAM_MMIOH_OVERLAY_CONFIG0_MMR_ENABLE_MASK)) {
|
2013-02-12 03:45:12 +08:00
|
|
|
pr_info("UV: %s disabled\n", id);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-01-14 16:26:12 +08:00
|
|
|
/* Convert to NASID: */
|
|
|
|
min_pnode *= 2;
|
2013-02-12 03:45:12 +08:00
|
|
|
max_pnode *= 2;
|
|
|
|
max_io = lnasid = fi = li = -1;
|
|
|
|
|
|
|
|
for (i = 0; i < n; i++) {
|
2018-01-09 03:40:00 +08:00
|
|
|
unsigned long m_redirect = mmr + i * 8;
|
2018-01-09 03:40:03 +08:00
|
|
|
unsigned long redirect = uv_read_local_mmr(m_redirect);
|
|
|
|
|
|
|
|
nasid = redirect & nasid_mask;
|
|
|
|
if (i == 0)
|
|
|
|
pr_info("UV: %s redirect base 0x%lx(@0x%lx) 0x%04x\n",
|
|
|
|
id, redirect, m_redirect, nasid);
|
2013-02-12 03:45:12 +08:00
|
|
|
|
2017-01-14 16:26:12 +08:00
|
|
|
/* Invalid NASID: */
|
2013-02-12 03:45:12 +08:00
|
|
|
if (nasid < min_pnode || max_pnode < nasid)
|
2017-01-14 16:26:12 +08:00
|
|
|
nasid = -1;
|
2013-02-12 03:45:12 +08:00
|
|
|
|
|
|
|
if (nasid == lnasid) {
|
|
|
|
li = i;
|
2017-01-14 16:26:12 +08:00
|
|
|
/* Last entry check: */
|
|
|
|
if (i != n-1)
|
2013-02-12 03:45:12 +08:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2017-01-14 16:26:12 +08:00
|
|
|
/* Check if we have a cached (or last) redirect to print: */
|
2013-02-12 03:45:12 +08:00
|
|
|
if (lnasid != -1 || (i == n-1 && nasid != -1)) {
|
|
|
|
unsigned long addr1, addr2;
|
|
|
|
int f, l;
|
|
|
|
|
|
|
|
if (lnasid == -1) {
|
|
|
|
f = l = i;
|
|
|
|
lnasid = nasid;
|
|
|
|
} else {
|
|
|
|
f = fi;
|
|
|
|
l = li;
|
|
|
|
}
|
2017-01-14 16:26:12 +08:00
|
|
|
addr1 = (base << shift) + f * (1ULL << m_io);
|
|
|
|
addr2 = (base << shift) + (l + 1) * (1ULL << m_io);
|
|
|
|
pr_info("UV: %s[%03d..%03d] NASID 0x%04x ADDR 0x%016lx - 0x%016lx\n", id, fi, li, lnasid, addr1, addr2);
|
2013-02-12 03:45:12 +08:00
|
|
|
if (max_io < l)
|
|
|
|
max_io = l;
|
|
|
|
}
|
|
|
|
fi = li = i;
|
|
|
|
lnasid = nasid;
|
|
|
|
}
|
|
|
|
|
2017-01-14 16:26:12 +08:00
|
|
|
pr_info("UV: %s base:0x%lx shift:%d M_IO:%d MAX_IO:%d\n", id, base, shift, m_io, max_io);
|
2013-02-12 03:45:12 +08:00
|
|
|
|
|
|
|
if (max_io >= 0)
|
|
|
|
map_high(id, base, shift, m_io, max_io, map_uc);
|
2009-09-09 23:43:39 +08:00
|
|
|
}
|
|
|
|
|
2013-02-12 03:45:12 +08:00
|
|
|
static __init void map_mmioh_high(int min_pnode, int max_pnode)
|
2008-07-02 03:45:38 +08:00
|
|
|
{
|
|
|
|
union uvh_rh_gam_mmioh_overlay_config_mmr_u mmioh;
|
2013-02-12 03:45:12 +08:00
|
|
|
unsigned long mmr, base;
|
|
|
|
int shift, enable, m_io, n_io;
|
2008-07-02 03:45:38 +08:00
|
|
|
|
2016-04-30 05:54:11 +08:00
|
|
|
if (is_uv3_hub() || is_uv4_hub()) {
|
2017-01-14 16:26:12 +08:00
|
|
|
/* Map both MMIOH regions: */
|
2018-01-09 03:40:03 +08:00
|
|
|
map_mmioh_high_uv34(0, min_pnode, max_pnode);
|
|
|
|
map_mmioh_high_uv34(1, min_pnode, max_pnode);
|
2013-02-12 03:45:12 +08:00
|
|
|
return;
|
2011-05-12 01:50:28 +08:00
|
|
|
}
|
2013-02-12 03:45:12 +08:00
|
|
|
|
|
|
|
if (is_uv1_hub()) {
|
2017-01-14 16:26:12 +08:00
|
|
|
mmr = UV1H_RH_GAM_MMIOH_OVERLAY_CONFIG_MMR;
|
|
|
|
shift = UV1H_RH_GAM_MMIOH_OVERLAY_CONFIG_MMR_BASE_SHFT;
|
|
|
|
mmioh.v = uv_read_local_mmr(mmr);
|
|
|
|
enable = !!mmioh.s1.enable;
|
|
|
|
base = mmioh.s1.base;
|
|
|
|
m_io = mmioh.s1.m_io;
|
|
|
|
n_io = mmioh.s1.n_io;
|
2013-02-12 03:45:12 +08:00
|
|
|
} else if (is_uv2_hub()) {
|
2017-01-14 16:26:12 +08:00
|
|
|
mmr = UV2H_RH_GAM_MMIOH_OVERLAY_CONFIG_MMR;
|
|
|
|
shift = UV2H_RH_GAM_MMIOH_OVERLAY_CONFIG_MMR_BASE_SHFT;
|
|
|
|
mmioh.v = uv_read_local_mmr(mmr);
|
|
|
|
enable = !!mmioh.s2.enable;
|
|
|
|
base = mmioh.s2.base;
|
|
|
|
m_io = mmioh.s2.m_io;
|
|
|
|
n_io = mmioh.s2.n_io;
|
|
|
|
} else {
|
2013-02-12 03:45:12 +08:00
|
|
|
return;
|
2017-01-14 16:26:12 +08:00
|
|
|
}
|
2013-02-12 03:45:12 +08:00
|
|
|
|
|
|
|
if (enable) {
|
|
|
|
max_pnode &= (1 << n_io) - 1;
|
2017-01-14 16:26:12 +08:00
|
|
|
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);
|
2013-02-12 03:45:12 +08:00
|
|
|
map_high("MMIOH", base, shift, m_io, max_pnode, map_uc);
|
|
|
|
} else {
|
|
|
|
pr_info("UV: MMIOH disabled\n");
|
2011-05-12 01:50:28 +08:00
|
|
|
}
|
2008-07-02 03:45:38 +08:00
|
|
|
}
|
|
|
|
|
2009-11-26 00:20:19 +08:00
|
|
|
static __init void map_low_mmrs(void)
|
|
|
|
{
|
|
|
|
init_extra_mapping_uc(UV_GLOBAL_MMR32_BASE, UV_GLOBAL_MMR32_SIZE);
|
|
|
|
init_extra_mapping_uc(UV_LOCAL_MMR_BASE, UV_LOCAL_MMR_SIZE);
|
|
|
|
}
|
|
|
|
|
2008-07-10 04:27:19 +08:00
|
|
|
static __init void uv_rtc_init(void)
|
|
|
|
{
|
2008-10-04 00:59:33 +08:00
|
|
|
long status;
|
|
|
|
u64 ticks_per_sec;
|
2008-07-10 04:27:19 +08:00
|
|
|
|
2017-01-14 16:26:12 +08:00
|
|
|
status = uv_bios_freq_base(BIOS_FREQ_BASE_REALTIME_CLOCK, &ticks_per_sec);
|
|
|
|
|
2008-10-04 00:59:33 +08:00
|
|
|
if (status != BIOS_STATUS_SUCCESS || ticks_per_sec < 100000) {
|
2017-01-14 16:26:12 +08:00
|
|
|
pr_warn("UV: unable to determine platform RTC clock frequency, guessing.\n");
|
|
|
|
|
|
|
|
/* BIOS gives wrong value for clock frequency, so guess: */
|
2008-07-10 04:27:19 +08:00
|
|
|
sn_rtc_cycles_per_second = 1000000000000UL / 30000UL;
|
2017-01-14 16:26:12 +08:00
|
|
|
} else {
|
2008-07-10 04:27:19 +08:00
|
|
|
sn_rtc_cycles_per_second = ticks_per_sec;
|
2017-01-14 16:26:12 +08:00
|
|
|
}
|
2008-07-10 04:27:19 +08:00
|
|
|
}
|
|
|
|
|
2008-10-25 06:24:29 +08:00
|
|
|
/*
|
|
|
|
* percpu heartbeat timer
|
|
|
|
*/
|
2017-10-17 07:22:31 +08:00
|
|
|
static void uv_heartbeat(struct timer_list *timer)
|
2008-10-25 06:24:29 +08:00
|
|
|
{
|
2016-04-30 05:54:13 +08:00
|
|
|
unsigned char bits = uv_scir_info->state;
|
2008-10-25 06:24:29 +08:00
|
|
|
|
2017-01-14 16:26:12 +08:00
|
|
|
/* Flip heartbeat bit: */
|
2008-10-25 06:24:29 +08:00
|
|
|
bits ^= SCIR_CPU_HEARTBEAT;
|
|
|
|
|
2017-01-14 16:26:12 +08:00
|
|
|
/* Is this CPU idle? */
|
2008-10-27 22:51:20 +08:00
|
|
|
if (idle_cpu(raw_smp_processor_id()))
|
2008-10-25 06:24:29 +08:00
|
|
|
bits &= ~SCIR_CPU_ACTIVITY;
|
|
|
|
else
|
|
|
|
bits |= SCIR_CPU_ACTIVITY;
|
|
|
|
|
2017-01-14 16:26:12 +08:00
|
|
|
/* Update system controller interface reg: */
|
2008-10-25 06:24:29 +08:00
|
|
|
uv_set_scir_bits(bits);
|
|
|
|
|
2017-01-14 16:26:12 +08:00
|
|
|
/* Enable next timer period: */
|
2016-07-04 17:50:16 +08:00
|
|
|
mod_timer(timer, jiffies + SCIR_CPU_HB_INTERVAL);
|
2008-10-25 06:24:29 +08:00
|
|
|
}
|
|
|
|
|
2016-09-07 01:04:54 +08:00
|
|
|
static int uv_heartbeat_enable(unsigned int cpu)
|
2008-10-25 06:24:29 +08:00
|
|
|
{
|
2016-04-30 05:54:13 +08:00
|
|
|
while (!uv_cpu_scir_info(cpu)->enabled) {
|
|
|
|
struct timer_list *timer = &uv_cpu_scir_info(cpu)->timer;
|
2008-10-25 06:24:29 +08:00
|
|
|
|
|
|
|
uv_set_cpu_scir_bits(cpu, SCIR_CPU_HEARTBEAT|SCIR_CPU_ACTIVITY);
|
2017-10-17 07:22:31 +08:00
|
|
|
timer_setup(timer, uv_heartbeat, TIMER_PINNED);
|
2008-10-25 06:24:29 +08:00
|
|
|
timer->expires = jiffies + SCIR_CPU_HB_INTERVAL;
|
|
|
|
add_timer_on(timer, cpu);
|
2016-04-30 05:54:13 +08:00
|
|
|
uv_cpu_scir_info(cpu)->enabled = 1;
|
2008-10-25 06:24:29 +08:00
|
|
|
|
2017-01-14 16:26:12 +08:00
|
|
|
/* Also ensure that boot CPU is enabled: */
|
2010-01-07 22:35:42 +08:00
|
|
|
cpu = 0;
|
|
|
|
}
|
2016-09-07 01:04:54 +08:00
|
|
|
return 0;
|
2008-10-25 06:24:29 +08:00
|
|
|
}
|
|
|
|
|
2008-11-20 07:05:14 +08:00
|
|
|
#ifdef CONFIG_HOTPLUG_CPU
|
2016-09-07 01:04:54 +08:00
|
|
|
static int uv_heartbeat_disable(unsigned int cpu)
|
2008-10-25 06:24:29 +08:00
|
|
|
{
|
2016-04-30 05:54:13 +08:00
|
|
|
if (uv_cpu_scir_info(cpu)->enabled) {
|
|
|
|
uv_cpu_scir_info(cpu)->enabled = 0;
|
|
|
|
del_timer(&uv_cpu_scir_info(cpu)->timer);
|
2008-10-25 06:24:29 +08:00
|
|
|
}
|
|
|
|
uv_set_cpu_scir_bits(cpu, 0xff);
|
2016-09-07 01:04:54 +08:00
|
|
|
return 0;
|
2008-10-25 06:24:29 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static __init void uv_scir_register_cpu_notifier(void)
|
|
|
|
{
|
2016-09-07 01:04:54 +08:00
|
|
|
cpuhp_setup_state_nocalls(CPUHP_AP_ONLINE_DYN, "x86/x2apic-uvx:online",
|
|
|
|
uv_heartbeat_enable, uv_heartbeat_disable);
|
2008-10-25 06:24:29 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#else /* !CONFIG_HOTPLUG_CPU */
|
|
|
|
|
|
|
|
static __init void uv_scir_register_cpu_notifier(void)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
static __init int uv_init_heartbeat(void)
|
|
|
|
{
|
|
|
|
int cpu;
|
|
|
|
|
2017-01-14 16:26:12 +08:00
|
|
|
if (is_uv_system()) {
|
2008-10-25 06:24:29 +08:00
|
|
|
for_each_online_cpu(cpu)
|
|
|
|
uv_heartbeat_enable(cpu);
|
2017-01-14 16:26:12 +08:00
|
|
|
}
|
|
|
|
|
2008-10-25 06:24:29 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
late_initcall(uv_init_heartbeat);
|
|
|
|
|
|
|
|
#endif /* !CONFIG_HOTPLUG_CPU */
|
|
|
|
|
2010-02-03 06:38:14 +08:00
|
|
|
/* Direct Legacy VGA I/O traffic to designated IOH */
|
2018-12-05 07:34:56 +08:00
|
|
|
static int uv_set_vga_state(struct pci_dev *pdev, bool decode, unsigned int command_bits, u32 flags)
|
2010-02-03 06:38:14 +08:00
|
|
|
{
|
|
|
|
int domain, bus, rc;
|
|
|
|
|
2011-05-25 12:00:49 +08:00
|
|
|
if (!(flags & PCI_VGA_STATE_CHANGE_BRIDGE))
|
2010-02-03 06:38:14 +08:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
if ((command_bits & PCI_COMMAND_IO) == 0)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
domain = pci_domain_nr(pdev->bus);
|
|
|
|
bus = pdev->bus->number;
|
|
|
|
|
|
|
|
rc = uv_bios_set_legacy_vga_target(decode, domain, bus);
|
|
|
|
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2008-09-23 21:42:05 +08:00
|
|
|
/*
|
2017-01-14 16:26:12 +08:00
|
|
|
* Called on each CPU to initialize the per_cpu UV data area.
|
2009-02-26 21:10:10 +08:00
|
|
|
* FIXME: hotplug not supported yet
|
2008-09-23 21:42:05 +08:00
|
|
|
*/
|
x86: delete __cpuinit usage from all x86 files
The __cpuinit type of throwaway sections might have made sense
some time ago when RAM was more constrained, but now the savings
do not offset the cost and complications. For example, the fix in
commit 5e427ec2d0 ("x86: Fix bit corruption at CPU resume time")
is a good example of the nasty type of bugs that can be created
with improper use of the various __init prefixes.
After a discussion on LKML[1] it was decided that cpuinit should go
the way of devinit and be phased out. Once all the users are gone,
we can then finally remove the macros themselves from linux/init.h.
Note that some harmless section mismatch warnings may result, since
notify_cpu_starting() and cpu_up() are arch independent (kernel/cpu.c)
are flagged as __cpuinit -- so if we remove the __cpuinit from
arch specific callers, we will also get section mismatch warnings.
As an intermediate step, we intend to turn the linux/init.h cpuinit
content into no-ops as early as possible, since that will get rid
of these warnings. In any case, they are temporary and harmless.
This removes all the arch/x86 uses of the __cpuinit macros from
all C files. x86 only had the one __CPUINIT used in assembly files,
and it wasn't paired off with a .previous or a __FINIT, so we can
delete it directly w/o any corresponding additional change there.
[1] https://lkml.org/lkml/2013/5/20/589
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: "H. Peter Anvin" <hpa@zytor.com>
Cc: x86@kernel.org
Acked-by: Ingo Molnar <mingo@kernel.org>
Acked-by: Thomas Gleixner <tglx@linutronix.de>
Acked-by: H. Peter Anvin <hpa@linux.intel.com>
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
2013-06-19 06:23:59 +08:00
|
|
|
void uv_cpu_init(void)
|
2008-09-23 21:42:05 +08:00
|
|
|
{
|
2016-02-24 07:34:30 +08:00
|
|
|
/* CPU 0 initialization will be done via uv_system_init. */
|
2016-04-30 05:54:16 +08:00
|
|
|
if (smp_processor_id() == 0)
|
2008-09-23 21:42:05 +08:00
|
|
|
return;
|
|
|
|
|
2016-04-30 05:54:16 +08:00
|
|
|
uv_hub_info->nr_online_cpus++;
|
2008-09-23 21:42:05 +08:00
|
|
|
|
|
|
|
if (get_uv_system_type() == UV_NON_UNIQUE_APIC)
|
|
|
|
set_x2apic_extra_bits(uv_hub_info->pnode);
|
|
|
|
}
|
|
|
|
|
2016-04-30 05:54:07 +08:00
|
|
|
struct mn {
|
|
|
|
unsigned char m_val;
|
|
|
|
unsigned char n_val;
|
|
|
|
unsigned char m_shift;
|
|
|
|
unsigned char n_lshift;
|
|
|
|
};
|
|
|
|
|
|
|
|
static void get_mn(struct mn *mnp)
|
2008-03-29 03:12:16 +08:00
|
|
|
{
|
2016-04-30 05:54:07 +08:00
|
|
|
union uvh_rh_gam_config_mmr_u m_n_config;
|
|
|
|
union uv3h_gr0_gam_gr_config_u m_gr_config;
|
|
|
|
|
2017-01-14 16:26:12 +08:00
|
|
|
/* Make sure the whole structure is well initialized: */
|
|
|
|
memset(mnp, 0, sizeof(*mnp));
|
|
|
|
|
|
|
|
m_n_config.v = uv_read_local_mmr(UVH_RH_GAM_CONFIG_MMR);
|
|
|
|
mnp->n_val = m_n_config.s.n_skt;
|
|
|
|
|
2016-04-30 05:54:07 +08:00
|
|
|
if (is_uv4_hub()) {
|
2017-01-14 16:26:12 +08:00
|
|
|
mnp->m_val = 0;
|
|
|
|
mnp->n_lshift = 0;
|
2016-04-30 05:54:07 +08:00
|
|
|
} else if (is_uv3_hub()) {
|
2017-01-14 16:26:12 +08:00
|
|
|
mnp->m_val = m_n_config.s3.m_skt;
|
|
|
|
m_gr_config.v = uv_read_local_mmr(UV3H_GR0_GAM_GR_CONFIG);
|
|
|
|
mnp->n_lshift = m_gr_config.s3.m_skt;
|
2016-04-30 05:54:07 +08:00
|
|
|
} else if (is_uv2_hub()) {
|
2017-01-14 16:26:12 +08:00
|
|
|
mnp->m_val = m_n_config.s2.m_skt;
|
|
|
|
mnp->n_lshift = mnp->m_val == 40 ? 40 : 39;
|
2016-04-30 05:54:07 +08:00
|
|
|
} else if (is_uv1_hub()) {
|
2017-01-14 16:26:12 +08:00
|
|
|
mnp->m_val = m_n_config.s1.m_skt;
|
|
|
|
mnp->n_lshift = mnp->m_val;
|
2016-04-30 05:54:07 +08:00
|
|
|
}
|
|
|
|
mnp->m_shift = mnp->m_val ? 64 - mnp->m_val : 0;
|
|
|
|
}
|
|
|
|
|
2018-12-05 07:34:56 +08:00
|
|
|
static void __init uv_init_hub_info(struct uv_hub_info_s *hi)
|
2016-04-30 05:54:07 +08:00
|
|
|
{
|
2008-05-28 22:51:18 +08:00
|
|
|
union uvh_node_id_u node_id;
|
2017-01-14 16:26:12 +08:00
|
|
|
struct mn mn;
|
2016-04-30 05:54:07 +08:00
|
|
|
|
|
|
|
get_mn(&mn);
|
2017-01-14 16:26:12 +08:00
|
|
|
hi->gpa_mask = mn.m_val ?
|
2016-04-30 05:54:17 +08:00
|
|
|
(1UL << (mn.m_val + mn.n_val)) - 1 :
|
|
|
|
(1UL << uv_cpuid.gpa_shift) - 1;
|
2016-04-30 05:54:07 +08:00
|
|
|
|
2017-01-14 16:26:12 +08:00
|
|
|
hi->m_val = mn.m_val;
|
|
|
|
hi->n_val = mn.n_val;
|
|
|
|
hi->m_shift = mn.m_shift;
|
|
|
|
hi->n_lshift = mn.n_lshift ? mn.n_lshift : 0;
|
|
|
|
hi->hub_revision = uv_hub_info->hub_revision;
|
|
|
|
hi->pnode_mask = uv_cpuid.pnode_mask;
|
|
|
|
hi->min_pnode = _min_pnode;
|
|
|
|
hi->min_socket = _min_socket;
|
|
|
|
hi->pnode_to_socket = _pnode_to_socket;
|
|
|
|
hi->socket_to_node = _socket_to_node;
|
|
|
|
hi->socket_to_pnode = _socket_to_pnode;
|
|
|
|
hi->gr_table_len = _gr_table_len;
|
|
|
|
hi->gr_table = _gr_table;
|
|
|
|
|
|
|
|
node_id.v = uv_read_local_mmr(UVH_NODE_ID);
|
|
|
|
uv_cpuid.gnode_shift = max_t(unsigned int, uv_cpuid.gnode_shift, mn.n_val);
|
|
|
|
hi->gnode_extra = (node_id.s.node_id & ~((1 << uv_cpuid.gnode_shift) - 1)) >> 1;
|
2017-03-22 07:16:47 +08:00
|
|
|
if (mn.m_val)
|
|
|
|
hi->gnode_upper = (u64)hi->gnode_extra << mn.m_val;
|
2016-04-30 05:54:07 +08:00
|
|
|
|
2016-04-30 05:54:19 +08:00
|
|
|
if (uv_gp_table) {
|
2017-01-14 16:26:12 +08:00
|
|
|
hi->global_mmr_base = uv_gp_table->mmr_base;
|
|
|
|
hi->global_mmr_shift = uv_gp_table->mmr_shift;
|
|
|
|
hi->global_gru_base = uv_gp_table->gru_base;
|
|
|
|
hi->global_gru_shift = uv_gp_table->gru_shift;
|
|
|
|
hi->gpa_shift = uv_gp_table->gpa_shift;
|
|
|
|
hi->gpa_mask = (1UL << hi->gpa_shift) - 1;
|
2016-04-30 05:54:19 +08:00
|
|
|
} else {
|
2017-01-14 16:26:12 +08:00
|
|
|
hi->global_mmr_base = uv_read_local_mmr(UVH_RH_GAM_MMR_OVERLAY_CONFIG_MMR) & ~UV_MMR_ENABLE;
|
|
|
|
hi->global_mmr_shift = _UV_GLOBAL_MMR64_PNODE_SHIFT;
|
2016-04-30 05:54:19 +08:00
|
|
|
}
|
2016-04-30 05:54:07 +08:00
|
|
|
|
2017-01-14 16:26:12 +08:00
|
|
|
get_lowmem_redirect(&hi->lowmem_remap_base, &hi->lowmem_remap_top);
|
2016-04-30 05:54:07 +08:00
|
|
|
|
2017-01-14 16:26:12 +08:00
|
|
|
hi->apic_pnode_shift = uv_cpuid.socketid_shift;
|
2016-04-30 05:54:07 +08:00
|
|
|
|
2017-01-14 16:26:12 +08:00
|
|
|
/* Show system specific info: */
|
|
|
|
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);
|
|
|
|
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);
|
|
|
|
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);
|
|
|
|
pr_info("UV: gnode_upper:0x%lx gnode_extra:0x%x\n", hi->gnode_upper, hi->gnode_extra);
|
2016-04-30 05:54:19 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void __init decode_gam_params(unsigned long ptr)
|
|
|
|
{
|
|
|
|
uv_gp_table = (struct uv_gam_parameters *)ptr;
|
|
|
|
|
|
|
|
pr_info("UV: GAM Params...\n");
|
|
|
|
pr_info("UV: mmr_base/shift:0x%llx/%d gru_base/shift:0x%llx/%d gpa_shift:%d\n",
|
|
|
|
uv_gp_table->mmr_base, uv_gp_table->mmr_shift,
|
|
|
|
uv_gp_table->gru_base, uv_gp_table->gru_shift,
|
|
|
|
uv_gp_table->gpa_shift);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void __init decode_gam_rng_tbl(unsigned long ptr)
|
|
|
|
{
|
|
|
|
struct uv_gam_range_entry *gre = (struct uv_gam_range_entry *)ptr;
|
|
|
|
unsigned long lgre = 0;
|
|
|
|
int index = 0;
|
|
|
|
int sock_min = 999999, pnode_min = 99999;
|
|
|
|
int sock_max = -1, pnode_max = -1;
|
|
|
|
|
|
|
|
uv_gre_table = gre;
|
|
|
|
for (; gre->type != UV_GAM_RANGE_TYPE_UNUSED; gre++) {
|
2018-02-06 06:15:04 +08:00
|
|
|
unsigned long size = ((unsigned long)(gre->limit - lgre)
|
|
|
|
<< UV_GAM_RANGE_SHFT);
|
|
|
|
int order = 0;
|
|
|
|
char suffix[] = " KMGTPE";
|
2018-05-25 04:17:13 +08:00
|
|
|
int flag = ' ';
|
2018-02-06 06:15:04 +08:00
|
|
|
|
|
|
|
while (size > 9999 && order < sizeof(suffix)) {
|
|
|
|
size /= 1024;
|
|
|
|
order++;
|
|
|
|
}
|
|
|
|
|
2018-05-25 04:17:13 +08:00
|
|
|
/* adjust max block size to current range start */
|
|
|
|
if (gre->type == 1 || gre->type == 2)
|
|
|
|
if (adj_blksize(lgre))
|
|
|
|
flag = '*';
|
|
|
|
|
2016-04-30 05:54:19 +08:00
|
|
|
if (!index) {
|
|
|
|
pr_info("UV: GAM Range Table...\n");
|
2018-05-25 04:17:13 +08:00
|
|
|
pr_info("UV: # %20s %14s %6s %4s %5s %3s %2s\n", "Range", "", "Size", "Type", "NASID", "SID", "PN");
|
2016-04-30 05:54:19 +08:00
|
|
|
}
|
2018-05-25 04:17:13 +08:00
|
|
|
pr_info("UV: %2d: 0x%014lx-0x%014lx%c %5lu%c %3d %04x %02x %02x\n",
|
2016-04-30 05:54:19 +08:00
|
|
|
index++,
|
|
|
|
(unsigned long)lgre << UV_GAM_RANGE_SHFT,
|
|
|
|
(unsigned long)gre->limit << UV_GAM_RANGE_SHFT,
|
2018-05-25 04:17:13 +08:00
|
|
|
flag, size, suffix[order],
|
2016-08-02 02:40:52 +08:00
|
|
|
gre->type, gre->nasid, gre->sockid, gre->pnode);
|
2016-04-30 05:54:19 +08:00
|
|
|
|
2018-05-25 04:17:13 +08:00
|
|
|
/* update to next range start */
|
2016-04-30 05:54:19 +08:00
|
|
|
lgre = gre->limit;
|
|
|
|
if (sock_min > gre->sockid)
|
|
|
|
sock_min = gre->sockid;
|
|
|
|
if (sock_max < gre->sockid)
|
|
|
|
sock_max = gre->sockid;
|
|
|
|
if (pnode_min > gre->pnode)
|
|
|
|
pnode_min = gre->pnode;
|
|
|
|
if (pnode_max < gre->pnode)
|
|
|
|
pnode_max = gre->pnode;
|
|
|
|
}
|
2017-01-14 16:26:12 +08:00
|
|
|
_min_socket = sock_min;
|
|
|
|
_max_socket = sock_max;
|
|
|
|
_min_pnode = pnode_min;
|
|
|
|
_max_pnode = pnode_max;
|
|
|
|
_gr_table_len = index;
|
|
|
|
|
|
|
|
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);
|
2016-04-30 05:54:19 +08:00
|
|
|
}
|
|
|
|
|
2017-01-13 23:21:11 +08:00
|
|
|
static int __init decode_uv_systab(void)
|
2016-04-30 05:54:19 +08:00
|
|
|
{
|
|
|
|
struct uv_systab *st;
|
|
|
|
int i;
|
|
|
|
|
2019-09-10 22:58:45 +08:00
|
|
|
/* If system is uv3 or lower, there is no extended UVsystab */
|
|
|
|
if (is_uv_hubbed(0xfffffe) < uv(4) && is_uv_hubless(0xfffffe) < uv(4))
|
2017-01-13 23:21:11 +08:00
|
|
|
return 0; /* No extended UVsystab required */
|
|
|
|
|
2016-04-30 05:54:19 +08:00
|
|
|
st = uv_systab;
|
2017-01-13 23:21:11 +08:00
|
|
|
if ((!st) || (st->revision < UV_SYSTAB_VERSION_UV4_LATEST)) {
|
|
|
|
int rev = st ? st->revision : 0;
|
|
|
|
|
2017-01-14 16:26:12 +08:00
|
|
|
pr_err("UV: BIOS UVsystab version(%x) mismatch, expecting(%x)\n", rev, UV_SYSTAB_VERSION_UV4_LATEST);
|
|
|
|
pr_err("UV: Cannot support UV operations, switching to generic PC\n");
|
2017-01-13 23:21:11 +08:00
|
|
|
uv_system_type = UV_NONE;
|
2017-01-14 16:26:12 +08:00
|
|
|
|
2017-01-13 23:21:11 +08:00
|
|
|
return -EINVAL;
|
2016-04-30 05:54:19 +08:00
|
|
|
}
|
2016-04-30 05:54:07 +08:00
|
|
|
|
2016-04-30 05:54:19 +08:00
|
|
|
for (i = 0; st->entry[i].type != UV_SYSTAB_TYPE_UNUSED; i++) {
|
|
|
|
unsigned long ptr = st->entry[i].offset;
|
2016-04-30 05:54:07 +08:00
|
|
|
|
2016-04-30 05:54:19 +08:00
|
|
|
if (!ptr)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
ptr = ptr + (unsigned long)st;
|
|
|
|
|
|
|
|
switch (st->entry[i].type) {
|
|
|
|
case UV_SYSTAB_TYPE_GAM_PARAMS:
|
|
|
|
decode_gam_params(ptr);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case UV_SYSTAB_TYPE_GAM_RNG_TBL:
|
|
|
|
decode_gam_rng_tbl(ptr);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2017-01-13 23:21:11 +08:00
|
|
|
return 0;
|
2016-04-30 05:54:07 +08:00
|
|
|
}
|
|
|
|
|
2016-04-30 05:54:16 +08:00
|
|
|
/*
|
2017-01-14 16:26:12 +08:00
|
|
|
* Set up physical blade translations from UVH_NODE_PRESENT_TABLE
|
2016-04-30 05:54:16 +08:00
|
|
|
* .. NB: UVH_NODE_PRESENT_TABLE is going away,
|
|
|
|
* .. being replaced by GAM Range Table
|
|
|
|
*/
|
|
|
|
static __init void boot_init_possible_blades(struct uv_hub_info_s *hub_info)
|
|
|
|
{
|
2016-04-30 05:54:23 +08:00
|
|
|
int i, uv_pb = 0;
|
2016-04-30 05:54:16 +08:00
|
|
|
|
|
|
|
pr_info("UV: NODE_PRESENT_DEPTH = %d\n", UVH_NODE_PRESENT_TABLE_DEPTH);
|
|
|
|
for (i = 0; i < UVH_NODE_PRESENT_TABLE_DEPTH; i++) {
|
|
|
|
unsigned long np;
|
|
|
|
|
|
|
|
np = uv_read_local_mmr(UVH_NODE_PRESENT_TABLE + i * 8);
|
|
|
|
if (np)
|
|
|
|
pr_info("UV: NODE_PRESENT(%d) = 0x%016lx\n", i, np);
|
|
|
|
|
|
|
|
uv_pb += hweight64(np);
|
|
|
|
}
|
|
|
|
if (uv_possible_blades != uv_pb)
|
|
|
|
uv_possible_blades = uv_pb;
|
|
|
|
}
|
|
|
|
|
2016-04-30 05:54:20 +08:00
|
|
|
static void __init build_socket_tables(void)
|
|
|
|
{
|
|
|
|
struct uv_gam_range_entry *gre = uv_gre_table;
|
|
|
|
int num, nump;
|
|
|
|
int cpu, i, lnid;
|
|
|
|
int minsock = _min_socket;
|
|
|
|
int maxsock = _max_socket;
|
|
|
|
int minpnode = _min_pnode;
|
|
|
|
int maxpnode = _max_pnode;
|
|
|
|
size_t bytes;
|
|
|
|
|
|
|
|
if (!gre) {
|
|
|
|
if (is_uv1_hub() || is_uv2_hub() || is_uv3_hub()) {
|
|
|
|
pr_info("UV: No UVsystab socket table, ignoring\n");
|
2017-01-14 16:26:12 +08:00
|
|
|
return;
|
2016-04-30 05:54:20 +08:00
|
|
|
}
|
2017-01-14 16:26:12 +08:00
|
|
|
pr_crit("UV: Error: UVsystab address translations not available!\n");
|
2016-04-30 05:54:20 +08:00
|
|
|
BUG();
|
|
|
|
}
|
|
|
|
|
2017-01-14 16:26:12 +08:00
|
|
|
/* Build socket id -> node id, pnode */
|
2016-04-30 05:54:20 +08:00
|
|
|
num = maxsock - minsock + 1;
|
|
|
|
bytes = num * sizeof(_socket_to_node[0]);
|
|
|
|
_socket_to_node = kmalloc(bytes, GFP_KERNEL);
|
|
|
|
_socket_to_pnode = kmalloc(bytes, GFP_KERNEL);
|
|
|
|
|
|
|
|
nump = maxpnode - minpnode + 1;
|
|
|
|
bytes = nump * sizeof(_pnode_to_socket[0]);
|
|
|
|
_pnode_to_socket = kmalloc(bytes, GFP_KERNEL);
|
|
|
|
BUG_ON(!_socket_to_node || !_socket_to_pnode || !_pnode_to_socket);
|
|
|
|
|
|
|
|
for (i = 0; i < num; i++)
|
|
|
|
_socket_to_node[i] = _socket_to_pnode[i] = SOCK_EMPTY;
|
|
|
|
|
|
|
|
for (i = 0; i < nump; i++)
|
|
|
|
_pnode_to_socket[i] = SOCK_EMPTY;
|
|
|
|
|
2017-01-14 16:26:12 +08:00
|
|
|
/* Fill in pnode/node/addr conversion list values: */
|
2016-08-02 02:40:52 +08:00
|
|
|
pr_info("UV: GAM Building socket/pnode conversion tables\n");
|
2016-04-30 05:54:20 +08:00
|
|
|
for (; gre->type != UV_GAM_RANGE_TYPE_UNUSED; gre++) {
|
|
|
|
if (gre->type == UV_GAM_RANGE_TYPE_HOLE)
|
|
|
|
continue;
|
|
|
|
i = gre->sockid - minsock;
|
2017-01-14 16:26:12 +08:00
|
|
|
/* Duplicate: */
|
2016-04-30 05:54:20 +08:00
|
|
|
if (_socket_to_pnode[i] != SOCK_EMPTY)
|
2017-01-14 16:26:12 +08:00
|
|
|
continue;
|
2016-04-30 05:54:20 +08:00
|
|
|
_socket_to_pnode[i] = gre->pnode;
|
|
|
|
|
|
|
|
i = gre->pnode - minpnode;
|
|
|
|
_pnode_to_socket[i] = gre->sockid;
|
|
|
|
|
2017-01-14 16:26:12 +08:00
|
|
|
pr_info("UV: sid:%02x type:%d nasid:%04x pn:%02x pn2s:%2x\n",
|
2016-04-30 05:54:20 +08:00
|
|
|
gre->sockid, gre->type, gre->nasid,
|
|
|
|
_socket_to_pnode[gre->sockid - minsock],
|
|
|
|
_pnode_to_socket[gre->pnode - minpnode]);
|
|
|
|
}
|
|
|
|
|
2017-01-14 16:26:12 +08:00
|
|
|
/* Set socket -> node values: */
|
2019-03-06 07:42:58 +08:00
|
|
|
lnid = NUMA_NO_NODE;
|
2016-04-30 05:54:20 +08:00
|
|
|
for_each_present_cpu(cpu) {
|
|
|
|
int nid = cpu_to_node(cpu);
|
|
|
|
int apicid, sockid;
|
|
|
|
|
|
|
|
if (lnid == nid)
|
|
|
|
continue;
|
|
|
|
lnid = nid;
|
|
|
|
apicid = per_cpu(x86_cpu_to_apicid, cpu);
|
|
|
|
sockid = apicid >> uv_cpuid.socketid_shift;
|
2016-08-02 02:40:52 +08:00
|
|
|
_socket_to_node[sockid - minsock] = nid;
|
|
|
|
pr_info("UV: sid:%02x: apicid:%04x node:%2d\n",
|
|
|
|
sockid, apicid, nid);
|
2016-04-30 05:54:20 +08:00
|
|
|
}
|
|
|
|
|
2017-01-14 16:26:12 +08:00
|
|
|
/* Set up physical blade to pnode translation from GAM Range Table: */
|
2016-04-30 05:54:20 +08:00
|
|
|
bytes = num_possible_nodes() * sizeof(_node_to_pnode[0]);
|
|
|
|
_node_to_pnode = kmalloc(bytes, GFP_KERNEL);
|
|
|
|
BUG_ON(!_node_to_pnode);
|
|
|
|
|
|
|
|
for (lnid = 0; lnid < num_possible_nodes(); lnid++) {
|
|
|
|
unsigned short sockid;
|
|
|
|
|
|
|
|
for (sockid = minsock; sockid <= maxsock; sockid++) {
|
|
|
|
if (lnid == _socket_to_node[sockid - minsock]) {
|
2017-01-14 16:26:12 +08:00
|
|
|
_node_to_pnode[lnid] = _socket_to_pnode[sockid - minsock];
|
2016-04-30 05:54:20 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (sockid > maxsock) {
|
|
|
|
pr_err("UV: socket for node %d not found!\n", lnid);
|
|
|
|
BUG();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If socket id == pnode or socket id == node for all nodes,
|
|
|
|
* system runs faster by removing corresponding conversion table.
|
|
|
|
*/
|
|
|
|
pr_info("UV: Checking socket->node/pnode for identity maps\n");
|
|
|
|
if (minsock == 0) {
|
|
|
|
for (i = 0; i < num; i++)
|
2017-01-14 16:26:12 +08:00
|
|
|
if (_socket_to_node[i] == SOCK_EMPTY || i != _socket_to_node[i])
|
2016-04-30 05:54:20 +08:00
|
|
|
break;
|
|
|
|
if (i >= num) {
|
|
|
|
kfree(_socket_to_node);
|
|
|
|
_socket_to_node = NULL;
|
|
|
|
pr_info("UV: 1:1 socket_to_node table removed\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (minsock == minpnode) {
|
|
|
|
for (i = 0; i < num; i++)
|
|
|
|
if (_socket_to_pnode[i] != SOCK_EMPTY &&
|
|
|
|
_socket_to_pnode[i] != i + minpnode)
|
|
|
|
break;
|
|
|
|
if (i >= num) {
|
|
|
|
kfree(_socket_to_pnode);
|
|
|
|
_socket_to_pnode = NULL;
|
|
|
|
pr_info("UV: 1:1 socket_to_pnode table removed\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-10 22:58:46 +08:00
|
|
|
/* Check which reboot to use */
|
|
|
|
static void check_efi_reboot(void)
|
|
|
|
{
|
|
|
|
/* If EFI reboot not available, use ACPI reboot */
|
|
|
|
if (!efi_enabled(EFI_BOOT))
|
|
|
|
reboot_type = BOOT_ACPI;
|
|
|
|
}
|
|
|
|
|
2019-09-10 22:58:44 +08:00
|
|
|
/* Setup user proc fs files */
|
2019-12-12 22:03:57 +08:00
|
|
|
static int __maybe_unused proc_hubbed_show(struct seq_file *file, void *data)
|
2019-09-10 22:58:44 +08:00
|
|
|
{
|
|
|
|
seq_printf(file, "0x%x\n", uv_hubbed_system);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2019-12-12 22:03:57 +08:00
|
|
|
static int __maybe_unused proc_hubless_show(struct seq_file *file, void *data)
|
2019-09-10 22:58:44 +08:00
|
|
|
{
|
|
|
|
seq_printf(file, "0x%x\n", uv_hubless_system);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2019-12-12 22:03:57 +08:00
|
|
|
static int __maybe_unused proc_oemid_show(struct seq_file *file, void *data)
|
2019-09-10 22:58:44 +08:00
|
|
|
{
|
|
|
|
seq_printf(file, "%s/%s\n", oem_id, oem_table_id);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static __init void uv_setup_proc_files(int hubless)
|
|
|
|
{
|
|
|
|
struct proc_dir_entry *pde;
|
|
|
|
|
|
|
|
pde = proc_mkdir(UV_PROC_NODE, NULL);
|
2019-12-12 22:03:57 +08:00
|
|
|
proc_create_single("oemid", 0, pde, proc_oemid_show);
|
2019-09-10 22:58:44 +08:00
|
|
|
if (hubless)
|
2019-12-12 22:03:57 +08:00
|
|
|
proc_create_single("hubless", 0, pde, proc_hubless_show);
|
2019-09-10 22:58:44 +08:00
|
|
|
else
|
2019-12-12 22:03:57 +08:00
|
|
|
proc_create_single("hubbed", 0, pde, proc_hubbed_show);
|
2019-09-10 22:58:44 +08:00
|
|
|
}
|
|
|
|
|
2019-09-10 22:58:43 +08:00
|
|
|
/* Initialize UV hubless systems */
|
|
|
|
static __init int uv_system_init_hubless(void)
|
|
|
|
{
|
|
|
|
int rc;
|
|
|
|
|
|
|
|
/* Setup PCH NMI handler */
|
|
|
|
uv_nmi_setup_hubless();
|
|
|
|
|
|
|
|
/* Init kernel/BIOS interface */
|
|
|
|
rc = uv_bios_init();
|
2019-09-10 22:58:45 +08:00
|
|
|
if (rc < 0)
|
|
|
|
return rc;
|
2019-09-10 22:58:43 +08:00
|
|
|
|
2019-09-10 22:58:45 +08:00
|
|
|
/* Process UVsystab */
|
|
|
|
rc = decode_uv_systab();
|
|
|
|
if (rc < 0)
|
|
|
|
return rc;
|
|
|
|
|
|
|
|
/* Create user access node */
|
2019-09-10 22:58:44 +08:00
|
|
|
if (rc >= 0)
|
|
|
|
uv_setup_proc_files(1);
|
|
|
|
|
2019-09-10 22:58:46 +08:00
|
|
|
check_efi_reboot();
|
|
|
|
|
2019-09-10 22:58:43 +08:00
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2017-01-26 00:35:18 +08:00
|
|
|
static void __init uv_system_init_hub(void)
|
2016-04-30 05:54:07 +08:00
|
|
|
{
|
|
|
|
struct uv_hub_info_s hub_info = {0};
|
2016-04-30 05:54:16 +08:00
|
|
|
int bytes, cpu, nodeid;
|
|
|
|
unsigned short min_pnode = 9999, max_pnode = 0;
|
2016-04-30 05:54:05 +08:00
|
|
|
char *hub = is_uv4_hub() ? "UV400" :
|
|
|
|
is_uv3_hub() ? "UV300" :
|
|
|
|
is_uv2_hub() ? "UV2000/3000" :
|
|
|
|
is_uv1_hub() ? "UV100/1000" : NULL;
|
2008-03-29 03:12:16 +08:00
|
|
|
|
2015-04-10 02:26:31 +08:00
|
|
|
if (!hub) {
|
|
|
|
pr_err("UV: Unknown/unsupported UV hub\n");
|
|
|
|
return;
|
|
|
|
}
|
2013-02-12 03:45:12 +08:00
|
|
|
pr_info("UV: Found %s hub\n", hub);
|
2015-12-12 04:59:45 +08:00
|
|
|
|
2016-05-05 15:56:10 +08:00
|
|
|
map_low_mmrs();
|
2009-11-26 00:20:19 +08:00
|
|
|
|
2017-01-14 16:26:12 +08:00
|
|
|
/* Get uv_systab for decoding: */
|
|
|
|
uv_bios_init();
|
|
|
|
|
|
|
|
/* If there's an UVsystab problem then abort UV init: */
|
2017-01-13 23:21:11 +08:00
|
|
|
if (decode_uv_systab() < 0)
|
2017-01-14 16:26:12 +08:00
|
|
|
return;
|
|
|
|
|
2016-04-30 05:54:20 +08:00
|
|
|
build_socket_tables();
|
2016-04-30 05:54:21 +08:00
|
|
|
build_uv_gr_table();
|
2018-05-25 04:17:13 +08:00
|
|
|
set_block_size();
|
2016-04-30 05:54:07 +08:00
|
|
|
uv_init_hub_info(&hub_info);
|
2016-04-30 05:54:16 +08:00
|
|
|
uv_possible_blades = num_possible_nodes();
|
|
|
|
if (!_node_to_pnode)
|
|
|
|
boot_init_possible_blades(&hub_info);
|
2012-01-07 03:19:00 +08:00
|
|
|
|
2017-01-14 16:26:12 +08:00
|
|
|
/* uv_num_possible_blades() is really the hub count: */
|
|
|
|
pr_info("UV: Found %d hubs, %d nodes, %d CPUs\n", uv_num_possible_blades(), num_possible_nodes(), num_possible_cpus());
|
2008-03-29 03:12:16 +08:00
|
|
|
|
2017-01-14 16:26:12 +08:00
|
|
|
uv_bios_get_sn_info(0, &uv_type, &sn_partition_id, &sn_coherency_id, &sn_region_size, &system_serial_number);
|
2016-04-30 05:54:07 +08:00
|
|
|
hub_info.coherency_domain_number = sn_coherency_id;
|
2008-07-10 04:27:19 +08:00
|
|
|
uv_rtc_init();
|
|
|
|
|
2016-04-30 05:54:16 +08:00
|
|
|
bytes = sizeof(void *) * uv_num_possible_blades();
|
|
|
|
__uv_hub_info_list = kzalloc(bytes, GFP_KERNEL);
|
|
|
|
BUG_ON(!__uv_hub_info_list);
|
2009-12-29 05:28:25 +08:00
|
|
|
|
2016-04-30 05:54:16 +08:00
|
|
|
bytes = sizeof(struct uv_hub_info_s);
|
|
|
|
for_each_node(nodeid) {
|
|
|
|
struct uv_hub_info_s *new_hub;
|
|
|
|
|
|
|
|
if (__uv_hub_info_list[nodeid]) {
|
2017-01-14 16:26:12 +08:00
|
|
|
pr_err("UV: Node %d UV HUB already initialized!?\n", nodeid);
|
2016-04-30 05:54:16 +08:00
|
|
|
BUG();
|
2016-04-30 05:54:15 +08:00
|
|
|
}
|
2008-05-28 22:51:18 +08:00
|
|
|
|
2016-04-30 05:54:16 +08:00
|
|
|
/* Allocate new per hub info list */
|
2017-01-14 16:26:12 +08:00
|
|
|
new_hub = (nodeid == 0) ? &uv_hub_info_node0 : kzalloc_node(bytes, GFP_KERNEL, nodeid);
|
2016-04-30 05:54:16 +08:00
|
|
|
BUG_ON(!new_hub);
|
|
|
|
__uv_hub_info_list[nodeid] = new_hub;
|
|
|
|
new_hub = uv_hub_info_list(nodeid);
|
|
|
|
BUG_ON(!new_hub);
|
|
|
|
*new_hub = hub_info;
|
|
|
|
|
2017-01-14 16:26:12 +08:00
|
|
|
/* Use information from GAM table if available: */
|
2016-04-30 05:54:23 +08:00
|
|
|
if (_node_to_pnode)
|
|
|
|
new_hub->pnode = _node_to_pnode[nodeid];
|
2017-01-14 16:26:12 +08:00
|
|
|
else /* Or fill in during CPU loop: */
|
2016-04-30 05:54:23 +08:00
|
|
|
new_hub->pnode = 0xffff;
|
2017-01-14 16:26:12 +08:00
|
|
|
|
2016-04-30 05:54:16 +08:00
|
|
|
new_hub->numa_blade_id = uv_node_to_blade_id(nodeid);
|
2019-03-06 07:42:58 +08:00
|
|
|
new_hub->memory_nid = NUMA_NO_NODE;
|
2016-04-30 05:54:16 +08:00
|
|
|
new_hub->nr_possible_cpus = 0;
|
|
|
|
new_hub->nr_online_cpus = 0;
|
|
|
|
}
|
2009-07-27 22:35:07 +08:00
|
|
|
|
2017-01-14 16:26:12 +08:00
|
|
|
/* Initialize per CPU info: */
|
2016-04-30 05:54:16 +08:00
|
|
|
for_each_possible_cpu(cpu) {
|
|
|
|
int apicid = per_cpu(x86_cpu_to_apicid, cpu);
|
2016-04-30 05:54:23 +08:00
|
|
|
int numa_node_id;
|
|
|
|
unsigned short pnode;
|
2016-04-30 05:54:12 +08:00
|
|
|
|
2016-04-30 05:54:16 +08:00
|
|
|
nodeid = cpu_to_node(cpu);
|
2016-04-30 05:54:23 +08:00
|
|
|
numa_node_id = numa_cpu_node(cpu);
|
|
|
|
pnode = uv_apicid_to_pnode(apicid);
|
|
|
|
|
2016-04-30 05:54:15 +08:00
|
|
|
uv_cpu_info_per(cpu)->p_uv_hub_info = uv_hub_info_list(nodeid);
|
2017-01-14 16:26:12 +08:00
|
|
|
uv_cpu_info_per(cpu)->blade_cpu_id = uv_cpu_hub_info(cpu)->nr_possible_cpus++;
|
2019-03-06 07:42:58 +08:00
|
|
|
if (uv_cpu_hub_info(cpu)->memory_nid == NUMA_NO_NODE)
|
2016-04-30 05:54:16 +08:00
|
|
|
uv_cpu_hub_info(cpu)->memory_nid = cpu_to_node(cpu);
|
2017-01-14 16:26:12 +08:00
|
|
|
|
|
|
|
/* Init memoryless node: */
|
|
|
|
if (nodeid != numa_node_id &&
|
2016-04-30 05:54:23 +08:00
|
|
|
uv_hub_info_list(numa_node_id)->pnode == 0xffff)
|
|
|
|
uv_hub_info_list(numa_node_id)->pnode = pnode;
|
|
|
|
else if (uv_cpu_hub_info(cpu)->pnode == 0xffff)
|
|
|
|
uv_cpu_hub_info(cpu)->pnode = pnode;
|
2017-01-14 16:26:12 +08:00
|
|
|
|
2016-04-30 05:54:16 +08:00
|
|
|
uv_cpu_scir_info(cpu)->offset = uv_scir_offset(apicid);
|
2008-03-29 03:12:16 +08:00
|
|
|
}
|
2008-07-02 03:45:38 +08:00
|
|
|
|
2016-04-30 05:54:16 +08:00
|
|
|
for_each_node(nodeid) {
|
2016-04-30 05:54:23 +08:00
|
|
|
unsigned short pnode = uv_hub_info_list(nodeid)->pnode;
|
|
|
|
|
2017-01-14 16:26:12 +08:00
|
|
|
/* Add pnode info for pre-GAM list nodes without CPUs: */
|
2016-04-30 05:54:23 +08:00
|
|
|
if (pnode == 0xffff) {
|
|
|
|
unsigned long paddr;
|
|
|
|
|
|
|
|
paddr = node_start_pfn(nodeid) << PAGE_SHIFT;
|
|
|
|
pnode = uv_gpa_to_pnode(uv_soc_phys_ram_to_gpa(paddr));
|
|
|
|
uv_hub_info_list(nodeid)->pnode = pnode;
|
|
|
|
}
|
|
|
|
min_pnode = min(pnode, min_pnode);
|
|
|
|
max_pnode = max(pnode, max_pnode);
|
2016-04-30 05:54:16 +08:00
|
|
|
pr_info("UV: UVHUB node:%2d pn:%02x nrcpus:%d\n",
|
|
|
|
nodeid,
|
|
|
|
uv_hub_info_list(nodeid)->pnode,
|
|
|
|
uv_hub_info_list(nodeid)->nr_possible_cpus);
|
2009-03-30 22:01:11 +08:00
|
|
|
}
|
|
|
|
|
2016-04-30 05:54:16 +08:00
|
|
|
pr_info("UV: min_pnode:%02x max_pnode:%02x\n", min_pnode, max_pnode);
|
2008-07-02 03:45:38 +08:00
|
|
|
map_gru_high(max_pnode);
|
2009-09-09 23:43:39 +08:00
|
|
|
map_mmr_high(max_pnode);
|
2013-02-12 03:45:12 +08:00
|
|
|
map_mmioh_high(min_pnode, max_pnode);
|
2008-03-29 03:12:16 +08:00
|
|
|
|
2013-09-24 05:25:01 +08:00
|
|
|
uv_nmi_setup();
|
2008-09-23 21:42:05 +08:00
|
|
|
uv_cpu_init();
|
2008-10-25 06:24:29 +08:00
|
|
|
uv_scir_register_cpu_notifier();
|
2019-09-10 22:58:44 +08:00
|
|
|
uv_setup_proc_files(0);
|
2010-02-03 06:38:14 +08:00
|
|
|
|
2017-01-14 16:26:12 +08:00
|
|
|
/* Register Legacy VGA I/O redirection handler: */
|
2010-02-03 06:38:14 +08:00
|
|
|
pci_register_set_vga_state(uv_set_vga_state);
|
2011-03-31 22:32:02 +08:00
|
|
|
|
2019-09-10 22:58:46 +08:00
|
|
|
check_efi_reboot();
|
2008-03-29 03:12:16 +08:00
|
|
|
}
|
2011-05-21 08:51:17 +08:00
|
|
|
|
2017-01-26 00:35:18 +08:00
|
|
|
/*
|
2019-09-10 22:58:43 +08:00
|
|
|
* There is a different code path needed to initialize a UV system that does
|
|
|
|
* not have a "UV HUB" (referred to as "hubless").
|
2017-01-26 00:35:18 +08:00
|
|
|
*/
|
|
|
|
void __init uv_system_init(void)
|
|
|
|
{
|
2019-09-10 22:58:41 +08:00
|
|
|
if (likely(!is_uv_system() && !is_uv_hubless(1)))
|
2017-01-26 00:35:18 +08:00
|
|
|
return;
|
|
|
|
|
|
|
|
if (is_uv_system())
|
|
|
|
uv_system_init_hub();
|
2017-01-26 00:35:19 +08:00
|
|
|
else
|
2019-09-10 22:58:43 +08:00
|
|
|
uv_system_init_hubless();
|
2017-01-26 00:35:18 +08:00
|
|
|
}
|
|
|
|
|
2011-05-21 08:51:17 +08:00
|
|
|
apic_driver(apic_x2apic_uv_x);
|