mach_apic.h 909 B

12345678910111213141516171819202122
  1. #ifndef _ASM_X86_MACH_GENERIC_MACH_APIC_H
  2. #define _ASM_X86_MACH_GENERIC_MACH_APIC_H
  3. #include <asm/genapic.h>
  4. #define setup_apic_routing (apic->setup_apic_routing)
  5. #define multi_timer_check (apic->multi_timer_check)
  6. #define apicid_to_node (apic->apicid_to_node)
  7. #define cpu_to_logical_apicid (apic->cpu_to_logical_apicid)
  8. #define cpu_present_to_apicid (apic->cpu_present_to_apicid)
  9. #define apicid_to_cpu_present (apic->apicid_to_cpu_present)
  10. #define setup_portio_remap (apic->setup_portio_remap)
  11. #define check_phys_apicid_present (apic->check_phys_apicid_present)
  12. #define cpu_mask_to_apicid (apic->cpu_mask_to_apicid)
  13. #define cpu_mask_to_apicid_and (apic->cpu_mask_to_apicid_and)
  14. #define enable_apic_mode (apic->enable_apic_mode)
  15. #define phys_pkg_id (apic->phys_pkg_id)
  16. #define wakeup_secondary_cpu (apic->wakeup_cpu)
  17. extern void generic_bigsmp_probe(void);
  18. #endif /* _ASM_X86_MACH_GENERIC_MACH_APIC_H */