IB/srp: Let srp_abort() return FAST_IO_FAIL if TL offline
[linux/fpc-iii.git] / arch / x86 / kernel / microcode_core_early.c
blob833d51d6ee065b908fa70ac1075a3acf6d2721a4
1 /*
2 * X86 CPU microcode early update for Linux
4 * Copyright (C) 2012 Fenghua Yu <fenghua.yu@intel.com>
5 * H Peter Anvin" <hpa@zytor.com>
7 * This driver allows to early upgrade microcode on Intel processors
8 * belonging to IA-32 family - PentiumPro, Pentium II,
9 * Pentium III, Xeon, Pentium 4, etc.
11 * Reference: Section 9.11 of Volume 3, IA-32 Intel Architecture
12 * Software Developer's Manual.
14 * This program is free software; you can redistribute it and/or
15 * modify it under the terms of the GNU General Public License
16 * as published by the Free Software Foundation; either version
17 * 2 of the License, or (at your option) any later version.
19 #include <linux/module.h>
20 #include <asm/microcode_intel.h>
21 #include <asm/processor.h>
23 #define QCHAR(a, b, c, d) ((a) + ((b) << 8) + ((c) << 16) + ((d) << 24))
24 #define CPUID_INTEL1 QCHAR('G', 'e', 'n', 'u')
25 #define CPUID_INTEL2 QCHAR('i', 'n', 'e', 'I')
26 #define CPUID_INTEL3 QCHAR('n', 't', 'e', 'l')
27 #define CPUID_AMD1 QCHAR('A', 'u', 't', 'h')
28 #define CPUID_AMD2 QCHAR('e', 'n', 't', 'i')
29 #define CPUID_AMD3 QCHAR('c', 'A', 'M', 'D')
31 #define CPUID_IS(a, b, c, ebx, ecx, edx) \
32 (!((ebx ^ (a))|(edx ^ (b))|(ecx ^ (c))))
35 * In early loading microcode phase on BSP, boot_cpu_data is not set up yet.
36 * x86_vendor() gets vendor id for BSP.
38 * In 32 bit AP case, accessing boot_cpu_data needs linear address. To simplify
39 * coding, we still use x86_vendor() to get vendor id for AP.
41 * x86_vendor() gets vendor information directly through cpuid.
43 static int __cpuinit x86_vendor(void)
45 u32 eax = 0x00000000;
46 u32 ebx, ecx = 0, edx;
48 native_cpuid(&eax, &ebx, &ecx, &edx);
50 if (CPUID_IS(CPUID_INTEL1, CPUID_INTEL2, CPUID_INTEL3, ebx, ecx, edx))
51 return X86_VENDOR_INTEL;
53 if (CPUID_IS(CPUID_AMD1, CPUID_AMD2, CPUID_AMD3, ebx, ecx, edx))
54 return X86_VENDOR_AMD;
56 return X86_VENDOR_UNKNOWN;
59 static int __cpuinit x86_family(void)
61 u32 eax = 0x00000001;
62 u32 ebx, ecx = 0, edx;
63 int x86;
65 native_cpuid(&eax, &ebx, &ecx, &edx);
67 x86 = (eax >> 8) & 0xf;
68 if (x86 == 15)
69 x86 += (eax >> 20) & 0xff;
71 return x86;
74 void __init load_ucode_bsp(void)
76 int vendor, x86;
78 if (!have_cpuid_p())
79 return;
81 vendor = x86_vendor();
82 x86 = x86_family();
84 if (vendor == X86_VENDOR_INTEL && x86 >= 6)
85 load_ucode_intel_bsp();
88 void __cpuinit load_ucode_ap(void)
90 int vendor, x86;
92 if (!have_cpuid_p())
93 return;
95 vendor = x86_vendor();
96 x86 = x86_family();
98 if (vendor == X86_VENDOR_INTEL && x86 >= 6)
99 load_ucode_intel_ap();