blob: a4f6e0ec4ba0fd7f3617cdbffa07ace89189d540 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#include <linux/bitops.h>
2#include <linux/delay.h>
3#include <linux/pci.h>
4#include <asm/dma.h>
Alan Cox8bdbd962009-07-04 00:35:45 +01005#include <linux/io.h>
Juergen Beisertf25f64e2007-07-22 11:12:38 +02006#include <asm/processor-cyrix.h>
Dave Jones7ebad702008-01-30 13:30:39 +01007#include <asm/processor-flags.h>
Alan Cox8bdbd962009-07-04 00:35:45 +01008#include <linux/timer.h>
Alan120fad72007-02-13 13:26:26 +01009#include <asm/pci-direct.h>
Alexey Dobriyane8edc6e2007-05-21 01:22:52 +040010#include <asm/tsc.h>
Borislav Petkovcd4d09e2016-01-26 22:12:04 +010011#include <asm/cpufeature.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012
13#include "cpu.h"
14
15/*
16 * Read NSC/Cyrix DEVID registers (DIR) to get more detailed info. about the CPU
17 */
Paul Gortmaker148f9bb2013-06-18 18:23:59 -040018static void __do_cyrix_devid(unsigned char *dir0, unsigned char *dir1)
Linus Torvalds1da177e2005-04-16 15:20:36 -070019{
20 unsigned char ccr2, ccr3;
Paolo Ciarrocchiadf85262008-02-22 23:11:23 +010021
Linus Torvalds1da177e2005-04-16 15:20:36 -070022 /* we test for DEVID by checking whether CCR3 is writable */
Linus Torvalds1da177e2005-04-16 15:20:36 -070023 ccr3 = getCx86(CX86_CCR3);
24 setCx86(CX86_CCR3, ccr3 ^ 0x80);
25 getCx86(0xc0); /* dummy to change bus */
26
27 if (getCx86(CX86_CCR3) == ccr3) { /* no DEVID regs. */
28 ccr2 = getCx86(CX86_CCR2);
29 setCx86(CX86_CCR2, ccr2 ^ 0x04);
30 getCx86(0xc0); /* dummy */
31
32 if (getCx86(CX86_CCR2) == ccr2) /* old Cx486SLC/DLC */
33 *dir0 = 0xfd;
34 else { /* Cx486S A step */
35 setCx86(CX86_CCR2, ccr2);
36 *dir0 = 0xfe;
37 }
Paolo Ciarrocchiadf85262008-02-22 23:11:23 +010038 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -070039 setCx86(CX86_CCR3, ccr3); /* restore CCR3 */
40
41 /* read DIR0 and DIR1 CPU registers */
42 *dir0 = getCx86(CX86_DIR0);
43 *dir1 = getCx86(CX86_DIR1);
44 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070045}
46
Paul Gortmaker148f9bb2013-06-18 18:23:59 -040047static void do_cyrix_devid(unsigned char *dir0, unsigned char *dir1)
Yinghai Lu5fef55f2008-09-04 21:09:43 +020048{
49 unsigned long flags;
50
51 local_irq_save(flags);
52 __do_cyrix_devid(dir0, dir1);
53 local_irq_restore(flags);
54}
Linus Torvalds1da177e2005-04-16 15:20:36 -070055/*
56 * Cx86_dir0_msb is a HACK needed by check_cx686_cpuid/slop in bugs.h in
57 * order to identify the Cyrix CPU model after we're out of setup.c
58 *
59 * Actually since bugs.h doesn't even reference this perhaps someone should
60 * fix the documentation ???
61 */
Paul Gortmaker148f9bb2013-06-18 18:23:59 -040062static unsigned char Cx86_dir0_msb = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
Paul Gortmaker148f9bb2013-06-18 18:23:59 -040064static const char Cx86_model[][9] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 "Cx486", "Cx486", "5x86 ", "6x86", "MediaGX ", "6x86MX ",
66 "M II ", "Unknown"
67};
Paul Gortmaker148f9bb2013-06-18 18:23:59 -040068static const char Cx486_name[][5] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 "SLC", "DLC", "SLC2", "DLC2", "SRx", "DRx",
70 "SRx2", "DRx2"
71};
Paul Gortmaker148f9bb2013-06-18 18:23:59 -040072static const char Cx486S_name[][4] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 "S", "S2", "Se", "S2e"
74};
Paul Gortmaker148f9bb2013-06-18 18:23:59 -040075static const char Cx486D_name[][4] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 "DX", "DX2", "?", "?", "?", "DX4"
77};
Paul Gortmaker148f9bb2013-06-18 18:23:59 -040078static char Cx86_cb[] = "?.5x Core/Bus Clock";
79static const char cyrix_model_mult1[] = "12??43";
80static const char cyrix_model_mult2[] = "12233445";
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
82/*
83 * Reset the slow-loop (SLOP) bit on the 686(L) which is set by some old
84 * BIOSes for compatibility with DOS games. This makes the udelay loop
85 * work correctly, and improves performance.
86 *
87 * FIXME: our newer udelay uses the tsc. We don't need to frob with SLOP
88 */
89
Paul Gortmaker148f9bb2013-06-18 18:23:59 -040090static void check_cx686_slop(struct cpuinfo_x86 *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -070091{
92 unsigned long flags;
Paolo Ciarrocchiadf85262008-02-22 23:11:23 +010093
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 if (Cx86_dir0_msb == 3) {
95 unsigned char ccr3, ccr5;
96
97 local_irq_save(flags);
98 ccr3 = getCx86(CX86_CCR3);
Marcin Garskidb9551702007-10-19 23:22:11 +020099 setCx86(CX86_CCR3, (ccr3 & 0x0f) | 0x10); /* enable MAPEN */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 ccr5 = getCx86(CX86_CCR5);
101 if (ccr5 & 2)
102 setCx86(CX86_CCR5, ccr5 & 0xfd); /* reset SLOP */
103 setCx86(CX86_CCR3, ccr3); /* disable MAPEN */
104 local_irq_restore(flags);
105
106 if (ccr5 & 2) { /* possible wrong calibration done */
Chen Yucong1b74dde2016-02-02 11:45:02 +0800107 pr_info("Recalibrating delay loop with SLOP bit reset\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 calibrate_delay();
109 c->loops_per_jiffy = loops_per_jiffy;
110 }
111 }
112}
113
114
Paul Gortmaker148f9bb2013-06-18 18:23:59 -0400115static void set_cx86_reorder(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116{
117 u8 ccr3;
118
Chen Yucong1b74dde2016-02-02 11:45:02 +0800119 pr_info("Enable Memory access reorder on Cyrix/NSC processor.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 ccr3 = getCx86(CX86_CCR3);
Jan Engelhardt96de0e22007-10-19 23:21:04 +0200121 setCx86(CX86_CCR3, (ccr3 & 0x0f) | 0x10); /* enable MAPEN */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122
Jan Engelhardt96de0e22007-10-19 23:21:04 +0200123 /* Load/Store Serialize to mem access disable (=reorder it) */
Matthew Whitehead2e91bfe2019-03-14 16:46:00 -0400124 setCx86(CX86_PCR0, getCx86(CX86_PCR0) & ~0x80);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 /* set load/store serialize from 1GB to 4GB */
126 ccr3 |= 0xe0;
127 setCx86(CX86_CCR3, ccr3);
128}
129
Paul Gortmaker148f9bb2013-06-18 18:23:59 -0400130static void set_cx86_memwb(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131{
Chen Yucong1b74dde2016-02-02 11:45:02 +0800132 pr_info("Enable Memory-Write-back mode on Cyrix/NSC processor.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
134 /* CCR2 bit 2: unlock NW bit */
Matthew Whitehead2e91bfe2019-03-14 16:46:00 -0400135 setCx86(CX86_CCR2, getCx86(CX86_CCR2) & ~0x04);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 /* set 'Not Write-through' */
Dave Jones7ebad702008-01-30 13:30:39 +0100137 write_cr0(read_cr0() | X86_CR0_NW);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 /* CCR2 bit 2: lock NW bit and set WT1 */
Matthew Whitehead2e91bfe2019-03-14 16:46:00 -0400139 setCx86(CX86_CCR2, getCx86(CX86_CCR2) | 0x14);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140}
141
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142/*
143 * Configure later MediaGX and/or Geode processor.
144 */
145
Paul Gortmaker148f9bb2013-06-18 18:23:59 -0400146static void geode_configure(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147{
148 unsigned long flags;
TAKADA Yoshihitobcde1eb2007-02-13 13:26:25 +0100149 u8 ccr3;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 local_irq_save(flags);
151
152 /* Suspend on halt power saving and enable #SUSP pin */
Matthew Whitehead2e91bfe2019-03-14 16:46:00 -0400153 setCx86(CX86_CCR2, getCx86(CX86_CCR2) | 0x88);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154
155 ccr3 = getCx86(CX86_CCR3);
TAKADA Yoshihitobcde1eb2007-02-13 13:26:25 +0100156 setCx86(CX86_CCR3, (ccr3 & 0x0f) | 0x10); /* enable MAPEN */
Paolo Ciarrocchiadf85262008-02-22 23:11:23 +0100157
TAKADA Yoshihitobcde1eb2007-02-13 13:26:25 +0100158
159 /* FPU fast, DTE cache, Mem bypass */
Matthew Whitehead2e91bfe2019-03-14 16:46:00 -0400160 setCx86(CX86_CCR4, getCx86(CX86_CCR4) | 0x38);
TAKADA Yoshihitobcde1eb2007-02-13 13:26:25 +0100161 setCx86(CX86_CCR3, ccr3); /* disable MAPEN */
Paolo Ciarrocchiadf85262008-02-22 23:11:23 +0100162
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 set_cx86_memwb();
Paolo Ciarrocchiadf85262008-02-22 23:11:23 +0100164 set_cx86_reorder();
Paolo Ciarrocchiadf85262008-02-22 23:11:23 +0100165
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 local_irq_restore(flags);
167}
168
Paul Gortmaker148f9bb2013-06-18 18:23:59 -0400169static void early_init_cyrix(struct cpuinfo_x86 *c)
Yinghai Lu5fef55f2008-09-04 21:09:43 +0200170{
171 unsigned char dir0, dir0_msn, dir1 = 0;
172
173 __do_cyrix_devid(&dir0, &dir1);
174 dir0_msn = dir0 >> 4; /* identifies CPU "family" */
175
176 switch (dir0_msn) {
177 case 3: /* 6x86/6x86L */
178 /* Emulate MTRRs using Cyrix's ARRs. */
179 set_cpu_cap(c, X86_FEATURE_CYRIX_ARR);
180 break;
181 case 5: /* 6x86MX/M II */
182 /* Emulate MTRRs using Cyrix's ARRs. */
183 set_cpu_cap(c, X86_FEATURE_CYRIX_ARR);
184 break;
185 }
186}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187
Paul Gortmaker148f9bb2013-06-18 18:23:59 -0400188static void init_cyrix(struct cpuinfo_x86 *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189{
190 unsigned char dir0, dir0_msn, dir0_lsn, dir1 = 0;
191 char *buf = c->x86_model_id;
192 const char *p = NULL;
193
Paolo Ciarrocchiadf85262008-02-22 23:11:23 +0100194 /*
195 * Bit 31 in normal CPUID used for nonstandard 3DNow ID;
196 * 3DNow is IDd by bit 31 in extended CPUID (1*32+31) anyway
197 */
Ingo Molnar1d007cd2008-02-26 08:52:27 +0100198 clear_cpu_cap(c, 0*32+31);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
200 /* Cyrix used bit 24 in extended (AMD) CPUID for Cyrix MMX extensions */
Ingo Molnar1d007cd2008-02-26 08:52:27 +0100201 if (test_cpu_cap(c, 1*32+24)) {
202 clear_cpu_cap(c, 1*32+24);
203 set_cpu_cap(c, X86_FEATURE_CXMMX);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 }
205
206 do_cyrix_devid(&dir0, &dir1);
207
208 check_cx686_slop(c);
209
210 Cx86_dir0_msb = dir0_msn = dir0 >> 4; /* identifies CPU "family" */
211 dir0_lsn = dir0 & 0xf; /* model or clock multiplier */
212
213 /* common case step number/rev -- exceptions handled below */
214 c->x86_model = (dir1 >> 4) + 1;
Jia Zhang06be0072018-01-01 09:52:10 +0800215 c->x86_stepping = dir1 & 0xf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
217 /* Now cook; the original recipe is by Channing Corn, from Cyrix.
218 * We do the same thing for each generation: we work out
219 * the model, multiplier and stepping. Black magic included,
220 * to make the silicon step/rev numbers match the printed ones.
221 */
Paolo Ciarrocchiadf85262008-02-22 23:11:23 +0100222
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 switch (dir0_msn) {
224 unsigned char tmp;
225
226 case 0: /* Cx486SLC/DLC/SRx/DRx */
227 p = Cx486_name[dir0_lsn & 7];
228 break;
229
230 case 1: /* Cx486S/DX/DX2/DX4 */
231 p = (dir0_lsn & 8) ? Cx486D_name[dir0_lsn & 5]
232 : Cx486S_name[dir0_lsn & 3];
233 break;
234
235 case 2: /* 5x86 */
236 Cx86_cb[2] = cyrix_model_mult1[dir0_lsn & 5];
237 p = Cx86_cb+2;
238 break;
239
240 case 3: /* 6x86/6x86L */
241 Cx86_cb[1] = ' ';
242 Cx86_cb[2] = cyrix_model_mult1[dir0_lsn & 5];
243 if (dir1 > 0x21) { /* 686L */
244 Cx86_cb[0] = 'L';
245 p = Cx86_cb;
246 (c->x86_model)++;
247 } else /* 686 */
248 p = Cx86_cb+1;
249 /* Emulate MTRRs using Cyrix's ARRs. */
Ingo Molnar1d007cd2008-02-26 08:52:27 +0100250 set_cpu_cap(c, X86_FEATURE_CYRIX_ARR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 /* 6x86's contain this bug */
Borislav Petkovc5b41a62013-03-20 15:07:26 +0100252 set_cpu_bug(c, X86_BUG_COMA);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 break;
254
255 case 4: /* MediaGX/GXm or Geode GXM/GXLV/GX1 */
Christian Sünkenbergd58f0b02017-06-04 19:18:39 +0200256 case 11: /* GX1 with inverted Device ID */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257#ifdef CONFIG_PCI
Alan120fad72007-02-13 13:26:26 +0100258 {
259 u32 vendor, device;
Paolo Ciarrocchiadf85262008-02-22 23:11:23 +0100260 /*
261 * It isn't really a PCI quirk directly, but the cure is the
262 * same. The MediaGX has deep magic SMM stuff that handles the
263 * SB emulation. It throws away the fifo on disable_dma() which
264 * is wrong and ruins the audio.
265 *
266 * Bug2: VSA1 has a wrap bug so that using maximum sized DMA
267 * causes bad things. According to NatSemi VSA2 has another
268 * bug to do with 'hlt'. I've not seen any boards using VSA2
269 * and X doesn't seem to support it either so who cares 8).
270 * VSA1 we work around however.
271 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272
Chen Yucong1b74dde2016-02-02 11:45:02 +0800273 pr_info("Working around Cyrix MediaGX virtual DMA bugs.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 isa_dma_bridge_buggy = 2;
Andreas Mohrcefc0112006-06-23 02:04:26 -0700275
Alan120fad72007-02-13 13:26:26 +0100276 /* We do this before the PCI layer is running. However we
277 are safe here as we know the bridge must be a Cyrix
278 companion and must be present */
279 vendor = read_pci_config_16(0, 0, 0x12, PCI_VENDOR_ID);
280 device = read_pci_config_16(0, 0, 0x12, PCI_DEVICE_ID);
Andreas Mohrcefc0112006-06-23 02:04:26 -0700281
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 /*
283 * The 5510/5520 companion chips have a funky PIT.
Paolo Ciarrocchiadf85262008-02-22 23:11:23 +0100284 */
Alan120fad72007-02-13 13:26:26 +0100285 if (vendor == PCI_VENDOR_ID_CYRIX &&
Alan Cox8bdbd962009-07-04 00:35:45 +0100286 (device == PCI_DEVICE_ID_CYRIX_5510 ||
287 device == PCI_DEVICE_ID_CYRIX_5520))
john stultz5a90cf22007-05-02 19:27:08 +0200288 mark_tsc_unstable("cyrix 5510/5520 detected");
Alan120fad72007-02-13 13:26:26 +0100289 }
Andreas Mohrcefc0112006-06-23 02:04:26 -0700290#endif
Paolo Ciarrocchiadf85262008-02-22 23:11:23 +0100291 c->x86_cache_size = 16; /* Yep 16K integrated cache thats it */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292
293 /* GXm supports extended cpuid levels 'ala' AMD */
294 if (c->cpuid_level == 2) {
295 /* Enable cxMMX extensions (GX1 Datasheet 54) */
Matthew Whitehead2e91bfe2019-03-14 16:46:00 -0400296 setCx86(CX86_CCR7, getCx86(CX86_CCR7) | 1);
Paolo Ciarrocchiadf85262008-02-22 23:11:23 +0100297
takada2632f012007-02-13 13:26:24 +0100298 /*
299 * GXm : 0x30 ... 0x5f GXm datasheet 51
300 * GXlv: 0x6x GXlv datasheet 54
301 * ? : 0x7x
302 * GX1 : 0x8x GX1 datasheet 56
303 */
Alan Cox8bdbd962009-07-04 00:35:45 +0100304 if ((0x30 <= dir1 && dir1 <= 0x6f) ||
305 (0x80 <= dir1 && dir1 <= 0x8f))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 geode_configure();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 return;
Paolo Ciarrocchiadf85262008-02-22 23:11:23 +0100308 } else { /* MediaGX */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 Cx86_cb[2] = (dir0_lsn & 1) ? '3' : '4';
310 p = Cx86_cb+2;
311 c->x86_model = (dir1 & 0x20) ? 1 : 2;
312 }
313 break;
314
Paolo Ciarrocchiadf85262008-02-22 23:11:23 +0100315 case 5: /* 6x86MX/M II */
316 if (dir1 > 7) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 dir0_msn++; /* M II */
318 /* Enable MMX extensions (App note 108) */
Matthew Whitehead2e91bfe2019-03-14 16:46:00 -0400319 setCx86(CX86_CCR7, getCx86(CX86_CCR7)|1);
Paolo Ciarrocchiadf85262008-02-22 23:11:23 +0100320 } else {
Borislav Petkovc5b41a62013-03-20 15:07:26 +0100321 /* A 6x86MX - it has the bug. */
322 set_cpu_bug(c, X86_BUG_COMA);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 }
324 tmp = (!(dir0_lsn & 7) || dir0_lsn & 1) ? 2 : 0;
325 Cx86_cb[tmp] = cyrix_model_mult2[dir0_lsn & 7];
326 p = Cx86_cb+tmp;
Paolo Ciarrocchiadf85262008-02-22 23:11:23 +0100327 if (((dir1 & 0x0f) > 4) || ((dir1 & 0xf0) == 0x20))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 (c->x86_model)++;
329 /* Emulate MTRRs using Cyrix's ARRs. */
Ingo Molnar1d007cd2008-02-26 08:52:27 +0100330 set_cpu_cap(c, X86_FEATURE_CYRIX_ARR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 break;
332
333 case 0xf: /* Cyrix 486 without DEVID registers */
334 switch (dir0_lsn) {
335 case 0xd: /* either a 486SLC or DLC w/o DEVID */
336 dir0_msn = 0;
Borislav Petkova402a8d2016-04-04 22:24:58 +0200337 p = Cx486_name[!!boot_cpu_has(X86_FEATURE_FPU)];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 break;
339
340 case 0xe: /* a 486S A step */
341 dir0_msn = 0;
342 p = Cx486S_name[0];
343 break;
344 }
345 break;
346
347 default: /* unknown (shouldn't happen, we know everyone ;-) */
348 dir0_msn = 7;
349 break;
350 }
351 strcpy(buf, Cx86_model[dir0_msn & 7]);
Paolo Ciarrocchiadf85262008-02-22 23:11:23 +0100352 if (p)
353 strcat(buf, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 return;
355}
356
357/*
Jordan Crousef90b8112006-01-06 00:12:14 -0800358 * Handle National Semiconductor branded processors
359 */
Paul Gortmaker148f9bb2013-06-18 18:23:59 -0400360static void init_nsc(struct cpuinfo_x86 *c)
Jordan Crousef90b8112006-01-06 00:12:14 -0800361{
Paolo Ciarrocchiadf85262008-02-22 23:11:23 +0100362 /*
363 * There may be GX1 processors in the wild that are branded
Jordan Crousef90b8112006-01-06 00:12:14 -0800364 * NSC and not Cyrix.
365 *
366 * This function only handles the GX processor, and kicks every
367 * thing else to the Cyrix init function above - that should
368 * cover any processors that might have been branded differently
Andreas Mohrd6e05ed2006-06-26 18:35:02 +0200369 * after NSC acquired Cyrix.
Jordan Crousef90b8112006-01-06 00:12:14 -0800370 *
371 * If this breaks your GX1 horribly, please e-mail
372 * info-linux@ldcmail.amd.com to tell us.
373 */
374
375 /* Handle the GX (Formally known as the GX2) */
376
377 if (c->x86 == 5 && c->x86_model == 5)
Borislav Petkov27c13ec2009-11-21 14:01:45 +0100378 cpu_detect_cache_sizes(c);
Jordan Crousef90b8112006-01-06 00:12:14 -0800379 else
380 init_cyrix(c);
381}
382
383/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 * Cyrix CPUs without cpuid or with cpuid not yet enabled can be detected
385 * by the fact that they preserve the flags across the division of 5/2.
386 * PII and PPro exhibit this behavior too, but they have cpuid available.
387 */
Paolo Ciarrocchiadf85262008-02-22 23:11:23 +0100388
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389/*
390 * Perform the Cyrix 5/2 test. A Cyrix won't change
391 * the flags, while other 486 chips will.
392 */
393static inline int test_cyrix_52div(void)
394{
395 unsigned int test;
396
397 __asm__ __volatile__(
398 "sahf\n\t" /* clear flags (%eax = 0x0005) */
399 "div %b2\n\t" /* divide 5 by 2 */
400 "lahf" /* store flags into %ah */
401 : "=a" (test)
402 : "0" (5), "q" (2)
403 : "cc");
404
405 /* AH is 0x02 on Cyrix after the divide.. */
406 return (unsigned char) (test >> 8) == 0x02;
407}
408
Paul Gortmaker148f9bb2013-06-18 18:23:59 -0400409static void cyrix_identify(struct cpuinfo_x86 *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410{
411 /* Detect Cyrix with disabled CPUID */
Paolo Ciarrocchiadf85262008-02-22 23:11:23 +0100412 if (c->x86 == 4 && test_cyrix_52div()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 unsigned char dir0, dir1;
Paolo Ciarrocchiadf85262008-02-22 23:11:23 +0100414
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 strcpy(c->x86_vendor_id, "CyrixInstead");
Paolo Ciarrocchiadf85262008-02-22 23:11:23 +0100416 c->x86_vendor = X86_VENDOR_CYRIX;
417
418 /* Actually enable cpuid on the older cyrix */
419
420 /* Retrieve CPU revisions */
421
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 do_cyrix_devid(&dir0, &dir1);
423
Paolo Ciarrocchiadf85262008-02-22 23:11:23 +0100424 dir0 >>= 4;
425
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 /* Check it is an affected model */
Paolo Ciarrocchiadf85262008-02-22 23:11:23 +0100427
428 if (dir0 == 5 || dir0 == 3) {
TAKADA Yoshihitobcde1eb2007-02-13 13:26:25 +0100429 unsigned char ccr3;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 unsigned long flags;
Chen Yucong1b74dde2016-02-02 11:45:02 +0800431 pr_info("Enabling CPUID on Cyrix processor.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 local_irq_save(flags);
433 ccr3 = getCx86(CX86_CCR3);
Alan Cox8bdbd962009-07-04 00:35:45 +0100434 /* enable MAPEN */
435 setCx86(CX86_CCR3, (ccr3 & 0x0f) | 0x10);
436 /* enable cpuid */
Matthew Whiteheadec6eb732018-09-21 17:20:40 -0400437 setCx86(CX86_CCR4, getCx86(CX86_CCR4) | 0x80);
Alan Cox8bdbd962009-07-04 00:35:45 +0100438 /* disable MAPEN */
439 setCx86(CX86_CCR3, ccr3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 local_irq_restore(flags);
441 }
442 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443}
444
Paul Gortmaker148f9bb2013-06-18 18:23:59 -0400445static const struct cpu_dev cyrix_cpu_dev = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 .c_vendor = "Cyrix",
Paolo Ciarrocchiadf85262008-02-22 23:11:23 +0100447 .c_ident = { "CyrixInstead" },
Yinghai Lu5fef55f2008-09-04 21:09:43 +0200448 .c_early_init = early_init_cyrix,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 .c_init = init_cyrix,
450 .c_identify = cyrix_identify,
Yinghai Lu10a434f2008-09-04 21:09:45 +0200451 .c_x86_vendor = X86_VENDOR_CYRIX,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452};
453
Yinghai Lu10a434f2008-09-04 21:09:45 +0200454cpu_dev_register(cyrix_cpu_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455
Paul Gortmaker148f9bb2013-06-18 18:23:59 -0400456static const struct cpu_dev nsc_cpu_dev = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 .c_vendor = "NSC",
Paolo Ciarrocchiadf85262008-02-22 23:11:23 +0100458 .c_ident = { "Geode by NSC" },
Jordan Crousef90b8112006-01-06 00:12:14 -0800459 .c_init = init_nsc,
Yinghai Lu10a434f2008-09-04 21:09:45 +0200460 .c_x86_vendor = X86_VENDOR_NSC,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461};
462
Yinghai Lu10a434f2008-09-04 21:09:45 +0200463cpu_dev_register(nsc_cpu_dev);