cpu.c 8.0 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/percpu.h>
L
Linus Torvalds 已提交
15

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

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

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

L
Linus Torvalds 已提交
26
#ifdef CONFIG_HOTPLUG_CPU
27 28
static ssize_t show_online(struct device *dev,
			   struct device_attribute *attr,
29
			   char *buf)
L
Linus Torvalds 已提交
30
{
31
	struct cpu *cpu = container_of(dev, struct cpu, dev);
L
Linus Torvalds 已提交
32

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

36 37 38
static ssize_t __ref store_online(struct device *dev,
				  struct device_attribute *attr,
				  const char *buf, size_t count)
L
Linus Torvalds 已提交
39
{
40
	struct cpu *cpu = container_of(dev, struct cpu, dev);
L
Linus Torvalds 已提交
41 42
	ssize_t ret;

43
	cpu_hotplug_driver_lock();
L
Linus Torvalds 已提交
44 45
	switch (buf[0]) {
	case '0':
46
		ret = cpu_down(cpu->dev.id);
L
Linus Torvalds 已提交
47
		if (!ret)
48
			kobject_uevent(&dev->kobj, KOBJ_OFFLINE);
L
Linus Torvalds 已提交
49 50
		break;
	case '1':
51
		ret = cpu_up(cpu->dev.id);
52
		if (!ret)
53
			kobject_uevent(&dev->kobj, KOBJ_ONLINE);
L
Linus Torvalds 已提交
54 55 56 57
		break;
	default:
		ret = -EINVAL;
	}
58
	cpu_hotplug_driver_unlock();
L
Linus Torvalds 已提交
59 60 61 62 63

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

66
static void __cpuinit register_cpu_control(struct cpu *cpu)
L
Linus Torvalds 已提交
67
{
68
	device_create_file(&cpu->dev, &dev_attr_online);
L
Linus Torvalds 已提交
69
}
70
void unregister_cpu(struct cpu *cpu)
L
Linus Torvalds 已提交
71
{
72
	int logical_cpu = cpu->dev.id;
L
Linus Torvalds 已提交
73

74 75
	unregister_cpu_under_node(logical_cpu, cpu_to_node(logical_cpu));

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

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

#ifdef CONFIG_ARCH_CPU_PROBE_RELEASE
84 85
static ssize_t cpu_probe_store(struct device *dev,
			       struct device_attribute *attr,
86
			       const char *buf,
87 88 89 90 91
			       size_t count)
{
	return arch_cpu_probe(buf, count);
}

92 93
static ssize_t cpu_release_store(struct device *dev,
				 struct device_attribute *attr,
94
				 const char *buf,
95 96 97 98 99
				 size_t count)
{
	return arch_cpu_release(buf, count);
}

100 101
static DEVICE_ATTR(probe, S_IWUSR, NULL, cpu_probe_store);
static DEVICE_ATTR(release, S_IWUSR, NULL, cpu_release_store);
102 103
#endif /* CONFIG_ARCH_CPU_PROBE_RELEASE */

L
Linus Torvalds 已提交
104 105 106 107 108 109
#else /* ... !CONFIG_HOTPLUG_CPU */
static inline void register_cpu_control(struct cpu *cpu)
{
}
#endif /* CONFIG_HOTPLUG_CPU */

110 111 112
#ifdef CONFIG_KEXEC
#include <linux/kexec.h>

113
static ssize_t show_crash_notes(struct device *dev, struct device_attribute *attr,
114
				char *buf)
115
{
116
	struct cpu *cpu = container_of(dev, struct cpu, dev);
117 118 119 120
	ssize_t rc;
	unsigned long long addr;
	int cpunum;

121
	cpunum = cpu->dev.id;
122 123 124 125 126 127 128

	/*
	 * 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.
	 */
129
	addr = per_cpu_ptr_to_phys(per_cpu_ptr(crash_notes, cpunum));
130 131 132
	rc = sprintf(buf, "%Lx\n", addr);
	return rc;
}
133
static DEVICE_ATTR(crash_notes, 0400, show_crash_notes, NULL);
134 135
#endif

136 137 138
/*
 * Print cpu online, possible, present, and system maps
 */
139 140

struct cpu_attr {
141
	struct device_attribute attr;
142 143 144
	const struct cpumask *const * const map;
};

145 146
static ssize_t show_cpus_attr(struct device *dev,
			      struct device_attribute *attr,
147
			      char *buf)
148
{
149 150
	struct cpu_attr *ca = container_of(attr, struct cpu_attr, attr);
	int n = cpulist_scnprintf(buf, PAGE_SIZE-2, *(ca->map));
151 152 153 154 155 156

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

157 158
#define _CPU_ATTR(name, map) \
	{ __ATTR(name, 0444, show_cpus_attr, NULL), map }
159

160
/* Keep in sync with cpu_subsys_attrs */
161 162 163 164 165
static struct cpu_attr cpu_attrs[] = {
	_CPU_ATTR(online, &cpu_online_mask),
	_CPU_ATTR(possible, &cpu_possible_mask),
	_CPU_ATTR(present, &cpu_present_mask),
};
166

167 168 169
/*
 * Print values for NR_CPUS and offlined cpus
 */
170 171
static ssize_t print_cpus_kernel_max(struct device *dev,
				     struct device_attribute *attr, char *buf)
172
{
173
	int n = snprintf(buf, PAGE_SIZE-2, "%d\n", NR_CPUS - 1);
174 175
	return n;
}
176
static DEVICE_ATTR(kernel_max, 0444, print_cpus_kernel_max, NULL);
177 178 179 180

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

181 182
static ssize_t print_cpus_offline(struct device *dev,
				  struct device_attribute *attr, char *buf)
183 184 185 186 187 188 189
{
	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;
190
	cpumask_andnot(offline, cpu_possible_mask, cpu_online_mask);
191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208
	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;
}
209
static DEVICE_ATTR(offline, 0444, print_cpus_offline, NULL);
210

211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229
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
	 * on the linux-kerenl list, you have been warned.
	 */
}

L
Linus Torvalds 已提交
230
/*
231
 * register_cpu - Setup a sysfs device for a CPU.
232 233
 * @cpu - cpu->hotpluggable field set to 1 will generate a control file in
 *	  sysfs for this CPU.
L
Linus Torvalds 已提交
234 235 236 237
 * @num - CPU number to use when creating the device.
 *
 * Initialize and register the CPU device.
 */
238
int __cpuinit register_cpu(struct cpu *cpu, int num)
L
Linus Torvalds 已提交
239 240
{
	int error;
241

242 243 244
	cpu->node_id = cpu_to_node(num);
	cpu->dev.id = num;
	cpu->dev.bus = &cpu_subsys;
245
	cpu->dev.release = cpu_device_release;
246
	error = device_register(&cpu->dev);
247
	if (!error && cpu->hotpluggable)
L
Linus Torvalds 已提交
248
		register_cpu_control(cpu);
249
	if (!error)
250
		per_cpu(cpu_sys_devices, num) = &cpu->dev;
251 252
	if (!error)
		register_cpu_under_node(num, cpu_to_node(num));
253 254 255

#ifdef CONFIG_KEXEC
	if (!error)
256
		error = device_create_file(&cpu->dev, &dev_attr_crash_notes);
257
#endif
L
Linus Torvalds 已提交
258 259 260
	return error;
}

261
struct device *get_cpu_device(unsigned cpu)
262
{
263 264
	if (cpu < nr_cpu_ids && cpu_possible(cpu))
		return per_cpu(cpu_sys_devices, cpu);
265 266 267
	else
		return NULL;
}
268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290
EXPORT_SYMBOL_GPL(get_cpu_device);

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,
	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 已提交
291

292 293
bool cpu_is_hotpluggable(unsigned cpu)
{
294 295
	struct device *dev = get_cpu_device(cpu);
	return dev && container_of(dev, struct cpu, dev)->hotpluggable;
296 297 298
}
EXPORT_SYMBOL_GPL(cpu_is_hotpluggable);

299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314
#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
}

315
void __init cpu_dev_init(void)
L
Linus Torvalds 已提交
316
{
317 318
	if (subsys_system_register(&cpu_subsys, cpu_root_attr_groups))
		panic("Failed to register CPU subsystem");
319

320 321
	cpu_dev_register_generic();

322
#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
323
	sched_create_sysfs_power_savings_entries(cpu_subsys.dev_root);
324
#endif
L
Linus Torvalds 已提交
325
}