2 * drivers/base/cpu.c - basic CPU class support
5 #include <linux/sysdev.h>
6 #include <linux/module.h>
7 #include <linux/init.h>
8 #include <linux/sched.h>
10 #include <linux/topology.h>
11 #include <linux/device.h>
12 #include <linux/node.h>
16 struct sysdev_class cpu_sysdev_class
= {
19 EXPORT_SYMBOL(cpu_sysdev_class
);
21 static DEFINE_PER_CPU(struct sys_device
*, cpu_sys_devices
);
23 #ifdef CONFIG_HOTPLUG_CPU
24 static ssize_t
show_online(struct sys_device
*dev
, struct sysdev_attribute
*attr
,
27 struct cpu
*cpu
= container_of(dev
, struct cpu
, sysdev
);
29 return sprintf(buf
, "%u\n", !!cpu_online(cpu
->sysdev
.id
));
32 static ssize_t __ref
store_online(struct sys_device
*dev
, struct sysdev_attribute
*attr
,
33 const char *buf
, size_t count
)
35 struct cpu
*cpu
= container_of(dev
, struct cpu
, sysdev
);
40 ret
= cpu_down(cpu
->sysdev
.id
);
42 kobject_uevent(&dev
->kobj
, KOBJ_OFFLINE
);
45 ret
= cpu_up(cpu
->sysdev
.id
);
47 kobject_uevent(&dev
->kobj
, KOBJ_ONLINE
);
57 static SYSDEV_ATTR(online
, 0644, show_online
, store_online
);
59 static void __cpuinit
register_cpu_control(struct cpu
*cpu
)
61 sysdev_create_file(&cpu
->sysdev
, &attr_online
);
63 void unregister_cpu(struct cpu
*cpu
)
65 int logical_cpu
= cpu
->sysdev
.id
;
67 unregister_cpu_under_node(logical_cpu
, cpu_to_node(logical_cpu
));
69 sysdev_remove_file(&cpu
->sysdev
, &attr_online
);
71 sysdev_unregister(&cpu
->sysdev
);
72 per_cpu(cpu_sys_devices
, logical_cpu
) = NULL
;
75 #else /* ... !CONFIG_HOTPLUG_CPU */
76 static inline void register_cpu_control(struct cpu
*cpu
)
79 #endif /* CONFIG_HOTPLUG_CPU */
82 #include <linux/kexec.h>
84 static ssize_t
show_crash_notes(struct sys_device
*dev
, struct sysdev_attribute
*attr
,
87 struct cpu
*cpu
= container_of(dev
, struct cpu
, sysdev
);
89 unsigned long long addr
;
92 cpunum
= cpu
->sysdev
.id
;
95 * Might be reading other cpu's data based on which cpu read thread
96 * has been scheduled. But cpu data (memory) is allocated once during
97 * boot up and this data does not change there after. Hence this
98 * operation should be safe. No locking required.
100 addr
= __pa(per_cpu_ptr(crash_notes
, cpunum
));
101 rc
= sprintf(buf
, "%Lx\n", addr
);
104 static SYSDEV_ATTR(crash_notes
, 0400, show_crash_notes
, NULL
);
108 * Print cpu online, possible, present, and system maps
110 static ssize_t
print_cpus_map(char *buf
, cpumask_t
*map
)
112 int n
= cpulist_scnprintf(buf
, PAGE_SIZE
-2, map
);
119 #define print_cpus_func(type) \
120 static ssize_t print_cpus_##type(struct sysdev_class *class, char *buf) \
122 return print_cpus_map(buf, &cpu_##type##_map); \
124 static struct sysdev_class_attribute attr_##type##_map = \
125 _SYSDEV_CLASS_ATTR(type, 0444, print_cpus_##type, NULL)
127 print_cpus_func(online
);
128 print_cpus_func(possible
);
129 print_cpus_func(present
);
132 * Print values for NR_CPUS and offlined cpus
134 static ssize_t
print_cpus_kernel_max(struct sysdev_class
*class, char *buf
)
136 int n
= snprintf(buf
, PAGE_SIZE
-2, "%d\n", NR_CPUS
- 1);
139 static SYSDEV_CLASS_ATTR(kernel_max
, 0444, print_cpus_kernel_max
, NULL
);
141 /* arch-optional setting to enable display of offline cpus >= nr_cpu_ids */
142 unsigned int total_cpus
;
144 static ssize_t
print_cpus_offline(struct sysdev_class
*class, char *buf
)
146 int n
= 0, len
= PAGE_SIZE
-2;
147 cpumask_var_t offline
;
149 /* display offline cpus < nr_cpu_ids */
150 if (!alloc_cpumask_var(&offline
, GFP_KERNEL
))
152 cpumask_complement(offline
, cpu_online_mask
);
153 n
= cpulist_scnprintf(buf
, len
, offline
);
154 free_cpumask_var(offline
);
156 /* display offline cpus >= nr_cpu_ids */
157 if (total_cpus
&& nr_cpu_ids
< total_cpus
) {
161 if (nr_cpu_ids
== total_cpus
-1)
162 n
+= snprintf(&buf
[n
], len
- n
, "%d", nr_cpu_ids
);
164 n
+= snprintf(&buf
[n
], len
- n
, "%d-%d",
165 nr_cpu_ids
, total_cpus
-1);
168 n
+= snprintf(&buf
[n
], len
- n
, "\n");
171 static SYSDEV_CLASS_ATTR(offline
, 0444, print_cpus_offline
, NULL
);
173 static struct sysdev_class_attribute
*cpu_state_attr
[] = {
181 static int cpu_states_init(void)
186 for (i
= 0; i
< ARRAY_SIZE(cpu_state_attr
); i
++) {
188 ret
= sysdev_class_create_file(&cpu_sysdev_class
,
197 * register_cpu - Setup a sysfs device for a CPU.
198 * @cpu - cpu->hotpluggable field set to 1 will generate a control file in
199 * sysfs for this CPU.
200 * @num - CPU number to use when creating the device.
202 * Initialize and register the CPU device.
204 int __cpuinit
register_cpu(struct cpu
*cpu
, int num
)
207 cpu
->node_id
= cpu_to_node(num
);
208 cpu
->sysdev
.id
= num
;
209 cpu
->sysdev
.cls
= &cpu_sysdev_class
;
211 error
= sysdev_register(&cpu
->sysdev
);
213 if (!error
&& cpu
->hotpluggable
)
214 register_cpu_control(cpu
);
216 per_cpu(cpu_sys_devices
, num
) = &cpu
->sysdev
;
218 register_cpu_under_node(num
, cpu_to_node(num
));
222 error
= sysdev_create_file(&cpu
->sysdev
, &attr_crash_notes
);
227 struct sys_device
*get_cpu_sysdev(unsigned cpu
)
229 if (cpu
< nr_cpu_ids
&& cpu_possible(cpu
))
230 return per_cpu(cpu_sys_devices
, cpu
);
234 EXPORT_SYMBOL_GPL(get_cpu_sysdev
);
236 int __init
cpu_dev_init(void)
240 err
= sysdev_class_register(&cpu_sysdev_class
);
242 err
= cpu_states_init();
244 #if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
246 err
= sched_create_sysfs_power_savings_entries(&cpu_sysdev_class
);