2 #include <linux/init.h>
6 #include <asm-i386/processor-cyrix.h>
10 /* Put the processor into a state where MTRRs can be safely set */
11 void set_mtrr_prepare_save(struct set_mtrr_context
*ctxt
)
15 /* Disable interrupts locally */
16 local_irq_save(ctxt
->flags
);
18 if (use_intel() || is_cpu(CYRIX
)) {
20 /* Save value of CR4 and clear Page Global Enable (bit 7) */
22 ctxt
->cr4val
= read_cr4();
23 write_cr4(ctxt
->cr4val
& ~X86_CR4_PGE
);
26 /* Disable and flush caches. Note that wbinvd flushes the TLBs as
28 cr0
= read_cr0() | 0x40000000;
35 rdmsr(MTRRdefType_MSR
, ctxt
->deftype_lo
, ctxt
->deftype_hi
);
37 /* Cyrix ARRs - everything else were excluded at the top */
38 ctxt
->ccr3
= getCx86(CX86_CCR3
);
42 void set_mtrr_cache_disable(struct set_mtrr_context
*ctxt
)
45 /* Disable MTRRs, and set the default type to uncached */
46 mtrr_wrmsr(MTRRdefType_MSR
, ctxt
->deftype_lo
& 0xf300UL
,
48 else if (is_cpu(CYRIX
))
49 /* Cyrix ARRs - everything else were excluded at the top */
50 setCx86(CX86_CCR3
, (ctxt
->ccr3
& 0x0f) | 0x10);
53 /* Restore the processor after a set_mtrr_prepare */
54 void set_mtrr_done(struct set_mtrr_context
*ctxt
)
56 if (use_intel() || is_cpu(CYRIX
)) {
58 /* Flush caches and TLBs */
61 /* Restore MTRRdefType */
63 /* Intel (P6) standard MTRRs */
64 mtrr_wrmsr(MTRRdefType_MSR
, ctxt
->deftype_lo
, ctxt
->deftype_hi
);
66 /* Cyrix ARRs - everything else was excluded at the top */
67 setCx86(CX86_CCR3
, ctxt
->ccr3
);
70 write_cr0(read_cr0() & 0xbfffffff);
72 /* Restore value of CR4 */
74 write_cr4(ctxt
->cr4val
);
76 /* Re-enable interrupts locally (if enabled previously) */
77 local_irq_restore(ctxt
->flags
);