soc/intel/jasperlakelake: Rename pch_init() code

Rename the pch_init function to bootblock_pch_init and romstage_pch_init
according to the stage it is defined in.

TEST=Able to build and boot Waddledoo successfully.

Signed-off-by: Usha P <usha.p@intel.com>
Change-Id: Iaa0a41f3b5972251d6cd9359bbb46d392196b2e2
Reviewed-on: https://review.coreboot.org/c/coreboot/+/43479
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
This commit is contained in:
Usha P 2020-07-15 14:14:36 +05:30 committed by Patrick Georgi
parent 6217a15674
commit 253b7d22fe
6 changed files with 6 additions and 6 deletions

View File

@ -25,7 +25,7 @@ void bootblock_soc_early_init(void)
void bootblock_soc_init(void)
{
report_platform_info();
pch_init();
bootblock_pch_init();
/* Programming TCO_BASE_ADDRESS and TCO Timer Halt */
tco_configure();

View File

@ -142,7 +142,7 @@ void pch_early_iorange_init(void)
pch_enable_lpc();
}
void pch_init(void)
void bootblock_pch_init(void)
{
/*
* Enabling ABASE for accessing PM1_STS, PM1_EN, PM1_CNT,

View File

@ -8,7 +8,7 @@ void bootblock_cpu_init(void);
void bootblock_pch_early_init(void);
/* Bootblock post console init programming */
void pch_init(void);
void bootblock_pch_init(void);
void pch_early_iorange_init(void);
void report_platform_info(void);

View File

@ -9,7 +9,7 @@
bool mainboard_get_dram_part_num(const char **part_num, size_t *len);
void mainboard_memory_init_params(FSPM_UPD *mupd);
void systemagent_early_init(void);
void pch_init(void);
void romstage_pch_init(void);
/* Board type */
enum board_type {

View File

@ -3,7 +3,7 @@
#include <intelblocks/smbus.h>
#include <soc/romstage.h>
void pch_init(void)
void romstage_pch_init(void)
{
/* Program SMBUS_BASE_ADDRESS and Enable it */
smbus_common_init();

View File

@ -131,7 +131,7 @@ void mainboard_romstage_entry(void)
/* Program MCHBAR, DMIBAR, GDXBAR and EDRAMBAR */
systemagent_early_init();
/* Program PCH init */
pch_init();
romstage_pch_init();
/* initialize Heci interface */
heci_init(HECI1_BASE_ADDRESS);