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