x86: cpuid: allow querying %ecx-sensitive CPUID levels
[safe/jmp/linux-2.6] / arch / x86 / kernel / cpuid.c
1 /* ----------------------------------------------------------------------- *
2  *
3  *   Copyright 2000-2008 H. Peter Anvin - All Rights Reserved
4  *
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.
10  *
11  * ----------------------------------------------------------------------- */
12
13 /*
14  * x86 CPUID access device
15  *
16  * This device is accessed by lseek() to the appropriate CPUID level
17  * and then read in chunks of 16 bytes.  A larger size means multiple
18  * reads of consecutive levels.
19  *
20  * The lower 32 bits of the file position is used as the incoming %eax,
21  * and the upper 32 bits of the file position as the incoming %ecx,
22  * the latter intended for "counting" eax levels like eax=4.
23  *
24  * This driver uses /dev/cpu/%d/cpuid where %d is the minor number, and on
25  * an SMP box will direct the access to CPU %d.
26  */
27
28 #include <linux/module.h>
29
30 #include <linux/types.h>
31 #include <linux/errno.h>
32 #include <linux/fcntl.h>
33 #include <linux/init.h>
34 #include <linux/poll.h>
35 #include <linux/smp.h>
36 #include <linux/major.h>
37 #include <linux/fs.h>
38 #include <linux/smp_lock.h>
39 #include <linux/device.h>
40 #include <linux/cpu.h>
41 #include <linux/notifier.h>
42
43 #include <asm/processor.h>
44 #include <asm/msr.h>
45 #include <asm/uaccess.h>
46 #include <asm/system.h>
47
48 static struct class *cpuid_class;
49
50 struct cpuid_regs {
51         u32 eax, ebx, ecx, edx;
52 };
53
54 static void cpuid_smp_cpuid(void *cmd_block)
55 {
56         struct cpuid_regs *cmd = (struct cpuid_regs *)cmd_block;
57
58         cpuid_count(cmd->eax, cmd->ecx,
59                     &cmd->eax, &cmd->ebx, &cmd->ecx, &cmd->edx);
60 }
61
62 static loff_t cpuid_seek(struct file *file, loff_t offset, int orig)
63 {
64         loff_t ret;
65
66         lock_kernel();
67
68         switch (orig) {
69         case 0:
70                 file->f_pos = offset;
71                 ret = file->f_pos;
72                 break;
73         case 1:
74                 file->f_pos += offset;
75                 ret = file->f_pos;
76                 break;
77         default:
78                 ret = -EINVAL;
79         }
80
81         unlock_kernel();
82         return ret;
83 }
84
85 static ssize_t cpuid_read(struct file *file, char __user *buf,
86                           size_t count, loff_t * ppos)
87 {
88         char __user *tmp = buf;
89         struct cpuid_regs cmd;
90         int cpu = iminor(file->f_path.dentry->d_inode);
91         u64 pos = *ppos;
92
93         if (count % 16)
94                 return -EINVAL; /* Invalid chunk size */
95
96         for (; count; count -= 16) {
97                 cmd.eax = pos;
98                 cmd.ecx = pos >> 32;
99                 smp_call_function_single(cpu, cpuid_smp_cpuid, &cmd, 1, 1);
100                 if (copy_to_user(tmp, &cmd, 16))
101                         return -EFAULT;
102                 tmp += 16;
103                 *ppos = ++pos;
104         }
105
106         return tmp - buf;
107 }
108
109 static int cpuid_open(struct inode *inode, struct file *file)
110 {
111         unsigned int cpu = iminor(file->f_path.dentry->d_inode);
112         struct cpuinfo_x86 *c = &cpu_data(cpu);
113
114         if (cpu >= NR_CPUS || !cpu_online(cpu))
115                 return -ENXIO;  /* No such CPU */
116         if (c->cpuid_level < 0)
117                 return -EIO;    /* CPUID not supported */
118
119         return 0;
120 }
121
122 /*
123  * File operations we support
124  */
125 static const struct file_operations cpuid_fops = {
126         .owner = THIS_MODULE,
127         .llseek = cpuid_seek,
128         .read = cpuid_read,
129         .open = cpuid_open,
130 };
131
132 static __cpuinit int cpuid_device_create(int cpu)
133 {
134         struct device *dev;
135
136         dev = device_create(cpuid_class, NULL, MKDEV(CPUID_MAJOR, cpu),
137                             "cpu%d", cpu);
138         return IS_ERR(dev) ? PTR_ERR(dev) : 0;
139 }
140
141 static void cpuid_device_destroy(int cpu)
142 {
143         device_destroy(cpuid_class, MKDEV(CPUID_MAJOR, cpu));
144 }
145
146 static int __cpuinit cpuid_class_cpu_callback(struct notifier_block *nfb,
147                                               unsigned long action,
148                                               void *hcpu)
149 {
150         unsigned int cpu = (unsigned long)hcpu;
151         int err = 0;
152
153         switch (action) {
154         case CPU_UP_PREPARE:
155                 err = cpuid_device_create(cpu);
156                 break;
157         case CPU_UP_CANCELED:
158         case CPU_DEAD:
159                 cpuid_device_destroy(cpu);
160                 break;
161         case CPU_UP_CANCELED_FROZEN:
162                 destroy_suspended_device(cpuid_class, MKDEV(CPUID_MAJOR, cpu));
163                 break;
164         }
165         return err ? NOTIFY_BAD : NOTIFY_OK;
166 }
167
168 static struct notifier_block __refdata cpuid_class_cpu_notifier =
169 {
170         .notifier_call = cpuid_class_cpu_callback,
171 };
172
173 static int __init cpuid_init(void)
174 {
175         int i, err = 0;
176         i = 0;
177
178         if (register_chrdev(CPUID_MAJOR, "cpu/cpuid", &cpuid_fops)) {
179                 printk(KERN_ERR "cpuid: unable to get major %d for cpuid\n",
180                        CPUID_MAJOR);
181                 err = -EBUSY;
182                 goto out;
183         }
184         cpuid_class = class_create(THIS_MODULE, "cpuid");
185         if (IS_ERR(cpuid_class)) {
186                 err = PTR_ERR(cpuid_class);
187                 goto out_chrdev;
188         }
189         for_each_online_cpu(i) {
190                 err = cpuid_device_create(i);
191                 if (err != 0)
192                         goto out_class;
193         }
194         register_hotcpu_notifier(&cpuid_class_cpu_notifier);
195
196         err = 0;
197         goto out;
198
199 out_class:
200         i = 0;
201         for_each_online_cpu(i) {
202                 cpuid_device_destroy(i);
203         }
204         class_destroy(cpuid_class);
205 out_chrdev:
206         unregister_chrdev(CPUID_MAJOR, "cpu/cpuid");
207 out:
208         return err;
209 }
210
211 static void __exit cpuid_exit(void)
212 {
213         int cpu = 0;
214
215         for_each_online_cpu(cpu)
216                 cpuid_device_destroy(cpu);
217         class_destroy(cpuid_class);
218         unregister_chrdev(CPUID_MAJOR, "cpu/cpuid");
219         unregister_hotcpu_notifier(&cpuid_class_cpu_notifier);
220 }
221
222 module_init(cpuid_init);
223 module_exit(cpuid_exit);
224
225 MODULE_AUTHOR("H. Peter Anvin <hpa@zytor.com>");
226 MODULE_DESCRIPTION("x86 generic CPUID driver");
227 MODULE_LICENSE("GPL");