Beispiel #1
0
/*  Restore the processor after a set_mtrr_prepare  */
void set_mtrr_done(struct set_mtrr_context *ctxt)
{
    if (use_intel() || is_cpu(CYRIX)) {

        /*  Flush caches and TLBs  */
        wbinvd();

        /*  Restore MTRRdefType  */
        if (use_intel())
            /* Intel (P6) standard MTRRs */
            mtrr_wrmsr(MTRRdefType_MSR, ctxt->deftype_lo, ctxt->deftype_hi);
        else
            /* Cyrix ARRs - everything else was excluded at the top */
            setCx86(CX86_CCR3, ctxt->ccr3);

        /*  Enable caches  */
        write_cr0(read_cr0() & 0xbfffffff);

        /*  Restore value of CR4  */
        if ( cpu_has_pge )
            write_cr4(ctxt->cr4val);
    }
    /*  Re-enable interrupts locally (if enabled previously)  */
    local_irq_restore(ctxt->flags);
}
Beispiel #2
0
void set_mtrr_cache_disable(struct set_mtrr_context *ctxt)
{
    if (use_intel())
        /*  Disable MTRRs, and set the default type to uncached  */
        mtrr_wrmsr(MTRRdefType_MSR, ctxt->deftype_lo & 0xf300UL,
                   ctxt->deftype_hi);
    else if (is_cpu(CYRIX))
        /* Cyrix ARRs - everything else were excluded at the top */
        setCx86(CX86_CCR3, (ctxt->ccr3 & 0x0f) | 0x10);
}
Beispiel #3
0
/*
 * BIOS is expected to clear MtrrFixDramModEn bit, see for example
 * "BIOS and Kernel Developer's Guide for the AMD Athlon 64 and AMD
 * Opteron Processors" (26094 Rev. 3.30 February 2006), section
 * "13.2.1.2 SYSCFG Register": "The MtrrFixDramModEn bit should be set
 * to 1 during BIOS initalization of the fixed MTRRs, then cleared to
 * 0 for operation."
 */
static inline void k8_check_syscfg_dram_mod_en(void)
{
	u32 lo, hi;

	if (!((boot_cpu_data.x86_vendor == X86_VENDOR_AMD) &&
	      (boot_cpu_data.x86 >= 0x0f)))
		return;

	rdmsr(MSR_K8_SYSCFG, lo, hi);
	if (lo & K8_MTRRFIXRANGE_DRAM_MODIFY) {
		printk(KERN_ERR FW_WARN "MTRR: CPU %u: SYSCFG[MtrrFixDramModEn]"
		       " not cleared by BIOS, clearing this bit\n",
		       smp_processor_id());
		lo &= ~K8_MTRRFIXRANGE_DRAM_MODIFY;
		mtrr_wrmsr(MSR_K8_SYSCFG, lo, hi);
	}
}