Merge pull request #596 from enjoy-digital/gw5at-15

src/gowin: Add support for GW5AT-15 (used on Sipeed Slogic16U3).
This commit is contained in:
Gwenhael Goavec-Merou 2025-12-10 11:12:21 +01:00 committed by GitHub
commit 9f6887e082
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
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}},