Replace some ENV_ROMSTAGE with ENV_RAMINIT
With a combined bootblock+romstage ENV_ROMSTAGE might no longer evaluate true. Change-Id: I733cf4e4ab177e35cd260318556ece1e73d082dc Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/63376 Reviewed-by: Julius Werner <jwerner@chromium.org> Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Elyes Haouas <ehaouas@noos.fr> Reviewed-by: Raul Rangel <rrangel@chromium.org>
This commit is contained in:
committed by
Felix Held
parent
0310d34c2f
commit
11cac784ff
@@ -56,7 +56,7 @@ static struct prci_ctlr *prci = (void *)FU540_PRCI;
|
||||
#define PRCI_DEVICESRESET_GEMGXL_RST_N(x) (((x) & 0x1) << 5)
|
||||
|
||||
/* Clock initialization should only be done in romstage. */
|
||||
#if ENV_ROMSTAGE
|
||||
#if ENV_RAMINIT
|
||||
struct pll_settings {
|
||||
unsigned int divr:6;
|
||||
unsigned int divf:9;
|
||||
@@ -247,7 +247,7 @@ void clock_init(void)
|
||||
|
||||
asm volatile ("fence");
|
||||
}
|
||||
#endif /* ENV_ROMSTAGE */
|
||||
#endif /* ENV_RAMINIT */
|
||||
|
||||
/* Get the core clock's frequency, in KHz */
|
||||
int clock_get_coreclk_khz(void)
|
||||
|
Reference in New Issue
Block a user