microcode.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:12k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * Intel CPU Microcode Update driver for Linux
  3.  *
  4.  * Copyright (C) 2000 Tigran Aivazian
  5.  *
  6.  * This driver allows to upgrade microcode on Intel processors
  7.  * belonging to IA-32 family - PentiumPro, Pentium II, 
  8.  * Pentium III, Xeon, Pentium 4, etc.
  9.  *
  10.  * Reference: Section 8.10 of Volume III, Intel Pentium 4 Manual, 
  11.  * Order Number 245472 or free download from:
  12.  *
  13.  * http://developer.intel.com/design/pentium4/manuals/245472.htm
  14.  *
  15.  * For more information, go to http://www.urbanmyth.org/microcode
  16.  *
  17.  * This program is free software; you can redistribute it and/or
  18.  * modify it under the terms of the GNU General Public License
  19.  * as published by the Free Software Foundation; either version
  20.  * 2 of the License, or (at your option) any later version.
  21.  *
  22.  * 1.0 16 Feb 2000, Tigran Aivazian <tigran@sco.com>
  23.  * Initial release.
  24.  * 1.01 18 Feb 2000, Tigran Aivazian <tigran@sco.com>
  25.  * Added read() support + cleanups.
  26.  * 1.02 21 Feb 2000, Tigran Aivazian <tigran@sco.com>
  27.  * Added 'device trimming' support. open(O_WRONLY) zeroes
  28.  * and frees the saved copy of applied microcode.
  29.  * 1.03 29 Feb 2000, Tigran Aivazian <tigran@sco.com>
  30.  * Made to use devfs (/dev/cpu/microcode) + cleanups.
  31.  * 1.04 06 Jun 2000, Simon Trimmer <simon@veritas.com>
  32.  * Added misc device support (now uses both devfs and misc).
  33.  * Added MICROCODE_IOCFREE ioctl to clear memory.
  34.  * 1.05 09 Jun 2000, Simon Trimmer <simon@veritas.com>
  35.  * Messages for error cases (non intel & no suitable microcode).
  36.  * 1.06 03 Aug 2000, Tigran Aivazian <tigran@veritas.com>
  37.  * Removed ->release(). Removed exclusive open and status bitmap.
  38.  * Added microcode_rwsem to serialize read()/write()/ioctl().
  39.  * Removed global kernel lock usage.
  40.  * 1.07 07 Sep 2000, Tigran Aivazian <tigran@veritas.com>
  41.  * Write 0 to 0x8B msr and then cpuid before reading revision,
  42.  * so that it works even if there were no update done by the
  43.  * BIOS. Otherwise, reading from 0x8B gives junk (which happened
  44.  * to be 0 on my machine which is why it worked even when I
  45.  * disabled update by the BIOS)
  46.  * Thanks to Eric W. Biederman <ebiederman@lnxi.com> for the fix.
  47.  * 1.08 11 Dec 2000, Richard Schaal <richard.schaal@intel.com> and
  48.  *      Tigran Aivazian <tigran@veritas.com>
  49.  * Intel Pentium 4 processor support and bugfixes.
  50.  * 1.09 30 Oct 2001, Tigran Aivazian <tigran@veritas.com>
  51.  * Bugfix for HT (Hyper-Threading) enabled processors
  52.  * whereby processor resources are shared by all logical processors
  53.  * in a single CPU package.
  54.  * 1.10 28 Feb 2002 Asit K Mallick <asit.k.mallick@intel.com> and
  55.  * Tigran Aivazian <tigran@veritas.com>,
  56.  * Serialize updates as required on HT processors due to speculative
  57.  * nature of implementation.
  58.  * 1.11 22 Mar 2001 Tigran Aivazian <tigran@veritas.com>
  59.  * Fix the panic when writing zero-length microcode chunk.
  60.  */
  61. #include <linux/init.h>
  62. #include <linux/sched.h>
  63. #include <linux/module.h>
  64. #include <linux/slab.h>
  65. #include <linux/vmalloc.h>
  66. #include <linux/miscdevice.h>
  67. #include <linux/devfs_fs_kernel.h>
  68. #include <linux/spinlock.h>
  69. #include <asm/msr.h>
  70. #include <asm/uaccess.h>
  71. #include <asm/processor.h>
  72. static spinlock_t microcode_update_lock = SPIN_LOCK_UNLOCKED;
  73. #define MICROCODE_VERSION  "1.11"
  74. MODULE_DESCRIPTION("Intel CPU (IA-32) microcode update driver");
  75. MODULE_AUTHOR("Tigran Aivazian <tigran@veritas.com>");
  76. MODULE_LICENSE("GPL");
  77. EXPORT_NO_SYMBOLS;
  78. #define MICRO_DEBUG 0
  79. #if MICRO_DEBUG
  80. #define printf(x...) printk(##x)
  81. #else
  82. #define printf(x...)
  83. #endif
  84. /* VFS interface */
  85. static int microcode_open(struct inode *, struct file *);
  86. static ssize_t microcode_read(struct file *, char *, size_t, loff_t *);
  87. static ssize_t microcode_write(struct file *, const char *, size_t, loff_t *);
  88. static int microcode_ioctl(struct inode *, struct file *, unsigned int, unsigned long);
  89. static int do_microcode_update(void);
  90. static void do_update_one(void *);
  91. /* read()/write()/ioctl() are serialized on this */
  92. static DECLARE_RWSEM(microcode_rwsem);
  93. static struct microcode *microcode; /* array of 2048byte microcode blocks */
  94. static unsigned int microcode_num;  /* number of chunks in microcode */
  95. static char *mc_applied;            /* array of applied microcode blocks */
  96. static unsigned int mc_fsize;       /* file size of /dev/cpu/microcode */
  97. /* we share file_operations between misc and devfs mechanisms */
  98. static struct file_operations microcode_fops = {
  99. owner: THIS_MODULE,
  100. read: microcode_read,
  101. write: microcode_write,
  102. ioctl: microcode_ioctl,
  103. open: microcode_open,
  104. };
  105. static struct miscdevice microcode_dev = {
  106. minor: MICROCODE_MINOR,
  107. name: "microcode",
  108. fops: &microcode_fops,
  109. };
  110. static devfs_handle_t devfs_handle;
  111. static int __init microcode_init(void)
  112. {
  113. int error;
  114. error = misc_register(&microcode_dev);
  115. if (error)
  116. printk(KERN_WARNING 
  117. "microcode: can't misc_register on minor=%dn",
  118. MICROCODE_MINOR);
  119. devfs_handle = devfs_register(NULL, "cpu/microcode",
  120. DEVFS_FL_DEFAULT, 0, 0, S_IFREG | S_IRUSR | S_IWUSR, 
  121. &microcode_fops, NULL);
  122. if (devfs_handle == NULL && error) {
  123. printk(KERN_ERR "microcode: failed to devfs_register()n");
  124. goto out;
  125. }
  126. error = 0;
  127. printk(KERN_INFO 
  128. "IA-32 Microcode Update Driver: v%s <tigran@veritas.com>n", 
  129. MICROCODE_VERSION);
  130. out:
  131. return error;
  132. }
  133. static void __exit microcode_exit(void)
  134. {
  135. misc_deregister(&microcode_dev);
  136. devfs_unregister(devfs_handle);
  137. if (mc_applied)
  138. kfree(mc_applied);
  139. printk(KERN_INFO "IA-32 Microcode Update Driver v%s unregisteredn", 
  140. MICROCODE_VERSION);
  141. }
  142. module_init(microcode_init)
  143. module_exit(microcode_exit)
  144. static int microcode_open(struct inode *unused1, struct file *unused2)
  145. {
  146. return capable(CAP_SYS_RAWIO) ? 0 : -EPERM;
  147. }
  148. /*
  149.  * update_req[cpu].err is set to 1 if update failed on 'cpu', 0 otherwise
  150.  * if err==0, microcode[update_req[cpu].slot] points to applied block of microcode
  151.  */
  152. struct update_req {
  153. int err;
  154. int slot;
  155. } update_req[NR_CPUS];
  156. static int do_microcode_update(void)
  157. {
  158. int i, error = 0, err;
  159. struct microcode *m;
  160. if (smp_call_function(do_update_one, NULL, 1, 1) != 0) {
  161. printk(KERN_ERR "microcode: IPI timeout, giving upn");
  162. return -EIO;
  163. }
  164. do_update_one(NULL);
  165. for (i=0; i<smp_num_cpus; i++) {
  166. err = update_req[i].err;
  167. error += err;
  168. if (!err) {
  169. m = (struct microcode *)mc_applied + i;
  170. memcpy(m, &microcode[update_req[i].slot], sizeof(struct microcode));
  171. }
  172. }
  173. return error;
  174. }
  175. static void do_update_one(void *unused)
  176. {
  177. int cpu_num = smp_processor_id();
  178. struct cpuinfo_x86 *c = cpu_data + cpu_num;
  179. struct update_req *req = update_req + cpu_num;
  180. unsigned int pf = 0, val[2], rev, sig;
  181. unsigned long flags;
  182. int i;
  183. req->err = 1; /* assume update will fail on this cpu */
  184. if (c->x86_vendor != X86_VENDOR_INTEL || c->x86 < 6 ||
  185. test_bit(X86_FEATURE_IA64, &c->x86_capability)){
  186. printk(KERN_ERR "microcode: CPU%d not a capable Intel processorn", cpu_num);
  187. return;
  188. }
  189. sig = c->x86_mask + (c->x86_model<<4) + (c->x86<<8);
  190. if ((c->x86_model >= 5) || (c->x86 > 6)) {
  191. /* get processor flags from MSR 0x17 */
  192. rdmsr(MSR_IA32_PLATFORM_ID, val[0], val[1]);
  193. pf = 1 << ((val[1] >> 18) & 7);
  194. }
  195. for (i=0; i<microcode_num; i++)
  196. if (microcode[i].sig == sig && microcode[i].pf == pf &&
  197.     microcode[i].ldrver == 1 && microcode[i].hdrver == 1) {
  198. int sum = 0;
  199. struct microcode *m = &microcode[i];
  200. unsigned int *sump = (unsigned int *)(m+1);
  201. printf("Microcoden");
  202. printf("   Header Revision %dn",microcode[i].hdrver);
  203. printf("   Date %x/%x/%xn",
  204. ((microcode[i].date >> 24 ) & 0xff),
  205. ((microcode[i].date >> 16 ) & 0xff),
  206. (microcode[i].date & 0xFFFF));
  207. printf("   Type %x Family %x Model %x Stepping %xn",
  208. ((microcode[i].sig >> 12) & 0x3),
  209. ((microcode[i].sig >> 8) & 0xf),
  210. ((microcode[i].sig >> 4) & 0xf),
  211. ((microcode[i].sig & 0xf)));
  212. printf("   Checksum %xn",microcode[i].cksum);
  213. printf("   Loader Revision %xn",microcode[i].ldrver);
  214. printf("   Processor Flags %xnn",microcode[i].pf);
  215. req->slot = i;
  216. /* serialize access to update decision */
  217. spin_lock_irqsave(&microcode_update_lock, flags);          
  218. /* trick, to work even if there was no prior update by the BIOS */
  219. wrmsr(MSR_IA32_UCODE_REV, 0, 0);
  220. __asm__ __volatile__ ("cpuid" : : : "ax", "bx", "cx", "dx");
  221. /* get current (on-cpu) revision into rev (ignore val[0]) */
  222. rdmsr(MSR_IA32_UCODE_REV, val[0], rev);
  223. if (microcode[i].rev < rev) {
  224. spin_unlock_irqrestore(&microcode_update_lock, flags);
  225. printk(KERN_ERR 
  226.        "microcode: CPU%d not 'upgrading' to earlier revision"
  227.        " %d (current=%d)n", cpu_num, microcode[i].rev, rev);
  228. return;
  229. } else if (microcode[i].rev == rev) {
  230. /* notify the caller of success on this cpu */
  231. req->err = 0;
  232. spin_unlock_irqrestore(&microcode_update_lock, flags);
  233. printk(KERN_ERR 
  234. "microcode: CPU%d already at revision"
  235. " %d (current=%d)n", cpu_num, microcode[i].rev, rev);
  236. return;
  237. }
  238. /* Verify the checksum */
  239. while (--sump >= (unsigned int *)m)
  240. sum += *sump;
  241. if (sum != 0) {
  242. req->err = 1;
  243. spin_unlock_irqrestore(&microcode_update_lock, flags);
  244. printk(KERN_ERR "microcode: CPU%d aborting, "
  245.        "bad checksumn", cpu_num);
  246. return;
  247. }
  248. /* write microcode via MSR 0x79 */
  249. wrmsr(MSR_IA32_UCODE_WRITE, (unsigned int)(m->bits), 0);
  250. /* serialize */
  251. __asm__ __volatile__ ("cpuid" : : : "ax", "bx", "cx", "dx");
  252. /* get the current revision from MSR 0x8B */
  253. rdmsr(MSR_IA32_UCODE_REV, val[0], val[1]);
  254. /* notify the caller of success on this cpu */
  255. req->err = 0;
  256. spin_unlock_irqrestore(&microcode_update_lock, flags);
  257. printk(KERN_INFO "microcode: CPU%d updated from revision "
  258.        "%d to %d, date=%08xn", 
  259.        cpu_num, rev, val[1], microcode[i].date);
  260. return;
  261. }
  262. printk(KERN_ERR
  263.        "microcode: CPU%d no microcode found! (sig=%x, pflags=%d)n", 
  264.        cpu_num, sig, pf);
  265. }
  266. static ssize_t microcode_read(struct file *file, char *buf, size_t len, loff_t *ppos)
  267. {
  268. ssize_t ret = 0;
  269. down_read(&microcode_rwsem);
  270. if (*ppos >= mc_fsize)
  271. goto out;
  272. if (*ppos + len > mc_fsize)
  273. len = mc_fsize - *ppos;
  274. ret = -EFAULT;
  275. if (copy_to_user(buf, mc_applied + *ppos, len))
  276. goto out;
  277. *ppos += len;
  278. ret = len;
  279. out:
  280. up_read(&microcode_rwsem);
  281. return ret;
  282. }
  283. static ssize_t microcode_write(struct file *file, const char *buf, size_t len, loff_t *ppos)
  284. {
  285. ssize_t ret;
  286. if (!len || len % sizeof(struct microcode) != 0) {
  287. printk(KERN_ERR "microcode: can only write in N*%d bytes unitsn", 
  288. sizeof(struct microcode));
  289. return -EINVAL;
  290. }
  291. if ((len >> PAGE_SHIFT) > num_physpages) {
  292. printk(KERN_ERR "microcode: too much data (max %ld pages)n", num_physpages);
  293. return -EINVAL;
  294. }
  295. down_write(&microcode_rwsem);
  296. if (!mc_applied) {
  297. mc_applied = kmalloc(smp_num_cpus*sizeof(struct microcode),
  298. GFP_KERNEL);
  299. if (!mc_applied) {
  300. up_write(&microcode_rwsem);
  301. printk(KERN_ERR "microcode: out of memory for saved microcoden");
  302. return -ENOMEM;
  303. }
  304. }
  305. microcode_num = len/sizeof(struct microcode);
  306. microcode = vmalloc(len);
  307. if (!microcode) {
  308. ret = -ENOMEM;
  309. goto out_unlock;
  310. }
  311. if (copy_from_user(microcode, buf, len)) {
  312. ret = -EFAULT;
  313. goto out_fsize;
  314. }
  315. if(do_microcode_update()) {
  316. ret = -EIO;
  317. goto out_fsize;
  318. } else {
  319. mc_fsize = smp_num_cpus * sizeof(struct microcode);
  320. ret = (ssize_t)len;
  321. }
  322. out_fsize:
  323. devfs_set_file_size(devfs_handle, mc_fsize);
  324. vfree(microcode);
  325. out_unlock:
  326. up_write(&microcode_rwsem);
  327. return ret;
  328. }
  329. static int microcode_ioctl(struct inode *inode, struct file *file, 
  330. unsigned int cmd, unsigned long arg)
  331. {
  332. switch(cmd) {
  333. case MICROCODE_IOCFREE:
  334. down_write(&microcode_rwsem);
  335. if (mc_applied) {
  336. int bytes = smp_num_cpus * sizeof(struct microcode);
  337. devfs_set_file_size(devfs_handle, 0);
  338. kfree(mc_applied);
  339. mc_applied = NULL;
  340. printk(KERN_INFO "microcode: freed %d bytesn", bytes);
  341. mc_fsize = 0;
  342. up_write(&microcode_rwsem);
  343. return 0;
  344. }
  345. up_write(&microcode_rwsem);
  346. return -ENODATA;
  347. default:
  348. printk(KERN_ERR "microcode: unknown ioctl cmd=%dn", cmd);
  349. return -EINVAL;
  350. }
  351. return -EINVAL;
  352. }