cpu.c 12.2 KB
Newer Older
L
Linus Torvalds 已提交
1
/*
2
 * CPU subsystem support
L
Linus Torvalds 已提交
3 4
 */

5
#include <linux/kernel.h>
L
Linus Torvalds 已提交
6 7
#include <linux/module.h>
#include <linux/init.h>
A
Al Viro 已提交
8
#include <linux/sched.h>
L
Linus Torvalds 已提交
9 10 11
#include <linux/cpu.h>
#include <linux/topology.h>
#include <linux/device.h>
12
#include <linux/node.h>
13
#include <linux/gfp.h>
14
#include <linux/slab.h>
15
#include <linux/percpu.h>
16
#include <linux/acpi.h>
17
#include <linux/of.h>
18
#include <linux/cpufeature.h>
R
Rik van Riel 已提交
19
#include <linux/tick.h>
20
#include <linux/pm_qos.h>
21
#include <linux/sched/isolation.h>
L
Linus Torvalds 已提交
22

23
#include "base.h"
L
Linus Torvalds 已提交
24

25
static DEFINE_PER_CPU(struct device *, cpu_sys_devices);
26

27 28 29 30 31 32 33 34 35
static int cpu_subsys_match(struct device *dev, struct device_driver *drv)
{
	/* ACPI style match is the only one that may succeed. */
	if (acpi_driver_match_device(dev, drv))
		return 1;

	return 0;
}

L
Linus Torvalds 已提交
36
#ifdef CONFIG_HOTPLUG_CPU
37 38 39 40 41 42 43 44 45
static void change_cpu_under_node(struct cpu *cpu,
			unsigned int from_nid, unsigned int to_nid)
{
	int cpuid = cpu->dev.id;
	unregister_cpu_under_node(cpuid, from_nid);
	register_cpu_under_node(cpuid, to_nid);
	cpu->node_id = to_nid;
}

46
static int cpu_subsys_online(struct device *dev)
L
Linus Torvalds 已提交
47
{
48
	struct cpu *cpu = container_of(dev, struct cpu, dev);
49 50
	int cpuid = dev->id;
	int from_nid, to_nid;
51
	int ret;
L
Linus Torvalds 已提交
52

53
	from_nid = cpu_to_node(cpuid);
54
	if (from_nid == NUMA_NO_NODE)
55
		return -ENODEV;
56

57 58 59 60 61 62 63 64
	ret = cpu_up(cpuid);
	/*
	 * When hot adding memory to memoryless node and enabling a cpu
	 * on the node, node number of the cpu may internally change.
	 */
	to_nid = cpu_to_node(cpuid);
	if (from_nid != to_nid)
		change_cpu_under_node(cpu, from_nid, to_nid);
L
Linus Torvalds 已提交
65

66
	return ret;
L
Linus Torvalds 已提交
67 68
}

69
static int cpu_subsys_offline(struct device *dev)
L
Linus Torvalds 已提交
70
{
71
	return cpu_down(dev->id);
L
Linus Torvalds 已提交
72
}
73

74
void unregister_cpu(struct cpu *cpu)
L
Linus Torvalds 已提交
75
{
76
	int logical_cpu = cpu->dev.id;
L
Linus Torvalds 已提交
77

78 79
	unregister_cpu_under_node(logical_cpu, cpu_to_node(logical_cpu));

80
	device_unregister(&cpu->dev);
81
	per_cpu(cpu_sys_devices, logical_cpu) = NULL;
L
Linus Torvalds 已提交
82 83
	return;
}
84 85

#ifdef CONFIG_ARCH_CPU_PROBE_RELEASE
86 87
static ssize_t cpu_probe_store(struct device *dev,
			       struct device_attribute *attr,
88
			       const char *buf,
89 90
			       size_t count)
{
91 92 93 94 95 96 97 98 99 100 101
	ssize_t cnt;
	int ret;

	ret = lock_device_hotplug_sysfs();
	if (ret)
		return ret;

	cnt = arch_cpu_probe(buf, count);

	unlock_device_hotplug();
	return cnt;
102 103
}

104 105
static ssize_t cpu_release_store(struct device *dev,
				 struct device_attribute *attr,
106
				 const char *buf,
107 108
				 size_t count)
{
109 110 111 112 113 114 115 116 117 118 119
	ssize_t cnt;
	int ret;

	ret = lock_device_hotplug_sysfs();
	if (ret)
		return ret;

	cnt = arch_cpu_release(buf, count);

	unlock_device_hotplug();
	return cnt;
120 121
}

122 123
static DEVICE_ATTR(probe, S_IWUSR, NULL, cpu_probe_store);
static DEVICE_ATTR(release, S_IWUSR, NULL, cpu_release_store);
124
#endif /* CONFIG_ARCH_CPU_PROBE_RELEASE */
L
Linus Torvalds 已提交
125 126
#endif /* CONFIG_HOTPLUG_CPU */

127 128 129
struct bus_type cpu_subsys = {
	.name = "cpu",
	.dev_name = "cpu",
130
	.match = cpu_subsys_match,
131 132 133 134 135 136 137
#ifdef CONFIG_HOTPLUG_CPU
	.online = cpu_subsys_online,
	.offline = cpu_subsys_offline,
#endif
};
EXPORT_SYMBOL_GPL(cpu_subsys);

138 139 140
#ifdef CONFIG_KEXEC
#include <linux/kexec.h>

141
static ssize_t show_crash_notes(struct device *dev, struct device_attribute *attr,
142
				char *buf)
143
{
144
	struct cpu *cpu = container_of(dev, struct cpu, dev);
145 146 147 148
	ssize_t rc;
	unsigned long long addr;
	int cpunum;

149
	cpunum = cpu->dev.id;
150 151 152 153 154 155 156

	/*
	 * Might be reading other cpu's data based on which cpu read thread
	 * has been scheduled. But cpu data (memory) is allocated once during
	 * boot up and this data does not change there after. Hence this
	 * operation should be safe. No locking required.
	 */
157
	addr = per_cpu_ptr_to_phys(per_cpu_ptr(crash_notes, cpunum));
158 159 160
	rc = sprintf(buf, "%Lx\n", addr);
	return rc;
}
161
static DEVICE_ATTR(crash_notes, 0400, show_crash_notes, NULL);
162 163 164 165 166 167 168

static ssize_t show_crash_notes_size(struct device *dev,
				     struct device_attribute *attr,
				     char *buf)
{
	ssize_t rc;

169
	rc = sprintf(buf, "%zu\n", sizeof(note_buf_t));
170 171 172
	return rc;
}
static DEVICE_ATTR(crash_notes_size, 0400, show_crash_notes_size, NULL);
173 174 175 176 177 178 179 180 181 182 183 184 185 186 187

static struct attribute *crash_note_cpu_attrs[] = {
	&dev_attr_crash_notes.attr,
	&dev_attr_crash_notes_size.attr,
	NULL
};

static struct attribute_group crash_note_cpu_attr_group = {
	.attrs = crash_note_cpu_attrs,
};
#endif

static const struct attribute_group *common_cpu_attr_groups[] = {
#ifdef CONFIG_KEXEC
	&crash_note_cpu_attr_group,
188
#endif
189 190
	NULL
};
191

192 193 194 195 196 197 198
static const struct attribute_group *hotplugable_cpu_attr_groups[] = {
#ifdef CONFIG_KEXEC
	&crash_note_cpu_attr_group,
#endif
	NULL
};

199 200 201
/*
 * Print cpu online, possible, present, and system maps
 */
202 203

struct cpu_attr {
204
	struct device_attribute attr;
205
	const struct cpumask *const map;
206 207
};

208 209
static ssize_t show_cpus_attr(struct device *dev,
			      struct device_attribute *attr,
210
			      char *buf)
211
{
212
	struct cpu_attr *ca = container_of(attr, struct cpu_attr, attr);
213

214
	return cpumap_print_to_pagebuf(true, buf, ca->map);
215 216
}

217 218
#define _CPU_ATTR(name, map) \
	{ __ATTR(name, 0444, show_cpus_attr, NULL), map }
219

220
/* Keep in sync with cpu_subsys_attrs */
221
static struct cpu_attr cpu_attrs[] = {
222 223 224
	_CPU_ATTR(online, &__cpu_online_mask),
	_CPU_ATTR(possible, &__cpu_possible_mask),
	_CPU_ATTR(present, &__cpu_present_mask),
225
};
226

227 228 229
/*
 * Print values for NR_CPUS and offlined cpus
 */
230 231
static ssize_t print_cpus_kernel_max(struct device *dev,
				     struct device_attribute *attr, char *buf)
232
{
233
	int n = snprintf(buf, PAGE_SIZE-2, "%d\n", NR_CPUS - 1);
234 235
	return n;
}
236
static DEVICE_ATTR(kernel_max, 0444, print_cpus_kernel_max, NULL);
237 238 239 240

/* arch-optional setting to enable display of offline cpus >= nr_cpu_ids */
unsigned int total_cpus;

241 242
static ssize_t print_cpus_offline(struct device *dev,
				  struct device_attribute *attr, char *buf)
243 244 245 246 247 248 249
{
	int n = 0, len = PAGE_SIZE-2;
	cpumask_var_t offline;

	/* display offline cpus < nr_cpu_ids */
	if (!alloc_cpumask_var(&offline, GFP_KERNEL))
		return -ENOMEM;
250
	cpumask_andnot(offline, cpu_possible_mask, cpu_online_mask);
251
	n = scnprintf(buf, len, "%*pbl", cpumask_pr_args(offline));
252 253 254 255 256 257 258 259
	free_cpumask_var(offline);

	/* display offline cpus >= nr_cpu_ids */
	if (total_cpus && nr_cpu_ids < total_cpus) {
		if (n && n < len)
			buf[n++] = ',';

		if (nr_cpu_ids == total_cpus-1)
260
			n += snprintf(&buf[n], len - n, "%u", nr_cpu_ids);
261
		else
262
			n += snprintf(&buf[n], len - n, "%u-%d",
263 264 265 266 267 268
						      nr_cpu_ids, total_cpus-1);
	}

	n += snprintf(&buf[n], len - n, "\n");
	return n;
}
269
static DEVICE_ATTR(offline, 0444, print_cpus_offline, NULL);
270

R
Rik van Riel 已提交
271 272 273 274
static ssize_t print_cpus_isolated(struct device *dev,
				  struct device_attribute *attr, char *buf)
{
	int n = 0, len = PAGE_SIZE-2;
275
	cpumask_var_t isolated;
R
Rik van Riel 已提交
276

277 278 279 280 281 282 283 284
	if (!alloc_cpumask_var(&isolated, GFP_KERNEL))
		return -ENOMEM;

	cpumask_andnot(isolated, cpu_possible_mask,
		       housekeeping_cpumask(HK_FLAG_DOMAIN));
	n = scnprintf(buf, len, "%*pbl\n", cpumask_pr_args(isolated));

	free_cpumask_var(isolated);
R
Rik van Riel 已提交
285 286 287 288 289

	return n;
}
static DEVICE_ATTR(isolated, 0444, print_cpus_isolated, NULL);

R
Rik van Riel 已提交
290 291 292 293 294 295 296 297 298 299 300 301 302
#ifdef CONFIG_NO_HZ_FULL
static ssize_t print_cpus_nohz_full(struct device *dev,
				  struct device_attribute *attr, char *buf)
{
	int n = 0, len = PAGE_SIZE-2;

	n = scnprintf(buf, len, "%*pbl\n", cpumask_pr_args(tick_nohz_full_mask));

	return n;
}
static DEVICE_ATTR(nohz_full, 0444, print_cpus_nohz_full, NULL);
#endif

303 304 305 306 307 308 309 310 311 312 313 314 315 316 317
static void cpu_device_release(struct device *dev)
{
	/*
	 * This is an empty function to prevent the driver core from spitting a
	 * warning at us.  Yes, I know this is directly opposite of what the
	 * documentation for the driver core and kobjects say, and the author
	 * of this code has already been publically ridiculed for doing
	 * something as foolish as this.  However, at this point in time, it is
	 * the only way to handle the issue of statically allocated cpu
	 * devices.  The different architectures will have their cpu device
	 * code reworked to properly handle this in the near future, so this
	 * function will then be changed to correctly free up the memory held
	 * by the cpu device.
	 *
	 * Never copy this way of doing things, or you too will be made fun of
318
	 * on the linux-kernel list, you have been warned.
319 320 321
	 */
}

322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356
#ifdef CONFIG_GENERIC_CPU_AUTOPROBE
static ssize_t print_cpu_modalias(struct device *dev,
				  struct device_attribute *attr,
				  char *buf)
{
	ssize_t n;
	u32 i;

	n = sprintf(buf, "cpu:type:" CPU_FEATURE_TYPEFMT ":feature:",
		    CPU_FEATURE_TYPEVAL);

	for (i = 0; i < MAX_CPU_FEATURES; i++)
		if (cpu_have_feature(i)) {
			if (PAGE_SIZE < n + sizeof(",XXXX\n")) {
				WARN(1, "CPU features overflow page\n");
				break;
			}
			n += sprintf(&buf[n], ",%04X", i);
		}
	buf[n++] = '\n';
	return n;
}

static int cpu_uevent(struct device *dev, struct kobj_uevent_env *env)
{
	char *buf = kzalloc(PAGE_SIZE, GFP_KERNEL);
	if (buf) {
		print_cpu_modalias(NULL, NULL, buf);
		add_uevent_var(env, "MODALIAS=%s", buf);
		kfree(buf);
	}
	return 0;
}
#endif

L
Linus Torvalds 已提交
357
/*
358
 * register_cpu - Setup a sysfs device for a CPU.
359 360
 * @cpu - cpu->hotpluggable field set to 1 will generate a control file in
 *	  sysfs for this CPU.
L
Linus Torvalds 已提交
361 362 363 364
 * @num - CPU number to use when creating the device.
 *
 * Initialize and register the CPU device.
 */
365
int register_cpu(struct cpu *cpu, int num)
L
Linus Torvalds 已提交
366 367
{
	int error;
368

369
	cpu->node_id = cpu_to_node(num);
370
	memset(&cpu->dev, 0x00, sizeof(struct device));
371 372
	cpu->dev.id = num;
	cpu->dev.bus = &cpu_subsys;
373
	cpu->dev.release = cpu_device_release;
374
	cpu->dev.offline_disabled = !cpu->hotpluggable;
375
	cpu->dev.offline = !cpu_online(num);
376
	cpu->dev.of_node = of_get_cpu_node(num, NULL);
377
#ifdef CONFIG_GENERIC_CPU_AUTOPROBE
378
	cpu->dev.bus->uevent = cpu_uevent;
379
#endif
380
	cpu->dev.groups = common_cpu_attr_groups;
381 382
	if (cpu->hotpluggable)
		cpu->dev.groups = hotplugable_cpu_attr_groups;
383
	error = device_register(&cpu->dev);
A
Alex Shi 已提交
384 385
	if (error)
		return error;
386

A
Alex Shi 已提交
387 388
	per_cpu(cpu_sys_devices, num) = &cpu->dev;
	register_cpu_under_node(num, cpu_to_node(num));
389 390
	dev_pm_qos_expose_latency_limit(&cpu->dev,
					PM_QOS_RESUME_LATENCY_NO_CONSTRAINT);
A
Alex Shi 已提交
391 392

	return 0;
L
Linus Torvalds 已提交
393 394
}

395
struct device *get_cpu_device(unsigned cpu)
396
{
397 398
	if (cpu < nr_cpu_ids && cpu_possible(cpu))
		return per_cpu(cpu_sys_devices, cpu);
399 400 401
	else
		return NULL;
}
402 403
EXPORT_SYMBOL_GPL(get_cpu_device);

404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457
static void device_create_release(struct device *dev)
{
	kfree(dev);
}

static struct device *
__cpu_device_create(struct device *parent, void *drvdata,
		    const struct attribute_group **groups,
		    const char *fmt, va_list args)
{
	struct device *dev = NULL;
	int retval = -ENODEV;

	dev = kzalloc(sizeof(*dev), GFP_KERNEL);
	if (!dev) {
		retval = -ENOMEM;
		goto error;
	}

	device_initialize(dev);
	dev->parent = parent;
	dev->groups = groups;
	dev->release = device_create_release;
	dev_set_drvdata(dev, drvdata);

	retval = kobject_set_name_vargs(&dev->kobj, fmt, args);
	if (retval)
		goto error;

	retval = device_add(dev);
	if (retval)
		goto error;

	return dev;

error:
	put_device(dev);
	return ERR_PTR(retval);
}

struct device *cpu_device_create(struct device *parent, void *drvdata,
				 const struct attribute_group **groups,
				 const char *fmt, ...)
{
	va_list vargs;
	struct device *dev;

	va_start(vargs, fmt);
	dev = __cpu_device_create(parent, drvdata, groups, fmt, vargs);
	va_end(vargs);
	return dev;
}
EXPORT_SYMBOL_GPL(cpu_device_create);

458
#ifdef CONFIG_GENERIC_CPU_AUTOPROBE
459
static DEVICE_ATTR(modalias, 0444, print_cpu_modalias, NULL);
460 461
#endif

462 463 464 465 466 467 468 469 470 471
static struct attribute *cpu_root_attrs[] = {
#ifdef CONFIG_ARCH_CPU_PROBE_RELEASE
	&dev_attr_probe.attr,
	&dev_attr_release.attr,
#endif
	&cpu_attrs[0].attr.attr,
	&cpu_attrs[1].attr.attr,
	&cpu_attrs[2].attr.attr,
	&dev_attr_kernel_max.attr,
	&dev_attr_offline.attr,
R
Rik van Riel 已提交
472
	&dev_attr_isolated.attr,
R
Rik van Riel 已提交
473 474 475
#ifdef CONFIG_NO_HZ_FULL
	&dev_attr_nohz_full.attr,
#endif
476
#ifdef CONFIG_GENERIC_CPU_AUTOPROBE
477 478
	&dev_attr_modalias.attr,
#endif
479 480 481 482 483 484 485 486 487 488 489
	NULL
};

static struct attribute_group cpu_root_attr_group = {
	.attrs = cpu_root_attrs,
};

static const struct attribute_group *cpu_root_attr_groups[] = {
	&cpu_root_attr_group,
	NULL,
};
L
Linus Torvalds 已提交
490

491 492
bool cpu_is_hotpluggable(unsigned cpu)
{
493 494
	struct device *dev = get_cpu_device(cpu);
	return dev && container_of(dev, struct cpu, dev)->hotpluggable;
495 496 497
}
EXPORT_SYMBOL_GPL(cpu_is_hotpluggable);

498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513
#ifdef CONFIG_GENERIC_CPU_DEVICES
static DEFINE_PER_CPU(struct cpu, cpu_devices);
#endif

static void __init cpu_dev_register_generic(void)
{
#ifdef CONFIG_GENERIC_CPU_DEVICES
	int i;

	for_each_possible_cpu(i) {
		if (register_cpu(&per_cpu(cpu_devices, i), i))
			panic("Failed to register CPU device");
	}
#endif
}

514
void __init cpu_dev_init(void)
L
Linus Torvalds 已提交
515
{
516 517
	if (subsys_system_register(&cpu_subsys, cpu_root_attr_groups))
		panic("Failed to register CPU subsystem");
518

519
	cpu_dev_register_generic();
L
Linus Torvalds 已提交
520
}