1 #ifndef __ASM_ES7000_WAKECPU_H
2 #define __ASM_ES7000_WAKECPU_H
4 #define TRAMPOLINE_PHYS_LOW 0x467
5 #define TRAMPOLINE_PHYS_HIGH 0x469
7 static inline void wait_for_init_deassert(atomic_t *deassert)
9 #ifndef CONFIG_ES7000_CLUSTERED_APIC
10 while (!atomic_read(deassert))
16 /* Nothing to do for most platforms, since cleared by the INIT cycle */
17 static inline void smp_callin_clear_local_apic(void)
21 static inline void store_NMI_vector(unsigned short *high, unsigned short *low)
25 static inline void restore_NMI_vector(unsigned short *high, unsigned short *low)
29 extern void __inquire_remote_apic(int apicid);
31 static inline void inquire_remote_apic(int apicid)
33 if (apic_verbosity >= APIC_DEBUG)
34 __inquire_remote_apic(apicid);
37 #endif /* __ASM_MACH_WAKECPU_H */