blob: 488d6ebcf6a18681c2d2e7e57de9947c5e3f77ca [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * include/linux/cpu.h - generic cpu definition
3 *
4 * This is mainly for topological representation. We define the
5 * basic 'struct cpu' here, which can be embedded in per-arch
6 * definitions of processors.
7 *
8 * Basic handling of the devices is done in drivers/base/cpu.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 *
Robert P. J. Day611a75e12013-05-03 06:45:48 -040010 * CPUs are exported via sysfs in the devices/system/cpu
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 * directory.
Linus Torvalds1da177e2005-04-16 15:20:36 -070012 */
13#ifndef _LINUX_CPU_H_
14#define _LINUX_CPU_H_
15
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/node.h>
17#include <linux/compiler.h>
18#include <linux/cpumask.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019
Paul Gortmaker313162d2012-01-30 11:46:54 -050020struct device;
David Millerd1cb9d12013-10-03 17:24:51 -040021struct device_node;
Paul Gortmaker313162d2012-01-30 11:46:54 -050022
Linus Torvalds1da177e2005-04-16 15:20:36 -070023struct cpu {
24 int node_id; /* The node which contains the CPU */
Siddha, Suresh B72486f12006-12-07 02:14:10 +010025 int hotpluggable; /* creates sysfs control file if hotpluggable */
Kay Sievers8a25a2f2011-12-21 14:29:42 -080026 struct device dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -070027};
28
KAMEZAWA Hiroyuki76b67ed2006-06-27 02:53:41 -070029extern int register_cpu(struct cpu *cpu, int num);
Kay Sievers8a25a2f2011-12-21 14:29:42 -080030extern struct device *get_cpu_device(unsigned cpu);
Josh Triplett29875572011-12-03 13:06:50 -080031extern bool cpu_is_hotpluggable(unsigned cpu);
Sudeep KarkadaNagesha183912d2013-08-15 14:01:40 +010032extern bool arch_match_cpu_phys_id(int cpu, u64 phys_id);
David Millerd1cb9d12013-10-03 17:24:51 -040033extern bool arch_find_n_match_cpu_physical_id(struct device_node *cpun,
34 int cpu, unsigned int *thread);
Christian Krafft0344c6c2006-10-24 18:31:24 +020035
Kay Sievers8a25a2f2011-12-21 14:29:42 -080036extern int cpu_add_dev_attr(struct device_attribute *attr);
37extern void cpu_remove_dev_attr(struct device_attribute *attr);
Christian Krafft0344c6c2006-10-24 18:31:24 +020038
Kay Sievers8a25a2f2011-12-21 14:29:42 -080039extern int cpu_add_dev_attr_group(struct attribute_group *attrs);
40extern void cpu_remove_dev_attr_group(struct attribute_group *attrs);
Christian Krafft0344c6c2006-10-24 18:31:24 +020041
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#ifdef CONFIG_HOTPLUG_CPU
KAMEZAWA Hiroyuki76b67ed2006-06-27 02:53:41 -070043extern void unregister_cpu(struct cpu *cpu);
Nathan Fontenot12633e82009-11-25 17:23:25 +000044extern ssize_t arch_cpu_probe(const char *, size_t);
45extern ssize_t arch_cpu_release(const char *, size_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#endif
47struct notifier_block;
48
Thomas Renningerfad12ac2012-01-26 00:09:14 +010049#ifdef CONFIG_ARCH_HAS_CPU_AUTOPROBE
50extern int arch_cpu_uevent(struct device *dev, struct kobj_uevent_env *env);
51extern ssize_t arch_print_cpu_modalias(struct device *dev,
52 struct device_attribute *attr,
53 char *bufptr);
54#endif
55
Tejun Heo50a323b2010-06-08 21:40:36 +020056/*
57 * CPU notifier priorities.
58 */
59enum {
Tejun Heo3a101d02010-06-08 21:40:36 +020060 /*
61 * SCHED_ACTIVE marks a cpu which is coming up active during
62 * CPU_ONLINE and CPU_DOWN_FAILED and must be the first
63 * notifier. CPUSET_ACTIVE adjusts cpuset according to
64 * cpu_active mask right after SCHED_ACTIVE. During
65 * CPU_DOWN_PREPARE, SCHED_INACTIVE and CPUSET_INACTIVE are
66 * ordered in the similar way.
67 *
68 * This ordering guarantees consistent cpu_active mask and
69 * migration behavior to all cpu notifiers.
70 */
71 CPU_PRI_SCHED_ACTIVE = INT_MAX,
72 CPU_PRI_CPUSET_ACTIVE = INT_MAX - 1,
73 CPU_PRI_SCHED_INACTIVE = INT_MIN + 1,
74 CPU_PRI_CPUSET_INACTIVE = INT_MIN,
75
Tejun Heo50a323b2010-06-08 21:40:36 +020076 /* migration should happen before other stuff but after perf */
77 CPU_PRI_PERF = 20,
78 CPU_PRI_MIGRATION = 10,
Tejun Heo65758202012-07-17 12:39:26 -070079 /* bring up workqueues before normal notifiers and down after */
80 CPU_PRI_WORKQUEUE_UP = 5,
81 CPU_PRI_WORKQUEUE_DOWN = -5,
Tejun Heo50a323b2010-06-08 21:40:36 +020082};
83
Amerigo Wang80f1ff92011-07-25 17:13:08 -070084#define CPU_ONLINE 0x0002 /* CPU (unsigned)v is up */
85#define CPU_UP_PREPARE 0x0003 /* CPU (unsigned)v coming up */
86#define CPU_UP_CANCELED 0x0004 /* CPU (unsigned)v NOT coming up */
87#define CPU_DOWN_PREPARE 0x0005 /* CPU (unsigned)v going down */
88#define CPU_DOWN_FAILED 0x0006 /* CPU (unsigned)v NOT going down */
89#define CPU_DEAD 0x0007 /* CPU (unsigned)v dead */
90#define CPU_DYING 0x0008 /* CPU (unsigned)v not running any task,
91 * not handling interrupts, soon dead.
92 * Called on the dying cpu, interrupts
93 * are already disabled. Must not
94 * sleep, must not fail */
95#define CPU_POST_DEAD 0x0009 /* CPU (unsigned)v dead, cpu_hotplug
96 * lock is dropped */
97#define CPU_STARTING 0x000A /* CPU (unsigned)v soon running.
98 * Called on the new cpu, just before
99 * enabling interrupts. Must not sleep,
100 * must not fail */
101
102/* Used for CPU hotplug events occurring while tasks are frozen due to a suspend
103 * operation in progress
104 */
105#define CPU_TASKS_FROZEN 0x0010
106
107#define CPU_ONLINE_FROZEN (CPU_ONLINE | CPU_TASKS_FROZEN)
108#define CPU_UP_PREPARE_FROZEN (CPU_UP_PREPARE | CPU_TASKS_FROZEN)
109#define CPU_UP_CANCELED_FROZEN (CPU_UP_CANCELED | CPU_TASKS_FROZEN)
110#define CPU_DOWN_PREPARE_FROZEN (CPU_DOWN_PREPARE | CPU_TASKS_FROZEN)
111#define CPU_DOWN_FAILED_FROZEN (CPU_DOWN_FAILED | CPU_TASKS_FROZEN)
112#define CPU_DEAD_FROZEN (CPU_DEAD | CPU_TASKS_FROZEN)
113#define CPU_DYING_FROZEN (CPU_DYING | CPU_TASKS_FROZEN)
114#define CPU_STARTING_FROZEN (CPU_STARTING | CPU_TASKS_FROZEN)
115
116
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117#ifdef CONFIG_SMP
118/* Need to know about CPUs going up/down? */
Paul E. McKenney799e64f2009-08-15 09:53:47 -0700119#if defined(CONFIG_HOTPLUG_CPU) || !defined(MODULE)
120#define cpu_notifier(fn, pri) { \
Paul Gortmaker0db06282013-06-19 14:53:51 -0400121 static struct notifier_block fn##_nb = \
Paul E. McKenney799e64f2009-08-15 09:53:47 -0700122 { .notifier_call = fn, .priority = pri }; \
123 register_cpu_notifier(&fn##_nb); \
124}
Srivatsa S. Bhat93ae4f92014-03-11 02:04:14 +0530125
126#define __cpu_notifier(fn, pri) { \
127 static struct notifier_block fn##_nb = \
128 { .notifier_call = fn, .priority = pri }; \
129 __register_cpu_notifier(&fn##_nb); \
130}
Paul E. McKenney799e64f2009-08-15 09:53:47 -0700131#else /* #if defined(CONFIG_HOTPLUG_CPU) || !defined(MODULE) */
132#define cpu_notifier(fn, pri) do { (void)(fn); } while (0)
Srivatsa S. Bhat93ae4f92014-03-11 02:04:14 +0530133#define __cpu_notifier(fn, pri) do { (void)(fn); } while (0)
Paul E. McKenney799e64f2009-08-15 09:53:47 -0700134#endif /* #else #if defined(CONFIG_HOTPLUG_CPU) || !defined(MODULE) */
Srivatsa S. Bhat93ae4f92014-03-11 02:04:14 +0530135
Chandra Seetharaman65edc682006-06-27 02:54:08 -0700136#ifdef CONFIG_HOTPLUG_CPU
Avi Kivity47e627bc2007-02-12 00:54:43 -0800137extern int register_cpu_notifier(struct notifier_block *nb);
Srivatsa S. Bhat93ae4f92014-03-11 02:04:14 +0530138extern int __register_cpu_notifier(struct notifier_block *nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139extern void unregister_cpu_notifier(struct notifier_block *nb);
Srivatsa S. Bhat93ae4f92014-03-11 02:04:14 +0530140extern void __unregister_cpu_notifier(struct notifier_block *nb);
Chandra Seetharaman65edc682006-06-27 02:54:08 -0700141#else
Avi Kivity47e627bc2007-02-12 00:54:43 -0800142
143#ifndef MODULE
144extern int register_cpu_notifier(struct notifier_block *nb);
Srivatsa S. Bhat93ae4f92014-03-11 02:04:14 +0530145extern int __register_cpu_notifier(struct notifier_block *nb);
Avi Kivity47e627bc2007-02-12 00:54:43 -0800146#else
147static inline int register_cpu_notifier(struct notifier_block *nb)
148{
149 return 0;
150}
Srivatsa S. Bhat93ae4f92014-03-11 02:04:14 +0530151
152static inline int __register_cpu_notifier(struct notifier_block *nb)
153{
154 return 0;
155}
Avi Kivity47e627bc2007-02-12 00:54:43 -0800156#endif
157
Chandra Seetharaman65edc682006-06-27 02:54:08 -0700158static inline void unregister_cpu_notifier(struct notifier_block *nb)
159{
160}
Srivatsa S. Bhat93ae4f92014-03-11 02:04:14 +0530161
162static inline void __unregister_cpu_notifier(struct notifier_block *nb)
163{
164}
Chandra Seetharaman65edc682006-06-27 02:54:08 -0700165#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166
167int cpu_up(unsigned int cpu);
Manfred Spraule545a612008-09-07 16:57:22 +0200168void notify_cpu_starting(unsigned int cpu);
Oleg Nesterov3da1c842008-07-25 01:47:50 -0700169extern void cpu_maps_update_begin(void);
170extern void cpu_maps_update_done(void);
Ingo Molnard0d23b52008-01-25 21:08:02 +0100171
Srivatsa S. Bhat93ae4f92014-03-11 02:04:14 +0530172#define cpu_notifier_register_begin cpu_maps_update_begin
173#define cpu_notifier_register_done cpu_maps_update_done
174
Oleg Nesterov3da1c842008-07-25 01:47:50 -0700175#else /* CONFIG_SMP */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176
Paul E. McKenney799e64f2009-08-15 09:53:47 -0700177#define cpu_notifier(fn, pri) do { (void)(fn); } while (0)
Srivatsa S. Bhat93ae4f92014-03-11 02:04:14 +0530178#define __cpu_notifier(fn, pri) do { (void)(fn); } while (0)
Paul E. McKenney799e64f2009-08-15 09:53:47 -0700179
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180static inline int register_cpu_notifier(struct notifier_block *nb)
181{
182 return 0;
183}
Ingo Molnard0d23b52008-01-25 21:08:02 +0100184
Srivatsa S. Bhat93ae4f92014-03-11 02:04:14 +0530185static inline int __register_cpu_notifier(struct notifier_block *nb)
186{
187 return 0;
188}
189
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190static inline void unregister_cpu_notifier(struct notifier_block *nb)
191{
192}
193
Srivatsa S. Bhat93ae4f92014-03-11 02:04:14 +0530194static inline void __unregister_cpu_notifier(struct notifier_block *nb)
195{
196}
197
Oleg Nesterov3da1c842008-07-25 01:47:50 -0700198static inline void cpu_maps_update_begin(void)
199{
200}
201
202static inline void cpu_maps_update_done(void)
203{
204}
205
Srivatsa S. Bhat93ae4f92014-03-11 02:04:14 +0530206static inline void cpu_notifier_register_begin(void)
207{
208}
209
210static inline void cpu_notifier_register_done(void)
211{
212}
213
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214#endif /* CONFIG_SMP */
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800215extern struct bus_type cpu_subsys;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
217#ifdef CONFIG_HOTPLUG_CPU
218/* Stop CPUs going up and down. */
Gautham R Shenoyf7dff2b2006-12-06 20:38:58 -0800219
Toshi Kanib9d10be2013-08-12 09:45:53 -0600220extern void cpu_hotplug_begin(void);
221extern void cpu_hotplug_done(void);
Gautham R Shenoy86ef5c92008-01-25 21:08:02 +0100222extern void get_online_cpus(void);
223extern void put_online_cpus(void);
Srivatsa S. Bhat16e53db2013-06-12 14:04:36 -0700224extern void cpu_hotplug_disable(void);
225extern void cpu_hotplug_enable(void);
Paul E. McKenney799e64f2009-08-15 09:53:47 -0700226#define hotcpu_notifier(fn, pri) cpu_notifier(fn, pri)
Srivatsa S. Bhat93ae4f92014-03-11 02:04:14 +0530227#define __hotcpu_notifier(fn, pri) __cpu_notifier(fn, pri)
Chandra Seetharaman39f48852006-06-27 02:54:10 -0700228#define register_hotcpu_notifier(nb) register_cpu_notifier(nb)
Srivatsa S. Bhat93ae4f92014-03-11 02:04:14 +0530229#define __register_hotcpu_notifier(nb) __register_cpu_notifier(nb)
Chandra Seetharaman39f48852006-06-27 02:54:10 -0700230#define unregister_hotcpu_notifier(nb) unregister_cpu_notifier(nb)
Srivatsa S. Bhat93ae4f92014-03-11 02:04:14 +0530231#define __unregister_hotcpu_notifier(nb) __unregister_cpu_notifier(nb)
Anton Vorontsovcb792952012-05-31 16:26:22 -0700232void clear_tasks_mm_cpumask(int cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233int cpu_down(unsigned int cpu);
Gautham R Shenoyf7dff2b2006-12-06 20:38:58 -0800234
235#else /* CONFIG_HOTPLUG_CPU */
236
Toshi Kanib9d10be2013-08-12 09:45:53 -0600237static inline void cpu_hotplug_begin(void) {}
238static inline void cpu_hotplug_done(void) {}
Gautham R Shenoy86ef5c92008-01-25 21:08:02 +0100239#define get_online_cpus() do { } while (0)
240#define put_online_cpus() do { } while (0)
Srivatsa S. Bhat16e53db2013-06-12 14:04:36 -0700241#define cpu_hotplug_disable() do { } while (0)
242#define cpu_hotplug_enable() do { } while (0)
Ingo Molnar023160672006-12-06 20:38:17 -0800243#define hotcpu_notifier(fn, pri) do { (void)(fn); } while (0)
Srivatsa S. Bhat93ae4f92014-03-11 02:04:14 +0530244#define __hotcpu_notifier(fn, pri) do { (void)(fn); } while (0)
Satyam Sharma761bb432007-10-18 03:06:38 -0700245/* These aren't inline functions due to a GCC bug. */
246#define register_hotcpu_notifier(nb) ({ (void)(nb); 0; })
Srivatsa S. Bhat93ae4f92014-03-11 02:04:14 +0530247#define __register_hotcpu_notifier(nb) ({ (void)(nb); 0; })
Satyam Sharma761bb432007-10-18 03:06:38 -0700248#define unregister_hotcpu_notifier(nb) ({ (void)(nb); })
Srivatsa S. Bhat93ae4f92014-03-11 02:04:14 +0530249#define __unregister_hotcpu_notifier(nb) ({ (void)(nb); })
Gautham R Shenoyf7dff2b2006-12-06 20:38:58 -0800250#endif /* CONFIG_HOTPLUG_CPU */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251
Rafael J. Wysockif3de4be2007-08-30 23:56:29 -0700252#ifdef CONFIG_PM_SLEEP_SMP
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -0700253extern int disable_nonboot_cpus(void);
254extern void enable_nonboot_cpus(void);
Rafael J. Wysockif3de4be2007-08-30 23:56:29 -0700255#else /* !CONFIG_PM_SLEEP_SMP */
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -0700256static inline int disable_nonboot_cpus(void) { return 0; }
257static inline void enable_nonboot_cpus(void) {}
Rafael J. Wysockif3de4be2007-08-30 23:56:29 -0700258#endif /* !CONFIG_PM_SLEEP_SMP */
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -0700259
Thomas Gleixnera1a04ec2013-03-21 22:49:34 +0100260enum cpuhp_state {
261 CPUHP_OFFLINE,
262 CPUHP_ONLINE,
263};
264
265void cpu_startup_entry(enum cpuhp_state state);
266void cpu_idle(void);
267
Thomas Gleixnerd1669912013-03-21 22:49:35 +0100268void cpu_idle_poll_ctrl(bool enable);
269
270void arch_cpu_idle(void);
271void arch_cpu_idle_prepare(void);
272void arch_cpu_idle_enter(void);
273void arch_cpu_idle_exit(void);
274void arch_cpu_idle_dead(void);
275
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276#endif /* _LINUX_CPU_H_ */