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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

L
Linus Torvalds 已提交
210
/*
211
 * register_cpu - Setup a sysfs device for a CPU.
212 213
 * @cpu - cpu->hotpluggable field set to 1 will generate a control file in
 *	  sysfs for this CPU.
L
Linus Torvalds 已提交
214 215 216 217
 * @num - CPU number to use when creating the device.
 *
 * Initialize and register the CPU device.
 */
218
int __cpuinit register_cpu(struct cpu *cpu, int num)
L
Linus Torvalds 已提交
219 220
{
	int error;
221

222 223 224 225
	cpu->node_id = cpu_to_node(num);
	cpu->dev.id = num;
	cpu->dev.bus = &cpu_subsys;
	error = device_register(&cpu->dev);
226
	if (!error && cpu->hotpluggable)
L
Linus Torvalds 已提交
227
		register_cpu_control(cpu);
228
	if (!error)
229
		per_cpu(cpu_sys_devices, num) = &cpu->dev;
230 231
	if (!error)
		register_cpu_under_node(num, cpu_to_node(num));
232 233 234

#ifdef CONFIG_KEXEC
	if (!error)
235
		error = device_create_file(&cpu->dev, &dev_attr_crash_notes);
236
#endif
L
Linus Torvalds 已提交
237 238 239
	return error;
}

240
struct device *get_cpu_device(unsigned cpu)
241
{
242 243
	if (cpu < nr_cpu_ids && cpu_possible(cpu))
		return per_cpu(cpu_sys_devices, cpu);
244 245 246
	else
		return NULL;
}
247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269
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 已提交
270

271 272
bool cpu_is_hotpluggable(unsigned cpu)
{
273 274
	struct device *dev = get_cpu_device(cpu);
	return dev && container_of(dev, struct cpu, dev)->hotpluggable;
275 276 277
}
EXPORT_SYMBOL_GPL(cpu_is_hotpluggable);

278
void __init cpu_dev_init(void)
L
Linus Torvalds 已提交
279
{
280 281
	if (subsys_system_register(&cpu_subsys, cpu_root_attr_groups))
		panic("Failed to register CPU subsystem");
282

283
#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
284
	sched_create_sysfs_power_savings_entries(cpu_subsys.dev_root);
285
#endif
L
Linus Torvalds 已提交
286
}