Skip to content

Commit f7b7e77

Browse files
authored
Merge pull request #532 from fjullien/xc7s_fgga676
Add support for Xilinx xc7s75fgga676
2 parents f5ed5c4 + 1698d67 commit f7b7e77

4 files changed

Lines changed: 12 additions & 0 deletions

File tree

spiOverJtag/build.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,7 @@
117117
"xc7s25csga225" : "xc7s_csga225",
118118
"xc7s25csga324" : "xc7s_csga324",
119119
"xc7s50csga324" : "xc7s_csga324",
120+
"xc7s75fgga676" : "xc7s_fgga676",
120121
"xcku040-ffva1156" : "xcku040_ffva1156",
121122
"xcku060-ffva1156" : "xcku060_ffva1156",
122123
"xcvu9p-flga2104" : "xcvu9p_flga2104",
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
set_property CFGBVS VCCO [current_design]
2+
set_property CONFIG_VOLTAGE 3.3 [current_design]
3+
set_property BITSTREAM.CONFIG.SPI_BUSWIDTH {4} [current_design]
4+
set_property BITSTREAM.GENERAL.COMPRESS TRUE [current_design]
5+
6+
set_property -dict {PACKAGE_PIN R20 IOSTANDARD LVCMOS33} [get_ports {csn}];
7+
set_property -dict {PACKAGE_PIN N23 IOSTANDARD LVCMOS33} [get_ports {sdi_dq0}];
8+
set_property -dict {PACKAGE_PIN N24 IOSTANDARD LVCMOS33} [get_ports {sdo_dq1}];
9+
set_property -dict {PACKAGE_PIN P23 IOSTANDARD LVCMOS33} [get_ports {wpn_dq2}];
10+
set_property -dict {PACKAGE_PIN R23 IOSTANDARD LVCMOS33} [get_ports {hldn_dq3}];
25.2 KB
Binary file not shown.

src/part.hpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@ static std::map <uint32_t, fpga_model> fpga_list = {
7070
{0x03620093, {"xilinx", "spartan7", "xc7s15ftgb196-1", 6}},
7171
{0x037c4093, {"xilinx", "spartan7", "xc7s25", 6}},
7272
{0x0362f093, {"xilinx", "spartan7", "xc7s50", 6}},
73+
{0x037c8093, {"xilinx", "spartan7", "xc7s75", 6}},
7374

7475
/* Xilinx Virtex6 */
7576
{0x8424a093, {"xilinx", "virtex6", "xc6vlx130t", 10}},

0 commit comments

Comments
 (0)