Loading...
1/* ----------------------------------------------------------------------- *
2 *
3 * Copyright 2000-2008 H. Peter Anvin - All Rights Reserved
4 * Copyright 2009 Intel Corporation; author: H. Peter Anvin
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation, Inc., 675 Mass Ave, Cambridge MA 02139,
9 * USA; either version 2 of the License, or (at your option) any later
10 * version; incorporated herein by reference.
11 *
12 * ----------------------------------------------------------------------- */
13
14/*
15 * x86 MSR access device
16 *
17 * This device is accessed by lseek() to the appropriate register number
18 * and then read/write in chunks of 8 bytes. A larger size means multiple
19 * reads or writes of the same register.
20 *
21 * This driver uses /dev/cpu/%d/msr where %d is the minor number, and on
22 * an SMP box will direct the access to CPU %d.
23 */
24
25#include <linux/module.h>
26
27#include <linux/types.h>
28#include <linux/errno.h>
29#include <linux/fcntl.h>
30#include <linux/init.h>
31#include <linux/poll.h>
32#include <linux/smp.h>
33#include <linux/major.h>
34#include <linux/fs.h>
35#include <linux/device.h>
36#include <linux/cpu.h>
37#include <linux/notifier.h>
38#include <linux/uaccess.h>
39#include <linux/gfp.h>
40
41#include <asm/processor.h>
42#include <asm/msr.h>
43#include <asm/system.h>
44
45static struct class *msr_class;
46
47static loff_t msr_seek(struct file *file, loff_t offset, int orig)
48{
49 loff_t ret;
50 struct inode *inode = file->f_mapping->host;
51
52 mutex_lock(&inode->i_mutex);
53 switch (orig) {
54 case 0:
55 file->f_pos = offset;
56 ret = file->f_pos;
57 break;
58 case 1:
59 file->f_pos += offset;
60 ret = file->f_pos;
61 break;
62 default:
63 ret = -EINVAL;
64 }
65 mutex_unlock(&inode->i_mutex);
66 return ret;
67}
68
69static ssize_t msr_read(struct file *file, char __user *buf,
70 size_t count, loff_t *ppos)
71{
72 u32 __user *tmp = (u32 __user *) buf;
73 u32 data[2];
74 u32 reg = *ppos;
75 int cpu = iminor(file->f_path.dentry->d_inode);
76 int err = 0;
77 ssize_t bytes = 0;
78
79 if (count % 8)
80 return -EINVAL; /* Invalid chunk size */
81
82 for (; count; count -= 8) {
83 err = rdmsr_safe_on_cpu(cpu, reg, &data[0], &data[1]);
84 if (err)
85 break;
86 if (copy_to_user(tmp, &data, 8)) {
87 err = -EFAULT;
88 break;
89 }
90 tmp += 2;
91 bytes += 8;
92 }
93
94 return bytes ? bytes : err;
95}
96
97static ssize_t msr_write(struct file *file, const char __user *buf,
98 size_t count, loff_t *ppos)
99{
100 const u32 __user *tmp = (const u32 __user *)buf;
101 u32 data[2];
102 u32 reg = *ppos;
103 int cpu = iminor(file->f_path.dentry->d_inode);
104 int err = 0;
105 ssize_t bytes = 0;
106
107 if (count % 8)
108 return -EINVAL; /* Invalid chunk size */
109
110 for (; count; count -= 8) {
111 if (copy_from_user(&data, tmp, 8)) {
112 err = -EFAULT;
113 break;
114 }
115 err = wrmsr_safe_on_cpu(cpu, reg, data[0], data[1]);
116 if (err)
117 break;
118 tmp += 2;
119 bytes += 8;
120 }
121
122 return bytes ? bytes : err;
123}
124
125static long msr_ioctl(struct file *file, unsigned int ioc, unsigned long arg)
126{
127 u32 __user *uregs = (u32 __user *)arg;
128 u32 regs[8];
129 int cpu = iminor(file->f_path.dentry->d_inode);
130 int err;
131
132 switch (ioc) {
133 case X86_IOC_RDMSR_REGS:
134 if (!(file->f_mode & FMODE_READ)) {
135 err = -EBADF;
136 break;
137 }
138 if (copy_from_user(®s, uregs, sizeof regs)) {
139 err = -EFAULT;
140 break;
141 }
142 err = rdmsr_safe_regs_on_cpu(cpu, regs);
143 if (err)
144 break;
145 if (copy_to_user(uregs, ®s, sizeof regs))
146 err = -EFAULT;
147 break;
148
149 case X86_IOC_WRMSR_REGS:
150 if (!(file->f_mode & FMODE_WRITE)) {
151 err = -EBADF;
152 break;
153 }
154 if (copy_from_user(®s, uregs, sizeof regs)) {
155 err = -EFAULT;
156 break;
157 }
158 err = wrmsr_safe_regs_on_cpu(cpu, regs);
159 if (err)
160 break;
161 if (copy_to_user(uregs, ®s, sizeof regs))
162 err = -EFAULT;
163 break;
164
165 default:
166 err = -ENOTTY;
167 break;
168 }
169
170 return err;
171}
172
173static int msr_open(struct inode *inode, struct file *file)
174{
175 unsigned int cpu;
176 struct cpuinfo_x86 *c;
177
178 cpu = iminor(file->f_path.dentry->d_inode);
179 if (cpu >= nr_cpu_ids || !cpu_online(cpu))
180 return -ENXIO; /* No such CPU */
181
182 c = &cpu_data(cpu);
183 if (!cpu_has(c, X86_FEATURE_MSR))
184 return -EIO; /* MSR not supported */
185
186 return 0;
187}
188
189/*
190 * File operations we support
191 */
192static const struct file_operations msr_fops = {
193 .owner = THIS_MODULE,
194 .llseek = msr_seek,
195 .read = msr_read,
196 .write = msr_write,
197 .open = msr_open,
198 .unlocked_ioctl = msr_ioctl,
199 .compat_ioctl = msr_ioctl,
200};
201
202static int __cpuinit msr_device_create(int cpu)
203{
204 struct device *dev;
205
206 dev = device_create(msr_class, NULL, MKDEV(MSR_MAJOR, cpu), NULL,
207 "msr%d", cpu);
208 return IS_ERR(dev) ? PTR_ERR(dev) : 0;
209}
210
211static void msr_device_destroy(int cpu)
212{
213 device_destroy(msr_class, MKDEV(MSR_MAJOR, cpu));
214}
215
216static int __cpuinit msr_class_cpu_callback(struct notifier_block *nfb,
217 unsigned long action, void *hcpu)
218{
219 unsigned int cpu = (unsigned long)hcpu;
220 int err = 0;
221
222 switch (action) {
223 case CPU_UP_PREPARE:
224 err = msr_device_create(cpu);
225 break;
226 case CPU_UP_CANCELED:
227 case CPU_UP_CANCELED_FROZEN:
228 case CPU_DEAD:
229 msr_device_destroy(cpu);
230 break;
231 }
232 return notifier_from_errno(err);
233}
234
235static struct notifier_block __refdata msr_class_cpu_notifier = {
236 .notifier_call = msr_class_cpu_callback,
237};
238
239static char *msr_devnode(struct device *dev, mode_t *mode)
240{
241 return kasprintf(GFP_KERNEL, "cpu/%u/msr", MINOR(dev->devt));
242}
243
244static int __init msr_init(void)
245{
246 int i, err = 0;
247 i = 0;
248
249 if (__register_chrdev(MSR_MAJOR, 0, NR_CPUS, "cpu/msr", &msr_fops)) {
250 printk(KERN_ERR "msr: unable to get major %d for msr\n",
251 MSR_MAJOR);
252 err = -EBUSY;
253 goto out;
254 }
255 msr_class = class_create(THIS_MODULE, "msr");
256 if (IS_ERR(msr_class)) {
257 err = PTR_ERR(msr_class);
258 goto out_chrdev;
259 }
260 msr_class->devnode = msr_devnode;
261 for_each_online_cpu(i) {
262 err = msr_device_create(i);
263 if (err != 0)
264 goto out_class;
265 }
266 register_hotcpu_notifier(&msr_class_cpu_notifier);
267
268 err = 0;
269 goto out;
270
271out_class:
272 i = 0;
273 for_each_online_cpu(i)
274 msr_device_destroy(i);
275 class_destroy(msr_class);
276out_chrdev:
277 __unregister_chrdev(MSR_MAJOR, 0, NR_CPUS, "cpu/msr");
278out:
279 return err;
280}
281
282static void __exit msr_exit(void)
283{
284 int cpu = 0;
285 for_each_online_cpu(cpu)
286 msr_device_destroy(cpu);
287 class_destroy(msr_class);
288 __unregister_chrdev(MSR_MAJOR, 0, NR_CPUS, "cpu/msr");
289 unregister_hotcpu_notifier(&msr_class_cpu_notifier);
290}
291
292module_init(msr_init);
293module_exit(msr_exit)
294
295MODULE_AUTHOR("H. Peter Anvin <hpa@zytor.com>");
296MODULE_DESCRIPTION("x86 generic MSR driver");
297MODULE_LICENSE("GPL");
1/* ----------------------------------------------------------------------- *
2 *
3 * Copyright 2000-2008 H. Peter Anvin - All Rights Reserved
4 * Copyright 2009 Intel Corporation; author: H. Peter Anvin
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation, Inc., 675 Mass Ave, Cambridge MA 02139,
9 * USA; either version 2 of the License, or (at your option) any later
10 * version; incorporated herein by reference.
11 *
12 * ----------------------------------------------------------------------- */
13
14/*
15 * x86 MSR access device
16 *
17 * This device is accessed by lseek() to the appropriate register number
18 * and then read/write in chunks of 8 bytes. A larger size means multiple
19 * reads or writes of the same register.
20 *
21 * This driver uses /dev/cpu/%d/msr where %d is the minor number, and on
22 * an SMP box will direct the access to CPU %d.
23 */
24
25#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
26
27#include <linux/module.h>
28
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>
36#include <linux/fs.h>
37#include <linux/device.h>
38#include <linux/cpu.h>
39#include <linux/notifier.h>
40#include <linux/uaccess.h>
41#include <linux/gfp.h>
42
43#include <asm/cpufeature.h>
44#include <asm/msr.h>
45
46static struct class *msr_class;
47
48static ssize_t msr_read(struct file *file, char __user *buf,
49 size_t count, loff_t *ppos)
50{
51 u32 __user *tmp = (u32 __user *) buf;
52 u32 data[2];
53 u32 reg = *ppos;
54 int cpu = iminor(file_inode(file));
55 int err = 0;
56 ssize_t bytes = 0;
57
58 if (count % 8)
59 return -EINVAL; /* Invalid chunk size */
60
61 for (; count; count -= 8) {
62 err = rdmsr_safe_on_cpu(cpu, reg, &data[0], &data[1]);
63 if (err)
64 break;
65 if (copy_to_user(tmp, &data, 8)) {
66 err = -EFAULT;
67 break;
68 }
69 tmp += 2;
70 bytes += 8;
71 }
72
73 return bytes ? bytes : err;
74}
75
76static ssize_t msr_write(struct file *file, const char __user *buf,
77 size_t count, loff_t *ppos)
78{
79 const u32 __user *tmp = (const u32 __user *)buf;
80 u32 data[2];
81 u32 reg = *ppos;
82 int cpu = iminor(file_inode(file));
83 int err = 0;
84 ssize_t bytes = 0;
85
86 if (count % 8)
87 return -EINVAL; /* Invalid chunk size */
88
89 for (; count; count -= 8) {
90 if (copy_from_user(&data, tmp, 8)) {
91 err = -EFAULT;
92 break;
93 }
94 err = wrmsr_safe_on_cpu(cpu, reg, data[0], data[1]);
95 if (err)
96 break;
97 tmp += 2;
98 bytes += 8;
99 }
100
101 return bytes ? bytes : err;
102}
103
104static long msr_ioctl(struct file *file, unsigned int ioc, unsigned long arg)
105{
106 u32 __user *uregs = (u32 __user *)arg;
107 u32 regs[8];
108 int cpu = iminor(file_inode(file));
109 int err;
110
111 switch (ioc) {
112 case X86_IOC_RDMSR_REGS:
113 if (!(file->f_mode & FMODE_READ)) {
114 err = -EBADF;
115 break;
116 }
117 if (copy_from_user(®s, uregs, sizeof regs)) {
118 err = -EFAULT;
119 break;
120 }
121 err = rdmsr_safe_regs_on_cpu(cpu, regs);
122 if (err)
123 break;
124 if (copy_to_user(uregs, ®s, sizeof regs))
125 err = -EFAULT;
126 break;
127
128 case X86_IOC_WRMSR_REGS:
129 if (!(file->f_mode & FMODE_WRITE)) {
130 err = -EBADF;
131 break;
132 }
133 if (copy_from_user(®s, uregs, sizeof regs)) {
134 err = -EFAULT;
135 break;
136 }
137 err = wrmsr_safe_regs_on_cpu(cpu, regs);
138 if (err)
139 break;
140 if (copy_to_user(uregs, ®s, sizeof regs))
141 err = -EFAULT;
142 break;
143
144 default:
145 err = -ENOTTY;
146 break;
147 }
148
149 return err;
150}
151
152static int msr_open(struct inode *inode, struct file *file)
153{
154 unsigned int cpu = iminor(file_inode(file));
155 struct cpuinfo_x86 *c;
156
157 if (!capable(CAP_SYS_RAWIO))
158 return -EPERM;
159
160 if (cpu >= nr_cpu_ids || !cpu_online(cpu))
161 return -ENXIO; /* No such CPU */
162
163 c = &cpu_data(cpu);
164 if (!cpu_has(c, X86_FEATURE_MSR))
165 return -EIO; /* MSR not supported */
166
167 return 0;
168}
169
170/*
171 * File operations we support
172 */
173static const struct file_operations msr_fops = {
174 .owner = THIS_MODULE,
175 .llseek = no_seek_end_llseek,
176 .read = msr_read,
177 .write = msr_write,
178 .open = msr_open,
179 .unlocked_ioctl = msr_ioctl,
180 .compat_ioctl = msr_ioctl,
181};
182
183static int msr_device_create(int cpu)
184{
185 struct device *dev;
186
187 dev = device_create(msr_class, NULL, MKDEV(MSR_MAJOR, cpu), NULL,
188 "msr%d", cpu);
189 return PTR_ERR_OR_ZERO(dev);
190}
191
192static void msr_device_destroy(int cpu)
193{
194 device_destroy(msr_class, MKDEV(MSR_MAJOR, cpu));
195}
196
197static int msr_class_cpu_callback(struct notifier_block *nfb,
198 unsigned long action, void *hcpu)
199{
200 unsigned int cpu = (unsigned long)hcpu;
201 int err = 0;
202
203 switch (action) {
204 case CPU_UP_PREPARE:
205 err = msr_device_create(cpu);
206 break;
207 case CPU_UP_CANCELED:
208 case CPU_UP_CANCELED_FROZEN:
209 case CPU_DEAD:
210 msr_device_destroy(cpu);
211 break;
212 }
213 return notifier_from_errno(err);
214}
215
216static struct notifier_block __refdata msr_class_cpu_notifier = {
217 .notifier_call = msr_class_cpu_callback,
218};
219
220static char *msr_devnode(struct device *dev, umode_t *mode)
221{
222 return kasprintf(GFP_KERNEL, "cpu/%u/msr", MINOR(dev->devt));
223}
224
225static int __init msr_init(void)
226{
227 int i, err = 0;
228 i = 0;
229
230 if (__register_chrdev(MSR_MAJOR, 0, NR_CPUS, "cpu/msr", &msr_fops)) {
231 pr_err("unable to get major %d for msr\n", MSR_MAJOR);
232 err = -EBUSY;
233 goto out;
234 }
235 msr_class = class_create(THIS_MODULE, "msr");
236 if (IS_ERR(msr_class)) {
237 err = PTR_ERR(msr_class);
238 goto out_chrdev;
239 }
240 msr_class->devnode = msr_devnode;
241
242 cpu_notifier_register_begin();
243 for_each_online_cpu(i) {
244 err = msr_device_create(i);
245 if (err != 0)
246 goto out_class;
247 }
248 __register_hotcpu_notifier(&msr_class_cpu_notifier);
249 cpu_notifier_register_done();
250
251 err = 0;
252 goto out;
253
254out_class:
255 i = 0;
256 for_each_online_cpu(i)
257 msr_device_destroy(i);
258 cpu_notifier_register_done();
259 class_destroy(msr_class);
260out_chrdev:
261 __unregister_chrdev(MSR_MAJOR, 0, NR_CPUS, "cpu/msr");
262out:
263 return err;
264}
265
266static void __exit msr_exit(void)
267{
268 int cpu = 0;
269
270 cpu_notifier_register_begin();
271 for_each_online_cpu(cpu)
272 msr_device_destroy(cpu);
273 class_destroy(msr_class);
274 __unregister_chrdev(MSR_MAJOR, 0, NR_CPUS, "cpu/msr");
275 __unregister_hotcpu_notifier(&msr_class_cpu_notifier);
276 cpu_notifier_register_done();
277}
278
279module_init(msr_init);
280module_exit(msr_exit)
281
282MODULE_AUTHOR("H. Peter Anvin <hpa@zytor.com>");
283MODULE_DESCRIPTION("x86 generic MSR driver");
284MODULE_LICENSE("GPL");