soc/amd/stoneyridge: Add bootblock_fch_init
Add a method in bootblock that can be used for printing registers. BUG=none TEST=compiled grunt Change-Id: I8dff30e589761fbad92cfc2709546dba169993d8 Signed-off-by: Raul E Rangel <rrangel@chromium.org> Reviewed-on: https://review.coreboot.org/28059 Reviewed-by: Marshall Dawson <marshalldawson3rd@gmail.com> Reviewed-by: Martin Roth <martinroth@google.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
parent
7c1e959ff6
commit
d820f4b8fb
|
@ -106,6 +106,8 @@ void bootblock_soc_init(void)
|
||||||
u32 val = cpuid_eax(1);
|
u32 val = cpuid_eax(1);
|
||||||
printk(BIOS_DEBUG, "Family_Model: %08x\n", val);
|
printk(BIOS_DEBUG, "Family_Model: %08x\n", val);
|
||||||
|
|
||||||
|
bootblock_fch_init();
|
||||||
|
|
||||||
/* Initialize any early i2c buses. */
|
/* Initialize any early i2c buses. */
|
||||||
i2c_soc_early_init();
|
i2c_soc_early_init();
|
||||||
}
|
}
|
||||||
|
|
|
@ -449,6 +449,7 @@ uint16_t xhci_pm_read16(uint8_t reg);
|
||||||
void xhci_pm_write32(uint8_t reg, uint32_t value);
|
void xhci_pm_write32(uint8_t reg, uint32_t value);
|
||||||
uint32_t xhci_pm_read32(uint8_t reg);
|
uint32_t xhci_pm_read32(uint8_t reg);
|
||||||
void bootblock_fch_early_init(void);
|
void bootblock_fch_early_init(void);
|
||||||
|
void bootblock_fch_init(void);
|
||||||
/**
|
/**
|
||||||
* @brief Save the UMA bize returned by AGESA
|
* @brief Save the UMA bize returned by AGESA
|
||||||
*
|
*
|
||||||
|
|
|
@ -621,6 +621,7 @@ static void setup_misc(int *reboot)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Before console init */
|
||||||
void bootblock_fch_early_init(void)
|
void bootblock_fch_early_init(void)
|
||||||
{
|
{
|
||||||
int reboot = 0;
|
int reboot = 0;
|
||||||
|
@ -643,6 +644,9 @@ void bootblock_fch_early_init(void)
|
||||||
enable_aoac_devices();
|
enable_aoac_devices();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* After console init */
|
||||||
|
void bootblock_fch_init(void) {}
|
||||||
|
|
||||||
void sb_enable(device_t dev)
|
void sb_enable(device_t dev)
|
||||||
{
|
{
|
||||||
printk(BIOS_DEBUG, "%s\n", __func__);
|
printk(BIOS_DEBUG, "%s\n", __func__);
|
||||||
|
|
Loading…
Reference in New Issue