blob: bc4c7840b2a8daad937ccf34751f3e2718e9781c [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
Mike Travise7986732008-12-16 17:33:52 -080045static void 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
Paolo Ciarrocchi637cba02008-02-20 00:18:52 +010060struct genapic apic_bigsmp = APIC_INIT("bigsmp", probe_bigsmp);