mirror of
https://review.coreboot.org/flashrom.git
synced 2025-04-27 23:22:37 +02:00
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>
This commit is contained in:
parent
f35033739d
commit
fdb1659107
@ -899,7 +899,8 @@ syntax where
|
|||||||
.B model
|
.B model
|
||||||
can be
|
can be
|
||||||
.BR rayer " for the RayeR cable, " byteblastermv " for the Altera ByteBlasterMV, " stk200 " for the Atmel \
|
.BR rayer " for the RayeR cable, " byteblastermv " for the Altera ByteBlasterMV, " stk200 " for the Atmel \
|
||||||
STK200/300, " wiggler " for the Macraigor Wiggler, or " xilinx " for the Xilinx Parallel Cable III (DLC 5)."
|
STK200/300, " wiggler " for the Macraigor Wiggler, " xilinx " for the Xilinx Parallel Cable III (DLC 5), or" \
|
||||||
|
" spi_tt" " for SPI Tiny Tools-compatible hardware.
|
||||||
.sp
|
.sp
|
||||||
More information about the RayeR hardware is available at
|
More information about the RayeR hardware is available at
|
||||||
.nh
|
.nh
|
||||||
|
@ -106,12 +106,20 @@ static const struct rayer_pinout wiggler_lpt = {
|
|||||||
.miso_bit = 7,
|
.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[] = {
|
static const struct rayer_programmer rayer_spi_types[] = {
|
||||||
{"rayer", NT, "RayeR SPIPGM", &rayer_spipgm},
|
{"rayer", NT, "RayeR SPIPGM", &rayer_spipgm},
|
||||||
{"xilinx", NT, "Xilinx Parallel Cable III (DLC 5)", &xilinx_dlc5},
|
{"xilinx", NT, "Xilinx Parallel Cable III (DLC 5)", &xilinx_dlc5},
|
||||||
{"byteblastermv", OK, "Altera ByteBlasterMV", &altera_byteblastermv},
|
{"byteblastermv", OK, "Altera ByteBlasterMV", &altera_byteblastermv},
|
||||||
{"stk200", NT, "Atmel STK200/300 adapter", &atmel_stk200},
|
{"stk200", NT, "Atmel STK200/300 adapter", &atmel_stk200},
|
||||||
{"wiggler", OK, "Wiggler LPT", &wiggler_lpt},
|
{"wiggler", OK, "Wiggler LPT", &wiggler_lpt},
|
||||||
|
{"spi_tt", NT, "SPI Tiny Tools (SPI_TT LPT)", &spi_tt},
|
||||||
{0},
|
{0},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user