Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* ----------------------------------------------------------------------- * |
| 2 | * |
| 3 | * Copyright 2000 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 | * msr.c |
| 15 | * |
| 16 | * x86 MSR access device |
| 17 | * |
| 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. |
| 21 | * |
| 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. |
| 24 | */ |
| 25 | |
| 26 | #include <linux/module.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | |
| 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> |
| 36 | #include <linux/fs.h> |
| 37 | #include <linux/device.h> |
| 38 | #include <linux/cpu.h> |
| 39 | #include <linux/notifier.h> |
| 40 | |
| 41 | #include <asm/processor.h> |
| 42 | #include <asm/msr.h> |
| 43 | #include <asm/uaccess.h> |
| 44 | #include <asm/system.h> |
| 45 | |
gregkh@suse.de | 8874b41 | 2005-03-23 09:56:34 -0800 | [diff] [blame] | 46 | static struct class *msr_class; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | static inline int wrmsr_eio(u32 reg, u32 eax, u32 edx) |
| 49 | { |
| 50 | int err; |
| 51 | |
Zachary Amsden | f2ab446 | 2005-09-03 15:56:42 -0700 | [diff] [blame] | 52 | err = wrmsr_safe(reg, eax, edx); |
| 53 | if (err) |
| 54 | err = -EIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | return err; |
| 56 | } |
| 57 | |
| 58 | static inline int rdmsr_eio(u32 reg, u32 *eax, u32 *edx) |
| 59 | { |
| 60 | int err; |
| 61 | |
Zachary Amsden | f2ab446 | 2005-09-03 15:56:42 -0700 | [diff] [blame] | 62 | err = rdmsr_safe(reg, eax, edx); |
| 63 | if (err) |
| 64 | err = -EIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | return err; |
| 66 | } |
| 67 | |
| 68 | #ifdef CONFIG_SMP |
| 69 | |
| 70 | struct msr_command { |
| 71 | int cpu; |
| 72 | int err; |
| 73 | u32 reg; |
| 74 | u32 data[2]; |
| 75 | }; |
| 76 | |
| 77 | static void msr_smp_wrmsr(void *cmd_block) |
| 78 | { |
| 79 | struct msr_command *cmd = (struct msr_command *)cmd_block; |
| 80 | |
| 81 | if (cmd->cpu == smp_processor_id()) |
| 82 | cmd->err = wrmsr_eio(cmd->reg, cmd->data[0], cmd->data[1]); |
| 83 | } |
| 84 | |
| 85 | static void msr_smp_rdmsr(void *cmd_block) |
| 86 | { |
| 87 | struct msr_command *cmd = (struct msr_command *)cmd_block; |
| 88 | |
| 89 | if (cmd->cpu == smp_processor_id()) |
| 90 | cmd->err = rdmsr_eio(cmd->reg, &cmd->data[0], &cmd->data[1]); |
| 91 | } |
| 92 | |
| 93 | static inline int do_wrmsr(int cpu, u32 reg, u32 eax, u32 edx) |
| 94 | { |
| 95 | struct msr_command cmd; |
| 96 | int ret; |
| 97 | |
| 98 | preempt_disable(); |
| 99 | if (cpu == smp_processor_id()) { |
| 100 | ret = wrmsr_eio(reg, eax, edx); |
| 101 | } else { |
| 102 | cmd.cpu = cpu; |
| 103 | cmd.reg = reg; |
| 104 | cmd.data[0] = eax; |
| 105 | cmd.data[1] = edx; |
| 106 | |
| 107 | smp_call_function(msr_smp_wrmsr, &cmd, 1, 1); |
| 108 | ret = cmd.err; |
| 109 | } |
| 110 | preempt_enable(); |
| 111 | return ret; |
| 112 | } |
| 113 | |
| 114 | static inline int do_rdmsr(int cpu, u32 reg, u32 * eax, u32 * edx) |
| 115 | { |
| 116 | struct msr_command cmd; |
| 117 | int ret; |
| 118 | |
| 119 | preempt_disable(); |
| 120 | if (cpu == smp_processor_id()) { |
| 121 | ret = rdmsr_eio(reg, eax, edx); |
| 122 | } else { |
| 123 | cmd.cpu = cpu; |
| 124 | cmd.reg = reg; |
| 125 | |
| 126 | smp_call_function(msr_smp_rdmsr, &cmd, 1, 1); |
| 127 | |
| 128 | *eax = cmd.data[0]; |
| 129 | *edx = cmd.data[1]; |
| 130 | |
| 131 | ret = cmd.err; |
| 132 | } |
| 133 | preempt_enable(); |
| 134 | return ret; |
| 135 | } |
| 136 | |
| 137 | #else /* ! CONFIG_SMP */ |
| 138 | |
| 139 | static inline int do_wrmsr(int cpu, u32 reg, u32 eax, u32 edx) |
| 140 | { |
| 141 | return wrmsr_eio(reg, eax, edx); |
| 142 | } |
| 143 | |
| 144 | static inline int do_rdmsr(int cpu, u32 reg, u32 *eax, u32 *edx) |
| 145 | { |
| 146 | return rdmsr_eio(reg, eax, edx); |
| 147 | } |
| 148 | |
| 149 | #endif /* ! CONFIG_SMP */ |
| 150 | |
| 151 | static loff_t msr_seek(struct file *file, loff_t offset, int orig) |
| 152 | { |
| 153 | loff_t ret = -EINVAL; |
| 154 | |
| 155 | lock_kernel(); |
| 156 | switch (orig) { |
| 157 | case 0: |
| 158 | file->f_pos = offset; |
| 159 | ret = file->f_pos; |
| 160 | break; |
| 161 | case 1: |
| 162 | file->f_pos += offset; |
| 163 | ret = file->f_pos; |
| 164 | } |
| 165 | unlock_kernel(); |
| 166 | return ret; |
| 167 | } |
| 168 | |
| 169 | static ssize_t msr_read(struct file *file, char __user * buf, |
| 170 | size_t count, loff_t * ppos) |
| 171 | { |
| 172 | u32 __user *tmp = (u32 __user *) buf; |
| 173 | u32 data[2]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 174 | u32 reg = *ppos; |
| 175 | int cpu = iminor(file->f_dentry->d_inode); |
| 176 | int err; |
| 177 | |
| 178 | if (count % 8) |
| 179 | return -EINVAL; /* Invalid chunk size */ |
| 180 | |
Daniel Marjamaki | 6926d57 | 2006-01-06 00:12:12 -0800 | [diff] [blame] | 181 | for (; count; count -= 8) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 182 | err = do_rdmsr(cpu, reg, &data[0], &data[1]); |
| 183 | if (err) |
| 184 | return err; |
| 185 | if (copy_to_user(tmp, &data, 8)) |
| 186 | return -EFAULT; |
| 187 | tmp += 2; |
| 188 | } |
| 189 | |
| 190 | return ((char __user *)tmp) - buf; |
| 191 | } |
| 192 | |
| 193 | static ssize_t msr_write(struct file *file, const char __user *buf, |
| 194 | size_t count, loff_t *ppos) |
| 195 | { |
| 196 | const u32 __user *tmp = (const u32 __user *)buf; |
| 197 | u32 data[2]; |
| 198 | size_t rv; |
| 199 | u32 reg = *ppos; |
| 200 | int cpu = iminor(file->f_dentry->d_inode); |
| 201 | int err; |
| 202 | |
| 203 | if (count % 8) |
| 204 | return -EINVAL; /* Invalid chunk size */ |
| 205 | |
| 206 | for (rv = 0; count; count -= 8) { |
| 207 | if (copy_from_user(&data, tmp, 8)) |
| 208 | return -EFAULT; |
| 209 | err = do_wrmsr(cpu, reg, data[0], data[1]); |
| 210 | if (err) |
| 211 | return err; |
| 212 | tmp += 2; |
| 213 | } |
| 214 | |
| 215 | return ((char __user *)tmp) - buf; |
| 216 | } |
| 217 | |
| 218 | static int msr_open(struct inode *inode, struct file *file) |
| 219 | { |
| 220 | unsigned int cpu = iminor(file->f_dentry->d_inode); |
| 221 | struct cpuinfo_x86 *c = &(cpu_data)[cpu]; |
| 222 | |
| 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 */ |
| 227 | |
| 228 | return 0; |
| 229 | } |
| 230 | |
| 231 | /* |
| 232 | * File operations we support |
| 233 | */ |
| 234 | static struct file_operations msr_fops = { |
| 235 | .owner = THIS_MODULE, |
| 236 | .llseek = msr_seek, |
| 237 | .read = msr_read, |
| 238 | .write = msr_write, |
| 239 | .open = msr_open, |
| 240 | }; |
| 241 | |
Greg Kroah-Hartman | a271aaf | 2006-08-07 22:19:37 -0700 | [diff] [blame] | 242 | static int msr_device_create(int i) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 243 | { |
| 244 | int err = 0; |
Greg Kroah-Hartman | a271aaf | 2006-08-07 22:19:37 -0700 | [diff] [blame] | 245 | struct device *dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 246 | |
Greg Kroah-Hartman | a271aaf | 2006-08-07 22:19:37 -0700 | [diff] [blame] | 247 | dev = device_create(msr_class, NULL, MKDEV(MSR_MAJOR, i), "msr%d",i); |
| 248 | if (IS_ERR(dev)) |
| 249 | err = PTR_ERR(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 250 | return err; |
| 251 | } |
| 252 | |
Andrew Morton | e09793b | 2006-06-30 01:55:29 -0700 | [diff] [blame] | 253 | static int msr_class_cpu_callback(struct notifier_block *nfb, |
| 254 | unsigned long action, void *hcpu) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 255 | { |
| 256 | unsigned int cpu = (unsigned long)hcpu; |
| 257 | |
| 258 | switch (action) { |
| 259 | case CPU_ONLINE: |
Greg Kroah-Hartman | a271aaf | 2006-08-07 22:19:37 -0700 | [diff] [blame] | 260 | msr_device_create(cpu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 261 | break; |
| 262 | case CPU_DEAD: |
Greg Kroah-Hartman | a271aaf | 2006-08-07 22:19:37 -0700 | [diff] [blame] | 263 | device_destroy(msr_class, MKDEV(MSR_MAJOR, cpu)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 264 | break; |
| 265 | } |
| 266 | return NOTIFY_OK; |
| 267 | } |
| 268 | |
Chandra Seetharaman | 74b85f3 | 2006-06-27 02:54:09 -0700 | [diff] [blame] | 269 | static struct notifier_block __cpuinitdata msr_class_cpu_notifier = |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 270 | { |
| 271 | .notifier_call = msr_class_cpu_callback, |
| 272 | }; |
| 273 | |
| 274 | static int __init msr_init(void) |
| 275 | { |
| 276 | int i, err = 0; |
| 277 | i = 0; |
| 278 | |
| 279 | if (register_chrdev(MSR_MAJOR, "cpu/msr", &msr_fops)) { |
| 280 | printk(KERN_ERR "msr: unable to get major %d for msr\n", |
| 281 | MSR_MAJOR); |
| 282 | err = -EBUSY; |
| 283 | goto out; |
| 284 | } |
gregkh@suse.de | 8874b41 | 2005-03-23 09:56:34 -0800 | [diff] [blame] | 285 | msr_class = class_create(THIS_MODULE, "msr"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 286 | if (IS_ERR(msr_class)) { |
| 287 | err = PTR_ERR(msr_class); |
| 288 | goto out_chrdev; |
| 289 | } |
| 290 | for_each_online_cpu(i) { |
Greg Kroah-Hartman | a271aaf | 2006-08-07 22:19:37 -0700 | [diff] [blame] | 291 | err = msr_device_create(i); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 292 | if (err != 0) |
| 293 | goto out_class; |
| 294 | } |
Andrew Morton | e09793b | 2006-06-30 01:55:29 -0700 | [diff] [blame] | 295 | register_hotcpu_notifier(&msr_class_cpu_notifier); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 296 | |
| 297 | err = 0; |
| 298 | goto out; |
| 299 | |
| 300 | out_class: |
| 301 | i = 0; |
| 302 | for_each_online_cpu(i) |
Greg Kroah-Hartman | a271aaf | 2006-08-07 22:19:37 -0700 | [diff] [blame] | 303 | device_destroy(msr_class, MKDEV(MSR_MAJOR, i)); |
gregkh@suse.de | 8874b41 | 2005-03-23 09:56:34 -0800 | [diff] [blame] | 304 | class_destroy(msr_class); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 305 | out_chrdev: |
| 306 | unregister_chrdev(MSR_MAJOR, "cpu/msr"); |
| 307 | out: |
| 308 | return err; |
| 309 | } |
| 310 | |
| 311 | static void __exit msr_exit(void) |
| 312 | { |
| 313 | int cpu = 0; |
| 314 | for_each_online_cpu(cpu) |
Greg Kroah-Hartman | a271aaf | 2006-08-07 22:19:37 -0700 | [diff] [blame] | 315 | device_destroy(msr_class, MKDEV(MSR_MAJOR, cpu)); |
gregkh@suse.de | 8874b41 | 2005-03-23 09:56:34 -0800 | [diff] [blame] | 316 | class_destroy(msr_class); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 317 | unregister_chrdev(MSR_MAJOR, "cpu/msr"); |
Andrew Morton | e09793b | 2006-06-30 01:55:29 -0700 | [diff] [blame] | 318 | unregister_hotcpu_notifier(&msr_class_cpu_notifier); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 319 | } |
| 320 | |
| 321 | module_init(msr_init); |
| 322 | module_exit(msr_exit) |
| 323 | |
| 324 | MODULE_AUTHOR("H. Peter Anvin <hpa@zytor.com>"); |
| 325 | MODULE_DESCRIPTION("x86 generic MSR driver"); |
| 326 | MODULE_LICENSE("GPL"); |