1
0
mirror of https://review.coreboot.org/flashrom.git synced 2025-04-26 22:52:34 +02:00

tree: Port programmers to pass programmer_cfg to extractors

Ran;
```
 $ find -name '*.c' -exec sed -i 's/extract_programmer_param_str(NULL/extract_programmer_param_str(cfg/g' '{}' \;
```

Manually fix i2c_helper_linux.c and other cases after.

Treat cases of;
 - pcidev.c , and
 - usb_device.c
as exceptional to be dealt with in later patches.

Change-Id: If7b7987e803d35582dda219652a6fc3ed5729b47
Signed-off-by: Edward O'Callaghan <quasisec@google.com>
Reviewed-on: https://review.coreboot.org/c/flashrom/+/66656
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Anastasia Klimchuk <aklm@chromium.org>
Reviewed-by: Felix Singer <felixsinger@posteo.net>
This commit is contained in:
Edward O'Callaghan 2022-08-12 13:47:29 +10:00 committed by Anastasia Klimchuk
parent c3df94cb96
commit 5c710ea54a
30 changed files with 87 additions and 85 deletions

View File

@ -145,7 +145,7 @@ static const struct par_master lpc_master_atavia = {
static int atavia_init(const struct programmer_cfg *cfg) static int atavia_init(const struct programmer_cfg *cfg)
{ {
char *arg = extract_programmer_param_str(NULL, "offset"); char *arg = extract_programmer_param_str(cfg, "offset");
if (arg) { if (arg) {
if (strlen(arg) == 0) { if (strlen(arg) == 0) {
msg_perr("Missing argument for offset.\n"); msg_perr("Missing argument for offset.\n");

View File

@ -332,7 +332,7 @@ static int buspirate_spi_init(const struct programmer_cfg *cfg)
unsigned char *bp_commbuf; unsigned char *bp_commbuf;
int bp_commbufsize; int bp_commbufsize;
dev = extract_programmer_param_str(NULL, "dev"); dev = extract_programmer_param_str(cfg, "dev");
if (dev && !strlen(dev)) { if (dev && !strlen(dev)) {
free(dev); free(dev);
dev = NULL; dev = NULL;
@ -342,7 +342,7 @@ static int buspirate_spi_init(const struct programmer_cfg *cfg)
return 1; return 1;
} }
tmp = extract_programmer_param_str(NULL, "spispeed"); tmp = extract_programmer_param_str(cfg, "spispeed");
if (tmp) { if (tmp) {
for (i = 0; spispeeds[i].name; i++) { for (i = 0; spispeeds[i].name; i++) {
if (!strncasecmp(spispeeds[i].name, tmp, strlen(spispeeds[i].name))) { if (!strncasecmp(spispeeds[i].name, tmp, strlen(spispeeds[i].name))) {
@ -356,7 +356,7 @@ static int buspirate_spi_init(const struct programmer_cfg *cfg)
free(tmp); free(tmp);
/* Extract serialspeed parameter */ /* Extract serialspeed parameter */
tmp = extract_programmer_param_str(NULL, "serialspeed"); tmp = extract_programmer_param_str(cfg, "serialspeed");
if (tmp) { if (tmp) {
for (i = 0; serialspeeds[i].name; i++) { for (i = 0; serialspeeds[i].name; i++) {
if (!strncasecmp(serialspeeds[i].name, tmp, strlen(serialspeeds[i].name))) { if (!strncasecmp(serialspeeds[i].name, tmp, strlen(serialspeeds[i].name))) {
@ -369,7 +369,7 @@ static int buspirate_spi_init(const struct programmer_cfg *cfg)
} }
free(tmp); free(tmp);
tmp = extract_programmer_param_str(NULL, "pullups"); tmp = extract_programmer_param_str(cfg, "pullups");
if (tmp) { if (tmp) {
if (strcasecmp("on", tmp) == 0) if (strcasecmp("on", tmp) == 0)
pullup = 1; pullup = 1;
@ -380,7 +380,7 @@ static int buspirate_spi_init(const struct programmer_cfg *cfg)
} }
free(tmp); free(tmp);
tmp = extract_programmer_param_str(NULL, "psus"); tmp = extract_programmer_param_str(cfg, "psus");
if (tmp) { if (tmp) {
if (strcasecmp("on", tmp) == 0) if (strcasecmp("on", tmp) == 0)
psu = 1; psu = 1;

View File

@ -428,7 +428,7 @@ static int enable_flash_ich_fwh_decode(struct pci_dev *dev, enum ich_chipset ich
break; break;
} }
char *idsel = extract_programmer_param_str(NULL, "fwh_idsel"); char *idsel = extract_programmer_param_str(NULL, "fwh_idsel"); /* TODO(quasisec): pass prog_param */
if (idsel && strlen(idsel)) { if (idsel && strlen(idsel)) {
if (!implemented) { if (!implemented) {
msg_perr("Error: fwh_idsel= specified, but (yet) unsupported on this chipset.\n"); msg_perr("Error: fwh_idsel= specified, but (yet) unsupported on this chipset.\n");

View File

@ -1087,7 +1087,7 @@ static int dediprog_init(const struct programmer_cfg *cfg)
long target = FLASH_TYPE_APPLICATION_FLASH_1; long target = FLASH_TYPE_APPLICATION_FLASH_1;
int i, ret; int i, ret;
param_str = extract_programmer_param_str(NULL, "spispeed"); param_str = extract_programmer_param_str(cfg, "spispeed");
if (param_str) { if (param_str) {
for (i = 0; spispeeds[i].name; ++i) { for (i = 0; spispeeds[i].name; ++i) {
if (!strcasecmp(spispeeds[i].name, param_str)) { if (!strcasecmp(spispeeds[i].name, param_str)) {
@ -1103,7 +1103,7 @@ static int dediprog_init(const struct programmer_cfg *cfg)
free(param_str); free(param_str);
} }
param_str = extract_programmer_param_str(NULL, "voltage"); param_str = extract_programmer_param_str(cfg, "voltage");
if (param_str) { if (param_str) {
millivolt = parse_voltage(param_str); millivolt = parse_voltage(param_str);
free(param_str); free(param_str);
@ -1112,7 +1112,7 @@ static int dediprog_init(const struct programmer_cfg *cfg)
msg_pinfo("Setting voltage to %i mV\n", millivolt); msg_pinfo("Setting voltage to %i mV\n", millivolt);
} }
param_str = extract_programmer_param_str(NULL, "id"); param_str = extract_programmer_param_str(cfg, "id");
if (param_str) { if (param_str) {
char prefix0, prefix1; char prefix0, prefix1;
if (sscanf(param_str, "%c%c%d", &prefix0, &prefix1, &id) != 3) { if (sscanf(param_str, "%c%c%d", &prefix0, &prefix1, &id) != 3) {
@ -1135,7 +1135,7 @@ static int dediprog_init(const struct programmer_cfg *cfg)
} }
free(param_str); free(param_str);
param_str = extract_programmer_param_str(NULL, "device"); param_str = extract_programmer_param_str(cfg, "device");
if (param_str) { if (param_str) {
char *dev_suffix; char *dev_suffix;
if (id != -1) { if (id != -1) {
@ -1162,7 +1162,7 @@ static int dediprog_init(const struct programmer_cfg *cfg)
} }
free(param_str); free(param_str);
param_str = extract_programmer_param_str(NULL, "target"); param_str = extract_programmer_param_str(cfg, "target");
if (param_str) { if (param_str) {
char *target_suffix; char *target_suffix;
errno = 0; errno = 0;

View File

@ -152,7 +152,7 @@ static int developerbox_spi_init(const struct programmer_cfg *cfg)
return 1; return 1;
} }
char *serialno = extract_programmer_param_str(NULL, "serial"); char *serialno = extract_programmer_param_str(cfg, "serial");
if (serialno) if (serialno)
msg_pdbg("Looking for serial number commencing %s\n", serialno); msg_pdbg("Looking for serial number commencing %s\n", serialno);
cp210x_handle = usb_dev_get_by_vid_pid_serial(usb_ctx, cp210x_handle = usb_dev_get_by_vid_pid_serial(usb_ctx,

View File

@ -408,7 +408,7 @@ static int digilent_spi_init(const struct programmer_cfg *cfg)
goto close_handle; goto close_handle;
} }
param_str = extract_programmer_param_str(NULL, "spispeed"); param_str = extract_programmer_param_str(cfg, "spispeed");
if (param_str) { if (param_str) {
for (i = 0; spispeeds[i].name; ++i) { for (i = 0; spispeeds[i].name; ++i) {
if (!strcasecmp(spispeeds[i].name, param_str)) { if (!strcasecmp(spispeeds[i].name, param_str)) {
@ -424,7 +424,7 @@ static int digilent_spi_init(const struct programmer_cfg *cfg)
free(param_str); free(param_str);
} }
param_str = extract_programmer_param_str(NULL, "reset"); param_str = extract_programmer_param_str(cfg, "reset");
if (param_str && strlen(param_str)) if (param_str && strlen(param_str))
reset_board = (param_str[0] == '1'); reset_board = (param_str[0] == '1');
else else

View File

@ -958,7 +958,7 @@ static int init_data(const struct programmer_cfg *cfg,
char *status = NULL; char *status = NULL;
int size = -1; /* size for VARIABLE_SIZE chip device */ int size = -1; /* size for VARIABLE_SIZE chip device */
bustext = extract_programmer_param_str(NULL, "bus"); bustext = extract_programmer_param_str(cfg, "bus");
msg_pdbg("Requested buses are: %s\n", bustext ? bustext : "default"); msg_pdbg("Requested buses are: %s\n", bustext ? bustext : "default");
if (!bustext) if (!bustext)
bustext = strdup("parallel+lpc+fwh+spi+prog"); bustext = strdup("parallel+lpc+fwh+spi+prog");
@ -990,7 +990,7 @@ static int init_data(const struct programmer_cfg *cfg,
msg_pdbg("Support for all flash bus types disabled.\n"); msg_pdbg("Support for all flash bus types disabled.\n");
free(bustext); free(bustext);
tmp = extract_programmer_param_str(NULL, "spi_write_256_chunksize"); tmp = extract_programmer_param_str(cfg, "spi_write_256_chunksize");
if (tmp) { if (tmp) {
data->spi_write_256_chunksize = strtoul(tmp, &endptr, 0); data->spi_write_256_chunksize = strtoul(tmp, &endptr, 0);
if (*endptr != '\0' || data->spi_write_256_chunksize < 1) { if (*endptr != '\0' || data->spi_write_256_chunksize < 1) {
@ -1001,7 +1001,7 @@ static int init_data(const struct programmer_cfg *cfg,
} }
free(tmp); free(tmp);
tmp = extract_programmer_param_str(NULL, "spi_blacklist"); tmp = extract_programmer_param_str(cfg, "spi_blacklist");
if (tmp) { if (tmp) {
i = strlen(tmp); i = strlen(tmp);
if (!strncmp(tmp, "0x", 2)) { if (!strncmp(tmp, "0x", 2)) {
@ -1037,7 +1037,7 @@ static int init_data(const struct programmer_cfg *cfg,
} }
free(tmp); free(tmp);
tmp = extract_programmer_param_str(NULL, "spi_ignorelist"); tmp = extract_programmer_param_str(cfg, "spi_ignorelist");
if (tmp) { if (tmp) {
i = strlen(tmp); i = strlen(tmp);
if (!strncmp(tmp, "0x", 2)) { if (!strncmp(tmp, "0x", 2)) {
@ -1074,7 +1074,7 @@ static int init_data(const struct programmer_cfg *cfg,
free(tmp); free(tmp);
/* frequency to emulate in Hz (default), KHz, or MHz */ /* frequency to emulate in Hz (default), KHz, or MHz */
tmp = extract_programmer_param_str(NULL, "freq"); tmp = extract_programmer_param_str(cfg, "freq");
if (tmp) { if (tmp) {
unsigned long int freq; unsigned long int freq;
char *units = tmp; char *units = tmp;
@ -1124,7 +1124,7 @@ static int init_data(const struct programmer_cfg *cfg,
} }
free(tmp); free(tmp);
tmp = extract_programmer_param_str(NULL, "size"); tmp = extract_programmer_param_str(cfg, "size");
if (tmp) { if (tmp) {
size = strtol(tmp, NULL, 10); size = strtol(tmp, NULL, 10);
if (size <= 0 || (size % 1024 != 0)) { if (size <= 0 || (size % 1024 != 0)) {
@ -1136,7 +1136,7 @@ static int init_data(const struct programmer_cfg *cfg,
free(tmp); free(tmp);
} }
tmp = extract_programmer_param_str(NULL, "hwwp"); tmp = extract_programmer_param_str(cfg, "hwwp");
if (tmp) { if (tmp) {
if (!strcmp(tmp, "yes")) { if (!strcmp(tmp, "yes")) {
msg_pdbg("Emulated chip will have hardware WP enabled\n"); msg_pdbg("Emulated chip will have hardware WP enabled\n");
@ -1151,7 +1151,7 @@ static int init_data(const struct programmer_cfg *cfg,
free(tmp); free(tmp);
} }
tmp = extract_programmer_param_str(NULL, "emulate"); tmp = extract_programmer_param_str(cfg, "emulate");
if (!tmp) { if (!tmp) {
if (size != -1) { if (size != -1) {
msg_perr("%s: size parameter is only valid for VARIABLE_SIZE chip.\n", __func__); msg_perr("%s: size parameter is only valid for VARIABLE_SIZE chip.\n", __func__);
@ -1275,7 +1275,7 @@ static int init_data(const struct programmer_cfg *cfg,
free(tmp); free(tmp);
/* Should emulated flash erase to zero (yes/no)? */ /* Should emulated flash erase to zero (yes/no)? */
tmp = extract_programmer_param_str(NULL, "erase_to_zero"); tmp = extract_programmer_param_str(cfg, "erase_to_zero");
if (tmp) { if (tmp) {
if (data->emu_chip != EMULATE_VARIABLE_SIZE) { if (data->emu_chip != EMULATE_VARIABLE_SIZE) {
msg_perr("%s: erase_to_zero parameter is not valid for real chip.\n", __func__); msg_perr("%s: erase_to_zero parameter is not valid for real chip.\n", __func__);
@ -1295,7 +1295,7 @@ static int init_data(const struct programmer_cfg *cfg,
} }
free(tmp); free(tmp);
status = extract_programmer_param_str(NULL, "spi_status"); status = extract_programmer_param_str(cfg, "spi_status");
if (status) { if (status) {
unsigned int emu_status; unsigned int emu_status;
@ -1371,7 +1371,7 @@ static int dummy_init(const struct programmer_cfg *cfg)
memset(data->flashchip_contents, data->erase_to_zero ? 0x00 : 0xff, data->emu_chip_size); memset(data->flashchip_contents, data->erase_to_zero ? 0x00 : 0xff, data->emu_chip_size);
/* Will be freed by shutdown function if necessary. */ /* Will be freed by shutdown function if necessary. */
data->emu_persistent_image = extract_programmer_param_str(NULL, "image"); data->emu_persistent_image = extract_programmer_param_str(cfg, "image");
if (!data->emu_persistent_image) { if (!data->emu_persistent_image) {
/* Nothing else to do. */ /* Nothing else to do. */
goto dummy_init_out; goto dummy_init_out;

View File

@ -340,7 +340,7 @@ static int ft2232_spi_init(const struct programmer_cfg *cfg)
struct ftdi_context ftdic; struct ftdi_context ftdic;
struct ft2232_data *spi_data; struct ft2232_data *spi_data;
arg = extract_programmer_param_str(NULL, "type"); arg = extract_programmer_param_str(cfg, "type");
if (arg) { if (arg) {
if (!strcasecmp(arg, "2232H")) { if (!strcasecmp(arg, "2232H")) {
ft2232_type = FTDI_FT2232H_PID; ft2232_type = FTDI_FT2232H_PID;
@ -447,7 +447,7 @@ static int ft2232_spi_init(const struct programmer_cfg *cfg)
/* Remember reserved pins before pindir gets modified. */ /* Remember reserved pins before pindir gets modified. */
const uint8_t rsv_bits = pindir & 0xf0; const uint8_t rsv_bits = pindir & 0xf0;
arg = extract_programmer_param_str(NULL, "port"); arg = extract_programmer_param_str(cfg, "port");
if (arg) { if (arg) {
switch (toupper((unsigned char)*arg)) { switch (toupper((unsigned char)*arg)) {
case 'A': case 'A':
@ -480,7 +480,7 @@ static int ft2232_spi_init(const struct programmer_cfg *cfg)
} }
free(arg); free(arg);
arg = extract_programmer_param_str(NULL, "divisor"); arg = extract_programmer_param_str(cfg, "divisor");
if (arg && strlen(arg)) { if (arg && strlen(arg)) {
unsigned int temp = 0; unsigned int temp = 0;
char *endptr; char *endptr;
@ -496,7 +496,7 @@ static int ft2232_spi_init(const struct programmer_cfg *cfg)
free(arg); free(arg);
bool csgpiol_set = false; bool csgpiol_set = false;
arg = extract_programmer_param_str(NULL, "csgpiol"); arg = extract_programmer_param_str(cfg, "csgpiol");
if (arg) { if (arg) {
csgpiol_set = true; csgpiol_set = true;
msg_pwarn("Deprecation warning: `csgpiol` is deprecated and will be removed " msg_pwarn("Deprecation warning: `csgpiol` is deprecated and will be removed "
@ -529,7 +529,7 @@ static int ft2232_spi_init(const struct programmer_cfg *cfg)
for (int pin = 0; pin < 4; pin++) { for (int pin = 0; pin < 4; pin++) {
char gpiol_param[7]; char gpiol_param[7];
snprintf(gpiol_param, sizeof(gpiol_param), "gpiol%d", pin); snprintf(gpiol_param, sizeof(gpiol_param), "gpiol%d", pin);
arg = extract_programmer_param_str(NULL, gpiol_param); arg = extract_programmer_param_str(cfg, gpiol_param);
if (!arg) if (!arg)
continue; continue;
@ -602,8 +602,8 @@ format_error:
msg_perr("Unable to select channel (%s).\n", ftdi_get_error_string(&ftdic)); msg_perr("Unable to select channel (%s).\n", ftdi_get_error_string(&ftdic));
} }
arg = extract_programmer_param_str(NULL, "serial"); arg = extract_programmer_param_str(cfg, "serial");
arg2 = extract_programmer_param_str(NULL, "description"); arg2 = extract_programmer_param_str(cfg, "description");
f = ftdi_usb_open_desc(&ftdic, ft2232_vid, ft2232_type, arg2, arg); f = ftdi_usb_open_desc(&ftdic, ft2232_vid, ft2232_type, arg2, arg);

View File

@ -96,12 +96,12 @@ static int get_bus_number(char *bus_str)
return bus; return bus;
} }
int i2c_open_from_programmer_params(uint16_t addr, int force) int i2c_open_from_programmer_params(const struct programmer_cfg *cfg, uint16_t addr, int force)
{ {
int fd = -1; int fd = -1;
char *bus_str = extract_programmer_param_str(NULL, "bus"); char *bus_str = extract_programmer_param_str(cfg, "bus");
char *device_path = extract_programmer_param_str(NULL, "devpath"); char *device_path = extract_programmer_param_str(cfg, "devpath");
if (device_path != NULL && bus_str != NULL) { if (device_path != NULL && bus_str != NULL) {
msg_perr("%s: only one of bus and devpath may be specified\n", __func__); msg_perr("%s: only one of bus and devpath may be specified\n", __func__);

View File

@ -19,6 +19,8 @@
#include <inttypes.h> #include <inttypes.h>
struct programmer_cfg; /* defined in programmer.h */
/** /**
* An convenient structure that contains the buffer size and the buffer * An convenient structure that contains the buffer size and the buffer
* pointer. Used to wrap buffer details while doing the I2C data * pointer. Used to wrap buffer details while doing the I2C data
@ -86,7 +88,7 @@ int i2c_open_path(const char *path, uint16_t addr, int force);
* I2C device to use from programmer parameters. It is meant to be called * I2C device to use from programmer parameters. It is meant to be called
* from I2C-based programmers to avoid repeating parameter parsing code. * from I2C-based programmers to avoid repeating parameter parsing code.
*/ */
int i2c_open_from_programmer_params(uint16_t addr, int force); int i2c_open_from_programmer_params(const struct programmer_cfg *cfg, uint16_t addr, int force);
/** /**
* i2c_close - closes the file descriptor returned by i2c_open * i2c_close - closes the file descriptor returned by i2c_open

View File

@ -129,7 +129,7 @@ static int get_params(const struct programmer_cfg *cfg,
*board_vendor = NULL; *board_vendor = NULL;
*board_model = NULL; *board_model = NULL;
arg = extract_programmer_param_str(NULL, "boardenable"); arg = extract_programmer_param_str(cfg, "boardenable");
if (arg && !strcmp(arg,"force")) { if (arg && !strcmp(arg,"force")) {
*boardenable = 1; *boardenable = 1;
} else if (arg && !strlen(arg)) { } else if (arg && !strlen(arg)) {
@ -143,7 +143,7 @@ static int get_params(const struct programmer_cfg *cfg,
} }
free(arg); free(arg);
arg = extract_programmer_param_str(NULL, "boardmismatch"); arg = extract_programmer_param_str(cfg, "boardmismatch");
if (arg && !strcmp(arg,"force")) { if (arg && !strcmp(arg,"force")) {
*boardmismatch = 1; *boardmismatch = 1;
} else if (arg && !strlen(arg)) { } else if (arg && !strlen(arg)) {
@ -157,7 +157,7 @@ static int get_params(const struct programmer_cfg *cfg,
} }
free(arg); free(arg);
arg = extract_programmer_param_str(NULL, "laptop"); arg = extract_programmer_param_str(cfg, "laptop");
if (arg && !strcmp(arg, "force_I_want_a_brick")) if (arg && !strcmp(arg, "force_I_want_a_brick"))
*force_laptop = 1; *force_laptop = 1;
else if (arg && !strcmp(arg, "this_is_not_a_laptop")) else if (arg && !strcmp(arg, "this_is_not_a_laptop"))
@ -173,7 +173,7 @@ static int get_params(const struct programmer_cfg *cfg,
} }
free(arg); free(arg);
arg = extract_programmer_param_str(NULL, "mainboard"); arg = extract_programmer_param_str(cfg, "mainboard");
if (arg && strlen(arg)) { if (arg && strlen(arg)) {
if (board_parse_parameter(arg, board_vendor, board_model)) { if (board_parse_parameter(arg, board_vendor, board_model)) {
free(arg); free(arg);

View File

@ -328,7 +328,7 @@ static uint16_t it87spi_probe(const struct programmer_cfg *cfg, uint16_t port)
enter_conf_mode_ite(port); enter_conf_mode_ite(port);
char *param = extract_programmer_param_str(NULL, "dualbiosindex"); char *param = extract_programmer_param_str(cfg, "dualbiosindex");
if (param != NULL) { if (param != NULL) {
sio_write(port, 0x07, 0x07); /* Select GPIO LDN */ sio_write(port, 0x07, 0x07); /* Select GPIO LDN */
tmp = sio_read(port, 0xEF); tmp = sio_read(port, 0xEF);
@ -394,7 +394,7 @@ static uint16_t it87spi_probe(const struct programmer_cfg *cfg, uint16_t port)
flashport |= sio_read(port, 0x65); flashport |= sio_read(port, 0x65);
msg_pdbg("Serial flash port 0x%04x\n", flashport); msg_pdbg("Serial flash port 0x%04x\n", flashport);
/* Non-default port requested? */ /* Non-default port requested? */
param = extract_programmer_param_str(NULL, "it87spiport"); param = extract_programmer_param_str(cfg, "it87spiport");
if (param) { if (param) {
char *endptr = NULL; char *endptr = NULL;
unsigned long forced_flashport; unsigned long forced_flashport;

View File

@ -203,7 +203,7 @@ static int jlink_spi_init(const struct programmer_cfg *cfg)
struct jlink_spi_data *jlink_data = NULL; struct jlink_spi_data *jlink_data = NULL;
bool enable_target_power; bool enable_target_power;
arg = extract_programmer_param_str(NULL, "spispeed"); arg = extract_programmer_param_str(cfg, "spispeed");
if (arg) { if (arg) {
char *endptr; char *endptr;
@ -230,7 +230,7 @@ static int jlink_spi_init(const struct programmer_cfg *cfg)
bool use_serial_number; bool use_serial_number;
uint32_t serial_number; uint32_t serial_number;
arg = extract_programmer_param_str(NULL, "serial"); arg = extract_programmer_param_str(cfg, "serial");
if (arg) { if (arg) {
if (!strlen(arg)) { if (!strlen(arg)) {
@ -259,7 +259,7 @@ static int jlink_spi_init(const struct programmer_cfg *cfg)
free(arg); free(arg);
reset_cs = true; reset_cs = true;
arg = extract_programmer_param_str(NULL, "cs"); arg = extract_programmer_param_str(cfg, "cs");
if (arg) { if (arg) {
if (!strcasecmp(arg, "reset")) { if (!strcasecmp(arg, "reset")) {
@ -281,7 +281,7 @@ static int jlink_spi_init(const struct programmer_cfg *cfg)
msg_pdbg("Using TRST as chip select signal.\n"); msg_pdbg("Using TRST as chip select signal.\n");
enable_target_power = false; enable_target_power = false;
arg = extract_programmer_param_str(NULL, "power"); arg = extract_programmer_param_str(cfg, "power");
if (arg) { if (arg) {
if (!strcasecmp(arg, "on")) { if (!strcasecmp(arg, "on")) {

View File

@ -500,7 +500,7 @@ static int linux_mtd_init(const struct programmer_cfg *cfg)
int ret = 1; int ret = 1;
struct linux_mtd_data *data = NULL; struct linux_mtd_data *data = NULL;
param_str = extract_programmer_param_str(NULL, "dev"); param_str = extract_programmer_param_str(cfg, "dev");
if (param_str) { if (param_str) {
char *endptr; char *endptr;

View File

@ -177,7 +177,7 @@ static int linux_spi_init(const struct programmer_cfg *cfg)
size_t max_kernel_buf_size; size_t max_kernel_buf_size;
struct linux_spi_data *spi_data; struct linux_spi_data *spi_data;
param_str = extract_programmer_param_str(NULL, "spispeed"); param_str = extract_programmer_param_str(cfg, "spispeed");
if (param_str && strlen(param_str)) { if (param_str && strlen(param_str)) {
speed_hz = (uint32_t)strtoul(param_str, &endp, 10) * 1000; speed_hz = (uint32_t)strtoul(param_str, &endp, 10) * 1000;
if (param_str == endp || speed_hz == 0) { if (param_str == endp || speed_hz == 0) {
@ -192,7 +192,7 @@ static int linux_spi_init(const struct programmer_cfg *cfg)
} }
free(param_str); free(param_str);
param_str = extract_programmer_param_str(NULL, "dev"); param_str = extract_programmer_param_str(cfg, "dev");
if (!param_str || !strlen(param_str)) { if (!param_str || !strlen(param_str)) {
msg_perr("No SPI device given. Use flashrom -p " msg_perr("No SPI device given. Use flashrom -p "
"linux_spi:dev=/dev/spidevX.Y\n"); "linux_spi:dev=/dev/spidevX.Y\n");

View File

@ -470,7 +470,7 @@ static int get_params(const struct programmer_cfg *cfg, bool *allow_brick)
int ret = 0; int ret = 0;
*allow_brick = false; /* Default behaviour is to bail. */ *allow_brick = false; /* Default behaviour is to bail. */
brick_str = extract_programmer_param_str(NULL, "allow_brick"); brick_str = extract_programmer_param_str(cfg, "allow_brick");
if (brick_str) { if (brick_str) {
if (!strcmp(brick_str, "yes")) { if (!strcmp(brick_str, "yes")) {
*allow_brick = true; *allow_brick = true;
@ -504,7 +504,7 @@ static int mediatek_init(const struct programmer_cfg *cfg)
return SPI_GENERIC_ERROR; return SPI_GENERIC_ERROR;
} }
int fd = i2c_open_from_programmer_params(ISP_PORT, 0); int fd = i2c_open_from_programmer_params(cfg, ISP_PORT, 0);
if (fd < 0) { if (fd < 0) {
msg_perr("Failed to open i2c\n"); msg_perr("Failed to open i2c\n");
return fd; return fd;

View File

@ -159,7 +159,7 @@ static int mstarddc_spi_init(const struct programmer_cfg *cfg)
struct mstarddc_spi_data *mstarddc_data; struct mstarddc_spi_data *mstarddc_data;
// Get device, address from command-line // Get device, address from command-line
char *i2c_device = extract_programmer_param_str(NULL, "dev"); char *i2c_device = extract_programmer_param_str(cfg, "dev");
if (i2c_device != NULL && strlen(i2c_device) > 0) { if (i2c_device != NULL && strlen(i2c_device) > 0) {
char *i2c_address = strchr(i2c_device, ':'); char *i2c_address = strchr(i2c_device, ':');
if (i2c_address != NULL) { if (i2c_address != NULL) {
@ -182,7 +182,7 @@ static int mstarddc_spi_init(const struct programmer_cfg *cfg)
msg_pinfo("Info: Will try to use device %s and address 0x%02x.\n", i2c_device, mstarddc_addr); msg_pinfo("Info: Will try to use device %s and address 0x%02x.\n", i2c_device, mstarddc_addr);
// Get noreset=1 option from command-line // Get noreset=1 option from command-line
char *noreset = extract_programmer_param_str(NULL, "noreset"); char *noreset = extract_programmer_param_str(cfg, "noreset");
if (noreset != NULL && noreset[0] == '1') if (noreset != NULL && noreset[0] == '1')
mstarddc_doreset = 0; mstarddc_doreset = 0;
free(noreset); free(noreset);

View File

@ -553,7 +553,7 @@ static int ni845x_spi_init(const struct programmer_cfg *cfg)
int32 tmp = 0; int32 tmp = 0;
// read the cs parameter (which Chip select should we use) // read the cs parameter (which Chip select should we use)
CS_str = extract_programmer_param_str(NULL, "cs"); CS_str = extract_programmer_param_str(cfg, "cs");
if (CS_str) { if (CS_str) {
CS_number = CS_str[0] - '0'; CS_number = CS_str[0] - '0';
free(CS_str); free(CS_str);
@ -563,7 +563,7 @@ static int ni845x_spi_init(const struct programmer_cfg *cfg)
} }
} }
voltage = extract_programmer_param_str(NULL, "voltage"); voltage = extract_programmer_param_str(cfg, "voltage");
if (voltage != NULL) { if (voltage != NULL) {
requested_io_voltage_mV = parse_voltage(voltage); requested_io_voltage_mV = parse_voltage(voltage);
free(voltage); free(voltage);
@ -571,9 +571,9 @@ static int ni845x_spi_init(const struct programmer_cfg *cfg)
return 1; return 1;
} }
serial_number = extract_programmer_param_str(NULL, "serial"); serial_number = extract_programmer_param_str(cfg, "serial");
speed_str = extract_programmer_param_str(NULL, "spispeed"); speed_str = extract_programmer_param_str(cfg, "spispeed");
if (speed_str) { if (speed_str) {
spi_speed_KHz = strtoul(speed_str, &endptr, 0); spi_speed_KHz = strtoul(speed_str, &endptr, 0);
if (*endptr) { if (*endptr) {
@ -586,7 +586,7 @@ static int ni845x_spi_init(const struct programmer_cfg *cfg)
} }
ignore_io_voltage_limits = false; ignore_io_voltage_limits = false;
ignore_io_voltage_limits_str = extract_programmer_param_str(NULL, "ignore_io_voltage_limits"); ignore_io_voltage_limits_str = extract_programmer_param_str(cfg, "ignore_io_voltage_limits");
if (ignore_io_voltage_limits_str if (ignore_io_voltage_limits_str
&& strcmp(ignore_io_voltage_limits_str, "yes") == 0) { && strcmp(ignore_io_voltage_limits_str, "yes") == 0) {
ignore_io_voltage_limits = true; ignore_io_voltage_limits = true;

View File

@ -117,7 +117,7 @@ static int ogp_spi_init(const struct programmer_cfg *cfg)
uint32_t ogp_reg__ce; uint32_t ogp_reg__ce;
uint32_t ogp_reg_sck; uint32_t ogp_reg_sck;
type = extract_programmer_param_str(NULL, "rom"); type = extract_programmer_param_str(cfg, "rom");
if (!type) { if (!type) {
msg_perr("Please use flashrom -p ogp_spi:rom=... to specify " msg_perr("Please use flashrom -p ogp_spi:rom=... to specify "

View File

@ -446,7 +446,7 @@ static int get_params(const struct programmer_cfg *cfg, bool *allow_brick)
int ret = 0; int ret = 0;
*allow_brick = false; /* Default behaviour is to bail. */ *allow_brick = false; /* Default behaviour is to bail. */
brick_str = extract_programmer_param_str(NULL, "allow_brick"); brick_str = extract_programmer_param_str(cfg, "allow_brick");
if (brick_str) { if (brick_str) {
if (!strcmp(brick_str, "yes")) { if (!strcmp(brick_str, "yes")) {
*allow_brick = true; *allow_brick = true;
@ -479,7 +479,7 @@ static int parade_lspcon_init(const struct programmer_cfg *cfg)
return SPI_GENERIC_ERROR; return SPI_GENERIC_ERROR;
} }
int fd = i2c_open_from_programmer_params(REGISTER_ADDRESS, 0); int fd = i2c_open_from_programmer_params(cfg, REGISTER_ADDRESS, 0);
if (fd < 0) if (fd < 0)
return fd; return fd;

View File

@ -272,7 +272,7 @@ struct pci_dev *pcidev_init(const struct dev_entry *devs, int bar)
pci_filter_init(pacc, &filter); pci_filter_init(pacc, &filter);
/* Filter by bb:dd.f (if supplied by the user). */ /* Filter by bb:dd.f (if supplied by the user). */
pcidev_bdf = extract_programmer_param_str(NULL, "pci"); pcidev_bdf = extract_programmer_param_str(NULL, "pci"); /* TODO(quasisec): pass prog_param */
if (pcidev_bdf != NULL) { if (pcidev_bdf != NULL) {
if ((msg = pci_filter_parse_slot(&filter, pcidev_bdf))) { if ((msg = pci_filter_parse_slot(&filter, pcidev_bdf))) {
msg_perr("Error: %s\n", msg); msg_perr("Error: %s\n", msg);

View File

@ -412,7 +412,7 @@ static int pickit2_spi_init(const struct programmer_cfg *cfg)
int spispeed_idx = 0; int spispeed_idx = 0;
char *param_str; char *param_str;
param_str = extract_programmer_param_str(NULL, "spispeed"); param_str = extract_programmer_param_str(cfg, "spispeed");
if (param_str != NULL) { if (param_str != NULL) {
int i = 0; int i = 0;
for (; spispeeds[i].name; i++) { for (; spispeeds[i].name; i++) {
@ -430,7 +430,7 @@ static int pickit2_spi_init(const struct programmer_cfg *cfg)
} }
int millivolt = 3500; int millivolt = 3500;
param_str = extract_programmer_param_str(NULL, "voltage"); param_str = extract_programmer_param_str(cfg, "voltage");
if (param_str != NULL) { if (param_str != NULL) {
millivolt = parse_voltage(param_str); millivolt = parse_voltage(param_str);
free(param_str); free(param_str);

View File

@ -130,7 +130,7 @@ static int get_params(const struct programmer_cfg *cfg, enum pony_type *type, in
*have_device = 0; *have_device = 0;
/* The parameter is in format "dev=/dev/device,type=serbang" */ /* The parameter is in format "dev=/dev/device,type=serbang" */
arg = extract_programmer_param_str(NULL, "dev"); arg = extract_programmer_param_str(cfg, "dev");
if (arg && strlen(arg)) { if (arg && strlen(arg)) {
sp_fd = sp_openserport(arg, 9600); sp_fd = sp_openserport(arg, 9600);
if (sp_fd == SER_INV_FD) if (sp_fd == SER_INV_FD)
@ -140,7 +140,7 @@ static int get_params(const struct programmer_cfg *cfg, enum pony_type *type, in
} }
free(arg); free(arg);
arg = extract_programmer_param_str(NULL, "type"); arg = extract_programmer_param_str(cfg, "type");
if (arg && !strcasecmp(arg, "serbang")) { if (arg && !strcasecmp(arg, "serbang")) {
*type = TYPE_SERBANG; *type = TYPE_SERBANG;
} else if (arg && !strcasecmp(arg, "si_prog")) { } else if (arg && !strcasecmp(arg, "si_prog")) {

View File

@ -1432,7 +1432,7 @@ static int configure_protocol(struct raiden_debug_spi_data *ctx_data)
static int get_ap_request_type(const struct programmer_cfg *cfg) static int get_ap_request_type(const struct programmer_cfg *cfg)
{ {
int ap_request = RAIDEN_DEBUG_SPI_REQ_ENABLE_AP; int ap_request = RAIDEN_DEBUG_SPI_REQ_ENABLE_AP;
char *custom_rst_str = extract_programmer_param_str(NULL, "custom_rst"); char *custom_rst_str = extract_programmer_param_str(cfg, "custom_rst");
if (custom_rst_str) { if (custom_rst_str) {
if (!strcasecmp(custom_rst_str, "true")) { if (!strcasecmp(custom_rst_str, "true")) {
ap_request = RAIDEN_DEBUG_SPI_REQ_ENABLE_AP_CUSTOM; ap_request = RAIDEN_DEBUG_SPI_REQ_ENABLE_AP_CUSTOM;
@ -1456,7 +1456,7 @@ static int get_target(const struct programmer_cfg *cfg)
*/ */
int request_enable = RAIDEN_DEBUG_SPI_REQ_ENABLE; int request_enable = RAIDEN_DEBUG_SPI_REQ_ENABLE;
char *target_str = extract_programmer_param_str(NULL, "target"); char *target_str = extract_programmer_param_str(cfg, "target");
if (target_str) { if (target_str) {
if (!strcasecmp(target_str, "ap")) if (!strcasecmp(target_str, "ap"))
request_enable = get_ap_request_type(cfg); request_enable = get_ap_request_type(cfg);
@ -1485,7 +1485,7 @@ static void free_dev_list(struct usb_device **dev_lst)
static int raiden_debug_spi_init(const struct programmer_cfg *cfg) static int raiden_debug_spi_init(const struct programmer_cfg *cfg)
{ {
struct usb_match match; struct usb_match match;
char *serial = extract_programmer_param_str(NULL, "serial"); char *serial = extract_programmer_param_str(cfg, "serial");
struct usb_device *current; struct usb_device *current;
struct usb_device *device = NULL; struct usb_device *device = NULL;
int found = 0; int found = 0;

View File

@ -244,7 +244,7 @@ static int rayer_spi_init(const struct programmer_cfg *cfg)
uint8_t lpt_outbyte; uint8_t lpt_outbyte;
/* Non-default port requested? */ /* Non-default port requested? */
arg = extract_programmer_param_str(NULL, "iobase"); arg = extract_programmer_param_str(cfg, "iobase");
if (arg) { if (arg) {
char *endptr = NULL; char *endptr = NULL;
unsigned long tmp; unsigned long tmp;
@ -277,7 +277,7 @@ static int rayer_spi_init(const struct programmer_cfg *cfg)
msg_pdbg("Using address 0x%x as I/O base for parallel port access.\n", msg_pdbg("Using address 0x%x as I/O base for parallel port access.\n",
lpt_iobase); lpt_iobase);
arg = extract_programmer_param_str(NULL, "type"); arg = extract_programmer_param_str(cfg, "type");
if (arg) { if (arg) {
for (; prog->type != NULL; prog++) { for (; prog->type != NULL; prog++) {
if (strcasecmp(arg, prog->type) == 0) { if (strcasecmp(arg, prog->type) == 0) {

View File

@ -450,7 +450,7 @@ static int get_params(const struct programmer_cfg *cfg, bool *reset, bool *enter
int ret = 0; int ret = 0;
*allow_brick = false; /* Default behaviour is to bail. */ *allow_brick = false; /* Default behaviour is to bail. */
param_str = extract_programmer_param_str(NULL, "allow_brick"); param_str = extract_programmer_param_str(cfg, "allow_brick");
if (param_str) { if (param_str) {
if (!strcmp(param_str, "yes")) { if (!strcmp(param_str, "yes")) {
*allow_brick = true; *allow_brick = true;
@ -462,7 +462,7 @@ static int get_params(const struct programmer_cfg *cfg, bool *reset, bool *enter
free(param_str); free(param_str);
*reset = false; /* Default behaviour is no MCU reset on tear-down. */ *reset = false; /* Default behaviour is no MCU reset on tear-down. */
param_str = extract_programmer_param_str(NULL, "reset_mcu"); param_str = extract_programmer_param_str(cfg, "reset_mcu");
if (param_str) { if (param_str) {
if (param_str[0] == '1') { if (param_str[0] == '1') {
*reset = true; *reset = true;
@ -476,7 +476,7 @@ static int get_params(const struct programmer_cfg *cfg, bool *reset, bool *enter
free(param_str); free(param_str);
*enter_isp = true; /* Default behaviour is enter ISP on setup. */ *enter_isp = true; /* Default behaviour is enter ISP on setup. */
param_str = extract_programmer_param_str(NULL, "enter_isp"); param_str = extract_programmer_param_str(cfg, "enter_isp");
if (param_str) { if (param_str) {
if (param_str[0] == '1') { if (param_str[0] == '1') {
*enter_isp = true; *enter_isp = true;
@ -512,7 +512,7 @@ static int realtek_mst_i2c_spi_init(const struct programmer_cfg *cfg)
return SPI_GENERIC_ERROR; return SPI_GENERIC_ERROR;
} }
int fd = i2c_open_from_programmer_params(REGISTER_ADDRESS, 0); int fd = i2c_open_from_programmer_params(cfg, REGISTER_ADDRESS, 0);
if (fd < 0) if (fd < 0)
return fd; return fd;

View File

@ -416,7 +416,7 @@ static int handle_speed(const struct programmer_cfg *cfg,
int16_t spireadmode_idx = -1; int16_t spireadmode_idx = -1;
char *param_str; char *param_str;
param_str = extract_programmer_param_str(NULL, "spispeed"); param_str = extract_programmer_param_str(cfg, "spispeed");
if (param_str != NULL) { if (param_str != NULL) {
unsigned int i; unsigned int i;
for (i = 0; i < ARRAY_SIZE(spispeeds); i++) { for (i = 0; i < ARRAY_SIZE(spispeeds); i++) {
@ -440,7 +440,7 @@ static int handle_speed(const struct programmer_cfg *cfg,
free(param_str); free(param_str);
} }
param_str = extract_programmer_param_str(NULL, "spireadmode"); param_str = extract_programmer_param_str(cfg, "spireadmode");
if (param_str != NULL) { if (param_str != NULL) {
unsigned int i; unsigned int i;
for (i = 0; i < ARRAY_SIZE(spireadmodes); i++) { for (i = 0; i < ARRAY_SIZE(spireadmodes); i++) {
@ -529,7 +529,7 @@ static int handle_imc(const struct programmer_cfg *cfg, struct pci_dev *dev, enu
return 0; return 0;
bool amd_imc_force = false; bool amd_imc_force = false;
char *param_value = extract_programmer_param_str(NULL, "amd_imc_force"); char *param_value = extract_programmer_param_str(cfg, "amd_imc_force");
if (param_value && !strcmp(param_value, "yes")) { if (param_value && !strcmp(param_value, "yes")) {
amd_imc_force = true; amd_imc_force = true;
msg_pspew("amd_imc_force enabled.\n"); msg_pspew("amd_imc_force enabled.\n");

View File

@ -574,7 +574,7 @@ static int serprog_init(const struct programmer_cfg *cfg)
int have_device = 0; int have_device = 0;
/* the parameter is either of format "dev=/dev/device[:baud]" or "ip=ip:port" */ /* the parameter is either of format "dev=/dev/device[:baud]" or "ip=ip:port" */
device = extract_programmer_param_str(NULL, "dev"); device = extract_programmer_param_str(cfg, "dev");
if (device && strlen(device)) { if (device && strlen(device)) {
char *baud_str = strstr(device, ":"); char *baud_str = strstr(device, ":");
if (baud_str != NULL) { if (baud_str != NULL) {
@ -611,7 +611,7 @@ static int serprog_init(const struct programmer_cfg *cfg)
} }
free(device); free(device);
device = extract_programmer_param_str(NULL, "ip"); device = extract_programmer_param_str(cfg, "ip");
if (have_device && device) { if (have_device && device) {
msg_perr("Error: Both host and device specified.\n" msg_perr("Error: Both host and device specified.\n"
"Please use either dev= or ip= but not both.\n"); "Please use either dev= or ip= but not both.\n");
@ -739,7 +739,7 @@ static int serprog_init(const struct programmer_cfg *cfg)
spi_master_serprog.max_data_read = v; spi_master_serprog.max_data_read = v;
msg_pdbg(MSGHEADER "Maximum read-n length is %d\n", v); msg_pdbg(MSGHEADER "Maximum read-n length is %d\n", v);
} }
spispeed = extract_programmer_param_str(NULL, "spispeed"); spispeed = extract_programmer_param_str(cfg, "spispeed");
if (spispeed && strlen(spispeed)) { if (spispeed && strlen(spispeed)) {
uint32_t f_spi_req, f_spi; uint32_t f_spi_req, f_spi;
uint8_t buf[4]; uint8_t buf[4];

View File

@ -490,7 +490,7 @@ static int stlinkv3_spi_init(const struct programmer_cfg *cfg)
return 1; return 1;
} }
param_str = extract_programmer_param_str(NULL, "serial"); param_str = extract_programmer_param_str(cfg, "serial");
if (param_str) if (param_str)
msg_pdbg("Opening STLINK-V3 with serial: %s\n", param_str); msg_pdbg("Opening STLINK-V3 with serial: %s\n", param_str);
@ -515,7 +515,7 @@ static int stlinkv3_spi_init(const struct programmer_cfg *cfg)
} }
free(param_str); free(param_str);
param_str = extract_programmer_param_str(NULL, "spispeed"); param_str = extract_programmer_param_str(cfg, "spispeed");
if (param_str) { if (param_str) {
sck_freq_kHz = strtoul(param_str, &endptr, 0); sck_freq_kHz = strtoul(param_str, &endptr, 0);
if (*endptr || sck_freq_kHz == 0) { if (*endptr || sck_freq_kHz == 0) {

View File

@ -31,7 +31,7 @@
static void usb_match_value_init(struct usb_match_value *match, static void usb_match_value_init(struct usb_match_value *match,
char const *parameter) char const *parameter)
{ {
char *string = extract_programmer_param_str(NULL, parameter); char *string = extract_programmer_param_str(NULL, parameter); /* TODO(quasisec): pass prog_param */
match->name = parameter; match->name = parameter;