mb/google/brya/bootblock.c: Sync cosmetics with adlrvp
Adjust the cosmetics of the `configure_pmc_descriptor()` function to match the code for the `intel/adlrvp` mainboard. The only difference is that adlrvp checks if the descriptor is writable. Tested with BUILD_TIMELESS=1, Google Brya0 remains identical. Change-Id: I9c524d5c422c765db200a15f484c2b8827ebd40b Signed-off-by: Angel Pons <th3fanbus@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/60938 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Subrata Banik <subratabanik@google.com> Reviewed-by: Sheng Lean Tan <sheng.tan@9elements.com>
This commit is contained in:
parent
a6bc494e23
commit
c7fc9d6c4c
|
@ -34,7 +34,6 @@ static void configure_pmc_descriptor(void)
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
{
|
|
||||||
si_desc_buf[PMC_DESC_7_BYTE3] = 0x44;
|
si_desc_buf[PMC_DESC_7_BYTE3] = 0x44;
|
||||||
|
|
||||||
if (rdev_eraseat(&desc_rdev, 0, SI_DESC_REGION_SZ) != SI_DESC_REGION_SZ) {
|
if (rdev_eraseat(&desc_rdev, 0, SI_DESC_REGION_SZ) != SI_DESC_REGION_SZ) {
|
||||||
|
@ -50,11 +49,10 @@ static void configure_pmc_descriptor(void)
|
||||||
|
|
||||||
printk(BIOS_DEBUG, "Update of PMC Descriptor successful, trigger GLOBAL RESET\n");
|
printk(BIOS_DEBUG, "Update of PMC Descriptor successful, trigger GLOBAL RESET\n");
|
||||||
|
|
||||||
pmc_global_reset_enable(1);
|
pmc_global_reset_enable(true);
|
||||||
do_full_reset();
|
do_full_reset();
|
||||||
die("Failed to trigger GLOBAL RESET\n");
|
die("Failed to trigger GLOBAL RESET\n");
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
void bootblock_mainboard_early_init(void)
|
void bootblock_mainboard_early_init(void)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue