aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/mach-generic
diff options
context:
space:
mode:
authorIngo Molnar <mingo@elte.hu>2009-01-27 21:32:03 -0500
committerIngo Molnar <mingo@elte.hu>2009-01-28 17:20:10 -0500
commitfea3437adf778cfe69b7f8cff0afb8060d84b647 (patch)
tree4b67e1a692d2950f6814a142c1ef479a53946367 /arch/x86/mach-generic
parentd26b6d6660d704ffa59f22ad57c9103e3fba289f (diff)
x86, genapic: cleanup 32-bit apic_numaq template
Clean up the APIC driver template: - order fields properly - use the macro names explicitly (so that they can be renamed later) - fill in NULL entries as well Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/mach-generic')
-rw-r--r--arch/x86/mach-generic/numaq.c58
1 files changed, 57 insertions, 1 deletions
diff --git a/arch/x86/mach-generic/numaq.c b/arch/x86/mach-generic/numaq.c
index 3679e2255645..fa486ca49c0a 100644
--- a/arch/x86/mach-generic/numaq.c
+++ b/arch/x86/mach-generic/numaq.c
@@ -50,4 +50,60 @@ static void vector_allocation_domain(int cpu, cpumask_t *retmask)
50 *retmask = (cpumask_t){ { [0] = APIC_ALL_CPUS, } }; 50 *retmask = (cpumask_t){ { [0] = APIC_ALL_CPUS, } };
51} 51}
52 52
53struct genapic apic_numaq = APIC_INIT("NUMAQ", probe_numaq); 53struct genapic apic_numaq = {
54
55 .name = "NUMAQ",
56 .probe = probe_numaq,
57 .acpi_madt_oem_check = acpi_madt_oem_check,
58 .apic_id_registered = apic_id_registered,
59
60 .int_delivery_mode = INT_DELIVERY_MODE,
61 .int_dest_mode = INT_DEST_MODE,
62
63 .target_cpus = target_cpus,
64 .ESR_DISABLE = esr_disable,
65 .apic_destination_logical = APIC_DEST_LOGICAL,
66 .check_apicid_used = check_apicid_used,
67 .check_apicid_present = check_apicid_present,
68
69 .no_balance_irq = NO_BALANCE_IRQ,
70 .no_ioapic_check = 0,
71
72 .vector_allocation_domain = vector_allocation_domain,
73 .init_apic_ldr = init_apic_ldr,
74
75 .ioapic_phys_id_map = ioapic_phys_id_map,
76 .setup_apic_routing = setup_apic_routing,
77 .multi_timer_check = multi_timer_check,
78 .apicid_to_node = apicid_to_node,
79 .cpu_to_logical_apicid = cpu_to_logical_apicid,
80 .cpu_present_to_apicid = cpu_present_to_apicid,
81 .apicid_to_cpu_present = apicid_to_cpu_present,
82 .setup_portio_remap = setup_portio_remap,
83 .check_phys_apicid_present = check_phys_apicid_present,
84 .enable_apic_mode = enable_apic_mode,
85 .phys_pkg_id = phys_pkg_id,
86 .mps_oem_check = mps_oem_check,
87
88 .get_apic_id = get_apic_id,
89 .set_apic_id = NULL,
90 .apic_id_mask = APIC_ID_MASK,
91
92 .cpu_mask_to_apicid = cpu_mask_to_apicid,
93 .cpu_mask_to_apicid_and = cpu_mask_to_apicid_and,
94
95 .send_IPI_mask = send_IPI_mask,
96 .send_IPI_mask_allbutself = NULL,
97 .send_IPI_allbutself = send_IPI_allbutself,
98 .send_IPI_all = send_IPI_all,
99 .send_IPI_self = NULL,
100
101 .wakeup_cpu = NULL,
102 .trampoline_phys_low = TRAMPOLINE_PHYS_LOW,
103 .trampoline_phys_high = TRAMPOLINE_PHYS_HIGH,
104 .wait_for_init_deassert = wait_for_init_deassert,
105 .smp_callin_clear_local_apic = smp_callin_clear_local_apic,
106 .store_NMI_vector = store_NMI_vector,
107 .restore_NMI_vector = restore_NMI_vector,
108 .inquire_remote_apic = inquire_remote_apic,
109};