Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | #ifndef __ASM_MACH_APIC_H |
| 2 | #define __ASM_MACH_APIC_H |
| 3 | |
| 4 | #include <mach_apicdef.h> |
| 5 | #include <asm/smp.h> |
| 6 | |
| 7 | #define APIC_DFR_VALUE (APIC_DFR_FLAT) |
| 8 | |
| 9 | static inline cpumask_t target_cpus(void) |
| 10 | { |
| 11 | #ifdef CONFIG_SMP |
| 12 | return cpu_online_map; |
| 13 | #else |
| 14 | return cpumask_of_cpu(0); |
| 15 | #endif |
| 16 | } |
| 17 | #define TARGET_CPUS (target_cpus()) |
| 18 | |
| 19 | #define NO_BALANCE_IRQ (0) |
| 20 | #define esr_disable (0) |
| 21 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | #define INT_DELIVERY_MODE dest_LowestPrio |
| 23 | #define INT_DEST_MODE 1 /* logical delivery broadcast to all procs */ |
| 24 | |
| 25 | static inline unsigned long check_apicid_used(physid_mask_t bitmap, int apicid) |
| 26 | { |
| 27 | return physid_isset(apicid, bitmap); |
| 28 | } |
| 29 | |
| 30 | static inline unsigned long check_apicid_present(int bit) |
| 31 | { |
| 32 | return physid_isset(bit, phys_cpu_present_map); |
| 33 | } |
| 34 | |
| 35 | /* |
| 36 | * Set up the logical destination ID. |
| 37 | * |
| 38 | * Intel recommends to set DFR, LDR and TPR before enabling |
| 39 | * an APIC. See e.g. "AP-388 82489DX User's Manual" (Intel |
| 40 | * document number 292116). So here it goes... |
| 41 | */ |
| 42 | static inline void init_apic_ldr(void) |
| 43 | { |
| 44 | unsigned long val; |
| 45 | |
| 46 | apic_write_around(APIC_DFR, APIC_DFR_VALUE); |
| 47 | val = apic_read(APIC_LDR) & ~APIC_LDR_MASK; |
| 48 | val |= SET_APIC_LOGICAL_ID(1UL << smp_processor_id()); |
| 49 | apic_write_around(APIC_LDR, val); |
| 50 | } |
| 51 | |
| 52 | static inline physid_mask_t ioapic_phys_id_map(physid_mask_t phys_map) |
| 53 | { |
| 54 | return phys_map; |
| 55 | } |
| 56 | |
Glauber de Oliveira Costa | f6bc402 | 2008-03-19 14:25:53 -0300 | [diff] [blame^] | 57 | #ifdef CONFIG_X86_64 |
| 58 | extern void setup_apic_routing(void); |
| 59 | #else |
Ingo Molnar | 3c43f03 | 2007-05-02 19:27:04 +0200 | [diff] [blame] | 60 | static inline void setup_apic_routing(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | { |
| 62 | printk("Enabling APIC mode: %s. Using %d I/O APICs\n", |
| 63 | "Flat", nr_ioapics); |
| 64 | } |
Glauber de Oliveira Costa | f6bc402 | 2008-03-19 14:25:53 -0300 | [diff] [blame^] | 65 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 | |
| 67 | static inline int multi_timer_check(int apic, int irq) |
| 68 | { |
| 69 | return 0; |
| 70 | } |
| 71 | |
Glauber de Oliveira Costa | f6bc402 | 2008-03-19 14:25:53 -0300 | [diff] [blame^] | 72 | #ifdef CONFIG_X86_32 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 73 | static inline int apicid_to_node(int logical_apicid) |
| 74 | { |
| 75 | return 0; |
| 76 | } |
Glauber de Oliveira Costa | f6bc402 | 2008-03-19 14:25:53 -0300 | [diff] [blame^] | 77 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 78 | |
| 79 | /* Mapping from cpu number to logical apicid */ |
| 80 | static inline int cpu_to_logical_apicid(int cpu) |
| 81 | { |
| 82 | return 1 << cpu; |
| 83 | } |
| 84 | |
| 85 | static inline int cpu_present_to_apicid(int mps_cpu) |
| 86 | { |
Glauber de Oliveira Costa | f6bc402 | 2008-03-19 14:25:53 -0300 | [diff] [blame^] | 87 | #ifdef CONFIG_X86_64 |
| 88 | if (cpu_present(mps_cpu)) |
| 89 | return (int)per_cpu(x86_bios_cpu_apicid, mps_cpu); |
| 90 | #else |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 91 | if (mps_cpu < get_physical_broadcast()) |
| 92 | return mps_cpu; |
Glauber de Oliveira Costa | f6bc402 | 2008-03-19 14:25:53 -0300 | [diff] [blame^] | 93 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 94 | else |
| 95 | return BAD_APICID; |
| 96 | } |
| 97 | |
| 98 | static inline physid_mask_t apicid_to_cpu_present(int phys_apicid) |
| 99 | { |
| 100 | return physid_mask_of_physid(phys_apicid); |
| 101 | } |
| 102 | |
Thomas Gleixner | 64883ab | 2008-01-30 13:30:35 +0100 | [diff] [blame] | 103 | static inline int mpc_apic_id(struct mpc_config_processor *m, |
| 104 | struct mpc_config_translation *translation_record) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 105 | { |
Thomas Gleixner | 64883ab | 2008-01-30 13:30:35 +0100 | [diff] [blame] | 106 | printk("Processor #%d %u:%u APIC version %d\n", |
| 107 | m->mpc_apicid, |
| 108 | (m->mpc_cpufeature & CPU_FAMILY_MASK) >> 8, |
| 109 | (m->mpc_cpufeature & CPU_MODEL_MASK) >> 4, |
| 110 | m->mpc_apicver); |
| 111 | return m->mpc_apicid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 112 | } |
| 113 | |
| 114 | static inline void setup_portio_remap(void) |
| 115 | { |
| 116 | } |
| 117 | |
| 118 | static inline int check_phys_apicid_present(int boot_cpu_physical_apicid) |
| 119 | { |
| 120 | return physid_isset(boot_cpu_physical_apicid, phys_cpu_present_map); |
| 121 | } |
| 122 | |
| 123 | static inline int apic_id_registered(void) |
| 124 | { |
| 125 | return physid_isset(GET_APIC_ID(apic_read(APIC_ID)), phys_cpu_present_map); |
| 126 | } |
| 127 | |
| 128 | static inline unsigned int cpu_mask_to_apicid(cpumask_t cpumask) |
| 129 | { |
| 130 | return cpus_addr(cpumask)[0]; |
| 131 | } |
| 132 | |
| 133 | static inline void enable_apic_mode(void) |
| 134 | { |
| 135 | } |
| 136 | |
| 137 | static inline u32 phys_pkg_id(u32 cpuid_apic, int index_msb) |
| 138 | { |
| 139 | return cpuid_apic >> index_msb; |
| 140 | } |
| 141 | |
| 142 | #endif /* __ASM_MACH_APIC_H */ |