1 /* ----------------------------------------------------------------------- *
3 * Copyright 2000 H. Peter Anvin - All Rights Reserved
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation, Inc., 675 Mass Ave, Cambridge MA 02139,
8 * USA; either version 2 of the License, or (at your option) any later
9 * version; incorporated herein by reference.
11 * ----------------------------------------------------------------------- */
16 * x86 CPUID access device
18 * This device is accessed by lseek() to the appropriate CPUID level
19 * and then read in chunks of 16 bytes. A larger size means multiple
20 * reads of consecutive levels.
22 * This driver uses /dev/cpu/%d/cpuid where %d is the minor number, and on
23 * an SMP box will direct the access to CPU %d.
26 #include <linux/module.h>
27 #include <linux/config.h>
29 #include <linux/types.h>
30 #include <linux/errno.h>
31 #include <linux/fcntl.h>
32 #include <linux/init.h>
33 #include <linux/poll.h>
34 #include <linux/smp.h>
35 #include <linux/major.h>
37 #include <linux/smp_lock.h>
39 #include <linux/device.h>
40 #include <linux/cpu.h>
41 #include <linux/notifier.h>
43 #include <asm/processor.h>
45 #include <asm/uaccess.h>
46 #include <asm/system.h>
48 static struct class *cpuid_class;
52 struct cpuid_command {
58 static void cpuid_smp_cpuid(void *cmd_block)
60 struct cpuid_command *cmd = (struct cpuid_command *)cmd_block;
62 if (cmd->cpu == smp_processor_id())
63 cpuid(cmd->reg, &cmd->data[0], &cmd->data[1], &cmd->data[2],
67 static inline void do_cpuid(int cpu, u32 reg, u32 * data)
69 struct cpuid_command cmd;
72 if (cpu == smp_processor_id()) {
73 cpuid(reg, &data[0], &data[1], &data[2], &data[3]);
79 smp_call_function(cpuid_smp_cpuid, &cmd, 1, 1);
83 #else /* ! CONFIG_SMP */
85 static inline void do_cpuid(int cpu, u32 reg, u32 * data)
87 cpuid(reg, &data[0], &data[1], &data[2], &data[3]);
90 #endif /* ! CONFIG_SMP */
92 static loff_t cpuid_seek(struct file *file, loff_t offset, int orig)
100 file->f_pos = offset;
104 file->f_pos += offset;
115 static ssize_t cpuid_read(struct file *file, char __user *buf,
116 size_t count, loff_t * ppos)
118 char __user *tmp = buf;
121 int cpu = iminor(file->f_dentry->d_inode);
124 return -EINVAL; /* Invalid chunk size */
126 for (; count; count -= 16) {
127 do_cpuid(cpu, reg, data);
128 if (copy_to_user(tmp, &data, 16))
137 static int cpuid_open(struct inode *inode, struct file *file)
139 unsigned int cpu = iminor(file->f_dentry->d_inode);
140 struct cpuinfo_x86 *c = &(cpu_data)[cpu];
142 if (cpu >= NR_CPUS || !cpu_online(cpu))
143 return -ENXIO; /* No such CPU */
144 if (c->cpuid_level < 0)
145 return -EIO; /* CPUID not supported */
151 * File operations we support
153 static struct file_operations cpuid_fops = {
154 .owner = THIS_MODULE,
155 .llseek = cpuid_seek,
160 static int cpuid_class_device_create(int i)
163 struct class_device *class_err;
165 class_err = class_device_create(cpuid_class, NULL, MKDEV(CPUID_MAJOR, i), NULL, "cpu%d",i);
166 if (IS_ERR(class_err))
167 err = PTR_ERR(class_err);
171 static int __devinit cpuid_class_cpu_callback(struct notifier_block *nfb, unsigned long action, void *hcpu)
173 unsigned int cpu = (unsigned long)hcpu;
177 cpuid_class_device_create(cpu);
180 class_device_destroy(cpuid_class, MKDEV(CPUID_MAJOR, cpu));
186 static struct notifier_block cpuid_class_cpu_notifier =
188 .notifier_call = cpuid_class_cpu_callback,
191 static int __init cpuid_init(void)
196 if (register_chrdev(CPUID_MAJOR, "cpu/cpuid", &cpuid_fops)) {
197 printk(KERN_ERR "cpuid: unable to get major %d for cpuid\n",
202 cpuid_class = class_create(THIS_MODULE, "cpuid");
203 if (IS_ERR(cpuid_class)) {
204 err = PTR_ERR(cpuid_class);
207 for_each_online_cpu(i) {
208 err = cpuid_class_device_create(i);
212 register_cpu_notifier(&cpuid_class_cpu_notifier);
219 for_each_online_cpu(i) {
220 class_device_destroy(cpuid_class, MKDEV(CPUID_MAJOR, i));
222 class_destroy(cpuid_class);
224 unregister_chrdev(CPUID_MAJOR, "cpu/cpuid");
229 static void __exit cpuid_exit(void)
233 for_each_online_cpu(cpu)
234 class_device_destroy(cpuid_class, MKDEV(CPUID_MAJOR, cpu));
235 class_destroy(cpuid_class);
236 unregister_chrdev(CPUID_MAJOR, "cpu/cpuid");
237 unregister_cpu_notifier(&cpuid_class_cpu_notifier);
240 module_init(cpuid_init);
241 module_exit(cpuid_exit);
243 MODULE_AUTHOR("H. Peter Anvin <hpa@zytor.com>");
244 MODULE_DESCRIPTION("x86 generic CPUID driver");
245 MODULE_LICENSE("GPL");