git-svn-id: svn://svn.coreboot.org/coreboot/trunk@2238 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
Li-Ta Lo 2006-04-06 20:23:29 +00:00
parent 5917c62749
commit 69085400f1
1 changed files with 7 additions and 5 deletions

View File

@ -237,8 +237,8 @@ void bug118253(void){
wrmsr(GLPCI_SPARE, msr); wrmsr(GLPCI_SPARE, msr);
} }
void void bug118339(void)
bug118339(void) { {
printk_err("This is OPTIONAL BIOS-ENABLED ... ignore for now\n"); printk_err("This is OPTIONAL BIOS-ENABLED ... ignore for now\n");
#if 0 #if 0
PROC NEAR PUBLIC PROC NEAR PUBLIC
@ -331,16 +331,18 @@ CPUbug118339 ENDP
/** Modified:*/ /** Modified:*/
/***/ /***/
/****************************************************************************/ /****************************************************************************/
void void disablememoryreadorder(void)
disablememoryreadorder(void) { {
msr_t msr; msr_t msr;
msr = rdmsr(MC_CF8F_DATA); msr = rdmsr(MC_CF8F_DATA);
msr.hi |= CF8F_UPPER_REORDER_DIS_SET; msr.hi |= CF8F_UPPER_REORDER_DIS_SET;
wrmsr(MC_CF8F_DATA, msr); wrmsr(MC_CF8F_DATA, msr);
} }
void void
cpubug(void){ cpubug(void)
{
msr_t msr; msr_t msr;
int rev; int rev;