cpu.h 936 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. #ifndef _ASM_X86_CPU_H
  2. #define _ASM_X86_CPU_H
  3. #include <linux/device.h>
  4. #include <linux/cpu.h>
  5. #include <linux/topology.h>
  6. #include <linux/nodemask.h>
  7. #include <linux/percpu.h>
  8. #ifdef CONFIG_SMP
  9. extern void prefill_possible_map(void);
  10. #else /* CONFIG_SMP */
  11. static inline void prefill_possible_map(void) {}
  12. #define cpu_physical_id(cpu) boot_cpu_physical_apicid
  13. #define cpu_acpi_id(cpu) 0
  14. #define safe_smp_processor_id() 0
  15. #endif /* CONFIG_SMP */
  16. struct x86_cpu {
  17. struct cpu cpu;
  18. };
  19. #ifdef CONFIG_HOTPLUG_CPU
  20. extern int arch_register_cpu(int num);
  21. extern void arch_unregister_cpu(int);
  22. extern void start_cpu0(void);
  23. #ifdef CONFIG_DEBUG_HOTPLUG_CPU0
  24. extern int _debug_hotplug_cpu(int cpu, int action);
  25. #endif
  26. #endif
  27. int mwait_usable(const struct cpuinfo_x86 *);
  28. unsigned int x86_family(unsigned int sig);
  29. unsigned int x86_model(unsigned int sig);
  30. unsigned int x86_stepping(unsigned int sig);
  31. #endif /* _ASM_X86_CPU_H */