mach_apic.h 1007 B

123456789101112131415161718192021222324
  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 init_apic_ldr (apic->init_apic_ldr)
  5. #define ioapic_phys_id_map (apic->ioapic_phys_id_map)
  6. #define setup_apic_routing (apic->setup_apic_routing)
  7. #define multi_timer_check (apic->multi_timer_check)
  8. #define apicid_to_node (apic->apicid_to_node)
  9. #define cpu_to_logical_apicid (apic->cpu_to_logical_apicid)
  10. #define cpu_present_to_apicid (apic->cpu_present_to_apicid)
  11. #define apicid_to_cpu_present (apic->apicid_to_cpu_present)
  12. #define setup_portio_remap (apic->setup_portio_remap)
  13. #define check_phys_apicid_present (apic->check_phys_apicid_present)
  14. #define cpu_mask_to_apicid (apic->cpu_mask_to_apicid)
  15. #define cpu_mask_to_apicid_and (apic->cpu_mask_to_apicid_and)
  16. #define enable_apic_mode (apic->enable_apic_mode)
  17. #define phys_pkg_id (apic->phys_pkg_id)
  18. #define wakeup_secondary_cpu (apic->wakeup_cpu)
  19. extern void generic_bigsmp_probe(void);
  20. #endif /* _ASM_X86_MACH_GENERIC_MACH_APIC_H */