mirror of
https://review.coreboot.org/flashrom.git
synced 2025-07-01 14:11:15 +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
@ -30,7 +30,11 @@ enum programmer_type {
|
||||
USB,
|
||||
OTHER,
|
||||
};
|
||||
struct programmer_cfg;
|
||||
struct board_cfg;
|
||||
struct programmer_cfg {
|
||||
char *params;
|
||||
struct board_cfg *bcfg;
|
||||
};
|
||||
|
||||
struct dev_entry {
|
||||
uint16_t vendor_id;
|
||||
@ -162,6 +166,7 @@ enum board_match_phase {
|
||||
|
||||
struct board_cfg {
|
||||
int is_laptop;
|
||||
bool laptop_ok;
|
||||
};
|
||||
|
||||
struct board_match {
|
||||
@ -267,7 +272,6 @@ extern int superio_count;
|
||||
#endif
|
||||
|
||||
#if CONFIG_INTERNAL == 1
|
||||
extern bool g_laptop_ok;
|
||||
extern bool force_boardmismatch;
|
||||
void probe_superio(void);
|
||||
int register_superio(struct superio s);
|
||||
|
Reference in New Issue
Block a user