cpuid.c 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233
  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. if (count % 16)
  82. return -EINVAL; /* Invalid chunk size */
  83. for (; count; count -= 16) {
  84. cmd.eax = pos;
  85. cmd.ecx = pos >> 32;
  86. smp_call_function_single(cpu, cpuid_smp_cpuid, &cmd, 1, 1);
  87. if (copy_to_user(tmp, &cmd, 16))
  88. return -EFAULT;
  89. tmp += 16;
  90. *ppos = ++pos;
  91. }
  92. return tmp - buf;
  93. }
  94. static int cpuid_open(struct inode *inode, struct file *file)
  95. {
  96. unsigned int cpu;
  97. struct cpuinfo_x86 *c;
  98. int ret = 0;
  99. lock_kernel();
  100. cpu = iminor(file->f_path.dentry->d_inode);
  101. if (cpu >= NR_CPUS || !cpu_online(cpu)) {
  102. ret = -ENXIO; /* No such CPU */
  103. goto out;
  104. }
  105. c = &cpu_data(cpu);
  106. if (c->cpuid_level < 0)
  107. ret = -EIO; /* CPUID not supported */
  108. out:
  109. unlock_kernel();
  110. return ret;
  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),
  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 err ? NOTIFY_BAD : NOTIFY_OK;
  149. }
  150. static struct notifier_block __refdata cpuid_class_cpu_notifier =
  151. {
  152. .notifier_call = cpuid_class_cpu_callback,
  153. };
  154. static int __init cpuid_init(void)
  155. {
  156. int i, err = 0;
  157. i = 0;
  158. if (register_chrdev(CPUID_MAJOR, "cpu/cpuid", &cpuid_fops)) {
  159. printk(KERN_ERR "cpuid: unable to get major %d for cpuid\n",
  160. CPUID_MAJOR);
  161. err = -EBUSY;
  162. goto out;
  163. }
  164. cpuid_class = class_create(THIS_MODULE, "cpuid");
  165. if (IS_ERR(cpuid_class)) {
  166. err = PTR_ERR(cpuid_class);
  167. goto out_chrdev;
  168. }
  169. for_each_online_cpu(i) {
  170. err = cpuid_device_create(i);
  171. if (err != 0)
  172. goto out_class;
  173. }
  174. register_hotcpu_notifier(&cpuid_class_cpu_notifier);
  175. err = 0;
  176. goto out;
  177. out_class:
  178. i = 0;
  179. for_each_online_cpu(i) {
  180. cpuid_device_destroy(i);
  181. }
  182. class_destroy(cpuid_class);
  183. out_chrdev:
  184. unregister_chrdev(CPUID_MAJOR, "cpu/cpuid");
  185. out:
  186. return err;
  187. }
  188. static void __exit cpuid_exit(void)
  189. {
  190. int cpu = 0;
  191. for_each_online_cpu(cpu)
  192. cpuid_device_destroy(cpu);
  193. class_destroy(cpuid_class);
  194. unregister_chrdev(CPUID_MAJOR, "cpu/cpuid");
  195. unregister_hotcpu_notifier(&cpuid_class_cpu_notifier);
  196. }
  197. module_init(cpuid_init);
  198. module_exit(cpuid_exit);
  199. MODULE_AUTHOR("H. Peter Anvin <hpa@zytor.com>");
  200. MODULE_DESCRIPTION("x86 generic CPUID driver");
  201. MODULE_LICENSE("GPL");