1 #ifndef __ASM_MACH_APIC_H
2 #define __ASM_MACH_APIC_H
4 #ifdef CONFIG_X86_LOCAL_APIC
6 #include <mach_apicdef.h>
9 #define APIC_DFR_VALUE (APIC_DFR_FLAT)
11 static inline cpumask_t
target_cpus(void)
14 return cpu_online_map
;
16 return cpumask_of_cpu(0);
20 #define NO_BALANCE_IRQ (0)
21 #define esr_disable (0)
24 #include <asm/genapic.h>
25 #define INT_DELIVERY_MODE (genapic->int_delivery_mode)
26 #define INT_DEST_MODE (genapic->int_dest_mode)
27 #define TARGET_CPUS (genapic->target_cpus())
28 #define apic_id_registered (genapic->apic_id_registered)
29 #define init_apic_ldr (genapic->init_apic_ldr)
30 #define cpu_mask_to_apicid (genapic->cpu_mask_to_apicid)
31 #define phys_pkg_id (genapic->phys_pkg_id)
32 #define vector_allocation_domain (genapic->vector_allocation_domain)
33 extern void setup_apic_routing(void);
35 #define INT_DELIVERY_MODE dest_LowestPrio
36 #define INT_DEST_MODE 1 /* logical delivery broadcast to all procs */
37 #define TARGET_CPUS (target_cpus())
39 * Set up the logical destination ID.
41 * Intel recommends to set DFR, LDR and TPR before enabling
42 * an APIC. See e.g. "AP-388 82489DX User's Manual" (Intel
43 * document number 292116). So here it goes...
45 static inline void init_apic_ldr(void)
49 apic_write(APIC_DFR
, APIC_DFR_VALUE
);
50 val
= apic_read(APIC_LDR
) & ~APIC_LDR_MASK
;
51 val
|= SET_APIC_LOGICAL_ID(1UL << smp_processor_id());
52 apic_write(APIC_LDR
, val
);
55 static inline int apic_id_registered(void)
57 return physid_isset(GET_APIC_ID(read_apic_id()), phys_cpu_present_map
);
60 static inline unsigned int cpu_mask_to_apicid(cpumask_t cpumask
)
62 return cpus_addr(cpumask
)[0];
65 static inline u32
phys_pkg_id(u32 cpuid_apic
, int index_msb
)
67 return cpuid_apic
>> index_msb
;
70 static inline void setup_apic_routing(void)
72 #ifdef CONFIG_X86_IO_APIC
73 printk("Enabling APIC mode: %s. Using %d I/O APICs\n",
78 static inline int apicid_to_node(int logical_apicid
)
81 return apicid_2_node
[hard_smp_processor_id()];
88 static inline unsigned long check_apicid_used(physid_mask_t bitmap
, int apicid
)
90 return physid_isset(apicid
, bitmap
);
93 static inline unsigned long check_apicid_present(int bit
)
95 return physid_isset(bit
, phys_cpu_present_map
);
98 static inline physid_mask_t
ioapic_phys_id_map(physid_mask_t phys_map
)
103 static inline int multi_timer_check(int apic
, int irq
)
108 /* Mapping from cpu number to logical apicid */
109 static inline int cpu_to_logical_apicid(int cpu
)
114 static inline int cpu_present_to_apicid(int mps_cpu
)
116 if (mps_cpu
< NR_CPUS
&& cpu_present(mps_cpu
))
117 return (int)per_cpu(x86_bios_cpu_apicid
, mps_cpu
);
122 static inline physid_mask_t
apicid_to_cpu_present(int phys_apicid
)
124 return physid_mask_of_physid(phys_apicid
);
127 static inline void setup_portio_remap(void)
131 static inline int check_phys_apicid_present(int boot_cpu_physical_apicid
)
133 return physid_isset(boot_cpu_physical_apicid
, phys_cpu_present_map
);
136 static inline void enable_apic_mode(void)
140 #endif /* CONFIG_X86_LOCAL_APIC */
141 #endif /* __ASM_MACH_APIC_H */