Add spiOverJtag support for Xilinx xc7k325tffg676 part.
This commit is contained in:
parent
951c4f0f51
commit
18a24c65ea
|
|
@ -178,7 +178,7 @@ Xilinx:
|
||||||
- xc7k325t
|
- xc7k325t
|
||||||
URL: https://www.xilinx.com/products/silicon-devices/fpga/kintex-7.html#productTable
|
URL: https://www.xilinx.com/products/silicon-devices/fpga/kintex-7.html#productTable
|
||||||
Memory: OK
|
Memory: OK
|
||||||
Flash: NT
|
Flash: OK
|
||||||
|
|
||||||
- Description: Spartan 3
|
- Description: Spartan 3
|
||||||
Model: xc3s200
|
Model: xc3s200
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,10 @@
|
||||||
|
set_property CFGBVS VCCO [current_design]
|
||||||
|
set_property CONFIG_VOLTAGE 3.3 [current_design]
|
||||||
|
set_property BITSTREAM.CONFIG.SPI_BUSWIDTH {4} [current_design]
|
||||||
|
|
||||||
|
set_property -dict {PACKAGE_PIN C23 IOSTANDARD LVTTL} [get_ports {csn}]
|
||||||
|
set_property -dict {PACKAGE_PIN B24 IOSTANDARD LVTTL} [get_ports {sdi_dq0}]
|
||||||
|
set_property -dict {PACKAGE_PIN A25 IOSTANDARD LVTTL} [get_ports {sdo_dq1}]
|
||||||
|
set_property -dict {PACKAGE_PIN B22 IOSTANDARD LVTTL} [get_ports {wpn_dq2}]
|
||||||
|
set_property -dict {PACKAGE_PIN A22 IOSTANDARD LVTTL} [get_ports {hldn_dq3}]
|
||||||
|
|
||||||
Binary file not shown.
|
|
@ -14,6 +14,7 @@ set grade [dict create \
|
||||||
xc7a75tfgg484 -2 \
|
xc7a75tfgg484 -2 \
|
||||||
xc7a100tfgg484 -2 \
|
xc7a100tfgg484 -2 \
|
||||||
xc7a200tsbg484 -1 \
|
xc7a200tsbg484 -1 \
|
||||||
|
xc7k325tffg676 -1 \
|
||||||
xc7s50csga324 -1 \
|
xc7s50csga324 -1 \
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
@ -26,6 +27,7 @@ set pkg_name [dict create \
|
||||||
xc7a100tfgg484 xc7a_fgg484 \
|
xc7a100tfgg484 xc7a_fgg484 \
|
||||||
xc7a200tsbg484 xc7a_sbg484 \
|
xc7a200tsbg484 xc7a_sbg484 \
|
||||||
xc7a200tfbg484 xc7a_fbg484 \
|
xc7a200tfbg484 xc7a_fbg484 \
|
||||||
|
xc7k325tffg676 xc7k_ffg676 \
|
||||||
xc7s50csga324 xc7s_csga324 \
|
xc7s50csga324 xc7s_csga324 \
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue