Merge branches 'doc.2015.02.26a', 'earlycb.2015.03.03a', 'fixes.2015.03.03a', 'gpexp...
[firefly-linux-kernel-4.4.55.git] / include / linux / cpu.h
1 /*
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
9  *
10  * CPUs are exported via sysfs in the devices/system/cpu
11  * directory. 
12  */
13 #ifndef _LINUX_CPU_H_
14 #define _LINUX_CPU_H_
15
16 #include <linux/node.h>
17 #include <linux/compiler.h>
18 #include <linux/cpumask.h>
19
20 struct device;
21 struct device_node;
22 struct attribute_group;
23
24 struct cpu {
25         int node_id;            /* The node which contains the CPU */
26         int hotpluggable;       /* creates sysfs control file if hotpluggable */
27         struct device dev;
28 };
29
30 extern int register_cpu(struct cpu *cpu, int num);
31 extern struct device *get_cpu_device(unsigned cpu);
32 extern bool cpu_is_hotpluggable(unsigned cpu);
33 extern bool arch_match_cpu_phys_id(int cpu, u64 phys_id);
34 extern bool arch_find_n_match_cpu_physical_id(struct device_node *cpun,
35                                               int cpu, unsigned int *thread);
36
37 extern int cpu_add_dev_attr(struct device_attribute *attr);
38 extern void cpu_remove_dev_attr(struct device_attribute *attr);
39
40 extern int cpu_add_dev_attr_group(struct attribute_group *attrs);
41 extern void cpu_remove_dev_attr_group(struct attribute_group *attrs);
42
43 extern struct device *cpu_device_create(struct device *parent, void *drvdata,
44                                         const struct attribute_group **groups,
45                                         const char *fmt, ...);
46 #ifdef CONFIG_HOTPLUG_CPU
47 extern void unregister_cpu(struct cpu *cpu);
48 extern ssize_t arch_cpu_probe(const char *, size_t);
49 extern ssize_t arch_cpu_release(const char *, size_t);
50 #endif
51 struct notifier_block;
52
53 /*
54  * CPU notifier priorities.
55  */
56 enum {
57         /*
58          * SCHED_ACTIVE marks a cpu which is coming up active during
59          * CPU_ONLINE and CPU_DOWN_FAILED and must be the first
60          * notifier.  CPUSET_ACTIVE adjusts cpuset according to
61          * cpu_active mask right after SCHED_ACTIVE.  During
62          * CPU_DOWN_PREPARE, SCHED_INACTIVE and CPUSET_INACTIVE are
63          * ordered in the similar way.
64          *
65          * This ordering guarantees consistent cpu_active mask and
66          * migration behavior to all cpu notifiers.
67          */
68         CPU_PRI_SCHED_ACTIVE    = INT_MAX,
69         CPU_PRI_CPUSET_ACTIVE   = INT_MAX - 1,
70         CPU_PRI_SCHED_INACTIVE  = INT_MIN + 1,
71         CPU_PRI_CPUSET_INACTIVE = INT_MIN,
72
73         /* migration should happen before other stuff but after perf */
74         CPU_PRI_PERF            = 20,
75         CPU_PRI_MIGRATION       = 10,
76         /* bring up workqueues before normal notifiers and down after */
77         CPU_PRI_WORKQUEUE_UP    = 5,
78         CPU_PRI_WORKQUEUE_DOWN  = -5,
79 };
80
81 #define CPU_ONLINE              0x0002 /* CPU (unsigned)v is up */
82 #define CPU_UP_PREPARE          0x0003 /* CPU (unsigned)v coming up */
83 #define CPU_UP_CANCELED         0x0004 /* CPU (unsigned)v NOT coming up */
84 #define CPU_DOWN_PREPARE        0x0005 /* CPU (unsigned)v going down */
85 #define CPU_DOWN_FAILED         0x0006 /* CPU (unsigned)v NOT going down */
86 #define CPU_DEAD                0x0007 /* CPU (unsigned)v dead */
87 #define CPU_DYING               0x0008 /* CPU (unsigned)v not running any task,
88                                         * not handling interrupts, soon dead.
89                                         * Called on the dying cpu, interrupts
90                                         * are already disabled. Must not
91                                         * sleep, must not fail */
92 #define CPU_POST_DEAD           0x0009 /* CPU (unsigned)v dead, cpu_hotplug
93                                         * lock is dropped */
94 #define CPU_STARTING            0x000A /* CPU (unsigned)v soon running.
95                                         * Called on the new cpu, just before
96                                         * enabling interrupts. Must not sleep,
97                                         * must not fail */
98 #define CPU_DYING_IDLE          0x000B /* CPU (unsigned)v dying, reached
99                                         * idle loop. */
100 #define CPU_BROKEN              0x000C /* CPU (unsigned)v did not die properly,
101                                         * perhaps due to preemption. */
102
103 /* Used for CPU hotplug events occurring while tasks are frozen due to a suspend
104  * operation in progress
105  */
106 #define CPU_TASKS_FROZEN        0x0010
107
108 #define CPU_ONLINE_FROZEN       (CPU_ONLINE | CPU_TASKS_FROZEN)
109 #define CPU_UP_PREPARE_FROZEN   (CPU_UP_PREPARE | CPU_TASKS_FROZEN)
110 #define CPU_UP_CANCELED_FROZEN  (CPU_UP_CANCELED | CPU_TASKS_FROZEN)
111 #define CPU_DOWN_PREPARE_FROZEN (CPU_DOWN_PREPARE | CPU_TASKS_FROZEN)
112 #define CPU_DOWN_FAILED_FROZEN  (CPU_DOWN_FAILED | CPU_TASKS_FROZEN)
113 #define CPU_DEAD_FROZEN         (CPU_DEAD | CPU_TASKS_FROZEN)
114 #define CPU_DYING_FROZEN        (CPU_DYING | CPU_TASKS_FROZEN)
115 #define CPU_STARTING_FROZEN     (CPU_STARTING | CPU_TASKS_FROZEN)
116
117
118 #ifdef CONFIG_SMP
119 /* Need to know about CPUs going up/down? */
120 #if defined(CONFIG_HOTPLUG_CPU) || !defined(MODULE)
121 #define cpu_notifier(fn, pri) {                                 \
122         static struct notifier_block fn##_nb =                  \
123                 { .notifier_call = fn, .priority = pri };       \
124         register_cpu_notifier(&fn##_nb);                        \
125 }
126
127 #define __cpu_notifier(fn, pri) {                               \
128         static struct notifier_block fn##_nb =                  \
129                 { .notifier_call = fn, .priority = pri };       \
130         __register_cpu_notifier(&fn##_nb);                      \
131 }
132 #else /* #if defined(CONFIG_HOTPLUG_CPU) || !defined(MODULE) */
133 #define cpu_notifier(fn, pri)   do { (void)(fn); } while (0)
134 #define __cpu_notifier(fn, pri) do { (void)(fn); } while (0)
135 #endif /* #else #if defined(CONFIG_HOTPLUG_CPU) || !defined(MODULE) */
136
137 #ifdef CONFIG_HOTPLUG_CPU
138 extern int register_cpu_notifier(struct notifier_block *nb);
139 extern int __register_cpu_notifier(struct notifier_block *nb);
140 extern void unregister_cpu_notifier(struct notifier_block *nb);
141 extern void __unregister_cpu_notifier(struct notifier_block *nb);
142 #else
143
144 #ifndef MODULE
145 extern int register_cpu_notifier(struct notifier_block *nb);
146 extern int __register_cpu_notifier(struct notifier_block *nb);
147 #else
148 static inline int register_cpu_notifier(struct notifier_block *nb)
149 {
150         return 0;
151 }
152
153 static inline int __register_cpu_notifier(struct notifier_block *nb)
154 {
155         return 0;
156 }
157 #endif
158
159 static inline void unregister_cpu_notifier(struct notifier_block *nb)
160 {
161 }
162
163 static inline void __unregister_cpu_notifier(struct notifier_block *nb)
164 {
165 }
166 #endif
167
168 int cpu_up(unsigned int cpu);
169 void notify_cpu_starting(unsigned int cpu);
170 extern void cpu_maps_update_begin(void);
171 extern void cpu_maps_update_done(void);
172
173 #define cpu_notifier_register_begin     cpu_maps_update_begin
174 #define cpu_notifier_register_done      cpu_maps_update_done
175
176 #else   /* CONFIG_SMP */
177
178 #define cpu_notifier(fn, pri)   do { (void)(fn); } while (0)
179 #define __cpu_notifier(fn, pri) do { (void)(fn); } while (0)
180
181 static inline int register_cpu_notifier(struct notifier_block *nb)
182 {
183         return 0;
184 }
185
186 static inline int __register_cpu_notifier(struct notifier_block *nb)
187 {
188         return 0;
189 }
190
191 static inline void unregister_cpu_notifier(struct notifier_block *nb)
192 {
193 }
194
195 static inline void __unregister_cpu_notifier(struct notifier_block *nb)
196 {
197 }
198
199 static inline void cpu_maps_update_begin(void)
200 {
201 }
202
203 static inline void cpu_maps_update_done(void)
204 {
205 }
206
207 static inline void cpu_notifier_register_begin(void)
208 {
209 }
210
211 static inline void cpu_notifier_register_done(void)
212 {
213 }
214
215 #endif /* CONFIG_SMP */
216 extern struct bus_type cpu_subsys;
217
218 #ifdef CONFIG_HOTPLUG_CPU
219 /* Stop CPUs going up and down. */
220
221 extern void cpu_hotplug_begin(void);
222 extern void cpu_hotplug_done(void);
223 extern void get_online_cpus(void);
224 extern bool try_get_online_cpus(void);
225 extern void put_online_cpus(void);
226 extern void cpu_hotplug_disable(void);
227 extern void cpu_hotplug_enable(void);
228 #define hotcpu_notifier(fn, pri)        cpu_notifier(fn, pri)
229 #define __hotcpu_notifier(fn, pri)      __cpu_notifier(fn, pri)
230 #define register_hotcpu_notifier(nb)    register_cpu_notifier(nb)
231 #define __register_hotcpu_notifier(nb)  __register_cpu_notifier(nb)
232 #define unregister_hotcpu_notifier(nb)  unregister_cpu_notifier(nb)
233 #define __unregister_hotcpu_notifier(nb)        __unregister_cpu_notifier(nb)
234 void clear_tasks_mm_cpumask(int cpu);
235 int cpu_down(unsigned int cpu);
236
237 #else           /* CONFIG_HOTPLUG_CPU */
238
239 static inline void cpu_hotplug_begin(void) {}
240 static inline void cpu_hotplug_done(void) {}
241 #define get_online_cpus()       do { } while (0)
242 #define try_get_online_cpus()   true
243 #define put_online_cpus()       do { } while (0)
244 #define cpu_hotplug_disable()   do { } while (0)
245 #define cpu_hotplug_enable()    do { } while (0)
246 #define hotcpu_notifier(fn, pri)        do { (void)(fn); } while (0)
247 #define __hotcpu_notifier(fn, pri)      do { (void)(fn); } while (0)
248 /* These aren't inline functions due to a GCC bug. */
249 #define register_hotcpu_notifier(nb)    ({ (void)(nb); 0; })
250 #define __register_hotcpu_notifier(nb)  ({ (void)(nb); 0; })
251 #define unregister_hotcpu_notifier(nb)  ({ (void)(nb); })
252 #define __unregister_hotcpu_notifier(nb)        ({ (void)(nb); })
253 #endif          /* CONFIG_HOTPLUG_CPU */
254
255 #ifdef CONFIG_PM_SLEEP_SMP
256 extern int disable_nonboot_cpus(void);
257 extern void enable_nonboot_cpus(void);
258 #else /* !CONFIG_PM_SLEEP_SMP */
259 static inline int disable_nonboot_cpus(void) { return 0; }
260 static inline void enable_nonboot_cpus(void) {}
261 #endif /* !CONFIG_PM_SLEEP_SMP */
262
263 enum cpuhp_state {
264         CPUHP_OFFLINE,
265         CPUHP_ONLINE,
266 };
267
268 void cpu_startup_entry(enum cpuhp_state state);
269
270 void cpu_idle_poll_ctrl(bool enable);
271
272 void arch_cpu_idle(void);
273 void arch_cpu_idle_prepare(void);
274 void arch_cpu_idle_enter(void);
275 void arch_cpu_idle_exit(void);
276 void arch_cpu_idle_dead(void);
277
278 DECLARE_PER_CPU(bool, cpu_dead_idle);
279
280 int cpu_report_state(int cpu);
281 int cpu_check_up_prepare(int cpu);
282 void cpu_set_state_online(int cpu);
283 #ifdef CONFIG_HOTPLUG_CPU
284 bool cpu_wait_death(unsigned int cpu, int seconds);
285 bool cpu_report_death(void);
286 #endif /* #ifdef CONFIG_HOTPLUG_CPU */
287
288 #endif /* _LINUX_CPU_H_ */