mirror of
				https://github.com/openhwgroup/cvw
				synced 2025-02-11 06:05:49 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			27 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Tcl
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Tcl
		
	
	
	
	
	
| set partNumber $::env(XILINX_PART)
 | |
| set boardName  $::env(XILINX_BOARD)
 | |
| 
 | |
| set ipName xlnx_mmcm
 | |
| 
 | |
| create_project $ipName . -force -part $partNumber
 | |
| set_property board_part $boardName [current_project]
 | |
| 
 | |
| create_ip -name clk_wiz -vendor xilinx.com -library ip -module_name $ipName
 | |
| 
 | |
| set_property -dict [list CONFIG.PRIM_IN_FREQ {100.000} \
 | |
|                         CONFIG.NUM_OUT_CLKS {3} \
 | |
|                         CONFIG.CLKOUT2_USED {true} \
 | |
|                         CONFIG.CLKOUT3_USED {true} \
 | |
|                         CONFIG.CLKOUT4_USED {false} \
 | |
|                         CONFIG.CLKOUT1_REQUESTED_OUT_FREQ {166.66667} \
 | |
|                         CONFIG.CLKOUT2_REQUESTED_OUT_FREQ {200} \
 | |
|                         CONFIG.CLKOUT3_REQUESTED_OUT_FREQ {20} \
 | |
|                         CONFIG.CLKIN1_JITTER_PS {10.0} \
 | |
|                        ] [get_ips $ipName]
 | |
| 
 | |
| generate_target {instantiation_template} [get_files ./$ipName.srcs/sources_1/ip/$ipName/$ipName.xci]
 | |
| generate_target all [get_files  ./$ipName.srcs/sources_1/ip/$ipName/$ipName.xci]
 | |
| create_ip_run [get_files -of_objects [get_fileset sources_1] ./$ipName.srcs/sources_1/ip/$ipName/$ipName.xci]
 | |
| launch_run -jobs 8 ${ipName}_synth_1
 | |
| wait_on_run ${ipName}_synth_1
 |