GNU Linux-libre 4.9.337-gnu1
[releases.git] / arch / x86 / kernel / cpu / amd.c
1 #include <linux/export.h>
2 #include <linux/bitops.h>
3 #include <linux/elf.h>
4 #include <linux/mm.h>
5
6 #include <linux/io.h>
7 #include <linux/sched.h>
8 #include <linux/random.h>
9 #include <asm/processor.h>
10 #include <asm/apic.h>
11 #include <asm/cpu.h>
12 #include <asm/spec-ctrl.h>
13 #include <asm/smp.h>
14 #include <asm/pci-direct.h>
15 #include <asm/delay.h>
16
17 #ifdef CONFIG_X86_64
18 # include <asm/mmconfig.h>
19 # include <asm/cacheflush.h>
20 #endif
21
22 #include "cpu.h"
23
24 static const int amd_erratum_383[];
25 static const int amd_erratum_400[];
26 static bool cpu_has_amd_erratum(struct cpuinfo_x86 *cpu, const int *erratum);
27
28 /*
29  * nodes_per_socket: Stores the number of nodes per socket.
30  * Refer to Fam15h Models 00-0fh BKDG - CPUID Fn8000_001E_ECX
31  * Node Identifiers[10:8]
32  */
33 static u32 nodes_per_socket = 1;
34
35 static inline int rdmsrl_amd_safe(unsigned msr, unsigned long long *p)
36 {
37         u32 gprs[8] = { 0 };
38         int err;
39
40         WARN_ONCE((boot_cpu_data.x86 != 0xf),
41                   "%s should only be used on K8!\n", __func__);
42
43         gprs[1] = msr;
44         gprs[7] = 0x9c5a203a;
45
46         err = rdmsr_safe_regs(gprs);
47
48         *p = gprs[0] | ((u64)gprs[2] << 32);
49
50         return err;
51 }
52
53 static inline int wrmsrl_amd_safe(unsigned msr, unsigned long long val)
54 {
55         u32 gprs[8] = { 0 };
56
57         WARN_ONCE((boot_cpu_data.x86 != 0xf),
58                   "%s should only be used on K8!\n", __func__);
59
60         gprs[0] = (u32)val;
61         gprs[1] = msr;
62         gprs[2] = val >> 32;
63         gprs[7] = 0x9c5a203a;
64
65         return wrmsr_safe_regs(gprs);
66 }
67
68 /*
69  *      B step AMD K6 before B 9730xxxx have hardware bugs that can cause
70  *      misexecution of code under Linux. Owners of such processors should
71  *      contact AMD for precise details and a CPU swap.
72  *
73  *      See     http://www.multimania.com/poulot/k6bug.html
74  *      and     section 2.6.2 of "AMD-K6 Processor Revision Guide - Model 6"
75  *              (Publication # 21266  Issue Date: August 1998)
76  *
77  *      The following test is erm.. interesting. AMD neglected to up
78  *      the chip setting when fixing the bug but they also tweaked some
79  *      performance at the same time..
80  */
81
82 extern __visible void vide(void);
83 __asm__(".globl vide\n"
84         ".type vide, @function\n"
85         ".align 4\n"
86         "vide: ret\n");
87
88 static void init_amd_k5(struct cpuinfo_x86 *c)
89 {
90 #ifdef CONFIG_X86_32
91 /*
92  * General Systems BIOSen alias the cpu frequency registers
93  * of the Elan at 0x000df000. Unfortunately, one of the Linux
94  * drivers subsequently pokes it, and changes the CPU speed.
95  * Workaround : Remove the unneeded alias.
96  */
97 #define CBAR            (0xfffc) /* Configuration Base Address  (32-bit) */
98 #define CBAR_ENB        (0x80000000)
99 #define CBAR_KEY        (0X000000CB)
100         if (c->x86_model == 9 || c->x86_model == 10) {
101                 if (inl(CBAR) & CBAR_ENB)
102                         outl(0 | CBAR_KEY, CBAR);
103         }
104 #endif
105 }
106
107 static void init_amd_k6(struct cpuinfo_x86 *c)
108 {
109 #ifdef CONFIG_X86_32
110         u32 l, h;
111         int mbytes = get_num_physpages() >> (20-PAGE_SHIFT);
112
113         if (c->x86_model < 6) {
114                 /* Based on AMD doc 20734R - June 2000 */
115                 if (c->x86_model == 0) {
116                         clear_cpu_cap(c, X86_FEATURE_APIC);
117                         set_cpu_cap(c, X86_FEATURE_PGE);
118                 }
119                 return;
120         }
121
122         if (c->x86_model == 6 && c->x86_stepping == 1) {
123                 const int K6_BUG_LOOP = 1000000;
124                 int n;
125                 void (*f_vide)(void);
126                 u64 d, d2;
127
128                 pr_info("AMD K6 stepping B detected - ");
129
130                 /*
131                  * It looks like AMD fixed the 2.6.2 bug and improved indirect
132                  * calls at the same time.
133                  */
134
135                 n = K6_BUG_LOOP;
136                 f_vide = vide;
137                 d = rdtsc();
138                 while (n--)
139                         f_vide();
140                 d2 = rdtsc();
141                 d = d2-d;
142
143                 if (d > 20*K6_BUG_LOOP)
144                         pr_cont("system stability may be impaired when more than 32 MB are used.\n");
145                 else
146                         pr_cont("probably OK (after B9730xxxx).\n");
147         }
148
149         /* K6 with old style WHCR */
150         if (c->x86_model < 8 ||
151            (c->x86_model == 8 && c->x86_stepping < 8)) {
152                 /* We can only write allocate on the low 508Mb */
153                 if (mbytes > 508)
154                         mbytes = 508;
155
156                 rdmsr(MSR_K6_WHCR, l, h);
157                 if ((l&0x0000FFFF) == 0) {
158                         unsigned long flags;
159                         l = (1<<0)|((mbytes/4)<<1);
160                         local_irq_save(flags);
161                         wbinvd();
162                         wrmsr(MSR_K6_WHCR, l, h);
163                         local_irq_restore(flags);
164                         pr_info("Enabling old style K6 write allocation for %d Mb\n",
165                                 mbytes);
166                 }
167                 return;
168         }
169
170         if ((c->x86_model == 8 && c->x86_stepping > 7) ||
171              c->x86_model == 9 || c->x86_model == 13) {
172                 /* The more serious chips .. */
173
174                 if (mbytes > 4092)
175                         mbytes = 4092;
176
177                 rdmsr(MSR_K6_WHCR, l, h);
178                 if ((l&0xFFFF0000) == 0) {
179                         unsigned long flags;
180                         l = ((mbytes>>2)<<22)|(1<<16);
181                         local_irq_save(flags);
182                         wbinvd();
183                         wrmsr(MSR_K6_WHCR, l, h);
184                         local_irq_restore(flags);
185                         pr_info("Enabling new style K6 write allocation for %d Mb\n",
186                                 mbytes);
187                 }
188
189                 return;
190         }
191
192         if (c->x86_model == 10) {
193                 /* AMD Geode LX is model 10 */
194                 /* placeholder for any needed mods */
195                 return;
196         }
197 #endif
198 }
199
200 static void init_amd_k7(struct cpuinfo_x86 *c)
201 {
202 #ifdef CONFIG_X86_32
203         u32 l, h;
204
205         /*
206          * Bit 15 of Athlon specific MSR 15, needs to be 0
207          * to enable SSE on Palomino/Morgan/Barton CPU's.
208          * If the BIOS didn't enable it already, enable it here.
209          */
210         if (c->x86_model >= 6 && c->x86_model <= 10) {
211                 if (!cpu_has(c, X86_FEATURE_XMM)) {
212                         pr_info("Enabling disabled K7/SSE Support.\n");
213                         msr_clear_bit(MSR_K7_HWCR, 15);
214                         set_cpu_cap(c, X86_FEATURE_XMM);
215                 }
216         }
217
218         /*
219          * It's been determined by AMD that Athlons since model 8 stepping 1
220          * are more robust with CLK_CTL set to 200xxxxx instead of 600xxxxx
221          * As per AMD technical note 27212 0.2
222          */
223         if ((c->x86_model == 8 && c->x86_stepping >= 1) || (c->x86_model > 8)) {
224                 rdmsr(MSR_K7_CLK_CTL, l, h);
225                 if ((l & 0xfff00000) != 0x20000000) {
226                         pr_info("CPU: CLK_CTL MSR was %x. Reprogramming to %x\n",
227                                 l, ((l & 0x000fffff)|0x20000000));
228                         wrmsr(MSR_K7_CLK_CTL, (l & 0x000fffff)|0x20000000, h);
229                 }
230         }
231
232         set_cpu_cap(c, X86_FEATURE_K7);
233
234         /* calling is from identify_secondary_cpu() ? */
235         if (!c->cpu_index)
236                 return;
237
238         /*
239          * Certain Athlons might work (for various values of 'work') in SMP
240          * but they are not certified as MP capable.
241          */
242         /* Athlon 660/661 is valid. */
243         if ((c->x86_model == 6) && ((c->x86_stepping == 0) ||
244             (c->x86_stepping == 1)))
245                 return;
246
247         /* Duron 670 is valid */
248         if ((c->x86_model == 7) && (c->x86_stepping == 0))
249                 return;
250
251         /*
252          * Athlon 662, Duron 671, and Athlon >model 7 have capability
253          * bit. It's worth noting that the A5 stepping (662) of some
254          * Athlon XP's have the MP bit set.
255          * See http://www.heise.de/newsticker/data/jow-18.10.01-000 for
256          * more.
257          */
258         if (((c->x86_model == 6) && (c->x86_stepping >= 2)) ||
259             ((c->x86_model == 7) && (c->x86_stepping >= 1)) ||
260              (c->x86_model > 7))
261                 if (cpu_has(c, X86_FEATURE_MP))
262                         return;
263
264         /* If we get here, not a certified SMP capable AMD system. */
265
266         /*
267          * Don't taint if we are running SMP kernel on a single non-MP
268          * approved Athlon
269          */
270         WARN_ONCE(1, "WARNING: This combination of AMD"
271                 " processors is not suitable for SMP.\n");
272         add_taint(TAINT_CPU_OUT_OF_SPEC, LOCKDEP_NOW_UNRELIABLE);
273 #endif
274 }
275
276 #ifdef CONFIG_NUMA
277 /*
278  * To workaround broken NUMA config.  Read the comment in
279  * srat_detect_node().
280  */
281 static int nearby_node(int apicid)
282 {
283         int i, node;
284
285         for (i = apicid - 1; i >= 0; i--) {
286                 node = __apicid_to_node[i];
287                 if (node != NUMA_NO_NODE && node_online(node))
288                         return node;
289         }
290         for (i = apicid + 1; i < MAX_LOCAL_APIC; i++) {
291                 node = __apicid_to_node[i];
292                 if (node != NUMA_NO_NODE && node_online(node))
293                         return node;
294         }
295         return first_node(node_online_map); /* Shouldn't happen */
296 }
297 #endif
298
299 static void amd_get_topology_early(struct cpuinfo_x86 *c)
300 {
301         if (cpu_has(c, X86_FEATURE_TOPOEXT))
302                 smp_num_siblings = ((cpuid_ebx(0x8000001e) >> 8) & 0xff) + 1;
303 }
304
305 /*
306  * Fix up cpu_core_id for pre-F17h systems to be in the
307  * [0 .. cores_per_node - 1] range. Not really needed but
308  * kept so as not to break existing setups.
309  */
310 static void legacy_fixup_core_id(struct cpuinfo_x86 *c)
311 {
312         u32 cus_per_node;
313
314         if (c->x86 >= 0x17)
315                 return;
316
317         cus_per_node = c->x86_max_cores / nodes_per_socket;
318         c->cpu_core_id %= cus_per_node;
319 }
320
321 /*
322  * Fixup core topology information for
323  * (1) AMD multi-node processors
324  *     Assumption: Number of cores in each internal node is the same.
325  * (2) AMD processors supporting compute units
326  */
327 static void amd_get_topology(struct cpuinfo_x86 *c)
328 {
329         u8 node_id;
330         int cpu = smp_processor_id();
331
332         /* get information required for multi-node processors */
333         if (boot_cpu_has(X86_FEATURE_TOPOEXT)) {
334                 u32 eax, ebx, ecx, edx;
335
336                 cpuid(0x8000001e, &eax, &ebx, &ecx, &edx);
337
338                 node_id  = ecx & 0xff;
339
340                 if (c->x86 == 0x15)
341                         c->cu_id = ebx & 0xff;
342
343                 if (c->x86 >= 0x17) {
344                         c->cpu_core_id = ebx & 0xff;
345
346                         if (smp_num_siblings > 1)
347                                 c->x86_max_cores /= smp_num_siblings;
348                 }
349
350                 /*
351                  * We may have multiple LLCs if L3 caches exist, so check if we
352                  * have an L3 cache by looking at the L3 cache CPUID leaf.
353                  */
354                 if (cpuid_edx(0x80000006)) {
355                         if (c->x86 == 0x17) {
356                                 /*
357                                  * LLC is at the core complex level.
358                                  * Core complex id is ApicId[3].
359                                  */
360                                 per_cpu(cpu_llc_id, cpu) = c->apicid >> 3;
361                         } else {
362                                 /* LLC is at the node level. */
363                                 per_cpu(cpu_llc_id, cpu) = node_id;
364                         }
365                 }
366         } else if (cpu_has(c, X86_FEATURE_NODEID_MSR)) {
367                 u64 value;
368
369                 rdmsrl(MSR_FAM10H_NODE_ID, value);
370                 node_id = value & 7;
371
372                 per_cpu(cpu_llc_id, cpu) = node_id;
373         } else
374                 return;
375
376         if (nodes_per_socket > 1) {
377                 set_cpu_cap(c, X86_FEATURE_AMD_DCM);
378                 legacy_fixup_core_id(c);
379         }
380 }
381
382 /*
383  * On a AMD dual core setup the lower bits of the APIC id distinguish the cores.
384  * Assumes number of cores is a power of two.
385  */
386 static void amd_detect_cmp(struct cpuinfo_x86 *c)
387 {
388         unsigned bits;
389         int cpu = smp_processor_id();
390
391         bits = c->x86_coreid_bits;
392         /* Low order bits define the core id (index of core in socket) */
393         c->cpu_core_id = c->initial_apicid & ((1 << bits)-1);
394         /* Convert the initial APIC ID into the socket ID */
395         c->phys_proc_id = c->initial_apicid >> bits;
396         /* use socket ID also for last level cache */
397         per_cpu(cpu_llc_id, cpu) = c->phys_proc_id;
398         amd_get_topology(c);
399 }
400
401 u16 amd_get_nb_id(int cpu)
402 {
403         return per_cpu(cpu_llc_id, cpu);
404 }
405 EXPORT_SYMBOL_GPL(amd_get_nb_id);
406
407 u32 amd_get_nodes_per_socket(void)
408 {
409         return nodes_per_socket;
410 }
411 EXPORT_SYMBOL_GPL(amd_get_nodes_per_socket);
412
413 static void srat_detect_node(struct cpuinfo_x86 *c)
414 {
415 #ifdef CONFIG_NUMA
416         int cpu = smp_processor_id();
417         int node;
418         unsigned apicid = c->apicid;
419
420         node = numa_cpu_node(cpu);
421         if (node == NUMA_NO_NODE)
422                 node = per_cpu(cpu_llc_id, cpu);
423
424         /*
425          * On multi-fabric platform (e.g. Numascale NumaChip) a
426          * platform-specific handler needs to be called to fixup some
427          * IDs of the CPU.
428          */
429         if (x86_cpuinit.fixup_cpu_id)
430                 x86_cpuinit.fixup_cpu_id(c, node);
431
432         if (!node_online(node)) {
433                 /*
434                  * Two possibilities here:
435                  *
436                  * - The CPU is missing memory and no node was created.  In
437                  *   that case try picking one from a nearby CPU.
438                  *
439                  * - The APIC IDs differ from the HyperTransport node IDs
440                  *   which the K8 northbridge parsing fills in.  Assume
441                  *   they are all increased by a constant offset, but in
442                  *   the same order as the HT nodeids.  If that doesn't
443                  *   result in a usable node fall back to the path for the
444                  *   previous case.
445                  *
446                  * This workaround operates directly on the mapping between
447                  * APIC ID and NUMA node, assuming certain relationship
448                  * between APIC ID, HT node ID and NUMA topology.  As going
449                  * through CPU mapping may alter the outcome, directly
450                  * access __apicid_to_node[].
451                  */
452                 int ht_nodeid = c->initial_apicid;
453
454                 if (__apicid_to_node[ht_nodeid] != NUMA_NO_NODE)
455                         node = __apicid_to_node[ht_nodeid];
456                 /* Pick a nearby node */
457                 if (!node_online(node))
458                         node = nearby_node(apicid);
459         }
460         numa_set_node(cpu, node);
461 #endif
462 }
463
464 static void early_init_amd_mc(struct cpuinfo_x86 *c)
465 {
466 #ifdef CONFIG_SMP
467         unsigned bits, ecx;
468
469         /* Multi core CPU? */
470         if (c->extended_cpuid_level < 0x80000008)
471                 return;
472
473         ecx = cpuid_ecx(0x80000008);
474
475         c->x86_max_cores = (ecx & 0xff) + 1;
476
477         /* CPU telling us the core id bits shift? */
478         bits = (ecx >> 12) & 0xF;
479
480         /* Otherwise recompute */
481         if (bits == 0) {
482                 while ((1 << bits) < c->x86_max_cores)
483                         bits++;
484         }
485
486         c->x86_coreid_bits = bits;
487 #endif
488 }
489
490 static void bsp_init_amd(struct cpuinfo_x86 *c)
491 {
492
493 #ifdef CONFIG_X86_64
494         if (c->x86 >= 0xf) {
495                 unsigned long long tseg;
496
497                 /*
498                  * Split up direct mapping around the TSEG SMM area.
499                  * Don't do it for gbpages because there seems very little
500                  * benefit in doing so.
501                  */
502                 if (!rdmsrl_safe(MSR_K8_TSEG_ADDR, &tseg)) {
503                         unsigned long pfn = tseg >> PAGE_SHIFT;
504
505                         pr_debug("tseg: %010llx\n", tseg);
506                         if (pfn_range_is_mapped(pfn, pfn + 1))
507                                 set_memory_4k((unsigned long)__va(tseg), 1);
508                 }
509         }
510 #endif
511
512         if (cpu_has(c, X86_FEATURE_CONSTANT_TSC)) {
513
514                 if (c->x86 > 0x10 ||
515                     (c->x86 == 0x10 && c->x86_model >= 0x2)) {
516                         u64 val;
517
518                         rdmsrl(MSR_K7_HWCR, val);
519                         if (!(val & BIT(24)))
520                                 pr_warn(FW_BUG "TSC doesn't count with P0 frequency!\n");
521                 }
522         }
523
524         if (c->x86 == 0x15) {
525                 unsigned long upperbit;
526                 u32 cpuid, assoc;
527
528                 cpuid    = cpuid_edx(0x80000005);
529                 assoc    = cpuid >> 16 & 0xff;
530                 upperbit = ((cpuid >> 24) << 10) / assoc;
531
532                 va_align.mask     = (upperbit - 1) & PAGE_MASK;
533                 va_align.flags    = ALIGN_VA_32 | ALIGN_VA_64;
534
535                 /* A random value per boot for bit slice [12:upper_bit) */
536                 va_align.bits = get_random_int() & va_align.mask;
537         }
538
539         if (cpu_has(c, X86_FEATURE_MWAITX))
540                 use_mwaitx_delay();
541
542         if (boot_cpu_has(X86_FEATURE_TOPOEXT)) {
543                 u32 ecx;
544
545                 ecx = cpuid_ecx(0x8000001e);
546                 nodes_per_socket = ((ecx >> 8) & 7) + 1;
547         } else if (boot_cpu_has(X86_FEATURE_NODEID_MSR)) {
548                 u64 value;
549
550                 rdmsrl(MSR_FAM10H_NODE_ID, value);
551                 nodes_per_socket = ((value >> 3) & 7) + 1;
552         }
553
554         if (c->x86 >= 0x15 && c->x86 <= 0x17) {
555                 unsigned int bit;
556
557                 switch (c->x86) {
558                 case 0x15: bit = 54; break;
559                 case 0x16: bit = 33; break;
560                 case 0x17: bit = 10; break;
561                 default: return;
562                 }
563                 /*
564                  * Try to cache the base value so further operations can
565                  * avoid RMW. If that faults, do not enable SSBD.
566                  */
567                 if (!rdmsrl_safe(MSR_AMD64_LS_CFG, &x86_amd_ls_cfg_base)) {
568                         setup_force_cpu_cap(X86_FEATURE_LS_CFG_SSBD);
569                         setup_force_cpu_cap(X86_FEATURE_SSBD);
570                         x86_amd_ls_cfg_ssbd_mask = 1ULL << bit;
571                 }
572         }
573 }
574
575 static void early_init_amd(struct cpuinfo_x86 *c)
576 {
577         u64 value;
578
579         early_init_amd_mc(c);
580
581         /*
582          * c->x86_power is 8000_0007 edx. Bit 8 is TSC runs at constant rate
583          * with P/T states and does not stop in deep C-states
584          */
585         if (c->x86_power & (1 << 8)) {
586                 set_cpu_cap(c, X86_FEATURE_CONSTANT_TSC);
587                 set_cpu_cap(c, X86_FEATURE_NONSTOP_TSC);
588                 if (!check_tsc_unstable())
589                         set_sched_clock_stable();
590         }
591
592         /* Bit 12 of 8000_0007 edx is accumulated power mechanism. */
593         if (c->x86_power & BIT(12))
594                 set_cpu_cap(c, X86_FEATURE_ACC_POWER);
595
596 #ifdef CONFIG_X86_64
597         set_cpu_cap(c, X86_FEATURE_SYSCALL32);
598 #else
599         /*  Set MTRR capability flag if appropriate */
600         if (c->x86 == 5)
601                 if (c->x86_model == 13 || c->x86_model == 9 ||
602                     (c->x86_model == 8 && c->x86_stepping >= 8))
603                         set_cpu_cap(c, X86_FEATURE_K6_MTRR);
604 #endif
605 #if defined(CONFIG_X86_LOCAL_APIC) && defined(CONFIG_PCI)
606         /*
607          * ApicID can always be treated as an 8-bit value for AMD APIC versions
608          * >= 0x10, but even old K8s came out of reset with version 0x10. So, we
609          * can safely set X86_FEATURE_EXTD_APICID unconditionally for families
610          * after 16h.
611          */
612         if (boot_cpu_has(X86_FEATURE_APIC)) {
613                 if (c->x86 > 0x16)
614                         set_cpu_cap(c, X86_FEATURE_EXTD_APICID);
615                 else if (c->x86 >= 0xf) {
616                         /* check CPU config space for extended APIC ID */
617                         unsigned int val;
618
619                         val = read_pci_config(0, 24, 0, 0x68);
620                         if ((val >> 17 & 0x3) == 0x3)
621                                 set_cpu_cap(c, X86_FEATURE_EXTD_APICID);
622                 }
623         }
624 #endif
625
626         /*
627          * This is only needed to tell the kernel whether to use VMCALL
628          * and VMMCALL.  VMMCALL is never executed except under virt, so
629          * we can set it unconditionally.
630          */
631         set_cpu_cap(c, X86_FEATURE_VMMCALL);
632
633         /* F16h erratum 793, CVE-2013-6885 */
634         if (c->x86 == 0x16 && c->x86_model <= 0xf)
635                 msr_set_bit(MSR_AMD64_LS_CFG, 15);
636
637         /*
638          * Check whether the machine is affected by erratum 400. This is
639          * used to select the proper idle routine and to enable the check
640          * whether the machine is affected in arch_post_acpi_init(), which
641          * sets the X86_BUG_AMD_APIC_C1E bug depending on the MSR check.
642          */
643         if (cpu_has_amd_erratum(c, amd_erratum_400))
644                 set_cpu_bug(c, X86_BUG_AMD_E400);
645
646
647         /* Re-enable TopologyExtensions if switched off by BIOS */
648         if (c->x86 == 0x15 &&
649             (c->x86_model >= 0x10 && c->x86_model <= 0x6f) &&
650             !cpu_has(c, X86_FEATURE_TOPOEXT)) {
651
652                 if (msr_set_bit(0xc0011005, 54) > 0) {
653                         rdmsrl(0xc0011005, value);
654                         if (value & BIT_64(54)) {
655                                 set_cpu_cap(c, X86_FEATURE_TOPOEXT);
656                                 pr_info_once(FW_INFO "CPU: Re-enabling disabled Topology Extensions Support.\n");
657                         }
658                 }
659         }
660
661         amd_get_topology_early(c);
662 }
663
664 static void init_amd_k8(struct cpuinfo_x86 *c)
665 {
666         u32 level;
667         u64 value;
668
669         /* On C+ stepping K8 rep microcode works well for copy/memset */
670         level = cpuid_eax(1);
671         if ((level >= 0x0f48 && level < 0x0f50) || level >= 0x0f58)
672                 set_cpu_cap(c, X86_FEATURE_REP_GOOD);
673
674         /*
675          * Some BIOSes incorrectly force this feature, but only K8 revision D
676          * (model = 0x14) and later actually support it.
677          * (AMD Erratum #110, docId: 25759).
678          */
679         if (c->x86_model < 0x14 && cpu_has(c, X86_FEATURE_LAHF_LM)) {
680                 clear_cpu_cap(c, X86_FEATURE_LAHF_LM);
681                 if (!rdmsrl_amd_safe(0xc001100d, &value)) {
682                         value &= ~BIT_64(32);
683                         wrmsrl_amd_safe(0xc001100d, value);
684                 }
685         }
686
687         if (!c->x86_model_id[0])
688                 strcpy(c->x86_model_id, "Hammer");
689
690 #ifdef CONFIG_SMP
691         /*
692          * Disable TLB flush filter by setting HWCR.FFDIS on K8
693          * bit 6 of msr C001_0015
694          *
695          * Errata 63 for SH-B3 steppings
696          * Errata 122 for all steppings (F+ have it disabled by default)
697          */
698         msr_set_bit(MSR_K7_HWCR, 6);
699 #endif
700         set_cpu_bug(c, X86_BUG_SWAPGS_FENCE);
701 }
702
703 static void init_amd_gh(struct cpuinfo_x86 *c)
704 {
705 #ifdef CONFIG_X86_64
706         /* do this for boot cpu */
707         if (c == &boot_cpu_data)
708                 check_enable_amd_mmconf_dmi();
709
710         fam10h_check_enable_mmcfg();
711 #endif
712
713         /*
714          * Disable GART TLB Walk Errors on Fam10h. We do this here because this
715          * is always needed when GART is enabled, even in a kernel which has no
716          * MCE support built in. BIOS should disable GartTlbWlk Errors already.
717          * If it doesn't, we do it here as suggested by the BKDG.
718          *
719          * Fixes: https://bugzilla.kernel.org/show_bug.cgi?id=33012
720          */
721         msr_set_bit(MSR_AMD64_MCx_MASK(4), 10);
722
723         /*
724          * On family 10h BIOS may not have properly enabled WC+ support, causing
725          * it to be converted to CD memtype. This may result in performance
726          * degradation for certain nested-paging guests. Prevent this conversion
727          * by clearing bit 24 in MSR_AMD64_BU_CFG2.
728          *
729          * NOTE: we want to use the _safe accessors so as not to #GP kvm
730          * guests on older kvm hosts.
731          */
732         msr_clear_bit(MSR_AMD64_BU_CFG2, 24);
733
734         if (cpu_has_amd_erratum(c, amd_erratum_383))
735                 set_cpu_bug(c, X86_BUG_AMD_TLB_MMATCH);
736 }
737
738 static void init_amd_ln(struct cpuinfo_x86 *c)
739 {
740         /*
741          * Apply erratum 665 fix unconditionally so machines without a BIOS
742          * fix work.
743          */
744         msr_set_bit(MSR_AMD64_DE_CFG, 31);
745 }
746
747 static bool rdrand_force;
748
749 static int __init rdrand_cmdline(char *str)
750 {
751         if (!str)
752                 return -EINVAL;
753
754         if (!strcmp(str, "force"))
755                 rdrand_force = true;
756         else
757                 return -EINVAL;
758
759         return 0;
760 }
761 early_param("rdrand", rdrand_cmdline);
762
763 static void clear_rdrand_cpuid_bit(struct cpuinfo_x86 *c)
764 {
765         /*
766          * Saving of the MSR used to hide the RDRAND support during
767          * suspend/resume is done by arch/x86/power/cpu.c, which is
768          * dependent on CONFIG_PM_SLEEP.
769          */
770         if (!IS_ENABLED(CONFIG_PM_SLEEP))
771                 return;
772
773         /*
774          * The nordrand option can clear X86_FEATURE_RDRAND, so check for
775          * RDRAND support using the CPUID function directly.
776          */
777         if (!(cpuid_ecx(1) & BIT(30)) || rdrand_force)
778                 return;
779
780         msr_clear_bit(MSR_AMD64_CPUID_FN_1, 62);
781
782         /*
783          * Verify that the CPUID change has occurred in case the kernel is
784          * running virtualized and the hypervisor doesn't support the MSR.
785          */
786         if (cpuid_ecx(1) & BIT(30)) {
787                 pr_info_once("BIOS may not properly restore RDRAND after suspend, but hypervisor does not support hiding RDRAND via CPUID.\n");
788                 return;
789         }
790
791         clear_cpu_cap(c, X86_FEATURE_RDRAND);
792         pr_info_once("BIOS may not properly restore RDRAND after suspend, hiding RDRAND via CPUID. Use rdrand=force to reenable.\n");
793 }
794
795 static void init_amd_jg(struct cpuinfo_x86 *c)
796 {
797         /*
798          * Some BIOS implementations do not restore proper RDRAND support
799          * across suspend and resume. Check on whether to hide the RDRAND
800          * instruction support via CPUID.
801          */
802         clear_rdrand_cpuid_bit(c);
803 }
804
805 static void init_amd_bd(struct cpuinfo_x86 *c)
806 {
807         u64 value;
808
809         /*
810          * The way access filter has a performance penalty on some workloads.
811          * Disable it on the affected CPUs.
812          */
813         if ((c->x86_model >= 0x02) && (c->x86_model < 0x20)) {
814                 if (!rdmsrl_safe(MSR_F15H_IC_CFG, &value) && !(value & 0x1E)) {
815                         value |= 0x1E;
816                         wrmsrl_safe(MSR_F15H_IC_CFG, value);
817                 }
818         }
819
820         /*
821          * Some BIOS implementations do not restore proper RDRAND support
822          * across suspend and resume. Check on whether to hide the RDRAND
823          * instruction support via CPUID.
824          */
825         clear_rdrand_cpuid_bit(c);
826 }
827
828 static void init_amd_zn(struct cpuinfo_x86 *c)
829 {
830         set_cpu_cap(c, X86_FEATURE_ZEN);
831
832         /*
833          * Fix erratum 1076: CPB feature bit not being set in CPUID.
834          * Always set it, except when running under a hypervisor.
835          */
836         if (!cpu_has(c, X86_FEATURE_HYPERVISOR) && !cpu_has(c, X86_FEATURE_CPB))
837                 set_cpu_cap(c, X86_FEATURE_CPB);
838 }
839
840 static void init_amd(struct cpuinfo_x86 *c)
841 {
842         u32 dummy;
843
844         early_init_amd(c);
845
846         /*
847          * Bit 31 in normal CPUID used for nonstandard 3DNow ID;
848          * 3DNow is IDd by bit 31 in extended CPUID (1*32+31) anyway
849          */
850         clear_cpu_cap(c, 0*32+31);
851
852         if (c->x86 >= 0x10)
853                 set_cpu_cap(c, X86_FEATURE_REP_GOOD);
854
855         /* get apicid instead of initial apic id from cpuid */
856         c->apicid = hard_smp_processor_id();
857
858         /* K6s reports MCEs but don't actually have all the MSRs */
859         if (c->x86 < 6)
860                 clear_cpu_cap(c, X86_FEATURE_MCE);
861
862         switch (c->x86) {
863         case 4:    init_amd_k5(c); break;
864         case 5:    init_amd_k6(c); break;
865         case 6:    init_amd_k7(c); break;
866         case 0xf:  init_amd_k8(c); break;
867         case 0x10: init_amd_gh(c); break;
868         case 0x12: init_amd_ln(c); break;
869         case 0x15: init_amd_bd(c); break;
870         case 0x16: init_amd_jg(c); break;
871         case 0x17: init_amd_zn(c); break;
872         }
873
874         /* Enable workaround for FXSAVE leak */
875         if (c->x86 >= 6)
876                 set_cpu_bug(c, X86_BUG_FXSAVE_LEAK);
877
878         cpu_detect_cache_sizes(c);
879
880         amd_detect_cmp(c);
881         srat_detect_node(c);
882
883         init_amd_cacheinfo(c);
884
885         if (c->x86 >= 0xf)
886                 set_cpu_cap(c, X86_FEATURE_K8);
887
888         if (cpu_has(c, X86_FEATURE_XMM2)) {
889                 unsigned long long val;
890                 int ret;
891
892                 /*
893                  * A serializing LFENCE has less overhead than MFENCE, so
894                  * use it for execution serialization.  On families which
895                  * don't have that MSR, LFENCE is already serializing.
896                  * msr_set_bit() uses the safe accessors, too, even if the MSR
897                  * is not present.
898                  */
899                 msr_set_bit(MSR_AMD64_DE_CFG,
900                             MSR_AMD64_DE_CFG_LFENCE_SERIALIZE_BIT);
901
902                 /*
903                  * Verify that the MSR write was successful (could be running
904                  * under a hypervisor) and only then assume that LFENCE is
905                  * serializing.
906                  */
907                 ret = rdmsrl_safe(MSR_AMD64_DE_CFG, &val);
908                 if (!ret && (val & MSR_AMD64_DE_CFG_LFENCE_SERIALIZE_BIT)) {
909                         /* A serializing LFENCE stops RDTSC speculation */
910                         set_cpu_cap(c, X86_FEATURE_LFENCE_RDTSC);
911                 } else {
912                         /* MFENCE stops RDTSC speculation */
913                         set_cpu_cap(c, X86_FEATURE_MFENCE_RDTSC);
914                 }
915         }
916
917         /*
918          * Family 0x12 and above processors have APIC timer
919          * running in deep C states.
920          */
921         if (c->x86 > 0x11)
922                 set_cpu_cap(c, X86_FEATURE_ARAT);
923
924         rdmsr_safe(MSR_AMD64_PATCH_LEVEL, &c->microcode, &dummy);
925
926         /* 3DNow or LM implies PREFETCHW */
927         if (!cpu_has(c, X86_FEATURE_3DNOWPREFETCH))
928                 if (cpu_has(c, X86_FEATURE_3DNOW) || cpu_has(c, X86_FEATURE_LM))
929                         set_cpu_cap(c, X86_FEATURE_3DNOWPREFETCH);
930
931         /* AMD CPUs don't reset SS attributes on SYSRET, Xen does. */
932         if (!cpu_has(c, X86_FEATURE_XENPV))
933                 set_cpu_bug(c, X86_BUG_SYSRET_SS_ATTRS);
934 }
935
936 #ifdef CONFIG_X86_32
937 static unsigned int amd_size_cache(struct cpuinfo_x86 *c, unsigned int size)
938 {
939         /* AMD errata T13 (order #21922) */
940         if ((c->x86 == 6)) {
941                 /* Duron Rev A0 */
942                 if (c->x86_model == 3 && c->x86_stepping == 0)
943                         size = 64;
944                 /* Tbird rev A1/A2 */
945                 if (c->x86_model == 4 &&
946                         (c->x86_stepping == 0 || c->x86_stepping == 1))
947                         size = 256;
948         }
949         return size;
950 }
951 #endif
952
953 static void cpu_detect_tlb_amd(struct cpuinfo_x86 *c)
954 {
955         u32 ebx, eax, ecx, edx;
956         u16 mask = 0xfff;
957
958         if (c->x86 < 0xf)
959                 return;
960
961         if (c->extended_cpuid_level < 0x80000006)
962                 return;
963
964         cpuid(0x80000006, &eax, &ebx, &ecx, &edx);
965
966         tlb_lld_4k[ENTRIES] = (ebx >> 16) & mask;
967         tlb_lli_4k[ENTRIES] = ebx & mask;
968
969         /*
970          * K8 doesn't have 2M/4M entries in the L2 TLB so read out the L1 TLB
971          * characteristics from the CPUID function 0x80000005 instead.
972          */
973         if (c->x86 == 0xf) {
974                 cpuid(0x80000005, &eax, &ebx, &ecx, &edx);
975                 mask = 0xff;
976         }
977
978         /* Handle DTLB 2M and 4M sizes, fall back to L1 if L2 is disabled */
979         if (!((eax >> 16) & mask))
980                 tlb_lld_2m[ENTRIES] = (cpuid_eax(0x80000005) >> 16) & 0xff;
981         else
982                 tlb_lld_2m[ENTRIES] = (eax >> 16) & mask;
983
984         /* a 4M entry uses two 2M entries */
985         tlb_lld_4m[ENTRIES] = tlb_lld_2m[ENTRIES] >> 1;
986
987         /* Handle ITLB 2M and 4M sizes, fall back to L1 if L2 is disabled */
988         if (!(eax & mask)) {
989                 /* Erratum 658 */
990                 if (c->x86 == 0x15 && c->x86_model <= 0x1f) {
991                         tlb_lli_2m[ENTRIES] = 1024;
992                 } else {
993                         cpuid(0x80000005, &eax, &ebx, &ecx, &edx);
994                         tlb_lli_2m[ENTRIES] = eax & 0xff;
995                 }
996         } else
997                 tlb_lli_2m[ENTRIES] = eax & mask;
998
999         tlb_lli_4m[ENTRIES] = tlb_lli_2m[ENTRIES] >> 1;
1000 }
1001
1002 static const struct cpu_dev amd_cpu_dev = {
1003         .c_vendor       = "AMD",
1004         .c_ident        = { "AuthenticAMD" },
1005 #ifdef CONFIG_X86_32
1006         .legacy_models = {
1007                 { .family = 4, .model_names =
1008                   {
1009                           [3] = "486 DX/2",
1010                           [7] = "486 DX/2-WB",
1011                           [8] = "486 DX/4",
1012                           [9] = "486 DX/4-WB",
1013                           [14] = "Am5x86-WT",
1014                           [15] = "Am5x86-WB"
1015                   }
1016                 },
1017         },
1018         .legacy_cache_size = amd_size_cache,
1019 #endif
1020         .c_early_init   = early_init_amd,
1021         .c_detect_tlb   = cpu_detect_tlb_amd,
1022         .c_bsp_init     = bsp_init_amd,
1023         .c_init         = init_amd,
1024         .c_x86_vendor   = X86_VENDOR_AMD,
1025 };
1026
1027 cpu_dev_register(amd_cpu_dev);
1028
1029 /*
1030  * AMD errata checking
1031  *
1032  * Errata are defined as arrays of ints using the AMD_LEGACY_ERRATUM() or
1033  * AMD_OSVW_ERRATUM() macros. The latter is intended for newer errata that
1034  * have an OSVW id assigned, which it takes as first argument. Both take a
1035  * variable number of family-specific model-stepping ranges created by
1036  * AMD_MODEL_RANGE().
1037  *
1038  * Example:
1039  *
1040  * const int amd_erratum_319[] =
1041  *      AMD_LEGACY_ERRATUM(AMD_MODEL_RANGE(0x10, 0x2, 0x1, 0x4, 0x2),
1042  *                         AMD_MODEL_RANGE(0x10, 0x8, 0x0, 0x8, 0x0),
1043  *                         AMD_MODEL_RANGE(0x10, 0x9, 0x0, 0x9, 0x0));
1044  */
1045
1046 #define AMD_LEGACY_ERRATUM(...)         { -1, __VA_ARGS__, 0 }
1047 #define AMD_OSVW_ERRATUM(osvw_id, ...)  { osvw_id, __VA_ARGS__, 0 }
1048 #define AMD_MODEL_RANGE(f, m_start, s_start, m_end, s_end) \
1049         ((f << 24) | (m_start << 16) | (s_start << 12) | (m_end << 4) | (s_end))
1050 #define AMD_MODEL_RANGE_FAMILY(range)   (((range) >> 24) & 0xff)
1051 #define AMD_MODEL_RANGE_START(range)    (((range) >> 12) & 0xfff)
1052 #define AMD_MODEL_RANGE_END(range)      ((range) & 0xfff)
1053
1054 static const int amd_erratum_400[] =
1055         AMD_OSVW_ERRATUM(1, AMD_MODEL_RANGE(0xf, 0x41, 0x2, 0xff, 0xf),
1056                             AMD_MODEL_RANGE(0x10, 0x2, 0x1, 0xff, 0xf));
1057
1058 static const int amd_erratum_383[] =
1059         AMD_OSVW_ERRATUM(3, AMD_MODEL_RANGE(0x10, 0, 0, 0xff, 0xf));
1060
1061
1062 static bool cpu_has_amd_erratum(struct cpuinfo_x86 *cpu, const int *erratum)
1063 {
1064         int osvw_id = *erratum++;
1065         u32 range;
1066         u32 ms;
1067
1068         if (osvw_id >= 0 && osvw_id < 65536 &&
1069             cpu_has(cpu, X86_FEATURE_OSVW)) {
1070                 u64 osvw_len;
1071
1072                 rdmsrl(MSR_AMD64_OSVW_ID_LENGTH, osvw_len);
1073                 if (osvw_id < osvw_len) {
1074                         u64 osvw_bits;
1075
1076                         rdmsrl(MSR_AMD64_OSVW_STATUS + (osvw_id >> 6),
1077                             osvw_bits);
1078                         return osvw_bits & (1ULL << (osvw_id & 0x3f));
1079                 }
1080         }
1081
1082         /* OSVW unavailable or ID unknown, match family-model-stepping range */
1083         ms = (cpu->x86_model << 4) | cpu->x86_stepping;
1084         while ((range = *erratum++))
1085                 if ((cpu->x86 == AMD_MODEL_RANGE_FAMILY(range)) &&
1086                     (ms >= AMD_MODEL_RANGE_START(range)) &&
1087                     (ms <= AMD_MODEL_RANGE_END(range)))
1088                         return true;
1089
1090         return false;
1091 }
1092
1093 void set_dr_addr_mask(unsigned long mask, int dr)
1094 {
1095         if (!boot_cpu_has(X86_FEATURE_BPEXT))
1096                 return;
1097
1098         switch (dr) {
1099         case 0:
1100                 wrmsr(MSR_F16H_DR0_ADDR_MASK, mask, 0);
1101                 break;
1102         case 1:
1103         case 2:
1104         case 3:
1105                 wrmsr(MSR_F16H_DR1_ADDR_MASK - 1 + dr, mask, 0);
1106                 break;
1107         default:
1108                 break;
1109         }
1110 }