blob: 6139652307449f64b7354cccff44e4aa9df01230 [file] [log] [blame]
Paolo Ciarrocchi637cba02008-02-20 00:18:52 +01001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * APIC driver for "bigsmp" XAPIC machines with more than 8 virtual CPUs.
3 * Drives the local APIC in "clustered mode".
4 */
5#define APIC_DEFINITION 1
Linus Torvalds1da177e2005-04-16 15:20:36 -07006#include <linux/threads.h>
7#include <linux/cpumask.h>
8#include <asm/mpspec.h>
9#include <asm/genapic.h>
10#include <asm/fixmap.h>
11#include <asm/apicdef.h>
12#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/init.h>
14#include <linux/dmi.h>
Yinghai Lu1176fa92008-07-25 02:17:21 -070015#include <asm/bigsmp/apicdef.h>
Yinghai Lu4696ca52008-07-11 18:43:10 -070016#include <linux/smp.h>
Yinghai Lu1176fa92008-07-25 02:17:21 -070017#include <asm/bigsmp/apic.h>
18#include <asm/bigsmp/ipi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <asm/mach-default/mach_mpparse.h>
Yinghai Lu569712b2008-11-16 03:12:49 -080020#include <asm/mach-default/mach_wakecpu.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
22static int dmi_bigsmp; /* can be set by dmi scanners */
23
Jeff Garzik18552562007-10-03 15:15:40 -040024static int hp_ht_bigsmp(const struct dmi_system_id *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -070025{
Linus Torvalds1da177e2005-04-16 15:20:36 -070026 printk(KERN_NOTICE "%s detected: force use of apic=bigsmp\n", d->ident);
27 dmi_bigsmp = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070028 return 0;
29}
30
31
Jeff Garzik18552562007-10-03 15:15:40 -040032static const struct dmi_system_id bigsmp_dmi_table[] = {
Paolo Ciarrocchi637cba02008-02-20 00:18:52 +010033 { hp_ht_bigsmp, "HP ProLiant DL760 G2",
34 { DMI_MATCH(DMI_BIOS_VENDOR, "HP"),
35 DMI_MATCH(DMI_BIOS_VERSION, "P44-"),}
36 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
Paolo Ciarrocchi637cba02008-02-20 00:18:52 +010038 { hp_ht_bigsmp, "HP ProLiant DL740",
39 { DMI_MATCH(DMI_BIOS_VENDOR, "HP"),
40 DMI_MATCH(DMI_BIOS_VERSION, "P47-"),}
41 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070042 { }
43};
44
Ingo Molnare2d40b12009-01-28 06:50:47 +010045static void bigsmp_vector_allocation_domain(int cpu, cpumask_t *retmask)
Yinghai Lu497c9a12008-08-19 20:50:28 -070046{
Mike Travise7986732008-12-16 17:33:52 -080047 cpus_clear(*retmask);
48 cpu_set(cpu, *retmask);
Yinghai Lu497c9a12008-08-19 20:50:28 -070049}
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
William Lee Irwin IIIaf669c92007-05-23 13:58:23 -070051static int probe_bigsmp(void)
Paolo Ciarrocchi637cba02008-02-20 00:18:52 +010052{
Venkatesh Pallipadi911a62d2005-09-03 15:56:31 -070053 if (def_to_bigsmp)
Yinghai Lue0da3362008-06-08 18:29:22 -070054 dmi_bigsmp = 1;
Venkatesh Pallipadi911a62d2005-09-03 15:56:31 -070055 else
56 dmi_check_system(bigsmp_dmi_table);
Paolo Ciarrocchi637cba02008-02-20 00:18:52 +010057 return dmi_bigsmp;
58}
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
Ingo Molnard26b6d62009-01-28 03:32:03 +010060struct genapic apic_bigsmp = {
61
62 .name = "bigsmp",
63 .probe = probe_bigsmp,
Ingo Molnar306db032009-01-28 03:43:47 +010064 .acpi_madt_oem_check = NULL,
Ingo Molnar7ed248d2009-01-28 03:43:47 +010065 .apic_id_registered = bigsmp_apic_id_registered,
Ingo Molnard26b6d62009-01-28 03:32:03 +010066
Ingo Molnard8a35392009-01-28 04:16:01 +010067 .irq_delivery_mode = dest_Fixed,
68 /* phys delivery to target CPU: */
69 .irq_dest_mode = 0,
Ingo Molnard26b6d62009-01-28 03:32:03 +010070
Ingo Molnar0a9cc202009-01-28 04:30:40 +010071 .target_cpus = bigsmp_target_cpus,
Ingo Molnar08125d32009-01-28 05:08:44 +010072 .disable_esr = 1,
Ingo Molnarbdb1a9b2009-01-28 05:29:25 +010073 .dest_logical = 0,
Ingo Molnard1d7cae2009-01-28 05:41:42 +010074 .check_apicid_used = bigsmp_check_apicid_used,
75 .check_apicid_present = bigsmp_check_apicid_present,
Ingo Molnard26b6d62009-01-28 03:32:03 +010076
Ingo Molnare2d40b12009-01-28 06:50:47 +010077 .vector_allocation_domain = bigsmp_vector_allocation_domain,
Ingo Molnara5c43292009-01-28 06:50:47 +010078 .init_apic_ldr = bigsmp_init_apic_ldr,
Ingo Molnard26b6d62009-01-28 03:32:03 +010079
Ingo Molnard190cb82009-01-28 06:50:47 +010080 .ioapic_phys_id_map = bigsmp_ioapic_phys_id_map,
Ingo Molnar72ce0162009-01-28 06:50:47 +010081 .setup_apic_routing = bigsmp_setup_apic_routing,
Ingo Molnar33a201f2009-01-28 07:17:26 +010082 .multi_timer_check = NULL,
Ingo Molnar3f57a312009-01-28 06:50:47 +010083 .apicid_to_node = bigsmp_apicid_to_node,
Ingo Molnar5257c512009-01-28 06:50:47 +010084 .cpu_to_logical_apicid = bigsmp_cpu_to_logical_apicid,
Ingo Molnara21769a42009-01-28 06:50:47 +010085 .cpu_present_to_apicid = bigsmp_cpu_present_to_apicid,
Ingo Molnar80587142009-01-28 06:50:47 +010086 .apicid_to_cpu_present = bigsmp_apicid_to_cpu_present,
Ingo Molnard26b6d62009-01-28 03:32:03 +010087 .setup_portio_remap = setup_portio_remap,
88 .check_phys_apicid_present = check_phys_apicid_present,
89 .enable_apic_mode = enable_apic_mode,
90 .phys_pkg_id = phys_pkg_id,
91 .mps_oem_check = mps_oem_check,
92
93 .get_apic_id = get_apic_id,
94 .set_apic_id = NULL,
95 .apic_id_mask = APIC_ID_MASK,
96
97 .cpu_mask_to_apicid = cpu_mask_to_apicid,
98 .cpu_mask_to_apicid_and = cpu_mask_to_apicid_and,
99
100 .send_IPI_mask = send_IPI_mask,
101 .send_IPI_mask_allbutself = NULL,
102 .send_IPI_allbutself = send_IPI_allbutself,
103 .send_IPI_all = send_IPI_all,
104 .send_IPI_self = NULL,
105
106 .wakeup_cpu = NULL,
107 .trampoline_phys_low = TRAMPOLINE_PHYS_LOW,
108 .trampoline_phys_high = TRAMPOLINE_PHYS_HIGH,
109 .wait_for_init_deassert = wait_for_init_deassert,
110 .smp_callin_clear_local_apic = smp_callin_clear_local_apic,
111 .store_NMI_vector = store_NMI_vector,
112 .restore_NMI_vector = restore_NMI_vector,
113 .inquire_remote_apic = inquire_remote_apic,
114};