summaryrefslogtreecommitdiffstats
path: root/rayer_spi.c
diff options
context:
space:
mode:
authorStefan Tauner <stefan.tauner@alumni.tuwien.ac.at>2016-02-28 17:04:38 +0000
committerStefan Tauner <stefan.tauner@alumni.tuwien.ac.at>2016-02-28 17:04:38 +0000
commit5818270e74bd8b83564b00da72758aa5dabf8626 (patch)
tree3b20fe94c10bfff20d770f356077946bc1fd3a04 /rayer_spi.c
parent593bcf22902e91d877a9e19a581f7a3ef1231c4b (diff)
downloadflashrom-5818270e74bd8b83564b00da72758aa5dabf8626.zip
flashrom-5818270e74bd8b83564b00da72758aa5dabf8626.tar.gz
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. Corresponding to flashrom svn r1945. Signed-off-by: Stefan Tauner <stefan.tauner@alumni.tuwien.ac.at> Acked-by: Stefan Tauner <stefan.tauner@alumni.tuwien.ac.at>
Diffstat (limited to 'rayer_spi.c')
-rw-r--r--rayer_spi.c8
1 files changed, 8 insertions, 0 deletions
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},
};
OpenPOWER on IntegriCloud