mirror of
https://review.coreboot.org/flashrom.git
synced 2025-06-30 21:52:36 +02:00
Rename lspcon_i2c_spi to parade_lspcon
The chip targeted by the `lspcon_i2c_spi` programmer is a Parade PS175. Rename the programmer to match the chips vendor / family instead of the generic LSPCON protocol. Remove the `_i2c_spi` ending in preparation to become an opaque master. The chip is visible on an Acer Chromebox CXI4. https://www.paradetech.com/products/ps175/ https://www.acer.com/ac/en/US/content/series/acerchromeboxcxi4 TEST: `make CONFIG_PARADE_LSPCON=yes` and `meson build -Dconfig_parade_lspcon=true` produces flashrom binaries with the parade_lspcon programmer included. Change-Id: I9148be6d9162c1722ff739929ca5e181b628dd57 Signed-off-by: Thomas Heijligen <src@posteo.de> Reviewed-on: https://review.coreboot.org/c/flashrom/+/65547 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Felix Singer <felixsinger@posteo.net> Reviewed-by: Angel Pons <th3fanbus@gmail.com>
This commit is contained in:

committed by
Anastasia Klimchuk

parent
494bedae23
commit
df0bbf07de
@ -71,7 +71,7 @@ config_satasii = get_option('config_satasii')
|
||||
config_serprog = get_option('config_serprog')
|
||||
config_usbblaster_spi = get_option('config_usbblaster_spi')
|
||||
config_stlinkv3_spi = get_option('config_stlinkv3_spi')
|
||||
config_lspcon_i2c_spi = get_option('config_lspcon_i2c_spi')
|
||||
config_parade_lspcon = get_option('config_parade_lspcon')
|
||||
config_mediatek_i2c_spi = get_option('config_mediatek_i2c_spi')
|
||||
config_realtek_mst_i2c_spi = get_option('config_realtek_mst_i2c_spi')
|
||||
config_print_wiki= get_option('print_wiki')
|
||||
@ -359,9 +359,9 @@ if config_stlinkv3_spi
|
||||
srcs += files('stlinkv3_spi.c')
|
||||
cargs += '-DCONFIG_STLINKV3_SPI=1'
|
||||
endif
|
||||
if config_lspcon_i2c_spi
|
||||
srcs += files('lspcon_i2c_spi.c')
|
||||
cargs += '-DCONFIG_LSPCON_I2C_SPI=1'
|
||||
if config_parade_lspcon
|
||||
srcs += files('parade_lspcon.c')
|
||||
cargs += '-DCONFIG_PARADE_LSPCON=1'
|
||||
endif
|
||||
if config_mediatek_i2c_spi
|
||||
srcs += files('mediatek_i2c_spi.c')
|
||||
|
Reference in New Issue
Block a user