cpuid.c 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240
  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/smp_lock.h>
  37. #include <linux/device.h>
  38. #include <linux/cpu.h>
  39. #include <linux/notifier.h>
  40. #include <asm/processor.h>
  41. #include <asm/msr.h>
  42. #include <asm/uaccess.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. int ret = 0;
  106. lock_kernel();
  107. cpu = iminor(file->f_path.dentry->d_inode);
  108. if (cpu >= NR_CPUS || !cpu_online(cpu)) {
  109. ret = -ENXIO; /* No such CPU */
  110. goto out;
  111. }
  112. c = &cpu_data(cpu);
  113. if (c->cpuid_level < 0)
  114. ret = -EIO; /* CPUID not supported */
  115. out:
  116. unlock_kernel();
  117. return ret;
  118. }
  119. /*
  120. * File operations we support
  121. */
  122. static const struct file_operations cpuid_fops = {
  123. .owner = THIS_MODULE,
  124. .llseek = cpuid_seek,
  125. .read = cpuid_read,
  126. .open = cpuid_open,
  127. };
  128. static __cpuinit int cpuid_device_create(int cpu)
  129. {
  130. struct device *dev;
  131. dev = device_create_drvdata(cpuid_class, NULL, MKDEV(CPUID_MAJOR, cpu),
  132. NULL, "cpu%d", cpu);
  133. return IS_ERR(dev) ? PTR_ERR(dev) : 0;
  134. }
  135. static void cpuid_device_destroy(int cpu)
  136. {
  137. device_destroy(cpuid_class, MKDEV(CPUID_MAJOR, cpu));
  138. }
  139. static int __cpuinit cpuid_class_cpu_callback(struct notifier_block *nfb,
  140. unsigned long action,
  141. void *hcpu)
  142. {
  143. unsigned int cpu = (unsigned long)hcpu;
  144. int err = 0;
  145. switch (action) {
  146. case CPU_UP_PREPARE:
  147. err = cpuid_device_create(cpu);
  148. break;
  149. case CPU_UP_CANCELED:
  150. case CPU_UP_CANCELED_FROZEN:
  151. case CPU_DEAD:
  152. cpuid_device_destroy(cpu);
  153. break;
  154. }
  155. return err ? NOTIFY_BAD : NOTIFY_OK;
  156. }
  157. static struct notifier_block __refdata cpuid_class_cpu_notifier =
  158. {
  159. .notifier_call = cpuid_class_cpu_callback,
  160. };
  161. static int __init cpuid_init(void)
  162. {
  163. int i, err = 0;
  164. i = 0;
  165. if (register_chrdev(CPUID_MAJOR, "cpu/cpuid", &cpuid_fops)) {
  166. printk(KERN_ERR "cpuid: unable to get major %d for cpuid\n",
  167. CPUID_MAJOR);
  168. err = -EBUSY;
  169. goto out;
  170. }
  171. cpuid_class = class_create(THIS_MODULE, "cpuid");
  172. if (IS_ERR(cpuid_class)) {
  173. err = PTR_ERR(cpuid_class);
  174. goto out_chrdev;
  175. }
  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, "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, "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");