Merge pull request #56 from GbGp/master

add support for artix-7 200t and nexys video board
This commit is contained in:
Gwenhael Goavec-Merou
2020-10-16 19:10:10 +02:00
committed by GitHub
8 changed files with 21 additions and 3 deletions
+1
View File
@@ -38,6 +38,7 @@ typedef struct {
static std::map <std::string, target_cable_t> board_list = {
{"arty", {"digilent", {}}},
{"nexysVideo", {"digilent_b", {}}},
{"colorlight", {"", {}}},
{"crosslinknx_evn", {"ft2232", {}}},
{"cyc1000", {"ft2232", {}}},
+1
View File
@@ -29,6 +29,7 @@ static std::map <std::string, cable_t> cable_list = {
{"bus_blaster", {MODE_FTDI_SERIAL, {0x0403, 0x6010, INTERFACE_A, 0x08, 0x1B, 0x08, 0x0B}}},
{"bus_blaster_b",{MODE_FTDI_SERIAL, {0x0403, 0x6010, INTERFACE_B, 0x08, 0x0B, 0x08, 0x0B}}},
{"digilent", {MODE_FTDI_SERIAL, {0x0403, 0x6010, INTERFACE_A, 0xe8, 0xeb, 0x00, 0x60}}},
{"digilent_b", {MODE_FTDI_SERIAL, {0x0403, 0x6010, INTERFACE_B, 0xe8, 0xeb, 0x00, 0x60}}},
{"digilent_hs2", {MODE_FTDI_SERIAL, {0x0403, 0x6014, INTERFACE_A, 0xe8, 0xeb, 0x00, 0x60}}},
{"digilent_hs3", {MODE_FTDI_SERIAL, {0x0403, 0x6014, INTERFACE_A, 0x88, 0x8B, 0x20, 0x30}}},
{"dirtyJtag", {MODE_DIRTYJTAG, {}}},
+1
View File
@@ -15,6 +15,7 @@ static std::map <int, fpga_model> fpga_list = {
{0x0362D093, {"xilinx", "artix a7 35t", "xc7a35"}},
{0x13631093, {"xilinx", "artix a7 100t", "xc7a100"}},
{0x13636093, {"xilinx", "artix a7 200t", "xc7a200"}},
{0x44008093, {"xilinx", "spartan6", "xc6slx45"}},
{0x03620093, {"xilinx", "spartan7", "xc7s15ftgb196-1"}},