genapic_64.c 2.0 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>
L
Linus Torvalds 已提交
19 20 21

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

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

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

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

32 33
static enum uv_system_type uv_system_type;

L
Linus Torvalds 已提交
34 35 36
/*
 * Check the APIC IDs in bios_cpu_apicid and choose the APIC mode.
 */
37
void __init setup_apic_routing(void)
L
Linus Torvalds 已提交
38
{
J
Jack Steiner 已提交
39 40 41
	if (uv_system_type == UV_NON_UNIQUE_APIC)
		genapic = &apic_x2apic_uv_x;
	else
42
#ifdef CONFIG_ACPI
J
Jason Davis 已提交
43
	/*
44 45 46
	 * 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 已提交
47
	 */
48 49 50
	if (acpi_gbl_FADT.header.revision > FADT2_REVISION_ID &&
			(acpi_gbl_FADT.flags & ACPI_FADT_APIC_PHYSICAL))
		genapic = &apic_physflat;
51
	else
J
Jason Davis 已提交
52 53
#endif

54
	if (max_physical_apicid < 8)
L
Linus Torvalds 已提交
55
		genapic = &apic_flat;
56
	else
57
		genapic = &apic_physflat;
L
Linus Torvalds 已提交
58 59 60 61

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

62
/* Same for both flat and physical. */
L
Linus Torvalds 已提交
63 64 65 66 67

void send_IPI_self(int vector)
{
	__send_IPI_shortcut(APIC_DEST_SELF, vector, APIC_DEST_PHYSICAL);
}
68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90

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;
}