summaryrefslogtreecommitdiff
path: root/src/southbridge/intel/i82801jx/lpc.c
diff options
context:
space:
mode:
authorAngel Pons <th3fanbus@gmail.com>2020-08-10 13:52:21 +0200
committerAngel Pons <th3fanbus@gmail.com>2020-08-12 10:56:24 +0000
commit851fe8334e75d1b3f372f7878745d65c236a12a4 (patch)
tree959ddbe5bed09a527f79de689fddd3f94f3ef20a /src/southbridge/intel/i82801jx/lpc.c
parentbcc2c729dd2ed7c60cb52f3852da5c3bc809c748 (diff)
downloadcoreboot-851fe8334e75d1b3f372f7878745d65c236a12a4.tar.xz
sb/intel/i82801jx: Drop is-mobile checks
There's no mobile ICH10 variant. This was copied from i82801ix. Change-Id: I141da407e336f6fbbf84d0e2cee55b0c12931c7b Signed-off-by: Angel Pons <th3fanbus@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/44335 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Arthur Heymans <arthur@aheymans.xyz> Reviewed-by: Michael Niewöhner
Diffstat (limited to 'src/southbridge/intel/i82801jx/lpc.c')
-rw-r--r--src/southbridge/intel/i82801jx/lpc.c17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/southbridge/intel/i82801jx/lpc.c b/src/southbridge/intel/i82801jx/lpc.c
index a8b53706c1..3bed5ddcc2 100644
--- a/src/southbridge/intel/i82801jx/lpc.c
+++ b/src/southbridge/intel/i82801jx/lpc.c
@@ -276,19 +276,6 @@ static void i82801jx_power_options(struct device *dev)
outl(reg32, pmbase + 0x10);
}
-static void i82801jx_configure_cstates(struct device *dev)
-{
- // Enable Popup & Popdown
- pci_or_config8(dev, D31F0_CxSTATE_CNF, (1 << 4) | (1 << 3) | (1 << 2));
-
- // Set Deeper Sleep configuration to recommended values
- // Deeper Sleep to Stop CPU: 34-40us
- // Deeper Sleep to Sleep: 15us
- pci_update_config8(dev, D31F0_C4TIMING_CNT, ~0x0f, (2 << 2) | (2 << 0));
-
- /* We could enable slow-C4 exit here, if someone needs it? */
-}
-
static void i82801jx_rtc_init(struct device *dev)
{
u8 reg8;
@@ -376,10 +363,6 @@ static void lpc_init(struct device *dev)
/* Setup power options. */
i82801jx_power_options(dev);
- /* Configure Cx state registers */
- if (LPC_IS_MOBILE(dev))
- i82801jx_configure_cstates(dev);
-
/* Initialize the real time clock. */
i82801jx_rtc_init(dev);