xref: /openbmc/linux/arch/x86/kernel/cpu/centaur.c (revision e601757102cfd3eeae068f53b3bc1234f3a2b2e9)
1acb04058SPeter Zijlstra 
2acb04058SPeter Zijlstra #include <linux/sched.h>
3*e6017571SIngo Molnar #include <linux/sched/clock.h>
4edc05e6dSIngo Molnar 
5cd4d09ecSBorislav Petkov #include <asm/cpufeature.h>
6f7627e25SThomas Gleixner #include <asm/e820.h>
7f7627e25SThomas Gleixner #include <asm/mtrr.h>
848f4c485SSebastian Andrzej Siewior #include <asm/msr.h>
9edc05e6dSIngo Molnar 
10f7627e25SThomas Gleixner #include "cpu.h"
11f7627e25SThomas Gleixner 
12f7627e25SThomas Gleixner #define ACE_PRESENT	(1 << 6)
13f7627e25SThomas Gleixner #define ACE_ENABLED	(1 << 7)
14f7627e25SThomas Gleixner #define ACE_FCR		(1 << 28)	/* MSR_VIA_FCR */
15f7627e25SThomas Gleixner 
16f7627e25SThomas Gleixner #define RNG_PRESENT	(1 << 2)
17f7627e25SThomas Gleixner #define RNG_ENABLED	(1 << 3)
18f7627e25SThomas Gleixner #define RNG_ENABLE	(1 << 6)	/* MSR_VIA_RNG */
19f7627e25SThomas Gleixner 
20148f9bb8SPaul Gortmaker static void init_c3(struct cpuinfo_x86 *c)
21f7627e25SThomas Gleixner {
22f7627e25SThomas Gleixner 	u32  lo, hi;
23f7627e25SThomas Gleixner 
24f7627e25SThomas Gleixner 	/* Test for Centaur Extended Feature Flags presence */
25f7627e25SThomas Gleixner 	if (cpuid_eax(0xC0000000) >= 0xC0000001) {
26f7627e25SThomas Gleixner 		u32 tmp = cpuid_edx(0xC0000001);
27f7627e25SThomas Gleixner 
28f7627e25SThomas Gleixner 		/* enable ACE unit, if present and disabled */
29f7627e25SThomas Gleixner 		if ((tmp & (ACE_PRESENT | ACE_ENABLED)) == ACE_PRESENT) {
30f7627e25SThomas Gleixner 			rdmsr(MSR_VIA_FCR, lo, hi);
31f7627e25SThomas Gleixner 			lo |= ACE_FCR;		/* enable ACE unit */
32f7627e25SThomas Gleixner 			wrmsr(MSR_VIA_FCR, lo, hi);
331b74dde7SChen Yucong 			pr_info("CPU: Enabled ACE h/w crypto\n");
34f7627e25SThomas Gleixner 		}
35f7627e25SThomas Gleixner 
36f7627e25SThomas Gleixner 		/* enable RNG unit, if present and disabled */
37f7627e25SThomas Gleixner 		if ((tmp & (RNG_PRESENT | RNG_ENABLED)) == RNG_PRESENT) {
38f7627e25SThomas Gleixner 			rdmsr(MSR_VIA_RNG, lo, hi);
39f7627e25SThomas Gleixner 			lo |= RNG_ENABLE;	/* enable RNG unit */
40f7627e25SThomas Gleixner 			wrmsr(MSR_VIA_RNG, lo, hi);
411b74dde7SChen Yucong 			pr_info("CPU: Enabled h/w RNG\n");
42f7627e25SThomas Gleixner 		}
43f7627e25SThomas Gleixner 
44f7627e25SThomas Gleixner 		/* store Centaur Extended Feature Flags as
45f7627e25SThomas Gleixner 		 * word 5 of the CPU capability bit array
46f7627e25SThomas Gleixner 		 */
4739c06df4SBorislav Petkov 		c->x86_capability[CPUID_C000_0001_EDX] = cpuid_edx(0xC0000001);
48f7627e25SThomas Gleixner 	}
4948f4c485SSebastian Andrzej Siewior #ifdef CONFIG_X86_32
5027b46d76SSimon Arlott 	/* Cyrix III family needs CX8 & PGE explicitly enabled. */
51cb3f718dSTimo Teräs 	if (c->x86_model >= 6 && c->x86_model <= 13) {
52f7627e25SThomas Gleixner 		rdmsr(MSR_VIA_FCR, lo, hi);
53f7627e25SThomas Gleixner 		lo |= (1<<1 | 1<<7);
54f7627e25SThomas Gleixner 		wrmsr(MSR_VIA_FCR, lo, hi);
55e1a94a97SIngo Molnar 		set_cpu_cap(c, X86_FEATURE_CX8);
56f7627e25SThomas Gleixner 	}
57f7627e25SThomas Gleixner 
58f7627e25SThomas Gleixner 	/* Before Nehemiah, the C3's had 3dNOW! */
59f7627e25SThomas Gleixner 	if (c->x86_model >= 6 && c->x86_model < 9)
60e1a94a97SIngo Molnar 		set_cpu_cap(c, X86_FEATURE_3DNOW);
6148f4c485SSebastian Andrzej Siewior #endif
6248f4c485SSebastian Andrzej Siewior 	if (c->x86 == 0x6 && c->x86_model >= 0xf) {
6348f4c485SSebastian Andrzej Siewior 		c->x86_cache_alignment = c->x86_clflush_size * 2;
6448f4c485SSebastian Andrzej Siewior 		set_cpu_cap(c, X86_FEATURE_REP_GOOD);
6548f4c485SSebastian Andrzej Siewior 	}
66f7627e25SThomas Gleixner 
6727c13eceSBorislav Petkov 	cpu_detect_cache_sizes(c);
68f7627e25SThomas Gleixner }
69f7627e25SThomas Gleixner 
70f7627e25SThomas Gleixner enum {
71f7627e25SThomas Gleixner 		ECX8		= 1<<1,
72f7627e25SThomas Gleixner 		EIERRINT	= 1<<2,
73f7627e25SThomas Gleixner 		DPM		= 1<<3,
74f7627e25SThomas Gleixner 		DMCE		= 1<<4,
75f7627e25SThomas Gleixner 		DSTPCLK		= 1<<5,
76f7627e25SThomas Gleixner 		ELINEAR		= 1<<6,
77f7627e25SThomas Gleixner 		DSMC		= 1<<7,
78f7627e25SThomas Gleixner 		DTLOCK		= 1<<8,
79f7627e25SThomas Gleixner 		EDCTLB		= 1<<8,
80f7627e25SThomas Gleixner 		EMMX		= 1<<9,
81f7627e25SThomas Gleixner 		DPDC		= 1<<11,
82f7627e25SThomas Gleixner 		EBRPRED		= 1<<12,
83f7627e25SThomas Gleixner 		DIC		= 1<<13,
84f7627e25SThomas Gleixner 		DDC		= 1<<14,
85f7627e25SThomas Gleixner 		DNA		= 1<<15,
86f7627e25SThomas Gleixner 		ERETSTK		= 1<<16,
87f7627e25SThomas Gleixner 		E2MMX		= 1<<19,
88f7627e25SThomas Gleixner 		EAMD3D		= 1<<20,
89f7627e25SThomas Gleixner };
90f7627e25SThomas Gleixner 
91148f9bb8SPaul Gortmaker static void early_init_centaur(struct cpuinfo_x86 *c)
925fef55fdSYinghai Lu {
935fef55fdSYinghai Lu 	switch (c->x86) {
9448f4c485SSebastian Andrzej Siewior #ifdef CONFIG_X86_32
955fef55fdSYinghai Lu 	case 5:
965fef55fdSYinghai Lu 		/* Emulate MTRRs using Centaur's MCR. */
975fef55fdSYinghai Lu 		set_cpu_cap(c, X86_FEATURE_CENTAUR_MCR);
985fef55fdSYinghai Lu 		break;
9948f4c485SSebastian Andrzej Siewior #endif
10048f4c485SSebastian Andrzej Siewior 	case 6:
10148f4c485SSebastian Andrzej Siewior 		if (c->x86_model >= 0xf)
10248f4c485SSebastian Andrzej Siewior 			set_cpu_cap(c, X86_FEATURE_CONSTANT_TSC);
10348f4c485SSebastian Andrzej Siewior 		break;
1045fef55fdSYinghai Lu 	}
10548f4c485SSebastian Andrzej Siewior #ifdef CONFIG_X86_64
10648f4c485SSebastian Andrzej Siewior 	set_cpu_cap(c, X86_FEATURE_SYSENTER32);
10748f4c485SSebastian Andrzej Siewior #endif
108acb04058SPeter Zijlstra 
109acb04058SPeter Zijlstra 	clear_sched_clock_stable();
1105fef55fdSYinghai Lu }
1115fef55fdSYinghai Lu 
112148f9bb8SPaul Gortmaker static void init_centaur(struct cpuinfo_x86 *c)
113edc05e6dSIngo Molnar {
11448f4c485SSebastian Andrzej Siewior #ifdef CONFIG_X86_32
115f7627e25SThomas Gleixner 	char *name;
116f7627e25SThomas Gleixner 	u32  fcr_set = 0;
117f7627e25SThomas Gleixner 	u32  fcr_clr = 0;
118f7627e25SThomas Gleixner 	u32  lo, hi, newlo;
119f7627e25SThomas Gleixner 	u32  aa, bb, cc, dd;
120f7627e25SThomas Gleixner 
121edc05e6dSIngo Molnar 	/*
122edc05e6dSIngo Molnar 	 * Bit 31 in normal CPUID used for nonstandard 3DNow ID;
123edc05e6dSIngo Molnar 	 * 3DNow is IDd by bit 31 in extended CPUID (1*32+31) anyway
124edc05e6dSIngo Molnar 	 */
125e1a94a97SIngo Molnar 	clear_cpu_cap(c, 0*32+31);
12648f4c485SSebastian Andrzej Siewior #endif
12748f4c485SSebastian Andrzej Siewior 	early_init_centaur(c);
128f7627e25SThomas Gleixner 	switch (c->x86) {
12948f4c485SSebastian Andrzej Siewior #ifdef CONFIG_X86_32
130f7627e25SThomas Gleixner 	case 5:
131f7627e25SThomas Gleixner 		switch (c->x86_model) {
132f7627e25SThomas Gleixner 		case 4:
133f7627e25SThomas Gleixner 			name = "C6";
134f7627e25SThomas Gleixner 			fcr_set = ECX8|DSMC|EDCTLB|EMMX|ERETSTK;
135f7627e25SThomas Gleixner 			fcr_clr = DPDC;
1361b74dde7SChen Yucong 			pr_notice("Disabling bugged TSC.\n");
137e1a94a97SIngo Molnar 			clear_cpu_cap(c, X86_FEATURE_TSC);
138f7627e25SThomas Gleixner 			break;
139f7627e25SThomas Gleixner 		case 8:
140f7627e25SThomas Gleixner 			switch (c->x86_mask) {
141f7627e25SThomas Gleixner 			default:
142f7627e25SThomas Gleixner 			name = "2";
143f7627e25SThomas Gleixner 				break;
144f7627e25SThomas Gleixner 			case 7 ... 9:
145f7627e25SThomas Gleixner 				name = "2A";
146f7627e25SThomas Gleixner 				break;
147f7627e25SThomas Gleixner 			case 10 ... 15:
148f7627e25SThomas Gleixner 				name = "2B";
149f7627e25SThomas Gleixner 				break;
150f7627e25SThomas Gleixner 			}
151edc05e6dSIngo Molnar 			fcr_set = ECX8|DSMC|DTLOCK|EMMX|EBRPRED|ERETSTK|
152edc05e6dSIngo Molnar 				  E2MMX|EAMD3D;
153f7627e25SThomas Gleixner 			fcr_clr = DPDC;
154f7627e25SThomas Gleixner 			break;
155f7627e25SThomas Gleixner 		case 9:
156f7627e25SThomas Gleixner 			name = "3";
157edc05e6dSIngo Molnar 			fcr_set = ECX8|DSMC|DTLOCK|EMMX|EBRPRED|ERETSTK|
158edc05e6dSIngo Molnar 				  E2MMX|EAMD3D;
159f7627e25SThomas Gleixner 			fcr_clr = DPDC;
160f7627e25SThomas Gleixner 			break;
161f7627e25SThomas Gleixner 		default:
162f7627e25SThomas Gleixner 			name = "??";
163f7627e25SThomas Gleixner 		}
164f7627e25SThomas Gleixner 
165f7627e25SThomas Gleixner 		rdmsr(MSR_IDT_FCR1, lo, hi);
166f7627e25SThomas Gleixner 		newlo = (lo|fcr_set) & (~fcr_clr);
167f7627e25SThomas Gleixner 
168f7627e25SThomas Gleixner 		if (newlo != lo) {
1691b74dde7SChen Yucong 			pr_info("Centaur FCR was 0x%X now 0x%X\n",
170edc05e6dSIngo Molnar 				lo, newlo);
171f7627e25SThomas Gleixner 			wrmsr(MSR_IDT_FCR1, newlo, hi);
172f7627e25SThomas Gleixner 		} else {
1731b74dde7SChen Yucong 			pr_info("Centaur FCR is 0x%X\n", lo);
174f7627e25SThomas Gleixner 		}
175f7627e25SThomas Gleixner 		/* Emulate MTRRs using Centaur's MCR. */
176e1a94a97SIngo Molnar 		set_cpu_cap(c, X86_FEATURE_CENTAUR_MCR);
177f7627e25SThomas Gleixner 		/* Report CX8 */
178e1a94a97SIngo Molnar 		set_cpu_cap(c, X86_FEATURE_CX8);
179f7627e25SThomas Gleixner 		/* Set 3DNow! on Winchip 2 and above. */
180f7627e25SThomas Gleixner 		if (c->x86_model >= 8)
181e1a94a97SIngo Molnar 			set_cpu_cap(c, X86_FEATURE_3DNOW);
182f7627e25SThomas Gleixner 		/* See if we can find out some more. */
183f7627e25SThomas Gleixner 		if (cpuid_eax(0x80000000) >= 0x80000005) {
184f7627e25SThomas Gleixner 			/* Yes, we can. */
185f7627e25SThomas Gleixner 			cpuid(0x80000005, &aa, &bb, &cc, &dd);
186f7627e25SThomas Gleixner 			/* Add L1 data and code cache sizes. */
187f7627e25SThomas Gleixner 			c->x86_cache_size = (cc>>24)+(dd>>24);
188f7627e25SThomas Gleixner 		}
189f7627e25SThomas Gleixner 		sprintf(c->x86_model_id, "WinChip %s", name);
190f7627e25SThomas Gleixner 		break;
19148f4c485SSebastian Andrzej Siewior #endif
192f7627e25SThomas Gleixner 	case 6:
193f7627e25SThomas Gleixner 		init_c3(c);
194f7627e25SThomas Gleixner 		break;
195f7627e25SThomas Gleixner 	}
19648f4c485SSebastian Andrzej Siewior #ifdef CONFIG_X86_64
19748f4c485SSebastian Andrzej Siewior 	set_cpu_cap(c, X86_FEATURE_LFENCE_RDTSC);
19848f4c485SSebastian Andrzej Siewior #endif
199f7627e25SThomas Gleixner }
200f7627e25SThomas Gleixner 
20109dc68d9SJan Beulich #ifdef CONFIG_X86_32
202148f9bb8SPaul Gortmaker static unsigned int
203edc05e6dSIngo Molnar centaur_size_cache(struct cpuinfo_x86 *c, unsigned int size)
204f7627e25SThomas Gleixner {
205f7627e25SThomas Gleixner 	/* VIA C3 CPUs (670-68F) need further shifting. */
206f7627e25SThomas Gleixner 	if ((c->x86 == 6) && ((c->x86_model == 7) || (c->x86_model == 8)))
207f7627e25SThomas Gleixner 		size >>= 8;
208f7627e25SThomas Gleixner 
209edc05e6dSIngo Molnar 	/*
210edc05e6dSIngo Molnar 	 * There's also an erratum in Nehemiah stepping 1, which
211edc05e6dSIngo Molnar 	 * returns '65KB' instead of '64KB'
212edc05e6dSIngo Molnar 	 *  - Note, it seems this may only be in engineering samples.
213edc05e6dSIngo Molnar 	 */
214edc05e6dSIngo Molnar 	if ((c->x86 == 6) && (c->x86_model == 9) &&
215edc05e6dSIngo Molnar 				(c->x86_mask == 1) && (size == 65))
216f7627e25SThomas Gleixner 		size -= 1;
217f7627e25SThomas Gleixner 	return size;
218f7627e25SThomas Gleixner }
21909dc68d9SJan Beulich #endif
220f7627e25SThomas Gleixner 
221148f9bb8SPaul Gortmaker static const struct cpu_dev centaur_cpu_dev = {
222f7627e25SThomas Gleixner 	.c_vendor	= "Centaur",
223f7627e25SThomas Gleixner 	.c_ident	= { "CentaurHauls" },
2245fef55fdSYinghai Lu 	.c_early_init	= early_init_centaur,
225f7627e25SThomas Gleixner 	.c_init		= init_centaur,
22609dc68d9SJan Beulich #ifdef CONFIG_X86_32
22709dc68d9SJan Beulich 	.legacy_cache_size = centaur_size_cache,
22809dc68d9SJan Beulich #endif
22910a434fcSYinghai Lu 	.c_x86_vendor	= X86_VENDOR_CENTAUR,
230f7627e25SThomas Gleixner };
231f7627e25SThomas Gleixner 
23210a434fcSYinghai Lu cpu_dev_register(centaur_cpu_dev);
233