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 MSR access device
18 * This device is accessed by lseek() to the appropriate register number
19 * and then read/write in chunks of 8 bytes. A larger size means multiple
20 * reads or writes of the same register.
22 * This driver uses /dev/cpu/%d/msr where %d is the minor number, and on
23 * an SMP box will direct the access to CPU %d.
26 #include <linux/module.h>
28 #include <linux/types.h>
29 #include <linux/errno.h>
30 #include <linux/fcntl.h>
31 #include <linux/init.h>
32 #include <linux/poll.h>
33 #include <linux/smp.h>
34 #include <linux/smp_lock.h>
35 #include <linux/major.h>
37 #include <linux/device.h>
38 #include <linux/cpu.h>
39 #include <linux/notifier.h>
41 #include <asm/processor.h>
43 #include <asm/uaccess.h>
44 #include <asm/system.h>
46 static struct class *msr_class
;
48 static inline int wrmsr_eio(u32 reg
, u32 eax
, u32 edx
)
52 err
= wrmsr_safe(reg
, eax
, edx
);
58 static inline int rdmsr_eio(u32 reg
, u32
*eax
, u32
*edx
)
62 err
= rdmsr_safe(reg
, eax
, edx
);
77 static void msr_smp_wrmsr(void *cmd_block
)
79 struct msr_command
*cmd
= (struct msr_command
*)cmd_block
;
81 if (cmd
->cpu
== smp_processor_id())
82 cmd
->err
= wrmsr_eio(cmd
->reg
, cmd
->data
[0], cmd
->data
[1]);
85 static void msr_smp_rdmsr(void *cmd_block
)
87 struct msr_command
*cmd
= (struct msr_command
*)cmd_block
;
89 if (cmd
->cpu
== smp_processor_id())
90 cmd
->err
= rdmsr_eio(cmd
->reg
, &cmd
->data
[0], &cmd
->data
[1]);
93 static inline int do_wrmsr(int cpu
, u32 reg
, u32 eax
, u32 edx
)
95 struct msr_command cmd
;
99 if (cpu
== smp_processor_id()) {
100 ret
= wrmsr_eio(reg
, eax
, edx
);
107 smp_call_function(msr_smp_wrmsr
, &cmd
, 1, 1);
114 static inline int do_rdmsr(int cpu
, u32 reg
, u32
* eax
, u32
* edx
)
116 struct msr_command cmd
;
120 if (cpu
== smp_processor_id()) {
121 ret
= rdmsr_eio(reg
, eax
, edx
);
126 smp_call_function(msr_smp_rdmsr
, &cmd
, 1, 1);
137 #else /* ! CONFIG_SMP */
139 static inline int do_wrmsr(int cpu
, u32 reg
, u32 eax
, u32 edx
)
141 return wrmsr_eio(reg
, eax
, edx
);
144 static inline int do_rdmsr(int cpu
, u32 reg
, u32
*eax
, u32
*edx
)
146 return rdmsr_eio(reg
, eax
, edx
);
149 #endif /* ! CONFIG_SMP */
151 static loff_t
msr_seek(struct file
*file
, loff_t offset
, int orig
)
153 loff_t ret
= -EINVAL
;
158 file
->f_pos
= offset
;
162 file
->f_pos
+= offset
;
169 static ssize_t
msr_read(struct file
*file
, char __user
* buf
,
170 size_t count
, loff_t
* ppos
)
172 u32 __user
*tmp
= (u32 __user
*) buf
;
175 int cpu
= iminor(file
->f_dentry
->d_inode
);
179 return -EINVAL
; /* Invalid chunk size */
181 for (; count
; count
-= 8) {
182 err
= do_rdmsr(cpu
, reg
, &data
[0], &data
[1]);
185 if (copy_to_user(tmp
, &data
, 8))
190 return ((char __user
*)tmp
) - buf
;
193 static ssize_t
msr_write(struct file
*file
, const char __user
*buf
,
194 size_t count
, loff_t
*ppos
)
196 const u32 __user
*tmp
= (const u32 __user
*)buf
;
200 int cpu
= iminor(file
->f_dentry
->d_inode
);
204 return -EINVAL
; /* Invalid chunk size */
206 for (rv
= 0; count
; count
-= 8) {
207 if (copy_from_user(&data
, tmp
, 8))
209 err
= do_wrmsr(cpu
, reg
, data
[0], data
[1]);
215 return ((char __user
*)tmp
) - buf
;
218 static int msr_open(struct inode
*inode
, struct file
*file
)
220 unsigned int cpu
= iminor(file
->f_dentry
->d_inode
);
221 struct cpuinfo_x86
*c
= &(cpu_data
)[cpu
];
223 if (cpu
>= NR_CPUS
|| !cpu_online(cpu
))
224 return -ENXIO
; /* No such CPU */
225 if (!cpu_has(c
, X86_FEATURE_MSR
))
226 return -EIO
; /* MSR not supported */
232 * File operations we support
234 static struct file_operations msr_fops
= {
235 .owner
= THIS_MODULE
,
242 static int msr_device_create(int i
)
247 dev
= device_create(msr_class
, NULL
, MKDEV(MSR_MAJOR
, i
), "msr%d",i
);
253 #ifdef CONFIG_HOTPLUG_CPU
254 static int msr_class_cpu_callback(struct notifier_block
*nfb
,
255 unsigned long action
, void *hcpu
)
257 unsigned int cpu
= (unsigned long)hcpu
;
261 msr_device_create(cpu
);
264 device_destroy(msr_class
, MKDEV(MSR_MAJOR
, cpu
));
270 static struct notifier_block __cpuinitdata msr_class_cpu_notifier
=
272 .notifier_call
= msr_class_cpu_callback
,
276 static int __init
msr_init(void)
281 if (register_chrdev(MSR_MAJOR
, "cpu/msr", &msr_fops
)) {
282 printk(KERN_ERR
"msr: unable to get major %d for msr\n",
287 msr_class
= class_create(THIS_MODULE
, "msr");
288 if (IS_ERR(msr_class
)) {
289 err
= PTR_ERR(msr_class
);
292 for_each_online_cpu(i
) {
293 err
= msr_device_create(i
);
297 register_hotcpu_notifier(&msr_class_cpu_notifier
);
304 for_each_online_cpu(i
)
305 device_destroy(msr_class
, MKDEV(MSR_MAJOR
, i
));
306 class_destroy(msr_class
);
308 unregister_chrdev(MSR_MAJOR
, "cpu/msr");
313 static void __exit
msr_exit(void)
316 for_each_online_cpu(cpu
)
317 device_destroy(msr_class
, MKDEV(MSR_MAJOR
, cpu
));
318 class_destroy(msr_class
);
319 unregister_chrdev(MSR_MAJOR
, "cpu/msr");
320 unregister_hotcpu_notifier(&msr_class_cpu_notifier
);
323 module_init(msr_init
);
324 module_exit(msr_exit
)
326 MODULE_AUTHOR("H. Peter Anvin <hpa@zytor.com>");
327 MODULE_DESCRIPTION("x86 generic MSR driver");
328 MODULE_LICENSE("GPL");