mach_apic.h 1.2 KB

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