mirror of
https://review.coreboot.org/flashrom.git
synced 2025-04-27 15:12:36 +02:00
ft2232_spi: Add FTDI search by description.
This adds to the search-by-serial functionality with search-by-description (product string). This is useful when e.g. one has multiple FTDIs in a system and wants the serial numbers to reflect the system-level serial number, and the description to reflect the subcomponent names. Tested manually by running with both serial and description searches, on a machine with multiple FTDIs plugged in. Ensured that when two devices with the same vid/pid/serial number are plugged in, description can be used to differentiate. Verifed no-description, no-serial, one FTDI plugged in base case works. Original version of this code used the original single "arg" char*, but on further thought, this wasn't worth the readability and functionality losses. The new version with arg2 gets rid of several lines of code, the gotos, and adds the ability to filter by both description and serial simultaneously. Change-Id: Ib4be23247995710900175f5f16e38db577ef08fa Signed-off-by: Harry Johnson <johnsonh@waymo.com> Reviewed-on: https://review.coreboot.org/c/flashrom/+/56164 Reviewed-by: Anastasia Klimchuk <aklm@chromium.org> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
parent
19c6b2821d
commit
b7dec7f2cc
@ -319,7 +319,7 @@ static int ft2232_spi_init(void)
|
|||||||
*/
|
*/
|
||||||
uint32_t divisor = DEFAULT_DIVISOR;
|
uint32_t divisor = DEFAULT_DIVISOR;
|
||||||
int f;
|
int f;
|
||||||
char *arg;
|
char *arg, *arg2;
|
||||||
double mpsse_clk;
|
double mpsse_clk;
|
||||||
|
|
||||||
uint8_t cs_bits = 0x08;
|
uint8_t cs_bits = 0x08;
|
||||||
@ -499,8 +499,12 @@ static int ft2232_spi_init(void)
|
|||||||
}
|
}
|
||||||
|
|
||||||
arg = extract_programmer_param("serial");
|
arg = extract_programmer_param("serial");
|
||||||
f = ftdi_usb_open_desc(&ftdic, ft2232_vid, ft2232_type, NULL, arg);
|
arg2 = extract_programmer_param("description");
|
||||||
|
|
||||||
|
f = ftdi_usb_open_desc(&ftdic, ft2232_vid, ft2232_type, arg2, arg);
|
||||||
|
|
||||||
free(arg);
|
free(arg);
|
||||||
|
free(arg2);
|
||||||
|
|
||||||
if (f < 0 && f != -5) {
|
if (f < 0 && f != -5) {
|
||||||
msg_perr("Unable to open FTDI device: %d (%s)\n", f,
|
msg_perr("Unable to open FTDI device: %d (%s)\n", f,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user