aboutsummaryrefslogtreecommitdiffstats
path: root/programmer_table.c
diff options
context:
space:
mode:
authorThomas Heijligen <thomas.heijligen@secunet.com>2022-06-30 10:29:44 +0200
committerAnastasia Klimchuk <aklm@chromium.org>2022-07-17 22:43:56 +0000
commitdf0bbf07dec6fcfe8f03f2a0774630a9135c2711 (patch)
treed54a4695d994a5ebf245b92f226f811f59d58d99 /programmer_table.c
parent494bedae23c547e0a3e8f86a5a69cf4b05bd1586 (diff)
downloadflashrom-df0bbf07dec6fcfe8f03f2a0774630a9135c2711.tar.gz
flashrom-df0bbf07dec6fcfe8f03f2a0774630a9135c2711.tar.bz2
flashrom-df0bbf07dec6fcfe8f03f2a0774630a9135c2711.zip
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>
Diffstat (limited to 'programmer_table.c')
-rw-r--r--programmer_table.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/programmer_table.c b/programmer_table.c
index 2a06c30d..818cea72 100644
--- a/programmer_table.c
+++ b/programmer_table.c
@@ -124,8 +124,8 @@ const struct programmer_entry *const programmer_table[] = {
&programmer_linux_spi,
#endif
-#if CONFIG_LSPCON_I2C_SPI == 1
- &programmer_lspcon_i2c_spi,
+#if CONFIG_PARADE_LSPCON == 1
+ &programmer_parade_lspcon,
#endif
#if CONFIG_MEDIATEK_I2C_SPI == 1