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 | |
Andreas Herrmann | 6cc9b6d | 2008-12-16 19:17:45 +0100 | [diff] [blame^] | 78 | #define UCODE_MAX_SIZE 2048 |
| 79 | #define UCODE_CONTAINER_SECTION_HDR 8 |
| 80 | #define UCODE_CONTAINER_HEADER_SIZE 12 |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 81 | |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 82 | /* serialize access to the physical write */ |
| 83 | static DEFINE_SPINLOCK(microcode_update_lock); |
| 84 | |
Dmitry Adamushko | a0a29b6 | 2008-09-11 23:27:52 +0200 | [diff] [blame] | 85 | static struct equiv_cpu_entry *equiv_cpu_table; |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 86 | |
Dmitry Adamushko | d45de40 | 2008-08-20 00:22:26 +0200 | [diff] [blame] | 87 | static int collect_cpu_info_amd(int cpu, struct cpu_signature *csig) |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 88 | { |
| 89 | struct cpuinfo_x86 *c = &cpu_data(cpu); |
Andreas Herrmann | 29d0887 | 2008-12-16 19:16:34 +0100 | [diff] [blame] | 90 | u32 dummy; |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 91 | |
Dmitry Adamushko | d45de40 | 2008-08-20 00:22:26 +0200 | [diff] [blame] | 92 | memset(csig, 0, sizeof(*csig)); |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 93 | |
| 94 | if (c->x86_vendor != X86_VENDOR_AMD || c->x86 < 0x10) { |
| 95 | printk(KERN_ERR "microcode: CPU%d not a capable AMD processor\n", |
| 96 | cpu); |
Dmitry Adamushko | d45de40 | 2008-08-20 00:22:26 +0200 | [diff] [blame] | 97 | return -1; |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 98 | } |
| 99 | |
Andreas Herrmann | 29d0887 | 2008-12-16 19:16:34 +0100 | [diff] [blame] | 100 | rdmsr(MSR_AMD64_PATCH_LEVEL, csig->rev, dummy); |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 101 | |
| 102 | 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] | 103 | csig->rev); |
| 104 | |
| 105 | return 0; |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 106 | } |
| 107 | |
Dmitry Adamushko | a0a29b6 | 2008-09-11 23:27:52 +0200 | [diff] [blame] | 108 | static int get_matching_microcode(int cpu, void *mc, int rev) |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 109 | { |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 110 | struct microcode_header_amd *mc_header = mc; |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 111 | struct pci_dev *nb_pci_dev, *sb_pci_dev; |
| 112 | unsigned int current_cpu_id; |
| 113 | unsigned int equiv_cpu_id = 0x00; |
| 114 | unsigned int i = 0; |
| 115 | |
Dmitry Adamushko | a0a29b6 | 2008-09-11 23:27:52 +0200 | [diff] [blame] | 116 | BUG_ON(equiv_cpu_table == NULL); |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 117 | current_cpu_id = cpuid_eax(0x00000001); |
| 118 | |
| 119 | while (equiv_cpu_table[i].installed_cpu != 0) { |
| 120 | if (current_cpu_id == equiv_cpu_table[i].installed_cpu) { |
Andreas Herrmann | 3c763fd | 2008-12-16 19:07:47 +0100 | [diff] [blame] | 121 | equiv_cpu_id = equiv_cpu_table[i].equiv_cpu & 0xffff; |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 122 | break; |
| 123 | } |
| 124 | i++; |
| 125 | } |
| 126 | |
| 127 | if (!equiv_cpu_id) { |
| 128 | printk(KERN_ERR "microcode: CPU%d cpu_id " |
Andreas Herrmann | 2a3282a7 | 2008-12-16 19:08:53 +0100 | [diff] [blame] | 129 | "not found in equivalent cpu table\n", cpu); |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 130 | return 0; |
| 131 | } |
| 132 | |
Andreas Herrmann | 3c763fd | 2008-12-16 19:07:47 +0100 | [diff] [blame] | 133 | if (mc_header->processor_rev_id != equiv_cpu_id) { |
| 134 | printk(KERN_ERR "microcode: CPU%d patch does not match " |
| 135 | "(processor_rev_id: %x, eqiv_cpu_id: %x)\n", |
| 136 | cpu, mc_header->processor_rev_id, equiv_cpu_id); |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 137 | return 0; |
| 138 | } |
| 139 | |
| 140 | /* ucode may be northbridge specific */ |
| 141 | if (mc_header->nb_dev_id) { |
| 142 | nb_pci_dev = pci_get_device(PCI_VENDOR_ID_AMD, |
| 143 | (mc_header->nb_dev_id & 0xff), |
| 144 | NULL); |
| 145 | if ((!nb_pci_dev) || |
| 146 | (mc_header->nb_rev_id != nb_pci_dev->revision)) { |
Andreas Herrmann | 2a3282a7 | 2008-12-16 19:08:53 +0100 | [diff] [blame] | 147 | printk(KERN_ERR "microcode: CPU%d NB mismatch\n", cpu); |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 148 | pci_dev_put(nb_pci_dev); |
| 149 | return 0; |
| 150 | } |
| 151 | pci_dev_put(nb_pci_dev); |
| 152 | } |
| 153 | |
| 154 | /* ucode may be southbridge specific */ |
| 155 | if (mc_header->sb_dev_id) { |
| 156 | sb_pci_dev = pci_get_device(PCI_VENDOR_ID_AMD, |
| 157 | (mc_header->sb_dev_id & 0xff), |
| 158 | NULL); |
| 159 | if ((!sb_pci_dev) || |
| 160 | (mc_header->sb_rev_id != sb_pci_dev->revision)) { |
Andreas Herrmann | 2a3282a7 | 2008-12-16 19:08:53 +0100 | [diff] [blame] | 161 | printk(KERN_ERR "microcode: CPU%d SB mismatch\n", cpu); |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 162 | pci_dev_put(sb_pci_dev); |
| 163 | return 0; |
| 164 | } |
| 165 | pci_dev_put(sb_pci_dev); |
| 166 | } |
| 167 | |
Dmitry Adamushko | a0a29b6 | 2008-09-11 23:27:52 +0200 | [diff] [blame] | 168 | if (mc_header->patch_id <= rev) |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 169 | return 0; |
| 170 | |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 171 | return 1; |
| 172 | } |
| 173 | |
| 174 | static void apply_microcode_amd(int cpu) |
| 175 | { |
| 176 | unsigned long flags; |
Andreas Herrmann | 29d0887 | 2008-12-16 19:16:34 +0100 | [diff] [blame] | 177 | u32 rev, dummy; |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 178 | int cpu_num = raw_smp_processor_id(); |
| 179 | struct ucode_cpu_info *uci = ucode_cpu_info + cpu_num; |
Dmitry Adamushko | 18dbc91 | 2008-09-23 12:08:44 +0200 | [diff] [blame] | 180 | struct microcode_amd *mc_amd = uci->mc; |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 181 | |
| 182 | /* We should bind the task to the CPU */ |
| 183 | BUG_ON(cpu_num != cpu); |
| 184 | |
Dmitry Adamushko | 18dbc91 | 2008-09-23 12:08:44 +0200 | [diff] [blame] | 185 | if (mc_amd == NULL) |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 186 | return; |
| 187 | |
| 188 | spin_lock_irqsave(µcode_update_lock, flags); |
Andreas Herrmann | 29d0887 | 2008-12-16 19:16:34 +0100 | [diff] [blame] | 189 | wrmsrl(MSR_AMD64_PATCH_LOADER, &mc_amd->hdr.data_code); |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 190 | /* get patch id after patching */ |
Andreas Herrmann | 29d0887 | 2008-12-16 19:16:34 +0100 | [diff] [blame] | 191 | rdmsr(MSR_AMD64_PATCH_LEVEL, rev, dummy); |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 192 | spin_unlock_irqrestore(µcode_update_lock, flags); |
| 193 | |
| 194 | /* check current patch id and patch's id for match */ |
Dmitry Adamushko | 18dbc91 | 2008-09-23 12:08:44 +0200 | [diff] [blame] | 195 | if (rev != mc_amd->hdr.patch_id) { |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 196 | printk(KERN_ERR "microcode: CPU%d update from revision " |
| 197 | "0x%x to 0x%x failed\n", cpu_num, |
Dmitry Adamushko | 18dbc91 | 2008-09-23 12:08:44 +0200 | [diff] [blame] | 198 | mc_amd->hdr.patch_id, rev); |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 199 | return; |
| 200 | } |
| 201 | |
| 202 | printk(KERN_INFO "microcode: CPU%d updated from revision " |
Andreas Herrmann | 2a3282a7 | 2008-12-16 19:08:53 +0100 | [diff] [blame] | 203 | "0x%x to 0x%x\n", |
Dmitry Adamushko | 18dbc91 | 2008-09-23 12:08:44 +0200 | [diff] [blame] | 204 | cpu_num, uci->cpu_sig.rev, mc_amd->hdr.patch_id); |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 205 | |
Dmitry Adamushko | d45de40 | 2008-08-20 00:22:26 +0200 | [diff] [blame] | 206 | uci->cpu_sig.rev = rev; |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 207 | } |
| 208 | |
Andreas Herrmann | 0657d9e | 2008-12-16 19:14:05 +0100 | [diff] [blame] | 209 | static int get_ucode_data(void *to, const u8 *from, size_t n) |
| 210 | { |
| 211 | memcpy(to, from, n); |
| 212 | return 0; |
| 213 | } |
| 214 | |
Andreas Herrmann | 8c13520 | 2008-12-16 19:13:00 +0100 | [diff] [blame] | 215 | static void *get_next_ucode(const u8 *buf, unsigned int size, |
Andreas Herrmann | 0657d9e | 2008-12-16 19:14:05 +0100 | [diff] [blame] | 216 | unsigned int *mc_size) |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 217 | { |
Dmitry Adamushko | a0a29b6 | 2008-09-11 23:27:52 +0200 | [diff] [blame] | 218 | unsigned int total_size; |
Peter Oruba | d473879 | 2008-09-17 15:39:18 +0200 | [diff] [blame] | 219 | u8 section_hdr[UCODE_CONTAINER_SECTION_HDR]; |
Dmitry Adamushko | a0a29b6 | 2008-09-11 23:27:52 +0200 | [diff] [blame] | 220 | void *mc; |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 221 | |
Peter Oruba | d473879 | 2008-09-17 15:39:18 +0200 | [diff] [blame] | 222 | if (get_ucode_data(section_hdr, buf, UCODE_CONTAINER_SECTION_HDR)) |
Dmitry Adamushko | a0a29b6 | 2008-09-11 23:27:52 +0200 | [diff] [blame] | 223 | return NULL; |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 224 | |
Peter Oruba | d473879 | 2008-09-17 15:39:18 +0200 | [diff] [blame] | 225 | if (section_hdr[0] != UCODE_UCODE_TYPE) { |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 226 | printk(KERN_ERR "microcode: error! " |
| 227 | "Wrong microcode payload type field\n"); |
Dmitry Adamushko | a0a29b6 | 2008-09-11 23:27:52 +0200 | [diff] [blame] | 228 | return NULL; |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 229 | } |
| 230 | |
Peter Oruba | d473879 | 2008-09-17 15:39:18 +0200 | [diff] [blame] | 231 | total_size = (unsigned long) (section_hdr[4] + (section_hdr[5] << 8)); |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 232 | |
Dmitry Adamushko | a0a29b6 | 2008-09-11 23:27:52 +0200 | [diff] [blame] | 233 | printk(KERN_INFO "microcode: size %u, total_size %u\n", |
| 234 | size, total_size); |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 235 | |
Dmitry Adamushko | a0a29b6 | 2008-09-11 23:27:52 +0200 | [diff] [blame] | 236 | if (total_size > size || total_size > UCODE_MAX_SIZE) { |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 237 | printk(KERN_ERR "microcode: error! Bad data in microcode data file\n"); |
Dmitry Adamushko | a0a29b6 | 2008-09-11 23:27:52 +0200 | [diff] [blame] | 238 | return NULL; |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 239 | } |
| 240 | |
Dmitry Adamushko | a0a29b6 | 2008-09-11 23:27:52 +0200 | [diff] [blame] | 241 | mc = vmalloc(UCODE_MAX_SIZE); |
| 242 | if (mc) { |
| 243 | memset(mc, 0, UCODE_MAX_SIZE); |
Andreas Herrmann | be95776 | 2008-12-16 19:11:23 +0100 | [diff] [blame] | 244 | if (get_ucode_data(mc, buf + UCODE_CONTAINER_SECTION_HDR, |
| 245 | total_size)) { |
Dmitry Adamushko | a0a29b6 | 2008-09-11 23:27:52 +0200 | [diff] [blame] | 246 | vfree(mc); |
| 247 | mc = NULL; |
| 248 | } else |
Peter Oruba | d473879 | 2008-09-17 15:39:18 +0200 | [diff] [blame] | 249 | *mc_size = total_size + UCODE_CONTAINER_SECTION_HDR; |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 250 | } |
Dmitry Adamushko | a0a29b6 | 2008-09-11 23:27:52 +0200 | [diff] [blame] | 251 | return mc; |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 252 | } |
| 253 | |
Dmitry Adamushko | a0a29b6 | 2008-09-11 23:27:52 +0200 | [diff] [blame] | 254 | |
Andreas Herrmann | 0657d9e | 2008-12-16 19:14:05 +0100 | [diff] [blame] | 255 | static int install_equiv_cpu_table(const u8 *buf) |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 256 | { |
Peter Oruba | b6cffde | 2008-09-17 15:05:52 +0200 | [diff] [blame] | 257 | u8 *container_hdr[UCODE_CONTAINER_HEADER_SIZE]; |
| 258 | unsigned int *buf_pos = (unsigned int *)container_hdr; |
Dmitry Adamushko | a0a29b6 | 2008-09-11 23:27:52 +0200 | [diff] [blame] | 259 | unsigned long size; |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 260 | |
Peter Oruba | b6cffde | 2008-09-17 15:05:52 +0200 | [diff] [blame] | 261 | if (get_ucode_data(&container_hdr, buf, UCODE_CONTAINER_HEADER_SIZE)) |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 262 | return 0; |
| 263 | |
Dmitry Adamushko | a0a29b6 | 2008-09-11 23:27:52 +0200 | [diff] [blame] | 264 | size = buf_pos[2]; |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 265 | |
Dmitry Adamushko | a0a29b6 | 2008-09-11 23:27:52 +0200 | [diff] [blame] | 266 | if (buf_pos[1] != UCODE_EQUIV_CPU_TABLE_TYPE || !size) { |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 267 | printk(KERN_ERR "microcode: error! " |
Andreas Herrmann | 2a3282a7 | 2008-12-16 19:08:53 +0100 | [diff] [blame] | 268 | "Wrong microcode equivalent cpu table\n"); |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 269 | return 0; |
| 270 | } |
| 271 | |
| 272 | equiv_cpu_table = (struct equiv_cpu_entry *) vmalloc(size); |
| 273 | if (!equiv_cpu_table) { |
| 274 | printk(KERN_ERR "microcode: error, can't allocate memory for equiv CPU table\n"); |
| 275 | return 0; |
| 276 | } |
| 277 | |
Peter Oruba | b6cffde | 2008-09-17 15:05:52 +0200 | [diff] [blame] | 278 | buf += UCODE_CONTAINER_HEADER_SIZE; |
Dmitry Adamushko | a0a29b6 | 2008-09-11 23:27:52 +0200 | [diff] [blame] | 279 | if (get_ucode_data(equiv_cpu_table, buf, size)) { |
| 280 | vfree(equiv_cpu_table); |
| 281 | return 0; |
| 282 | } |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 283 | |
Peter Oruba | b6cffde | 2008-09-17 15:05:52 +0200 | [diff] [blame] | 284 | return size + UCODE_CONTAINER_HEADER_SIZE; /* add header length */ |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 285 | } |
| 286 | |
Dmitry Adamushko | a0a29b6 | 2008-09-11 23:27:52 +0200 | [diff] [blame] | 287 | static void free_equiv_cpu_table(void) |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 288 | { |
Dmitry Adamushko | a0a29b6 | 2008-09-11 23:27:52 +0200 | [diff] [blame] | 289 | if (equiv_cpu_table) { |
| 290 | vfree(equiv_cpu_table); |
| 291 | equiv_cpu_table = NULL; |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 292 | } |
Dmitry Adamushko | a0a29b6 | 2008-09-11 23:27:52 +0200 | [diff] [blame] | 293 | } |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 294 | |
Andreas Herrmann | 0657d9e | 2008-12-16 19:14:05 +0100 | [diff] [blame] | 295 | 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] | 296 | { |
| 297 | struct ucode_cpu_info *uci = ucode_cpu_info + cpu; |
Andreas Herrmann | 8c13520 | 2008-12-16 19:13:00 +0100 | [diff] [blame] | 298 | const u8 *ucode_ptr = data; |
| 299 | void *new_mc = NULL; |
| 300 | void *mc; |
Dmitry Adamushko | a0a29b6 | 2008-09-11 23:27:52 +0200 | [diff] [blame] | 301 | int new_rev = uci->cpu_sig.rev; |
| 302 | unsigned int leftover; |
| 303 | unsigned long offset; |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 304 | |
Andreas Herrmann | 0657d9e | 2008-12-16 19:14:05 +0100 | [diff] [blame] | 305 | offset = install_equiv_cpu_table(ucode_ptr); |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 306 | if (!offset) { |
| 307 | printk(KERN_ERR "microcode: installing equivalent cpu table failed\n"); |
| 308 | return -EINVAL; |
| 309 | } |
| 310 | |
Dmitry Adamushko | a0a29b6 | 2008-09-11 23:27:52 +0200 | [diff] [blame] | 311 | ucode_ptr += offset; |
| 312 | leftover = size - offset; |
| 313 | |
| 314 | while (leftover) { |
Dmitry Adamushko | 2f9284e | 2008-09-23 22:56:35 +0200 | [diff] [blame] | 315 | unsigned int uninitialized_var(mc_size); |
Dmitry Adamushko | a0a29b6 | 2008-09-11 23:27:52 +0200 | [diff] [blame] | 316 | struct microcode_header_amd *mc_header; |
| 317 | |
Andreas Herrmann | 0657d9e | 2008-12-16 19:14:05 +0100 | [diff] [blame] | 318 | mc = get_next_ucode(ucode_ptr, leftover, &mc_size); |
Dmitry Adamushko | a0a29b6 | 2008-09-11 23:27:52 +0200 | [diff] [blame] | 319 | if (!mc) |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 320 | break; |
Dmitry Adamushko | a0a29b6 | 2008-09-11 23:27:52 +0200 | [diff] [blame] | 321 | |
| 322 | mc_header = (struct microcode_header_amd *)mc; |
| 323 | if (get_matching_microcode(cpu, mc, new_rev)) { |
Ingo Molnar | a1c75cc | 2008-09-14 14:50:26 +0200 | [diff] [blame] | 324 | if (new_mc) |
| 325 | vfree(new_mc); |
Dmitry Adamushko | a0a29b6 | 2008-09-11 23:27:52 +0200 | [diff] [blame] | 326 | new_rev = mc_header->patch_id; |
| 327 | new_mc = mc; |
Andreas Herrmann | be95776 | 2008-12-16 19:11:23 +0100 | [diff] [blame] | 328 | } else |
Dmitry Adamushko | a0a29b6 | 2008-09-11 23:27:52 +0200 | [diff] [blame] | 329 | vfree(mc); |
| 330 | |
| 331 | ucode_ptr += mc_size; |
| 332 | leftover -= mc_size; |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 333 | } |
Dmitry Adamushko | a0a29b6 | 2008-09-11 23:27:52 +0200 | [diff] [blame] | 334 | |
| 335 | if (new_mc) { |
| 336 | if (!leftover) { |
Dmitry Adamushko | 18dbc91 | 2008-09-23 12:08:44 +0200 | [diff] [blame] | 337 | if (uci->mc) |
| 338 | vfree(uci->mc); |
| 339 | uci->mc = new_mc; |
Andreas Herrmann | be95776 | 2008-12-16 19:11:23 +0100 | [diff] [blame] | 340 | pr_debug("microcode: CPU%d found a matching microcode " |
| 341 | "update with version 0x%x (current=0x%x)\n", |
| 342 | cpu, new_rev, uci->cpu_sig.rev); |
Dmitry Adamushko | a0a29b6 | 2008-09-11 23:27:52 +0200 | [diff] [blame] | 343 | } else |
| 344 | vfree(new_mc); |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 345 | } |
Dmitry Adamushko | a0a29b6 | 2008-09-11 23:27:52 +0200 | [diff] [blame] | 346 | |
| 347 | free_equiv_cpu_table(); |
| 348 | |
| 349 | return (int)leftover; |
| 350 | } |
| 351 | |
Dmitry Adamushko | a0a29b6 | 2008-09-11 23:27:52 +0200 | [diff] [blame] | 352 | static int request_microcode_fw(int cpu, struct device *device) |
| 353 | { |
| 354 | const char *fw_name = "amd-ucode/microcode_amd.bin"; |
| 355 | const struct firmware *firmware; |
| 356 | int ret; |
| 357 | |
| 358 | /* We should bind the task to the CPU */ |
| 359 | BUG_ON(cpu != raw_smp_processor_id()); |
| 360 | |
| 361 | ret = request_firmware(&firmware, fw_name, device); |
| 362 | if (ret) { |
Andreas Herrmann | be95776 | 2008-12-16 19:11:23 +0100 | [diff] [blame] | 363 | printk(KERN_ERR "microcode: ucode data file %s load failed\n", |
| 364 | fw_name); |
Dmitry Adamushko | a0a29b6 | 2008-09-11 23:27:52 +0200 | [diff] [blame] | 365 | return ret; |
| 366 | } |
| 367 | |
Andreas Herrmann | 0657d9e | 2008-12-16 19:14:05 +0100 | [diff] [blame] | 368 | ret = generic_load_microcode(cpu, firmware->data, firmware->size); |
Dmitry Adamushko | a0a29b6 | 2008-09-11 23:27:52 +0200 | [diff] [blame] | 369 | |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 370 | release_firmware(firmware); |
| 371 | |
Dmitry Adamushko | a0a29b6 | 2008-09-11 23:27:52 +0200 | [diff] [blame] | 372 | return ret; |
| 373 | } |
| 374 | |
Dmitry Adamushko | a0a29b6 | 2008-09-11 23:27:52 +0200 | [diff] [blame] | 375 | static int request_microcode_user(int cpu, const void __user *buf, size_t size) |
| 376 | { |
Andreas Herrmann | be95776 | 2008-12-16 19:11:23 +0100 | [diff] [blame] | 377 | printk(KERN_WARNING "microcode: AMD microcode update via " |
| 378 | "/dev/cpu/microcode is not supported\n"); |
Dmitry Adamushko | 2f9284e | 2008-09-23 22:56:35 +0200 | [diff] [blame] | 379 | return -1; |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 380 | } |
| 381 | |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 382 | static void microcode_fini_cpu_amd(int cpu) |
| 383 | { |
| 384 | struct ucode_cpu_info *uci = ucode_cpu_info + cpu; |
| 385 | |
Dmitry Adamushko | 18dbc91 | 2008-09-23 12:08:44 +0200 | [diff] [blame] | 386 | vfree(uci->mc); |
| 387 | uci->mc = NULL; |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 388 | } |
| 389 | |
| 390 | static struct microcode_ops microcode_amd_ops = { |
Dmitry Adamushko | a0a29b6 | 2008-09-11 23:27:52 +0200 | [diff] [blame] | 391 | .request_microcode_user = request_microcode_user, |
| 392 | .request_microcode_fw = request_microcode_fw, |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 393 | .collect_cpu_info = collect_cpu_info_amd, |
| 394 | .apply_microcode = apply_microcode_amd, |
| 395 | .microcode_fini_cpu = microcode_fini_cpu_amd, |
| 396 | }; |
| 397 | |
Dmitry Adamushko | 18dbc91 | 2008-09-23 12:08:44 +0200 | [diff] [blame] | 398 | struct microcode_ops * __init init_amd_microcode(void) |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 399 | { |
Dmitry Adamushko | 18dbc91 | 2008-09-23 12:08:44 +0200 | [diff] [blame] | 400 | return µcode_amd_ops; |
Peter Oruba | 80cc9f1 | 2008-07-28 18:44:22 +0200 | [diff] [blame] | 401 | } |