1
0
mirror of https://review.coreboot.org/flashrom.git synced 2025-07-03 06:53:18 +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:
Victor Ding
2020-08-19 22:48:19 +10:00
committed by Edward O'Callaghan
parent 22cd31674d
commit 436b4155b1
6 changed files with 645 additions and 0 deletions

View File

@ -40,6 +40,7 @@ config_developerbox_spi = get_option('config_developerbox_spi')
config_digilent_spi = get_option('config_digilent_spi')
config_drkaiser = get_option('config_drkaiser')
config_dummy = get_option('config_dummy')
config_ene_lpc = get_option('config_ene_lpc')
config_ft2232_spi = get_option('config_ft2232_spi')
config_gfxnvidia = get_option('config_gfxnvidia')
config_raiden = get_option('config_raiden')
@ -202,6 +203,10 @@ if config_internal
cargs += '-DCONFIG_INTERNAL_DMI=1'
endif
endif
if config_ene_lpc
srcs += 'ene_lpc.c'
cargs += '-DCONFIG_ENE_LPC=1'
endif
if config_it8212
srcs += 'it8212.c'
cargs += '-DCONFIG_IT8212=1'