xref: /linux/arch/x86/kernel/cpu/scattered.c (revision 9f72f855a6cdbb5313787145a69b474cd9f55f28)
1 /*
2  *	Routines to identify additional cpu features that are scattered in
3  *	cpuid space.
4  */
5 #include <linux/cpu.h>
6 
7 #include <asm/pat.h>
8 #include <asm/processor.h>
9 
10 #include <asm/apic.h>
11 
12 struct cpuid_bit {
13 	u16 feature;
14 	u8 reg;
15 	u8 bit;
16 	u32 level;
17 	u32 sub_leaf;
18 };
19 
20 /*
21  * Please keep the leaf sorted by cpuid_bit.level for faster search.
22  * X86_FEATURE_MBA is supported by both Intel and AMD. But the CPUID
23  * levels are different and there is a separate entry for each.
24  */
25 static const struct cpuid_bit cpuid_bits[] = {
26 	{ X86_FEATURE_APERFMPERF,       CPUID_ECX,  0, 0x00000006, 0 },
27 	{ X86_FEATURE_EPB,		CPUID_ECX,  3, 0x00000006, 0 },
28 	{ X86_FEATURE_CAT_L3,		CPUID_EBX,  1, 0x00000010, 0 },
29 	{ X86_FEATURE_CAT_L2,		CPUID_EBX,  2, 0x00000010, 0 },
30 	{ X86_FEATURE_CDP_L3,		CPUID_ECX,  2, 0x00000010, 1 },
31 	{ X86_FEATURE_CDP_L2,		CPUID_ECX,  2, 0x00000010, 2 },
32 	{ X86_FEATURE_MBA,		CPUID_EBX,  3, 0x00000010, 0 },
33 	{ X86_FEATURE_HW_PSTATE,	CPUID_EDX,  7, 0x80000007, 0 },
34 	{ X86_FEATURE_CPB,		CPUID_EDX,  9, 0x80000007, 0 },
35 	{ X86_FEATURE_PROC_FEEDBACK,    CPUID_EDX, 11, 0x80000007, 0 },
36 	{ X86_FEATURE_MBA,		CPUID_EBX,  6, 0x80000008, 0 },
37 	{ X86_FEATURE_SME,		CPUID_EAX,  0, 0x8000001f, 0 },
38 	{ X86_FEATURE_SEV,		CPUID_EAX,  1, 0x8000001f, 0 },
39 	{ 0, 0, 0, 0, 0 }
40 };
41 
42 void init_scattered_cpuid_features(struct cpuinfo_x86 *c)
43 {
44 	u32 max_level;
45 	u32 regs[4];
46 	const struct cpuid_bit *cb;
47 
48 	for (cb = cpuid_bits; cb->feature; cb++) {
49 
50 		/* Verify that the level is valid */
51 		max_level = cpuid_eax(cb->level & 0xffff0000);
52 		if (max_level < cb->level ||
53 		    max_level > (cb->level | 0xffff))
54 			continue;
55 
56 		cpuid_count(cb->level, cb->sub_leaf, &regs[CPUID_EAX],
57 			    &regs[CPUID_EBX], &regs[CPUID_ECX],
58 			    &regs[CPUID_EDX]);
59 
60 		if (regs[cb->reg] & (1 << cb->bit))
61 			set_cpu_cap(c, cb->feature);
62 	}
63 }
64 
65 u32 get_scattered_cpuid_leaf(unsigned int level, unsigned int sub_leaf,
66 			     enum cpuid_regs_idx reg)
67 {
68 	const struct cpuid_bit *cb;
69 	u32 cpuid_val = 0;
70 
71 	for (cb = cpuid_bits; cb->feature; cb++) {
72 
73 		if (level > cb->level)
74 			continue;
75 
76 		if (level < cb->level)
77 			break;
78 
79 		if (reg == cb->reg && sub_leaf == cb->sub_leaf) {
80 			if (cpu_has(&boot_cpu_data, cb->feature))
81 				cpuid_val |= BIT(cb->bit);
82 		}
83 	}
84 
85 	return cpuid_val;
86 }
87 EXPORT_SYMBOL_GPL(get_scattered_cpuid_leaf);
88