aboutsummaryrefslogtreecommitdiff
path: root/src/soc/intel/icelake/bootblock
diff options
context:
space:
mode:
authorShelley Chen <shchen@google.com>2018-08-02 14:56:15 -0700
committerSubrata Banik <subrata.banik@intel.com>2018-10-31 02:18:54 +0000
commit7129cbf2f1e7153e3254792ca6cb194a040bf003 (patch)
treec3982c0389330e6cc32fdeecd4b70363c67f9e5d /src/soc/intel/icelake/bootblock
parentb0817b0fe507617e004a14082b612fbb30389357 (diff)
soc/intel/icelake: Open ports 0x60,0x64 for keyboard controller
BUG=b:112110028 BRANCH=none TEST=boot into recovery in ec console: kblog on (type on keyboard) kblog make sure buffer is not empty Change-Id: I6525c2a46eef835dc64682466364a5b8fbb35226 Signed-off-by: Shelley Chen <shchen@google.com> Reviewed-on: https://review.coreboot.org/29327 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Subrata Banik <subrata.banik@intel.com>
Diffstat (limited to 'src/soc/intel/icelake/bootblock')
-rw-r--r--src/soc/intel/icelake/bootblock/pch.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/soc/intel/icelake/bootblock/pch.c b/src/soc/intel/icelake/bootblock/pch.c
index 269e2a3c2b..2fc94f4820 100644
--- a/src/soc/intel/icelake/bootblock/pch.c
+++ b/src/soc/intel/icelake/bootblock/pch.c
@@ -181,7 +181,8 @@ void pch_early_iorange_init(void)
}
/* IO Decode Enable */
- dec_en |= SE_LPC_EN | KBC_LPC_EN | MC1_LPC_EN | GAMEL_LPC_EN;
+ dec_en |= SE_LPC_EN | KBC_LPC_EN | MC1_LPC_EN | GAMEL_LPC_EN |
+ LPC_IOE_KBC_60_64;
pci_write_config16(PCH_DEV_LPC, LPC_EN, dec_en);
pcr_write16(PID_DMI, PCR_DMI_LPCIOE, dec_en);