aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/base/cpu.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/base/cpu.c')
-rw-r--r--drivers/base/cpu.c50
1 files changed, 45 insertions, 5 deletions
diff --git a/drivers/base/cpu.c b/drivers/base/cpu.c
index f48370dfc908..8a38bf8c792f 100644
--- a/drivers/base/cpu.c
+++ b/drivers/base/cpu.c
@@ -15,6 +15,7 @@
15#include <linux/percpu.h> 15#include <linux/percpu.h>
16#include <linux/acpi.h> 16#include <linux/acpi.h>
17#include <linux/of.h> 17#include <linux/of.h>
18#include <linux/cpufeature.h>
18 19
19#include "base.h" 20#include "base.h"
20 21
@@ -286,6 +287,45 @@ static void cpu_device_release(struct device *dev)
286 */ 287 */
287} 288}
288 289
290#ifdef CONFIG_HAVE_CPU_AUTOPROBE
291#ifdef CONFIG_GENERIC_CPU_AUTOPROBE
292static ssize_t print_cpu_modalias(struct device *dev,
293 struct device_attribute *attr,
294 char *buf)
295{
296 ssize_t n;
297 u32 i;
298
299 n = sprintf(buf, "cpu:type:" CPU_FEATURE_TYPEFMT ":feature:",
300 CPU_FEATURE_TYPEVAL);
301
302 for (i = 0; i < MAX_CPU_FEATURES; i++)
303 if (cpu_have_feature(i)) {
304 if (PAGE_SIZE < n + sizeof(",XXXX\n")) {
305 WARN(1, "CPU features overflow page\n");
306 break;
307 }
308 n += sprintf(&buf[n], ",%04X", i);
309 }
310 buf[n++] = '\n';
311 return n;
312}
313#else
314#define print_cpu_modalias arch_print_cpu_modalias
315#endif
316
317static int cpu_uevent(struct device *dev, struct kobj_uevent_env *env)
318{
319 char *buf = kzalloc(PAGE_SIZE, GFP_KERNEL);
320 if (buf) {
321 print_cpu_modalias(NULL, NULL, buf);
322 add_uevent_var(env, "MODALIAS=%s", buf);
323 kfree(buf);
324 }
325 return 0;
326}
327#endif
328
289/* 329/*
290 * register_cpu - Setup a sysfs device for a CPU. 330 * register_cpu - Setup a sysfs device for a CPU.
291 * @cpu - cpu->hotpluggable field set to 1 will generate a control file in 331 * @cpu - cpu->hotpluggable field set to 1 will generate a control file in
@@ -306,8 +346,8 @@ int register_cpu(struct cpu *cpu, int num)
306 cpu->dev.offline_disabled = !cpu->hotpluggable; 346 cpu->dev.offline_disabled = !cpu->hotpluggable;
307 cpu->dev.offline = !cpu_online(num); 347 cpu->dev.offline = !cpu_online(num);
308 cpu->dev.of_node = of_get_cpu_node(num, NULL); 348 cpu->dev.of_node = of_get_cpu_node(num, NULL);
309#ifdef CONFIG_ARCH_HAS_CPU_AUTOPROBE 349#ifdef CONFIG_HAVE_CPU_AUTOPROBE
310 cpu->dev.bus->uevent = arch_cpu_uevent; 350 cpu->dev.bus->uevent = cpu_uevent;
311#endif 351#endif
312 cpu->dev.groups = common_cpu_attr_groups; 352 cpu->dev.groups = common_cpu_attr_groups;
313 if (cpu->hotpluggable) 353 if (cpu->hotpluggable)
@@ -330,8 +370,8 @@ struct device *get_cpu_device(unsigned cpu)
330} 370}
331EXPORT_SYMBOL_GPL(get_cpu_device); 371EXPORT_SYMBOL_GPL(get_cpu_device);
332 372
333#ifdef CONFIG_ARCH_HAS_CPU_AUTOPROBE 373#ifdef CONFIG_HAVE_CPU_AUTOPROBE
334static DEVICE_ATTR(modalias, 0444, arch_print_cpu_modalias, NULL); 374static DEVICE_ATTR(modalias, 0444, print_cpu_modalias, NULL);
335#endif 375#endif
336 376
337static struct attribute *cpu_root_attrs[] = { 377static struct attribute *cpu_root_attrs[] = {
@@ -344,7 +384,7 @@ static struct attribute *cpu_root_attrs[] = {
344 &cpu_attrs[2].attr.attr, 384 &cpu_attrs[2].attr.attr,
345 &dev_attr_kernel_max.attr, 385 &dev_attr_kernel_max.attr,
346 &dev_attr_offline.attr, 386 &dev_attr_offline.attr,
347#ifdef CONFIG_ARCH_HAS_CPU_AUTOPROBE 387#ifdef CONFIG_HAVE_CPU_AUTOPROBE
348 &dev_attr_modalias.attr, 388 &dev_attr_modalias.attr,
349#endif 389#endif
350 NULL 390 NULL