aboutsummaryrefslogtreecommitdiffstats
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
commitd26b6d6660d704ffa59f22ad57c9103e3fba289f (patch)
tree0c392491d540b58db79962b961059ce8c66dfe95
parent0a7e8c64142b2ae5aacdc509ed112b8e362ac8a4 (diff)
x86, genapic: cleanup 32-bit apic_bigsmp 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>
-rw-r--r--arch/x86/mach-generic/bigsmp.c58
1 files changed, 57 insertions, 1 deletions
diff --git a/arch/x86/mach-generic/bigsmp.c b/arch/x86/mach-generic/bigsmp.c
index bc4c7840b2a..13e82bc4dae 100644
--- a/arch/x86/mach-generic/bigsmp.c
+++ b/arch/x86/mach-generic/bigsmp.c
@@ -57,4 +57,60 @@ static int probe_bigsmp(void)
57 return dmi_bigsmp; 57 return dmi_bigsmp;
58} 58}
59 59
60struct genapic apic_bigsmp = APIC_INIT("bigsmp", probe_bigsmp); 60struct genapic apic_bigsmp = {
61
62 .name = "bigsmp",
63 .probe = probe_bigsmp,
64 .acpi_madt_oem_check = acpi_madt_oem_check,
65 .apic_id_registered = apic_id_registered,
66
67 .int_delivery_mode = INT_DELIVERY_MODE,
68 .int_dest_mode = INT_DEST_MODE,
69
70 .target_cpus = target_cpus,
71 .ESR_DISABLE = esr_disable,
72 .apic_destination_logical = APIC_DEST_LOGICAL,
73 .check_apicid_used = check_apicid_used,
74 .check_apicid_present = check_apicid_present,
75
76 .no_balance_irq = NO_BALANCE_IRQ,
77 .no_ioapic_check = 0,
78
79 .vector_allocation_domain = vector_allocation_domain,
80 .init_apic_ldr = init_apic_ldr,
81
82 .ioapic_phys_id_map = ioapic_phys_id_map,
83 .setup_apic_routing = setup_apic_routing,
84 .multi_timer_check = multi_timer_check,
85 .apicid_to_node = apicid_to_node,
86 .cpu_to_logical_apicid = cpu_to_logical_apicid,
87 .cpu_present_to_apicid = cpu_present_to_apicid,
88 .apicid_to_cpu_present = apicid_to_cpu_present,
89 .setup_portio_remap = setup_portio_remap,
90 .check_phys_apicid_present = check_phys_apicid_present,
91 .enable_apic_mode = enable_apic_mode,
92 .phys_pkg_id = phys_pkg_id,
93 .mps_oem_check = mps_oem_check,
94
95 .get_apic_id = get_apic_id,
96 .set_apic_id = NULL,
97 .apic_id_mask = APIC_ID_MASK,
98
99 .cpu_mask_to_apicid = cpu_mask_to_apicid,
100 .cpu_mask_to_apicid_and = cpu_mask_to_apicid_and,
101
102 .send_IPI_mask = send_IPI_mask,
103 .send_IPI_mask_allbutself = NULL,
104 .send_IPI_allbutself = send_IPI_allbutself,
105 .send_IPI_all = send_IPI_all,
106 .send_IPI_self = NULL,
107
108 .wakeup_cpu = NULL,
109 .trampoline_phys_low = TRAMPOLINE_PHYS_LOW,
110 .trampoline_phys_high = TRAMPOLINE_PHYS_HIGH,
111 .wait_for_init_deassert = wait_for_init_deassert,
112 .smp_callin_clear_local_apic = smp_callin_clear_local_apic,
113 .store_NMI_vector = store_NMI_vector,
114 .restore_NMI_vector = restore_NMI_vector,
115 .inquire_remote_apic = inquire_remote_apic,
116};