cpuid.c 5.4 KB

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