blob: 2c3b359b3536a15cdb21fbc60af80644368c655d [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Kay Sievers8a25a2f2011-12-21 14:29:42 -08002 * CPU subsystem support
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 */
4
Ben Hutchings024f7842012-01-10 02:59:49 +00005#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006#include <linux/module.h>
7#include <linux/init.h>
Al Virof6a57032006-10-18 01:47:25 -04008#include <linux/sched.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009#include <linux/cpu.h>
10#include <linux/topology.h>
11#include <linux/device.h>
KAMEZAWA Hiroyuki76b67ed2006-06-27 02:53:41 -070012#include <linux/node.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090013#include <linux/gfp.h>
Thomas Renningerfad12ac2012-01-26 00:09:14 +010014#include <linux/slab.h>
Ben Hutchings9f13a1f2012-01-10 03:04:32 +000015#include <linux/percpu.h>
Rafael J. Wysockiac212b62013-05-03 00:26:22 +020016#include <linux/acpi.h>
Sudeep KarkadaNageshaf86e4712013-06-17 12:58:45 +010017#include <linux/of.h>
Ard Biesheuvel67bad2f2014-02-08 13:34:09 +010018#include <linux/cpufeature.h>
Rik van Riel6570a9a2015-04-24 15:24:28 -040019#include <linux/tick.h>
Alex Shi37efa4b2017-01-12 21:27:03 +080020#include <linux/pm_qos.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
Ben Dooksa1bdc7a2005-10-13 17:54:41 +010022#include "base.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
Kay Sievers8a25a2f2011-12-21 14:29:42 -080024static DEFINE_PER_CPU(struct device *, cpu_sys_devices);
Ashok Rajad745572005-10-30 14:59:49 -080025
Rafael J. Wysockiac212b62013-05-03 00:26:22 +020026static int cpu_subsys_match(struct device *dev, struct device_driver *drv)
27{
28 /* ACPI style match is the only one that may succeed. */
29 if (acpi_driver_match_device(dev, drv))
30 return 1;
31
32 return 0;
33}
34
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#ifdef CONFIG_HOTPLUG_CPU
Yasuaki Ishimatsu34640462013-04-29 15:08:50 -070036static void change_cpu_under_node(struct cpu *cpu,
37 unsigned int from_nid, unsigned int to_nid)
38{
39 int cpuid = cpu->dev.id;
40 unregister_cpu_under_node(cpuid, from_nid);
41 register_cpu_under_node(cpuid, to_nid);
42 cpu->node_id = to_nid;
43}
44
Mathias Krauseeda58672015-07-19 20:06:21 +020045static int cpu_subsys_online(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -070046{
Kay Sievers8a25a2f2011-12-21 14:29:42 -080047 struct cpu *cpu = container_of(dev, struct cpu, dev);
Rafael J. Wysocki0902a902013-05-03 00:25:49 +020048 int cpuid = dev->id;
Yasuaki Ishimatsu34640462013-04-29 15:08:50 -070049 int from_nid, to_nid;
Toshi Kani6dedcca2013-09-25 15:08:27 -060050 int ret;
Yasuaki Ishimatsu34640462013-04-29 15:08:50 -070051
Rafael J. Wysocki0902a902013-05-03 00:25:49 +020052 from_nid = cpu_to_node(cpuid);
Rafael J. Wysockic7991b02013-08-13 02:39:30 +020053 if (from_nid == NUMA_NO_NODE)
Toshi Kani6dedcca2013-09-25 15:08:27 -060054 return -ENODEV;
Rafael J. Wysockic7991b02013-08-13 02:39:30 +020055
Rafael J. Wysocki0902a902013-05-03 00:25:49 +020056 ret = cpu_up(cpuid);
57 /*
58 * When hot adding memory to memoryless node and enabling a cpu
59 * on the node, node number of the cpu may internally change.
60 */
61 to_nid = cpu_to_node(cpuid);
62 if (from_nid != to_nid)
63 change_cpu_under_node(cpu, from_nid, to_nid);
Yasuaki Ishimatsu34640462013-04-29 15:08:50 -070064
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 return ret;
66}
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
Rafael J. Wysocki0902a902013-05-03 00:25:49 +020068static int cpu_subsys_offline(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -070069{
Toshi Kani6dedcca2013-09-25 15:08:27 -060070 return cpu_down(dev->id);
Linus Torvalds1da177e2005-04-16 15:20:36 -070071}
Igor Mammedov1c4e2d72013-05-14 16:46:07 +020072
KAMEZAWA Hiroyuki76b67ed2006-06-27 02:53:41 -070073void unregister_cpu(struct cpu *cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -070074{
Kay Sievers8a25a2f2011-12-21 14:29:42 -080075 int logical_cpu = cpu->dev.id;
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
KAMEZAWA Hiroyuki76b67ed2006-06-27 02:53:41 -070077 unregister_cpu_under_node(logical_cpu, cpu_to_node(logical_cpu));
78
Kay Sievers8a25a2f2011-12-21 14:29:42 -080079 device_unregister(&cpu->dev);
Mike Travise37d05d2008-05-01 04:35:16 -070080 per_cpu(cpu_sys_devices, logical_cpu) = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 return;
82}
Nathan Fontenot12633e82009-11-25 17:23:25 +000083
84#ifdef CONFIG_ARCH_CPU_PROBE_RELEASE
Kay Sievers8a25a2f2011-12-21 14:29:42 -080085static ssize_t cpu_probe_store(struct device *dev,
86 struct device_attribute *attr,
Stephen Rothwell67fc2332010-03-16 10:33:32 +110087 const char *buf,
Nathan Fontenot12633e82009-11-25 17:23:25 +000088 size_t count)
89{
Toshi Kani574b8512013-08-29 18:22:07 -060090 ssize_t cnt;
91 int ret;
92
93 ret = lock_device_hotplug_sysfs();
94 if (ret)
95 return ret;
96
97 cnt = arch_cpu_probe(buf, count);
98
99 unlock_device_hotplug();
100 return cnt;
Nathan Fontenot12633e82009-11-25 17:23:25 +0000101}
102
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800103static ssize_t cpu_release_store(struct device *dev,
104 struct device_attribute *attr,
Stephen Rothwell67fc2332010-03-16 10:33:32 +1100105 const char *buf,
Nathan Fontenot12633e82009-11-25 17:23:25 +0000106 size_t count)
107{
Toshi Kani574b8512013-08-29 18:22:07 -0600108 ssize_t cnt;
109 int ret;
110
111 ret = lock_device_hotplug_sysfs();
112 if (ret)
113 return ret;
114
115 cnt = arch_cpu_release(buf, count);
116
117 unlock_device_hotplug();
118 return cnt;
Nathan Fontenot12633e82009-11-25 17:23:25 +0000119}
120
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800121static DEVICE_ATTR(probe, S_IWUSR, NULL, cpu_probe_store);
122static DEVICE_ATTR(release, S_IWUSR, NULL, cpu_release_store);
Nathan Fontenot12633e82009-11-25 17:23:25 +0000123#endif /* CONFIG_ARCH_CPU_PROBE_RELEASE */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124#endif /* CONFIG_HOTPLUG_CPU */
125
Rafael J. Wysocki0902a902013-05-03 00:25:49 +0200126struct bus_type cpu_subsys = {
127 .name = "cpu",
128 .dev_name = "cpu",
Rafael J. Wysockiac212b62013-05-03 00:26:22 +0200129 .match = cpu_subsys_match,
Rafael J. Wysocki0902a902013-05-03 00:25:49 +0200130#ifdef CONFIG_HOTPLUG_CPU
131 .online = cpu_subsys_online,
132 .offline = cpu_subsys_offline,
133#endif
134};
135EXPORT_SYMBOL_GPL(cpu_subsys);
136
Vivek Goyal51be5602006-01-09 20:51:42 -0800137#ifdef CONFIG_KEXEC
138#include <linux/kexec.h>
139
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800140static ssize_t show_crash_notes(struct device *dev, struct device_attribute *attr,
Andi Kleen4a0b2b42008-07-01 18:48:41 +0200141 char *buf)
Vivek Goyal51be5602006-01-09 20:51:42 -0800142{
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800143 struct cpu *cpu = container_of(dev, struct cpu, dev);
Vivek Goyal51be5602006-01-09 20:51:42 -0800144 ssize_t rc;
145 unsigned long long addr;
146 int cpunum;
147
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800148 cpunum = cpu->dev.id;
Vivek Goyal51be5602006-01-09 20:51:42 -0800149
150 /*
151 * Might be reading other cpu's data based on which cpu read thread
152 * has been scheduled. But cpu data (memory) is allocated once during
153 * boot up and this data does not change there after. Hence this
154 * operation should be safe. No locking required.
155 */
Vivek Goyal3b034b02009-11-24 15:50:03 +0900156 addr = per_cpu_ptr_to_phys(per_cpu_ptr(crash_notes, cpunum));
Vivek Goyal51be5602006-01-09 20:51:42 -0800157 rc = sprintf(buf, "%Lx\n", addr);
Vivek Goyal51be5602006-01-09 20:51:42 -0800158 return rc;
159}
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800160static DEVICE_ATTR(crash_notes, 0400, show_crash_notes, NULL);
Zhang Yanfeieca45492013-03-28 16:15:35 +0800161
162static ssize_t show_crash_notes_size(struct device *dev,
163 struct device_attribute *attr,
164 char *buf)
165{
166 ssize_t rc;
167
Arnd Bergmannbcfb87f2013-04-03 15:18:24 +0000168 rc = sprintf(buf, "%zu\n", sizeof(note_buf_t));
Zhang Yanfeieca45492013-03-28 16:15:35 +0800169 return rc;
170}
171static DEVICE_ATTR(crash_notes_size, 0400, show_crash_notes_size, NULL);
Igor Mammedovc055da92013-05-14 16:46:06 +0200172
173static struct attribute *crash_note_cpu_attrs[] = {
174 &dev_attr_crash_notes.attr,
175 &dev_attr_crash_notes_size.attr,
176 NULL
177};
178
179static struct attribute_group crash_note_cpu_attr_group = {
180 .attrs = crash_note_cpu_attrs,
181};
Vivek Goyal51be5602006-01-09 20:51:42 -0800182#endif
183
Igor Mammedovc055da92013-05-14 16:46:06 +0200184static const struct attribute_group *common_cpu_attr_groups[] = {
185#ifdef CONFIG_KEXEC
186 &crash_note_cpu_attr_group,
187#endif
188 NULL
189};
190
Igor Mammedov1c4e2d72013-05-14 16:46:07 +0200191static const struct attribute_group *hotplugable_cpu_attr_groups[] = {
192#ifdef CONFIG_KEXEC
193 &crash_note_cpu_attr_group,
194#endif
Igor Mammedov1c4e2d72013-05-14 16:46:07 +0200195 NULL
196};
197
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198/*
Mike Travis9d1fe3232008-04-08 11:43:04 -0700199 * Print cpu online, possible, present, and system maps
200 */
Andi Kleen265d2e22010-01-05 12:48:00 +0100201
202struct cpu_attr {
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800203 struct device_attribute attr;
Rasmus Villemoes848e2392016-01-20 15:00:22 -0800204 const struct cpumask *const map;
Andi Kleen265d2e22010-01-05 12:48:00 +0100205};
206
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800207static ssize_t show_cpus_attr(struct device *dev,
208 struct device_attribute *attr,
Andi Kleen265d2e22010-01-05 12:48:00 +0100209 char *buf)
Mike Travis9d1fe3232008-04-08 11:43:04 -0700210{
Andi Kleen265d2e22010-01-05 12:48:00 +0100211 struct cpu_attr *ca = container_of(attr, struct cpu_attr, attr);
Mike Travis9d1fe3232008-04-08 11:43:04 -0700212
Rasmus Villemoes848e2392016-01-20 15:00:22 -0800213 return cpumap_print_to_pagebuf(true, buf, ca->map);
Mike Travis9d1fe3232008-04-08 11:43:04 -0700214}
215
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800216#define _CPU_ATTR(name, map) \
217 { __ATTR(name, 0444, show_cpus_attr, NULL), map }
Mike Travis9d1fe3232008-04-08 11:43:04 -0700218
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800219/* Keep in sync with cpu_subsys_attrs */
Andi Kleen265d2e22010-01-05 12:48:00 +0100220static struct cpu_attr cpu_attrs[] = {
Rasmus Villemoes848e2392016-01-20 15:00:22 -0800221 _CPU_ATTR(online, &__cpu_online_mask),
222 _CPU_ATTR(possible, &__cpu_possible_mask),
223 _CPU_ATTR(present, &__cpu_present_mask),
Andi Kleen265d2e22010-01-05 12:48:00 +0100224};
Mike Travis9d1fe3232008-04-08 11:43:04 -0700225
Mike Travise057d7a2008-12-15 20:26:48 -0800226/*
227 * Print values for NR_CPUS and offlined cpus
228 */
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800229static ssize_t print_cpus_kernel_max(struct device *dev,
230 struct device_attribute *attr, char *buf)
Mike Travise057d7a2008-12-15 20:26:48 -0800231{
Mike Travis8fd2d2d2008-12-31 18:08:48 -0800232 int n = snprintf(buf, PAGE_SIZE-2, "%d\n", NR_CPUS - 1);
Mike Travise057d7a2008-12-15 20:26:48 -0800233 return n;
234}
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800235static DEVICE_ATTR(kernel_max, 0444, print_cpus_kernel_max, NULL);
Mike Travise057d7a2008-12-15 20:26:48 -0800236
237/* arch-optional setting to enable display of offline cpus >= nr_cpu_ids */
238unsigned int total_cpus;
239
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800240static ssize_t print_cpus_offline(struct device *dev,
241 struct device_attribute *attr, char *buf)
Mike Travise057d7a2008-12-15 20:26:48 -0800242{
243 int n = 0, len = PAGE_SIZE-2;
244 cpumask_var_t offline;
245
246 /* display offline cpus < nr_cpu_ids */
247 if (!alloc_cpumask_var(&offline, GFP_KERNEL))
248 return -ENOMEM;
Jan Beulichcdc6e3d2010-04-27 14:01:20 -0700249 cpumask_andnot(offline, cpu_possible_mask, cpu_online_mask);
Tejun Heof799b1a2015-02-13 14:37:56 -0800250 n = scnprintf(buf, len, "%*pbl", cpumask_pr_args(offline));
Mike Travise057d7a2008-12-15 20:26:48 -0800251 free_cpumask_var(offline);
252
253 /* display offline cpus >= nr_cpu_ids */
254 if (total_cpus && nr_cpu_ids < total_cpus) {
255 if (n && n < len)
256 buf[n++] = ',';
257
258 if (nr_cpu_ids == total_cpus-1)
259 n += snprintf(&buf[n], len - n, "%d", nr_cpu_ids);
260 else
261 n += snprintf(&buf[n], len - n, "%d-%d",
262 nr_cpu_ids, total_cpus-1);
263 }
264
265 n += snprintf(&buf[n], len - n, "\n");
266 return n;
267}
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800268static DEVICE_ATTR(offline, 0444, print_cpus_offline, NULL);
Mike Travise057d7a2008-12-15 20:26:48 -0800269
Rik van Riel59f30ab2015-04-24 15:24:27 -0400270static ssize_t print_cpus_isolated(struct device *dev,
271 struct device_attribute *attr, char *buf)
272{
273 int n = 0, len = PAGE_SIZE-2;
274
275 n = scnprintf(buf, len, "%*pbl\n", cpumask_pr_args(cpu_isolated_map));
276
277 return n;
278}
279static DEVICE_ATTR(isolated, 0444, print_cpus_isolated, NULL);
280
Rik van Riel6570a9a2015-04-24 15:24:28 -0400281#ifdef CONFIG_NO_HZ_FULL
282static ssize_t print_cpus_nohz_full(struct device *dev,
283 struct device_attribute *attr, char *buf)
284{
285 int n = 0, len = PAGE_SIZE-2;
286
287 n = scnprintf(buf, len, "%*pbl\n", cpumask_pr_args(tick_nohz_full_mask));
288
289 return n;
290}
291static DEVICE_ATTR(nohz_full, 0444, print_cpus_nohz_full, NULL);
292#endif
293
Greg Kroah-Hartman2885e252012-02-02 10:36:33 -0800294static void cpu_device_release(struct device *dev)
295{
296 /*
297 * This is an empty function to prevent the driver core from spitting a
298 * warning at us. Yes, I know this is directly opposite of what the
299 * documentation for the driver core and kobjects say, and the author
300 * of this code has already been publically ridiculed for doing
301 * something as foolish as this. However, at this point in time, it is
302 * the only way to handle the issue of statically allocated cpu
303 * devices. The different architectures will have their cpu device
304 * code reworked to properly handle this in the near future, so this
305 * function will then be changed to correctly free up the memory held
306 * by the cpu device.
307 *
308 * Never copy this way of doing things, or you too will be made fun of
Ralf Baechle30a48402013-01-15 15:27:46 +0100309 * on the linux-kernel list, you have been warned.
Greg Kroah-Hartman2885e252012-02-02 10:36:33 -0800310 */
311}
312
Ard Biesheuvel67bad2f2014-02-08 13:34:09 +0100313#ifdef CONFIG_GENERIC_CPU_AUTOPROBE
314static ssize_t print_cpu_modalias(struct device *dev,
315 struct device_attribute *attr,
316 char *buf)
317{
318 ssize_t n;
319 u32 i;
320
321 n = sprintf(buf, "cpu:type:" CPU_FEATURE_TYPEFMT ":feature:",
322 CPU_FEATURE_TYPEVAL);
323
324 for (i = 0; i < MAX_CPU_FEATURES; i++)
325 if (cpu_have_feature(i)) {
326 if (PAGE_SIZE < n + sizeof(",XXXX\n")) {
327 WARN(1, "CPU features overflow page\n");
328 break;
329 }
330 n += sprintf(&buf[n], ",%04X", i);
331 }
332 buf[n++] = '\n';
333 return n;
334}
Ard Biesheuvel67bad2f2014-02-08 13:34:09 +0100335
336static int cpu_uevent(struct device *dev, struct kobj_uevent_env *env)
337{
338 char *buf = kzalloc(PAGE_SIZE, GFP_KERNEL);
339 if (buf) {
340 print_cpu_modalias(NULL, NULL, buf);
341 add_uevent_var(env, "MODALIAS=%s", buf);
342 kfree(buf);
343 }
344 return 0;
345}
346#endif
347
Mike Travis9d1fe3232008-04-08 11:43:04 -0700348/*
Robert P. J. Day405ae7d2007-02-17 19:13:42 +0100349 * register_cpu - Setup a sysfs device for a CPU.
Siddha, Suresh B72486f12006-12-07 02:14:10 +0100350 * @cpu - cpu->hotpluggable field set to 1 will generate a control file in
351 * sysfs for this CPU.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 * @num - CPU number to use when creating the device.
353 *
354 * Initialize and register the CPU device.
355 */
Paul Gortmakera83048e2013-06-19 15:22:41 -0400356int register_cpu(struct cpu *cpu, int num)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357{
358 int error;
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800359
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 cpu->node_id = cpu_to_node(num);
Greg Kroah-Hartman29bb5d42012-02-08 15:11:17 -0800361 memset(&cpu->dev, 0x00, sizeof(struct device));
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800362 cpu->dev.id = num;
363 cpu->dev.bus = &cpu_subsys;
Greg Kroah-Hartman2885e252012-02-02 10:36:33 -0800364 cpu->dev.release = cpu_device_release;
Rafael J. Wysocki0902a902013-05-03 00:25:49 +0200365 cpu->dev.offline_disabled = !cpu->hotpluggable;
Toshi Kani1001b4d2013-05-30 00:30:05 +0200366 cpu->dev.offline = !cpu_online(num);
Sudeep KarkadaNageshaf86e4712013-06-17 12:58:45 +0100367 cpu->dev.of_node = of_get_cpu_node(num, NULL);
Ard Biesheuvel2b9c1f02014-02-08 13:34:10 +0100368#ifdef CONFIG_GENERIC_CPU_AUTOPROBE
Ard Biesheuvel67bad2f2014-02-08 13:34:09 +0100369 cpu->dev.bus->uevent = cpu_uevent;
Thomas Renningerfad12ac2012-01-26 00:09:14 +0100370#endif
Igor Mammedovc055da92013-05-14 16:46:06 +0200371 cpu->dev.groups = common_cpu_attr_groups;
Igor Mammedov1c4e2d72013-05-14 16:46:07 +0200372 if (cpu->hotpluggable)
373 cpu->dev.groups = hotplugable_cpu_attr_groups;
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800374 error = device_register(&cpu->dev);
Alex Shi59fffa32016-08-25 16:42:39 +0800375 if (error)
376 return error;
Vivek Goyal51be5602006-01-09 20:51:42 -0800377
Alex Shi59fffa32016-08-25 16:42:39 +0800378 per_cpu(cpu_sys_devices, num) = &cpu->dev;
379 register_cpu_under_node(num, cpu_to_node(num));
Alex Shi37efa4b2017-01-12 21:27:03 +0800380 dev_pm_qos_expose_latency_limit(&cpu->dev, 0);
Alex Shi59fffa32016-08-25 16:42:39 +0800381
382 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383}
384
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800385struct device *get_cpu_device(unsigned cpu)
Ashok Rajad745572005-10-30 14:59:49 -0800386{
Mike Travise37d05d2008-05-01 04:35:16 -0700387 if (cpu < nr_cpu_ids && cpu_possible(cpu))
388 return per_cpu(cpu_sys_devices, cpu);
Ashok Rajad745572005-10-30 14:59:49 -0800389 else
390 return NULL;
391}
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800392EXPORT_SYMBOL_GPL(get_cpu_device);
393
Sudeep Holla3d529432014-09-30 14:48:24 +0100394static void device_create_release(struct device *dev)
395{
396 kfree(dev);
397}
398
399static struct device *
400__cpu_device_create(struct device *parent, void *drvdata,
401 const struct attribute_group **groups,
402 const char *fmt, va_list args)
403{
404 struct device *dev = NULL;
405 int retval = -ENODEV;
406
407 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
408 if (!dev) {
409 retval = -ENOMEM;
410 goto error;
411 }
412
413 device_initialize(dev);
414 dev->parent = parent;
415 dev->groups = groups;
416 dev->release = device_create_release;
417 dev_set_drvdata(dev, drvdata);
418
419 retval = kobject_set_name_vargs(&dev->kobj, fmt, args);
420 if (retval)
421 goto error;
422
423 retval = device_add(dev);
424 if (retval)
425 goto error;
426
427 return dev;
428
429error:
430 put_device(dev);
431 return ERR_PTR(retval);
432}
433
434struct device *cpu_device_create(struct device *parent, void *drvdata,
435 const struct attribute_group **groups,
436 const char *fmt, ...)
437{
438 va_list vargs;
439 struct device *dev;
440
441 va_start(vargs, fmt);
442 dev = __cpu_device_create(parent, drvdata, groups, fmt, vargs);
443 va_end(vargs);
444 return dev;
445}
446EXPORT_SYMBOL_GPL(cpu_device_create);
447
Ard Biesheuvel2b9c1f02014-02-08 13:34:10 +0100448#ifdef CONFIG_GENERIC_CPU_AUTOPROBE
Ard Biesheuvel67bad2f2014-02-08 13:34:09 +0100449static DEVICE_ATTR(modalias, 0444, print_cpu_modalias, NULL);
Thomas Renningerfad12ac2012-01-26 00:09:14 +0100450#endif
451
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800452static struct attribute *cpu_root_attrs[] = {
453#ifdef CONFIG_ARCH_CPU_PROBE_RELEASE
454 &dev_attr_probe.attr,
455 &dev_attr_release.attr,
456#endif
457 &cpu_attrs[0].attr.attr,
458 &cpu_attrs[1].attr.attr,
459 &cpu_attrs[2].attr.attr,
460 &dev_attr_kernel_max.attr,
461 &dev_attr_offline.attr,
Rik van Riel59f30ab2015-04-24 15:24:27 -0400462 &dev_attr_isolated.attr,
Rik van Riel6570a9a2015-04-24 15:24:28 -0400463#ifdef CONFIG_NO_HZ_FULL
464 &dev_attr_nohz_full.attr,
465#endif
Ard Biesheuvel2b9c1f02014-02-08 13:34:10 +0100466#ifdef CONFIG_GENERIC_CPU_AUTOPROBE
Thomas Renningerfad12ac2012-01-26 00:09:14 +0100467 &dev_attr_modalias.attr,
468#endif
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800469 NULL
470};
471
472static struct attribute_group cpu_root_attr_group = {
473 .attrs = cpu_root_attrs,
474};
475
476static const struct attribute_group *cpu_root_attr_groups[] = {
477 &cpu_root_attr_group,
478 NULL,
479};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480
Josh Triplett29875572011-12-03 13:06:50 -0800481bool cpu_is_hotpluggable(unsigned cpu)
482{
Linus Torvalds7affca32012-01-07 12:03:30 -0800483 struct device *dev = get_cpu_device(cpu);
484 return dev && container_of(dev, struct cpu, dev)->hotpluggable;
Josh Triplett29875572011-12-03 13:06:50 -0800485}
486EXPORT_SYMBOL_GPL(cpu_is_hotpluggable);
487
Ben Hutchings9f13a1f2012-01-10 03:04:32 +0000488#ifdef CONFIG_GENERIC_CPU_DEVICES
489static DEFINE_PER_CPU(struct cpu, cpu_devices);
490#endif
491
492static void __init cpu_dev_register_generic(void)
493{
494#ifdef CONFIG_GENERIC_CPU_DEVICES
495 int i;
496
497 for_each_possible_cpu(i) {
498 if (register_cpu(&per_cpu(cpu_devices, i), i))
499 panic("Failed to register CPU device");
500 }
501#endif
502}
503
Ben Hutchings024f7842012-01-10 02:59:49 +0000504void __init cpu_dev_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505{
Ben Hutchings024f7842012-01-10 02:59:49 +0000506 if (subsys_system_register(&cpu_subsys, cpu_root_attr_groups))
507 panic("Failed to register CPU subsystem");
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -0700508
Ben Hutchings9f13a1f2012-01-10 03:04:32 +0000509 cpu_dev_register_generic();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510}