From a6ff28a1a28cee8a1769444235a262fa4103d96d Mon Sep 17 00:00:00 2001 From: stefanct Date: Sun, 28 Feb 2016 17:04:38 +0000 Subject: rayer_spi: add support for SPI Tiny Tools-compatible hardware. Apparently, there is at least one board of Russian origin (coined SPI_TT LPT) that works with SPI Tiny Tools which is a closed-source Windows GUI program somewhat similar to flashrom. Signed-off-by: Stefan Tauner Acked-by: Stefan Tauner git-svn-id: https://code.coreboot.org/svn/flashrom/trunk@1945 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1 --- rayer_spi.c | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'rayer_spi.c') diff --git a/rayer_spi.c b/rayer_spi.c index 4f1eee4..3656d26 100644 --- a/rayer_spi.c +++ b/rayer_spi.c @@ -106,12 +106,20 @@ static const struct rayer_pinout wiggler_lpt = { .miso_bit = 7, }; +static const struct rayer_pinout spi_tt = { + .cs_bit = 2, + .sck_bit = 0, + .mosi_bit = 4, + .miso_bit = 7, +}; + static const struct rayer_programmer rayer_spi_types[] = { {"rayer", NT, "RayeR SPIPGM", &rayer_spipgm}, {"xilinx", NT, "Xilinx Parallel Cable III (DLC 5)", &xilinx_dlc5}, {"byteblastermv", OK, "Altera ByteBlasterMV", &altera_byteblastermv}, {"stk200", NT, "Atmel STK200/300 adapter", &atmel_stk200}, {"wiggler", OK, "Wiggler LPT", &wiggler_lpt}, + {"spi_tt", NT, "SPI Tiny Tools (SPI_TT LPT)", &spi_tt}, {0}, }; -- cgit v1.2.1