Yinghai Lu | d49c428 | 2008-06-08 18:31:54 -0700 | [diff] [blame] | 1 | /* |
| 2 | * APIC driver for the IBM NUMAQ chipset. |
| 3 | */ |
| 4 | #define APIC_DEFINITION 1 |
| 5 | #include <linux/threads.h> |
| 6 | #include <linux/cpumask.h> |
Yinghai Lu | d49c428 | 2008-06-08 18:31:54 -0700 | [diff] [blame] | 7 | #include <asm/mpspec.h> |
| 8 | #include <asm/genapic.h> |
| 9 | #include <asm/fixmap.h> |
| 10 | #include <asm/apicdef.h> |
| 11 | #include <linux/kernel.h> |
| 12 | #include <linux/string.h> |
| 13 | #include <linux/init.h> |
Yinghai Lu | edb181a | 2008-07-25 02:17:55 -0700 | [diff] [blame] | 14 | #include <asm/numaq/apicdef.h> |
Yinghai Lu | 4696ca5 | 2008-07-11 18:43:10 -0700 | [diff] [blame] | 15 | #include <linux/smp.h> |
Yinghai Lu | edb181a | 2008-07-25 02:17:55 -0700 | [diff] [blame] | 16 | #include <asm/numaq/apic.h> |
| 17 | #include <asm/numaq/ipi.h> |
| 18 | #include <asm/numaq/mpparse.h> |
| 19 | #include <asm/numaq/wakecpu.h> |
Yinghai Lu | d49c428 | 2008-06-08 18:31:54 -0700 | [diff] [blame] | 20 | #include <asm/numaq.h> |
| 21 | |
Jaswinder Singh Rajput | f29521e | 2009-01-03 15:46:57 +0530 | [diff] [blame] | 22 | static int mps_oem_check(struct mpc_table *mpc, char *oem, char *productid) |
Yinghai Lu | d49c428 | 2008-06-08 18:31:54 -0700 | [diff] [blame] | 23 | { |
| 24 | numaq_mps_oem_check(mpc, oem, productid); |
| 25 | return found_numaq; |
| 26 | } |
| 27 | |
| 28 | static int probe_numaq(void) |
| 29 | { |
| 30 | /* already know from get_memcfg_numaq() */ |
| 31 | return found_numaq; |
| 32 | } |
| 33 | |
Mike Travis | e798673 | 2008-12-16 17:33:52 -0800 | [diff] [blame] | 34 | static void vector_allocation_domain(int cpu, cpumask_t *retmask) |
Yinghai Lu | 497c9a1 | 2008-08-19 20:50:28 -0700 | [diff] [blame] | 35 | { |
| 36 | /* Careful. Some cpus do not strictly honor the set of cpus |
| 37 | * specified in the interrupt destination when using lowest |
| 38 | * priority interrupt delivery mode. |
| 39 | * |
| 40 | * In particular there was a hyperthreading cpu observed to |
| 41 | * deliver interrupts to the wrong hyperthread when only one |
| 42 | * hyperthread was specified in the interrupt desitination. |
| 43 | */ |
Mike Travis | e798673 | 2008-12-16 17:33:52 -0800 | [diff] [blame] | 44 | *retmask = (cpumask_t){ { [0] = APIC_ALL_CPUS, } }; |
Yinghai Lu | 497c9a1 | 2008-08-19 20:50:28 -0700 | [diff] [blame] | 45 | } |
| 46 | |
Ingo Molnar | fea3437 | 2009-01-28 03:32:03 +0100 | [diff] [blame] | 47 | struct genapic apic_numaq = { |
| 48 | |
| 49 | .name = "NUMAQ", |
| 50 | .probe = probe_numaq, |
Ingo Molnar | 306db03 | 2009-01-28 03:43:47 +0100 | [diff] [blame] | 51 | .acpi_madt_oem_check = NULL, |
Ingo Molnar | 7ed248d | 2009-01-28 03:43:47 +0100 | [diff] [blame] | 52 | .apic_id_registered = numaq_apic_id_registered, |
Ingo Molnar | fea3437 | 2009-01-28 03:32:03 +0100 | [diff] [blame] | 53 | |
Ingo Molnar | 1b1bcb3 | 2009-01-28 04:16:01 +0100 | [diff] [blame] | 54 | .irq_delivery_mode = dest_LowestPrio, |
| 55 | /* physical delivery on LOCAL quad: */ |
| 56 | .irq_dest_mode = 0, |
Ingo Molnar | fea3437 | 2009-01-28 03:32:03 +0100 | [diff] [blame] | 57 | |
Ingo Molnar | 0a9cc20 | 2009-01-28 04:30:40 +0100 | [diff] [blame] | 58 | .target_cpus = numaq_target_cpus, |
Ingo Molnar | 08125d3 | 2009-01-28 05:08:44 +0100 | [diff] [blame] | 59 | .disable_esr = 1, |
Ingo Molnar | bdb1a9b | 2009-01-28 05:29:25 +0100 | [diff] [blame] | 60 | .dest_logical = APIC_DEST_LOGICAL, |
Ingo Molnar | d1d7cae | 2009-01-28 05:41:42 +0100 | [diff] [blame] | 61 | .check_apicid_used = numaq_check_apicid_used, |
| 62 | .check_apicid_present = numaq_check_apicid_present, |
Ingo Molnar | fea3437 | 2009-01-28 03:32:03 +0100 | [diff] [blame] | 63 | |
Ingo Molnar | fea3437 | 2009-01-28 03:32:03 +0100 | [diff] [blame] | 64 | .vector_allocation_domain = vector_allocation_domain, |
| 65 | .init_apic_ldr = init_apic_ldr, |
| 66 | |
| 67 | .ioapic_phys_id_map = ioapic_phys_id_map, |
| 68 | .setup_apic_routing = setup_apic_routing, |
| 69 | .multi_timer_check = multi_timer_check, |
| 70 | .apicid_to_node = apicid_to_node, |
| 71 | .cpu_to_logical_apicid = cpu_to_logical_apicid, |
| 72 | .cpu_present_to_apicid = cpu_present_to_apicid, |
| 73 | .apicid_to_cpu_present = apicid_to_cpu_present, |
| 74 | .setup_portio_remap = setup_portio_remap, |
| 75 | .check_phys_apicid_present = check_phys_apicid_present, |
| 76 | .enable_apic_mode = enable_apic_mode, |
| 77 | .phys_pkg_id = phys_pkg_id, |
| 78 | .mps_oem_check = mps_oem_check, |
| 79 | |
| 80 | .get_apic_id = get_apic_id, |
| 81 | .set_apic_id = NULL, |
| 82 | .apic_id_mask = APIC_ID_MASK, |
| 83 | |
| 84 | .cpu_mask_to_apicid = cpu_mask_to_apicid, |
| 85 | .cpu_mask_to_apicid_and = cpu_mask_to_apicid_and, |
| 86 | |
| 87 | .send_IPI_mask = send_IPI_mask, |
| 88 | .send_IPI_mask_allbutself = NULL, |
| 89 | .send_IPI_allbutself = send_IPI_allbutself, |
| 90 | .send_IPI_all = send_IPI_all, |
| 91 | .send_IPI_self = NULL, |
| 92 | |
| 93 | .wakeup_cpu = NULL, |
| 94 | .trampoline_phys_low = TRAMPOLINE_PHYS_LOW, |
| 95 | .trampoline_phys_high = TRAMPOLINE_PHYS_HIGH, |
| 96 | .wait_for_init_deassert = wait_for_init_deassert, |
| 97 | .smp_callin_clear_local_apic = smp_callin_clear_local_apic, |
| 98 | .store_NMI_vector = store_NMI_vector, |
| 99 | .restore_NMI_vector = restore_NMI_vector, |
| 100 | .inquire_remote_apic = inquire_remote_apic, |
| 101 | }; |