mirror of
https://review.coreboot.org/flashrom.git
synced 2025-07-01 22:21:16 +02:00
internal: Move laptop_ok into board_cfg
Due to how internal is structured around chipset_flash_enable() entry we need to prepare a crafted programmer_cfg that contains a board_enable substructure with data derived from the board_enable subsystem. While this is certainly not perfection, it does make clear the relationships between board_enable into chipset_flash_enable and subsequently the overall internal programmer initialisation in a RAII fashion at the type level over closure upon global state that is impossible to reason about. Also flip predicate in report_nonwl_laptop_detected() and return early with the trivial base-case. TEST=`$ sudo ./flashrom -p internal --flash-name`. Change-Id: I459215253845c2af73262943ce91a36464e9eb06 Signed-off-by: Edward O'Callaghan <quasisec@google.com> Reviewed-on: https://review.coreboot.org/c/flashrom/+/73456 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Sam McNally <sammc@google.com>
This commit is contained in:

committed by
Edward O'Callaghan

parent
3ed016f08f
commit
67b5526d5c
@ -826,7 +826,7 @@ static int enable_flash_ich_spi(const struct programmer_cfg *cfg, struct pci_dev
|
||||
|
||||
/* Suppress unknown laptop warning if we booted from SPI. */
|
||||
if (boot_buses & BUS_SPI)
|
||||
g_laptop_ok = true;
|
||||
cfg->bcfg->laptop_ok = true;
|
||||
|
||||
return 0;
|
||||
}
|
||||
@ -971,7 +971,7 @@ static int enable_flash_pch100_or_c620(const struct programmer_cfg *cfg,
|
||||
|
||||
/* Suppress unknown laptop warning if we booted from SPI. */
|
||||
if (!ret && (boot_buses & BUS_SPI))
|
||||
g_laptop_ok = true;
|
||||
cfg->bcfg->laptop_ok = true;
|
||||
|
||||
_freepci_ret:
|
||||
pci_free_dev(spi_dev);
|
||||
@ -1087,7 +1087,7 @@ static int enable_flash_silvermont(const struct programmer_cfg *cfg, struct pci_
|
||||
|
||||
/* Suppress unknown laptop warning if we booted from SPI. */
|
||||
if (boot_buses & BUS_SPI)
|
||||
g_laptop_ok = true;
|
||||
cfg->bcfg->laptop_ok = true;
|
||||
|
||||
return 0;
|
||||
}
|
||||
@ -1676,7 +1676,7 @@ static int enable_flash_mcp6x_7x(const struct programmer_cfg *cfg, struct pci_de
|
||||
|
||||
/* Suppress unknown laptop warning if we booted from SPI. */
|
||||
if (!ret && want_spi)
|
||||
g_laptop_ok = true;
|
||||
cfg->bcfg->laptop_ok = true;
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
Reference in New Issue
Block a user