drivers: base: Implement weak arch_unregister_cpu()
[linux-2.6-block.git] / include / linux / cpu.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
1da177e4
LT
2/*
3 * include/linux/cpu.h - generic cpu definition
4 *
5 * This is mainly for topological representation. We define the
6 * basic 'struct cpu' here, which can be embedded in per-arch
7 * definitions of processors.
8 *
9 * Basic handling of the devices is done in drivers/base/cpu.c
1da177e4 10 *
611a75e1 11 * CPUs are exported via sysfs in the devices/system/cpu
1da177e4 12 * directory.
1da177e4
LT
13 */
14#ifndef _LINUX_CPU_H_
15#define _LINUX_CPU_H_
16
1da177e4
LT
17#include <linux/node.h>
18#include <linux/compiler.h>
19#include <linux/cpumask.h>
cff7d378 20#include <linux/cpuhotplug.h>
3f916919 21#include <linux/cpu_smt.h>
1da177e4 22
313162d0 23struct device;
d1cb9d1a 24struct device_node;
3d52943b 25struct attribute_group;
313162d0 26
1da177e4
LT
27struct cpu {
28 int node_id; /* The node which contains the CPU */
72486f1f 29 int hotpluggable; /* creates sysfs control file if hotpluggable */
8a25a2fd 30 struct device dev;
1da177e4
LT
31};
32
cff7d378 33extern void boot_cpu_init(void);
b5b1404d 34extern void boot_cpu_hotplug_init(void);
1777e463
IM
35extern void cpu_init(void);
36extern void trap_init(void);
cff7d378 37
76b67ed9 38extern int register_cpu(struct cpu *cpu, int num);
8a25a2fd 39extern struct device *get_cpu_device(unsigned cpu);
2987557f 40extern bool cpu_is_hotpluggable(unsigned cpu);
183912d3 41extern bool arch_match_cpu_phys_id(int cpu, u64 phys_id);
d1cb9d1a
DM
42extern bool arch_find_n_match_cpu_physical_id(struct device_node *cpun,
43 int cpu, unsigned int *thread);
0344c6c5 44
8a25a2fd
KS
45extern int cpu_add_dev_attr(struct device_attribute *attr);
46extern void cpu_remove_dev_attr(struct device_attribute *attr);
0344c6c5 47
8a25a2fd
KS
48extern int cpu_add_dev_attr_group(struct attribute_group *attrs);
49extern void cpu_remove_dev_attr_group(struct attribute_group *attrs);
0344c6c5 50
87590ce6
TG
51extern ssize_t cpu_show_meltdown(struct device *dev,
52 struct device_attribute *attr, char *buf);
53extern ssize_t cpu_show_spectre_v1(struct device *dev,
54 struct device_attribute *attr, char *buf);
55extern ssize_t cpu_show_spectre_v2(struct device *dev,
56 struct device_attribute *attr, char *buf);
c456442c
KRW
57extern ssize_t cpu_show_spec_store_bypass(struct device *dev,
58 struct device_attribute *attr, char *buf);
17dbca11
AK
59extern ssize_t cpu_show_l1tf(struct device *dev,
60 struct device_attribute *attr, char *buf);
8a4b06d3
TG
61extern ssize_t cpu_show_mds(struct device *dev,
62 struct device_attribute *attr, char *buf);
6608b45a
PG
63extern ssize_t cpu_show_tsx_async_abort(struct device *dev,
64 struct device_attribute *attr,
65 char *buf);
db4d30fb
VT
66extern ssize_t cpu_show_itlb_multihit(struct device *dev,
67 struct device_attribute *attr, char *buf);
2accfa69 68extern ssize_t cpu_show_srbds(struct device *dev, struct device_attribute *attr, char *buf);
8d50cdf8
PG
69extern ssize_t cpu_show_mmio_stale_data(struct device *dev,
70 struct device_attribute *attr,
71 char *buf);
6b80b59b
AC
72extern ssize_t cpu_show_retbleed(struct device *dev,
73 struct device_attribute *attr, char *buf);
fb3bd914
BPA
74extern ssize_t cpu_show_spec_rstack_overflow(struct device *dev,
75 struct device_attribute *attr, char *buf);
a57c27c7
AB
76extern ssize_t cpu_show_gds(struct device *dev,
77 struct device_attribute *attr, char *buf);
87590ce6 78
8db14860
NI
79extern __printf(4, 5)
80struct device *cpu_device_create(struct device *parent, void *drvdata,
81 const struct attribute_group **groups,
82 const char *fmt, ...);
c4dd854f
RKO
83extern int arch_register_cpu(int cpu);
84extern void arch_unregister_cpu(int cpu);
1da177e4 85#ifdef CONFIG_HOTPLUG_CPU
76b67ed9 86extern void unregister_cpu(struct cpu *cpu);
12633e80
NF
87extern ssize_t arch_cpu_probe(const char *, size_t);
88extern ssize_t arch_cpu_release(const char *, size_t);
1da177e4 89#endif
1da177e4 90
0949dd96
JM
91#ifdef CONFIG_GENERIC_CPU_DEVICES
92DECLARE_PER_CPU(struct cpu, cpu_devices);
93#endif
94
f4c09f87
TG
95/*
96 * These states are not related to the core CPU hotplug mechanism. They are
97 * used by various (sub)architectures to track internal state
80f1ff97 98 */
f4c09f87
TG
99#define CPU_ONLINE 0x0002 /* CPU is up */
100#define CPU_UP_PREPARE 0x0003 /* CPU coming up */
101#define CPU_DEAD 0x0007 /* CPU dead */
102#define CPU_DEAD_FROZEN 0x0008 /* CPU timed out on unplug */
103#define CPU_POST_DEAD 0x0009 /* CPU successfully unplugged */
104#define CPU_BROKEN 0x000B /* CPU did not die properly */
80f1ff97 105
1da177e4 106#ifdef CONFIG_SMP
090e77c3 107extern bool cpuhp_tasks_frozen;
93ef1429 108int add_cpu(unsigned int cpu);
33c3736e 109int cpu_device_up(struct device *dev);
e545a614 110void notify_cpu_starting(unsigned int cpu);
3da1c84c
ON
111extern void cpu_maps_update_begin(void);
112extern void cpu_maps_update_done(void);
d720f986 113int bringup_hibernate_cpu(unsigned int sleep_cpu);
b99a2659 114void bringup_nonboot_cpus(unsigned int setup_max_cpus);
d0d23b54 115
3da1c84c 116#else /* CONFIG_SMP */
090e77c3 117#define cpuhp_tasks_frozen 0
1da177e4 118
3da1c84c
ON
119static inline void cpu_maps_update_begin(void)
120{
121}
122
123static inline void cpu_maps_update_done(void)
124{
125}
126
51f24030
SL
127static inline int add_cpu(unsigned int cpu) { return 0;}
128
1da177e4 129#endif /* CONFIG_SMP */
8a25a2fd 130extern struct bus_type cpu_subsys;
1da177e4 131
43759fe5
FW
132extern int lockdep_is_cpus_held(void);
133
1da177e4 134#ifdef CONFIG_HOTPLUG_CPU
8f553c49
TG
135extern void cpus_write_lock(void);
136extern void cpus_write_unlock(void);
137extern void cpus_read_lock(void);
138extern void cpus_read_unlock(void);
6f4ceee9 139extern int cpus_read_trylock(void);
fc8dffd3 140extern void lockdep_assert_cpus_held(void);
16e53dbf
SB
141extern void cpu_hotplug_disable(void);
142extern void cpu_hotplug_enable(void);
cb79295e 143void clear_tasks_mm_cpumask(int cpu);
93ef1429 144int remove_cpu(unsigned int cpu);
33c3736e 145int cpu_device_down(struct device *dev);
0441a559 146extern void smp_shutdown_nonboot_cpus(unsigned int primary_cpu);
f7dff2b1 147
8f553c49
TG
148#else /* CONFIG_HOTPLUG_CPU */
149
150static inline void cpus_write_lock(void) { }
151static inline void cpus_write_unlock(void) { }
152static inline void cpus_read_lock(void) { }
153static inline void cpus_read_unlock(void) { }
6f4ceee9 154static inline int cpus_read_trylock(void) { return true; }
ade3f680 155static inline void lockdep_assert_cpus_held(void) { }
8f553c49
TG
156static inline void cpu_hotplug_disable(void) { }
157static inline void cpu_hotplug_enable(void) { }
51f24030 158static inline int remove_cpu(unsigned int cpu) { return -EPERM; }
0441a559 159static inline void smp_shutdown_nonboot_cpus(unsigned int primary_cpu) { }
8f553c49
TG
160#endif /* !CONFIG_HOTPLUG_CPU */
161
6fb45460
PZ
162DEFINE_LOCK_GUARD_0(cpus_read_lock, cpus_read_lock(), cpus_read_unlock())
163
f3de4be9 164#ifdef CONFIG_PM_SLEEP_SMP
fb7fb84a 165extern int freeze_secondary_cpus(int primary);
56555855 166extern void thaw_secondary_cpus(void);
2f1a6fbb
NP
167
168static inline int suspend_disable_secondary_cpus(void)
169{
9ca12ac0
NP
170 int cpu = 0;
171
172 if (IS_ENABLED(CONFIG_PM_SLEEP_SMP_NONZERO_CPU))
173 cpu = -1;
174
175 return freeze_secondary_cpus(cpu);
2f1a6fbb
NP
176}
177static inline void suspend_enable_secondary_cpus(void)
178{
56555855 179 return thaw_secondary_cpus();
2f1a6fbb
NP
180}
181
f3de4be9 182#else /* !CONFIG_PM_SLEEP_SMP */
56555855 183static inline void thaw_secondary_cpus(void) {}
2f1a6fbb
NP
184static inline int suspend_disable_secondary_cpus(void) { return 0; }
185static inline void suspend_enable_secondary_cpus(void) { }
f3de4be9 186#endif /* !CONFIG_PM_SLEEP_SMP */
e3920fb4 187
d4e5268a 188void __noreturn cpu_startup_entry(enum cpuhp_state state);
a1a04ec3 189
d1669912
TG
190void cpu_idle_poll_ctrl(bool enable);
191
6727ad9e
CM
192bool cpu_in_idle(unsigned long pc);
193
d1669912
TG
194void arch_cpu_idle(void);
195void arch_cpu_idle_prepare(void);
196void arch_cpu_idle_enter(void);
197void arch_cpu_idle_exit(void);
071c44e4 198void __noreturn arch_cpu_idle_dead(void);
d1669912 199
7725acaa
TG
200#ifdef CONFIG_ARCH_HAS_CPU_FINALIZE_INIT
201void arch_cpu_finalize_init(void);
202#else
203static inline void arch_cpu_finalize_init(void) { }
204#endif
205
c55b51a0
DL
206void play_idle_precise(u64 duration_ns, u64 latency_ns);
207
208static inline void play_idle(unsigned long duration_us)
209{
210 play_idle_precise(duration_us * NSEC_PER_USEC, U64_MAX);
211}
c1de45ca 212
8038dad7 213#ifdef CONFIG_HOTPLUG_CPU
e69aab13
TG
214void cpuhp_report_idle_dead(void);
215#else
216static inline void cpuhp_report_idle_dead(void) { }
8038dad7
PM
217#endif /* #ifdef CONFIG_HOTPLUG_CPU */
218
731dc9df
TH
219extern bool cpu_mitigations_off(void);
220extern bool cpu_mitigations_auto_nosmt(void);
98af8452 221
1da177e4 222#endif /* _LINUX_CPU_H_ */