src/gowin: Add support for GW5AT-15 (used on Sipeed Slogic16U3).

JTAG pinout on Sipeed Slogic16U3 is similar to Sipeed Tang Primier 20K JTAG pinout and
extension cable from Tang Primer 20K can be used.

./openFPGALoader -c digilent_hs2 --detect
empty
Jtag frequency : requested 6.00MHz    -> real 6.00MHz
index 0:
	idcode 0x1681b
	manufacturer Gowin
	family GW5AT
	model  GW5AT-15
	irlength 8
This commit is contained in:
Florent Kermarrec 2025-12-10 10:51:31 +01:00
parent 432cdc2dd7
commit 206cbd68b7
3 changed files with 3 additions and 0 deletions

View File

@ -195,6 +195,7 @@ int FsParser::parse()
nb_line = 2038;
break;
case 0x0001281b: /* GW5A-25 */
case 0x0001681b: /* GW5AT-15 */
case 0x0001481b: /* GW5AT-60 */
case 0x0001081b: /* GW5AST-138 */
/*

View File

@ -217,6 +217,7 @@ bool Gowin::detectFamily()
is_gw2a = true;
break;
case 0x0001081b: /* GW5AST-138 */
case 0x0001681b: /* GW5AT-15 */
case 0x0001481b: /* GW5AT-60 */
case 0x0001181b: /* GW5AT-138 */
case 0x0001281b: /* GW5A-25 */

View File

@ -349,6 +349,7 @@ static std::map <uint32_t, fpga_model> fpga_list = {
/* Gowin GW5 */
{0x0001081b, {"Gowin", "GW5AST", "GW5AST-138", 8}},
{0x0001681b, {"Gowin", "GW5AT", "GW5AT-15", 8}},
{0x0001481b, {"Gowin", "GW5AT", "GW5AT-60", 8}},
{0x0001181b, {"Gowin", "GW5AT", "GW5AT-138", 8}},
{0x0001281b, {"Gowin", "GW5A", "GW5A-25", 8}},