Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 1 | /* |
| 2 | * AMD CPU Microcode Update Driver for Linux |
| 3 | * Copyright (C) 2008 Advanced Micro Devices Inc. |
| 4 | * |
| 5 | * Author: Peter Oruba <peter.oruba@amd.com> |
| 6 | * |
| 7 | * Based on work by: |
| 8 | * Tigran Aivazian <tigran@aivazian.fsnet.co.uk> |
| 9 | * |
| 10 | * This driver allows to upgrade microcode on AMD |
| 11 | * family 0x10 and 0x11 processors. |
| 12 | * |
Andreas Herrmann | 2a3282a7 | 2008-12-16 19:08:53 +0100 | [diff] [blame] | 13 | * Licensed under the terms of the GNU General Public |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 14 | * License version 2. See file COPYING for details. |
| 15 | */ |
| 16 | |
| 17 | #include <linux/capability.h> |
| 18 | #include <linux/kernel.h> |
| 19 | #include <linux/init.h> |
| 20 | #include <linux/sched.h> |
| 21 | #include <linux/cpumask.h> |
| 22 | #include <linux/module.h> |
| 23 | #include <linux/slab.h> |
| 24 | #include <linux/vmalloc.h> |
| 25 | #include <linux/miscdevice.h> |
| 26 | #include <linux/spinlock.h> |
| 27 | #include <linux/mm.h> |
| 28 | #include <linux/fs.h> |
| 29 | #include <linux/mutex.h> |
| 30 | #include <linux/cpu.h> |
| 31 | #include <linux/firmware.h> |
| 32 | #include <linux/platform_device.h> |
| 33 | #include <linux/pci.h> |
| 34 | #include <linux/pci_ids.h> |
Andreas Herrmann | be95776 | 2008-12-16 19:11:23 +0100 | [diff] [blame] | 35 | #include <linux/uaccess.h> |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 36 | |
| 37 | #include <asm/msr.h> |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 38 | #include <asm/processor.h> |
| 39 | #include <asm/microcode.h> |
| 40 | |
| 41 | MODULE_DESCRIPTION("AMD Microcode Update Driver"); |
Peter Oruba | 3c52204 | 2008-10-17 15:30:38 +0200 | [diff] [blame] | 42 | MODULE_AUTHOR("Peter Oruba"); |
Ingo Molnar | 5d7b605 | 2008-07-29 10:07:36 +0200 | [diff] [blame] | 43 | MODULE_LICENSE("GPL v2"); |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 44 | |
| 45 | #define UCODE_MAGIC 0x00414d44 |
| 46 | #define UCODE_EQUIV_CPU_TABLE_TYPE 0x00000000 |
| 47 | #define UCODE_UCODE_TYPE 0x00000001 |
| 48 | |
Dmitry Adamushko | 18dbc91 | 2008-09-23 12:08:44 +0200 | [diff] [blame] | 49 | struct equiv_cpu_entry { |
| 50 | unsigned int installed_cpu; |
| 51 | unsigned int fixed_errata_mask; |
| 52 | unsigned int fixed_errata_compare; |
| 53 | unsigned int equiv_cpu; |
| 54 | }; |
| 55 | |
| 56 | struct microcode_header_amd { |
| 57 | unsigned int data_code; |
| 58 | unsigned int patch_id; |
| 59 | unsigned char mc_patch_data_id[2]; |
| 60 | unsigned char mc_patch_data_len; |
| 61 | unsigned char init_flag; |
| 62 | unsigned int mc_patch_data_checksum; |
| 63 | unsigned int nb_dev_id; |
| 64 | unsigned int sb_dev_id; |
Andreas Herrmann | 3c763fd | 2008-12-16 19:07:47 +0100 | [diff] [blame] | 65 | u16 processor_rev_id; |
Dmitry Adamushko | 18dbc91 | 2008-09-23 12:08:44 +0200 | [diff] [blame] | 66 | unsigned char nb_rev_id; |
| 67 | unsigned char sb_rev_id; |
| 68 | unsigned char bios_api_rev; |
| 69 | unsigned char reserved1[3]; |
| 70 | unsigned int match_reg[8]; |
| 71 | }; |
| 72 | |
| 73 | struct microcode_amd { |
| 74 | struct microcode_header_amd hdr; |
| 75 | unsigned int mpb[0]; |
| 76 | }; |
| 77 | |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 78 | #define UCODE_MAX_SIZE (2048) |
Peter Oruba | a0ac87d | 2008-07-29 17:41:04 +0200 | [diff] [blame] | 79 | #define DEFAULT_UCODE_DATASIZE (896) |
| 80 | #define MC_HEADER_SIZE (sizeof(struct microcode_header_amd)) |
| 81 | #define DEFAULT_UCODE_TOTALSIZE (DEFAULT_UCODE_DATASIZE + MC_HEADER_SIZE) |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 82 | #define DWSIZE (sizeof(u32)) |
| 83 | /* For now we support a fixed ucode total size only */ |
| 84 | #define get_totalsize(mc) \ |
| 85 | ((((struct microcode_amd *)mc)->hdr.mc_patch_data_len * 28) \ |
| 86 | + MC_HEADER_SIZE) |
| 87 | |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 88 | /* serialize access to the physical write */ |
| 89 | static DEFINE_SPINLOCK(microcode_update_lock); |
| 90 | |
Dmitry Adamushko | a0a29b6 | 2008-09-11 23:27:52 +0200 | [diff] [blame] | 91 | static struct equiv_cpu_entry *equiv_cpu_table; |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 92 | |
Dmitry Adamushko | d45de40 | 2008-08-20 00:22:26 +0200 | [diff] [blame] | 93 | static int collect_cpu_info_amd(int cpu, struct cpu_signature *csig) |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 94 | { |
| 95 | struct cpuinfo_x86 *c = &cpu_data(cpu); |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 96 | |
Dmitry Adamushko | d45de40 | 2008-08-20 00:22:26 +0200 | [diff] [blame] | 97 | memset(csig, 0, sizeof(*csig)); |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 98 | |
| 99 | if (c->x86_vendor != X86_VENDOR_AMD || c->x86 < 0x10) { |
| 100 | printk(KERN_ERR "microcode: CPU%d not a capable AMD processor\n", |
| 101 | cpu); |
Dmitry Adamushko | d45de40 | 2008-08-20 00:22:26 +0200 | [diff] [blame] | 102 | return -1; |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 103 | } |
| 104 | |
| 105 | asm volatile("movl %1, %%ecx; rdmsr" |
Dmitry Adamushko | d45de40 | 2008-08-20 00:22:26 +0200 | [diff] [blame] | 106 | : "=a" (csig->rev) |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 107 | : "i" (0x0000008B) : "ecx"); |
| 108 | |
| 109 | printk(KERN_INFO "microcode: collect_cpu_info_amd : patch_id=0x%x\n", |
Dmitry Adamushko | d45de40 | 2008-08-20 00:22:26 +0200 | [diff] [blame] | 110 | csig->rev); |
| 111 | |
| 112 | return 0; |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 113 | } |
| 114 | |
Dmitry Adamushko | a0a29b6 | 2008-09-11 23:27:52 +0200 | [diff] [blame] | 115 | static int get_matching_microcode(int cpu, void *mc, int rev) |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 116 | { |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 117 | struct microcode_header_amd *mc_header = mc; |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 118 | struct pci_dev *nb_pci_dev, *sb_pci_dev; |
| 119 | unsigned int current_cpu_id; |
| 120 | unsigned int equiv_cpu_id = 0x00; |
| 121 | unsigned int i = 0; |
| 122 | |
Dmitry Adamushko | a0a29b6 | 2008-09-11 23:27:52 +0200 | [diff] [blame] | 123 | BUG_ON(equiv_cpu_table == NULL); |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 124 | current_cpu_id = cpuid_eax(0x00000001); |
| 125 | |
| 126 | while (equiv_cpu_table[i].installed_cpu != 0) { |
| 127 | if (current_cpu_id == equiv_cpu_table[i].installed_cpu) { |
Andreas Herrmann | 3c763fd | 2008-12-16 19:07:47 +0100 | [diff] [blame] | 128 | equiv_cpu_id = equiv_cpu_table[i].equiv_cpu & 0xffff; |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 129 | break; |
| 130 | } |
| 131 | i++; |
| 132 | } |
| 133 | |
| 134 | if (!equiv_cpu_id) { |
| 135 | printk(KERN_ERR "microcode: CPU%d cpu_id " |
Andreas Herrmann | 2a3282a7 | 2008-12-16 19:08:53 +0100 | [diff] [blame] | 136 | "not found in equivalent cpu table\n", cpu); |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 137 | return 0; |
| 138 | } |
| 139 | |
Andreas Herrmann | 3c763fd | 2008-12-16 19:07:47 +0100 | [diff] [blame] | 140 | if (mc_header->processor_rev_id != equiv_cpu_id) { |
| 141 | printk(KERN_ERR "microcode: CPU%d patch does not match " |
| 142 | "(processor_rev_id: %x, eqiv_cpu_id: %x)\n", |
| 143 | cpu, mc_header->processor_rev_id, equiv_cpu_id); |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 144 | return 0; |
| 145 | } |
| 146 | |
| 147 | /* ucode may be northbridge specific */ |
| 148 | if (mc_header->nb_dev_id) { |
| 149 | nb_pci_dev = pci_get_device(PCI_VENDOR_ID_AMD, |
| 150 | (mc_header->nb_dev_id & 0xff), |
| 151 | NULL); |
| 152 | if ((!nb_pci_dev) || |
| 153 | (mc_header->nb_rev_id != nb_pci_dev->revision)) { |
Andreas Herrmann | 2a3282a7 | 2008-12-16 19:08:53 +0100 | [diff] [blame] | 154 | printk(KERN_ERR "microcode: CPU%d NB mismatch\n", cpu); |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 155 | pci_dev_put(nb_pci_dev); |
| 156 | return 0; |
| 157 | } |
| 158 | pci_dev_put(nb_pci_dev); |
| 159 | } |
| 160 | |
| 161 | /* ucode may be southbridge specific */ |
| 162 | if (mc_header->sb_dev_id) { |
| 163 | sb_pci_dev = pci_get_device(PCI_VENDOR_ID_AMD, |
| 164 | (mc_header->sb_dev_id & 0xff), |
| 165 | NULL); |
| 166 | if ((!sb_pci_dev) || |
| 167 | (mc_header->sb_rev_id != sb_pci_dev->revision)) { |
Andreas Herrmann | 2a3282a7 | 2008-12-16 19:08:53 +0100 | [diff] [blame] | 168 | printk(KERN_ERR "microcode: CPU%d SB mismatch\n", cpu); |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 169 | pci_dev_put(sb_pci_dev); |
| 170 | return 0; |
| 171 | } |
| 172 | pci_dev_put(sb_pci_dev); |
| 173 | } |
| 174 | |
Dmitry Adamushko | a0a29b6 | 2008-09-11 23:27:52 +0200 | [diff] [blame] | 175 | if (mc_header->patch_id <= rev) |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 176 | return 0; |
| 177 | |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 178 | return 1; |
| 179 | } |
| 180 | |
| 181 | static void apply_microcode_amd(int cpu) |
| 182 | { |
| 183 | unsigned long flags; |
| 184 | unsigned int eax, edx; |
| 185 | unsigned int rev; |
| 186 | int cpu_num = raw_smp_processor_id(); |
| 187 | struct ucode_cpu_info *uci = ucode_cpu_info + cpu_num; |
Dmitry Adamushko | 18dbc91 | 2008-09-23 12:08:44 +0200 | [diff] [blame] | 188 | struct microcode_amd *mc_amd = uci->mc; |
Randy Dunlap | 5b792d3 | 2008-08-21 13:43:51 -0700 | [diff] [blame] | 189 | unsigned long addr; |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 190 | |
| 191 | /* We should bind the task to the CPU */ |
| 192 | BUG_ON(cpu_num != cpu); |
| 193 | |
Dmitry Adamushko | 18dbc91 | 2008-09-23 12:08:44 +0200 | [diff] [blame] | 194 | if (mc_amd == NULL) |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 195 | return; |
| 196 | |
| 197 | spin_lock_irqsave(µcode_update_lock, flags); |
| 198 | |
Dmitry Adamushko | 18dbc91 | 2008-09-23 12:08:44 +0200 | [diff] [blame] | 199 | addr = (unsigned long)&mc_amd->hdr.data_code; |
Randy Dunlap | 5b792d3 | 2008-08-21 13:43:51 -0700 | [diff] [blame] | 200 | edx = (unsigned int)(((unsigned long)upper_32_bits(addr))); |
| 201 | eax = (unsigned int)(((unsigned long)lower_32_bits(addr))); |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 202 | |
| 203 | asm volatile("movl %0, %%ecx; wrmsr" : |
| 204 | : "i" (0xc0010020), "a" (eax), "d" (edx) : "ecx"); |
| 205 | |
| 206 | /* get patch id after patching */ |
| 207 | asm volatile("movl %1, %%ecx; rdmsr" |
| 208 | : "=a" (rev) |
| 209 | : "i" (0x0000008B) : "ecx"); |
| 210 | |
| 211 | spin_unlock_irqrestore(µcode_update_lock, flags); |
| 212 | |
| 213 | /* check current patch id and patch's id for match */ |
Dmitry Adamushko | 18dbc91 | 2008-09-23 12:08:44 +0200 | [diff] [blame] | 214 | if (rev != mc_amd->hdr.patch_id) { |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 215 | printk(KERN_ERR "microcode: CPU%d update from revision " |
| 216 | "0x%x to 0x%x failed\n", cpu_num, |
Dmitry Adamushko | 18dbc91 | 2008-09-23 12:08:44 +0200 | [diff] [blame] | 217 | mc_amd->hdr.patch_id, rev); |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 218 | return; |
| 219 | } |
| 220 | |
| 221 | printk(KERN_INFO "microcode: CPU%d updated from revision " |
Andreas Herrmann | 2a3282a7 | 2008-12-16 19:08:53 +0100 | [diff] [blame] | 222 | "0x%x to 0x%x\n", |
Dmitry Adamushko | 18dbc91 | 2008-09-23 12:08:44 +0200 | [diff] [blame] | 223 | cpu_num, uci->cpu_sig.rev, mc_amd->hdr.patch_id); |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 224 | |
Dmitry Adamushko | d45de40 | 2008-08-20 00:22:26 +0200 | [diff] [blame] | 225 | uci->cpu_sig.rev = rev; |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 226 | } |
| 227 | |
Andreas Herrmann | 0657d9e | 2008-12-16 19:14:05 +0100 | [diff] [blame^] | 228 | static int get_ucode_data(void *to, const u8 *from, size_t n) |
| 229 | { |
| 230 | memcpy(to, from, n); |
| 231 | return 0; |
| 232 | } |
| 233 | |
Andreas Herrmann | 8c13520 | 2008-12-16 19:13:00 +0100 | [diff] [blame] | 234 | static void *get_next_ucode(const u8 *buf, unsigned int size, |
Andreas Herrmann | 0657d9e | 2008-12-16 19:14:05 +0100 | [diff] [blame^] | 235 | unsigned int *mc_size) |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 236 | { |
Dmitry Adamushko | a0a29b6 | 2008-09-11 23:27:52 +0200 | [diff] [blame] | 237 | unsigned int total_size; |
Peter Oruba | d473879 | 2008-09-17 15:39:18 +0200 | [diff] [blame] | 238 | #define UCODE_CONTAINER_SECTION_HDR 8 |
| 239 | u8 section_hdr[UCODE_CONTAINER_SECTION_HDR]; |
Dmitry Adamushko | a0a29b6 | 2008-09-11 23:27:52 +0200 | [diff] [blame] | 240 | void *mc; |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 241 | |
Peter Oruba | d473879 | 2008-09-17 15:39:18 +0200 | [diff] [blame] | 242 | if (get_ucode_data(section_hdr, buf, UCODE_CONTAINER_SECTION_HDR)) |
Dmitry Adamushko | a0a29b6 | 2008-09-11 23:27:52 +0200 | [diff] [blame] | 243 | return NULL; |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 244 | |
Peter Oruba | d473879 | 2008-09-17 15:39:18 +0200 | [diff] [blame] | 245 | if (section_hdr[0] != UCODE_UCODE_TYPE) { |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 246 | printk(KERN_ERR "microcode: error! " |
| 247 | "Wrong microcode payload type field\n"); |
Dmitry Adamushko | a0a29b6 | 2008-09-11 23:27:52 +0200 | [diff] [blame] | 248 | return NULL; |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 249 | } |
| 250 | |
Peter Oruba | d473879 | 2008-09-17 15:39:18 +0200 | [diff] [blame] | 251 | total_size = (unsigned long) (section_hdr[4] + (section_hdr[5] << 8)); |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 252 | |
Dmitry Adamushko | a0a29b6 | 2008-09-11 23:27:52 +0200 | [diff] [blame] | 253 | printk(KERN_INFO "microcode: size %u, total_size %u\n", |
| 254 | size, total_size); |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 255 | |
Dmitry Adamushko | a0a29b6 | 2008-09-11 23:27:52 +0200 | [diff] [blame] | 256 | if (total_size > size || total_size > UCODE_MAX_SIZE) { |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 257 | printk(KERN_ERR "microcode: error! Bad data in microcode data file\n"); |
Dmitry Adamushko | a0a29b6 | 2008-09-11 23:27:52 +0200 | [diff] [blame] | 258 | return NULL; |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 259 | } |
| 260 | |
Dmitry Adamushko | a0a29b6 | 2008-09-11 23:27:52 +0200 | [diff] [blame] | 261 | mc = vmalloc(UCODE_MAX_SIZE); |
| 262 | if (mc) { |
| 263 | memset(mc, 0, UCODE_MAX_SIZE); |
Andreas Herrmann | be95776 | 2008-12-16 19:11:23 +0100 | [diff] [blame] | 264 | if (get_ucode_data(mc, buf + UCODE_CONTAINER_SECTION_HDR, |
| 265 | total_size)) { |
Dmitry Adamushko | a0a29b6 | 2008-09-11 23:27:52 +0200 | [diff] [blame] | 266 | vfree(mc); |
| 267 | mc = NULL; |
| 268 | } else |
Peter Oruba | d473879 | 2008-09-17 15:39:18 +0200 | [diff] [blame] | 269 | *mc_size = total_size + UCODE_CONTAINER_SECTION_HDR; |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 270 | } |
Peter Oruba | d473879 | 2008-09-17 15:39:18 +0200 | [diff] [blame] | 271 | #undef UCODE_CONTAINER_SECTION_HDR |
Dmitry Adamushko | a0a29b6 | 2008-09-11 23:27:52 +0200 | [diff] [blame] | 272 | return mc; |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 273 | } |
| 274 | |
Dmitry Adamushko | a0a29b6 | 2008-09-11 23:27:52 +0200 | [diff] [blame] | 275 | |
Andreas Herrmann | 0657d9e | 2008-12-16 19:14:05 +0100 | [diff] [blame^] | 276 | static int install_equiv_cpu_table(const u8 *buf) |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 277 | { |
Peter Oruba | b6cffde | 2008-09-17 15:05:52 +0200 | [diff] [blame] | 278 | #define UCODE_CONTAINER_HEADER_SIZE 12 |
| 279 | u8 *container_hdr[UCODE_CONTAINER_HEADER_SIZE]; |
| 280 | unsigned int *buf_pos = (unsigned int *)container_hdr; |
Dmitry Adamushko | a0a29b6 | 2008-09-11 23:27:52 +0200 | [diff] [blame] | 281 | unsigned long size; |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 282 | |
Peter Oruba | b6cffde | 2008-09-17 15:05:52 +0200 | [diff] [blame] | 283 | if (get_ucode_data(&container_hdr, buf, UCODE_CONTAINER_HEADER_SIZE)) |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 284 | return 0; |
| 285 | |
Dmitry Adamushko | a0a29b6 | 2008-09-11 23:27:52 +0200 | [diff] [blame] | 286 | size = buf_pos[2]; |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 287 | |
Dmitry Adamushko | a0a29b6 | 2008-09-11 23:27:52 +0200 | [diff] [blame] | 288 | if (buf_pos[1] != UCODE_EQUIV_CPU_TABLE_TYPE || !size) { |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 289 | printk(KERN_ERR "microcode: error! " |
Andreas Herrmann | 2a3282a7 | 2008-12-16 19:08:53 +0100 | [diff] [blame] | 290 | "Wrong microcode equivalent cpu table\n"); |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 291 | return 0; |
| 292 | } |
| 293 | |
| 294 | equiv_cpu_table = (struct equiv_cpu_entry *) vmalloc(size); |
| 295 | if (!equiv_cpu_table) { |
| 296 | printk(KERN_ERR "microcode: error, can't allocate memory for equiv CPU table\n"); |
| 297 | return 0; |
| 298 | } |
| 299 | |
Peter Oruba | b6cffde | 2008-09-17 15:05:52 +0200 | [diff] [blame] | 300 | buf += UCODE_CONTAINER_HEADER_SIZE; |
Dmitry Adamushko | a0a29b6 | 2008-09-11 23:27:52 +0200 | [diff] [blame] | 301 | if (get_ucode_data(equiv_cpu_table, buf, size)) { |
| 302 | vfree(equiv_cpu_table); |
| 303 | return 0; |
| 304 | } |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 305 | |
Peter Oruba | b6cffde | 2008-09-17 15:05:52 +0200 | [diff] [blame] | 306 | return size + UCODE_CONTAINER_HEADER_SIZE; /* add header length */ |
| 307 | #undef UCODE_CONTAINER_HEADER_SIZE |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 308 | } |
| 309 | |
Dmitry Adamushko | a0a29b6 | 2008-09-11 23:27:52 +0200 | [diff] [blame] | 310 | static void free_equiv_cpu_table(void) |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 311 | { |
Dmitry Adamushko | a0a29b6 | 2008-09-11 23:27:52 +0200 | [diff] [blame] | 312 | if (equiv_cpu_table) { |
| 313 | vfree(equiv_cpu_table); |
| 314 | equiv_cpu_table = NULL; |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 315 | } |
Dmitry Adamushko | a0a29b6 | 2008-09-11 23:27:52 +0200 | [diff] [blame] | 316 | } |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 317 | |
Andreas Herrmann | 0657d9e | 2008-12-16 19:14:05 +0100 | [diff] [blame^] | 318 | static int generic_load_microcode(int cpu, const u8 *data, size_t size) |
Dmitry Adamushko | a0a29b6 | 2008-09-11 23:27:52 +0200 | [diff] [blame] | 319 | { |
| 320 | struct ucode_cpu_info *uci = ucode_cpu_info + cpu; |
Andreas Herrmann | 8c13520 | 2008-12-16 19:13:00 +0100 | [diff] [blame] | 321 | const u8 *ucode_ptr = data; |
| 322 | void *new_mc = NULL; |
| 323 | void *mc; |
Dmitry Adamushko | a0a29b6 | 2008-09-11 23:27:52 +0200 | [diff] [blame] | 324 | int new_rev = uci->cpu_sig.rev; |
| 325 | unsigned int leftover; |
| 326 | unsigned long offset; |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 327 | |
Andreas Herrmann | 0657d9e | 2008-12-16 19:14:05 +0100 | [diff] [blame^] | 328 | offset = install_equiv_cpu_table(ucode_ptr); |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 329 | if (!offset) { |
| 330 | printk(KERN_ERR "microcode: installing equivalent cpu table failed\n"); |
| 331 | return -EINVAL; |
| 332 | } |
| 333 | |
Dmitry Adamushko | a0a29b6 | 2008-09-11 23:27:52 +0200 | [diff] [blame] | 334 | ucode_ptr += offset; |
| 335 | leftover = size - offset; |
| 336 | |
| 337 | while (leftover) { |
Dmitry Adamushko | 2f9284e | 2008-09-23 22:56:35 +0200 | [diff] [blame] | 338 | unsigned int uninitialized_var(mc_size); |
Dmitry Adamushko | a0a29b6 | 2008-09-11 23:27:52 +0200 | [diff] [blame] | 339 | struct microcode_header_amd *mc_header; |
| 340 | |
Andreas Herrmann | 0657d9e | 2008-12-16 19:14:05 +0100 | [diff] [blame^] | 341 | mc = get_next_ucode(ucode_ptr, leftover, &mc_size); |
Dmitry Adamushko | a0a29b6 | 2008-09-11 23:27:52 +0200 | [diff] [blame] | 342 | if (!mc) |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 343 | break; |
Dmitry Adamushko | a0a29b6 | 2008-09-11 23:27:52 +0200 | [diff] [blame] | 344 | |
| 345 | mc_header = (struct microcode_header_amd *)mc; |
| 346 | if (get_matching_microcode(cpu, mc, new_rev)) { |
Ingo Molnar | a1c75cc | 2008-09-14 14:50:26 +0200 | [diff] [blame] | 347 | if (new_mc) |
| 348 | vfree(new_mc); |
Dmitry Adamushko | a0a29b6 | 2008-09-11 23:27:52 +0200 | [diff] [blame] | 349 | new_rev = mc_header->patch_id; |
| 350 | new_mc = mc; |
Andreas Herrmann | be95776 | 2008-12-16 19:11:23 +0100 | [diff] [blame] | 351 | } else |
Dmitry Adamushko | a0a29b6 | 2008-09-11 23:27:52 +0200 | [diff] [blame] | 352 | vfree(mc); |
| 353 | |
| 354 | ucode_ptr += mc_size; |
| 355 | leftover -= mc_size; |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 356 | } |
Dmitry Adamushko | a0a29b6 | 2008-09-11 23:27:52 +0200 | [diff] [blame] | 357 | |
| 358 | if (new_mc) { |
| 359 | if (!leftover) { |
Dmitry Adamushko | 18dbc91 | 2008-09-23 12:08:44 +0200 | [diff] [blame] | 360 | if (uci->mc) |
| 361 | vfree(uci->mc); |
| 362 | uci->mc = new_mc; |
Andreas Herrmann | be95776 | 2008-12-16 19:11:23 +0100 | [diff] [blame] | 363 | pr_debug("microcode: CPU%d found a matching microcode " |
| 364 | "update with version 0x%x (current=0x%x)\n", |
| 365 | cpu, new_rev, uci->cpu_sig.rev); |
Dmitry Adamushko | a0a29b6 | 2008-09-11 23:27:52 +0200 | [diff] [blame] | 366 | } else |
| 367 | vfree(new_mc); |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 368 | } |
Dmitry Adamushko | a0a29b6 | 2008-09-11 23:27:52 +0200 | [diff] [blame] | 369 | |
| 370 | free_equiv_cpu_table(); |
| 371 | |
| 372 | return (int)leftover; |
| 373 | } |
| 374 | |
Dmitry Adamushko | a0a29b6 | 2008-09-11 23:27:52 +0200 | [diff] [blame] | 375 | static int request_microcode_fw(int cpu, struct device *device) |
| 376 | { |
| 377 | const char *fw_name = "amd-ucode/microcode_amd.bin"; |
| 378 | const struct firmware *firmware; |
| 379 | int ret; |
| 380 | |
| 381 | /* We should bind the task to the CPU */ |
| 382 | BUG_ON(cpu != raw_smp_processor_id()); |
| 383 | |
| 384 | ret = request_firmware(&firmware, fw_name, device); |
| 385 | if (ret) { |
Andreas Herrmann | be95776 | 2008-12-16 19:11:23 +0100 | [diff] [blame] | 386 | printk(KERN_ERR "microcode: ucode data file %s load failed\n", |
| 387 | fw_name); |
Dmitry Adamushko | a0a29b6 | 2008-09-11 23:27:52 +0200 | [diff] [blame] | 388 | return ret; |
| 389 | } |
| 390 | |
Andreas Herrmann | 0657d9e | 2008-12-16 19:14:05 +0100 | [diff] [blame^] | 391 | ret = generic_load_microcode(cpu, firmware->data, firmware->size); |
Dmitry Adamushko | a0a29b6 | 2008-09-11 23:27:52 +0200 | [diff] [blame] | 392 | |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 393 | release_firmware(firmware); |
| 394 | |
Dmitry Adamushko | a0a29b6 | 2008-09-11 23:27:52 +0200 | [diff] [blame] | 395 | return ret; |
| 396 | } |
| 397 | |
Dmitry Adamushko | a0a29b6 | 2008-09-11 23:27:52 +0200 | [diff] [blame] | 398 | static int request_microcode_user(int cpu, const void __user *buf, size_t size) |
| 399 | { |
Andreas Herrmann | be95776 | 2008-12-16 19:11:23 +0100 | [diff] [blame] | 400 | printk(KERN_WARNING "microcode: AMD microcode update via " |
| 401 | "/dev/cpu/microcode is not supported\n"); |
Dmitry Adamushko | 2f9284e | 2008-09-23 22:56:35 +0200 | [diff] [blame] | 402 | return -1; |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 403 | } |
| 404 | |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 405 | static void microcode_fini_cpu_amd(int cpu) |
| 406 | { |
| 407 | struct ucode_cpu_info *uci = ucode_cpu_info + cpu; |
| 408 | |
Dmitry Adamushko | 18dbc91 | 2008-09-23 12:08:44 +0200 | [diff] [blame] | 409 | vfree(uci->mc); |
| 410 | uci->mc = NULL; |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 411 | } |
| 412 | |
| 413 | static struct microcode_ops microcode_amd_ops = { |
Dmitry Adamushko | a0a29b6 | 2008-09-11 23:27:52 +0200 | [diff] [blame] | 414 | .request_microcode_user = request_microcode_user, |
| 415 | .request_microcode_fw = request_microcode_fw, |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 416 | .collect_cpu_info = collect_cpu_info_amd, |
| 417 | .apply_microcode = apply_microcode_amd, |
| 418 | .microcode_fini_cpu = microcode_fini_cpu_amd, |
| 419 | }; |
| 420 | |
Dmitry Adamushko | 18dbc91 | 2008-09-23 12:08:44 +0200 | [diff] [blame] | 421 | struct microcode_ops * __init init_amd_microcode(void) |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 422 | { |
Dmitry Adamushko | 18dbc91 | 2008-09-23 12:08:44 +0200 | [diff] [blame] | 423 | return µcode_amd_ops; |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 424 | } |