2 * drivers/base/cpu.c - basic CPU class support
5 #include <linux/sysdev.h>
6 #include <linux/module.h>
7 #include <linux/init.h>
9 #include <linux/topology.h>
10 #include <linux/device.h>
13 struct sysdev_class cpu_sysdev_class = {
16 EXPORT_SYMBOL(cpu_sysdev_class);
18 #ifdef CONFIG_HOTPLUG_CPU
19 static ssize_t show_online(struct sys_device *dev, char *buf)
21 struct cpu *cpu = container_of(dev, struct cpu, sysdev);
23 return sprintf(buf, "%u\n", !!cpu_online(cpu->sysdev.id));
26 static ssize_t store_online(struct sys_device *dev, const char *buf,
29 struct cpu *cpu = container_of(dev, struct cpu, sysdev);
34 ret = cpu_down(cpu->sysdev.id);
36 kobject_hotplug(&dev->kobj, KOBJ_OFFLINE);
39 ret = cpu_up(cpu->sysdev.id);
49 static SYSDEV_ATTR(online, 0600, show_online, store_online);
51 static void __devinit register_cpu_control(struct cpu *cpu)
53 sysdev_create_file(&cpu->sysdev, &attr_online);
55 void unregister_cpu(struct cpu *cpu, struct node *root)
59 sysfs_remove_link(&root->sysdev.kobj,
60 kobject_name(&cpu->sysdev.kobj));
61 sysdev_remove_file(&cpu->sysdev, &attr_online);
63 sysdev_unregister(&cpu->sysdev);
67 #else /* ... !CONFIG_HOTPLUG_CPU */
68 static inline void register_cpu_control(struct cpu *cpu)
71 #endif /* CONFIG_HOTPLUG_CPU */
74 * register_cpu - Setup a driverfs device for a CPU.
75 * @cpu - Callers can set the cpu->no_control field to 1, to indicate not to
76 * generate a control file in sysfs for this CPU.
77 * @num - CPU number to use when creating the device.
79 * Initialize and register the CPU device.
81 int __devinit register_cpu(struct cpu *cpu, int num, struct node *root)
85 cpu->node_id = cpu_to_node(num);
87 cpu->sysdev.cls = &cpu_sysdev_class;
89 error = sysdev_register(&cpu->sysdev);
91 error = sysfs_create_link(&root->sysdev.kobj,
93 kobject_name(&cpu->sysdev.kobj));
94 if (!error && !cpu->no_control)
95 register_cpu_control(cpu);
101 int __init cpu_dev_init(void)
103 return sysdev_class_register(&cpu_sysdev_class);