Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | #ifndef __ASM_MACH_APIC_H |
| 2 | #define __ASM_MACH_APIC_H |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4 | |
Ashok Raj | 1855a2c | 2006-01-06 00:12:08 -0800 | [diff] [blame] | 5 | extern u8 bios_cpu_apicid[]; |
| 6 | |
| 7 | #define xapic_phys_to_log_apicid(cpu) (bios_cpu_apicid[cpu]) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8 | #define esr_disable (1) |
| 9 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10 | static inline int apic_id_registered(void) |
| 11 | { |
| 12 | return (1); |
| 13 | } |
| 14 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | /* Round robin the irqs amoung the online cpus */ |
| 16 | static inline cpumask_t target_cpus(void) |
| 17 | { |
| 18 | static unsigned long cpu = NR_CPUS; |
| 19 | do { |
| 20 | if (cpu >= NR_CPUS) |
| 21 | cpu = first_cpu(cpu_online_map); |
| 22 | else |
| 23 | cpu = next_cpu(cpu, cpu_online_map); |
| 24 | } while (cpu >= NR_CPUS); |
| 25 | return cpumask_of_cpu(cpu); |
| 26 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | |
Ashok Raj | 1855a2c | 2006-01-06 00:12:08 -0800 | [diff] [blame] | 28 | #undef APIC_DEST_LOGICAL |
| 29 | #define APIC_DEST_LOGICAL 0 |
| 30 | #define TARGET_CPUS (target_cpus()) |
| 31 | #define APIC_DFR_VALUE (APIC_DFR_FLAT) |
| 32 | #define INT_DELIVERY_MODE (dest_Fixed) |
| 33 | #define INT_DEST_MODE (0) /* phys delivery to target proc */ |
| 34 | #define NO_BALANCE_IRQ (0) |
| 35 | #define WAKE_SECONDARY_VIA_INIT |
| 36 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | |
| 38 | static inline unsigned long check_apicid_used(physid_mask_t bitmap, int apicid) |
| 39 | { |
Ashok Raj | 1855a2c | 2006-01-06 00:12:08 -0800 | [diff] [blame] | 40 | return (0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | } |
| 42 | |
Ashok Raj | 1855a2c | 2006-01-06 00:12:08 -0800 | [diff] [blame] | 43 | static inline unsigned long check_apicid_present(int bit) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | { |
Ashok Raj | 1855a2c | 2006-01-06 00:12:08 -0800 | [diff] [blame] | 45 | return (1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | } |
| 47 | |
Ashok Raj | 1855a2c | 2006-01-06 00:12:08 -0800 | [diff] [blame] | 48 | static inline unsigned long calculate_ldr(int cpu) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | { |
Ashok Raj | 1855a2c | 2006-01-06 00:12:08 -0800 | [diff] [blame] | 50 | unsigned long val, id; |
| 51 | val = apic_read(APIC_LDR) & ~APIC_LDR_MASK; |
| 52 | id = xapic_phys_to_log_apicid(cpu); |
| 53 | val |= SET_APIC_LOGICAL_ID(id); |
| 54 | return val; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | } |
| 56 | |
| 57 | /* |
| 58 | * Set up the logical destination ID. |
| 59 | * |
| 60 | * Intel recommends to set DFR, LDR and TPR before enabling |
| 61 | * an APIC. See e.g. "AP-388 82489DX User's Manual" (Intel |
| 62 | * document number 292116). So here it goes... |
| 63 | */ |
| 64 | static inline void init_apic_ldr(void) |
| 65 | { |
| 66 | unsigned long val; |
Ashok Raj | 1855a2c | 2006-01-06 00:12:08 -0800 | [diff] [blame] | 67 | int cpu = smp_processor_id(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | |
| 69 | apic_write_around(APIC_DFR, APIC_DFR_VALUE); |
Ashok Raj | 1855a2c | 2006-01-06 00:12:08 -0800 | [diff] [blame] | 70 | val = calculate_ldr(cpu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | apic_write_around(APIC_LDR, val); |
| 72 | } |
| 73 | |
Ingo Molnar | 3c43f03 | 2007-05-02 19:27:04 +0200 | [diff] [blame^] | 74 | static inline void setup_apic_routing(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | { |
| 76 | printk("Enabling APIC mode: %s. Using %d I/O APICs\n", |
Ashok Raj | 1855a2c | 2006-01-06 00:12:08 -0800 | [diff] [blame] | 77 | "Physflat", nr_ioapics); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 78 | } |
| 79 | |
| 80 | static inline int multi_timer_check(int apic, int irq) |
| 81 | { |
Ashok Raj | 1855a2c | 2006-01-06 00:12:08 -0800 | [diff] [blame] | 82 | return (0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 83 | } |
| 84 | |
| 85 | static inline int apicid_to_node(int logical_apicid) |
| 86 | { |
Ashok Raj | 1855a2c | 2006-01-06 00:12:08 -0800 | [diff] [blame] | 87 | return (0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 | } |
| 89 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 90 | static inline int cpu_present_to_apicid(int mps_cpu) |
| 91 | { |
| 92 | if (mps_cpu < NR_CPUS) |
Ashok Raj | 1855a2c | 2006-01-06 00:12:08 -0800 | [diff] [blame] | 93 | return (int) bios_cpu_apicid[mps_cpu]; |
| 94 | |
| 95 | return BAD_APICID; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | |
| 103 | extern u8 cpu_2_logical_apicid[]; |
| 104 | /* Mapping from cpu number to logical apicid */ |
| 105 | static inline int cpu_to_logical_apicid(int cpu) |
| 106 | { |
Ashok Raj | 1855a2c | 2006-01-06 00:12:08 -0800 | [diff] [blame] | 107 | if (cpu >= NR_CPUS) |
| 108 | return BAD_APICID; |
| 109 | return cpu_physical_id(cpu); |
| 110 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | |
| 112 | static inline int mpc_apic_id(struct mpc_config_processor *m, |
| 113 | struct mpc_config_translation *translation_record) |
| 114 | { |
| 115 | printk("Processor #%d %ld:%ld APIC version %d\n", |
| 116 | m->mpc_apicid, |
| 117 | (m->mpc_cpufeature & CPU_FAMILY_MASK) >> 8, |
| 118 | (m->mpc_cpufeature & CPU_MODEL_MASK) >> 4, |
| 119 | m->mpc_apicver); |
| 120 | return m->mpc_apicid; |
| 121 | } |
| 122 | |
| 123 | static inline physid_mask_t ioapic_phys_id_map(physid_mask_t phys_map) |
| 124 | { |
| 125 | /* For clustered we don't have a good way to do this yet - hack */ |
Ashok Raj | 1855a2c | 2006-01-06 00:12:08 -0800 | [diff] [blame] | 126 | return physids_promote(0xFFL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 127 | } |
| 128 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 129 | static inline void setup_portio_remap(void) |
| 130 | { |
| 131 | } |
| 132 | |
| 133 | static inline void enable_apic_mode(void) |
| 134 | { |
| 135 | } |
| 136 | |
| 137 | static inline int check_phys_apicid_present(int boot_cpu_physical_apicid) |
| 138 | { |
| 139 | return (1); |
| 140 | } |
| 141 | |
| 142 | /* As we are using single CPU as destination, pick only one CPU here */ |
| 143 | static inline unsigned int cpu_mask_to_apicid(cpumask_t cpumask) |
| 144 | { |
| 145 | int cpu; |
| 146 | int apicid; |
| 147 | |
| 148 | cpu = first_cpu(cpumask); |
| 149 | apicid = cpu_to_logical_apicid(cpu); |
| 150 | return apicid; |
| 151 | } |
| 152 | |
| 153 | static inline u32 phys_pkg_id(u32 cpuid_apic, int index_msb) |
| 154 | { |
| 155 | return cpuid_apic >> index_msb; |
| 156 | } |
| 157 | |
| 158 | #endif /* __ASM_MACH_APIC_H */ |