Remove duplicated GX2 processor IIOC mode setting on CS5535 southbridge code
and fix CIS mode comments. Signed-off-by: Nils Jacobs <njacobs8@hetnet.nl> Acked-by: Stefan Reinauer <stepan@coreboot.org> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@6225 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
committed by
Stefan Reinauer
parent
8cf54c9f23
commit
8098e42944
@@ -107,15 +107,11 @@ static void cs5535_setup_cis_mode(void)
|
||||
{
|
||||
msr_t msr;
|
||||
|
||||
/* setup CPU interface serial to mode C on both sides */
|
||||
/* Setup CPU serial SouthBridge interface to mode C. */
|
||||
msr = rdmsr(GLPCI_SB_CTRL);
|
||||
msr.lo &= ~0x18;
|
||||
msr.lo |= 0x10;
|
||||
wrmsr(GLPCI_SB_CTRL, msr);
|
||||
//Only do this if we are building for 5535
|
||||
msr.lo = 0x2;
|
||||
msr.hi = 0x0;
|
||||
wrmsr(VIP_GIO_MSR_SEL, msr);
|
||||
}
|
||||
|
||||
static void dummy(void)
|
||||
|
@@ -145,7 +145,7 @@ static void cs5536_setup_cis_mode(void)
|
||||
{
|
||||
msr_t msr;
|
||||
|
||||
/* setup CPU interface serial to mode B to match CPU */
|
||||
/* Setup CPU serial SouthBridge interface to mode C. */
|
||||
msr = rdmsr(GLPCI_SB_CTRL);
|
||||
msr.lo &= ~0x18;
|
||||
msr.lo |= 0x10;
|
||||
|
Reference in New Issue
Block a user