From 6dc125f0e345f19dd762d553feba8255dba691c5 Mon Sep 17 00:00:00 2001 From: Lijian Zhao Date: Thu, 13 Jul 2017 19:11:45 -0700 Subject: soc/intel/cannonlake: Fix Build break 1.Replace outdated defination of TCO_EN to TCO_BASE_EN 2.Remove setmaxfreq() as not needed any more. Change-Id: Id54fdfd14f1abaa592132195e6f9acfa5807626e Signed-off-by: Lijian Zhao Reviewed-on: https://review.coreboot.org/20568 Tested-by: build bot (Jenkins) Reviewed-by: Aaron Durbin --- src/soc/intel/cannonlake/bootblock/bootblock.c | 1 - src/soc/intel/cannonlake/bootblock/pch.c | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) (limited to 'src/soc/intel/cannonlake/bootblock') diff --git a/src/soc/intel/cannonlake/bootblock/bootblock.c b/src/soc/intel/cannonlake/bootblock/bootblock.c index 293a104158..9db9a0fc94 100644 --- a/src/soc/intel/cannonlake/bootblock/bootblock.c +++ b/src/soc/intel/cannonlake/bootblock/bootblock.c @@ -38,6 +38,5 @@ void bootblock_soc_early_init(void) void bootblock_soc_init(void) { report_platform_info(); - set_max_freq(); pch_early_init(); } diff --git a/src/soc/intel/cannonlake/bootblock/pch.c b/src/soc/intel/cannonlake/bootblock/pch.c index 9d326bb7c5..d294cea46b 100644 --- a/src/soc/intel/cannonlake/bootblock/pch.c +++ b/src/soc/intel/cannonlake/bootblock/pch.c @@ -139,7 +139,7 @@ static void soc_config_tco(void) /* Disable TCO in SMBUS Device first before changing Base Address */ reg32 = pci_read_config32(PCH_DEV_SMBUS, TCOCTL); - reg32 &= ~TCO_EN; + reg32 &= ~TCO_BASE_EN; pci_write_config32(PCH_DEV_SMBUS, TCOCTL, reg32); /* Program TCO Base */ -- cgit v1.2.3