cpu.c 9.1 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>
L
Linus Torvalds 已提交
16

17
#include "base.h"
L
Linus Torvalds 已提交
18

19
struct bus_type cpu_subsys = {
20
	.name = "cpu",
21
	.dev_name = "cpu",
L
Linus Torvalds 已提交
22
};
23
EXPORT_SYMBOL_GPL(cpu_subsys);
L
Linus Torvalds 已提交
24

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

L
Linus Torvalds 已提交
27
#ifdef CONFIG_HOTPLUG_CPU
28 29 30 31 32 33 34 35 36
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;
}

37 38
static ssize_t show_online(struct device *dev,
			   struct device_attribute *attr,
39
			   char *buf)
L
Linus Torvalds 已提交
40
{
41
	struct cpu *cpu = container_of(dev, struct cpu, dev);
L
Linus Torvalds 已提交
42

43
	return sprintf(buf, "%u\n", !!cpu_online(cpu->dev.id));
L
Linus Torvalds 已提交
44 45
}

46 47 48
static ssize_t __ref store_online(struct device *dev,
				  struct device_attribute *attr,
				  const char *buf, size_t count)
L
Linus Torvalds 已提交
49
{
50
	struct cpu *cpu = container_of(dev, struct cpu, dev);
51 52
	int cpuid = cpu->dev.id;
	int from_nid, to_nid;
L
Linus Torvalds 已提交
53 54
	ssize_t ret;

55
	cpu_hotplug_driver_lock();
L
Linus Torvalds 已提交
56 57
	switch (buf[0]) {
	case '0':
58
		ret = cpu_down(cpuid);
L
Linus Torvalds 已提交
59
		if (!ret)
60
			kobject_uevent(&dev->kobj, KOBJ_OFFLINE);
L
Linus Torvalds 已提交
61 62
		break;
	case '1':
63 64 65 66 67 68 69 70 71 72 73
		from_nid = cpu_to_node(cpuid);
		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);

74
		if (!ret)
75
			kobject_uevent(&dev->kobj, KOBJ_ONLINE);
L
Linus Torvalds 已提交
76 77 78 79
		break;
	default:
		ret = -EINVAL;
	}
80
	cpu_hotplug_driver_unlock();
L
Linus Torvalds 已提交
81 82 83 84 85

	if (ret >= 0)
		ret = count;
	return ret;
}
86
static DEVICE_ATTR(online, 0644, show_online, store_online);
L
Linus Torvalds 已提交
87

88
static void __cpuinit register_cpu_control(struct cpu *cpu)
L
Linus Torvalds 已提交
89
{
90
	device_create_file(&cpu->dev, &dev_attr_online);
L
Linus Torvalds 已提交
91
}
92
void unregister_cpu(struct cpu *cpu)
L
Linus Torvalds 已提交
93
{
94
	int logical_cpu = cpu->dev.id;
L
Linus Torvalds 已提交
95

96 97
	unregister_cpu_under_node(logical_cpu, cpu_to_node(logical_cpu));

98
	device_remove_file(&cpu->dev, &dev_attr_online);
L
Linus Torvalds 已提交
99

100
	device_unregister(&cpu->dev);
101
	per_cpu(cpu_sys_devices, logical_cpu) = NULL;
L
Linus Torvalds 已提交
102 103
	return;
}
104 105

#ifdef CONFIG_ARCH_CPU_PROBE_RELEASE
106 107
static ssize_t cpu_probe_store(struct device *dev,
			       struct device_attribute *attr,
108
			       const char *buf,
109 110 111 112 113
			       size_t count)
{
	return arch_cpu_probe(buf, count);
}

114 115
static ssize_t cpu_release_store(struct device *dev,
				 struct device_attribute *attr,
116
				 const char *buf,
117 118 119 120 121
				 size_t count)
{
	return arch_cpu_release(buf, count);
}

122 123
static DEVICE_ATTR(probe, S_IWUSR, NULL, cpu_probe_store);
static DEVICE_ATTR(release, S_IWUSR, NULL, cpu_release_store);
124 125
#endif /* CONFIG_ARCH_CPU_PROBE_RELEASE */

L
Linus Torvalds 已提交
126 127 128 129 130 131
#else /* ... !CONFIG_HOTPLUG_CPU */
static inline void register_cpu_control(struct cpu *cpu)
{
}
#endif /* CONFIG_HOTPLUG_CPU */

132 133 134
#ifdef CONFIG_KEXEC
#include <linux/kexec.h>

135
static ssize_t show_crash_notes(struct device *dev, struct device_attribute *attr,
136
				char *buf)
137
{
138
	struct cpu *cpu = container_of(dev, struct cpu, dev);
139 140 141 142
	ssize_t rc;
	unsigned long long addr;
	int cpunum;

143
	cpunum = cpu->dev.id;
144 145 146 147 148 149 150

	/*
	 * 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.
	 */
151
	addr = per_cpu_ptr_to_phys(per_cpu_ptr(crash_notes, cpunum));
152 153 154
	rc = sprintf(buf, "%Lx\n", addr);
	return rc;
}
155
static DEVICE_ATTR(crash_notes, 0400, show_crash_notes, NULL);
156 157 158 159 160 161 162

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

163
	rc = sprintf(buf, "%zu\n", sizeof(note_buf_t));
164 165 166
	return rc;
}
static DEVICE_ATTR(crash_notes_size, 0400, show_crash_notes_size, NULL);
167 168
#endif

169 170 171
/*
 * Print cpu online, possible, present, and system maps
 */
172 173

struct cpu_attr {
174
	struct device_attribute attr;
175 176 177
	const struct cpumask *const * const map;
};

178 179
static ssize_t show_cpus_attr(struct device *dev,
			      struct device_attribute *attr,
180
			      char *buf)
181
{
182 183
	struct cpu_attr *ca = container_of(attr, struct cpu_attr, attr);
	int n = cpulist_scnprintf(buf, PAGE_SIZE-2, *(ca->map));
184 185 186 187 188 189

	buf[n++] = '\n';
	buf[n] = '\0';
	return n;
}

190 191
#define _CPU_ATTR(name, map) \
	{ __ATTR(name, 0444, show_cpus_attr, NULL), map }
192

193
/* Keep in sync with cpu_subsys_attrs */
194 195 196 197 198
static struct cpu_attr cpu_attrs[] = {
	_CPU_ATTR(online, &cpu_online_mask),
	_CPU_ATTR(possible, &cpu_possible_mask),
	_CPU_ATTR(present, &cpu_present_mask),
};
199

200 201 202
/*
 * Print values for NR_CPUS and offlined cpus
 */
203 204
static ssize_t print_cpus_kernel_max(struct device *dev,
				     struct device_attribute *attr, char *buf)
205
{
206
	int n = snprintf(buf, PAGE_SIZE-2, "%d\n", NR_CPUS - 1);
207 208
	return n;
}
209
static DEVICE_ATTR(kernel_max, 0444, print_cpus_kernel_max, NULL);
210 211 212 213

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

214 215
static ssize_t print_cpus_offline(struct device *dev,
				  struct device_attribute *attr, char *buf)
216 217 218 219 220 221 222
{
	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;
223
	cpumask_andnot(offline, cpu_possible_mask, cpu_online_mask);
224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241
	n = cpulist_scnprintf(buf, len, offline);
	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)
			n += snprintf(&buf[n], len - n, "%d", nr_cpu_ids);
		else
			n += snprintf(&buf[n], len - n, "%d-%d",
						      nr_cpu_ids, total_cpus-1);
	}

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

244 245 246 247 248 249 250 251 252 253 254 255 256 257 258
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
259
	 * on the linux-kernel list, you have been warned.
260 261 262
	 */
}

L
Linus Torvalds 已提交
263
/*
264
 * register_cpu - Setup a sysfs device for a CPU.
265 266
 * @cpu - cpu->hotpluggable field set to 1 will generate a control file in
 *	  sysfs for this CPU.
L
Linus Torvalds 已提交
267 268 269 270
 * @num - CPU number to use when creating the device.
 *
 * Initialize and register the CPU device.
 */
271
int __cpuinit register_cpu(struct cpu *cpu, int num)
L
Linus Torvalds 已提交
272 273
{
	int error;
274

275
	cpu->node_id = cpu_to_node(num);
276
	memset(&cpu->dev, 0x00, sizeof(struct device));
277 278
	cpu->dev.id = num;
	cpu->dev.bus = &cpu_subsys;
279
	cpu->dev.release = cpu_device_release;
280 281 282
#ifdef CONFIG_ARCH_HAS_CPU_AUTOPROBE
	cpu->dev.bus->uevent = arch_cpu_uevent;
#endif
283
	error = device_register(&cpu->dev);
284
	if (!error && cpu->hotpluggable)
L
Linus Torvalds 已提交
285
		register_cpu_control(cpu);
286
	if (!error)
287
		per_cpu(cpu_sys_devices, num) = &cpu->dev;
288 289
	if (!error)
		register_cpu_under_node(num, cpu_to_node(num));
290 291 292

#ifdef CONFIG_KEXEC
	if (!error)
293
		error = device_create_file(&cpu->dev, &dev_attr_crash_notes);
294 295 296
	if (!error)
		error = device_create_file(&cpu->dev,
					   &dev_attr_crash_notes_size);
297
#endif
L
Linus Torvalds 已提交
298 299 300
	return error;
}

301
struct device *get_cpu_device(unsigned cpu)
302
{
303 304
	if (cpu < nr_cpu_ids && cpu_possible(cpu))
		return per_cpu(cpu_sys_devices, cpu);
305 306 307
	else
		return NULL;
}
308 309
EXPORT_SYMBOL_GPL(get_cpu_device);

310 311 312 313
#ifdef CONFIG_ARCH_HAS_CPU_AUTOPROBE
static DEVICE_ATTR(modalias, 0444, arch_print_cpu_modalias, NULL);
#endif

314 315 316 317 318 319 320 321 322 323
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,
324 325 326
#ifdef CONFIG_ARCH_HAS_CPU_AUTOPROBE
	&dev_attr_modalias.attr,
#endif
327 328 329 330 331 332 333 334 335 336 337
	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 已提交
338

339 340
bool cpu_is_hotpluggable(unsigned cpu)
{
341 342
	struct device *dev = get_cpu_device(cpu);
	return dev && container_of(dev, struct cpu, dev)->hotpluggable;
343 344 345
}
EXPORT_SYMBOL_GPL(cpu_is_hotpluggable);

346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361
#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
}

362
void __init cpu_dev_init(void)
L
Linus Torvalds 已提交
363
{
364 365
	if (subsys_system_register(&cpu_subsys, cpu_root_attr_groups))
		panic("Failed to register CPU subsystem");
366

367
	cpu_dev_register_generic();
L
Linus Torvalds 已提交
368
}