Linux Audio

Check our new training course

Loading...
v4.17
 1/* SPDX-License-Identifier: GPL-2.0 */
 2#ifndef _ASM_X86_CPU_H
 3#define _ASM_X86_CPU_H
 4
 5#include <linux/device.h>
 6#include <linux/cpu.h>
 7#include <linux/topology.h>
 8#include <linux/nodemask.h>
 9#include <linux/percpu.h>
10
11#ifdef CONFIG_SMP
12
13extern void prefill_possible_map(void);
14
15#else /* CONFIG_SMP */
16
17static inline void prefill_possible_map(void) {}
18
19#define cpu_physical_id(cpu)			boot_cpu_physical_apicid
20#define cpu_acpi_id(cpu)			0
21#define safe_smp_processor_id()			0
 
22
23#endif /* CONFIG_SMP */
24
25struct x86_cpu {
26	struct cpu cpu;
27};
28
29#ifdef CONFIG_HOTPLUG_CPU
30extern int arch_register_cpu(int num);
31extern void arch_unregister_cpu(int);
32extern void start_cpu0(void);
33#ifdef CONFIG_DEBUG_HOTPLUG_CPU0
34extern int _debug_hotplug_cpu(int cpu, int action);
35#endif
36#endif
37
 
 
38int mwait_usable(const struct cpuinfo_x86 *);
39
40unsigned int x86_family(unsigned int sig);
41unsigned int x86_model(unsigned int sig);
42unsigned int x86_stepping(unsigned int sig);
43#endif /* _ASM_X86_CPU_H */
v3.1
 
 1#ifndef _ASM_X86_CPU_H
 2#define _ASM_X86_CPU_H
 3
 4#include <linux/device.h>
 5#include <linux/cpu.h>
 6#include <linux/topology.h>
 7#include <linux/nodemask.h>
 8#include <linux/percpu.h>
 9
10#ifdef CONFIG_SMP
11
12extern void prefill_possible_map(void);
13
14#else /* CONFIG_SMP */
15
16static inline void prefill_possible_map(void) {}
17
18#define cpu_physical_id(cpu)			boot_cpu_physical_apicid
 
19#define safe_smp_processor_id()			0
20#define stack_smp_processor_id()		0
21
22#endif /* CONFIG_SMP */
23
24struct x86_cpu {
25	struct cpu cpu;
26};
27
28#ifdef CONFIG_HOTPLUG_CPU
29extern int arch_register_cpu(int num);
30extern void arch_unregister_cpu(int);
 
 
 
 
31#endif
32
33DECLARE_PER_CPU(int, cpu_state);
34
35int mwait_usable(const struct cpuinfo_x86 *);
36
 
 
 
37#endif /* _ASM_X86_CPU_H */