#ifndef __ASM_APIC_H #define __ASM_APIC_H #include #include #include #include #define Dprintk(x...) do {} while (0) /* * Debugging macros */ #define APIC_QUIET 0 #define APIC_VERBOSE 1 #define APIC_DEBUG 2 #define SET_APIC_LOGICAL_ID(x) (((x)<<24)) #define IO_APIC_REDIR_VECTOR_MASK 0x000FF #define IO_APIC_REDIR_DEST_LOGICAL 0x00800 #define IO_APIC_REDIR_DEST_PHYSICAL 0x00000 /* Possible APIC states */ enum apic_mode { APIC_MODE_INVALID, /* Not set yet */ APIC_MODE_DISABLED, /* If uniprocessor, or MP in uniprocessor mode */ APIC_MODE_XAPIC, /* xAPIC mode - default upon chipset reset */ APIC_MODE_X2APIC /* x2APIC mode - common for large MP machines */ }; extern u8 apic_verbosity; extern bool_t x2apic_enabled; extern bool_t directed_eoi_enabled; void check_x2apic_preenabled(void); void x2apic_bsp_setup(void); void x2apic_ap_setup(void); const struct genapic *apic_x2apic_probe(void); /* * Define the default level of output to be very little * This can be turned up by using apic=verbose for more * information and apic=debug for _lots_ of information. * apic_verbosity is defined in apic.c */ #define apic_printk(v, s, a...) do { \ if ((v) <= apic_verbosity) \ printk(s, ##a); \ } while (0) #ifdef CONFIG_X86_LOCAL_APIC /* * Basic functions accessing APICs. */ static __inline void apic_mem_write(unsigned long reg, u32 v) { *((volatile u32 *)(APIC_BASE+reg)) = v; } static __inline void apic_mem_write_atomic(unsigned long reg, u32 v) { (void)xchg((volatile u32 *)(APIC_BASE+reg), v); } static __inline u32 apic_mem_read(unsigned long reg) { return *((volatile u32 *)(APIC_BASE+reg)); } /* NOTE: in x2APIC mode, we should use apic_icr_write()/apic_icr_read() to * access the 64-bit ICR register. */ static __inline void apic_wrmsr(unsigned long reg, uint64_t msr_content) { if (reg == APIC_DFR || reg == APIC_ID || reg == APIC_LDR || reg == APIC_LVR) return; wrmsrl(APIC_MSR_BASE + (reg >> 4), msr_content); } static __inline uint64_t apic_rdmsr(unsigned long reg) { uint64_t msr_content; if (reg == APIC_DFR) return -1u; rdmsrl(APIC_MSR_BASE + (reg >> 4), msr_content); return msr_content; } static __inline void apic_write(unsigned long reg, u32 v) { if ( x2apic_enabled ) apic_wrmsr(reg, v); else apic_mem_write(reg, v); } static __inline void apic_write_atomic(unsigned long reg, u32 v) { if ( x2apic_enabled ) apic_wrmsr(reg, v); else apic_mem_write_atomic(reg, v); } static __inline u32 apic_read(unsigned long reg) { if ( x2apic_enabled ) return apic_rdmsr(reg); else return apic_mem_read(reg); } static __inline u64 apic_icr_read(void) { u32 lo, hi; if ( x2apic_enabled ) return apic_rdmsr(APIC_ICR); else { lo = apic_mem_read(APIC_ICR); hi = apic_mem_read(APIC_ICR2); } return ((u64)lo) | (((u64)hi) << 32); } static __inline void apic_icr_write(u32 low, u32 dest) { if ( x2apic_enabled ) apic_wrmsr(APIC_ICR, low | ((uint64_t)dest << 32)); else { apic_mem_write(APIC_ICR2, dest << 24); apic_mem_write(APIC_ICR, low); } } static __inline bool_t apic_isr_read(u8 vector) { return (apic_read(APIC_ISR + ((vector & ~0x1f) >> 1)) >> (vector & 0x1f)) & 1; } static __inline u32 get_apic_id(void) /* Get the physical APIC id */ { u32 id = apic_read(APIC_ID); return x2apic_enabled ? id : GET_xAPIC_ID(id); } void apic_wait_icr_idle(void); int get_physical_broadcast(void); #ifdef CONFIG_X86_GOOD_APIC # define FORCE_READ_AROUND_WRITE 0 # define apic_read_around(x) # define apic_write_around(x,y) apic_write((x),(y)) #else # define FORCE_READ_AROUND_WRITE 1 # define apic_read_around(x) apic_read(x) # define apic_write_around(x,y) apic_write_atomic((x),(y)) #endif static inline void ack_APIC_irq(void) { /* * ack_APIC_irq() actually gets compiled as a single instruction: * - a single rmw on Pentium/82489DX * - a single write on P6+ cores (CONFIG_X86_GOOD_APIC) * ... yummie. */ /* Docs say use 0 for future compatibility */ apic_write_around(APIC_EOI, 0); } extern int get_maxlvt(void); extern void clear_local_APIC(void); extern void connect_bsp_APIC (void); extern void disconnect_bsp_APIC (int virt_wire_setup); extern void disable_local_APIC (void); extern int verify_local_APIC (void); extern void cache_APIC_registers (void); extern void sync_Arb_IDs (void); extern void init_bsp_APIC (void); extern void setup_local_APIC (void); extern void init_apic_mappings (void); extern void smp_local_timer_interrupt (struct cpu_user_regs *regs); extern void setup_boot_APIC_clock (void); extern void setup_secondary_APIC_clock (void); extern void setup_apic_nmi_watchdog (void); extern int reserve_lapic_nmi(void); extern void release_lapic_nmi(void); extern void self_nmi(void); extern void disable_timer_nmi_watchdog(void); extern void enable_timer_nmi_watchdog(void); extern void nmi_watchdog_tick (struct cpu_user_regs *regs); extern int APIC_init_uniprocessor (void); extern void disable_APIC_timer(void); extern void enable_APIC_timer(void); extern int lapic_suspend(void); extern int lapic_resume(void); extern void record_boot_APIC_mode(void); extern enum apic_mode current_local_apic_mode(void); extern int check_nmi_watchdog (void); extern unsigned int nmi_watchdog; #define NMI_NONE 0 #define NMI_IO_APIC 1 #define NMI_LOCAL_APIC 2 #define NMI_INVALID 3 #else /* !CONFIG_X86_LOCAL_APIC */ static inline int lapic_suspend(void) {return 0;} static inline int lapic_resume(void) {return 0;} #endif /* !CONFIG_X86_LOCAL_APIC */ #endif /* __ASM_APIC_H */