]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - arch/x86/kernel/cpu/cyrix.c
Merge tag 'iio-for-4.13b' of git://git.kernel.org/pub/scm/linux/kernel/git/jic23...
[mirror_ubuntu-artful-kernel.git] / arch / x86 / kernel / cpu / cyrix.c
CommitLineData
1da177e4
LT
1#include <linux/bitops.h>
2#include <linux/delay.h>
3#include <linux/pci.h>
4#include <asm/dma.h>
8bdbd962 5#include <linux/io.h>
f25f64ed 6#include <asm/processor-cyrix.h>
7ebad705 7#include <asm/processor-flags.h>
8bdbd962 8#include <linux/timer.h>
120fad72 9#include <asm/pci-direct.h>
e8edc6e0 10#include <asm/tsc.h>
cd4d09ec 11#include <asm/cpufeature.h>
acb04058 12#include <linux/sched.h>
e6017571 13#include <linux/sched/clock.h>
1da177e4
LT
14
15#include "cpu.h"
16
17/*
18 * Read NSC/Cyrix DEVID registers (DIR) to get more detailed info. about the CPU
19 */
148f9bb8 20static void __do_cyrix_devid(unsigned char *dir0, unsigned char *dir1)
1da177e4
LT
21{
22 unsigned char ccr2, ccr3;
adf85265 23
1da177e4 24 /* we test for DEVID by checking whether CCR3 is writable */
1da177e4
LT
25 ccr3 = getCx86(CX86_CCR3);
26 setCx86(CX86_CCR3, ccr3 ^ 0x80);
27 getCx86(0xc0); /* dummy to change bus */
28
29 if (getCx86(CX86_CCR3) == ccr3) { /* no DEVID regs. */
30 ccr2 = getCx86(CX86_CCR2);
31 setCx86(CX86_CCR2, ccr2 ^ 0x04);
32 getCx86(0xc0); /* dummy */
33
34 if (getCx86(CX86_CCR2) == ccr2) /* old Cx486SLC/DLC */
35 *dir0 = 0xfd;
36 else { /* Cx486S A step */
37 setCx86(CX86_CCR2, ccr2);
38 *dir0 = 0xfe;
39 }
adf85265 40 } else {
1da177e4
LT
41 setCx86(CX86_CCR3, ccr3); /* restore CCR3 */
42
43 /* read DIR0 and DIR1 CPU registers */
44 *dir0 = getCx86(CX86_DIR0);
45 *dir1 = getCx86(CX86_DIR1);
46 }
1da177e4
LT
47}
48
148f9bb8 49static void do_cyrix_devid(unsigned char *dir0, unsigned char *dir1)
5fef55fd
YL
50{
51 unsigned long flags;
52
53 local_irq_save(flags);
54 __do_cyrix_devid(dir0, dir1);
55 local_irq_restore(flags);
56}
1da177e4
LT
57/*
58 * Cx86_dir0_msb is a HACK needed by check_cx686_cpuid/slop in bugs.h in
59 * order to identify the Cyrix CPU model after we're out of setup.c
60 *
61 * Actually since bugs.h doesn't even reference this perhaps someone should
62 * fix the documentation ???
63 */
148f9bb8 64static unsigned char Cx86_dir0_msb = 0;
1da177e4 65
148f9bb8 66static const char Cx86_model[][9] = {
1da177e4
LT
67 "Cx486", "Cx486", "5x86 ", "6x86", "MediaGX ", "6x86MX ",
68 "M II ", "Unknown"
69};
148f9bb8 70static const char Cx486_name[][5] = {
1da177e4
LT
71 "SLC", "DLC", "SLC2", "DLC2", "SRx", "DRx",
72 "SRx2", "DRx2"
73};
148f9bb8 74static const char Cx486S_name[][4] = {
1da177e4
LT
75 "S", "S2", "Se", "S2e"
76};
148f9bb8 77static const char Cx486D_name[][4] = {
1da177e4
LT
78 "DX", "DX2", "?", "?", "?", "DX4"
79};
148f9bb8
PG
80static char Cx86_cb[] = "?.5x Core/Bus Clock";
81static const char cyrix_model_mult1[] = "12??43";
82static const char cyrix_model_mult2[] = "12233445";
1da177e4
LT
83
84/*
85 * Reset the slow-loop (SLOP) bit on the 686(L) which is set by some old
86 * BIOSes for compatibility with DOS games. This makes the udelay loop
87 * work correctly, and improves performance.
88 *
89 * FIXME: our newer udelay uses the tsc. We don't need to frob with SLOP
90 */
91
148f9bb8 92static void check_cx686_slop(struct cpuinfo_x86 *c)
1da177e4
LT
93{
94 unsigned long flags;
adf85265 95
1da177e4
LT
96 if (Cx86_dir0_msb == 3) {
97 unsigned char ccr3, ccr5;
98
99 local_irq_save(flags);
100 ccr3 = getCx86(CX86_CCR3);
db955170 101 setCx86(CX86_CCR3, (ccr3 & 0x0f) | 0x10); /* enable MAPEN */
1da177e4
LT
102 ccr5 = getCx86(CX86_CCR5);
103 if (ccr5 & 2)
104 setCx86(CX86_CCR5, ccr5 & 0xfd); /* reset SLOP */
105 setCx86(CX86_CCR3, ccr3); /* disable MAPEN */
106 local_irq_restore(flags);
107
108 if (ccr5 & 2) { /* possible wrong calibration done */
1b74dde7 109 pr_info("Recalibrating delay loop with SLOP bit reset\n");
1da177e4
LT
110 calibrate_delay();
111 c->loops_per_jiffy = loops_per_jiffy;
112 }
113 }
114}
115
116
148f9bb8 117static void set_cx86_reorder(void)
1da177e4
LT
118{
119 u8 ccr3;
120
1b74dde7 121 pr_info("Enable Memory access reorder on Cyrix/NSC processor.\n");
1da177e4 122 ccr3 = getCx86(CX86_CCR3);
96de0e25 123 setCx86(CX86_CCR3, (ccr3 & 0x0f) | 0x10); /* enable MAPEN */
1da177e4 124
96de0e25 125 /* Load/Store Serialize to mem access disable (=reorder it) */
026e2c05 126 setCx86_old(CX86_PCR0, getCx86_old(CX86_PCR0) & ~0x80);
1da177e4
LT
127 /* set load/store serialize from 1GB to 4GB */
128 ccr3 |= 0xe0;
129 setCx86(CX86_CCR3, ccr3);
130}
131
148f9bb8 132static void set_cx86_memwb(void)
1da177e4 133{
1b74dde7 134 pr_info("Enable Memory-Write-back mode on Cyrix/NSC processor.\n");
1da177e4
LT
135
136 /* CCR2 bit 2: unlock NW bit */
026e2c05 137 setCx86_old(CX86_CCR2, getCx86_old(CX86_CCR2) & ~0x04);
1da177e4 138 /* set 'Not Write-through' */
7ebad705 139 write_cr0(read_cr0() | X86_CR0_NW);
1da177e4 140 /* CCR2 bit 2: lock NW bit and set WT1 */
026e2c05 141 setCx86_old(CX86_CCR2, getCx86_old(CX86_CCR2) | 0x14);
1da177e4
LT
142}
143
1da177e4
LT
144/*
145 * Configure later MediaGX and/or Geode processor.
146 */
147
148f9bb8 148static void geode_configure(void)
1da177e4
LT
149{
150 unsigned long flags;
bcde1ebb 151 u8 ccr3;
1da177e4
LT
152 local_irq_save(flags);
153
154 /* Suspend on halt power saving and enable #SUSP pin */
026e2c05 155 setCx86_old(CX86_CCR2, getCx86_old(CX86_CCR2) | 0x88);
1da177e4
LT
156
157 ccr3 = getCx86(CX86_CCR3);
bcde1ebb 158 setCx86(CX86_CCR3, (ccr3 & 0x0f) | 0x10); /* enable MAPEN */
adf85265 159
bcde1ebb
TY
160
161 /* FPU fast, DTE cache, Mem bypass */
026e2c05 162 setCx86_old(CX86_CCR4, getCx86_old(CX86_CCR4) | 0x38);
bcde1ebb 163 setCx86(CX86_CCR3, ccr3); /* disable MAPEN */
adf85265 164
1da177e4 165 set_cx86_memwb();
adf85265 166 set_cx86_reorder();
adf85265 167
1da177e4
LT
168 local_irq_restore(flags);
169}
170
148f9bb8 171static void early_init_cyrix(struct cpuinfo_x86 *c)
5fef55fd
YL
172{
173 unsigned char dir0, dir0_msn, dir1 = 0;
174
175 __do_cyrix_devid(&dir0, &dir1);
176 dir0_msn = dir0 >> 4; /* identifies CPU "family" */
177
178 switch (dir0_msn) {
179 case 3: /* 6x86/6x86L */
180 /* Emulate MTRRs using Cyrix's ARRs. */
181 set_cpu_cap(c, X86_FEATURE_CYRIX_ARR);
182 break;
183 case 5: /* 6x86MX/M II */
184 /* Emulate MTRRs using Cyrix's ARRs. */
185 set_cpu_cap(c, X86_FEATURE_CYRIX_ARR);
186 break;
187 }
188}
1da177e4 189
148f9bb8 190static void init_cyrix(struct cpuinfo_x86 *c)
1da177e4
LT
191{
192 unsigned char dir0, dir0_msn, dir0_lsn, dir1 = 0;
193 char *buf = c->x86_model_id;
194 const char *p = NULL;
195
adf85265
PC
196 /*
197 * Bit 31 in normal CPUID used for nonstandard 3DNow ID;
198 * 3DNow is IDd by bit 31 in extended CPUID (1*32+31) anyway
199 */
1d007cd5 200 clear_cpu_cap(c, 0*32+31);
1da177e4
LT
201
202 /* Cyrix used bit 24 in extended (AMD) CPUID for Cyrix MMX extensions */
1d007cd5
IM
203 if (test_cpu_cap(c, 1*32+24)) {
204 clear_cpu_cap(c, 1*32+24);
205 set_cpu_cap(c, X86_FEATURE_CXMMX);
1da177e4
LT
206 }
207
208 do_cyrix_devid(&dir0, &dir1);
209
210 check_cx686_slop(c);
211
212 Cx86_dir0_msb = dir0_msn = dir0 >> 4; /* identifies CPU "family" */
213 dir0_lsn = dir0 & 0xf; /* model or clock multiplier */
214
215 /* common case step number/rev -- exceptions handled below */
216 c->x86_model = (dir1 >> 4) + 1;
217 c->x86_mask = dir1 & 0xf;
218
219 /* Now cook; the original recipe is by Channing Corn, from Cyrix.
220 * We do the same thing for each generation: we work out
221 * the model, multiplier and stepping. Black magic included,
222 * to make the silicon step/rev numbers match the printed ones.
223 */
adf85265 224
1da177e4
LT
225 switch (dir0_msn) {
226 unsigned char tmp;
227
228 case 0: /* Cx486SLC/DLC/SRx/DRx */
229 p = Cx486_name[dir0_lsn & 7];
230 break;
231
232 case 1: /* Cx486S/DX/DX2/DX4 */
233 p = (dir0_lsn & 8) ? Cx486D_name[dir0_lsn & 5]
234 : Cx486S_name[dir0_lsn & 3];
235 break;
236
237 case 2: /* 5x86 */
238 Cx86_cb[2] = cyrix_model_mult1[dir0_lsn & 5];
239 p = Cx86_cb+2;
240 break;
241
242 case 3: /* 6x86/6x86L */
243 Cx86_cb[1] = ' ';
244 Cx86_cb[2] = cyrix_model_mult1[dir0_lsn & 5];
245 if (dir1 > 0x21) { /* 686L */
246 Cx86_cb[0] = 'L';
247 p = Cx86_cb;
248 (c->x86_model)++;
249 } else /* 686 */
250 p = Cx86_cb+1;
251 /* Emulate MTRRs using Cyrix's ARRs. */
1d007cd5 252 set_cpu_cap(c, X86_FEATURE_CYRIX_ARR);
1da177e4 253 /* 6x86's contain this bug */
c5b41a67 254 set_cpu_bug(c, X86_BUG_COMA);
1da177e4
LT
255 break;
256
257 case 4: /* MediaGX/GXm or Geode GXM/GXLV/GX1 */
ae1d557d 258 case 11: /* GX1 with inverted Device ID */
1da177e4 259#ifdef CONFIG_PCI
120fad72
AC
260 {
261 u32 vendor, device;
adf85265
PC
262 /*
263 * It isn't really a PCI quirk directly, but the cure is the
264 * same. The MediaGX has deep magic SMM stuff that handles the
265 * SB emulation. It throws away the fifo on disable_dma() which
266 * is wrong and ruins the audio.
267 *
268 * Bug2: VSA1 has a wrap bug so that using maximum sized DMA
269 * causes bad things. According to NatSemi VSA2 has another
270 * bug to do with 'hlt'. I've not seen any boards using VSA2
271 * and X doesn't seem to support it either so who cares 8).
272 * VSA1 we work around however.
273 */
1da177e4 274
1b74dde7 275 pr_info("Working around Cyrix MediaGX virtual DMA bugs.\n");
1da177e4 276 isa_dma_bridge_buggy = 2;
cefc0113 277
120fad72
AC
278 /* We do this before the PCI layer is running. However we
279 are safe here as we know the bridge must be a Cyrix
280 companion and must be present */
281 vendor = read_pci_config_16(0, 0, 0x12, PCI_VENDOR_ID);
282 device = read_pci_config_16(0, 0, 0x12, PCI_DEVICE_ID);
cefc0113 283
1da177e4
LT
284 /*
285 * The 5510/5520 companion chips have a funky PIT.
adf85265 286 */
120fad72 287 if (vendor == PCI_VENDOR_ID_CYRIX &&
8bdbd962
AC
288 (device == PCI_DEVICE_ID_CYRIX_5510 ||
289 device == PCI_DEVICE_ID_CYRIX_5520))
5a90cf20 290 mark_tsc_unstable("cyrix 5510/5520 detected");
120fad72 291 }
cefc0113 292#endif
adf85265 293 c->x86_cache_size = 16; /* Yep 16K integrated cache thats it */
1da177e4
LT
294
295 /* GXm supports extended cpuid levels 'ala' AMD */
296 if (c->cpuid_level == 2) {
297 /* Enable cxMMX extensions (GX1 Datasheet 54) */
026e2c05 298 setCx86_old(CX86_CCR7, getCx86_old(CX86_CCR7) | 1);
adf85265 299
2632f01a 300 /*
301 * GXm : 0x30 ... 0x5f GXm datasheet 51
302 * GXlv: 0x6x GXlv datasheet 54
303 * ? : 0x7x
304 * GX1 : 0x8x GX1 datasheet 56
305 */
8bdbd962
AC
306 if ((0x30 <= dir1 && dir1 <= 0x6f) ||
307 (0x80 <= dir1 && dir1 <= 0x8f))
1da177e4 308 geode_configure();
1da177e4 309 return;
adf85265 310 } else { /* MediaGX */
1da177e4
LT
311 Cx86_cb[2] = (dir0_lsn & 1) ? '3' : '4';
312 p = Cx86_cb+2;
313 c->x86_model = (dir1 & 0x20) ? 1 : 2;
314 }
315 break;
316
adf85265
PC
317 case 5: /* 6x86MX/M II */
318 if (dir1 > 7) {
1da177e4
LT
319 dir0_msn++; /* M II */
320 /* Enable MMX extensions (App note 108) */
026e2c05 321 setCx86_old(CX86_CCR7, getCx86_old(CX86_CCR7)|1);
adf85265 322 } else {
c5b41a67
BP
323 /* A 6x86MX - it has the bug. */
324 set_cpu_bug(c, X86_BUG_COMA);
1da177e4
LT
325 }
326 tmp = (!(dir0_lsn & 7) || dir0_lsn & 1) ? 2 : 0;
327 Cx86_cb[tmp] = cyrix_model_mult2[dir0_lsn & 7];
328 p = Cx86_cb+tmp;
adf85265 329 if (((dir1 & 0x0f) > 4) || ((dir1 & 0xf0) == 0x20))
1da177e4
LT
330 (c->x86_model)++;
331 /* Emulate MTRRs using Cyrix's ARRs. */
1d007cd5 332 set_cpu_cap(c, X86_FEATURE_CYRIX_ARR);
1da177e4
LT
333 break;
334
335 case 0xf: /* Cyrix 486 without DEVID registers */
336 switch (dir0_lsn) {
337 case 0xd: /* either a 486SLC or DLC w/o DEVID */
338 dir0_msn = 0;
a402a8df 339 p = Cx486_name[!!boot_cpu_has(X86_FEATURE_FPU)];
1da177e4
LT
340 break;
341
342 case 0xe: /* a 486S A step */
343 dir0_msn = 0;
344 p = Cx486S_name[0];
345 break;
346 }
347 break;
348
349 default: /* unknown (shouldn't happen, we know everyone ;-) */
350 dir0_msn = 7;
351 break;
352 }
353 strcpy(buf, Cx86_model[dir0_msn & 7]);
adf85265
PC
354 if (p)
355 strcat(buf, p);
1da177e4
LT
356 return;
357}
358
f90b8116
JC
359/*
360 * Handle National Semiconductor branded processors
361 */
148f9bb8 362static void init_nsc(struct cpuinfo_x86 *c)
f90b8116 363{
adf85265
PC
364 /*
365 * There may be GX1 processors in the wild that are branded
f90b8116
JC
366 * NSC and not Cyrix.
367 *
368 * This function only handles the GX processor, and kicks every
369 * thing else to the Cyrix init function above - that should
370 * cover any processors that might have been branded differently
d6e05edc 371 * after NSC acquired Cyrix.
f90b8116
JC
372 *
373 * If this breaks your GX1 horribly, please e-mail
374 * info-linux@ldcmail.amd.com to tell us.
375 */
376
377 /* Handle the GX (Formally known as the GX2) */
378
379 if (c->x86 == 5 && c->x86_model == 5)
27c13ece 380 cpu_detect_cache_sizes(c);
f90b8116
JC
381 else
382 init_cyrix(c);
383}
384
1da177e4
LT
385/*
386 * Cyrix CPUs without cpuid or with cpuid not yet enabled can be detected
387 * by the fact that they preserve the flags across the division of 5/2.
388 * PII and PPro exhibit this behavior too, but they have cpuid available.
389 */
adf85265 390
1da177e4
LT
391/*
392 * Perform the Cyrix 5/2 test. A Cyrix won't change
393 * the flags, while other 486 chips will.
394 */
395static inline int test_cyrix_52div(void)
396{
397 unsigned int test;
398
399 __asm__ __volatile__(
400 "sahf\n\t" /* clear flags (%eax = 0x0005) */
401 "div %b2\n\t" /* divide 5 by 2 */
402 "lahf" /* store flags into %ah */
403 : "=a" (test)
404 : "0" (5), "q" (2)
405 : "cc");
406
407 /* AH is 0x02 on Cyrix after the divide.. */
408 return (unsigned char) (test >> 8) == 0x02;
409}
410
148f9bb8 411static void cyrix_identify(struct cpuinfo_x86 *c)
1da177e4
LT
412{
413 /* Detect Cyrix with disabled CPUID */
adf85265 414 if (c->x86 == 4 && test_cyrix_52div()) {
1da177e4 415 unsigned char dir0, dir1;
adf85265 416
1da177e4 417 strcpy(c->x86_vendor_id, "CyrixInstead");
adf85265
PC
418 c->x86_vendor = X86_VENDOR_CYRIX;
419
420 /* Actually enable cpuid on the older cyrix */
421
422 /* Retrieve CPU revisions */
423
1da177e4
LT
424 do_cyrix_devid(&dir0, &dir1);
425
adf85265
PC
426 dir0 >>= 4;
427
1da177e4 428 /* Check it is an affected model */
adf85265
PC
429
430 if (dir0 == 5 || dir0 == 3) {
bcde1ebb 431 unsigned char ccr3;
1da177e4 432 unsigned long flags;
1b74dde7 433 pr_info("Enabling CPUID on Cyrix processor.\n");
1da177e4
LT
434 local_irq_save(flags);
435 ccr3 = getCx86(CX86_CCR3);
8bdbd962
AC
436 /* enable MAPEN */
437 setCx86(CX86_CCR3, (ccr3 & 0x0f) | 0x10);
438 /* enable cpuid */
439 setCx86_old(CX86_CCR4, getCx86_old(CX86_CCR4) | 0x80);
440 /* disable MAPEN */
441 setCx86(CX86_CCR3, ccr3);
1da177e4
LT
442 local_irq_restore(flags);
443 }
444 }
1da177e4
LT
445}
446
148f9bb8 447static const struct cpu_dev cyrix_cpu_dev = {
1da177e4 448 .c_vendor = "Cyrix",
adf85265 449 .c_ident = { "CyrixInstead" },
5fef55fd 450 .c_early_init = early_init_cyrix,
1da177e4
LT
451 .c_init = init_cyrix,
452 .c_identify = cyrix_identify,
10a434fc 453 .c_x86_vendor = X86_VENDOR_CYRIX,
1da177e4
LT
454};
455
10a434fc 456cpu_dev_register(cyrix_cpu_dev);
1da177e4 457
148f9bb8 458static const struct cpu_dev nsc_cpu_dev = {
1da177e4 459 .c_vendor = "NSC",
adf85265 460 .c_ident = { "Geode by NSC" },
f90b8116 461 .c_init = init_nsc,
10a434fc 462 .c_x86_vendor = X86_VENDOR_NSC,
1da177e4
LT
463};
464
10a434fc 465cpu_dev_register(nsc_cpu_dev);