mirror of
https://review.coreboot.org/flashrom.git
synced 2025-07-01 22:21:16 +02:00
Add ENE LPC programmer
Initial support of ENE LPC interface keyboard controller. BUG=b:156140422 BRANCH=none Signed-off-by: Victor Ding <victording@google.com> Change-Id: I970afd8c1bd92c159c60e09f22e2f18c0433729d Reviewed-on: https://review.coreboot.org/c/flashrom/+/44580 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Angel Pons <th3fanbus@gmail.com> Reviewed-by: Edward O'Callaghan <quasisec@chromium.org>
This commit is contained in:

committed by
Edward O'Callaghan

parent
22cd31674d
commit
436b4155b1
@ -61,6 +61,9 @@ enum programmer {
|
||||
#if CONFIG_ATAPROMISE == 1
|
||||
PROGRAMMER_ATAPROMISE,
|
||||
#endif
|
||||
#if CONFIG_ENE_LPC == 1
|
||||
PROGRAMMER_ENE_LPC,
|
||||
#endif
|
||||
#if CONFIG_IT8212 == 1
|
||||
PROGRAMMER_IT8212,
|
||||
#endif
|
||||
@ -578,6 +581,11 @@ int digilent_spi_init(void);
|
||||
extern const struct dev_entry devs_digilent_spi[];
|
||||
#endif
|
||||
|
||||
/* ene_lpc.c */
|
||||
#if CONFIG_ENE_LPC == 1
|
||||
int ene_lpc_init(void);
|
||||
#endif
|
||||
|
||||
/* jlink_spi.c */
|
||||
#if CONFIG_JLINK_SPI == 1
|
||||
int jlink_spi_init(void);
|
||||
|
Reference in New Issue
Block a user