1
0
mirror of https://github.com/antonblanchard/chiselwatt.git synced 2026-01-11 23:53:33 +00:00

FuseSoC Nexys Video support

Signed-off-by: Anton Blanchard <anton@linux.ibm.com>
This commit is contained in:
Anton Blanchard 2020-02-06 21:13:06 +11:00 committed by Anton Blanchard
parent 94233ed756
commit ca3e38c194
2 changed files with 31 additions and 0 deletions

View File

@ -21,6 +21,11 @@ filesets:
- constraints/arty_a7.xdc : {file_type : xdc}
- pll/pll_bypass.v : {file_type : verilogSource}
nexys_video:
files:
- constraints/nexys-video.xdc : {file_type : xdc}
- pll/pll_bypass.v : {file_type : verilogSource}
ecp5-evn:
files:
- constraints/ecp5-evn.lpf : {file_type : LPF}
@ -50,6 +55,13 @@ targets:
vivado: {part : xc7a100ticsg324-1L}
toplevel : toplevel
nexys_video:
default_tool: vivado
filesets: [core, nexys_video]
tools:
vivado: {part : xc7a200tsbg484-1}
toplevel : toplevel
ecp5-evn:
default_tool: diamond
filesets: [core, ecp5-evn]

View File

@ -0,0 +1,19 @@
set_property -dict {PACKAGE_PIN R4 IOSTANDARD LVCMOS33} [get_ports clock]
create_clock -period 10.000 -name sys_clk_pin -waveform {0.000 5.000} -add [get_ports clock]
set_property -dict {PACKAGE_PIN G4 IOSTANDARD LVCMOS15} [get_ports reset]
set_property -dict {PACKAGE_PIN AA19 IOSTANDARD LVCMOS33} [get_ports io_tx]
set_property -dict {PACKAGE_PIN V18 IOSTANDARD LVCMOS33} [get_ports io_rx]
set_property -dict { PACKAGE_PIN T14 IOSTANDARD LVCMOS25 } [get_ports { io_terminate }]
set_property -dict { PACKAGE_PIN T15 IOSTANDARD LVCMOS25 } [get_ports { io_ledB }]
set_property -dict { PACKAGE_PIN T16 IOSTANDARD LVCMOS25 } [get_ports { io_ledC }]
set_property CONFIG_VOLTAGE 3.3 [current_design]
set_property CFGBVS VCCO [current_design]
set_property BITSTREAM.GENERAL.COMPRESS TRUE [current_design]
set_property BITSTREAM.CONFIG.CONFIGRATE 33 [current_design]
set_property CONFIG_MODE SPIx4 [current_design]