haswell: Remove limit on package C-state

With the XHCI controller enabled we no longer hang the
system when dropping into a package C-state so remove
the code that was disabling it.

Change-Id: Icd60488fd2506dac04fb6ec96a77bec265b10d8c
Signed-off-by: Duncan Laurie <dlaurie@chromium.org>
Reviewed-on: https://gerrit.chromium.org/gerrit/50355
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Reviewed-on: http://review.coreboot.org/4163
Tested-by: build bot (Jenkins)
Reviewed-by: Alexandru Gagniuc <mr.nuke.me@gmail.com>
This commit is contained in:
Duncan Laurie 2013-05-07 13:19:56 -07:00 committed by Alexandru Gagniuc
parent 58181124f6
commit 1c09710709
1 changed files with 1 additions and 4 deletions

View File

@ -426,10 +426,7 @@ static void configure_c_states(void)
msr.lo |= (1 << 26); // C1 Auto Demotion Enable msr.lo |= (1 << 26); // C1 Auto Demotion Enable
msr.lo |= (1 << 25); // C3 Auto Demotion Enable msr.lo |= (1 << 25); // C3 Auto Demotion Enable
msr.lo &= ~(1 << 10); // Disable IO MWAIT redirection msr.lo &= ~(1 << 10); // Disable IO MWAIT redirection
msr.lo &= ~(0xf); // Clear deepest package c-state /* The deepest package c-state defaults to factory-configured value. */
/* FIXME: The deepest package c-state is set to C0/C1 to work around
* platform instability when package C3 or deeper c-states are used. */
msr.lo |= 0; // Deepeset package c-state is C0/C1.
wrmsr(MSR_PMG_CST_CONFIG_CONTROL, msr); wrmsr(MSR_PMG_CST_CONFIG_CONTROL, msr);
msr = rdmsr(MSR_PMG_IO_CAPTURE_BASE); msr = rdmsr(MSR_PMG_IO_CAPTURE_BASE);