genapic_64.c 2.3 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13
/*
 * Copyright 2004 James Cleverdon, IBM.
 * Subject to the GNU Public License, v.2
 *
 * Generic APIC sub-arch probe layer.
 *
 * Hacked for x86-64 by James Cleverdon from i386 architecture code by
 * Martin Bligh, Andi Kleen, James Bottomley, John Stultz, and
 * James Cleverdon.
 */
#include <linux/threads.h>
#include <linux/cpumask.h>
#include <linux/string.h>
14
#include <linux/module.h>
L
Linus Torvalds 已提交
15 16 17
#include <linux/kernel.h>
#include <linux/ctype.h>
#include <linux/init.h>
J
Jack Steiner 已提交
18
#include <linux/hardirq.h>
19
#include <linux/dmar.h>
L
Linus Torvalds 已提交
20 21 22

#include <asm/smp.h>
#include <asm/ipi.h>
23
#include <asm/genapic.h>
L
Linus Torvalds 已提交
24

25
#ifdef CONFIG_ACPI
J
Jason Davis 已提交
26 27 28
#include <acpi/acpi_bus.h>
#endif

J
Jack Steiner 已提交
29
DEFINE_PER_CPU(int, x2apic_extra_bits);
L
Linus Torvalds 已提交
30

31
struct genapic __read_mostly *genapic = &apic_flat;
L
Linus Torvalds 已提交
32

33 34 35 36 37 38 39 40 41
static int x2apic_phys = 0;

static int set_x2apic_phys_mode(char *arg)
{
	x2apic_phys = 1;
	return 0;
}
early_param("x2apic_phys", set_x2apic_phys_mode);

42 43
static enum uv_system_type uv_system_type;

L
Linus Torvalds 已提交
44 45 46
/*
 * Check the APIC IDs in bios_cpu_apicid and choose the APIC mode.
 */
47
void __init setup_apic_routing(void)
L
Linus Torvalds 已提交
48
{
J
Jack Steiner 已提交
49 50
	if (uv_system_type == UV_NON_UNIQUE_APIC)
		genapic = &apic_x2apic_uv_x;
51 52 53 54 55 56
	else if (cpu_has_x2apic && intr_remapping_enabled) {
		if (x2apic_phys)
			genapic = &apic_x2apic_phys;
		else
			genapic = &apic_x2apic_cluster;
	} else
57
#ifdef CONFIG_ACPI
J
Jason Davis 已提交
58
	/*
59 60 61
	 * Quirk: some x86_64 machines can only use physical APIC mode
	 * regardless of how many processors are present (x86_64 ES7000
	 * is an example).
J
Jason Davis 已提交
62
	 */
63 64 65
	if (acpi_gbl_FADT.header.revision > FADT2_REVISION_ID &&
			(acpi_gbl_FADT.flags & ACPI_FADT_APIC_PHYSICAL))
		genapic = &apic_physflat;
66
	else
J
Jason Davis 已提交
67 68
#endif

69
	if (max_physical_apicid < 8)
L
Linus Torvalds 已提交
70
		genapic = &apic_flat;
71
	else
72
		genapic = &apic_physflat;
L
Linus Torvalds 已提交
73 74 75 76

	printk(KERN_INFO "Setting APIC routing to %s\n", genapic->name);
}

77
/* Same for both flat and physical. */
L
Linus Torvalds 已提交
78

79
void apic_send_IPI_self(int vector)
L
Linus Torvalds 已提交
80 81 82
{
	__send_IPI_shortcut(APIC_DEST_SELF, vector, APIC_DEST_PHYSICAL);
}
83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105

int __init acpi_madt_oem_check(char *oem_id, char *oem_table_id)
{
	if (!strcmp(oem_id, "SGI")) {
		if (!strcmp(oem_table_id, "UVL"))
			uv_system_type = UV_LEGACY_APIC;
		else if (!strcmp(oem_table_id, "UVX"))
			uv_system_type = UV_X2APIC;
		else if (!strcmp(oem_table_id, "UVH"))
			uv_system_type = UV_NON_UNIQUE_APIC;
	}
	return 0;
}

enum uv_system_type get_uv_system_type(void)
{
	return uv_system_type;
}

int is_uv_system(void)
{
	return uv_system_type != UV_NONE;
}