| 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
| 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 |
| 10 | * |
| 11 | * CPUs are exported via sysfs in the devices/system/cpu |
| 12 | * directory. |
| 13 | */ |
| 14 | #ifndef _LINUX_CPU_H_ |
| 15 | #define _LINUX_CPU_H_ |
| 16 | |
| 17 | #include <linux/node.h> |
| 18 | #include <linux/compiler.h> |
| 19 | #include <linux/cpuhotplug.h> |
| 20 | #include <linux/cpuhplock.h> |
| 21 | #include <linux/cpu_smt.h> |
| 22 | |
| 23 | struct device; |
| 24 | struct device_node; |
| 25 | struct attribute_group; |
| 26 | |
| 27 | struct cpu { |
| 28 | int node_id; /* The node which contains the CPU */ |
| 29 | int hotpluggable; /* creates sysfs control file if hotpluggable */ |
| 30 | struct device dev; |
| 31 | }; |
| 32 | |
| 33 | extern void boot_cpu_init(void); |
| 34 | extern void boot_cpu_hotplug_init(void); |
| 35 | extern void cpu_init(void); |
| 36 | extern void trap_init(void); |
| 37 | |
| 38 | extern int register_cpu(struct cpu *cpu, int num); |
| 39 | extern struct device *get_cpu_device(unsigned cpu); |
| 40 | extern bool cpu_is_hotpluggable(unsigned cpu); |
| 41 | extern bool arch_match_cpu_phys_id(int cpu, u64 phys_id); |
| 42 | extern bool arch_find_n_match_cpu_physical_id(struct device_node *cpun, |
| 43 | int cpu, unsigned int *thread); |
| 44 | |
| 45 | extern int cpu_add_dev_attr(struct device_attribute *attr); |
| 46 | extern void cpu_remove_dev_attr(struct device_attribute *attr); |
| 47 | |
| 48 | extern int cpu_add_dev_attr_group(struct attribute_group *attrs); |
| 49 | extern void cpu_remove_dev_attr_group(struct attribute_group *attrs); |
| 50 | |
| 51 | extern ssize_t cpu_show_meltdown(struct device *dev, |
| 52 | struct device_attribute *attr, char *buf); |
| 53 | extern ssize_t cpu_show_spectre_v1(struct device *dev, |
| 54 | struct device_attribute *attr, char *buf); |
| 55 | extern ssize_t cpu_show_spectre_v2(struct device *dev, |
| 56 | struct device_attribute *attr, char *buf); |
| 57 | extern ssize_t cpu_show_spec_store_bypass(struct device *dev, |
| 58 | struct device_attribute *attr, char *buf); |
| 59 | extern ssize_t cpu_show_l1tf(struct device *dev, |
| 60 | struct device_attribute *attr, char *buf); |
| 61 | extern ssize_t cpu_show_mds(struct device *dev, |
| 62 | struct device_attribute *attr, char *buf); |
| 63 | extern ssize_t cpu_show_tsx_async_abort(struct device *dev, |
| 64 | struct device_attribute *attr, |
| 65 | char *buf); |
| 66 | extern ssize_t cpu_show_itlb_multihit(struct device *dev, |
| 67 | struct device_attribute *attr, char *buf); |
| 68 | extern ssize_t cpu_show_srbds(struct device *dev, struct device_attribute *attr, char *buf); |
| 69 | extern ssize_t cpu_show_mmio_stale_data(struct device *dev, |
| 70 | struct device_attribute *attr, |
| 71 | char *buf); |
| 72 | extern ssize_t cpu_show_retbleed(struct device *dev, |
| 73 | struct device_attribute *attr, char *buf); |
| 74 | extern ssize_t cpu_show_spec_rstack_overflow(struct device *dev, |
| 75 | struct device_attribute *attr, char *buf); |
| 76 | extern ssize_t cpu_show_gds(struct device *dev, |
| 77 | struct device_attribute *attr, char *buf); |
| 78 | extern ssize_t cpu_show_reg_file_data_sampling(struct device *dev, |
| 79 | struct device_attribute *attr, char *buf); |
| 80 | extern ssize_t cpu_show_ghostwrite(struct device *dev, struct device_attribute *attr, char *buf); |
| 81 | extern ssize_t cpu_show_old_microcode(struct device *dev, |
| 82 | struct device_attribute *attr, char *buf); |
| 83 | extern ssize_t cpu_show_indirect_target_selection(struct device *dev, |
| 84 | struct device_attribute *attr, char *buf); |
| 85 | |
| 86 | extern __printf(4, 5) |
| 87 | struct device *cpu_device_create(struct device *parent, void *drvdata, |
| 88 | const struct attribute_group **groups, |
| 89 | const char *fmt, ...); |
| 90 | extern bool arch_cpu_is_hotpluggable(int cpu); |
| 91 | extern int arch_register_cpu(int cpu); |
| 92 | extern void arch_unregister_cpu(int cpu); |
| 93 | #ifdef CONFIG_HOTPLUG_CPU |
| 94 | extern void unregister_cpu(struct cpu *cpu); |
| 95 | extern ssize_t arch_cpu_probe(const char *, size_t); |
| 96 | extern ssize_t arch_cpu_release(const char *, size_t); |
| 97 | #endif |
| 98 | |
| 99 | #ifdef CONFIG_GENERIC_CPU_DEVICES |
| 100 | DECLARE_PER_CPU(struct cpu, cpu_devices); |
| 101 | #endif |
| 102 | |
| 103 | /* |
| 104 | * These states are not related to the core CPU hotplug mechanism. They are |
| 105 | * used by various (sub)architectures to track internal state |
| 106 | */ |
| 107 | #define CPU_ONLINE 0x0002 /* CPU is up */ |
| 108 | #define CPU_UP_PREPARE 0x0003 /* CPU coming up */ |
| 109 | #define CPU_DEAD 0x0007 /* CPU dead */ |
| 110 | #define CPU_DEAD_FROZEN 0x0008 /* CPU timed out on unplug */ |
| 111 | #define CPU_POST_DEAD 0x0009 /* CPU successfully unplugged */ |
| 112 | #define CPU_BROKEN 0x000B /* CPU did not die properly */ |
| 113 | |
| 114 | #ifdef CONFIG_SMP |
| 115 | extern bool cpuhp_tasks_frozen; |
| 116 | int add_cpu(unsigned int cpu); |
| 117 | int cpu_device_up(struct device *dev); |
| 118 | void notify_cpu_starting(unsigned int cpu); |
| 119 | extern void cpu_maps_update_begin(void); |
| 120 | extern void cpu_maps_update_done(void); |
| 121 | int bringup_hibernate_cpu(unsigned int sleep_cpu); |
| 122 | void bringup_nonboot_cpus(unsigned int max_cpus); |
| 123 | |
| 124 | #else /* CONFIG_SMP */ |
| 125 | #define cpuhp_tasks_frozen 0 |
| 126 | |
| 127 | static inline void cpu_maps_update_begin(void) |
| 128 | { |
| 129 | } |
| 130 | |
| 131 | static inline void cpu_maps_update_done(void) |
| 132 | { |
| 133 | } |
| 134 | |
| 135 | static inline int add_cpu(unsigned int cpu) { return 0;} |
| 136 | |
| 137 | #endif /* CONFIG_SMP */ |
| 138 | extern const struct bus_type cpu_subsys; |
| 139 | |
| 140 | #ifdef CONFIG_PM_SLEEP_SMP |
| 141 | extern int freeze_secondary_cpus(int primary); |
| 142 | extern void thaw_secondary_cpus(void); |
| 143 | |
| 144 | static inline int suspend_disable_secondary_cpus(void) |
| 145 | { |
| 146 | int cpu = 0; |
| 147 | |
| 148 | if (IS_ENABLED(CONFIG_PM_SLEEP_SMP_NONZERO_CPU)) |
| 149 | cpu = -1; |
| 150 | |
| 151 | return freeze_secondary_cpus(primary: cpu); |
| 152 | } |
| 153 | static inline void suspend_enable_secondary_cpus(void) |
| 154 | { |
| 155 | thaw_secondary_cpus(); |
| 156 | } |
| 157 | |
| 158 | #else /* !CONFIG_PM_SLEEP_SMP */ |
| 159 | static inline void thaw_secondary_cpus(void) {} |
| 160 | static inline int suspend_disable_secondary_cpus(void) { return 0; } |
| 161 | static inline void suspend_enable_secondary_cpus(void) { } |
| 162 | #endif /* !CONFIG_PM_SLEEP_SMP */ |
| 163 | |
| 164 | void __noreturn cpu_startup_entry(enum cpuhp_state state); |
| 165 | |
| 166 | void cpu_idle_poll_ctrl(bool enable); |
| 167 | |
| 168 | bool cpu_in_idle(unsigned long pc); |
| 169 | |
| 170 | void arch_cpu_idle(void); |
| 171 | void arch_cpu_idle_prepare(void); |
| 172 | void arch_cpu_idle_enter(void); |
| 173 | void arch_cpu_idle_exit(void); |
| 174 | void arch_tick_broadcast_enter(void); |
| 175 | void arch_tick_broadcast_exit(void); |
| 176 | void __noreturn arch_cpu_idle_dead(void); |
| 177 | |
| 178 | #ifdef CONFIG_ARCH_HAS_CPU_FINALIZE_INIT |
| 179 | void arch_cpu_finalize_init(void); |
| 180 | #else |
| 181 | static inline void arch_cpu_finalize_init(void) { } |
| 182 | #endif |
| 183 | |
| 184 | void play_idle_precise(u64 duration_ns, u64 latency_ns); |
| 185 | |
| 186 | static inline void play_idle(unsigned long duration_us) |
| 187 | { |
| 188 | play_idle_precise(duration_ns: duration_us * NSEC_PER_USEC, U64_MAX); |
| 189 | } |
| 190 | |
| 191 | #ifdef CONFIG_HOTPLUG_CPU |
| 192 | void cpuhp_report_idle_dead(void); |
| 193 | #else |
| 194 | static inline void cpuhp_report_idle_dead(void) { } |
| 195 | #endif /* #ifdef CONFIG_HOTPLUG_CPU */ |
| 196 | |
| 197 | #ifdef CONFIG_CPU_MITIGATIONS |
| 198 | extern bool cpu_mitigations_off(void); |
| 199 | extern bool cpu_mitigations_auto_nosmt(void); |
| 200 | #else |
| 201 | static inline bool cpu_mitigations_off(void) |
| 202 | { |
| 203 | return true; |
| 204 | } |
| 205 | static inline bool cpu_mitigations_auto_nosmt(void) |
| 206 | { |
| 207 | return false; |
| 208 | } |
| 209 | #endif |
| 210 | |
| 211 | #endif /* _LINUX_CPU_H_ */ |
| 212 | |