1 // SPDX-License-Identifier: GPL-2.0
3 #include <linux/sched.h>
4 #include <linux/sched/clock.h>
6 #include <asm/cpufeature.h>
7 #include <asm/e820/api.h>
13 #define ACE_PRESENT (1 << 6)
14 #define ACE_ENABLED (1 << 7)
15 #define ACE_FCR (1 << 28) /* MSR_VIA_FCR */
17 #define RNG_PRESENT (1 << 2)
18 #define RNG_ENABLED (1 << 3)
19 #define RNG_ENABLE (1 << 6) /* MSR_VIA_RNG */
21 static void init_c3(struct cpuinfo_x86
*c
)
25 /* Test for Centaur Extended Feature Flags presence */
26 if (cpuid_eax(0xC0000000) >= 0xC0000001) {
27 u32 tmp
= cpuid_edx(0xC0000001);
29 /* enable ACE unit, if present and disabled */
30 if ((tmp
& (ACE_PRESENT
| ACE_ENABLED
)) == ACE_PRESENT
) {
31 rdmsr(MSR_VIA_FCR
, lo
, hi
);
32 lo
|= ACE_FCR
; /* enable ACE unit */
33 wrmsr(MSR_VIA_FCR
, lo
, hi
);
34 pr_info("CPU: Enabled ACE h/w crypto\n");
37 /* enable RNG unit, if present and disabled */
38 if ((tmp
& (RNG_PRESENT
| RNG_ENABLED
)) == RNG_PRESENT
) {
39 rdmsr(MSR_VIA_RNG
, lo
, hi
);
40 lo
|= RNG_ENABLE
; /* enable RNG unit */
41 wrmsr(MSR_VIA_RNG
, lo
, hi
);
42 pr_info("CPU: Enabled h/w RNG\n");
45 /* store Centaur Extended Feature Flags as
46 * word 5 of the CPU capability bit array
48 c
->x86_capability
[CPUID_C000_0001_EDX
] = cpuid_edx(0xC0000001);
51 /* Cyrix III family needs CX8 & PGE explicitly enabled. */
52 if (c
->x86_model
>= 6 && c
->x86_model
<= 13) {
53 rdmsr(MSR_VIA_FCR
, lo
, hi
);
55 wrmsr(MSR_VIA_FCR
, lo
, hi
);
56 set_cpu_cap(c
, X86_FEATURE_CX8
);
59 /* Before Nehemiah, the C3's had 3dNOW! */
60 if (c
->x86_model
>= 6 && c
->x86_model
< 9)
61 set_cpu_cap(c
, X86_FEATURE_3DNOW
);
63 if (c
->x86
== 0x6 && c
->x86_model
>= 0xf) {
64 c
->x86_cache_alignment
= c
->x86_clflush_size
* 2;
65 set_cpu_cap(c
, X86_FEATURE_REP_GOOD
);
68 cpu_detect_cache_sizes(c
);
92 static void early_init_centaur(struct cpuinfo_x86
*c
)
97 /* Emulate MTRRs using Centaur's MCR. */
98 set_cpu_cap(c
, X86_FEATURE_CENTAUR_MCR
);
102 if (c
->x86_model
>= 0xf)
103 set_cpu_cap(c
, X86_FEATURE_CONSTANT_TSC
);
107 set_cpu_cap(c
, X86_FEATURE_SYSENTER32
);
111 static void init_centaur(struct cpuinfo_x86
*c
)
121 * Bit 31 in normal CPUID used for nonstandard 3DNow ID;
122 * 3DNow is IDd by bit 31 in extended CPUID (1*32+31) anyway
124 clear_cpu_cap(c
, 0*32+31);
126 early_init_centaur(c
);
130 switch (c
->x86_model
) {
133 fcr_set
= ECX8
|DSMC
|EDCTLB
|EMMX
|ERETSTK
;
135 pr_notice("Disabling bugged TSC.\n");
136 clear_cpu_cap(c
, X86_FEATURE_TSC
);
139 switch (c
->x86_stepping
) {
150 fcr_set
= ECX8
|DSMC
|DTLOCK
|EMMX
|EBRPRED
|ERETSTK
|
156 fcr_set
= ECX8
|DSMC
|DTLOCK
|EMMX
|EBRPRED
|ERETSTK
|
164 rdmsr(MSR_IDT_FCR1
, lo
, hi
);
165 newlo
= (lo
|fcr_set
) & (~fcr_clr
);
168 pr_info("Centaur FCR was 0x%X now 0x%X\n",
170 wrmsr(MSR_IDT_FCR1
, newlo
, hi
);
172 pr_info("Centaur FCR is 0x%X\n", lo
);
174 /* Emulate MTRRs using Centaur's MCR. */
175 set_cpu_cap(c
, X86_FEATURE_CENTAUR_MCR
);
177 set_cpu_cap(c
, X86_FEATURE_CX8
);
178 /* Set 3DNow! on Winchip 2 and above. */
179 if (c
->x86_model
>= 8)
180 set_cpu_cap(c
, X86_FEATURE_3DNOW
);
181 /* See if we can find out some more. */
182 if (cpuid_eax(0x80000000) >= 0x80000005) {
184 cpuid(0x80000005, &aa
, &bb
, &cc
, &dd
);
185 /* Add L1 data and code cache sizes. */
186 c
->x86_cache_size
= (cc
>>24)+(dd
>>24);
188 sprintf(c
->x86_model_id
, "WinChip %s", name
);
196 set_cpu_cap(c
, X86_FEATURE_LFENCE_RDTSC
);
202 centaur_size_cache(struct cpuinfo_x86
*c
, unsigned int size
)
204 /* VIA C3 CPUs (670-68F) need further shifting. */
205 if ((c
->x86
== 6) && ((c
->x86_model
== 7) || (c
->x86_model
== 8)))
209 * There's also an erratum in Nehemiah stepping 1, which
210 * returns '65KB' instead of '64KB'
211 * - Note, it seems this may only be in engineering samples.
213 if ((c
->x86
== 6) && (c
->x86_model
== 9) &&
214 (c
->x86_stepping
== 1) && (size
== 65))
220 static const struct cpu_dev centaur_cpu_dev
= {
221 .c_vendor
= "Centaur",
222 .c_ident
= { "CentaurHauls" },
223 .c_early_init
= early_init_centaur
,
224 .c_init
= init_centaur
,
226 .legacy_cache_size
= centaur_size_cache
,
228 .c_x86_vendor
= X86_VENDOR_CENTAUR
,
231 cpu_dev_register(centaur_cpu_dev
);