mirror of
https://review.coreboot.org/flashrom.git
synced 2025-07-03 06:53:18 +02:00
Add support for STLINK V3 debugger/programmer via its SPI bridge
Change-Id: Icffab87ac8f2c570187ed753ec70f054541873a4 Signed-off-by: Miklós Márton <martonmiklosqdev@gmail.com> Reviewed-on: https://review.coreboot.org/c/flashrom/+/34661 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Nico Huber <nico.h@gmx.de>
This commit is contained in:

committed by
Nico Huber

parent
728062f7ff
commit
324929c3d7
@ -61,6 +61,7 @@ config_satamv = get_option('config_satamv')
|
||||
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')
|
||||
|
||||
cargs = []
|
||||
deps = []
|
||||
@ -271,6 +272,10 @@ if config_usbblaster_spi
|
||||
srcs += 'usbblaster_spi.c'
|
||||
cargs += '-DCONFIG_USBBLASTER_SPI=1'
|
||||
endif
|
||||
if config_stlinkv3_spi
|
||||
srcs += 'stlinkv3_spi.c'
|
||||
cargs += '-DCONFIG_STLINKV3_SPI=1'
|
||||
endif
|
||||
|
||||
# bitbanging SPI infrastructure
|
||||
if config_bitbang_spi
|
||||
|
Reference in New Issue
Block a user