diff --git a/Lab0_writeup.pdf b/Lab0_writeup.pdf new file mode 100644 index 0000000..c9ab96a Binary files /dev/null and b/Lab0_writeup.pdf differ diff --git a/Link to video in Google Drive b/Link to video in Google Drive new file mode 100644 index 0000000..4c45964 --- /dev/null +++ b/Link to video in Google Drive @@ -0,0 +1 @@ +https://drive.google.com/file/d/0B0IXgfYKnidZVzNfS3VOQWFhNnM/view?usp=sharing diff --git a/README.md b/README.md deleted file mode 100644 index dd5ae0b..0000000 --- a/README.md +++ /dev/null @@ -1,141 +0,0 @@ -# CompArch Lab 0: Full Adder on FPGA - -**Due:** September 27 - -This lab assignment will develop one of the basic building blocks for your processor and introduce you to FPGAs. - -You should complete HW2 before beginning this lab. Lab 0 depends on building blocks created in HW2. - -You will work in groups of 2-3. If you have not yet formed a group, do so on the team formation spreadsheet (link is on Piazza). - -## Setup ## - -Install the required software by following the instructions on the [course website](https://sites.google.com/site/ca17fall/resources/fpga). If you followed the virtual machine instructions, you should already have everything you need. - -Check out an FPGA kit for your team. - -## Verify FPGA Tool Chain - -This portion of the exercise is not collected. It is intended only to verify that your full tool chain is correctly configured, and will save you headache later. - -The easiest way to accomplish this is to attend the FPGA tutorial: **Wednesday 9/20 at 8pm in the library**. - -Ensure that the switches, buttons, and LEDs on your FPGA board are functional. You may want to try instantiating various gates for additional practice. - -## 4 bit Full Adder - simulation -In HW2 you constructed several modules in structural Verilog and then tested them with the iverilog simulator. Re-use the Full Adder component to create a 4 bit Full Adder. - -This module must be in `adder.v`, and must have the following definition: - -```verilog -module FullAdder4bit -( - output[3:0] sum, // 2's complement sum of a and b - output carryout, // Carry out of the summation of a and b - output overflow, // True if the calculation resulted in an overflow - input[3:0] a, // First operand in 2's complement format - input[3:0] b // Second operand in 2's complement format -); - // Your Code Here -endmodule -``` - -Your code will be verified by our own test bench, so it is critical your module definition and name matches. - -Within this module, you will need to instantiate four of your single bit full adders and then appropriately wire them. Reference a single bit of a bus with the bracket operator: the first (least significant) bit of `a` is `a[0]`. - -Each of the gates within your design should have a delay of 50 units of time. - - -## Test Bench - simulation - -Create a test bench that exercises your 4 bit full adder, and verifies proper operation of its three outputs (Sum, Carry Out, Overflow). It is probably in your best interest to write this at the same time you write the module that it tests. - -An exhaustive test requires 2(4+4)= 256 test cases. Select a subset of those test cases that provides an appropriate level of coverage. It may be helpful for you to explicitly document what each subset of test cases are testing. For example, select several test cases that test the overflow flag and preface them with `$display(“Test Overflow:”);`. - -**When a test case fails, a well-designed tester should make it easy to identify possible locations of the cause.** - -Each time that your test bench catches an error in your design, document it in your write-up. Include the test case, the cause of the error, and the fix that made the test case pass. - -Note that your test bench will need to account for the gate delays in your design. After setting the inputs, be sure to wait sufficiently long for the result to stabilize. - -Your test harness must be in `adder.t.v`, and must instantiate `FullAdder4bit` from `adder.v` (again, for our test bench tester). - -## Full Adder on FPGA - -Use your `adder.v` and the provided `lab0_wrapper.v` to create a Vivado project, and load your tested 4-bit full adder design onto the FPGA board. - -_Challenge_: Write your own interface to the Zybo board that lets you completely test your 4-bit full adder without using `lab0_wrapper.v`. - -Verify correct operation by manually inputting test cases with the switches and buttons and examining the results on the LEDs. Choose 16 test cases that provide a reasonable amount of coverage – you’ve already tested the design in ModelSim, so you do not need to provide the same level of coverage again. - -Provide photos or a gif of your FPGA correctly computing one of the 16 test cases you chose. - -In your report include the full 16 test cases, why you chose them and their results. - - -## Report -Create a semi-formal lab report. Minimally, it should include the following: - -1. Waveforms showing the full adder stabilizing after changing inputs. What is the worst case delay? -1. An explanation of your test case strategy. Why did you choose the tests you did? -1. A list of test case failures and the changes to your design they inspired. -1. A summary of testing performed on the FPGA board. -1. Summary statistics of your synthesized design from Vivado (Propagation Delay, Resources Used, etc) - -You may optionally include additional information, such as the timing performance or design tradeoffs of your modules. - -The report should be a single PDF or MarkDown file. - - -## Submission -Push your files to your team GitHub repository. It should include the following: - -1. Your report, as a PDF or MarkDown file -1. Verilog code for - 1. 1 bit full adder - 1. 4 bit full adder - 1. 4 bit full adder test bench - 1. The top level module for synthesis onto the FPGA -1. Associated run scripts, e.g. Makefile - -Submit a pull request to the course repo (CompArchFA17/Lab0) for us to respond to with feedback. - -## Hints -Now that we have signals that are more than 1 bit wide, it makes sense to refer to them using buses. This allows us to reference all of the related bits in a convenient manner. - -If iverilog gives really cryptic errors about missing declarations that aren’t actually missing, look at the module above to see if you missed an `end`. - -## Rubric - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Adder Functionality 25
Sum 15
Carry Out, Overflow 5
Gate Delays5
Test Bench 15
Verifies Sum5
Verifies Carryout5
Verifies Overflow5
FPGA (Verified in report)20
Tutorial / Verify tool chain0
16 test cases are well chosen10
Pass 16 test cases5
Summary statistics5
Report35
Timing waveforms explained5
Test bench explanation20
Test bench failures / resulting changes10
Code commented (Nice but not excessive)5
diff --git a/ZYBO_Master.xdc b/ZYBO_Master.xdc new file mode 100644 index 0000000..f3dbb71 --- /dev/null +++ b/ZYBO_Master.xdc @@ -0,0 +1,146 @@ +## This file is a general .xdc for the ZYBO Rev B board +## To use it in a project: +## - uncomment the lines corresponding to used pins +## - rename the used signals according to the project + + +##Clock signal +set_property -dict { PACKAGE_PIN L16 IOSTANDARD LVCMOS33 } [get_ports { clk }]; #IO_L11P_T1_SRCC_35 Sch=sysclk +#create_clock -add -name sys_clk_pin -period 8.00 -waveform {0 4} [get_ports { clk }]; + + +##Switches +set_property -dict { PACKAGE_PIN G15 IOSTANDARD LVCMOS33 } [get_ports { sw[0] }]; #IO_L19N_T3_VREF_35 Sch=SW0 +set_property -dict { PACKAGE_PIN P15 IOSTANDARD LVCMOS33 } [get_ports { sw[1] }]; #IO_L24P_T3_34 Sch=SW1 +set_property -dict { PACKAGE_PIN W13 IOSTANDARD LVCMOS33 } [get_ports { sw[2] }]; #IO_L4N_T0_34 Sch=SW2 +set_property -dict { PACKAGE_PIN T16 IOSTANDARD LVCMOS33 } [get_ports { sw[3] }]; #IO_L9P_T1_DQS_34 Sch=SW3 + + +##Buttons +set_property -dict { PACKAGE_PIN R18 IOSTANDARD LVCMOS33 } [get_ports { btn[0] }]; #IO_L20N_T3_34 Sch=BTN0 +set_property -dict { PACKAGE_PIN P16 IOSTANDARD LVCMOS33 } [get_ports { btn[1] }]; #IO_L24N_T3_34 Sch=BTN1 +set_property -dict { PACKAGE_PIN V16 IOSTANDARD LVCMOS33 } [get_ports { btn[2] }]; #IO_L18P_T2_34 Sch=BTN2 +set_property -dict { PACKAGE_PIN Y16 IOSTANDARD LVCMOS33 } [get_ports { btn[3] }]; #IO_L7P_T1_34 Sch=BTN3 + + +##LEDs +set_property -dict { PACKAGE_PIN M14 IOSTANDARD LVCMOS33 } [get_ports { led[0] }]; #IO_L23P_T3_35 Sch=LED0 +set_property -dict { PACKAGE_PIN M15 IOSTANDARD LVCMOS33 } [get_ports { led[1] }]; #IO_L23N_T3_35 Sch=LED1 +set_property -dict { PACKAGE_PIN G14 IOSTANDARD LVCMOS33 } [get_ports { led[2] }]; #IO_0_35=Sch=LED2 +set_property -dict { PACKAGE_PIN D18 IOSTANDARD LVCMOS33 } [get_ports { led[3] }]; #IO_L3N_T0_DQS_AD1N_35 Sch=LED3 + + +##I2S Audio Codec +#set_property -dict { PACKAGE_PIN K18 IOSTANDARD LVCMOS33 } [get_ports ac_bclk]; #IO_L12N_T1_MRCC_35 Sch=AC_BCLK +#set_property -dict { PACKAGE_PIN T19 IOSTANDARD LVCMOS33 } [get_ports ac_mclk]; #IO_25_34 Sch=AC_MCLK +#set_property -dict { PACKAGE_PIN P18 IOSTANDARD LVCMOS33 } [get_ports ac_muten]; #IO_L23N_T3_34 Sch=AC_MUTEN +#set_property -dict { PACKAGE_PIN M17 IOSTANDARD LVCMOS33 } [get_ports ac_pbdat]; #IO_L8P_T1_AD10P_35 Sch=AC_PBDAT +#set_property -dict { PACKAGE_PIN L17 IOSTANDARD LVCMOS33 } [get_ports ac_pblrc]; #IO_L11N_T1_SRCC_35 Sch=AC_PBLRC +#set_property -dict { PACKAGE_PIN K17 IOSTANDARD LVCMOS33 } [get_ports ac_recdat]; #IO_L12P_T1_MRCC_35 Sch=AC_RECDAT +#set_property -dict { PACKAGE_PIN M18 IOSTANDARD LVCMOS33 } [get_ports ac_reclrc]; #IO_L8N_T1_AD10N_35 Sch=AC_RECLRC + + +##Audio Codec/external EEPROM IIC bus +#set_property -dict { PACKAGE_PIN N18 IOSTANDARD LVCMOS33 } [get_ports ac_scl]; #IO_L13P_T2_MRCC_34 Sch=AC_SCL +#set_property -dict { PACKAGE_PIN N17 IOSTANDARD LVCMOS33 } [get_ports ac_sda]; #IO_L23P_T3_34 Sch=AC_SDA + + +##Additional Ethernet signals +#set_property -dict { PACKAGE_PIN F16 IOSTANDARD LVCMOS33 } [get_ports eth_int_b]; #IO_L6P_T0_35 Sch=ETH_INT_B +#set_property -dict { PACKAGE_PIN E17 IOSTANDARD LVCMOS33 } [get_ports eth_rst_b]; #IO_L3P_T0_DQS_AD1P_35 Sch=ETH_RST_B + + +##HDMI Signals +#set_property -dict { PACKAGE_PIN H17 IOSTANDARD TMDS_33 } [get_ports hdmi_clk_n]; #IO_L13N_T2_MRCC_35 Sch=HDMI_CLK_N +#set_property -dict { PACKAGE_PIN H16 IOSTANDARD TMDS_33 } [get_ports hdmi_clk_p]; #IO_L13P_T2_MRCC_35 Sch=HDMI_CLK_P +#set_property -dict { PACKAGE_PIN D20 IOSTANDARD TMDS_33 } [get_ports { hdmi_d_n[0] }]; #IO_L4N_T0_35 Sch=HDMI_D0_N +#set_property -dict { PACKAGE_PIN D19 IOSTANDARD TMDS_33 } [get_ports { hdmi_d_p[0] }]; #IO_L4P_T0_35 Sch=HDMI_D0_P +#set_property -dict { PACKAGE_PIN B20 IOSTANDARD TMDS_33 } [get_ports { hdmi_d_n[1] }]; #IO_L1N_T0_AD0N_35 Sch=HDMI_D1_N +#set_property -dict { PACKAGE_PIN C20 IOSTANDARD TMDS_33 } [get_ports { hdmi_d_p[1] }]; #IO_L1P_T0_AD0P_35 Sch=HDMI_D1_P +#set_property -dict { PACKAGE_PIN A20 IOSTANDARD TMDS_33 } [get_ports { hdmi_d_n[2] }]; #IO_L2N_T0_AD8N_35 Sch=HDMI_D2_N +#set_property -dict { PACKAGE_PIN B19 IOSTANDARD TMDS_33 } [get_ports { hdmi_d_p[2] }]; #IO_L2P_T0_AD8P_35 Sch=HDMI_D2_P +#set_property -dict { PACKAGE_PIN E19 IOSTANDARD LVCMOS33 } [get_ports hdmi_cec]; #IO_L5N_T0_AD9N_35 Sch=HDMI_CEC +#set_property -dict { PACKAGE_PIN E18 IOSTANDARD LVCMOS33 } [get_ports hdmi_hpd]; #IO_L5P_T0_AD9P_35 Sch=HDMI_HPD +#set_property -dict { PACKAGE_PIN F17 IOSTANDARD LVCMOS33 } [get_ports hdmi_out_en]; #IO_L6N_T0_VREF_35 Sch=HDMI_OUT_EN +#set_property -dict { PACKAGE_PIN G17 IOSTANDARD LVCMOS33 } [get_ports hdmi_scl]; #IO_L16P_T2_35 Sch=HDMI_SCL +#set_property -dict { PACKAGE_PIN G18 IOSTANDARD LVCMOS33 } [get_ports hdmi_sda]; #IO_L16N_T2_35 Sch=HDMI_SDA + + +##Pmod Header JA (XADC) +#set_property -dict { PACKAGE_PIN N15 IOSTANDARD LVCMOS33 } [get_ports { ja_p[0] }]; #IO_L21P_T3_DQS_AD14P_35 Sch=JA1_R_p +#set_property -dict { PACKAGE_PIN L14 IOSTANDARD LVCMOS33 } [get_ports { ja_p[1] }]; #IO_L22P_T3_AD7P_35 Sch=JA2_R_P +#set_property -dict { PACKAGE_PIN K16 IOSTANDARD LVCMOS33 } [get_ports { ja_p[2] }]; #IO_L24P_T3_AD15P_35 Sch=JA3_R_P +#set_property -dict { PACKAGE_PIN K14 IOSTANDARD LVCMOS33 } [get_ports { ja_p[3] }]; #IO_L20P_T3_AD6P_35 Sch=JA4_R_P +#set_property -dict { PACKAGE_PIN N16 IOSTANDARD LVCMOS33 } [get_ports { ja_n[0] }]; #IO_L21N_T3_DQS_AD14N_35 Sch=JA1_R_N +#set_property -dict { PACKAGE_PIN L15 IOSTANDARD LVCMOS33 } [get_ports { ja_n[1] }]; #IO_L22N_T3_AD7N_35 Sch=JA2_R_N +#set_property -dict { PACKAGE_PIN J16 IOSTANDARD LVCMOS33 } [get_ports { ja_n[2] }]; #IO_L24N_T3_AD15N_35 Sch=JA3_R_N +#set_property -dict { PACKAGE_PIN J14 IOSTANDARD LVCMOS33 } [get_ports { ja_n[3] }]; #IO_L20N_T3_AD6N_35 Sch=JA4_R_N + + +##Pmod Header JB +#set_property -dict { PACKAGE_PIN T20 IOSTANDARD LVCMOS33 } [get_ports { jb_p[0] }]; #IO_L15P_T2_DQS_34 Sch=JB1_p +#set_property -dict { PACKAGE_PIN U20 IOSTANDARD LVCMOS33 } [get_ports { jb_n[0] }]; #IO_L15N_T2_DQS_34 Sch=JB1_N +#set_property -dict { PACKAGE_PIN V20 IOSTANDARD LVCMOS33 } [get_ports { jb_p[1] }]; #IO_L16P_T2_34 Sch=JB2_P +#set_property -dict { PACKAGE_PIN W20 IOSTANDARD LVCMOS33 } [get_ports { jb_n[1] }]; #IO_L16N_T2_34 Sch=JB2_N +#set_property -dict { PACKAGE_PIN Y18 IOSTANDARD LVCMOS33 } [get_ports { jb_p[2] }]; #IO_L17P_T2_34 Sch=JB3_P +#set_property -dict { PACKAGE_PIN Y19 IOSTANDARD LVCMOS33 } [get_ports { jb_n[2] }]; #IO_L17N_T2_34 Sch=JB3_N +#set_property -dict { PACKAGE_PIN W18 IOSTANDARD LVCMOS33 } [get_ports { jb_p[3] }]; #IO_L22P_T3_34 Sch=JB4_P +#set_property -dict { PACKAGE_PIN W19 IOSTANDARD LVCMOS33 } [get_ports { jb_n[3] }]; #IO_L22N_T3_34 Sch=JB4_N + + +##Pmod Header JC +#set_property -dict { PACKAGE_PIN V15 IOSTANDARD LVCMOS33 } [get_ports { jc_p[0] }]; #IO_L10P_T1_34 Sch=JC1_P +#set_property -dict { PACKAGE_PIN W15 IOSTANDARD LVCMOS33 } [get_ports { jc_n[0] }]; #IO_L10N_T1_34 Sch=JC1_N +#set_property -dict { PACKAGE_PIN T11 IOSTANDARD LVCMOS33 } [get_ports { jc_p[1] }]; #IO_L1P_T0_34 Sch=JC2_P +#set_property -dict { PACKAGE_PIN T10 IOSTANDARD LVCMOS33 } [get_ports { jc_n[1] }]; #IO_L1N_T0_34 Sch=JC2_N +#set_property -dict { PACKAGE_PIN W14 IOSTANDARD LVCMOS33 } [get_ports { jc_p[2] }]; #IO_L8P_T1_34 Sch=JC3_P +#set_property -dict { PACKAGE_PIN Y14 IOSTANDARD LVCMOS33 } [get_ports { jc_n[2] }]; #IO_L8N_T1_34 Sch=JC3_N +#set_property -dict { PACKAGE_PIN T12 IOSTANDARD LVCMOS33 } [get_ports { jc_p[3] }]; #IO_L2P_T0_34 Sch=JC4_P +#set_property -dict { PACKAGE_PIN U12 IOSTANDARD LVCMOS33 } [get_ports { jc_n[3] }]; #IO_L2N_T0_34 Sch=JC4_N + + +##Pmod Header JD +#set_property -dict { PACKAGE_PIN T14 IOSTANDARD LVCMOS33 } [get_ports { jd_p[0] }]; #IO_L5P_T0_34 Sch=JD1_P +#set_property -dict { PACKAGE_PIN T15 IOSTANDARD LVCMOS33 } [get_ports { jd_n[0] }]; #IO_L5N_T0_34 Sch=JD1_N +#set_property -dict { PACKAGE_PIN P14 IOSTANDARD LVCMOS33 } [get_ports { jd_p[1] }]; #IO_L6P_T0_34 Sch=JD2_P +#set_property -dict { PACKAGE_PIN R14 IOSTANDARD LVCMOS33 } [get_ports { jd_n[1] }]; #IO_L6N_T0_VREF_34 Sch=JD2_N +#set_property -dict { PACKAGE_PIN U14 IOSTANDARD LVCMOS33 } [get_ports { jd_p[2] }]; #IO_L11P_T1_SRCC_34 Sch=JD3_P +#set_property -dict { PACKAGE_PIN U15 IOSTANDARD LVCMOS33 } [get_ports { jd_n[2] }]; #IO_L11N_T1_SRCC_34 Sch=JD3_N +#set_property -dict { PACKAGE_PIN V17 IOSTANDARD LVCMOS33 } [get_ports { jd_p[3] }]; #IO_L21P_T3_DQS_34 Sch=JD4_P +#set_property -dict { PACKAGE_PIN V18 IOSTANDARD LVCMOS33 } [get_ports { jd_n[3] }]; #IO_L21N_T3_DQS_34 Sch=JD4_N + + +##Pmod Header JE +#set_property -dict { PACKAGE_PIN V12 IOSTANDARD LVCMOS33 } [get_ports { je[0] }]; #IO_L4P_T0_34 Sch=JE1 +#set_property -dict { PACKAGE_PIN W16 IOSTANDARD LVCMOS33 } [get_ports { je[1] }]; #IO_L18N_T2_34 Sch=JE2 +#set_property -dict { PACKAGE_PIN J15 IOSTANDARD LVCMOS33 } [get_ports { je[2] }]; #IO_25_35 Sch=JE3 +#set_property -dict { PACKAGE_PIN H15 IOSTANDARD LVCMOS33 } [get_ports { je[3] }]; #IO_L19P_T3_35 Sch=JE4 +#set_property -dict { PACKAGE_PIN V13 IOSTANDARD LVCMOS33 } [get_ports { je[4] }]; #IO_L3N_T0_DQS_34 Sch=JE7 +#set_property -dict { PACKAGE_PIN U17 IOSTANDARD LVCMOS33 } [get_ports { je[5] }]; #IO_L9N_T1_DQS_34 Sch=JE8 +#set_property -dict { PACKAGE_PIN T17 IOSTANDARD LVCMOS33 } [get_ports { je[6] }]; #IO_L20P_T3_34 Sch=JE9 +#set_property -dict { PACKAGE_PIN Y17 IOSTANDARD LVCMOS33 } [get_ports { je[7] }]; #IO_L7N_T1_34 Sch=JE10 + + +##USB-OTG overcurrent detect pin +#set_property -dict { PACKAGE_PIN U13 IOSTANDARD LVCMOS33 } [get_ports otg_oc]; #IO_L3P_T0_DQS_PUDC_B_34 Sch=OTG_OC + + +##VGA Connector +#set_property -dict { PACKAGE_PIN M19 IOSTANDARD LVCMOS33 } [get_ports { vga_r[0] }]; #IO_L7P_T1_AD2P_35 Sch=VGA_R1 +#set_property -dict { PACKAGE_PIN L20 IOSTANDARD LVCMOS33 } [get_ports { vga_r[1] }]; #IO_L9N_T1_DQS_AD3N_35 Sch=VGA_R2 +#set_property -dict { PACKAGE_PIN J20 IOSTANDARD LVCMOS33 } [get_ports { vga_r[2] }]; #IO_L17P_T2_AD5P_35 Sch=VGA_R3 +#set_property -dict { PACKAGE_PIN G20 IOSTANDARD LVCMOS33 } [get_ports { vga_r[3] }]; #IO_L18N_T2_AD13N_35 Sch=VGA_R4 +#set_property -dict { PACKAGE_PIN F19 IOSTANDARD LVCMOS33 } [get_ports { vga_r[4] }]; #IO_L15P_T2_DQS_AD12P_35 Sch=VGA_R5 +#set_property -dict { PACKAGE_PIN H18 IOSTANDARD LVCMOS33 } [get_ports { vga_g[0] }]; #IO_L14N_T2_AD4N_SRCC_35 Sch=VGA_G0 +#set_property -dict { PACKAGE_PIN N20 IOSTANDARD LVCMOS33 } [get_ports { vga_g[1] }]; #IO_L14P_T2_SRCC_34 Sch=VGA_G1 +#set_property -dict { PACKAGE_PIN L19 IOSTANDARD LVCMOS33 } [get_ports { vga_g[2] }]; #IO_L9P_T1_DQS_AD3P_35 Sch=VGA_G2 +#set_property -dict { PACKAGE_PIN J19 IOSTANDARD LVCMOS33 } [get_ports { vga_g[3] }]; #IO_L10N_T1_AD11N_35 Sch=VGA_G3 +#set_property -dict { PACKAGE_PIN H20 IOSTANDARD LVCMOS33 } [get_ports { vga_g[4] }]; #IO_L17N_T2_AD5N_35 Sch=VGA_G4 +#set_property -dict { PACKAGE_PIN F20 IOSTANDARD LVCMOS33 } [get_ports { vga_g[5] }]; #IO_L15N_T2_DQS_AD12N_35 Sch=VGA=G5 +#set_property -dict { PACKAGE_PIN P20 IOSTANDARD LVCMOS33 } [get_ports { vga_b[0] }]; #IO_L14N_T2_SRCC_34 Sch=VGA_B1 +#set_property -dict { PACKAGE_PIN M20 IOSTANDARD LVCMOS33 } [get_ports { vga_b[1] }]; #IO_L7N_T1_AD2N_35 Sch=VGA_B2 +#set_property -dict { PACKAGE_PIN K19 IOSTANDARD LVCMOS33 } [get_ports { vga_b[2] }]; #IO_L10P_T1_AD11P_35 Sch=VGA_B3 +#set_property -dict { PACKAGE_PIN J18 IOSTANDARD LVCMOS33 } [get_ports { vga_b[3] }]; #IO_L14P_T2_AD4P_SRCC_35 Sch=VGA_B4 +#set_property -dict { PACKAGE_PIN G19 IOSTANDARD LVCMOS33 } [get_ports { vga_b[4] }]; #IO_L18P_T2_AD13P_35 Sch=VGA_B5 +#set_property -dict { PACKAGE_PIN P19 IOSTANDARD LVCMOS33 } [get_ports vga_hs]; #IO_L13N_T2_MRCC_34 Sch=VGA_HS +#set_property -dict { PACKAGE_PIN R19 IOSTANDARD LVCMOS33 } [get_ports vga_vs]; #IO_0_34 Sch=VGA_VS diff --git a/adder.t.out b/adder.t.out new file mode 100755 index 0000000..556bf93 --- /dev/null +++ b/adder.t.out @@ -0,0 +1,218 @@ +#! /usr/bin/vvp +:ivl_version "0.9.7 " "(v0_9_7)"; +:vpi_time_precision - 12; +:vpi_module "system"; +:vpi_module "v2005_math"; +:vpi_module "va_math"; +S_0x2675b40 .scope module, "testFullAdder4bit" "testFullAdder4bit" 2 5; + .timescale -9 -12; +v0x26a9130_0 .var "a", 3 0; +v0x26a91b0_0 .var "b", 3 0; +v0x26a9260_0 .net "carryout", 0 0, L_0x26ac190; 1 drivers +v0x26a9330_0 .net "overflow", 0 0, L_0x26ac400; 1 drivers +RS_0x7f39d0628858 .resolv tri, L_0x26a9f50, L_0x26aaae0, L_0x26ab6a0, L_0x26ac310; +v0x26a93e0_0 .net8 "sum", 3 0, RS_0x7f39d0628858; 4 drivers +S_0x2674720 .scope module, "adder" "FullAdder4bit" 2 10, 3 40, S_0x2675b40; + .timescale -9 -12; +L_0x26ac400/d .functor XOR 1, L_0x26ac190, L_0x26ab520, C4<0>, C4<0>; +L_0x26ac400 .delay (50000,50000,50000) L_0x26ac400/d; +v0x26a8c40_0 .net "Cout0", 0 0, L_0x26a9ce0; 1 drivers +v0x26a8cc0_0 .net "Cout1", 0 0, L_0x26aa960; 1 drivers +v0x26a8d90_0 .net "Cout2", 0 0, L_0x26ab520; 1 drivers +v0x26a8e60_0 .net "a", 3 0, v0x26a9130_0; 1 drivers +v0x26a8ee0_0 .net "b", 3 0, v0x26a91b0_0; 1 drivers +v0x26a8f60_0 .alias "carryout", 0 0, v0x26a9260_0; +v0x26a8fe0_0 .alias "overflow", 0 0, v0x26a9330_0; +v0x26a9060_0 .alias "sum", 3 0, v0x26a93e0_0; +L_0x26a9f50 .part/pv L_0x26a9610, 0, 1, 4; +L_0x26aa010 .part v0x26a9130_0, 0, 1; +L_0x26aa100 .part v0x26a91b0_0, 0, 1; +L_0x26aaae0 .part/pv L_0x26aa300, 1, 1, 4; +L_0x26aabd0 .part v0x26a9130_0, 1, 1; +L_0x26aad00 .part v0x26a91b0_0, 1, 1; +L_0x26ab6a0 .part/pv L_0x26aaed0, 2, 1, 4; +L_0x26ab7d0 .part v0x26a9130_0, 2, 1; +L_0x26ab990 .part v0x26a91b0_0, 2, 1; +L_0x26ac310 .part/pv L_0x26abbd0, 3, 1, 4; +L_0x26ac460 .part v0x26a9130_0, 3, 1; +L_0x26ac590 .part v0x26a91b0_0, 3, 1; +S_0x26a8080 .scope module, "ha0" "HalfAdder" 3 49, 3 30, S_0x2674720; + .timescale -9 -12; +v0x26a8990_0 .net "a", 0 0, L_0x26aa010; 1 drivers +v0x26a8a60_0 .net "b", 0 0, L_0x26aa100; 1 drivers +v0x26a8b10_0 .alias "carryout", 0 0, v0x26a8c40_0; +v0x26a8b90_0 .net "sum", 0 0, L_0x26a9610; 1 drivers +S_0x26a8170 .scope module, "adder" "FullAdder1bit" 3 37, 3 9, S_0x26a8080; + .timescale -9 -12; +L_0x26a9490/d .functor XOR 1, L_0x26aa010, L_0x26aa100, C4<0>, C4<0>; +L_0x26a9490 .delay (50000,50000,50000) L_0x26a9490/d; +L_0x26a9610/d .functor XOR 1, L_0x26a9490, C4<0>, C4<0>, C4<0>; +L_0x26a9610 .delay (50000,50000,50000) L_0x26a9610/d; +L_0x26a9750/d .functor AND 1, L_0x26aa010, L_0x26aa100, C4<1>, C4<1>; +L_0x26a9750 .delay (50000,50000,50000) L_0x26a9750/d; +L_0x26a97f0/d .functor OR 1, L_0x26aa010, L_0x26aa100, C4<0>, C4<0>; +L_0x26a97f0 .delay (50000,50000,50000) L_0x26a97f0/d; +L_0x26a99b0/d .functor NOT 1, C4<0>, C4<0>, C4<0>, C4<0>; +L_0x26a99b0 .delay (50000,50000,50000) L_0x26a99b0/d; +L_0x26a9a80/d .functor AND 1, L_0x26a9750, L_0x26a99b0, C4<1>, C4<1>; +L_0x26a9a80 .delay (50000,50000,50000) L_0x26a9a80/d; +L_0x26a9bd0/d .functor AND 1, L_0x26a97f0, C4<0>, C4<1>, C4<1>; +L_0x26a9bd0 .delay (50000,50000,50000) L_0x26a9bd0/d; +L_0x26a9ce0/d .functor OR 1, L_0x26a9a80, L_0x26a9bd0, C4<0>, C4<0>; +L_0x26a9ce0 .delay (50000,50000,50000) L_0x26a9ce0/d; +v0x26a8260_0 .net "_carryin", 0 0, L_0x26a99b0; 1 drivers +v0x26a8320_0 .alias "a", 0 0, v0x26a8990_0; +v0x26a83c0_0 .net "aandb", 0 0, L_0x26a9750; 1 drivers +v0x26a8460_0 .net "aorb", 0 0, L_0x26a97f0; 1 drivers +v0x26a8510_0 .alias "b", 0 0, v0x26a8a60_0; +v0x26a85b0_0 .net "carryin", 0 0, C4<0>; 1 drivers +v0x26a8650_0 .alias "carryout", 0 0, v0x26a8c40_0; +v0x26a86d0_0 .net "outputIfCarryin", 0 0, L_0x26a9a80; 1 drivers +v0x26a8750_0 .net "outputIf_Carryin", 0 0, L_0x26a9bd0; 1 drivers +v0x26a87f0_0 .net "s", 0 0, L_0x26a9490; 1 drivers +v0x26a88f0_0 .alias "sum", 0 0, v0x26a8b90_0; +S_0x26a7860 .scope module, "fa1" "FullAdder1bit" 3 50, 3 9, S_0x2674720; + .timescale -9 -12; +L_0x26aa1f0/d .functor XOR 1, L_0x26aabd0, L_0x26aad00, C4<0>, C4<0>; +L_0x26aa1f0 .delay (50000,50000,50000) L_0x26aa1f0/d; +L_0x26aa300/d .functor XOR 1, L_0x26aa1f0, L_0x26a9ce0, C4<0>, C4<0>; +L_0x26aa300 .delay (50000,50000,50000) L_0x26aa300/d; +L_0x26aa3f0/d .functor AND 1, L_0x26aabd0, L_0x26aad00, C4<1>, C4<1>; +L_0x26aa3f0 .delay (50000,50000,50000) L_0x26aa3f0/d; +L_0x26aa550/d .functor OR 1, L_0x26aabd0, L_0x26aad00, C4<0>, C4<0>; +L_0x26aa550 .delay (50000,50000,50000) L_0x26aa550/d; +L_0x26aa610/d .functor NOT 1, L_0x26a9ce0, C4<0>, C4<0>, C4<0>; +L_0x26aa610 .delay (50000,50000,50000) L_0x26aa610/d; +L_0x26aa6b0/d .functor AND 1, L_0x26aa3f0, L_0x26aa610, C4<1>, C4<1>; +L_0x26aa6b0 .delay (50000,50000,50000) L_0x26aa6b0/d; +L_0x26aa850/d .functor AND 1, L_0x26aa550, L_0x26a9ce0, C4<1>, C4<1>; +L_0x26aa850 .delay (50000,50000,50000) L_0x26aa850/d; +L_0x26aa960/d .functor OR 1, L_0x26aa6b0, L_0x26aa850, C4<0>, C4<0>; +L_0x26aa960 .delay (50000,50000,50000) L_0x26aa960/d; +v0x26a7950_0 .net "_carryin", 0 0, L_0x26aa610; 1 drivers +v0x26a7a10_0 .net "a", 0 0, L_0x26aabd0; 1 drivers +v0x26a7ab0_0 .net "aandb", 0 0, L_0x26aa3f0; 1 drivers +v0x26a7b50_0 .net "aorb", 0 0, L_0x26aa550; 1 drivers +v0x26a7c00_0 .net "b", 0 0, L_0x26aad00; 1 drivers +v0x26a7ca0_0 .alias "carryin", 0 0, v0x26a8c40_0; +v0x26a7d40_0 .alias "carryout", 0 0, v0x26a8cc0_0; +v0x26a7dc0_0 .net "outputIfCarryin", 0 0, L_0x26aa6b0; 1 drivers +v0x26a7e40_0 .net "outputIf_Carryin", 0 0, L_0x26aa850; 1 drivers +v0x26a7ee0_0 .net "s", 0 0, L_0x26aa1f0; 1 drivers +v0x26a7fe0_0 .net "sum", 0 0, L_0x26aa300; 1 drivers +S_0x26a7070 .scope module, "fa2" "FullAdder1bit" 3 51, 3 9, S_0x2674720; + .timescale -9 -12; +L_0x26aae30/d .functor XOR 1, L_0x26ab7d0, L_0x26ab990, C4<0>, C4<0>; +L_0x26aae30 .delay (50000,50000,50000) L_0x26aae30/d; +L_0x26aaed0/d .functor XOR 1, L_0x26aae30, L_0x26aa960, C4<0>, C4<0>; +L_0x26aaed0 .delay (50000,50000,50000) L_0x26aaed0/d; +L_0x26ab000/d .functor AND 1, L_0x26ab7d0, L_0x26ab990, C4<1>, C4<1>; +L_0x26ab000 .delay (50000,50000,50000) L_0x26ab000/d; +L_0x26ab110/d .functor OR 1, L_0x26ab7d0, L_0x26ab990, C4<0>, C4<0>; +L_0x26ab110 .delay (50000,50000,50000) L_0x26ab110/d; +L_0x26ab1d0/d .functor NOT 1, L_0x26aa960, C4<0>, C4<0>, C4<0>; +L_0x26ab1d0 .delay (50000,50000,50000) L_0x26ab1d0/d; +L_0x26ab270/d .functor AND 1, L_0x26ab000, L_0x26ab1d0, C4<1>, C4<1>; +L_0x26ab270 .delay (50000,50000,50000) L_0x26ab270/d; +L_0x26ab410/d .functor AND 1, L_0x26ab110, L_0x26aa960, C4<1>, C4<1>; +L_0x26ab410 .delay (50000,50000,50000) L_0x26ab410/d; +L_0x26ab520/d .functor OR 1, L_0x26ab270, L_0x26ab410, C4<0>, C4<0>; +L_0x26ab520 .delay (50000,50000,50000) L_0x26ab520/d; +v0x26a7160_0 .net "_carryin", 0 0, L_0x26ab1d0; 1 drivers +v0x26a7220_0 .net "a", 0 0, L_0x26ab7d0; 1 drivers +v0x26a72c0_0 .net "aandb", 0 0, L_0x26ab000; 1 drivers +v0x26a7360_0 .net "aorb", 0 0, L_0x26ab110; 1 drivers +v0x26a73e0_0 .net "b", 0 0, L_0x26ab990; 1 drivers +v0x26a7480_0 .alias "carryin", 0 0, v0x26a8cc0_0; +v0x26a7520_0 .alias "carryout", 0 0, v0x26a8d90_0; +v0x26a75a0_0 .net "outputIfCarryin", 0 0, L_0x26ab270; 1 drivers +v0x26a7620_0 .net "outputIf_Carryin", 0 0, L_0x26ab410; 1 drivers +v0x26a76c0_0 .net "s", 0 0, L_0x26aae30; 1 drivers +v0x26a77c0_0 .net "sum", 0 0, L_0x26aaed0; 1 drivers +S_0x2674470 .scope module, "fa3" "FullAdder1bit" 3 52, 3 9, S_0x2674720; + .timescale -9 -12; +L_0x26abb50/d .functor XOR 1, L_0x26ac460, L_0x26ac590, C4<0>, C4<0>; +L_0x26abb50 .delay (50000,50000,50000) L_0x26abb50/d; +L_0x26abbd0/d .functor XOR 1, L_0x26abb50, L_0x26ab520, C4<0>, C4<0>; +L_0x26abbd0 .delay (50000,50000,50000) L_0x26abbd0/d; +L_0x26abcc0/d .functor AND 1, L_0x26ac460, L_0x26ac590, C4<1>, C4<1>; +L_0x26abcc0 .delay (50000,50000,50000) L_0x26abcc0/d; +L_0x26abd80/d .functor OR 1, L_0x26ac460, L_0x26ac590, C4<0>, C4<0>; +L_0x26abd80 .delay (50000,50000,50000) L_0x26abd80/d; +L_0x26abe40/d .functor NOT 1, L_0x26ab520, C4<0>, C4<0>, C4<0>; +L_0x26abe40 .delay (50000,50000,50000) L_0x26abe40/d; +L_0x26abee0/d .functor AND 1, L_0x26abcc0, L_0x26abe40, C4<1>, C4<1>; +L_0x26abee0 .delay (50000,50000,50000) L_0x26abee0/d; +L_0x26ac080/d .functor AND 1, L_0x26abd80, L_0x26ab520, C4<1>, C4<1>; +L_0x26ac080 .delay (50000,50000,50000) L_0x26ac080/d; +L_0x26ac190/d .functor OR 1, L_0x26abee0, L_0x26ac080, C4<0>, C4<0>; +L_0x26ac190 .delay (50000,50000,50000) L_0x26ac190/d; +v0x2675670_0 .net "_carryin", 0 0, L_0x26abe40; 1 drivers +v0x26a6930_0 .net "a", 0 0, L_0x26ac460; 1 drivers +v0x26a69d0_0 .net "aandb", 0 0, L_0x26abcc0; 1 drivers +v0x26a6a70_0 .net "aorb", 0 0, L_0x26abd80; 1 drivers +v0x26a6b20_0 .net "b", 0 0, L_0x26ac590; 1 drivers +v0x26a6bc0_0 .alias "carryin", 0 0, v0x26a8d90_0; +v0x26a6ca0_0 .alias "carryout", 0 0, v0x26a9260_0; +v0x26a6d40_0 .net "outputIfCarryin", 0 0, L_0x26abee0; 1 drivers +v0x26a6e30_0 .net "outputIf_Carryin", 0 0, L_0x26ac080; 1 drivers +v0x26a6ed0_0 .net "s", 0 0, L_0x26abb50; 1 drivers +v0x26a6fd0_0 .net "sum", 0 0, L_0x26abbd0; 1 drivers + .scope S_0x2675b40; +T_0 ; + %vpi_call 2 13 "$dumpfile", "adder4bit.vcd"; + %vpi_call 2 14 "$dumpvars"; + %vpi_call 2 16 "$display", "A B | Sum Cout Overflow "; + %set/v v0x26a9130_0, 0, 4; + %set/v v0x26a91b0_0, 0, 4; + %delay 1000000, 0; + %vpi_call 2 18 "$display", "%b %b | %b %b %b", v0x26a9130_0, v0x26a91b0_0, v0x26a93e0_0, v0x26a9260_0, v0x26a9330_0; + %movi 8, 1, 4; + %set/v v0x26a9130_0, 8, 4; + %movi 8, 1, 4; + %set/v v0x26a91b0_0, 8, 4; + %delay 1000000, 0; + %vpi_call 2 20 "$display", "%b %b | %b %b %b", v0x26a9130_0, v0x26a91b0_0, v0x26a93e0_0, v0x26a9260_0, v0x26a9330_0; + %movi 8, 3, 4; + %set/v v0x26a9130_0, 8, 4; + %set/v v0x26a91b0_0, 0, 4; + %delay 1000000, 0; + %vpi_call 2 22 "$display", "%b %b | %b %b %b", v0x26a9130_0, v0x26a91b0_0, v0x26a93e0_0, v0x26a9260_0, v0x26a9330_0; + %set/v v0x26a9130_0, 0, 4; + %movi 8, 3, 4; + %set/v v0x26a91b0_0, 8, 4; + %delay 10000000, 0; + %vpi_call 2 24 "$display", "%b %b | %b %b %b", v0x26a9130_0, v0x26a91b0_0, v0x26a93e0_0, v0x26a9260_0, v0x26a9330_0; + %movi 8, 5, 4; + %set/v v0x26a9130_0, 8, 4; + %movi 8, 2, 4; + %set/v v0x26a91b0_0, 8, 4; + %delay 10000000, 0; + %vpi_call 2 26 "$display", "%b %b | %b %b %b", v0x26a9130_0, v0x26a91b0_0, v0x26a93e0_0, v0x26a9260_0, v0x26a9330_0; + %movi 8, 5, 4; + %set/v v0x26a9130_0, 8, 4; + %movi 8, 3, 4; + %set/v v0x26a91b0_0, 8, 4; + %delay 10000000, 0; + %vpi_call 2 28 "$display", "%b %b | %b %b %b", v0x26a9130_0, v0x26a91b0_0, v0x26a93e0_0, v0x26a9260_0, v0x26a9330_0; + %movi 8, 9, 4; + %set/v v0x26a9130_0, 8, 4; + %movi 8, 14, 4; + %set/v v0x26a91b0_0, 8, 4; + %delay 10000000, 0; + %vpi_call 2 30 "$display", "%b %b | %b %b %b", v0x26a9130_0, v0x26a91b0_0, v0x26a93e0_0, v0x26a9260_0, v0x26a9330_0; + %movi 8, 13, 4; + %set/v v0x26a9130_0, 8, 4; + %movi 8, 11, 4; + %set/v v0x26a91b0_0, 8, 4; + %delay 10000000, 0; + %vpi_call 2 32 "$display", "%b %b | %b %b %b", v0x26a9130_0, v0x26a91b0_0, v0x26a93e0_0, v0x26a9260_0, v0x26a9330_0; + %vpi_call 2 33 "$finish"; + %end; + .thread T_0; +# The file index is used to find the file name in the following table. +:file_names 4; + "N/A"; + ""; + "adder.t.v"; + "./adder.v"; diff --git a/adder.t.v b/adder.t.v new file mode 100644 index 0000000..05d2ba9 --- /dev/null +++ b/adder.t.v @@ -0,0 +1,54 @@ +// Adder testbench +`timescale 1 ns / 1 ps +`include "adder.v" + +module testFullAdder4bit(); + reg[3:0] a, b; + wire[3:0] sum; + wire overflow, carryout; + + FullAdder4bit adder (sum, carryout, overflow, a, b); + + initial begin + $dumpfile("adder4bit.vcd"); + $dumpvars; + + $display("A B | Sum Cout Overflow "); + a=4'b0000;b=4'b0000; #1000; + $display("%b %b | %b %b %b", a, b, sum, carryout, overflow); + a=4'b011;b=4'b0011; #1000; + $display("%b %b | %b %b %b", a, b, sum, carryout, overflow); + /*a=4'b0011;b=4'b0000; #1000; + $display("%b %b | %b %b %b", a, b, sum, carryout, overflow); + a=4'b0000;b=4'b0011; #10000; + $display("%b %b | %b %b %b", a, b, sum, carryout, overflow); + a=4'b0101;b=4'b0010; #10000; + $display("%b %b | %b %b %b", a, b, sum, carryout, overflow); + a=4'b0001;b=4'b0011; #10000; + $display("%b %b | %b %b %b", a, b, sum, carryout, overflow); + a=4'b0010;b=4'b1010; #10000; + $display("%b %b | %b %b %b", a, b, sum, carryout, overflow); + a=4'b1101;b=4'b1011; #10000; + $display("%b %b | %b %b %b", a, b, sum, carryout, overflow); + + a=4'b1101;b=4'b0110; #10000; + $display("%b %b | %b %b %b", a, b, sum, carryout, overflow); // 0011 0 0 + a=4'b1110;b=4'b0010; #10000; + $display("%b %b | %b %b %b", a, b, sum, carryout, overflow); // 0000 0 0 + a=4'b0001;b=4'b0110; #10000; + $display("%b %b | %b %b %b", a, b, sum, carryout, overflow); // 0111 0 0 + a=4'b1000;b=4'b0010; #10000; + $display("%b %b | %b %b %b", a, b, sum, carryout, overflow); // 0110 0 0 + + // Overflow tests: + a=4'b1000;b=4'b1001; #10000; + $display("%b %b | %b %b %b", a, b, sum, carryout, overflow); + a=4'b1011;b=4'b1100; #10000; + $display("%b %b | %b %b %b", a, b, sum, carryout, overflow); + a=4'b0101;b=4'b0100; #10000; + $display("%b %b | %b %b %b", a, b, sum, carryout, overflow); + a=4'b0010;b=4'b0111; #10000; + $display("%b %b | %b %b %b", a, b, sum, carryout, overflow);*/ + $finish; + end +endmodule diff --git a/adder.v b/adder.v new file mode 100644 index 0000000..093883f --- /dev/null +++ b/adder.v @@ -0,0 +1,55 @@ +// 4 Bit Adder + +// define gates with delays +`define XOR xor #50 +`define AND and #50 +`define OR or #50 +`define NOT not #50 + +module FullAdder1Bit +( + output sum, + output carryout, + input a, + input b, + input carryin +); + wire aandb, aorb; + wire s, _carryin; + wire outputIfCarryin, outputIf_Carryin; + `XOR(s, a, b); + `XOR(sum, s, carryin); + `AND(aandb, a, b); + `OR(aorb, a, b); + `NOT(_carryin, carryin); + `AND(outputIfCarryin, aandb, _carryin); + `AND(outputIf_Carryin, aorb, carryin); + `OR(carryout, outputIfCarryin, outputIf_Carryin); +endmodule + +module HalfAdder +( + output sum, + output carryout, + input a, + input b +); + FullAdder1Bit adder (sum, carryout, a, b, 0); +endmodule + +module FullAdder4bit +( + output[3:0] sum, // 2's complement sum of a and b + output carryout, // Carry out of the summation of a and b + output overflow, // True if the calculation resulted in an overflow + input[3:0] a, // First operand in 2's complement format + input[3:0] b // Second operand in 2's complement format +); + wire Cout0, Cout1, Cout2; + HalfAdder ha0 (sum[0], Cout0, a[0], b[0]); + FullAdder1Bit fa1 (sum[1], Cout1, a[1], b[1], Cout0); + FullAdder1Bit fa2 (sum[2], Cout2, a[2], b[2], Cout1); + FullAdder1Bit fa3 (sum[3], carryout, a[3], b[3], Cout2); + `XOR computeOverflow (overflow, carryout, Cout2); + +endmodule diff --git a/lab0_wrapper.v b/lab0_wrapper.v index 3270bd2..999a899 100644 --- a/lab0_wrapper.v +++ b/lab0_wrapper.v @@ -25,6 +25,7 @@ //-------------------------------------------------------------------------------- `timescale 1ns / 1ps +`include "adder.v" //-------------------------------------------------------------------------------- diff --git a/project_1/example.v b/project_1/example.v new file mode 100644 index 0000000..d6da131 --- /dev/null +++ b/project_1/example.v @@ -0,0 +1,22 @@ +// Vivado bring-up example + +module dff4( + input trigger, + input [3:0] d, + output [3:0] q + ); + reg[3:0] q; + always @(posedge trigger) begin + q <= d; + end +endmodule + +module hw_wrapper( + input[3:0] sw, + input clk, + output[3:0] led + ); + + dff4 device(clk, sw, led); + +endmodule diff --git a/project_1/project_1.cache/wt/gui_resources.wdf b/project_1/project_1.cache/wt/gui_resources.wdf new file mode 100644 index 0000000..d33f663 --- /dev/null +++ b/project_1/project_1.cache/wt/gui_resources.wdf @@ -0,0 +1,48 @@ +version:1 +70726f6a656374:76697661646f5f75736167655c6775695f7265736f7572636573:61646473726377697a6172645f737065636966795f68646c5f6e65746c6973745f626c6f636b5f64657369676e:31:00:00 +70726f6a656374:76697661646f5f75736167655c6775695f7265736f7572636573:61646473726377697a6172645f737065636966795f6f725f6372656174655f636f6e73747261696e745f66696c6573:31:00:00 +70726f6a656374:76697661646f5f75736167655c6775695f7265736f7572636573:626173656469616c6f675f6170706c79:32:00:00 +70726f6a656374:76697661646f5f75736167655c6775695f7265736f7572636573:626173656469616c6f675f63616e63656c:39:00:00 +70726f6a656374:76697661646f5f75736167655c6775695f7265736f7572636573:626173656469616c6f675f6e6f:31:00:00 +70726f6a656374:76697661646f5f75736167655c6775695f7265736f7572636573:626173656469616c6f675f6f6b:3235:00:00 +70726f6a656374:76697661646f5f75736167655c6775695f7265736f7572636573:626173656469616c6f675f796573:31:00:00 +70726f6a656374:76697661646f5f75736167655c6775695f7265736f7572636573:636d646d73676469616c6f675f6f6b:33:00:00 +70726f6a656374:76697661646f5f75736167655c6775695f7265736f7572636573:636f6d6d616e6473696e7075745f747970655f74636c5f636f6d6d616e645f68657265:33:00:00 +70726f6a656374:76697661646f5f75736167655c6775695f7265736f7572636573:636f6e73747261696e747363686f6f73657270616e656c5f6164645f6578697374696e675f6f725f6372656174655f6e65775f636f6e73747261696e7473:31:00:00 +70726f6a656374:76697661646f5f75736167655c6775695f7265736f7572636573:636f6e73747261696e747363686f6f73657270616e656c5f6164645f66696c6573:31:00:00 +70726f6a656374:76697661646f5f75736167655c6775695f7265736f7572636573:636f6e73747261696e747363686f6f73657270616e656c5f6164645f66696c65735f62656c6f775f746f5f746869735f636f6e73747261696e745f736574:31:00:00 +70726f6a656374:76697661646f5f75736167655c6775695f7265736f7572636573:6578707265706f72747472656570616e656c5f6578705f7265706f72745f747265655f7461626c65:36:00:00 +70726f6a656374:76697661646f5f75736167655c6775695f7265736f7572636573:66696c6573657470616e656c5f66696c655f7365745f70616e656c5f74726565:3236:00:00 +70726f6a656374:76697661646f5f75736167655c6775695f7265736f7572636573:66696c6573657470616e656c5f6d65737361676573:35:00:00 +70726f6a656374:76697661646f5f75736167655c6775695f7265736f7572636573:666c6f776e6176696761746f727472656570616e656c5f666c6f775f6e6176696761746f725f74726565:3234:00:00 +70726f6a656374:76697661646f5f75736167655c6775695f7265736f7572636573:67657474696e6773746172746564766965775f6372656174655f6e65775f70726f6a656374:31:00:00 +70726f6a656374:76697661646f5f75736167655c6775695f7265736f7572636573:67657474696e6773746172746564766965775f6f70656e5f70726f6a656374:31:00:00 +70726f6a656374:76697661646f5f75736167655c6775695f7265736f7572636573:68636f6465656469746f725f7365617263685f746578745f636f6d626f5f626f78:31:00:00 +70726f6a656374:76697661646f5f75736167655c6775695f7265736f7572636573:6c6f676d6f6e69746f725f6d6f6e69746f72:34:00:00 +70726f6a656374:76697661646f5f75736167655c6775695f7265736f7572636573:6d61696e6d656e756d67725f66696c65:32:00:00 +70726f6a656374:76697661646f5f75736167655c6775695f7265736f7572636573:6d61696e6d656e756d67725f666c6f77:32:00:00 +70726f6a656374:76697661646f5f75736167655c6775695f7265736f7572636573:6d61696e6d656e756d67725f746f6f6c73:32:00:00 +70726f6a656374:76697661646f5f75736167655c6775695f7265736f7572636573:6d61696e6d656e756d67725f77696e646f77:32:00:00 +70726f6a656374:76697661646f5f75736167655c6775695f7265736f7572636573:6d61696e77696e746f6f6c6261726d67725f73656c6563745f6f725f736176655f77696e646f775f6c61796f7574:32:00:00 +70726f6a656374:76697661646f5f75736167655c6775695f7265736f7572636573:6d73677472656570616e656c5f6d6573736167655f766965775f74726565:3131:00:00 +70726f6a656374:76697661646f5f75736167655c6775695f7265736f7572636573:6e65746c697374736368656d61746963766965775f73686f775f63656c6c735f696e5f746869735f736368656d61746963:32:00:00 +70726f6a656374:76697661646f5f75736167655c6775695f7265736f7572636573:6e65746c697374736368656d61746963766965775f73686f775f696f5f706f7274735f696e5f746869735f736368656d61746963:31:00:00 +70726f6a656374:76697661646f5f75736167655c6775695f7265736f7572636573:7061636f6d6d616e646e616d65735f6164645f736f7572636573:32:00:00 +70726f6a656374:76697661646f5f75736167655c6775695f7265736f7572636573:7061636f6d6d616e646e616d65735f6175746f5f636f6e6e6563745f746172676574:32:00:00 +70726f6a656374:76697661646f5f75736167655c6775695f7265736f7572636573:7061636f6d6d616e646e616d65735f6c6f675f77696e646f77:31:00:00 +70726f6a656374:76697661646f5f75736167655c6775695f7265736f7572636573:7061636f6d6d616e646e616d65735f6f70656e5f68617264776172655f6d616e61676572:31:00:00 +70726f6a656374:76697661646f5f75736167655c6775695f7265736f7572636573:7061636f6d6d616e646e616d65735f70726f6a6563745f73756d6d617279:31:00:00 +70726f6a656374:76697661646f5f75736167655c6775695f7265736f7572636573:7061636f6d6d616e646e616d65735f72756e5f62697467656e:32:00:00 +70726f6a656374:76697661646f5f75736167655c6775695f7265736f7572636573:7061636f6d6d616e646e616d65735f72756e5f696d706c656d656e746174696f6e:31:00:00 +70726f6a656374:76697661646f5f75736167655c6775695f7265736f7572636573:7061727463686f6f7365725f626f61726473:31:00:00 +70726f6a656374:76697661646f5f75736167655c6775695f7265736f7572636573:7061727463686f6f7365725f7061727473:32:00:00 +70726f6a656374:76697661646f5f75736167655c6775695f7265736f7572636573:706c616e61686561647461625f73686f775f666c6f775f6e6176696761746f72:31:00:00 +70726f6a656374:76697661646f5f75736167655c6775695f7265736f7572636573:70726f6772616d64656275677461625f6f70656e5f746172676574:32:00:00 +70726f6a656374:76697661646f5f75736167655c6775695f7265736f7572636573:70726f6772616d667067616469616c6f675f70726f6772616d:32:00:00 +70726f6a656374:76697661646f5f75736167655c6775695f7265736f7572636573:72756e6761646765745f73686f775f6572726f725f616e645f637269746963616c5f7761726e696e675f6d65737361676573:31:00:00 +70726f6a656374:76697661646f5f75736167655c6775695f7265736f7572636573:73657474696e67736469616c6f675f70726f6a6563745f74726565:33:00:00 +70726f6a656374:76697661646f5f75736167655c6775695f7265736f7572636573:73726363686f6f73657270616e656c5f6164645f68646c5f616e645f6e65746c6973745f66696c65735f746f5f796f75725f70726f6a656374:33:00:00 +70726f6a656374:76697661646f5f75736167655c6775695f7265736f7572636573:73726363686f6f73657270616e656c5f6164645f6f725f6372656174655f736f757263655f66696c65:33:00:00 +70726f6a656374:76697661646f5f75736167655c6775695f7265736f7572636573:74636c636f6e736f6c65766965775f74636c5f636f6e736f6c655f636f64655f656469746f72:3134:00:00 +70726f6a656374:76697661646f5f75736167655c6775695f7265736f7572636573:74636c6f626a656374747265657461626c655f747265657461626c65:35:00:00 +eof:4033922208 diff --git a/project_1/project_1.cache/wt/java_command_handlers.wdf b/project_1/project_1.cache/wt/java_command_handlers.wdf new file mode 100644 index 0000000..32c89e9 --- /dev/null +++ b/project_1/project_1.cache/wt/java_command_handlers.wdf @@ -0,0 +1,19 @@ +version:1 +70726f6a656374:76697661646f5f75736167655c6a6176615f636f6d6d616e645f68616e646c657273:616464736f7572636573:35:00:00 +70726f6a656374:76697661646f5f75736167655c6a6176615f636f6d6d616e645f68616e646c657273:6175746f636f6e6e656374746172676574:32:00:00 +70726f6a656374:76697661646f5f75736167655c6a6176615f636f6d6d616e645f68616e646c657273:6564697464656c657465:31:00:00 +70726f6a656374:76697661646f5f75736167655c6a6176615f636f6d6d616e645f68616e646c657273:6c61756e636870726f6772616d66706761:33:00:00 +70726f6a656374:76697661646f5f75736167655c6a6176615f636f6d6d616e645f68616e646c657273:6e657770726f6a656374:31:00:00 +70726f6a656374:76697661646f5f75736167655c6a6176615f636f6d6d616e645f68616e646c657273:6f70656e68617264776172656d616e61676572:35:00:00 +70726f6a656374:76697661646f5f75736167655c6a6176615f636f6d6d616e645f68616e646c657273:6f70656e70726f6a656374:31:00:00 +70726f6a656374:76697661646f5f75736167655c6a6176615f636f6d6d616e645f68616e646c657273:70726f6772616d646576696365:33:00:00 +70726f6a656374:76697661646f5f75736167655c6a6176615f636f6d6d616e645f68616e646c657273:70726f6a65637473756d6d617279:31:00:00 +70726f6a656374:76697661646f5f75736167655c6a6176615f636f6d6d616e645f68616e646c657273:72756e62697467656e:32:00:00 +70726f6a656374:76697661646f5f75736167655c6a6176615f636f6d6d616e645f68616e646c657273:72756e696d706c656d656e746174696f6e:36:00:00 +70726f6a656374:76697661646f5f75736167655c6a6176615f636f6d6d616e645f68616e646c657273:72756e73796e746865736973:36:00:00 +70726f6a656374:76697661646f5f75736167655c6a6176615f636f6d6d616e645f68616e646c657273:73686f7776696577:32:00:00 +70726f6a656374:76697661646f5f75736167655c6a6176615f636f6d6d616e645f68616e646c657273:746f6f6c7373657474696e6773:33:00:00 +70726f6a656374:76697661646f5f75736167655c6a6176615f636f6d6d616e645f68616e646c657273:766965776c61796f7574636d64:32:00:00 +70726f6a656374:76697661646f5f75736167655c6a6176615f636f6d6d616e645f68616e646c657273:766965777461736b70726f6a6563746d616e61676572:31:00:00 +70726f6a656374:76697661646f5f75736167655c6a6176615f636f6d6d616e645f68616e646c657273:766965777461736b72746c616e616c79736973:31:00:00 +eof:2632198778 diff --git a/project_1/project_1.cache/wt/project.wpc b/project_1/project_1.cache/wt/project.wpc new file mode 100644 index 0000000..d0b5644 --- /dev/null +++ b/project_1/project_1.cache/wt/project.wpc @@ -0,0 +1,4 @@ +version:1 +57656254616c6b5472616e736d697373696f6e417474656d70746564:2 +6d6f64655f636f756e7465727c4755494d6f6465:2 +eof: diff --git a/project_1/project_1.cache/wt/synthesis.wdf b/project_1/project_1.cache/wt/synthesis.wdf new file mode 100644 index 0000000..15f6da8 --- /dev/null +++ b/project_1/project_1.cache/wt/synthesis.wdf @@ -0,0 +1,39 @@ +version:1 +73796e746865736973:73796e7468657369735c636f6d6d616e645f6c696e655f6f7074696f6e73:2d70617274:7863377a303130636c673430302d31:00:00 +73796e746865736973:73796e7468657369735c636f6d6d616e645f6c696e655f6f7074696f6e73:2d6e616d65:64656661756c743a3a5b6e6f745f7370656369666965645d:00:00 +73796e746865736973:73796e7468657369735c636f6d6d616e645f6c696e655f6f7074696f6e73:2d746f70:6c6162305f77726170706572:00:00 +73796e746865736973:73796e7468657369735c636f6d6d616e645f6c696e655f6f7074696f6e73:2d696e636c7564655f64697273:64656661756c743a3a5b6e6f745f7370656369666965645d:00:00 +73796e746865736973:73796e7468657369735c636f6d6d616e645f6c696e655f6f7074696f6e73:2d67656e65726963:64656661756c743a3a5b6e6f745f7370656369666965645d:00:00 +73796e746865736973:73796e7468657369735c636f6d6d616e645f6c696e655f6f7074696f6e73:2d766572696c6f675f646566696e65:64656661756c743a3a5b6e6f745f7370656369666965645d:00:00 +73796e746865736973:73796e7468657369735c636f6d6d616e645f6c696e655f6f7074696f6e73:2d636f6e737472736574:64656661756c743a3a5b6e6f745f7370656369666965645d:00:00 +73796e746865736973:73796e7468657369735c636f6d6d616e645f6c696e655f6f7074696f6e73:2d7365755f70726f74656374:64656661756c743a3a6e6f6e65:00:00 +73796e746865736973:73796e7468657369735c636f6d6d616e645f6c696e655f6f7074696f6e73:2d666c617474656e5f686965726172636879:64656661756c743a3a72656275696c74:00:00 +73796e746865736973:73796e7468657369735c636f6d6d616e645f6c696e655f6f7074696f6e73:2d67617465645f636c6f636b5f636f6e76657273696f6e:64656661756c743a3a6f6666:00:00 +73796e746865736973:73796e7468657369735c636f6d6d616e645f6c696e655f6f7074696f6e73:2d646972656374697665:64656661756c743a3a64656661756c74:00:00 +73796e746865736973:73796e7468657369735c636f6d6d616e645f6c696e655f6f7074696f6e73:2d72746c:64656661756c743a3a5b6e6f745f7370656369666965645d:00:00 +73796e746865736973:73796e7468657369735c636f6d6d616e645f6c696e655f6f7074696f6e73:2d72746c5f736b69705f6970:64656661756c743a3a5b6e6f745f7370656369666965645d:00:00 +73796e746865736973:73796e7468657369735c636f6d6d616e645f6c696e655f6f7074696f6e73:2d72746c5f736b69705f636f6e73747261696e7473:64656661756c743a3a5b6e6f745f7370656369666965645d:00:00 +73796e746865736973:73796e7468657369735c636f6d6d616e645f6c696e655f6f7074696f6e73:2d6e6f5f6c63:64656661756c743a3a5b6e6f745f7370656369666965645d:00:00 +73796e746865736973:73796e7468657369735c636f6d6d616e645f6c696e655f6f7074696f6e73:2d62756667:64656661756c743a3a3132:00:00 +73796e746865736973:73796e7468657369735c636f6d6d616e645f6c696e655f6f7074696f6e73:2d66616e6f75745f6c696d6974:64656661756c743a3a3130303030:00:00 +73796e746865736973:73796e7468657369735c636f6d6d616e645f6c696e655f6f7074696f6e73:2d73687265675f6d696e5f73697a65:64656661756c743a3a33:00:00 +73796e746865736973:73796e7468657369735c636f6d6d616e645f6c696e655f6f7074696f6e73:2d6d6f6465:64656661756c743a3a64656661756c74:00:00 +73796e746865736973:73796e7468657369735c636f6d6d616e645f6c696e655f6f7074696f6e73:2d66736d5f65787472616374696f6e:64656661756c743a3a6175746f:00:00 +73796e746865736973:73796e7468657369735c636f6d6d616e645f6c696e655f6f7074696f6e73:2d6b6565705f6571756976616c656e745f726567697374657273:64656661756c743a3a5b6e6f745f7370656369666965645d:00:00 +73796e746865736973:73796e7468657369735c636f6d6d616e645f6c696e655f6f7074696f6e73:2d7265736f757263655f73686172696e67:64656661756c743a3a6175746f:00:00 +73796e746865736973:73796e7468657369735c636f6d6d616e645f6c696e655f6f7074696f6e73:2d636173636164655f647370:64656661756c743a3a6175746f:00:00 +73796e746865736973:73796e7468657369735c636f6d6d616e645f6c696e655f6f7074696f6e73:2d636f6e74726f6c5f7365745f6f70745f7468726573686f6c64:64656661756c743a3a6175746f:00:00 +73796e746865736973:73796e7468657369735c636f6d6d616e645f6c696e655f6f7074696f6e73:2d6d61785f6272616d:64656661756c743a3a2d31:00:00 +73796e746865736973:73796e7468657369735c636f6d6d616e645f6c696e655f6f7074696f6e73:2d6d61785f7572616d:64656661756c743a3a2d31:00:00 +73796e746865736973:73796e7468657369735c636f6d6d616e645f6c696e655f6f7074696f6e73:2d6d61785f647370:64656661756c743a3a2d31:00:00 +73796e746865736973:73796e7468657369735c636f6d6d616e645f6c696e655f6f7074696f6e73:2d6d61785f6272616d5f636173636164655f686569676874:64656661756c743a3a2d31:00:00 +73796e746865736973:73796e7468657369735c636f6d6d616e645f6c696e655f6f7074696f6e73:2d6d61785f7572616d5f636173636164655f686569676874:64656661756c743a3a2d31:00:00 +73796e746865736973:73796e7468657369735c636f6d6d616e645f6c696e655f6f7074696f6e73:2d726574696d696e67:64656661756c743a3a5b6e6f745f7370656369666965645d:00:00 +73796e746865736973:73796e7468657369735c636f6d6d616e645f6c696e655f6f7074696f6e73:2d6e6f5f73726c65787472616374:64656661756c743a3a5b6e6f745f7370656369666965645d:00:00 +73796e746865736973:73796e7468657369735c636f6d6d616e645f6c696e655f6f7074696f6e73:2d617373657274:64656661756c743a3a5b6e6f745f7370656369666965645d:00:00 +73796e746865736973:73796e7468657369735c636f6d6d616e645f6c696e655f6f7074696f6e73:2d6e6f5f74696d696e675f64726976656e:64656661756c743a3a5b6e6f745f7370656369666965645d:00:00 +73796e746865736973:73796e7468657369735c636f6d6d616e645f6c696e655f6f7074696f6e73:2d73666375:64656661756c743a3a5b6e6f745f7370656369666965645d:00:00 +73796e746865736973:73796e7468657369735c7573616765:656c6170736564:30303a30303a313873:00:00 +73796e746865736973:73796e7468657369735c7573616765:6d656d6f72795f7065616b:313439302e3037344d42:00:00 +73796e746865736973:73796e7468657369735c7573616765:6d656d6f72795f6761696e:3430312e3033394d42:00:00 +eof:4162540178 diff --git a/project_1/project_1.cache/wt/synthesis_details.wdf b/project_1/project_1.cache/wt/synthesis_details.wdf new file mode 100644 index 0000000..78f8d66 --- /dev/null +++ b/project_1/project_1.cache/wt/synthesis_details.wdf @@ -0,0 +1,3 @@ +version:1 +73796e746865736973:73796e7468657369735c7573616765:686c735f6970:30:00:00 +eof:2511430288 diff --git a/project_1/project_1.cache/wt/webtalk_pa.xml b/project_1/project_1.cache/wt/webtalk_pa.xml new file mode 100644 index 0000000..effdc47 --- /dev/null +++ b/project_1/project_1.cache/wt/webtalk_pa.xml @@ -0,0 +1,93 @@ + + + + +
+ + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
diff --git a/project_1/project_1.hw/hw_1/hw.xml b/project_1/project_1.hw/hw_1/hw.xml new file mode 100644 index 0000000..3b1fb99 --- /dev/null +++ b/project_1/project_1.hw/hw_1/hw.xml @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/project_1/project_1.hw/project_1.lpr b/project_1/project_1.hw/project_1.lpr new file mode 100644 index 0000000..e87eed2 --- /dev/null +++ b/project_1/project_1.hw/project_1.lpr @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/project_1/project_1.runs/.jobs/vrs_config_1.xml b/project_1/project_1.runs/.jobs/vrs_config_1.xml new file mode 100644 index 0000000..70148d8 --- /dev/null +++ b/project_1/project_1.runs/.jobs/vrs_config_1.xml @@ -0,0 +1,5 @@ + + + + + diff --git a/project_1/project_1.runs/.jobs/vrs_config_10.xml b/project_1/project_1.runs/.jobs/vrs_config_10.xml new file mode 100644 index 0000000..abc4cab --- /dev/null +++ b/project_1/project_1.runs/.jobs/vrs_config_10.xml @@ -0,0 +1,5 @@ + + + + + diff --git a/project_1/project_1.runs/.jobs/vrs_config_11.xml b/project_1/project_1.runs/.jobs/vrs_config_11.xml new file mode 100644 index 0000000..21be1b4 --- /dev/null +++ b/project_1/project_1.runs/.jobs/vrs_config_11.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/project_1/project_1.runs/.jobs/vrs_config_12.xml b/project_1/project_1.runs/.jobs/vrs_config_12.xml new file mode 100644 index 0000000..c9f690d --- /dev/null +++ b/project_1/project_1.runs/.jobs/vrs_config_12.xml @@ -0,0 +1,5 @@ + + + + + diff --git a/project_1/project_1.runs/.jobs/vrs_config_13.xml b/project_1/project_1.runs/.jobs/vrs_config_13.xml new file mode 100644 index 0000000..70148d8 --- /dev/null +++ b/project_1/project_1.runs/.jobs/vrs_config_13.xml @@ -0,0 +1,5 @@ + + + + + diff --git a/project_1/project_1.runs/.jobs/vrs_config_14.xml b/project_1/project_1.runs/.jobs/vrs_config_14.xml new file mode 100644 index 0000000..abc4cab --- /dev/null +++ b/project_1/project_1.runs/.jobs/vrs_config_14.xml @@ -0,0 +1,5 @@ + + + + + diff --git a/project_1/project_1.runs/.jobs/vrs_config_2.xml b/project_1/project_1.runs/.jobs/vrs_config_2.xml new file mode 100644 index 0000000..abc4cab --- /dev/null +++ b/project_1/project_1.runs/.jobs/vrs_config_2.xml @@ -0,0 +1,5 @@ + + + + + diff --git a/project_1/project_1.runs/.jobs/vrs_config_3.xml b/project_1/project_1.runs/.jobs/vrs_config_3.xml new file mode 100644 index 0000000..c9f690d --- /dev/null +++ b/project_1/project_1.runs/.jobs/vrs_config_3.xml @@ -0,0 +1,5 @@ + + + + + diff --git a/project_1/project_1.runs/.jobs/vrs_config_4.xml b/project_1/project_1.runs/.jobs/vrs_config_4.xml new file mode 100644 index 0000000..70148d8 --- /dev/null +++ b/project_1/project_1.runs/.jobs/vrs_config_4.xml @@ -0,0 +1,5 @@ + + + + + diff --git a/project_1/project_1.runs/.jobs/vrs_config_5.xml b/project_1/project_1.runs/.jobs/vrs_config_5.xml new file mode 100644 index 0000000..70148d8 --- /dev/null +++ b/project_1/project_1.runs/.jobs/vrs_config_5.xml @@ -0,0 +1,5 @@ + + + + + diff --git a/project_1/project_1.runs/.jobs/vrs_config_6.xml b/project_1/project_1.runs/.jobs/vrs_config_6.xml new file mode 100644 index 0000000..abc4cab --- /dev/null +++ b/project_1/project_1.runs/.jobs/vrs_config_6.xml @@ -0,0 +1,5 @@ + + + + + diff --git a/project_1/project_1.runs/.jobs/vrs_config_7.xml b/project_1/project_1.runs/.jobs/vrs_config_7.xml new file mode 100644 index 0000000..a686dfe --- /dev/null +++ b/project_1/project_1.runs/.jobs/vrs_config_7.xml @@ -0,0 +1,5 @@ + + + + + diff --git a/project_1/project_1.runs/.jobs/vrs_config_8.xml b/project_1/project_1.runs/.jobs/vrs_config_8.xml new file mode 100644 index 0000000..70148d8 --- /dev/null +++ b/project_1/project_1.runs/.jobs/vrs_config_8.xml @@ -0,0 +1,5 @@ + + + + + diff --git a/project_1/project_1.runs/.jobs/vrs_config_9.xml b/project_1/project_1.runs/.jobs/vrs_config_9.xml new file mode 100644 index 0000000..70148d8 --- /dev/null +++ b/project_1/project_1.runs/.jobs/vrs_config_9.xml @@ -0,0 +1,5 @@ + + + + + diff --git a/project_1/project_1.runs/impl_1/.Vivado_Implementation.queue.rst b/project_1/project_1.runs/impl_1/.Vivado_Implementation.queue.rst new file mode 100644 index 0000000..e69de29 diff --git a/project_1/project_1.runs/impl_1/.init_design.begin.rst b/project_1/project_1.runs/impl_1/.init_design.begin.rst new file mode 100644 index 0000000..3be34fc --- /dev/null +++ b/project_1/project_1.runs/impl_1/.init_design.begin.rst @@ -0,0 +1,5 @@ + + + + + diff --git a/project_1/project_1.runs/impl_1/.init_design.end.rst b/project_1/project_1.runs/impl_1/.init_design.end.rst new file mode 100644 index 0000000..e69de29 diff --git a/project_1/project_1.runs/impl_1/.opt_design.begin.rst b/project_1/project_1.runs/impl_1/.opt_design.begin.rst new file mode 100644 index 0000000..3be34fc --- /dev/null +++ b/project_1/project_1.runs/impl_1/.opt_design.begin.rst @@ -0,0 +1,5 @@ + + + + + diff --git a/project_1/project_1.runs/impl_1/.opt_design.end.rst b/project_1/project_1.runs/impl_1/.opt_design.end.rst new file mode 100644 index 0000000..e69de29 diff --git a/project_1/project_1.runs/impl_1/.place_design.begin.rst b/project_1/project_1.runs/impl_1/.place_design.begin.rst new file mode 100644 index 0000000..3be34fc --- /dev/null +++ b/project_1/project_1.runs/impl_1/.place_design.begin.rst @@ -0,0 +1,5 @@ + + + + + diff --git a/project_1/project_1.runs/impl_1/.place_design.end.rst b/project_1/project_1.runs/impl_1/.place_design.end.rst new file mode 100644 index 0000000..e69de29 diff --git a/project_1/project_1.runs/impl_1/.route_design.begin.rst b/project_1/project_1.runs/impl_1/.route_design.begin.rst new file mode 100644 index 0000000..3be34fc --- /dev/null +++ b/project_1/project_1.runs/impl_1/.route_design.begin.rst @@ -0,0 +1,5 @@ + + + + + diff --git a/project_1/project_1.runs/impl_1/.route_design.end.rst b/project_1/project_1.runs/impl_1/.route_design.end.rst new file mode 100644 index 0000000..e69de29 diff --git a/project_1/project_1.runs/impl_1/.vivado.begin.rst b/project_1/project_1.runs/impl_1/.vivado.begin.rst new file mode 100644 index 0000000..7e7865e --- /dev/null +++ b/project_1/project_1.runs/impl_1/.vivado.begin.rst @@ -0,0 +1,5 @@ + + + + + diff --git a/project_1/project_1.runs/impl_1/.vivado.end.rst b/project_1/project_1.runs/impl_1/.vivado.end.rst new file mode 100644 index 0000000..e69de29 diff --git a/project_1/project_1.runs/impl_1/ISEWrap.js b/project_1/project_1.runs/impl_1/ISEWrap.js new file mode 100755 index 0000000..8284d2d --- /dev/null +++ b/project_1/project_1.runs/impl_1/ISEWrap.js @@ -0,0 +1,244 @@ +// +// Vivado(TM) +// ISEWrap.js: Vivado Runs Script for WSH 5.1/5.6 +// Copyright 1986-1999, 2001-2013,2015 Xilinx, Inc. All Rights Reserved. +// + +// GLOBAL VARIABLES +var ISEShell = new ActiveXObject( "WScript.Shell" ); +var ISEFileSys = new ActiveXObject( "Scripting.FileSystemObject" ); +var ISERunDir = ""; +var ISELogFile = "runme.log"; +var ISELogFileStr = null; +var ISELogEcho = true; +var ISEOldVersionWSH = false; + + + +// BOOTSTRAP +ISEInit(); + + + +// +// ISE FUNCTIONS +// +function ISEInit() { + + // 1. RUN DIR setup + var ISEScrFP = WScript.ScriptFullName; + var ISEScrN = WScript.ScriptName; + ISERunDir = + ISEScrFP.substr( 0, ISEScrFP.length - ISEScrN.length - 1 ); + + // 2. LOG file setup + ISELogFileStr = ISEOpenFile( ISELogFile ); + + // 3. LOG echo? + var ISEScriptArgs = WScript.Arguments; + for ( var loopi=0; loopi> " + ISELogFile + " 2>&1"; + ISEExitCode = ISEShell.Run( ISECmdLine, 0, true ); + ISELogFileStr = ISEOpenFile( ISELogFile ); + + } else { // WSH 5.6 + + // LAUNCH! + ISEShell.CurrentDirectory = ISERunDir; + + // Redirect STDERR to STDOUT + ISECmdLine = "%comspec% /c " + ISECmdLine + " 2>&1"; + var ISEProcess = ISEShell.Exec( ISECmdLine ); + + // BEGIN file creation + var ISENetwork = WScript.CreateObject( "WScript.Network" ); + var ISEHost = ISENetwork.ComputerName; + var ISEUser = ISENetwork.UserName; + var ISEPid = ISEProcess.ProcessID; + var ISEBeginFile = ISEOpenFile( "." + ISEStep + ".begin.rst" ); + ISEBeginFile.WriteLine( "" ); + ISEBeginFile.WriteLine( "" ); + ISEBeginFile.WriteLine( " " ); + ISEBeginFile.WriteLine( " " ); + ISEBeginFile.WriteLine( "" ); + ISEBeginFile.Close(); + + var ISEOutStr = ISEProcess.StdOut; + var ISEErrStr = ISEProcess.StdErr; + + // WAIT for ISEStep to finish + while ( ISEProcess.Status == 0 ) { + + // dump stdout then stderr - feels a little arbitrary + while ( !ISEOutStr.AtEndOfStream ) { + ISEStdOut( ISEOutStr.ReadLine() ); + } + + WScript.Sleep( 100 ); + } + + ISEExitCode = ISEProcess.ExitCode; + } + + ISELogFileStr.Close(); + + // END/ERROR file creation + if ( ISEExitCode != 0 ) { + ISETouchFile( ISEStep, "error" ); + + } else { + ISETouchFile( ISEStep, "end" ); + } + + return ISEExitCode; +} + + +// +// UTILITIES +// +function ISEStdOut( ISELine ) { + + ISELogFileStr.WriteLine( ISELine ); + + if ( ISELogEcho ) { + WScript.StdOut.WriteLine( ISELine ); + } +} + +function ISEStdErr( ISELine ) { + + ISELogFileStr.WriteLine( ISELine ); + + if ( ISELogEcho ) { + WScript.StdErr.WriteLine( ISELine ); + } +} + +function ISETouchFile( ISERoot, ISEStatus ) { + + var ISETFile = + ISEOpenFile( "." + ISERoot + "." + ISEStatus + ".rst" ); + ISETFile.Close(); +} + +function ISEOpenFile( ISEFilename ) { + + // This function has been updated to deal with a problem seen in CR #870871. + // In that case the user runs a script that runs impl_1, and then turns around + // and runs impl_1 -to_step write_bitstream. That second run takes place in + // the same directory, which means we may hit some of the same files, and in + // particular, we will open the runme.log file. Even though this script closes + // the file (now), we see cases where a subsequent attempt to open the file + // fails. Perhaps the OS is slow to release the lock, or the disk comes into + // play? In any case, we try to work around this by first waiting if the file + // is already there for an arbitrary 5 seconds. Then we use a try-catch block + // and try to open the file 10 times with a one second delay after each attempt. + // Again, 10 is arbitrary. But these seem to stop the hang in CR #870871. + // If there is an unrecognized exception when trying to open the file, we output + // an error message and write details to an exception.log file. + var ISEFullPath = ISERunDir + "/" + ISEFilename; + if (ISEFileSys.FileExists(ISEFullPath)) { + // File is already there. This could be a problem. Wait in case it is still in use. + WScript.Sleep(5000); + } + var i; + for (i = 0; i < 10; ++i) { + try { + return ISEFileSys.OpenTextFile(ISEFullPath, 8, true); + } catch (exception) { + var error_code = exception.number & 0xFFFF; // The other bits are a facility code. + if (error_code == 52) { // 52 is bad file name or number. + // Wait a second and try again. + WScript.Sleep(1000); + continue; + } else { + WScript.StdErr.WriteLine("ERROR: Exception caught trying to open file " + ISEFullPath); + var exceptionFilePath = ISERunDir + "/exception.log"; + if (!ISEFileSys.FileExists(exceptionFilePath)) { + WScript.StdErr.WriteLine("See file " + exceptionFilePath + " for details."); + var exceptionFile = ISEFileSys.OpenTextFile(exceptionFilePath, 8, true); + exceptionFile.WriteLine("ERROR: Exception caught trying to open file " + ISEFullPath); + exceptionFile.WriteLine("\tException name: " + exception.name); + exceptionFile.WriteLine("\tException error code: " + error_code); + exceptionFile.WriteLine("\tException message: " + exception.message); + exceptionFile.Close(); + } + throw exception; + } + } + } + // If we reached this point, we failed to open the file after 10 attempts. + // We need to error out. + WScript.StdErr.WriteLine("ERROR: Failed to open file " + ISEFullPath); + WScript.Quit(1); +} diff --git a/project_1/project_1.runs/impl_1/ISEWrap.sh b/project_1/project_1.runs/impl_1/ISEWrap.sh new file mode 100755 index 0000000..e1a8f5d --- /dev/null +++ b/project_1/project_1.runs/impl_1/ISEWrap.sh @@ -0,0 +1,63 @@ +#!/bin/sh + +# +# Vivado(TM) +# ISEWrap.sh: Vivado Runs Script for UNIX +# Copyright 1986-1999, 2001-2013 Xilinx, Inc. All Rights Reserved. +# + +HD_LOG=$1 +shift + +# CHECK for a STOP FILE +if [ -f .stop.rst ] +then +echo "" >> $HD_LOG +echo "*** Halting run - EA reset detected ***" >> $HD_LOG +echo "" >> $HD_LOG +exit 1 +fi + +ISE_STEP=$1 +shift + +# WRITE STEP HEADER to LOG +echo "" >> $HD_LOG +echo "*** Running $ISE_STEP" >> $HD_LOG +echo " with args $@" >> $HD_LOG +echo "" >> $HD_LOG + +# LAUNCH! +$ISE_STEP "$@" >> $HD_LOG 2>&1 & + +# BEGIN file creation +ISE_PID=$! +if [ X != X$HOSTNAME ] +then +ISE_HOST=$HOSTNAME #bash +else +ISE_HOST=$HOST #csh +fi +ISE_USER=$USER +ISE_BEGINFILE=.$ISE_STEP.begin.rst +/bin/touch $ISE_BEGINFILE +echo "" >> $ISE_BEGINFILE +echo "" >> $ISE_BEGINFILE +echo " " >> $ISE_BEGINFILE +echo " " >> $ISE_BEGINFILE +echo "" >> $ISE_BEGINFILE + +# WAIT for ISEStep to finish +wait $ISE_PID + +# END/ERROR file creation +RETVAL=$? +if [ $RETVAL -eq 0 ] +then + /bin/touch .$ISE_STEP.end.rst +else + /bin/touch .$ISE_STEP.error.rst +fi + +exit $RETVAL + diff --git a/project_1/project_1.runs/impl_1/gen_run.xml b/project_1/project_1.runs/impl_1/gen_run.xml new file mode 100644 index 0000000..8106c6f --- /dev/null +++ b/project_1/project_1.runs/impl_1/gen_run.xml @@ -0,0 +1,109 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/project_1/project_1.runs/impl_1/htr.txt b/project_1/project_1.runs/impl_1/htr.txt new file mode 100644 index 0000000..7801d7e --- /dev/null +++ b/project_1/project_1.runs/impl_1/htr.txt @@ -0,0 +1,9 @@ +# +# Vivado(TM) +# htr.txt: a Vivado-generated description of how-to-repeat the +# the basic steps of a run. Note that runme.bat/sh needs +# to be invoked for Vivado to track run status. +# Copyright 1986-2017 Xilinx, Inc. All Rights Reserved. +# + +vivado -log lab0_wrapper.vdi -applog -m64 -product Vivado -messageDb vivado.pb -mode batch -source lab0_wrapper.tcl -notrace diff --git a/project_1/project_1.runs/impl_1/hw_wrapper_23797.backup.vdi b/project_1/project_1.runs/impl_1/hw_wrapper_23797.backup.vdi new file mode 100644 index 0000000..4b4fe8b --- /dev/null +++ b/project_1/project_1.runs/impl_1/hw_wrapper_23797.backup.vdi @@ -0,0 +1,370 @@ +#----------------------------------------------------------- +# Vivado v2017.2 (64-bit) +# SW Build 1909853 on Thu Jun 15 18:39:10 MDT 2017 +# IP Build 1909766 on Thu Jun 15 19:58:00 MDT 2017 +# Start of session at: Wed Sep 27 19:10:58 2017 +# Process ID: 23797 +# Current directory: /home/jspear/Development/School/Comp_Arc/Lab0/project_1/project_1.runs/impl_1 +# Command line: vivado -log hw_wrapper.vdi -applog -product Vivado -messageDb vivado.pb -mode batch -source hw_wrapper.tcl -notrace +# Log file: /home/jspear/Development/School/Comp_Arc/Lab0/project_1/project_1.runs/impl_1/hw_wrapper.vdi +# Journal file: /home/jspear/Development/School/Comp_Arc/Lab0/project_1/project_1.runs/impl_1/vivado.jou +#----------------------------------------------------------- +source hw_wrapper.tcl -notrace +Design is defaulting to srcset: sources_1 +Design is defaulting to constrset: constrs_1 +INFO: [Netlist 29-17] Analyzing 5 Unisim elements for replacement +INFO: [Netlist 29-28] Unisim Transformation completed in 0 CPU seconds +INFO: [Project 1-479] Netlist was created with Vivado 2017.2 +INFO: [Device 21-403] Loading part xc7z010clg400-1 +INFO: [Project 1-570] Preparing netlist for logic optimization +Parsing XDC File [/home/jspear/Development/School/Comp_Arc/Lab0/ZYBO_Master.xdc] +Finished Parsing XDC File [/home/jspear/Development/School/Comp_Arc/Lab0/ZYBO_Master.xdc] +INFO: [Opt 31-138] Pushed 0 inverter(s) to 0 load pin(s). +INFO: [Project 1-111] Unisim Transformation Summary: +No Unisim elements were transformed. + +Command: opt_design +Attempting to get a license for feature 'Implementation' and/or device 'xc7z010-clg400' +INFO: [Common 17-349] Got license for feature 'Implementation' and/or device 'xc7z010-clg400' +Running DRC as a precondition to command opt_design + +Starting DRC Task +Command: report_drc (run_mandatory_drcs) for: opt_checks +INFO: [DRC 23-27] Running DRC with 4 threads +report_drc (run_mandatory_drcs) completed successfully +INFO: [Project 1-461] DRC finished with 0 Errors +INFO: [Project 1-462] Please refer to the DRC report (report_drc) for more information. + +Time (s): cpu = 00:00:01 ; elapsed = 00:00:00.45 . Memory (MB): peak = 1354.199 ; gain = 45.016 ; free physical = 8028 ; free virtual = 19485 +INFO: [Timing 38-35] Done setting XDC timing constraints. + +Starting Logic Optimization Task + +Phase 1 Retarget +INFO: [Opt 31-138] Pushed 0 inverter(s) to 0 load pin(s). +INFO: [Opt 31-49] Retargeted 0 cell(s). +Phase 1 Retarget | Checksum: 20895cedf + +Time (s): cpu = 00:00:00 ; elapsed = 00:00:00 . Memory (MB): peak = 1758.691 ; gain = 0.000 ; free physical = 7579 ; free virtual = 19074 +INFO: [Opt 31-389] Phase Retarget created 0 cells and removed 0 cells + +Phase 2 Constant propagation +INFO: [Opt 31-138] Pushed 0 inverter(s) to 0 load pin(s). +Phase 2 Constant propagation | Checksum: 20895cedf + +Time (s): cpu = 00:00:00 ; elapsed = 00:00:00 . Memory (MB): peak = 1758.691 ; gain = 0.000 ; free physical = 7579 ; free virtual = 19074 +INFO: [Opt 31-389] Phase Constant propagation created 0 cells and removed 0 cells + +Phase 3 Sweep +Phase 3 Sweep | Checksum: 20895cedf + +Time (s): cpu = 00:00:00 ; elapsed = 00:00:00.01 . Memory (MB): peak = 1758.691 ; gain = 0.000 ; free physical = 7579 ; free virtual = 19074 +INFO: [Opt 31-389] Phase Sweep created 0 cells and removed 0 cells + +Phase 4 BUFG optimization +Phase 4 BUFG optimization | Checksum: 20895cedf + +Time (s): cpu = 00:00:00 ; elapsed = 00:00:00.01 . Memory (MB): peak = 1758.691 ; gain = 0.000 ; free physical = 7579 ; free virtual = 19074 +INFO: [Opt 31-389] Phase BUFG optimization created 0 cells and removed 0 cells + +Phase 5 Shift Register Optimization +Phase 5 Shift Register Optimization | Checksum: 20895cedf + +Time (s): cpu = 00:00:00 ; elapsed = 00:00:00.01 . Memory (MB): peak = 1758.691 ; gain = 0.000 ; free physical = 7579 ; free virtual = 19074 +INFO: [Opt 31-389] Phase Shift Register Optimization created 0 cells and removed 0 cells + +Starting Connectivity Check Task + +Time (s): cpu = 00:00:00.01 ; elapsed = 00:00:00 . Memory (MB): peak = 1758.691 ; gain = 0.000 ; free physical = 7579 ; free virtual = 19074 +Ending Logic Optimization Task | Checksum: 20895cedf + +Time (s): cpu = 00:00:00.01 ; elapsed = 00:00:00.01 . Memory (MB): peak = 1758.691 ; gain = 0.000 ; free physical = 7579 ; free virtual = 19074 + +Starting Power Optimization Task +INFO: [Pwropt 34-132] Skipping clock gating for clocks with a period < 2.00 ns. +Ending Power Optimization Task | Checksum: 20895cedf + +Time (s): cpu = 00:00:00 ; elapsed = 00:00:00.01 . Memory (MB): peak = 1758.691 ; gain = 0.000 ; free physical = 7580 ; free virtual = 19074 +21 Infos, 0 Warnings, 0 Critical Warnings and 0 Errors encountered. +opt_design completed successfully +opt_design: Time (s): cpu = 00:00:08 ; elapsed = 00:00:08 . Memory (MB): peak = 1758.691 ; gain = 449.508 ; free physical = 7579 ; free virtual = 19074 +Writing placer database... +Writing XDEF routing. +Writing XDEF routing logical nets. +Writing XDEF routing special nets. +Write XDEF Complete: Time (s): cpu = 00:00:00.01 ; elapsed = 00:00:00.01 . Memory (MB): peak = 1782.703 ; gain = 0.000 ; free physical = 7578 ; free virtual = 19074 +INFO: [Common 17-1381] The checkpoint '/home/jspear/Development/School/Comp_Arc/Lab0/project_1/project_1.runs/impl_1/hw_wrapper_opt.dcp' has been generated. +Command: report_drc -file hw_wrapper_drc_opted.rpt +INFO: [DRC 23-27] Running DRC with 4 threads +INFO: [Coretcl 2-168] The results of DRC are in file /home/jspear/Development/School/Comp_Arc/Lab0/project_1/project_1.runs/impl_1/hw_wrapper_drc_opted.rpt. +report_drc completed successfully +INFO: [Chipscope 16-241] No debug cores found in the current design. +Before running the implement_debug_core command, either use the Set Up Debug wizard (GUI mode) +or use the create_debug_core and connect_debug_core Tcl commands to insert debug cores into the design. +Command: place_design +Attempting to get a license for feature 'Implementation' and/or device 'xc7z010-clg400' +INFO: [Common 17-349] Got license for feature 'Implementation' and/or device 'xc7z010-clg400' +Command: report_drc (run_mandatory_drcs) for: incr_eco_checks +INFO: [DRC 23-27] Running DRC with 4 threads +report_drc (run_mandatory_drcs) completed successfully +INFO: [Vivado_Tcl 4-198] DRC finished with 0 Errors +INFO: [Vivado_Tcl 4-199] Please refer to the DRC report (report_drc) for more information. +Running DRC as a precondition to command place_design +Command: report_drc (run_mandatory_drcs) for: placer_checks +INFO: [DRC 23-27] Running DRC with 4 threads +report_drc (run_mandatory_drcs) completed successfully +INFO: [Vivado_Tcl 4-198] DRC finished with 0 Errors +INFO: [Vivado_Tcl 4-199] Please refer to the DRC report (report_drc) for more information. + +Starting Placer Task +INFO: [Place 30-611] Multithreading enabled for place_design using a maximum of 4 CPUs + +Phase 1 Placer Initialization + +Phase 1.1 Placer Initialization Netlist Sorting +Netlist sorting complete. Time (s): cpu = 00:00:00 ; elapsed = 00:00:00 . Memory (MB): peak = 1790.707 ; gain = 0.000 ; free physical = 7562 ; free virtual = 19057 +Phase 1.1 Placer Initialization Netlist Sorting | Checksum: 13d05ad9a + +Time (s): cpu = 00:00:00.01 ; elapsed = 00:00:00.02 . Memory (MB): peak = 1790.707 ; gain = 0.000 ; free physical = 7562 ; free virtual = 19057 +Netlist sorting complete. Time (s): cpu = 00:00:00 ; elapsed = 00:00:00 . Memory (MB): peak = 1790.707 ; gain = 0.000 ; free physical = 7562 ; free virtual = 19057 + +Phase 1.2 IO Placement/ Clock Placement/ Build Placer Device +INFO: [Timing 38-35] Done setting XDC timing constraints. +Phase 1.2 IO Placement/ Clock Placement/ Build Placer Device | Checksum: e8dbbce7 + +Time (s): cpu = 00:00:00.40 ; elapsed = 00:00:00.26 . Memory (MB): peak = 1790.707 ; gain = 0.000 ; free physical = 7574 ; free virtual = 19073 + +Phase 1.3 Build Placer Netlist Model +Phase 1.3 Build Placer Netlist Model | Checksum: ea3f9807 + +Time (s): cpu = 00:00:00.41 ; elapsed = 00:00:00.27 . Memory (MB): peak = 1790.707 ; gain = 0.000 ; free physical = 7574 ; free virtual = 19073 + +Phase 1.4 Constrain Clocks/Macros +Phase 1.4 Constrain Clocks/Macros | Checksum: ea3f9807 + +Time (s): cpu = 00:00:00.41 ; elapsed = 00:00:00.27 . Memory (MB): peak = 1790.707 ; gain = 0.000 ; free physical = 7574 ; free virtual = 19073 +Phase 1 Placer Initialization | Checksum: ea3f9807 + +Time (s): cpu = 00:00:00.41 ; elapsed = 00:00:00.27 . Memory (MB): peak = 1790.707 ; gain = 0.000 ; free physical = 7574 ; free virtual = 19073 + +Phase 2 Global Placement +WARNING: [Place 46-30] place_design is not in timing mode. Skip physical synthesis in placer +Phase 2 Global Placement | Checksum: 1e1587abc + +Time (s): cpu = 00:00:00.66 ; elapsed = 00:00:00.38 . Memory (MB): peak = 1838.730 ; gain = 48.023 ; free physical = 7570 ; free virtual = 19071 + +Phase 3 Detail Placement + +Phase 3.1 Commit Multi Column Macros +Phase 3.1 Commit Multi Column Macros | Checksum: 1e1587abc + +Time (s): cpu = 00:00:00.67 ; elapsed = 00:00:00.38 . Memory (MB): peak = 1838.730 ; gain = 48.023 ; free physical = 7570 ; free virtual = 19071 + +Phase 3.2 Commit Most Macros & LUTRAMs +Phase 3.2 Commit Most Macros & LUTRAMs | Checksum: 178d50758 + +Time (s): cpu = 00:00:00.67 ; elapsed = 00:00:00.38 . Memory (MB): peak = 1838.730 ; gain = 48.023 ; free physical = 7570 ; free virtual = 19071 + +Phase 3.3 Area Swap Optimization +Phase 3.3 Area Swap Optimization | Checksum: 1e1587abc + +Time (s): cpu = 00:00:00.69 ; elapsed = 00:00:00.39 . Memory (MB): peak = 1838.730 ; gain = 48.023 ; free physical = 7570 ; free virtual = 19071 + +Phase 3.4 Pipeline Register Optimization +Phase 3.4 Pipeline Register Optimization | Checksum: 1e1587abc + +Time (s): cpu = 00:00:00.69 ; elapsed = 00:00:00.39 . Memory (MB): peak = 1838.730 ; gain = 48.023 ; free physical = 7570 ; free virtual = 19071 + +Phase 3.5 Small Shape Detail Placement +Phase 3.5 Small Shape Detail Placement | Checksum: 1ee09d3c8 + +Time (s): cpu = 00:00:00.75 ; elapsed = 00:00:00.43 . Memory (MB): peak = 1838.730 ; gain = 48.023 ; free physical = 7569 ; free virtual = 19069 + +Phase 3.6 Re-assign LUT pins +Phase 3.6 Re-assign LUT pins | Checksum: 1ee09d3c8 + +Time (s): cpu = 00:00:00.75 ; elapsed = 00:00:00.43 . Memory (MB): peak = 1838.730 ; gain = 48.023 ; free physical = 7569 ; free virtual = 19069 + +Phase 3.7 Pipeline Register Optimization +Phase 3.7 Pipeline Register Optimization | Checksum: 1ee09d3c8 + +Time (s): cpu = 00:00:00.75 ; elapsed = 00:00:00.43 . Memory (MB): peak = 1838.730 ; gain = 48.023 ; free physical = 7569 ; free virtual = 19069 +Phase 3 Detail Placement | Checksum: 1ee09d3c8 + +Time (s): cpu = 00:00:00.75 ; elapsed = 00:00:00.43 . Memory (MB): peak = 1838.730 ; gain = 48.023 ; free physical = 7569 ; free virtual = 19069 + +Phase 4 Post Placement Optimization and Clean-Up + +Phase 4.1 Post Commit Optimization +Phase 4.1 Post Commit Optimization | Checksum: 1ee09d3c8 + +Time (s): cpu = 00:00:00.75 ; elapsed = 00:00:00.43 . Memory (MB): peak = 1838.730 ; gain = 48.023 ; free physical = 7569 ; free virtual = 19069 + +Phase 4.2 Post Placement Cleanup +Phase 4.2 Post Placement Cleanup | Checksum: 1ee09d3c8 + +Time (s): cpu = 00:00:00.76 ; elapsed = 00:00:00.44 . Memory (MB): peak = 1838.730 ; gain = 48.023 ; free physical = 7569 ; free virtual = 19069 + +Phase 4.3 Placer Reporting +Phase 4.3 Placer Reporting | Checksum: 1ee09d3c8 + +Time (s): cpu = 00:00:00.77 ; elapsed = 00:00:00.44 . Memory (MB): peak = 1838.730 ; gain = 48.023 ; free physical = 7569 ; free virtual = 19069 + +Phase 4.4 Final Placement Cleanup +Phase 4.4 Final Placement Cleanup | Checksum: 1ee09d3c8 + +Time (s): cpu = 00:00:00.77 ; elapsed = 00:00:00.44 . Memory (MB): peak = 1838.730 ; gain = 48.023 ; free physical = 7569 ; free virtual = 19069 +Phase 4 Post Placement Optimization and Clean-Up | Checksum: 1ee09d3c8 + +Time (s): cpu = 00:00:00.77 ; elapsed = 00:00:00.44 . Memory (MB): peak = 1838.730 ; gain = 48.023 ; free physical = 7569 ; free virtual = 19069 +Ending Placer Task | Checksum: 189ed1a2a + +Time (s): cpu = 00:00:00.77 ; elapsed = 00:00:00.44 . Memory (MB): peak = 1838.730 ; gain = 48.023 ; free physical = 7571 ; free virtual = 19071 +34 Infos, 1 Warnings, 0 Critical Warnings and 0 Errors encountered. +place_design completed successfully +Writing placer database... +Writing XDEF routing. +Writing XDEF routing logical nets. +Writing XDEF routing special nets. +Write XDEF Complete: Time (s): cpu = 00:00:00.01 ; elapsed = 00:00:00.02 . Memory (MB): peak = 1838.730 ; gain = 0.000 ; free physical = 7571 ; free virtual = 19073 +INFO: [Common 17-1381] The checkpoint '/home/jspear/Development/School/Comp_Arc/Lab0/project_1/project_1.runs/impl_1/hw_wrapper_placed.dcp' has been generated. +report_io: Time (s): cpu = 00:00:00.11 ; elapsed = 00:00:00.13 . Memory (MB): peak = 1838.730 ; gain = 0.000 ; free physical = 7562 ; free virtual = 19063 +report_utilization: Time (s): cpu = 00:00:00.08 ; elapsed = 00:00:00.10 . Memory (MB): peak = 1838.730 ; gain = 0.000 ; free physical = 7568 ; free virtual = 19069 +report_control_sets: Time (s): cpu = 00:00:00.06 ; elapsed = 00:00:00.09 . Memory (MB): peak = 1838.730 ; gain = 0.000 ; free physical = 7568 ; free virtual = 19069 +Command: route_design +Attempting to get a license for feature 'Implementation' and/or device 'xc7z010-clg400' +INFO: [Common 17-349] Got license for feature 'Implementation' and/or device 'xc7z010-clg400' +Running DRC as a precondition to command route_design +Command: report_drc (run_mandatory_drcs) for: router_checks +INFO: [DRC 23-27] Running DRC with 4 threads +report_drc (run_mandatory_drcs) completed successfully +INFO: [Vivado_Tcl 4-198] DRC finished with 0 Errors +INFO: [Vivado_Tcl 4-199] Please refer to the DRC report (report_drc) for more information. + + +Starting Routing Task +INFO: [Route 35-254] Multithreading enabled for route_design using a maximum of 4 CPUs +Checksum: PlaceDB: cfdf8402 ConstDB: 0 ShapeSum: ba0d9628 RouteDB: 0 + +Phase 1 Build RT Design +Phase 1 Build RT Design | Checksum: 8e697245 + +Time (s): cpu = 00:00:09 ; elapsed = 00:00:08 . Memory (MB): peak = 1884.723 ; gain = 45.992 ; free physical = 7515 ; free virtual = 19003 + +Phase 2 Router Initialization +INFO: [Route 35-64] No timing constraints were detected. The router will operate in resource-optimization mode. + +Phase 2.1 Fix Topology Constraints +Phase 2.1 Fix Topology Constraints | Checksum: 8e697245 + +Time (s): cpu = 00:00:09 ; elapsed = 00:00:08 . Memory (MB): peak = 1898.723 ; gain = 59.992 ; free physical = 7500 ; free virtual = 18989 + +Phase 2.2 Pre Route Cleanup +Phase 2.2 Pre Route Cleanup | Checksum: 8e697245 + +Time (s): cpu = 00:00:09 ; elapsed = 00:00:08 . Memory (MB): peak = 1898.723 ; gain = 59.992 ; free physical = 7500 ; free virtual = 18989 + Number of Nodes with overlaps = 0 +Phase 2 Router Initialization | Checksum: c2ecbd17 + +Time (s): cpu = 00:00:09 ; elapsed = 00:00:08 . Memory (MB): peak = 1906.723 ; gain = 67.992 ; free physical = 7495 ; free virtual = 18983 + +Phase 3 Initial Routing + Number of Nodes with overlaps = 0 +Phase 3 Initial Routing | Checksum: a817c05e + +Time (s): cpu = 00:00:10 ; elapsed = 00:00:08 . Memory (MB): peak = 1906.723 ; gain = 67.992 ; free physical = 7497 ; free virtual = 18986 + +Phase 4 Rip-up And Reroute + +Phase 4.1 Global Iteration 0 +Phase 4.1 Global Iteration 0 | Checksum: a817c05e + +Time (s): cpu = 00:00:10 ; elapsed = 00:00:08 . Memory (MB): peak = 1906.723 ; gain = 67.992 ; free physical = 7497 ; free virtual = 18986 +Phase 4 Rip-up And Reroute | Checksum: a817c05e + +Time (s): cpu = 00:00:10 ; elapsed = 00:00:08 . Memory (MB): peak = 1906.723 ; gain = 67.992 ; free physical = 7497 ; free virtual = 18986 + +Phase 5 Delay and Skew Optimization +Phase 5 Delay and Skew Optimization | Checksum: a817c05e + +Time (s): cpu = 00:00:10 ; elapsed = 00:00:08 . Memory (MB): peak = 1906.723 ; gain = 67.992 ; free physical = 7497 ; free virtual = 18986 + +Phase 6 Post Hold Fix + +Phase 6.1 Hold Fix Iter +Phase 6.1 Hold Fix Iter | Checksum: a817c05e + +Time (s): cpu = 00:00:10 ; elapsed = 00:00:08 . Memory (MB): peak = 1906.723 ; gain = 67.992 ; free physical = 7497 ; free virtual = 18986 +Phase 6 Post Hold Fix | Checksum: a817c05e + +Time (s): cpu = 00:00:10 ; elapsed = 00:00:08 . Memory (MB): peak = 1906.723 ; gain = 67.992 ; free physical = 7497 ; free virtual = 18986 + +Phase 7 Route finalize + +Router Utilization Summary + Global Vertical Routing Utilization = 0.0277309 % + Global Horizontal Routing Utilization = 0.00505515 % + Routable Net Status* + *Does not include unroutable nets such as driverless and loadless. + Run report_route_status for detailed report. + Number of Failed Nets = 0 + Number of Unrouted Nets = 0 + Number of Partially Routed Nets = 0 + Number of Node Overlaps = 0 + +Congestion Report +North Dir 1x1 Area, Max Cong = 16.2162%, No Congested Regions. +South Dir 1x1 Area, Max Cong = 16.2162%, No Congested Regions. +East Dir 1x1 Area, Max Cong = 2.94118%, No Congested Regions. +West Dir 1x1 Area, Max Cong = 4.41176%, No Congested Regions. +Phase 7 Route finalize | Checksum: a817c05e + +Time (s): cpu = 00:00:10 ; elapsed = 00:00:08 . Memory (MB): peak = 1906.723 ; gain = 67.992 ; free physical = 7497 ; free virtual = 18986 + +Phase 8 Verifying routed nets + + Verification completed successfully +Phase 8 Verifying routed nets | Checksum: a817c05e + +Time (s): cpu = 00:00:10 ; elapsed = 00:00:08 . Memory (MB): peak = 1908.723 ; gain = 69.992 ; free physical = 7496 ; free virtual = 18985 + +Phase 9 Depositing Routes +Phase 9 Depositing Routes | Checksum: a817c05e + +Time (s): cpu = 00:00:10 ; elapsed = 00:00:08 . Memory (MB): peak = 1908.723 ; gain = 69.992 ; free physical = 7496 ; free virtual = 18985 +INFO: [Route 35-16] Router Completed Successfully + +Time (s): cpu = 00:00:10 ; elapsed = 00:00:08 . Memory (MB): peak = 1908.723 ; gain = 69.992 ; free physical = 7512 ; free virtual = 19000 + +Routing Is Done. +42 Infos, 1 Warnings, 0 Critical Warnings and 0 Errors encountered. +route_design completed successfully +route_design: Time (s): cpu = 00:00:11 ; elapsed = 00:00:09 . Memory (MB): peak = 1934.754 ; gain = 96.023 ; free physical = 7512 ; free virtual = 19000 +Writing placer database... +Writing XDEF routing. +Writing XDEF routing logical nets. +Writing XDEF routing special nets. +Write XDEF Complete: Time (s): cpu = 00:00:00 ; elapsed = 00:00:00.01 . Memory (MB): peak = 1934.754 ; gain = 0.000 ; free physical = 7512 ; free virtual = 19002 +INFO: [Common 17-1381] The checkpoint '/home/jspear/Development/School/Comp_Arc/Lab0/project_1/project_1.runs/impl_1/hw_wrapper_routed.dcp' has been generated. +Command: report_drc -file hw_wrapper_drc_routed.rpt -pb hw_wrapper_drc_routed.pb -rpx hw_wrapper_drc_routed.rpx +INFO: [DRC 23-27] Running DRC with 4 threads +INFO: [Coretcl 2-168] The results of DRC are in file /home/jspear/Development/School/Comp_Arc/Lab0/project_1/project_1.runs/impl_1/hw_wrapper_drc_routed.rpt. +report_drc completed successfully +Command: report_methodology -file hw_wrapper_methodology_drc_routed.rpt -rpx hw_wrapper_methodology_drc_routed.rpx +INFO: [Timing 38-35] Done setting XDC timing constraints. +INFO: [DRC 23-133] Running Methodology with 4 threads +INFO: [Coretcl 2-1520] The results of Report Methodology are in file /home/jspear/Development/School/Comp_Arc/Lab0/project_1/project_1.runs/impl_1/hw_wrapper_methodology_drc_routed.rpt. +report_methodology completed successfully +Command: report_power -file hw_wrapper_power_routed.rpt -pb hw_wrapper_power_summary_routed.pb -rpx hw_wrapper_power_routed.rpx +WARNING: [Power 33-232] No user defined clocks were found in the design! +Resolution: Please specify clocks using create_clock/create_generated_clock for sequential elements. For pure combinatorial circuits, please specify a virtual clock, otherwise the vectorless estimation might be inaccurate +INFO: [Timing 38-35] Done setting XDC timing constraints. +Running Vector-less Activity Propagation... + +Finished Running Vector-less Activity Propagation +49 Infos, 2 Warnings, 0 Critical Warnings and 0 Errors encountered. +report_power completed successfully +INFO: [Timing 38-91] UpdateTimingParams: Speed grade: -1, Delay Type: min_max. +INFO: [Timing 38-191] Multithreading enabled for timing update using a maximum of 4 CPUs +WARNING: [Timing 38-313] There are no user specified timing constraints. Timing constraints are needed for proper timing analysis. +INFO: [Common 17-206] Exiting Vivado at Wed Sep 27 19:11:32 2017... diff --git a/project_1/project_1.runs/impl_1/init_design.pb b/project_1/project_1.runs/impl_1/init_design.pb new file mode 100644 index 0000000..8248afa Binary files /dev/null and b/project_1/project_1.runs/impl_1/init_design.pb differ diff --git a/project_1/project_1.runs/impl_1/lab0_wrapper.tcl b/project_1/project_1.runs/impl_1/lab0_wrapper.tcl new file mode 100644 index 0000000..f935c9f --- /dev/null +++ b/project_1/project_1.runs/impl_1/lab0_wrapper.tcl @@ -0,0 +1,132 @@ +proc start_step { step } { + set stopFile ".stop.rst" + if {[file isfile .stop.rst]} { + puts "" + puts "*** Halting run - EA reset detected ***" + puts "" + puts "" + return -code error + } + set beginFile ".$step.begin.rst" + set platform "$::tcl_platform(platform)" + set user "$::tcl_platform(user)" + set pid [pid] + set host "" + if { [string equal $platform unix] } { + if { [info exist ::env(HOSTNAME)] } { + set host $::env(HOSTNAME) + } + } else { + if { [info exist ::env(COMPUTERNAME)] } { + set host $::env(COMPUTERNAME) + } + } + set ch [open $beginFile w] + puts $ch "" + puts $ch "" + puts $ch " " + puts $ch " " + puts $ch "" + close $ch +} + +proc end_step { step } { + set endFile ".$step.end.rst" + set ch [open $endFile w] + close $ch +} + +proc step_failed { step } { + set endFile ".$step.error.rst" + set ch [open $endFile w] + close $ch +} + +set_msg_config -id {Synth 8-256} -limit 10000 +set_msg_config -id {Synth 8-638} -limit 10000 + +start_step init_design +set ACTIVE_STEP init_design +set rc [catch { + create_msg_db init_design.pb + set_param xicom.use_bs_reader 1 + create_project -in_memory -part xc7z010clg400-1 + set_property design_mode GateLvl [current_fileset] + set_param project.singleFileAddWarning.threshold 0 + set_property webtalk.parent_dir /home/jspear/Development/School/Comp_Arc/Lab0/project_1/project_1.cache/wt [current_project] + set_property parent.project_path /home/jspear/Development/School/Comp_Arc/Lab0/project_1/project_1.xpr [current_project] + set_property ip_output_repo /home/jspear/Development/School/Comp_Arc/Lab0/project_1/project_1.cache/ip [current_project] + set_property ip_cache_permissions {read write} [current_project] + add_files -quiet /home/jspear/Development/School/Comp_Arc/Lab0/project_1/project_1.runs/synth_1/lab0_wrapper.dcp + read_xdc /home/jspear/Development/School/Comp_Arc/Lab0/ZYBO_Master.xdc + link_design -top lab0_wrapper -part xc7z010clg400-1 + close_msg_db -file init_design.pb +} RESULT] +if {$rc} { + step_failed init_design + return -code error $RESULT +} else { + end_step init_design + unset ACTIVE_STEP +} + +start_step opt_design +set ACTIVE_STEP opt_design +set rc [catch { + create_msg_db opt_design.pb + opt_design + write_checkpoint -force lab0_wrapper_opt.dcp + catch { report_drc -file lab0_wrapper_drc_opted.rpt } + close_msg_db -file opt_design.pb +} RESULT] +if {$rc} { + step_failed opt_design + return -code error $RESULT +} else { + end_step opt_design + unset ACTIVE_STEP +} + +start_step place_design +set ACTIVE_STEP place_design +set rc [catch { + create_msg_db place_design.pb + implement_debug_core + place_design + write_checkpoint -force lab0_wrapper_placed.dcp + catch { report_io -file lab0_wrapper_io_placed.rpt } + catch { report_utilization -file lab0_wrapper_utilization_placed.rpt -pb lab0_wrapper_utilization_placed.pb } + catch { report_control_sets -verbose -file lab0_wrapper_control_sets_placed.rpt } + close_msg_db -file place_design.pb +} RESULT] +if {$rc} { + step_failed place_design + return -code error $RESULT +} else { + end_step place_design + unset ACTIVE_STEP +} + +start_step route_design +set ACTIVE_STEP route_design +set rc [catch { + create_msg_db route_design.pb + route_design + write_checkpoint -force lab0_wrapper_routed.dcp + catch { report_drc -file lab0_wrapper_drc_routed.rpt -pb lab0_wrapper_drc_routed.pb -rpx lab0_wrapper_drc_routed.rpx } + catch { report_methodology -file lab0_wrapper_methodology_drc_routed.rpt -rpx lab0_wrapper_methodology_drc_routed.rpx } + catch { report_power -file lab0_wrapper_power_routed.rpt -pb lab0_wrapper_power_summary_routed.pb -rpx lab0_wrapper_power_routed.rpx } + catch { report_route_status -file lab0_wrapper_route_status.rpt -pb lab0_wrapper_route_status.pb } + catch { report_clock_utilization -file lab0_wrapper_clock_utilization_routed.rpt } + catch { report_timing_summary -warn_on_violation -max_paths 10 -file lab0_wrapper_timing_summary_routed.rpt -rpx lab0_wrapper_timing_summary_routed.rpx } + close_msg_db -file route_design.pb +} RESULT] +if {$rc} { + write_checkpoint -force lab0_wrapper_routed_error.dcp + step_failed route_design + return -code error $RESULT +} else { + end_step route_design + unset ACTIVE_STEP +} + diff --git a/project_1/project_1.runs/impl_1/lab0_wrapper.vdi b/project_1/project_1.runs/impl_1/lab0_wrapper.vdi new file mode 100644 index 0000000..837d9d3 --- /dev/null +++ b/project_1/project_1.runs/impl_1/lab0_wrapper.vdi @@ -0,0 +1,371 @@ +#----------------------------------------------------------- +# Vivado v2017.2 (64-bit) +# SW Build 1909853 on Thu Jun 15 18:39:10 MDT 2017 +# IP Build 1909766 on Thu Jun 15 19:58:00 MDT 2017 +# Start of session at: Wed Sep 27 19:50:15 2017 +# Process ID: 5568 +# Current directory: /home/jspear/Development/School/Comp_Arc/Lab0/project_1/project_1.runs/impl_1 +# Command line: vivado -log lab0_wrapper.vdi -applog -product Vivado -messageDb vivado.pb -mode batch -source lab0_wrapper.tcl -notrace +# Log file: /home/jspear/Development/School/Comp_Arc/Lab0/project_1/project_1.runs/impl_1/lab0_wrapper.vdi +# Journal file: /home/jspear/Development/School/Comp_Arc/Lab0/project_1/project_1.runs/impl_1/vivado.jou +#----------------------------------------------------------- +source lab0_wrapper.tcl -notrace +Design is defaulting to srcset: sources_1 +Design is defaulting to constrset: constrs_1 +INFO: [Netlist 29-17] Analyzing 9 Unisim elements for replacement +INFO: [Netlist 29-28] Unisim Transformation completed in 0 CPU seconds +INFO: [Project 1-479] Netlist was created with Vivado 2017.2 +INFO: [Device 21-403] Loading part xc7z010clg400-1 +INFO: [Project 1-570] Preparing netlist for logic optimization +Parsing XDC File [/home/jspear/Development/School/Comp_Arc/Lab0/ZYBO_Master.xdc] +Finished Parsing XDC File [/home/jspear/Development/School/Comp_Arc/Lab0/ZYBO_Master.xdc] +INFO: [Opt 31-138] Pushed 0 inverter(s) to 0 load pin(s). +INFO: [Project 1-111] Unisim Transformation Summary: +No Unisim elements were transformed. + +Command: opt_design +Attempting to get a license for feature 'Implementation' and/or device 'xc7z010-clg400' +INFO: [Common 17-349] Got license for feature 'Implementation' and/or device 'xc7z010-clg400' +Running DRC as a precondition to command opt_design + +Starting DRC Task +Command: report_drc (run_mandatory_drcs) for: opt_checks +INFO: [DRC 23-27] Running DRC with 4 threads +report_drc (run_mandatory_drcs) completed successfully +INFO: [Project 1-461] DRC finished with 0 Errors +INFO: [Project 1-462] Please refer to the DRC report (report_drc) for more information. + +Time (s): cpu = 00:00:01 ; elapsed = 00:00:00.58 . Memory (MB): peak = 1380.207 ; gain = 46.016 ; free physical = 7638 ; free virtual = 19226 +INFO: [Timing 38-35] Done setting XDC timing constraints. + +Starting Logic Optimization Task + +Phase 1 Retarget +INFO: [Opt 31-138] Pushed 0 inverter(s) to 0 load pin(s). +INFO: [Opt 31-49] Retargeted 0 cell(s). +Phase 1 Retarget | Checksum: 147d9b361 + +Time (s): cpu = 00:00:00 ; elapsed = 00:00:00 . Memory (MB): peak = 1806.699 ; gain = 0.000 ; free physical = 7279 ; free virtual = 18865 +INFO: [Opt 31-389] Phase Retarget created 0 cells and removed 0 cells + +Phase 2 Constant propagation +INFO: [Opt 31-138] Pushed 0 inverter(s) to 0 load pin(s). +Phase 2 Constant propagation | Checksum: 147d9b361 + +Time (s): cpu = 00:00:00 ; elapsed = 00:00:00 . Memory (MB): peak = 1806.699 ; gain = 0.000 ; free physical = 7279 ; free virtual = 18865 +INFO: [Opt 31-389] Phase Constant propagation created 0 cells and removed 0 cells + +Phase 3 Sweep +Phase 3 Sweep | Checksum: 147d9b361 + +Time (s): cpu = 00:00:00 ; elapsed = 00:00:00 . Memory (MB): peak = 1806.699 ; gain = 0.000 ; free physical = 7279 ; free virtual = 18865 +INFO: [Opt 31-389] Phase Sweep created 0 cells and removed 0 cells + +Phase 4 BUFG optimization +Phase 4 BUFG optimization | Checksum: 147d9b361 + +Time (s): cpu = 00:00:00 ; elapsed = 00:00:00.01 . Memory (MB): peak = 1806.699 ; gain = 0.000 ; free physical = 7279 ; free virtual = 18865 +INFO: [Opt 31-389] Phase BUFG optimization created 0 cells and removed 0 cells + +Phase 5 Shift Register Optimization +Phase 5 Shift Register Optimization | Checksum: 147d9b361 + +Time (s): cpu = 00:00:00 ; elapsed = 00:00:00.01 . Memory (MB): peak = 1806.699 ; gain = 0.000 ; free physical = 7279 ; free virtual = 18865 +INFO: [Opt 31-389] Phase Shift Register Optimization created 0 cells and removed 0 cells + +Starting Connectivity Check Task + +Time (s): cpu = 00:00:00 ; elapsed = 00:00:00 . Memory (MB): peak = 1806.699 ; gain = 0.000 ; free physical = 7279 ; free virtual = 18865 +Ending Logic Optimization Task | Checksum: 147d9b361 + +Time (s): cpu = 00:00:00 ; elapsed = 00:00:00.01 . Memory (MB): peak = 1806.699 ; gain = 0.000 ; free physical = 7279 ; free virtual = 18865 + +Starting Power Optimization Task +INFO: [Pwropt 34-132] Skipping clock gating for clocks with a period < 2.00 ns. +Ending Power Optimization Task | Checksum: 147d9b361 + +Time (s): cpu = 00:00:00.02 ; elapsed = 00:00:00.01 . Memory (MB): peak = 1806.699 ; gain = 0.000 ; free physical = 7279 ; free virtual = 18865 +21 Infos, 0 Warnings, 0 Critical Warnings and 0 Errors encountered. +opt_design completed successfully +opt_design: Time (s): cpu = 00:00:08 ; elapsed = 00:00:08 . Memory (MB): peak = 1806.699 ; gain = 472.508 ; free physical = 7279 ; free virtual = 18865 +Writing placer database... +Writing XDEF routing. +Writing XDEF routing logical nets. +Writing XDEF routing special nets. +Write XDEF Complete: Time (s): cpu = 00:00:00.02 ; elapsed = 00:00:00.01 . Memory (MB): peak = 1830.711 ; gain = 0.000 ; free physical = 7279 ; free virtual = 18866 +INFO: [Common 17-1381] The checkpoint '/home/jspear/Development/School/Comp_Arc/Lab0/project_1/project_1.runs/impl_1/lab0_wrapper_opt.dcp' has been generated. +Command: report_drc -file lab0_wrapper_drc_opted.rpt +INFO: [DRC 23-27] Running DRC with 4 threads +INFO: [Coretcl 2-168] The results of DRC are in file /home/jspear/Development/School/Comp_Arc/Lab0/project_1/project_1.runs/impl_1/lab0_wrapper_drc_opted.rpt. +report_drc completed successfully +INFO: [Chipscope 16-241] No debug cores found in the current design. +Before running the implement_debug_core command, either use the Set Up Debug wizard (GUI mode) +or use the create_debug_core and connect_debug_core Tcl commands to insert debug cores into the design. +Command: place_design +Attempting to get a license for feature 'Implementation' and/or device 'xc7z010-clg400' +INFO: [Common 17-349] Got license for feature 'Implementation' and/or device 'xc7z010-clg400' +Command: report_drc (run_mandatory_drcs) for: incr_eco_checks +INFO: [DRC 23-27] Running DRC with 4 threads +report_drc (run_mandatory_drcs) completed successfully +INFO: [Vivado_Tcl 4-198] DRC finished with 0 Errors +INFO: [Vivado_Tcl 4-199] Please refer to the DRC report (report_drc) for more information. +Running DRC as a precondition to command place_design +Command: report_drc (run_mandatory_drcs) for: placer_checks +INFO: [DRC 23-27] Running DRC with 4 threads +report_drc (run_mandatory_drcs) completed successfully +INFO: [Vivado_Tcl 4-198] DRC finished with 0 Errors +INFO: [Vivado_Tcl 4-199] Please refer to the DRC report (report_drc) for more information. + +Starting Placer Task +INFO: [Place 30-611] Multithreading enabled for place_design using a maximum of 4 CPUs + +Phase 1 Placer Initialization + +Phase 1.1 Placer Initialization Netlist Sorting +Netlist sorting complete. Time (s): cpu = 00:00:00 ; elapsed = 00:00:00 . Memory (MB): peak = 1838.715 ; gain = 0.000 ; free physical = 7264 ; free virtual = 18850 +Phase 1.1 Placer Initialization Netlist Sorting | Checksum: d5a1df2f + +Time (s): cpu = 00:00:00.01 ; elapsed = 00:00:00.01 . Memory (MB): peak = 1838.715 ; gain = 0.000 ; free physical = 7264 ; free virtual = 18850 +Netlist sorting complete. Time (s): cpu = 00:00:00 ; elapsed = 00:00:00 . Memory (MB): peak = 1838.715 ; gain = 0.000 ; free physical = 7264 ; free virtual = 18850 + +Phase 1.2 IO Placement/ Clock Placement/ Build Placer Device +INFO: [Timing 38-35] Done setting XDC timing constraints. +Phase 1.2 IO Placement/ Clock Placement/ Build Placer Device | Checksum: 1250244d5 + +Time (s): cpu = 00:00:00.36 ; elapsed = 00:00:00.24 . Memory (MB): peak = 1838.715 ; gain = 0.000 ; free physical = 7265 ; free virtual = 18851 + +Phase 1.3 Build Placer Netlist Model +Phase 1.3 Build Placer Netlist Model | Checksum: 16c3bf1d9 + +Time (s): cpu = 00:00:00.38 ; elapsed = 00:00:00.25 . Memory (MB): peak = 1838.715 ; gain = 0.000 ; free physical = 7265 ; free virtual = 18851 + +Phase 1.4 Constrain Clocks/Macros +Phase 1.4 Constrain Clocks/Macros | Checksum: 16c3bf1d9 + +Time (s): cpu = 00:00:00.38 ; elapsed = 00:00:00.25 . Memory (MB): peak = 1838.715 ; gain = 0.000 ; free physical = 7265 ; free virtual = 18851 +Phase 1 Placer Initialization | Checksum: 16c3bf1d9 + +Time (s): cpu = 00:00:00.38 ; elapsed = 00:00:00.25 . Memory (MB): peak = 1838.715 ; gain = 0.000 ; free physical = 7265 ; free virtual = 18851 + +Phase 2 Global Placement +WARNING: [Place 46-30] place_design is not in timing mode. Skip physical synthesis in placer +Phase 2 Global Placement | Checksum: 1d9ea070c + +Time (s): cpu = 00:00:00.66 ; elapsed = 00:00:00.36 . Memory (MB): peak = 1870.730 ; gain = 32.016 ; free physical = 7262 ; free virtual = 18848 + +Phase 3 Detail Placement + +Phase 3.1 Commit Multi Column Macros +Phase 3.1 Commit Multi Column Macros | Checksum: 1d9ea070c + +Time (s): cpu = 00:00:00.66 ; elapsed = 00:00:00.36 . Memory (MB): peak = 1870.730 ; gain = 32.016 ; free physical = 7262 ; free virtual = 18848 + +Phase 3.2 Commit Most Macros & LUTRAMs +Phase 3.2 Commit Most Macros & LUTRAMs | Checksum: 1ec31c88d + +Time (s): cpu = 00:00:00.67 ; elapsed = 00:00:00.36 . Memory (MB): peak = 1870.730 ; gain = 32.016 ; free physical = 7262 ; free virtual = 18848 + +Phase 3.3 Area Swap Optimization +Phase 3.3 Area Swap Optimization | Checksum: 1cd18c7b4 + +Time (s): cpu = 00:00:00.69 ; elapsed = 00:00:00.37 . Memory (MB): peak = 1870.730 ; gain = 32.016 ; free physical = 7262 ; free virtual = 18848 + +Phase 3.4 Pipeline Register Optimization +Phase 3.4 Pipeline Register Optimization | Checksum: 1cd18c7b4 + +Time (s): cpu = 00:00:00.69 ; elapsed = 00:00:00.37 . Memory (MB): peak = 1870.730 ; gain = 32.016 ; free physical = 7262 ; free virtual = 18848 + +Phase 3.5 Small Shape Detail Placement +Phase 3.5 Small Shape Detail Placement | Checksum: 6d8001ec + +Time (s): cpu = 00:00:00.76 ; elapsed = 00:00:00.41 . Memory (MB): peak = 1870.730 ; gain = 32.016 ; free physical = 7261 ; free virtual = 18847 + +Phase 3.6 Re-assign LUT pins +Phase 3.6 Re-assign LUT pins | Checksum: 6d8001ec + +Time (s): cpu = 00:00:00.76 ; elapsed = 00:00:00.41 . Memory (MB): peak = 1870.730 ; gain = 32.016 ; free physical = 7261 ; free virtual = 18847 + +Phase 3.7 Pipeline Register Optimization +Phase 3.7 Pipeline Register Optimization | Checksum: 6d8001ec + +Time (s): cpu = 00:00:00.76 ; elapsed = 00:00:00.41 . Memory (MB): peak = 1870.730 ; gain = 32.016 ; free physical = 7261 ; free virtual = 18847 +Phase 3 Detail Placement | Checksum: 6d8001ec + +Time (s): cpu = 00:00:00.76 ; elapsed = 00:00:00.41 . Memory (MB): peak = 1870.730 ; gain = 32.016 ; free physical = 7261 ; free virtual = 18847 + +Phase 4 Post Placement Optimization and Clean-Up + +Phase 4.1 Post Commit Optimization +Phase 4.1 Post Commit Optimization | Checksum: 6d8001ec + +Time (s): cpu = 00:00:00.77 ; elapsed = 00:00:00.42 . Memory (MB): peak = 1870.730 ; gain = 32.016 ; free physical = 7261 ; free virtual = 18847 + +Phase 4.2 Post Placement Cleanup +Phase 4.2 Post Placement Cleanup | Checksum: 6d8001ec + +Time (s): cpu = 00:00:00.78 ; elapsed = 00:00:00.42 . Memory (MB): peak = 1870.730 ; gain = 32.016 ; free physical = 7262 ; free virtual = 18848 + +Phase 4.3 Placer Reporting +Phase 4.3 Placer Reporting | Checksum: 6d8001ec + +Time (s): cpu = 00:00:00.78 ; elapsed = 00:00:00.42 . Memory (MB): peak = 1870.730 ; gain = 32.016 ; free physical = 7262 ; free virtual = 18848 + +Phase 4.4 Final Placement Cleanup +Phase 4.4 Final Placement Cleanup | Checksum: 5d120dd5 + +Time (s): cpu = 00:00:00.78 ; elapsed = 00:00:00.42 . Memory (MB): peak = 1870.730 ; gain = 32.016 ; free physical = 7262 ; free virtual = 18848 +Phase 4 Post Placement Optimization and Clean-Up | Checksum: 5d120dd5 + +Time (s): cpu = 00:00:00.78 ; elapsed = 00:00:00.42 . Memory (MB): peak = 1870.730 ; gain = 32.016 ; free physical = 7262 ; free virtual = 18848 +Ending Placer Task | Checksum: 3b3cc3fe + +Time (s): cpu = 00:00:00.78 ; elapsed = 00:00:00.43 . Memory (MB): peak = 1870.730 ; gain = 32.016 ; free physical = 7263 ; free virtual = 18849 +34 Infos, 1 Warnings, 0 Critical Warnings and 0 Errors encountered. +place_design completed successfully +Writing placer database... +Writing XDEF routing. +Writing XDEF routing logical nets. +Writing XDEF routing special nets. +Write XDEF Complete: Time (s): cpu = 00:00:00.02 ; elapsed = 00:00:00.01 . Memory (MB): peak = 1870.730 ; gain = 0.000 ; free physical = 7264 ; free virtual = 18851 +INFO: [Common 17-1381] The checkpoint '/home/jspear/Development/School/Comp_Arc/Lab0/project_1/project_1.runs/impl_1/lab0_wrapper_placed.dcp' has been generated. +report_io: Time (s): cpu = 00:00:00.13 ; elapsed = 00:00:00.17 . Memory (MB): peak = 1870.730 ; gain = 0.000 ; free physical = 7260 ; free virtual = 18846 +report_utilization: Time (s): cpu = 00:00:00.08 ; elapsed = 00:00:00.10 . Memory (MB): peak = 1870.730 ; gain = 0.000 ; free physical = 7266 ; free virtual = 18852 +report_control_sets: Time (s): cpu = 00:00:00.08 ; elapsed = 00:00:00.10 . Memory (MB): peak = 1870.730 ; gain = 0.000 ; free physical = 7267 ; free virtual = 18853 +Command: route_design +Attempting to get a license for feature 'Implementation' and/or device 'xc7z010-clg400' +INFO: [Common 17-349] Got license for feature 'Implementation' and/or device 'xc7z010-clg400' +Running DRC as a precondition to command route_design +Command: report_drc (run_mandatory_drcs) for: router_checks +INFO: [DRC 23-27] Running DRC with 4 threads +report_drc (run_mandatory_drcs) completed successfully +INFO: [Vivado_Tcl 4-198] DRC finished with 0 Errors +INFO: [Vivado_Tcl 4-199] Please refer to the DRC report (report_drc) for more information. + + +Starting Routing Task +INFO: [Route 35-254] Multithreading enabled for route_design using a maximum of 4 CPUs +Checksum: PlaceDB: 4f3a104 ConstDB: 0 ShapeSum: 364922fa RouteDB: 0 + +Phase 1 Build RT Design +Phase 1 Build RT Design | Checksum: 134c084e5 + +Time (s): cpu = 00:00:09 ; elapsed = 00:00:08 . Memory (MB): peak = 1891.719 ; gain = 20.988 ; free physical = 7190 ; free virtual = 18796 + +Phase 2 Router Initialization +INFO: [Route 35-64] No timing constraints were detected. The router will operate in resource-optimization mode. + +Phase 2.1 Fix Topology Constraints +Phase 2.1 Fix Topology Constraints | Checksum: 134c084e5 + +Time (s): cpu = 00:00:09 ; elapsed = 00:00:08 . Memory (MB): peak = 1905.719 ; gain = 34.988 ; free physical = 7176 ; free virtual = 18782 + +Phase 2.2 Pre Route Cleanup +Phase 2.2 Pre Route Cleanup | Checksum: 134c084e5 + +Time (s): cpu = 00:00:09 ; elapsed = 00:00:08 . Memory (MB): peak = 1905.719 ; gain = 34.988 ; free physical = 7176 ; free virtual = 18782 + Number of Nodes with overlaps = 0 +Phase 2 Router Initialization | Checksum: c75d0047 + +Time (s): cpu = 00:00:09 ; elapsed = 00:00:08 . Memory (MB): peak = 1910.719 ; gain = 39.988 ; free physical = 7170 ; free virtual = 18775 + +Phase 3 Initial Routing +Phase 3 Initial Routing | Checksum: 152d5e090 + +Time (s): cpu = 00:00:10 ; elapsed = 00:00:08 . Memory (MB): peak = 1910.719 ; gain = 39.988 ; free physical = 7172 ; free virtual = 18778 + +Phase 4 Rip-up And Reroute + +Phase 4.1 Global Iteration 0 + Number of Nodes with overlaps = 4 + Number of Nodes with overlaps = 0 +Phase 4.1 Global Iteration 0 | Checksum: d648e34d + +Time (s): cpu = 00:00:10 ; elapsed = 00:00:08 . Memory (MB): peak = 1910.719 ; gain = 39.988 ; free physical = 7172 ; free virtual = 18778 +Phase 4 Rip-up And Reroute | Checksum: d648e34d + +Time (s): cpu = 00:00:10 ; elapsed = 00:00:08 . Memory (MB): peak = 1910.719 ; gain = 39.988 ; free physical = 7172 ; free virtual = 18778 + +Phase 5 Delay and Skew Optimization +Phase 5 Delay and Skew Optimization | Checksum: d648e34d + +Time (s): cpu = 00:00:10 ; elapsed = 00:00:08 . Memory (MB): peak = 1910.719 ; gain = 39.988 ; free physical = 7172 ; free virtual = 18778 + +Phase 6 Post Hold Fix + +Phase 6.1 Hold Fix Iter +Phase 6.1 Hold Fix Iter | Checksum: d648e34d + +Time (s): cpu = 00:00:10 ; elapsed = 00:00:08 . Memory (MB): peak = 1910.719 ; gain = 39.988 ; free physical = 7172 ; free virtual = 18778 +Phase 6 Post Hold Fix | Checksum: d648e34d + +Time (s): cpu = 00:00:10 ; elapsed = 00:00:08 . Memory (MB): peak = 1910.719 ; gain = 39.988 ; free physical = 7172 ; free virtual = 18778 + +Phase 7 Route finalize + +Router Utilization Summary + Global Vertical Routing Utilization = 0.0523649 % + Global Horizontal Routing Utilization = 0.00758272 % + Routable Net Status* + *Does not include unroutable nets such as driverless and loadless. + Run report_route_status for detailed report. + Number of Failed Nets = 0 + Number of Unrouted Nets = 0 + Number of Partially Routed Nets = 0 + Number of Node Overlaps = 0 + +Congestion Report +North Dir 1x1 Area, Max Cong = 16.2162%, No Congested Regions. +South Dir 1x1 Area, Max Cong = 16.2162%, No Congested Regions. +East Dir 1x1 Area, Max Cong = 11.7647%, No Congested Regions. +West Dir 1x1 Area, Max Cong = 5.88235%, No Congested Regions. +Phase 7 Route finalize | Checksum: d648e34d + +Time (s): cpu = 00:00:10 ; elapsed = 00:00:08 . Memory (MB): peak = 1910.719 ; gain = 39.988 ; free physical = 7172 ; free virtual = 18778 + +Phase 8 Verifying routed nets + + Verification completed successfully +Phase 8 Verifying routed nets | Checksum: d648e34d + +Time (s): cpu = 00:00:10 ; elapsed = 00:00:08 . Memory (MB): peak = 1912.719 ; gain = 41.988 ; free physical = 7172 ; free virtual = 18777 + +Phase 9 Depositing Routes +Phase 9 Depositing Routes | Checksum: 42296b1e + +Time (s): cpu = 00:00:10 ; elapsed = 00:00:08 . Memory (MB): peak = 1912.719 ; gain = 41.988 ; free physical = 7172 ; free virtual = 18777 +INFO: [Route 35-16] Router Completed Successfully + +Time (s): cpu = 00:00:10 ; elapsed = 00:00:08 . Memory (MB): peak = 1912.719 ; gain = 41.988 ; free physical = 7186 ; free virtual = 18792 + +Routing Is Done. +42 Infos, 1 Warnings, 0 Critical Warnings and 0 Errors encountered. +route_design completed successfully +route_design: Time (s): cpu = 00:00:12 ; elapsed = 00:00:09 . Memory (MB): peak = 1938.750 ; gain = 68.020 ; free physical = 7186 ; free virtual = 18792 +Writing placer database... +Writing XDEF routing. +Writing XDEF routing logical nets. +Writing XDEF routing special nets. +Write XDEF Complete: Time (s): cpu = 00:00:00.02 ; elapsed = 00:00:00.01 . Memory (MB): peak = 1938.750 ; gain = 0.000 ; free physical = 7185 ; free virtual = 18792 +INFO: [Common 17-1381] The checkpoint '/home/jspear/Development/School/Comp_Arc/Lab0/project_1/project_1.runs/impl_1/lab0_wrapper_routed.dcp' has been generated. +Command: report_drc -file lab0_wrapper_drc_routed.rpt -pb lab0_wrapper_drc_routed.pb -rpx lab0_wrapper_drc_routed.rpx +INFO: [DRC 23-27] Running DRC with 4 threads +INFO: [Coretcl 2-168] The results of DRC are in file /home/jspear/Development/School/Comp_Arc/Lab0/project_1/project_1.runs/impl_1/lab0_wrapper_drc_routed.rpt. +report_drc completed successfully +Command: report_methodology -file lab0_wrapper_methodology_drc_routed.rpt -rpx lab0_wrapper_methodology_drc_routed.rpx +INFO: [Timing 38-35] Done setting XDC timing constraints. +INFO: [DRC 23-133] Running Methodology with 4 threads +INFO: [Coretcl 2-1520] The results of Report Methodology are in file /home/jspear/Development/School/Comp_Arc/Lab0/project_1/project_1.runs/impl_1/lab0_wrapper_methodology_drc_routed.rpt. +report_methodology completed successfully +Command: report_power -file lab0_wrapper_power_routed.rpt -pb lab0_wrapper_power_summary_routed.pb -rpx lab0_wrapper_power_routed.rpx +WARNING: [Power 33-232] No user defined clocks were found in the design! +Resolution: Please specify clocks using create_clock/create_generated_clock for sequential elements. For pure combinatorial circuits, please specify a virtual clock, otherwise the vectorless estimation might be inaccurate +INFO: [Timing 38-35] Done setting XDC timing constraints. +Running Vector-less Activity Propagation... + +Finished Running Vector-less Activity Propagation +49 Infos, 2 Warnings, 0 Critical Warnings and 0 Errors encountered. +report_power completed successfully +INFO: [Timing 38-91] UpdateTimingParams: Speed grade: -1, Delay Type: min_max. +INFO: [Timing 38-191] Multithreading enabled for timing update using a maximum of 4 CPUs +WARNING: [Timing 38-313] There are no user specified timing constraints. Timing constraints are needed for proper timing analysis. +INFO: [Common 17-206] Exiting Vivado at Wed Sep 27 19:50:50 2017... diff --git a/project_1/project_1.runs/impl_1/lab0_wrapper_12929.backup.vdi b/project_1/project_1.runs/impl_1/lab0_wrapper_12929.backup.vdi new file mode 100644 index 0000000..2e8b944 --- /dev/null +++ b/project_1/project_1.runs/impl_1/lab0_wrapper_12929.backup.vdi @@ -0,0 +1,371 @@ +#----------------------------------------------------------- +# Vivado v2017.2 (64-bit) +# SW Build 1909853 on Thu Jun 15 18:39:10 MDT 2017 +# IP Build 1909766 on Thu Jun 15 19:58:00 MDT 2017 +# Start of session at: Wed Sep 27 19:28:33 2017 +# Process ID: 12929 +# Current directory: /home/jspear/Development/School/Comp_Arc/Lab0/project_1/project_1.runs/impl_1 +# Command line: vivado -log lab0_wrapper.vdi -applog -product Vivado -messageDb vivado.pb -mode batch -source lab0_wrapper.tcl -notrace +# Log file: /home/jspear/Development/School/Comp_Arc/Lab0/project_1/project_1.runs/impl_1/lab0_wrapper.vdi +# Journal file: /home/jspear/Development/School/Comp_Arc/Lab0/project_1/project_1.runs/impl_1/vivado.jou +#----------------------------------------------------------- +source lab0_wrapper.tcl -notrace +Design is defaulting to srcset: sources_1 +Design is defaulting to constrset: constrs_1 +INFO: [Netlist 29-17] Analyzing 9 Unisim elements for replacement +INFO: [Netlist 29-28] Unisim Transformation completed in 0 CPU seconds +INFO: [Project 1-479] Netlist was created with Vivado 2017.2 +INFO: [Device 21-403] Loading part xc7z010clg400-1 +INFO: [Project 1-570] Preparing netlist for logic optimization +Parsing XDC File [/home/jspear/Development/School/Comp_Arc/Lab0/ZYBO_Master.xdc] +Finished Parsing XDC File [/home/jspear/Development/School/Comp_Arc/Lab0/ZYBO_Master.xdc] +INFO: [Opt 31-138] Pushed 0 inverter(s) to 0 load pin(s). +INFO: [Project 1-111] Unisim Transformation Summary: +No Unisim elements were transformed. + +Command: opt_design +Attempting to get a license for feature 'Implementation' and/or device 'xc7z010-clg400' +INFO: [Common 17-349] Got license for feature 'Implementation' and/or device 'xc7z010-clg400' +Running DRC as a precondition to command opt_design + +Starting DRC Task +Command: report_drc (run_mandatory_drcs) for: opt_checks +INFO: [DRC 23-27] Running DRC with 4 threads +report_drc (run_mandatory_drcs) completed successfully +INFO: [Project 1-461] DRC finished with 0 Errors +INFO: [Project 1-462] Please refer to the DRC report (report_drc) for more information. + +Time (s): cpu = 00:00:01 ; elapsed = 00:00:00.49 . Memory (MB): peak = 1379.211 ; gain = 46.016 ; free physical = 8060 ; free virtual = 19569 +INFO: [Timing 38-35] Done setting XDC timing constraints. + +Starting Logic Optimization Task + +Phase 1 Retarget +INFO: [Opt 31-138] Pushed 0 inverter(s) to 0 load pin(s). +INFO: [Opt 31-49] Retargeted 0 cell(s). +Phase 1 Retarget | Checksum: 147d9b361 + +Time (s): cpu = 00:00:00 ; elapsed = 00:00:00 . Memory (MB): peak = 1806.703 ; gain = 0.000 ; free physical = 7695 ; free virtual = 19205 +INFO: [Opt 31-389] Phase Retarget created 0 cells and removed 0 cells + +Phase 2 Constant propagation +INFO: [Opt 31-138] Pushed 0 inverter(s) to 0 load pin(s). +Phase 2 Constant propagation | Checksum: 147d9b361 + +Time (s): cpu = 00:00:00 ; elapsed = 00:00:00 . Memory (MB): peak = 1806.703 ; gain = 0.000 ; free physical = 7695 ; free virtual = 19205 +INFO: [Opt 31-389] Phase Constant propagation created 0 cells and removed 0 cells + +Phase 3 Sweep +Phase 3 Sweep | Checksum: 147d9b361 + +Time (s): cpu = 00:00:00 ; elapsed = 00:00:00 . Memory (MB): peak = 1806.703 ; gain = 0.000 ; free physical = 7695 ; free virtual = 19205 +INFO: [Opt 31-389] Phase Sweep created 0 cells and removed 0 cells + +Phase 4 BUFG optimization +Phase 4 BUFG optimization | Checksum: 147d9b361 + +Time (s): cpu = 00:00:00.01 ; elapsed = 00:00:00 . Memory (MB): peak = 1806.703 ; gain = 0.000 ; free physical = 7695 ; free virtual = 19205 +INFO: [Opt 31-389] Phase BUFG optimization created 0 cells and removed 0 cells + +Phase 5 Shift Register Optimization +Phase 5 Shift Register Optimization | Checksum: 147d9b361 + +Time (s): cpu = 00:00:00.01 ; elapsed = 00:00:00 . Memory (MB): peak = 1806.703 ; gain = 0.000 ; free physical = 7695 ; free virtual = 19205 +INFO: [Opt 31-389] Phase Shift Register Optimization created 0 cells and removed 0 cells + +Starting Connectivity Check Task + +Time (s): cpu = 00:00:00 ; elapsed = 00:00:00 . Memory (MB): peak = 1806.703 ; gain = 0.000 ; free physical = 7695 ; free virtual = 19205 +Ending Logic Optimization Task | Checksum: 147d9b361 + +Time (s): cpu = 00:00:00.01 ; elapsed = 00:00:00.01 . Memory (MB): peak = 1806.703 ; gain = 0.000 ; free physical = 7695 ; free virtual = 19205 + +Starting Power Optimization Task +INFO: [Pwropt 34-132] Skipping clock gating for clocks with a period < 2.00 ns. +Ending Power Optimization Task | Checksum: 147d9b361 + +Time (s): cpu = 00:00:00.01 ; elapsed = 00:00:00.01 . Memory (MB): peak = 1806.703 ; gain = 0.000 ; free physical = 7695 ; free virtual = 19205 +21 Infos, 0 Warnings, 0 Critical Warnings and 0 Errors encountered. +opt_design completed successfully +opt_design: Time (s): cpu = 00:00:08 ; elapsed = 00:00:07 . Memory (MB): peak = 1806.703 ; gain = 473.508 ; free physical = 7695 ; free virtual = 19205 +Writing placer database... +Writing XDEF routing. +Writing XDEF routing logical nets. +Writing XDEF routing special nets. +Write XDEF Complete: Time (s): cpu = 00:00:00.01 ; elapsed = 00:00:00.02 . Memory (MB): peak = 1830.715 ; gain = 0.000 ; free physical = 7694 ; free virtual = 19205 +INFO: [Common 17-1381] The checkpoint '/home/jspear/Development/School/Comp_Arc/Lab0/project_1/project_1.runs/impl_1/lab0_wrapper_opt.dcp' has been generated. +Command: report_drc -file lab0_wrapper_drc_opted.rpt +INFO: [DRC 23-27] Running DRC with 4 threads +INFO: [Coretcl 2-168] The results of DRC are in file /home/jspear/Development/School/Comp_Arc/Lab0/project_1/project_1.runs/impl_1/lab0_wrapper_drc_opted.rpt. +report_drc completed successfully +INFO: [Chipscope 16-241] No debug cores found in the current design. +Before running the implement_debug_core command, either use the Set Up Debug wizard (GUI mode) +or use the create_debug_core and connect_debug_core Tcl commands to insert debug cores into the design. +Command: place_design +Attempting to get a license for feature 'Implementation' and/or device 'xc7z010-clg400' +INFO: [Common 17-349] Got license for feature 'Implementation' and/or device 'xc7z010-clg400' +Command: report_drc (run_mandatory_drcs) for: incr_eco_checks +INFO: [DRC 23-27] Running DRC with 4 threads +report_drc (run_mandatory_drcs) completed successfully +INFO: [Vivado_Tcl 4-198] DRC finished with 0 Errors +INFO: [Vivado_Tcl 4-199] Please refer to the DRC report (report_drc) for more information. +Running DRC as a precondition to command place_design +Command: report_drc (run_mandatory_drcs) for: placer_checks +INFO: [DRC 23-27] Running DRC with 4 threads +report_drc (run_mandatory_drcs) completed successfully +INFO: [Vivado_Tcl 4-198] DRC finished with 0 Errors +INFO: [Vivado_Tcl 4-199] Please refer to the DRC report (report_drc) for more information. + +Starting Placer Task +INFO: [Place 30-611] Multithreading enabled for place_design using a maximum of 4 CPUs + +Phase 1 Placer Initialization + +Phase 1.1 Placer Initialization Netlist Sorting +Netlist sorting complete. Time (s): cpu = 00:00:00 ; elapsed = 00:00:00 . Memory (MB): peak = 1838.719 ; gain = 0.000 ; free physical = 7680 ; free virtual = 19189 +Phase 1.1 Placer Initialization Netlist Sorting | Checksum: d5a1df2f + +Time (s): cpu = 00:00:00.01 ; elapsed = 00:00:00.02 . Memory (MB): peak = 1838.719 ; gain = 0.000 ; free physical = 7680 ; free virtual = 19189 +Netlist sorting complete. Time (s): cpu = 00:00:00 ; elapsed = 00:00:00 . Memory (MB): peak = 1838.719 ; gain = 0.000 ; free physical = 7680 ; free virtual = 19189 + +Phase 1.2 IO Placement/ Clock Placement/ Build Placer Device +INFO: [Timing 38-35] Done setting XDC timing constraints. +Phase 1.2 IO Placement/ Clock Placement/ Build Placer Device | Checksum: 1250244d5 + +Time (s): cpu = 00:00:00.30 ; elapsed = 00:00:00.22 . Memory (MB): peak = 1838.719 ; gain = 0.000 ; free physical = 7679 ; free virtual = 19189 + +Phase 1.3 Build Placer Netlist Model +Phase 1.3 Build Placer Netlist Model | Checksum: 16c3bf1d9 + +Time (s): cpu = 00:00:00.31 ; elapsed = 00:00:00.23 . Memory (MB): peak = 1838.719 ; gain = 0.000 ; free physical = 7679 ; free virtual = 19189 + +Phase 1.4 Constrain Clocks/Macros +Phase 1.4 Constrain Clocks/Macros | Checksum: 16c3bf1d9 + +Time (s): cpu = 00:00:00.32 ; elapsed = 00:00:00.23 . Memory (MB): peak = 1838.719 ; gain = 0.000 ; free physical = 7679 ; free virtual = 19189 +Phase 1 Placer Initialization | Checksum: 16c3bf1d9 + +Time (s): cpu = 00:00:00.32 ; elapsed = 00:00:00.23 . Memory (MB): peak = 1838.719 ; gain = 0.000 ; free physical = 7679 ; free virtual = 19189 + +Phase 2 Global Placement +WARNING: [Place 46-30] place_design is not in timing mode. Skip physical synthesis in placer +Phase 2 Global Placement | Checksum: 1d9ea070c + +Time (s): cpu = 00:00:00.63 ; elapsed = 00:00:00.35 . Memory (MB): peak = 1870.734 ; gain = 32.016 ; free physical = 7676 ; free virtual = 19186 + +Phase 3 Detail Placement + +Phase 3.1 Commit Multi Column Macros +Phase 3.1 Commit Multi Column Macros | Checksum: 1d9ea070c + +Time (s): cpu = 00:00:00.64 ; elapsed = 00:00:00.35 . Memory (MB): peak = 1870.734 ; gain = 32.016 ; free physical = 7676 ; free virtual = 19186 + +Phase 3.2 Commit Most Macros & LUTRAMs +Phase 3.2 Commit Most Macros & LUTRAMs | Checksum: 1ec31c88d + +Time (s): cpu = 00:00:00.64 ; elapsed = 00:00:00.36 . Memory (MB): peak = 1870.734 ; gain = 32.016 ; free physical = 7676 ; free virtual = 19186 + +Phase 3.3 Area Swap Optimization +Phase 3.3 Area Swap Optimization | Checksum: 1cd18c7b4 + +Time (s): cpu = 00:00:00.66 ; elapsed = 00:00:00.36 . Memory (MB): peak = 1870.734 ; gain = 32.016 ; free physical = 7676 ; free virtual = 19186 + +Phase 3.4 Pipeline Register Optimization +Phase 3.4 Pipeline Register Optimization | Checksum: 1cd18c7b4 + +Time (s): cpu = 00:00:00.66 ; elapsed = 00:00:00.36 . Memory (MB): peak = 1870.734 ; gain = 32.016 ; free physical = 7676 ; free virtual = 19186 + +Phase 3.5 Small Shape Detail Placement +Phase 3.5 Small Shape Detail Placement | Checksum: 6d8001ec + +Time (s): cpu = 00:00:00.73 ; elapsed = 00:00:00.40 . Memory (MB): peak = 1870.734 ; gain = 32.016 ; free physical = 7675 ; free virtual = 19185 + +Phase 3.6 Re-assign LUT pins +Phase 3.6 Re-assign LUT pins | Checksum: 6d8001ec + +Time (s): cpu = 00:00:00.73 ; elapsed = 00:00:00.40 . Memory (MB): peak = 1870.734 ; gain = 32.016 ; free physical = 7675 ; free virtual = 19185 + +Phase 3.7 Pipeline Register Optimization +Phase 3.7 Pipeline Register Optimization | Checksum: 6d8001ec + +Time (s): cpu = 00:00:00.73 ; elapsed = 00:00:00.40 . Memory (MB): peak = 1870.734 ; gain = 32.016 ; free physical = 7675 ; free virtual = 19185 +Phase 3 Detail Placement | Checksum: 6d8001ec + +Time (s): cpu = 00:00:00.73 ; elapsed = 00:00:00.40 . Memory (MB): peak = 1870.734 ; gain = 32.016 ; free physical = 7675 ; free virtual = 19185 + +Phase 4 Post Placement Optimization and Clean-Up + +Phase 4.1 Post Commit Optimization +Phase 4.1 Post Commit Optimization | Checksum: 6d8001ec + +Time (s): cpu = 00:00:00.74 ; elapsed = 00:00:00.41 . Memory (MB): peak = 1870.734 ; gain = 32.016 ; free physical = 7675 ; free virtual = 19185 + +Phase 4.2 Post Placement Cleanup +Phase 4.2 Post Placement Cleanup | Checksum: 6d8001ec + +Time (s): cpu = 00:00:00.75 ; elapsed = 00:00:00.41 . Memory (MB): peak = 1870.734 ; gain = 32.016 ; free physical = 7676 ; free virtual = 19185 + +Phase 4.3 Placer Reporting +Phase 4.3 Placer Reporting | Checksum: 6d8001ec + +Time (s): cpu = 00:00:00.75 ; elapsed = 00:00:00.41 . Memory (MB): peak = 1870.734 ; gain = 32.016 ; free physical = 7676 ; free virtual = 19185 + +Phase 4.4 Final Placement Cleanup +Phase 4.4 Final Placement Cleanup | Checksum: 5d120dd5 + +Time (s): cpu = 00:00:00.75 ; elapsed = 00:00:00.41 . Memory (MB): peak = 1870.734 ; gain = 32.016 ; free physical = 7676 ; free virtual = 19185 +Phase 4 Post Placement Optimization and Clean-Up | Checksum: 5d120dd5 + +Time (s): cpu = 00:00:00.75 ; elapsed = 00:00:00.41 . Memory (MB): peak = 1870.734 ; gain = 32.016 ; free physical = 7676 ; free virtual = 19185 +Ending Placer Task | Checksum: 3b3cc3fe + +Time (s): cpu = 00:00:00.75 ; elapsed = 00:00:00.41 . Memory (MB): peak = 1870.734 ; gain = 32.016 ; free physical = 7678 ; free virtual = 19188 +34 Infos, 1 Warnings, 0 Critical Warnings and 0 Errors encountered. +place_design completed successfully +Writing placer database... +Writing XDEF routing. +Writing XDEF routing logical nets. +Writing XDEF routing special nets. +Write XDEF Complete: Time (s): cpu = 00:00:00.01 ; elapsed = 00:00:00.01 . Memory (MB): peak = 1870.734 ; gain = 0.000 ; free physical = 7679 ; free virtual = 19190 +INFO: [Common 17-1381] The checkpoint '/home/jspear/Development/School/Comp_Arc/Lab0/project_1/project_1.runs/impl_1/lab0_wrapper_placed.dcp' has been generated. +report_io: Time (s): cpu = 00:00:00.11 ; elapsed = 00:00:00.14 . Memory (MB): peak = 1870.734 ; gain = 0.000 ; free physical = 7670 ; free virtual = 19180 +report_utilization: Time (s): cpu = 00:00:00.06 ; elapsed = 00:00:00.09 . Memory (MB): peak = 1870.734 ; gain = 0.000 ; free physical = 7678 ; free virtual = 19188 +report_control_sets: Time (s): cpu = 00:00:00.07 ; elapsed = 00:00:00.09 . Memory (MB): peak = 1870.734 ; gain = 0.000 ; free physical = 7677 ; free virtual = 19187 +Command: route_design +Attempting to get a license for feature 'Implementation' and/or device 'xc7z010-clg400' +INFO: [Common 17-349] Got license for feature 'Implementation' and/or device 'xc7z010-clg400' +Running DRC as a precondition to command route_design +Command: report_drc (run_mandatory_drcs) for: router_checks +INFO: [DRC 23-27] Running DRC with 4 threads +report_drc (run_mandatory_drcs) completed successfully +INFO: [Vivado_Tcl 4-198] DRC finished with 0 Errors +INFO: [Vivado_Tcl 4-199] Please refer to the DRC report (report_drc) for more information. + + +Starting Routing Task +INFO: [Route 35-254] Multithreading enabled for route_design using a maximum of 4 CPUs +Checksum: PlaceDB: 4f3a104 ConstDB: 0 ShapeSum: 364922fa RouteDB: 0 + +Phase 1 Build RT Design +Phase 1 Build RT Design | Checksum: 134c084e5 + +Time (s): cpu = 00:00:09 ; elapsed = 00:00:07 . Memory (MB): peak = 1890.723 ; gain = 19.988 ; free physical = 7595 ; free virtual = 19104 + +Phase 2 Router Initialization +INFO: [Route 35-64] No timing constraints were detected. The router will operate in resource-optimization mode. + +Phase 2.1 Fix Topology Constraints +Phase 2.1 Fix Topology Constraints | Checksum: 134c084e5 + +Time (s): cpu = 00:00:09 ; elapsed = 00:00:07 . Memory (MB): peak = 1904.723 ; gain = 33.988 ; free physical = 7580 ; free virtual = 19090 + +Phase 2.2 Pre Route Cleanup +Phase 2.2 Pre Route Cleanup | Checksum: 134c084e5 + +Time (s): cpu = 00:00:09 ; elapsed = 00:00:07 . Memory (MB): peak = 1904.723 ; gain = 33.988 ; free physical = 7580 ; free virtual = 19090 + Number of Nodes with overlaps = 0 +Phase 2 Router Initialization | Checksum: c75d0047 + +Time (s): cpu = 00:00:09 ; elapsed = 00:00:07 . Memory (MB): peak = 1909.723 ; gain = 38.988 ; free physical = 7575 ; free virtual = 19085 + +Phase 3 Initial Routing +Phase 3 Initial Routing | Checksum: 152d5e090 + +Time (s): cpu = 00:00:09 ; elapsed = 00:00:07 . Memory (MB): peak = 1909.723 ; gain = 38.988 ; free physical = 7576 ; free virtual = 19086 + +Phase 4 Rip-up And Reroute + +Phase 4.1 Global Iteration 0 + Number of Nodes with overlaps = 4 + Number of Nodes with overlaps = 0 +Phase 4.1 Global Iteration 0 | Checksum: d648e34d + +Time (s): cpu = 00:00:09 ; elapsed = 00:00:07 . Memory (MB): peak = 1909.723 ; gain = 38.988 ; free physical = 7576 ; free virtual = 19086 +Phase 4 Rip-up And Reroute | Checksum: d648e34d + +Time (s): cpu = 00:00:09 ; elapsed = 00:00:07 . Memory (MB): peak = 1909.723 ; gain = 38.988 ; free physical = 7576 ; free virtual = 19086 + +Phase 5 Delay and Skew Optimization +Phase 5 Delay and Skew Optimization | Checksum: d648e34d + +Time (s): cpu = 00:00:09 ; elapsed = 00:00:07 . Memory (MB): peak = 1909.723 ; gain = 38.988 ; free physical = 7576 ; free virtual = 19086 + +Phase 6 Post Hold Fix + +Phase 6.1 Hold Fix Iter +Phase 6.1 Hold Fix Iter | Checksum: d648e34d + +Time (s): cpu = 00:00:09 ; elapsed = 00:00:07 . Memory (MB): peak = 1909.723 ; gain = 38.988 ; free physical = 7576 ; free virtual = 19086 +Phase 6 Post Hold Fix | Checksum: d648e34d + +Time (s): cpu = 00:00:09 ; elapsed = 00:00:07 . Memory (MB): peak = 1909.723 ; gain = 38.988 ; free physical = 7576 ; free virtual = 19086 + +Phase 7 Route finalize + +Router Utilization Summary + Global Vertical Routing Utilization = 0.0523649 % + Global Horizontal Routing Utilization = 0.00758272 % + Routable Net Status* + *Does not include unroutable nets such as driverless and loadless. + Run report_route_status for detailed report. + Number of Failed Nets = 0 + Number of Unrouted Nets = 0 + Number of Partially Routed Nets = 0 + Number of Node Overlaps = 0 + +Congestion Report +North Dir 1x1 Area, Max Cong = 16.2162%, No Congested Regions. +South Dir 1x1 Area, Max Cong = 16.2162%, No Congested Regions. +East Dir 1x1 Area, Max Cong = 11.7647%, No Congested Regions. +West Dir 1x1 Area, Max Cong = 5.88235%, No Congested Regions. +Phase 7 Route finalize | Checksum: d648e34d + +Time (s): cpu = 00:00:09 ; elapsed = 00:00:07 . Memory (MB): peak = 1909.723 ; gain = 38.988 ; free physical = 7576 ; free virtual = 19086 + +Phase 8 Verifying routed nets + + Verification completed successfully +Phase 8 Verifying routed nets | Checksum: d648e34d + +Time (s): cpu = 00:00:09 ; elapsed = 00:00:07 . Memory (MB): peak = 1911.723 ; gain = 40.988 ; free physical = 7575 ; free virtual = 19085 + +Phase 9 Depositing Routes +Phase 9 Depositing Routes | Checksum: 42296b1e + +Time (s): cpu = 00:00:09 ; elapsed = 00:00:07 . Memory (MB): peak = 1911.723 ; gain = 40.988 ; free physical = 7576 ; free virtual = 19086 +INFO: [Route 35-16] Router Completed Successfully + +Time (s): cpu = 00:00:09 ; elapsed = 00:00:07 . Memory (MB): peak = 1911.723 ; gain = 40.988 ; free physical = 7591 ; free virtual = 19101 + +Routing Is Done. +42 Infos, 1 Warnings, 0 Critical Warnings and 0 Errors encountered. +route_design completed successfully +route_design: Time (s): cpu = 00:00:11 ; elapsed = 00:00:08 . Memory (MB): peak = 1937.754 ; gain = 67.020 ; free physical = 7592 ; free virtual = 19102 +Writing placer database... +Writing XDEF routing. +Writing XDEF routing logical nets. +Writing XDEF routing special nets. +Write XDEF Complete: Time (s): cpu = 00:00:00.02 ; elapsed = 00:00:00.02 . Memory (MB): peak = 1937.754 ; gain = 0.000 ; free physical = 7591 ; free virtual = 19102 +INFO: [Common 17-1381] The checkpoint '/home/jspear/Development/School/Comp_Arc/Lab0/project_1/project_1.runs/impl_1/lab0_wrapper_routed.dcp' has been generated. +Command: report_drc -file lab0_wrapper_drc_routed.rpt -pb lab0_wrapper_drc_routed.pb -rpx lab0_wrapper_drc_routed.rpx +INFO: [DRC 23-27] Running DRC with 4 threads +INFO: [Coretcl 2-168] The results of DRC are in file /home/jspear/Development/School/Comp_Arc/Lab0/project_1/project_1.runs/impl_1/lab0_wrapper_drc_routed.rpt. +report_drc completed successfully +Command: report_methodology -file lab0_wrapper_methodology_drc_routed.rpt -rpx lab0_wrapper_methodology_drc_routed.rpx +INFO: [Timing 38-35] Done setting XDC timing constraints. +INFO: [DRC 23-133] Running Methodology with 4 threads +INFO: [Coretcl 2-1520] The results of Report Methodology are in file /home/jspear/Development/School/Comp_Arc/Lab0/project_1/project_1.runs/impl_1/lab0_wrapper_methodology_drc_routed.rpt. +report_methodology completed successfully +Command: report_power -file lab0_wrapper_power_routed.rpt -pb lab0_wrapper_power_summary_routed.pb -rpx lab0_wrapper_power_routed.rpx +WARNING: [Power 33-232] No user defined clocks were found in the design! +Resolution: Please specify clocks using create_clock/create_generated_clock for sequential elements. For pure combinatorial circuits, please specify a virtual clock, otherwise the vectorless estimation might be inaccurate +INFO: [Timing 38-35] Done setting XDC timing constraints. +Running Vector-less Activity Propagation... + +Finished Running Vector-less Activity Propagation +49 Infos, 2 Warnings, 0 Critical Warnings and 0 Errors encountered. +report_power completed successfully +INFO: [Timing 38-91] UpdateTimingParams: Speed grade: -1, Delay Type: min_max. +INFO: [Timing 38-191] Multithreading enabled for timing update using a maximum of 4 CPUs +WARNING: [Timing 38-313] There are no user specified timing constraints. Timing constraints are needed for proper timing analysis. +INFO: [Common 17-206] Exiting Vivado at Wed Sep 27 19:29:05 2017... diff --git a/project_1/project_1.runs/impl_1/lab0_wrapper_clock_utilization_routed.rpt b/project_1/project_1.runs/impl_1/lab0_wrapper_clock_utilization_routed.rpt new file mode 100644 index 0000000..9ada4ff --- /dev/null +++ b/project_1/project_1.runs/impl_1/lab0_wrapper_clock_utilization_routed.rpt @@ -0,0 +1,140 @@ +Copyright 1986-2017 Xilinx, Inc. All Rights Reserved. +------------------------------------------------------------------------------------------ +| Tool Version : Vivado v.2017.2 (lin64) Build 1909853 Thu Jun 15 18:39:10 MDT 2017 +| Date : Wed Sep 27 19:50:49 2017 +| Host : Kreyshawn running 64-bit Ubuntu 14.04.5 LTS +| Command : report_clock_utilization -file lab0_wrapper_clock_utilization_routed.rpt +| Design : lab0_wrapper +| Device : 7z010-clg400 +| Speed File : -1 PRODUCTION 1.11 2014-09-11 +------------------------------------------------------------------------------------------ + +Clock Utilization Report + +Table of Contents +----------------- +1. Clock Primitive Utilization +2. Global Clock Resources +3. Global Clock Source Details +4. Clock Regions: Key Resource Utilization +5. Clock Regions : Global Clock Summary +6. Device Cell Placement Summary for Global Clock g0 +7. Clock Region Cell Placement per Global Clock: Region X1Y0 + +1. Clock Primitive Utilization +------------------------------ + ++----------+------+-----------+-----+--------------+--------+ +| Type | Used | Available | LOC | Clock Region | Pblock | ++----------+------+-----------+-----+--------------+--------+ +| BUFGCTRL | 1 | 32 | 0 | 0 | 0 | +| BUFH | 0 | 48 | 0 | 0 | 0 | +| BUFIO | 0 | 8 | 0 | 0 | 0 | +| BUFMR | 0 | 4 | 0 | 0 | 0 | +| BUFR | 0 | 8 | 0 | 0 | 0 | +| MMCM | 0 | 2 | 0 | 0 | 0 | +| PLL | 0 | 2 | 0 | 0 | 0 | ++----------+------+-----------+-----+--------------+--------+ + + +2. Global Clock Resources +------------------------- + ++-----------+-----------+-----------------+------------+----------------+--------------+-------------------+-------------+-----------------+--------------+-------+----------------------+---------------+ +| Global Id | Source Id | Driver Type/Pin | Constraint | Site | Clock Region | Load Clock Region | Clock Loads | Non-Clock Loads | Clock Period | Clock | Driver Pin | Net | ++-----------+-----------+-----------------+------------+----------------+--------------+-------------------+-------------+-----------------+--------------+-------+----------------------+---------------+ +| g0 | src0 | BUFG/O | None | BUFGCTRL_X0Y16 | n/a | 1 | 9 | 0 | | | clk_IBUF_BUFG_inst/O | clk_IBUF_BUFG | ++-----------+-----------+-----------------+------------+----------------+--------------+-------------------+-------------+-----------------+--------------+-------+----------------------+---------------+ +* Clock Loads column represents the clock pin loads (pin count) +** Non-Clock Loads column represents the non-clock pin loads (pin count) + + +3. Global Clock Source Details +------------------------------ + ++-----------+-----------+-----------------+------------+-----------+--------------+-------------+-----------------+---------------------+--------------+-----------------+----------+ +| Source Id | Global Id | Driver Type/Pin | Constraint | Site | Clock Region | Clock Loads | Non-Clock Loads | Source Clock Period | Source Clock | Driver Pin | Net | ++-----------+-----------+-----------------+------------+-----------+--------------+-------------+-----------------+---------------------+--------------+-----------------+----------+ +| src0 | g0 | IBUF/O | IOB_X0Y78 | IOB_X0Y78 | X1Y1 | 1 | 0 | | | clk_IBUF_inst/O | clk_IBUF | ++-----------+-----------+-----------------+------------+-----------+--------------+-------------+-----------------+---------------------+--------------+-----------------+----------+ +* Clock Loads column represents the clock pin loads (pin count) +** Non-Clock Loads column represents the non-clock pin loads (pin count) + + +4. Clock Regions: Key Resource Utilization +------------------------------------------ + ++-------------------+--------------+--------------+--------------+--------------+--------------+--------------+--------------+--------------+--------------+--------------+--------------+--------------+--------------+--------------+--------------+ +| | Global Clock | BUFRs | BUFMRs | BUFIOs | MMCM | PLL | GT | PCI | ILOGIC | OLOGIC | FF | LUTM | RAMB18 | RAMB36 | DSP48E2 | ++-------------------+------+-------+------+-------+------+-------+------+-------+------+-------+------+-------+------+-------+------+-------+------+-------+------+-------+------+-------+------+-------+------+-------+------+-------+------+-------+ +| Clock Region Name | Used | Avail | Used | Avail | Used | Avail | Used | Avail | Used | Avail | Used | Avail | Used | Avail | Used | Avail | Used | Avail | Used | Avail | Used | Avail | Used | Avail | Used | Avail | Used | Avail | Used | Avail | ++-------------------+------+-------+------+-------+------+-------+------+-------+------+-------+------+-------+------+-------+------+-------+------+-------+------+-------+------+-------+------+-------+------+-------+------+-------+------+-------+ +| X0Y0 | 0 | 12 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1100 | 0 | 400 | 0 | 20 | 0 | 10 | 0 | 20 | +| X1Y0 | 1 | 12 | 0 | 4 | 0 | 2 | 0 | 4 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 50 | 0 | 50 | 9 | 1100 | 4 | 350 | 0 | 40 | 0 | 20 | 0 | 20 | +| X0Y1 | 0 | 12 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1100 | 0 | 400 | 0 | 20 | 0 | 10 | 0 | 20 | +| X1Y1 | 0 | 12 | 0 | 4 | 0 | 2 | 0 | 4 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 50 | 0 | 50 | 0 | 1100 | 0 | 350 | 0 | 40 | 0 | 20 | 0 | 20 | ++-------------------+------+-------+------+-------+------+-------+------+-------+------+-------+------+-------+------+-------+------+-------+------+-------+------+-------+------+-------+------+-------+------+-------+------+-------+------+-------+ +* Global Clock column represents track count; while other columns represents cell counts + + +5. Clock Regions : Global Clock Summary +--------------------------------------- + ++----+----+----+ +| | X0 | X1 | ++----+----+----+ +| Y1 | 0 | 0 | +| Y0 | 0 | 1 | ++----+----+----+ + + +6. Device Cell Placement Summary for Global Clock g0 +---------------------------------------------------- + ++-----------+-----------------+-------------------+-------+-------------+---------------+-------------+----------+----------------+----------+---------------+ +| Global Id | Driver Type/Pin | Driver Region (D) | Clock | Period (ns) | Waveform (ns) | Slice Loads | IO Loads | Clocking Loads | GT Loads | Net | ++-----------+-----------------+-------------------+-------+-------------+---------------+-------------+----------+----------------+----------+---------------+ +| g0 | BUFG/O | n/a | | | | 9 | 0 | 0 | 0 | clk_IBUF_BUFG | ++-----------+-----------------+-------------------+-------+-------------+---------------+-------------+----------+----------------+----------+---------------+ +* Logic Loads column represents load cell count of all cell types other than IO, GT and clock resources +** IO Loads column represents load cell count of IO types +*** Clocking Loads column represents load cell count that are clock resources (global clock buffer, MMCM, PLL, etc) +**** GT Loads column represents load cell count of GT types + + ++----+----+----+ +| | X0 | X1 | ++----+----+----+ +| Y1 | 0 | 0 | +| Y0 | 0 | 9 | ++----+----+----+ + + +7. Clock Region Cell Placement per Global Clock: Region X1Y0 +------------------------------------------------------------ + ++-----------+-------+-----------------+------------+-------------+-----------------+----+--------+------+-----+----+------+-----+---------+---------------+ +| Global Id | Track | Driver Type/Pin | Constraint | Clock Loads | Non-Clock Loads | FF | LUTRAM | RAMB | DSP | GT | MMCM | PLL | Hard IP | Net | ++-----------+-------+-----------------+------------+-------------+-----------------+----+--------+------+-----+----+------+-----+---------+---------------+ +| g0 | n/a | BUFG/O | None | 9 | 0 | 9 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | clk_IBUF_BUFG | ++-----------+-------+-----------------+------------+-------------+-----------------+----+--------+------+-----+----+------+-----+---------+---------------+ +* Clock Loads column represents the clock pin loads (pin count) +** Non-Clock Loads column represents the non-clock pin loads (pin count) +*** Columns FF, LUTRAM, RAMB through 'Hard IP' represents load cell counts + + + +# Location of BUFG Primitives +set_property LOC BUFGCTRL_X0Y16 [get_cells clk_IBUF_BUFG_inst] + +# Location of IO Primitives which is load of clock spine + +# Location of clock ports +set_property LOC IOB_X0Y78 [get_ports clk] + +# Clock net "clk_IBUF_BUFG" driven by instance "clk_IBUF_BUFG_inst" located at site "BUFGCTRL_X0Y16" +#startgroup +create_pblock {CLKAG_clk_IBUF_BUFG} +add_cells_to_pblock [get_pblocks {CLKAG_clk_IBUF_BUFG}] [get_cells -filter { PRIMITIVE_GROUP != I/O && IS_PRIMITIVE==1 && PRIMITIVE_LEVEL !=INTERNAL } -of_object [get_pins -filter {DIRECTION==IN} -of_objects [get_nets -hierarchical -filter {PARENT=="clk_IBUF_BUFG"}]]] +resize_pblock [get_pblocks {CLKAG_clk_IBUF_BUFG}] -add {CLOCKREGION_X1Y0:CLOCKREGION_X1Y0} +#endgroup diff --git a/project_1/project_1.runs/impl_1/lab0_wrapper_control_sets_placed.rpt b/project_1/project_1.runs/impl_1/lab0_wrapper_control_sets_placed.rpt new file mode 100644 index 0000000..bab72e0 --- /dev/null +++ b/project_1/project_1.runs/impl_1/lab0_wrapper_control_sets_placed.rpt @@ -0,0 +1,64 @@ +Copyright 1986-2017 Xilinx, Inc. All Rights Reserved. +----------------------------------------------------------------------------------------- +| Tool Version : Vivado v.2017.2 (lin64) Build 1909853 Thu Jun 15 18:39:10 MDT 2017 +| Date : Wed Sep 27 19:50:38 2017 +| Host : Kreyshawn running 64-bit Ubuntu 14.04.5 LTS +| Command : report_control_sets -verbose -file lab0_wrapper_control_sets_placed.rpt +| Design : lab0_wrapper +| Device : xc7z010 +----------------------------------------------------------------------------------------- + +Control Set Information + +Table of Contents +----------------- +1. Summary +2. Flip-Flop Distribution +3. Detailed Control Set Information + +1. Summary +---------- + ++----------------------------------------------------------+-------+ +| Status | Count | ++----------------------------------------------------------+-------+ +| Number of unique control sets | 3 | +| Unused register locations in slices containing registers | 15 | ++----------------------------------------------------------+-------+ + + +2. Flip-Flop Distribution +------------------------- + ++--------------+-----------------------+------------------------+-----------------+--------------+ +| Clock Enable | Synchronous Set/Reset | Asynchronous Set/Reset | Total Registers | Total Slices | ++--------------+-----------------------+------------------------+-----------------+--------------+ +| No | No | No | 1 | 1 | +| No | No | Yes | 0 | 0 | +| No | Yes | No | 0 | 0 | +| Yes | No | No | 8 | 4 | +| Yes | No | Yes | 0 | 0 | +| Yes | Yes | No | 0 | 0 | ++--------------+-----------------------+------------------------+-----------------+--------------+ + + +3. Detailed Control Set Information +----------------------------------- + ++----------------+---------------+------------------+------------------+----------------+ +| Clock Signal | Enable Signal | Set/Reset Signal | Slice Load Count | Bel Load Count | ++----------------+---------------+------------------+------------------+----------------+ +| clk_IBUF_BUFG | | | 1 | 1 | +| clk_IBUF_BUFG | btn_IBUF[1] | | 2 | 4 | +| clk_IBUF_BUFG | btn_IBUF[0] | | 2 | 4 | ++----------------+---------------+------------------+------------------+----------------+ + + ++--------+-----------------------+ +| Fanout | Number of ControlSets | ++--------+-----------------------+ +| 1 | 1 | +| 4 | 2 | ++--------+-----------------------+ + + diff --git a/project_1/project_1.runs/impl_1/lab0_wrapper_drc_opted.rpt b/project_1/project_1.runs/impl_1/lab0_wrapper_drc_opted.rpt new file mode 100644 index 0000000..ad17e53 --- /dev/null +++ b/project_1/project_1.runs/impl_1/lab0_wrapper_drc_opted.rpt @@ -0,0 +1,41 @@ +Copyright 1986-2017 Xilinx, Inc. All Rights Reserved. +------------------------------------------------------------------------------------ +| Tool Version : Vivado v.2017.2 (lin64) Build 1909853 Thu Jun 15 18:39:10 MDT 2017 +| Date : Wed Sep 27 19:50:36 2017 +| Host : Kreyshawn running 64-bit Ubuntu 14.04.5 LTS +| Command : report_drc -file lab0_wrapper_drc_opted.rpt +| Design : lab0_wrapper +| Device : xc7z010clg400-1 +| Speed File : -1 +| Design State : Synthesized +------------------------------------------------------------------------------------ + +Report DRC + +Table of Contents +----------------- +1. REPORT SUMMARY +2. REPORT DETAILS + +1. REPORT SUMMARY +----------------- + Netlist: netlist + Floorplan: design_1 + Design limits: + Ruledeck: default + Max violations: + Violations found: 1 ++--------+----------+--------------------+------------+ +| Rule | Severity | Description | Violations | ++--------+----------+--------------------+------------+ +| ZPS7-1 | Warning | PS7 block required | 1 | ++--------+----------+--------------------+------------+ + +2. REPORT DETAILS +----------------- +ZPS7-1#1 Warning +PS7 block required +The PS7 cell must be used in this Zynq design in order to enable correct default configuration. +Related violations: + + diff --git a/project_1/project_1.runs/impl_1/lab0_wrapper_drc_routed.pb b/project_1/project_1.runs/impl_1/lab0_wrapper_drc_routed.pb new file mode 100644 index 0000000..70698d1 Binary files /dev/null and b/project_1/project_1.runs/impl_1/lab0_wrapper_drc_routed.pb differ diff --git a/project_1/project_1.runs/impl_1/lab0_wrapper_drc_routed.rpt b/project_1/project_1.runs/impl_1/lab0_wrapper_drc_routed.rpt new file mode 100644 index 0000000..f9ca882 --- /dev/null +++ b/project_1/project_1.runs/impl_1/lab0_wrapper_drc_routed.rpt @@ -0,0 +1,41 @@ +Copyright 1986-2017 Xilinx, Inc. All Rights Reserved. +------------------------------------------------------------------------------------------------------------------------------ +| Tool Version : Vivado v.2017.2 (lin64) Build 1909853 Thu Jun 15 18:39:10 MDT 2017 +| Date : Wed Sep 27 19:50:48 2017 +| Host : Kreyshawn running 64-bit Ubuntu 14.04.5 LTS +| Command : report_drc -file lab0_wrapper_drc_routed.rpt -pb lab0_wrapper_drc_routed.pb -rpx lab0_wrapper_drc_routed.rpx +| Design : lab0_wrapper +| Device : xc7z010clg400-1 +| Speed File : -1 +| Design State : Routed +------------------------------------------------------------------------------------------------------------------------------ + +Report DRC + +Table of Contents +----------------- +1. REPORT SUMMARY +2. REPORT DETAILS + +1. REPORT SUMMARY +----------------- + Netlist: netlist + Floorplan: design_1 + Design limits: + Ruledeck: default + Max violations: + Violations found: 1 ++--------+----------+--------------------+------------+ +| Rule | Severity | Description | Violations | ++--------+----------+--------------------+------------+ +| ZPS7-1 | Warning | PS7 block required | 1 | ++--------+----------+--------------------+------------+ + +2. REPORT DETAILS +----------------- +ZPS7-1#1 Warning +PS7 block required +The PS7 cell must be used in this Zynq design in order to enable correct default configuration. +Related violations: + + diff --git a/project_1/project_1.runs/impl_1/lab0_wrapper_drc_routed.rpx b/project_1/project_1.runs/impl_1/lab0_wrapper_drc_routed.rpx new file mode 100644 index 0000000..77afdd7 Binary files /dev/null and b/project_1/project_1.runs/impl_1/lab0_wrapper_drc_routed.rpx differ diff --git a/project_1/project_1.runs/impl_1/lab0_wrapper_io_placed.rpt b/project_1/project_1.runs/impl_1/lab0_wrapper_io_placed.rpt new file mode 100644 index 0000000..386fb0f --- /dev/null +++ b/project_1/project_1.runs/impl_1/lab0_wrapper_io_placed.rpt @@ -0,0 +1,442 @@ +Copyright 1986-2017 Xilinx, Inc. All Rights Reserved. +------------------------------------------------------------------------------------------------- +| Tool Version : Vivado v.2017.2 (lin64) Build 1909853 Thu Jun 15 18:39:10 MDT 2017 +| Date : Wed Sep 27 19:50:38 2017 +| Host : Kreyshawn running 64-bit Ubuntu 14.04.5 LTS +| Command : report_io -file lab0_wrapper_io_placed.rpt +| Design : lab0_wrapper +| Device : xc7z010 +| Speed File : -1 +| Package : clg400 +| Package Version : FINAL 2012-10-23 +| Package Pin Delay Version : VERS. 2.0 2012-10-23 +------------------------------------------------------------------------------------------------- + +IO Information + +Table of Contents +----------------- +1. Summary +2. IO Assignments by Package Pin + +1. Summary +---------- + ++---------------+ +| Total User IO | ++---------------+ +| 13 | ++---------------+ + + +2. IO Assignments by Package Pin +-------------------------------- + ++------------+-------------+------------+-------------------------+---------------+-------------+---------+------------+------+---------------------+----------------------+---------+------------+-----------+----------+------+------------------+ +| Pin Number | Signal Name | Bank Type | Pin Name | Use | IO Standard | IO Bank | Drive (mA) | Slew | On-Chip Termination | Off-Chip Termination | Voltage | Constraint | Pull Type | DQS Bias | Vref | Signal Integrity | ++------------+-------------+------------+-------------------------+---------------+-------------+---------+------------+------+---------------------+----------------------+---------+------------+-----------+----------+------+------------------+ +| A1 | | | PS_DDR_DM0_502 | PSS IO | | | | | | | | | | | | | +| A2 | | | PS_DDR_DQ2_502 | PSS IO | | | | | | | | | | | | | +| A3 | | | VCCO_DDR_502 | VCCO | | | | | | | any** | | | | | | +| A4 | | | PS_DDR_DQ3_502 | PSS IO | | | | | | | | | | | | | +| A5 | | | PS_MIO6_500 | PSS IO | | | | | | | | | | | | | +| A6 | | | PS_MIO5_500 | PSS IO | | | | | | | | | | | | | +| A7 | | | PS_MIO1_500 | PSS IO | | | | | | | | | | | | | +| A8 | | | GND | GND | | | | | | | 0.0 | | | | | | +| A9 | | | PS_MIO43_501 | PSS IO | | | | | | | | | | | | | +| A10 | | | PS_MIO37_501 | PSS IO | | | | | | | | | | | | | +| A11 | | | PS_MIO36_501 | PSS IO | | | | | | | | | | | | | +| A12 | | | PS_MIO34_501 | PSS IO | | | | | | | | | | | | | +| A13 | | | VCCO_MIO1_501 | VCCO | | | | | | | any** | | | | | | +| A14 | | | PS_MIO32_501 | PSS IO | | | | | | | | | | | | | +| A15 | | | PS_MIO26_501 | PSS IO | | | | | | | | | | | | | +| A16 | | | PS_MIO24_501 | PSS IO | | | | | | | | | | | | | +| A17 | | | PS_MIO20_501 | PSS IO | | | | | | | | | | | | | +| A18 | | | GND | GND | | | | | | | 0.0 | | | | | | +| A19 | | | PS_MIO16_501 | PSS IO | | | | | | | | | | | | | +| A20 | | High Range | IO_L2N_T0_AD8N_35 | User IO | | 35 | | | | | | | | | | | +| B1 | | | GND | GND | | | | | | | 0.0 | | | | | | +| B2 | | | PS_DDR_DQS_N0_502 | PSS IO | | | | | | | | | | | | | +| B3 | | | PS_DDR_DQ1_502 | PSS IO | | | | | | | | | | | | | +| B4 | | | PS_DDR_DRST_B_502 | PSS IO | | | | | | | | | | | | | +| B5 | | | PS_MIO9_500 | PSS IO | | | | | | | | | | | | | +| B6 | | | VCCO_MIO0_500 | VCCO | | | | | | | any** | | | | | | +| B7 | | | PS_MIO4_500 | PSS IO | | | | | | | | | | | | | +| B8 | | | PS_MIO2_500 | PSS IO | | | | | | | | | | | | | +| B9 | | | PS_MIO51_501 | PSS IO | | | | | | | | | | | | | +| B10 | | | PS_SRST_B_501 | PSS IO | | | | | | | | | | | | | +| B11 | | | GND | GND | | | | | | | 0.0 | | | | | | +| B12 | | | PS_MIO48_501 | PSS IO | | | | | | | | | | | | | +| B13 | | | PS_MIO50_501 | PSS IO | | | | | | | | | | | | | +| B14 | | | PS_MIO47_501 | PSS IO | | | | | | | | | | | | | +| B15 | | | PS_MIO45_501 | PSS IO | | | | | | | | | | | | | +| B16 | | | VCCO_MIO1_501 | VCCO | | | | | | | any** | | | | | | +| B17 | | | PS_MIO22_501 | PSS IO | | | | | | | | | | | | | +| B18 | | | PS_MIO18_501 | PSS IO | | | | | | | | | | | | | +| B19 | | High Range | IO_L2P_T0_AD8P_35 | User IO | | 35 | | | | | | | | | | | +| B20 | | High Range | IO_L1N_T0_AD0N_35 | User IO | | 35 | | | | | | | | | | | +| C1 | | | PS_DDR_DQ6_502 | PSS IO | | | | | | | | | | | | | +| C2 | | | PS_DDR_DQS_P0_502 | PSS IO | | | | | | | | | | | | | +| C3 | | | PS_DDR_DQ0_502 | PSS IO | | | | | | | | | | | | | +| C4 | | | GND | GND | | | | | | | 0.0 | | | | | | +| C5 | | | PS_MIO14_500 | PSS IO | | | | | | | | | | | | | +| C6 | | | PS_MIO11_500 | PSS IO | | | | | | | | | | | | | +| C7 | | | PS_POR_B_500 | PSS IO | | | | | | | | | | | | | +| C8 | | | PS_MIO15_500 | PSS IO | | | | | | | | | | | | | +| C9 | | | GND | GND | | | | | | | 0.0 | | | | | | +| C10 | | | PS_MIO52_501 | PSS IO | | | | | | | | | | | | | +| C11 | | | PS_MIO53_501 | PSS IO | | | | | | | | | | | | | +| C12 | | | PS_MIO49_501 | PSS IO | | | | | | | | | | | | | +| C13 | | | PS_MIO29_501 | PSS IO | | | | | | | | | | | | | +| C14 | | | GND | GND | | | | | | | 0.0 | | | | | | +| C15 | | | PS_MIO30_501 | PSS IO | | | | | | | | | | | | | +| C16 | | | PS_MIO28_501 | PSS IO | | | | | | | | | | | | | +| C17 | | | PS_MIO41_501 | PSS IO | | | | | | | | | | | | | +| C18 | | | PS_MIO39_501 | PSS IO | | | | | | | | | | | | | +| C19 | | High Range | VCCO_35 | VCCO | | 35 | | | | | 3.30 | | | | | | +| C20 | | High Range | IO_L1P_T0_AD0P_35 | User IO | | 35 | | | | | | | | | | | +| D1 | | | PS_DDR_DQ5_502 | PSS IO | | | | | | | | | | | | | +| D2 | | | VCCO_DDR_502 | VCCO | | | | | | | any** | | | | | | +| D3 | | | PS_DDR_DQ4_502 | PSS IO | | | | | | | | | | | | | +| D4 | | | PS_DDR_A13_502 | PSS IO | | | | | | | | | | | | | +| D5 | | | PS_MIO8_500 | PSS IO | | | | | | | | | | | | | +| D6 | | | PS_MIO3_500 | PSS IO | | | | | | | | | | | | | +| D7 | | | VCCO_MIO0_500 | VCCO | | | | | | | any** | | | | | | +| D8 | | | PS_MIO7_500 | PSS IO | | | | | | | | | | | | | +| D9 | | | PS_MIO12_500 | PSS IO | | | | | | | | | | | | | +| D10 | | | PS_MIO19_501 | PSS IO | | | | | | | | | | | | | +| D11 | | | PS_MIO23_501 | PSS IO | | | | | | | | | | | | | +| D12 | | | VCCO_MIO1_501 | VCCO | | | | | | | any** | | | | | | +| D13 | | | PS_MIO27_501 | PSS IO | | | | | | | | | | | | | +| D14 | | | PS_MIO40_501 | PSS IO | | | | | | | | | | | | | +| D15 | | | PS_MIO33_501 | PSS IO | | | | | | | | | | | | | +| D16 | | | PS_MIO46_501 | PSS IO | | | | | | | | | | | | | +| D17 | | | GND | GND | | | | | | | 0.0 | | | | | | +| D18 | led[3] | High Range | IO_L3N_T0_DQS_AD1N_35 | OUTPUT | LVCMOS33 | 35 | 12 | SLOW | | FP_VTT_50 | | FIXED | | | | NONE | +| D19 | | High Range | IO_L4P_T0_35 | User IO | | 35 | | | | | | | | | | | +| D20 | | High Range | IO_L4N_T0_35 | User IO | | 35 | | | | | | | | | | | +| E1 | | | PS_DDR_DQ7_502 | PSS IO | | | | | | | | | | | | | +| E2 | | | PS_DDR_DQ8_502 | PSS IO | | | | | | | | | | | | | +| E3 | | | PS_DDR_DQ9_502 | PSS IO | | | | | | | | | | | | | +| E4 | | | PS_DDR_A12_502 | PSS IO | | | | | | | | | | | | | +| E5 | | | VCCO_DDR_502 | VCCO | | | | | | | any** | | | | | | +| E6 | | | PS_MIO0_500 | PSS IO | | | | | | | | | | | | | +| E7 | | | PS_CLK_500 | PSS Clock | | | | | | | | | | | | | +| E8 | | | PS_MIO13_500 | PSS IO | | | | | | | | | | | | | +| E9 | | | PS_MIO10_500 | PSS IO | | | | | | | | | | | | | +| E10 | | | GND | GND | | | | | | | 0.0 | | | | | | +| E11 | | | PS_MIO_VREF_501 | PSS IO | | | | | | | | | | | | | +| E12 | | | PS_MIO42_501 | PSS IO | | | | | | | | | | | | | +| E13 | | | PS_MIO38_501 | PSS IO | | | | | | | | | | | | | +| E14 | | | PS_MIO17_501 | PSS IO | | | | | | | | | | | | | +| E15 | | | VCCO_MIO1_501 | VCCO | | | | | | | any** | | | | | | +| E16 | | | PS_MIO31_501 | PSS IO | | | | | | | | | | | | | +| E17 | | High Range | IO_L3P_T0_DQS_AD1P_35 | User IO | | 35 | | | | | | | | | | | +| E18 | | High Range | IO_L5P_T0_AD9P_35 | User IO | | 35 | | | | | | | | | | | +| E19 | | High Range | IO_L5N_T0_AD9N_35 | User IO | | 35 | | | | | | | | | | | +| E20 | | | GND | GND | | | | | | | 0.0 | | | | | | +| F1 | | | PS_DDR_DM1_502 | PSS IO | | | | | | | | | | | | | +| F2 | | | PS_DDR_DQS_N1_502 | PSS IO | | | | | | | | | | | | | +| F3 | | | GND | GND | | | | | | | 0.0 | | | | | | +| F4 | | | PS_DDR_A14_502 | PSS IO | | | | | | | | | | | | | +| F5 | | | PS_DDR_A10_502 | PSS IO | | | | | | | | | | | | | +| F6 | | Dedicated | TDO_0 | Config | | 0 | | | | | | | | | | | +| F7 | | | GND | GND | | | | | | | 0.0 | | | | | | +| F8 | | | VCCPAUX | PSS VCCAUX | | | | | | | | | | | | | +| F9 | | Dedicated | TCK_0 | Config | | 0 | | | | | | | | | | | +| F10 | | | RSVDGND | GND | | | | | | | | | | | | | +| F11 | | Dedicated | VCCBATT_0 | Config | | 0 | | | | | | | | | | | +| F12 | | | PS_MIO35_501 | PSS IO | | | | | | | | | | | | | +| F13 | | | PS_MIO44_501 | PSS IO | | | | | | | | | | | | | +| F14 | | | PS_MIO21_501 | PSS IO | | | | | | | | | | | | | +| F15 | | | PS_MIO25_501 | PSS IO | | | | | | | | | | | | | +| F16 | | High Range | IO_L6P_T0_35 | User IO | | 35 | | | | | | | | | | | +| F17 | | High Range | IO_L6N_T0_VREF_35 | User IO | | 35 | | | | | | | | | | | +| F18 | | High Range | VCCO_35 | VCCO | | 35 | | | | | 3.30 | | | | | | +| F19 | | High Range | IO_L15P_T2_DQS_AD12P_35 | User IO | | 35 | | | | | | | | | | | +| F20 | | High Range | IO_L15N_T2_DQS_AD12N_35 | User IO | | 35 | | | | | | | | | | | +| G1 | | | VCCO_DDR_502 | VCCO | | | | | | | any** | | | | | | +| G2 | | | PS_DDR_DQS_P1_502 | PSS IO | | | | | | | | | | | | | +| G3 | | | PS_DDR_DQ10_502 | PSS IO | | | | | | | | | | | | | +| G4 | | | PS_DDR_A11_502 | PSS IO | | | | | | | | | | | | | +| G5 | | | PS_DDR_VRN_502 | PSS IO | | | | | | | | | | | | | +| G6 | | Dedicated | TDI_0 | Config | | 0 | | | | | | | | | | | +| G7 | | | VCCPINT | PSS VCCINT | | | | | | | | | | | | | +| G8 | | | VCCPLL | PSS VCCPLL | | | | | | | | | | | | | +| G9 | | | VCCPAUX | PSS VCCAUX | | | | | | | | | | | | | +| G10 | | | GND | GND | | | | | | | 0.0 | | | | | | +| G11 | | | VCCBRAM | VCCBRAM | | | | | | | | | | | | | +| G12 | | | GND | GND | | | | | | | 0.0 | | | | | | +| G13 | | | VCCINT | VCCINT | | | | | | | | | | | | | +| G14 | led[2] | High Range | IO_0_35 | OUTPUT | LVCMOS33 | 35 | 12 | SLOW | | FP_VTT_50 | | FIXED | | | | NONE | +| G15 | sw[0] | High Range | IO_L19N_T3_VREF_35 | INPUT | LVCMOS33 | 35 | | | | NONE | | FIXED | | | | NONE | +| G16 | | | GND | GND | | | | | | | 0.0 | | | | | | +| G17 | | High Range | IO_L16P_T2_35 | User IO | | 35 | | | | | | | | | | | +| G18 | | High Range | IO_L16N_T2_35 | User IO | | 35 | | | | | | | | | | | +| G19 | | High Range | IO_L18P_T2_AD13P_35 | User IO | | 35 | | | | | | | | | | | +| G20 | | High Range | IO_L18N_T2_AD13N_35 | User IO | | 35 | | | | | | | | | | | +| H1 | | | PS_DDR_DQ14_502 | PSS IO | | | | | | | | | | | | | +| H2 | | | PS_DDR_DQ13_502 | PSS IO | | | | | | | | | | | | | +| H3 | | | PS_DDR_DQ11_502 | PSS IO | | | | | | | | | | | | | +| H4 | | | VCCO_DDR_502 | VCCO | | | | | | | any** | | | | | | +| H5 | | | PS_DDR_VRP_502 | PSS IO | | | | | | | | | | | | | +| H6 | | | PS_DDR_VREF0_502 | PSS IO | | | | | | | | | | | | | +| H7 | | | GND | GND | | | | | | | 0.0 | | | | | | +| H8 | | | VCCPAUX | PSS VCCAUX | | | | | | | | | | | | | +| H9 | | | GND | GND | | | | | | | 0.0 | | | | | | +| H10 | | | VCCBRAM | VCCBRAM | | | | | | | | | | | | | +| H11 | | | GND | GND | | | | | | | 0.0 | | | | | | +| H12 | | | VCCINT | VCCINT | | | | | | | | | | | | | +| H13 | | | GND | GND | | | | | | | 0.0 | | | | | | +| H14 | | High Range | VCCO_35 | VCCO | | 35 | | | | | 3.30 | | | | | | +| H15 | | High Range | IO_L19P_T3_35 | User IO | | 35 | | | | | | | | | | | +| H16 | | High Range | IO_L13P_T2_MRCC_35 | User IO | | 35 | | | | | | | | | | | +| H17 | | High Range | IO_L13N_T2_MRCC_35 | User IO | | 35 | | | | | | | | | | | +| H18 | | High Range | IO_L14N_T2_AD4N_SRCC_35 | User IO | | 35 | | | | | | | | | | | +| H19 | | | GND | GND | | | | | | | 0.0 | | | | | | +| H20 | | High Range | IO_L17N_T2_AD5N_35 | User IO | | 35 | | | | | | | | | | | +| J1 | | | PS_DDR_DQ15_502 | PSS IO | | | | | | | | | | | | | +| J2 | | | GND | GND | | | | | | | 0.0 | | | | | | +| J3 | | | PS_DDR_DQ12_502 | PSS IO | | | | | | | | | | | | | +| J4 | | | PS_DDR_A9_502 | PSS IO | | | | | | | | | | | | | +| J5 | | | PS_DDR_BA2_502 | PSS IO | | | | | | | | | | | | | +| J6 | | Dedicated | TMS_0 | Config | | 0 | | | | | | | | | | | +| J7 | | | VCCPINT | PSS VCCINT | | | | | | | | | | | | | +| J8 | | | GND | GND | | | | | | | 0.0 | | | | | | +| J9 | | Dedicated | VCCADC_0 | XADC | | 0 | | | | | | | | | | | +| J10 | | Dedicated | GNDADC_0 | XADC | | 0 | | | | | | | | | | | +| J11 | | | VCCAUX | VCCAUX | | | | | | | 1.80 | | | | | | +| J12 | | | GND | GND | | | | | | | 0.0 | | | | | | +| J13 | | | VCCINT | VCCINT | | | | | | | | | | | | | +| J14 | | High Range | IO_L20N_T3_AD6N_35 | User IO | | 35 | | | | | | | | | | | +| J15 | | High Range | IO_25_35 | User IO | | 35 | | | | | | | | | | | +| J16 | | High Range | IO_L24N_T3_AD15N_35 | User IO | | 35 | | | | | | | | | | | +| J17 | | High Range | VCCO_35 | VCCO | | 35 | | | | | 3.30 | | | | | | +| J18 | | High Range | IO_L14P_T2_AD4P_SRCC_35 | User IO | | 35 | | | | | | | | | | | +| J19 | | High Range | IO_L10N_T1_AD11N_35 | User IO | | 35 | | | | | | | | | | | +| J20 | | High Range | IO_L17P_T2_AD5P_35 | User IO | | 35 | | | | | | | | | | | +| K1 | | | PS_DDR_A8_502 | PSS IO | | | | | | | | | | | | | +| K2 | | | PS_DDR_A1_502 | PSS IO | | | | | | | | | | | | | +| K3 | | | PS_DDR_A3_502 | PSS IO | | | | | | | | | | | | | +| K4 | | | PS_DDR_A7_502 | PSS IO | | | | | | | | | | | | | +| K5 | | | GND | GND | | | | | | | 0.0 | | | | | | +| K6 | | Dedicated | VCCO_0 | VCCO | | 0 | | | | | any** | | | | | | +| K7 | | | GND | GND | | | | | | | 0.0 | | | | | | +| K8 | | | VCCPAUX | PSS VCCAUX | | | | | | | | | | | | | +| K9 | | Dedicated | VP_0 | XADC | | 0 | | | | | | | | | | | +| K10 | | Dedicated | VREFN_0 | XADC | | 0 | | | | | | | | | | | +| K11 | | | GND | GND | | | | | | | 0.0 | | | | | | +| K12 | | | VCCINT | VCCINT | | | | | | | | | | | | | +| K13 | | | GND | GND | | | | | | | 0.0 | | | | | | +| K14 | | High Range | IO_L20P_T3_AD6P_35 | User IO | | 35 | | | | | | | | | | | +| K15 | | | GND | GND | | | | | | | 0.0 | | | | | | +| K16 | | High Range | IO_L24P_T3_AD15P_35 | User IO | | 35 | | | | | | | | | | | +| K17 | | High Range | IO_L12P_T1_MRCC_35 | User IO | | 35 | | | | | | | | | | | +| K18 | | High Range | IO_L12N_T1_MRCC_35 | User IO | | 35 | | | | | | | | | | | +| K19 | | High Range | IO_L10P_T1_AD11P_35 | User IO | | 35 | | | | | | | | | | | +| K20 | | High Range | VCCO_35 | VCCO | | 35 | | | | | 3.30 | | | | | | +| L1 | | | PS_DDR_A5_502 | PSS IO | | | | | | | | | | | | | +| L2 | | | PS_DDR_CKP_502 | PSS IO | | | | | | | | | | | | | +| L3 | | | VCCO_DDR_502 | VCCO | | | | | | | any** | | | | | | +| L4 | | | PS_DDR_A6_502 | PSS IO | | | | | | | | | | | | | +| L5 | | | PS_DDR_BA0_502 | PSS IO | | | | | | | | | | | | | +| L6 | | Dedicated | PROGRAM_B_0 | Config | | 0 | | | | | | | | | | | +| L7 | | | VCCPINT | PSS VCCINT | | | | | | | | | | | | | +| L8 | | | GND | GND | | | | | | | 0.0 | | | | | | +| L9 | | Dedicated | VREFP_0 | XADC | | 0 | | | | | | | | | | | +| L10 | | Dedicated | VN_0 | XADC | | 0 | | | | | | | | | | | +| L11 | | | VCCAUX | VCCAUX | | | | | | | 1.80 | | | | | | +| L12 | | | GND | GND | | | | | | | 0.0 | | | | | | +| L13 | | | VCCINT | VCCINT | | | | | | | | | | | | | +| L14 | | High Range | IO_L22P_T3_AD7P_35 | User IO | | 35 | | | | | | | | | | | +| L15 | | High Range | IO_L22N_T3_AD7N_35 | User IO | | 35 | | | | | | | | | | | +| L16 | clk | High Range | IO_L11P_T1_SRCC_35 | INPUT | LVCMOS33 | 35 | | | | NONE | | FIXED | | | | NONE | +| L17 | | High Range | IO_L11N_T1_SRCC_35 | User IO | | 35 | | | | | | | | | | | +| L18 | | | GND | GND | | | | | | | 0.0 | | | | | | +| L19 | | High Range | IO_L9P_T1_DQS_AD3P_35 | User IO | | 35 | | | | | | | | | | | +| L20 | | High Range | IO_L9N_T1_DQS_AD3N_35 | User IO | | 35 | | | | | | | | | | | +| M1 | | | GND | GND | | | | | | | 0.0 | | | | | | +| M2 | | | PS_DDR_CKN_502 | PSS IO | | | | | | | | | | | | | +| M3 | | | PS_DDR_A2_502 | PSS IO | | | | | | | | | | | | | +| M4 | | | PS_DDR_A4_502 | PSS IO | | | | | | | | | | | | | +| M5 | | | PS_DDR_WE_B_502 | PSS IO | | | | | | | | | | | | | +| M6 | | Dedicated | CFGBVS_0 | Config | | 0 | | | | | | | | | | | +| M7 | | | GND | GND | | | | | | | 0.0 | | | | | | +| M8 | | | VCCPAUX | PSS VCCAUX | | | | | | | | | | | | | +| M9 | | Dedicated | DXP_0 | Temp Sensor | | 0 | | | | | | | | | | | +| M10 | | Dedicated | DXN_0 | Temp Sensor | | 0 | | | | | | | | | | | +| M11 | | | GND | GND | | | | | | | 0.0 | | | | | | +| M12 | | | VCCINT | VCCINT | | | | | | | | | | | | | +| M13 | | | GND | GND | | | | | | | 0.0 | | | | | | +| M14 | led[0] | High Range | IO_L23P_T3_35 | OUTPUT | LVCMOS33 | 35 | 12 | SLOW | | FP_VTT_50 | | FIXED | | | | NONE | +| M15 | led[1] | High Range | IO_L23N_T3_35 | OUTPUT | LVCMOS33 | 35 | 12 | SLOW | | FP_VTT_50 | | FIXED | | | | NONE | +| M16 | | High Range | VCCO_35 | VCCO | | 35 | | | | | 3.30 | | | | | | +| M17 | | High Range | IO_L8P_T1_AD10P_35 | User IO | | 35 | | | | | | | | | | | +| M18 | | High Range | IO_L8N_T1_AD10N_35 | User IO | | 35 | | | | | | | | | | | +| M19 | | High Range | IO_L7P_T1_AD2P_35 | User IO | | 35 | | | | | | | | | | | +| M20 | | High Range | IO_L7N_T1_AD2N_35 | User IO | | 35 | | | | | | | | | | | +| N1 | | | PS_DDR_CS_B_502 | PSS IO | | | | | | | | | | | | | +| N2 | | | PS_DDR_A0_502 | PSS IO | | | | | | | | | | | | | +| N3 | | | PS_DDR_CKE_502 | PSS IO | | | | | | | | | | | | | +| N4 | | | GND | GND | | | | | | | 0.0 | | | | | | +| N5 | | | PS_DDR_ODT_502 | PSS IO | | | | | | | | | | | | | +| N6 | | | RSVDVCC3 | Reserved | | | | | | | | | | | | | +| N7 | | | VCCPINT | PSS VCCINT | | | | | | | | | | | | | +| N8 | | | GND | GND | | | | | | | 0.0 | | | | | | +| N9 | | | VCCAUX | VCCAUX | | | | | | | 1.80 | | | | | | +| N10 | | | GND | GND | | | | | | | 0.0 | | | | | | +| N11 | | | VCCAUX | VCCAUX | | | | | | | 1.80 | | | | | | +| N12 | | | GND | GND | | | | | | | 0.0 | | | | | | +| N13 | | | VCCINT | VCCINT | | | | | | | | | | | | | +| N14 | | | GND | GND | | | | | | | 0.0 | | | | | | +| N15 | | High Range | IO_L21P_T3_DQS_AD14P_35 | User IO | | 35 | | | | | | | | | | | +| N16 | | High Range | IO_L21N_T3_DQS_AD14N_35 | User IO | | 35 | | | | | | | | | | | +| N17 | | High Range | IO_L23P_T3_34 | User IO | | 34 | | | | | | | | | | | +| N18 | | High Range | IO_L13P_T2_MRCC_34 | User IO | | 34 | | | | | | | | | | | +| N19 | | High Range | VCCO_34 | VCCO | | 34 | | | | | 3.30 | | | | | | +| N20 | | High Range | IO_L14P_T2_SRCC_34 | User IO | | 34 | | | | | | | | | | | +| P1 | | | PS_DDR_DQ16_502 | PSS IO | | | | | | | | | | | | | +| P2 | | | VCCO_DDR_502 | VCCO | | | | | | | any** | | | | | | +| P3 | | | PS_DDR_DQ17_502 | PSS IO | | | | | | | | | | | | | +| P4 | | | PS_DDR_RAS_B_502 | PSS IO | | | | | | | | | | | | | +| P5 | | | PS_DDR_CAS_B_502 | PSS IO | | | | | | | | | | | | | +| P6 | | | PS_DDR_VREF1_502 | PSS IO | | | | | | | | | | | | | +| P7 | | | GND | GND | | | | | | | 0.0 | | | | | | +| P8 | | | VCCPINT | PSS VCCINT | | | | | | | | | | | | | +| P9 | | | GND | GND | | | | | | | 0.0 | | | | | | +| P10 | | | VCCAUX | VCCAUX | | | | | | | 1.80 | | | | | | +| P11 | | | GND | GND | | | | | | | 0.0 | | | | | | +| P12 | | | VCCINT | VCCINT | | | | | | | | | | | | | +| P13 | | | GND | GND | | | | | | | 0.0 | | | | | | +| P14 | | High Range | IO_L6P_T0_34 | User IO | | 34 | | | | | | | | | | | +| P15 | sw[1] | High Range | IO_L24P_T3_34 | INPUT | LVCMOS33 | 34 | | | | NONE | | FIXED | | | | NONE | +| P16 | btn[1] | High Range | IO_L24N_T3_34 | INPUT | LVCMOS33 | 34 | | | | NONE | | FIXED | | | | NONE | +| P17 | | | GND | GND | | | | | | | 0.0 | | | | | | +| P18 | | High Range | IO_L23N_T3_34 | User IO | | 34 | | | | | | | | | | | +| P19 | | High Range | IO_L13N_T2_MRCC_34 | User IO | | 34 | | | | | | | | | | | +| P20 | | High Range | IO_L14N_T2_SRCC_34 | User IO | | 34 | | | | | | | | | | | +| R1 | | | PS_DDR_DQ19_502 | PSS IO | | | | | | | | | | | | | +| R2 | | | PS_DDR_DQS_P2_502 | PSS IO | | | | | | | | | | | | | +| R3 | | | PS_DDR_DQ18_502 | PSS IO | | | | | | | | | | | | | +| R4 | | | PS_DDR_BA1_502 | PSS IO | | | | | | | | | | | | | +| R5 | | | VCCO_DDR_502 | VCCO | | | | | | | any** | | | | | | +| R6 | | | RSVDVCC2 | Reserved | | | | | | | | | | | | | +| R7 | | | VCCPINT | PSS VCCINT | | | | | | | | | | | | | +| R8 | | | GND | GND | | | | | | | 0.0 | | | | | | +| R9 | | | VCCAUX | VCCAUX | | | | | | | 1.80 | | | | | | +| R10 | | Dedicated | INIT_B_0 | Config | | 0 | | | | | | | | | | | +| R11 | | Dedicated | DONE_0 | Config | | 0 | | | | | | | | | | | +| R12 | | | GND | GND | | | | | | | 0.0 | | | | | | +| R13 | | | VCCINT | VCCINT | | | | | | | | | | | | | +| R14 | | High Range | IO_L6N_T0_VREF_34 | User IO | | 34 | | | | | | | | | | | +| R15 | | High Range | VCCO_34 | VCCO | | 34 | | | | | 3.30 | | | | | | +| R16 | | High Range | IO_L19P_T3_34 | User IO | | 34 | | | | | | | | | | | +| R17 | | High Range | IO_L19N_T3_VREF_34 | User IO | | 34 | | | | | | | | | | | +| R18 | btn[0] | High Range | IO_L20N_T3_34 | INPUT | LVCMOS33 | 34 | | | | NONE | | FIXED | | | | NONE | +| R19 | | High Range | IO_0_34 | User IO | | 34 | | | | | | | | | | | +| R20 | | | GND | GND | | | | | | | 0.0 | | | | | | +| T1 | | | PS_DDR_DM2_502 | PSS IO | | | | | | | | | | | | | +| T2 | | | PS_DDR_DQS_N2_502 | PSS IO | | | | | | | | | | | | | +| T3 | | | GND | GND | | | | | | | 0.0 | | | | | | +| T4 | | | PS_DDR_DQ20_502 | PSS IO | | | | | | | | | | | | | +| T5 | | | NC | Not Connected | | | | | | | | | | | | | +| T6 | | | RSVDVCC1 | Reserved | | | | | | | | | | | | | +| T7 | | | GND | GND | | | | | | | 0.0 | | | | | | +| T8 | | Dedicated | VCCO_13 | VCCO | | 13 | | | | | any** | | | | | | +| T9 | | | NC | Not Connected | | | | | | | | | | | | | +| T10 | | High Range | IO_L1N_T0_34 | User IO | | 34 | | | | | | | | | | | +| T11 | | High Range | IO_L1P_T0_34 | User IO | | 34 | | | | | | | | | | | +| T12 | | High Range | IO_L2P_T0_34 | User IO | | 34 | | | | | | | | | | | +| T13 | | | GND | GND | | | | | | | 0.0 | | | | | | +| T14 | | High Range | IO_L5P_T0_34 | User IO | | 34 | | | | | | | | | | | +| T15 | | High Range | IO_L5N_T0_34 | User IO | | 34 | | | | | | | | | | | +| T16 | sw[3] | High Range | IO_L9P_T1_DQS_34 | INPUT | LVCMOS33 | 34 | | | | NONE | | FIXED | | | | NONE | +| T17 | | High Range | IO_L20P_T3_34 | User IO | | 34 | | | | | | | | | | | +| T18 | | High Range | VCCO_34 | VCCO | | 34 | | | | | 3.30 | | | | | | +| T19 | | High Range | IO_25_34 | User IO | | 34 | | | | | | | | | | | +| T20 | | High Range | IO_L15P_T2_DQS_34 | User IO | | 34 | | | | | | | | | | | +| U1 | | | VCCO_DDR_502 | VCCO | | | | | | | any** | | | | | | +| U2 | | | PS_DDR_DQ22_502 | PSS IO | | | | | | | | | | | | | +| U3 | | | PS_DDR_DQ23_502 | PSS IO | | | | | | | | | | | | | +| U4 | | | PS_DDR_DQ21_502 | PSS IO | | | | | | | | | | | | | +| U5 | | | NC | Not Connected | | | | | | | | | | | | | +| U6 | | | GND | GND | | | | | | | 0.0 | | | | | | +| U7 | | | NC | Not Connected | | | | | | | | | | | | | +| U8 | | | NC | Not Connected | | | | | | | | | | | | | +| U9 | | | NC | Not Connected | | | | | | | | | | | | | +| U10 | | | NC | Not Connected | | | | | | | | | | | | | +| U11 | | Dedicated | VCCO_13 | VCCO | | 13 | | | | | any** | | | | | | +| U12 | | High Range | IO_L2N_T0_34 | User IO | | 34 | | | | | | | | | | | +| U13 | | High Range | IO_L3P_T0_DQS_PUDC_B_34 | User IO | | 34 | | | | | | | | | | | +| U14 | | High Range | IO_L11P_T1_SRCC_34 | User IO | | 34 | | | | | | | | | | | +| U15 | | High Range | IO_L11N_T1_SRCC_34 | User IO | | 34 | | | | | | | | | | | +| U16 | | | GND | GND | | | | | | | 0.0 | | | | | | +| U17 | | High Range | IO_L9N_T1_DQS_34 | User IO | | 34 | | | | | | | | | | | +| U18 | | High Range | IO_L12P_T1_MRCC_34 | User IO | | 34 | | | | | | | | | | | +| U19 | | High Range | IO_L12N_T1_MRCC_34 | User IO | | 34 | | | | | | | | | | | +| U20 | | High Range | IO_L15N_T2_DQS_34 | User IO | | 34 | | | | | | | | | | | +| V1 | | | PS_DDR_DQ24_502 | PSS IO | | | | | | | | | | | | | +| V2 | | | PS_DDR_DQ30_502 | PSS IO | | | | | | | | | | | | | +| V3 | | | PS_DDR_DQ31_502 | PSS IO | | | | | | | | | | | | | +| V4 | | | VCCO_DDR_502 | VCCO | | | | | | | any** | | | | | | +| V5 | | | NC | Not Connected | | | | | | | | | | | | | +| V6 | | | NC | Not Connected | | | | | | | | | | | | | +| V7 | | | NC | Not Connected | | | | | | | | | | | | | +| V8 | | | NC | Not Connected | | | | | | | | | | | | | +| V9 | | | GND | GND | | | | | | | 0.0 | | | | | | +| V10 | | | NC | Not Connected | | | | | | | | | | | | | +| V11 | | | NC | Not Connected | | | | | | | | | | | | | +| V12 | | High Range | IO_L4P_T0_34 | User IO | | 34 | | | | | | | | | | | +| V13 | | High Range | IO_L3N_T0_DQS_34 | User IO | | 34 | | | | | | | | | | | +| V14 | | High Range | VCCO_34 | VCCO | | 34 | | | | | 3.30 | | | | | | +| V15 | | High Range | IO_L10P_T1_34 | User IO | | 34 | | | | | | | | | | | +| V16 | btn[2] | High Range | IO_L18P_T2_34 | INPUT | LVCMOS33 | 34 | | | | NONE | | FIXED | | | | NONE | +| V17 | | High Range | IO_L21P_T3_DQS_34 | User IO | | 34 | | | | | | | | | | | +| V18 | | High Range | IO_L21N_T3_DQS_34 | User IO | | 34 | | | | | | | | | | | +| V19 | | | GND | GND | | | | | | | 0.0 | | | | | | +| V20 | | High Range | IO_L16P_T2_34 | User IO | | 34 | | | | | | | | | | | +| W1 | | | PS_DDR_DQ26_502 | PSS IO | | | | | | | | | | | | | +| W2 | | | GND | GND | | | | | | | 0.0 | | | | | | +| W3 | | | PS_DDR_DQ29_502 | PSS IO | | | | | | | | | | | | | +| W4 | | | PS_DDR_DQS_N3_502 | PSS IO | | | | | | | | | | | | | +| W5 | | | PS_DDR_DQS_P3_502 | PSS IO | | | | | | | | | | | | | +| W6 | | | NC | Not Connected | | | | | | | | | | | | | +| W7 | | Dedicated | VCCO_13 | VCCO | | 13 | | | | | any** | | | | | | +| W8 | | | NC | Not Connected | | | | | | | | | | | | | +| W9 | | | NC | Not Connected | | | | | | | | | | | | | +| W10 | | | NC | Not Connected | | | | | | | | | | | | | +| W11 | | | NC | Not Connected | | | | | | | | | | | | | +| W12 | | | GND | GND | | | | | | | 0.0 | | | | | | +| W13 | sw[2] | High Range | IO_L4N_T0_34 | INPUT | LVCMOS33 | 34 | | | | NONE | | FIXED | | | | NONE | +| W14 | | High Range | IO_L8P_T1_34 | User IO | | 34 | | | | | | | | | | | +| W15 | | High Range | IO_L10N_T1_34 | User IO | | 34 | | | | | | | | | | | +| W16 | | High Range | IO_L18N_T2_34 | User IO | | 34 | | | | | | | | | | | +| W17 | | High Range | VCCO_34 | VCCO | | 34 | | | | | 3.30 | | | | | | +| W18 | | High Range | IO_L22P_T3_34 | User IO | | 34 | | | | | | | | | | | +| W19 | | High Range | IO_L22N_T3_34 | User IO | | 34 | | | | | | | | | | | +| W20 | | High Range | IO_L16N_T2_34 | User IO | | 34 | | | | | | | | | | | +| Y1 | | | PS_DDR_DM3_502 | PSS IO | | | | | | | | | | | | | +| Y2 | | | PS_DDR_DQ28_502 | PSS IO | | | | | | | | | | | | | +| Y3 | | | PS_DDR_DQ25_502 | PSS IO | | | | | | | | | | | | | +| Y4 | | | PS_DDR_DQ27_502 | PSS IO | | | | | | | | | | | | | +| Y5 | | | GND | GND | | | | | | | 0.0 | | | | | | +| Y6 | | | NC | Not Connected | | | | | | | | | | | | | +| Y7 | | | NC | Not Connected | | | | | | | | | | | | | +| Y8 | | | NC | Not Connected | | | | | | | | | | | | | +| Y9 | | | NC | Not Connected | | | | | | | | | | | | | +| Y10 | | Dedicated | VCCO_13 | VCCO | | 13 | | | | | any** | | | | | | +| Y11 | | | NC | Not Connected | | | | | | | | | | | | | +| Y12 | | | NC | Not Connected | | | | | | | | | | | | | +| Y13 | | | NC | Not Connected | | | | | | | | | | | | | +| Y14 | | High Range | IO_L8N_T1_34 | User IO | | 34 | | | | | | | | | | | +| Y15 | | | GND | GND | | | | | | | 0.0 | | | | | | +| Y16 | btn[3] | High Range | IO_L7P_T1_34 | INPUT | LVCMOS33 | 34 | | | | NONE | | FIXED | | | | NONE | +| Y17 | | High Range | IO_L7N_T1_34 | User IO | | 34 | | | | | | | | | | | +| Y18 | | High Range | IO_L17P_T2_34 | User IO | | 34 | | | | | | | | | | | +| Y19 | | High Range | IO_L17N_T2_34 | User IO | | 34 | | | | | | | | | | | +| Y20 | | High Range | VCCO_34 | VCCO | | 34 | | | | | 3.30 | | | | | | ++------------+-------------+------------+-------------------------+---------------+-------------+---------+------------+------+---------------------+----------------------+---------+------------+-----------+----------+------+------------------+ +* Default value +** Special VCCO requirements may apply. Please consult the device family datasheet for specific guideline on VCCO requirements. + + diff --git a/project_1/project_1.runs/impl_1/lab0_wrapper_methodology_drc_routed.rpt b/project_1/project_1.runs/impl_1/lab0_wrapper_methodology_drc_routed.rpt new file mode 100644 index 0000000..4c44a65 --- /dev/null +++ b/project_1/project_1.runs/impl_1/lab0_wrapper_methodology_drc_routed.rpt @@ -0,0 +1,80 @@ +Copyright 1986-2017 Xilinx, Inc. All Rights Reserved. +------------------------------------------------------------------------------------------------------------------------------- +| Tool Version : Vivado v.2017.2 (lin64) Build 1909853 Thu Jun 15 18:39:10 MDT 2017 +| Date : Wed Sep 27 19:50:49 2017 +| Host : Kreyshawn running 64-bit Ubuntu 14.04.5 LTS +| Command : report_methodology -file lab0_wrapper_methodology_drc_routed.rpt -rpx lab0_wrapper_methodology_drc_routed.rpx +| Design : lab0_wrapper +| Device : xc7z010clg400-1 +| Speed File : -1 +| Design State : Routed +------------------------------------------------------------------------------------------------------------------------------- + +Report Methodology + +Table of Contents +----------------- +1. REPORT SUMMARY +2. REPORT DETAILS + +1. REPORT SUMMARY +----------------- + Netlist: netlist + Floorplan: design_1 + Design limits: + Max violations: + Violations found: 9 ++-----------+----------+-----------------------------+------------+ +| Rule | Severity | Description | Violations | ++-----------+----------+-----------------------------+------------+ +| TIMING-17 | Warning | Non-clocked sequential cell | 9 | ++-----------+----------+-----------------------------+------------+ + +2. REPORT DETAILS +----------------- +TIMING-17#1 Warning +Non-clocked sequential cell +The clock pin opA_mem/q_reg[0]/C is not reached by a timing clock +Related violations: + +TIMING-17#2 Warning +Non-clocked sequential cell +The clock pin opA_mem/q_reg[1]/C is not reached by a timing clock +Related violations: + +TIMING-17#3 Warning +Non-clocked sequential cell +The clock pin opA_mem/q_reg[2]/C is not reached by a timing clock +Related violations: + +TIMING-17#4 Warning +Non-clocked sequential cell +The clock pin opA_mem/q_reg[3]/C is not reached by a timing clock +Related violations: + +TIMING-17#5 Warning +Non-clocked sequential cell +The clock pin opB_mem/q_reg[0]/C is not reached by a timing clock +Related violations: + +TIMING-17#6 Warning +Non-clocked sequential cell +The clock pin opB_mem/q_reg[1]/C is not reached by a timing clock +Related violations: + +TIMING-17#7 Warning +Non-clocked sequential cell +The clock pin opB_mem/q_reg[2]/C is not reached by a timing clock +Related violations: + +TIMING-17#8 Warning +Non-clocked sequential cell +The clock pin opB_mem/q_reg[3]/C is not reached by a timing clock +Related violations: + +TIMING-17#9 Warning +Non-clocked sequential cell +The clock pin src_sel/q_reg/C is not reached by a timing clock +Related violations: + + diff --git a/project_1/project_1.runs/impl_1/lab0_wrapper_methodology_drc_routed.rpx b/project_1/project_1.runs/impl_1/lab0_wrapper_methodology_drc_routed.rpx new file mode 100644 index 0000000..1a007fc Binary files /dev/null and b/project_1/project_1.runs/impl_1/lab0_wrapper_methodology_drc_routed.rpx differ diff --git a/project_1/project_1.runs/impl_1/lab0_wrapper_opt.dcp b/project_1/project_1.runs/impl_1/lab0_wrapper_opt.dcp new file mode 100644 index 0000000..757218c Binary files /dev/null and b/project_1/project_1.runs/impl_1/lab0_wrapper_opt.dcp differ diff --git a/project_1/project_1.runs/impl_1/lab0_wrapper_placed.dcp b/project_1/project_1.runs/impl_1/lab0_wrapper_placed.dcp new file mode 100644 index 0000000..56cd88f Binary files /dev/null and b/project_1/project_1.runs/impl_1/lab0_wrapper_placed.dcp differ diff --git a/project_1/project_1.runs/impl_1/lab0_wrapper_power_routed.rpt b/project_1/project_1.runs/impl_1/lab0_wrapper_power_routed.rpt new file mode 100644 index 0000000..705d3f2 --- /dev/null +++ b/project_1/project_1.runs/impl_1/lab0_wrapper_power_routed.rpt @@ -0,0 +1,150 @@ +Copyright 1986-2017 Xilinx, Inc. All Rights Reserved. +---------------------------------------------------------------------------------------------------------------------------------------------------------- +| Tool Version : Vivado v.2017.2 (lin64) Build 1909853 Thu Jun 15 18:39:10 MDT 2017 +| Date : Wed Sep 27 19:50:49 2017 +| Host : Kreyshawn running 64-bit Ubuntu 14.04.5 LTS +| Command : report_power -file lab0_wrapper_power_routed.rpt -pb lab0_wrapper_power_summary_routed.pb -rpx lab0_wrapper_power_routed.rpx +| Design : lab0_wrapper +| Device : xc7z010clg400-1 +| Design State : routed +| Grade : commercial +| Process : typical +| Characterization : Production +---------------------------------------------------------------------------------------------------------------------------------------------------------- + +Power Report + +Table of Contents +----------------- +1. Summary +1.1 On-Chip Components +1.2 Power Supply Summary +1.3 Confidence Level +2. Settings +2.1 Environment +2.2 Clock Constraints +3. Detailed Reports +3.1 By Hierarchy + +1. Summary +---------- + ++--------------------------+---------------------------------+ +| Total On-Chip Power (W) | 7.326 (Junction temp exceeded!) | +| Dynamic (W) | 6.855 | +| Device Static (W) | 0.471 | +| Effective TJA (C/W) | 11.5 | +| Max Ambient (C) | 0.5 | +| Junction Temperature (C) | 109.5 | +| Confidence Level | Low | +| Setting File | --- | +| Simulation Activity File | --- | +| Design Nets Matched | NA | ++--------------------------+---------------------------------+ + + +1.1 On-Chip Components +---------------------- + ++----------------+-----------+----------+-----------+-----------------+ +| On-Chip | Power (W) | Used | Available | Utilization (%) | ++----------------+-----------+----------+-----------+-----------------+ +| Slice Logic | 0.046 | 22 | --- | --- | +| LUT as Logic | 0.038 | 7 | 17600 | 0.04 | +| BUFG | 0.006 | 1 | 32 | 3.13 | +| Register | 0.003 | 9 | 35200 | 0.03 | +| Others | 0.000 | 4 | --- | --- | +| Signals | 0.138 | 26 | --- | --- | +| I/O | 6.670 | 13 | 100 | 13.00 | +| Static Power | 0.471 | | | | +| Total | 7.326 | | | | ++----------------+-----------+----------+-----------+-----------------+ + + +1.2 Power Supply Summary +------------------------ + ++-----------+-------------+-----------+-------------+------------+ +| Source | Voltage (V) | Total (A) | Dynamic (A) | Static (A) | ++-----------+-------------+-----------+-------------+------------+ +| Vccint | 1.000 | 0.292 | 0.214 | 0.078 | +| Vccaux | 1.800 | 0.272 | 0.243 | 0.028 | +| Vcco33 | 3.300 | 1.881 | 1.880 | 0.001 | +| Vcco25 | 2.500 | 0.000 | 0.000 | 0.000 | +| Vcco18 | 1.800 | 0.000 | 0.000 | 0.000 | +| Vcco15 | 1.500 | 0.000 | 0.000 | 0.000 | +| Vcco135 | 1.350 | 0.000 | 0.000 | 0.000 | +| Vcco12 | 1.200 | 0.000 | 0.000 | 0.000 | +| Vccaux_io | 1.800 | 0.000 | 0.000 | 0.000 | +| Vccbram | 1.000 | 0.006 | 0.000 | 0.006 | +| MGTAVcc | 1.000 | 0.000 | 0.000 | 0.000 | +| MGTAVtt | 1.200 | 0.000 | 0.000 | 0.000 | +| MGTVccaux | 1.800 | 0.000 | 0.000 | 0.000 | +| Vccpint | 1.000 | 0.272 | 0.000 | 0.272 | +| Vccpaux | 1.800 | 0.010 | 0.000 | 0.010 | +| Vccpll | 1.800 | 0.003 | 0.000 | 0.003 | +| Vcco_ddr | 1.500 | 0.000 | 0.000 | 0.000 | +| Vcco_mio0 | 1.800 | 0.000 | 0.000 | 0.000 | +| Vcco_mio1 | 1.800 | 0.000 | 0.000 | 0.000 | +| Vccadc | 1.800 | 0.020 | 0.000 | 0.020 | ++-----------+-------------+-----------+-------------+------------+ + + +1.3 Confidence Level +-------------------- + ++-----------------------------+------------+--------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------+ +| User Input Data | Confidence | Details | Action | ++-----------------------------+------------+--------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------+ +| Design implementation state | High | Design is routed | | +| Clock nodes activity | Low | User specified less than 75% of clocks | Provide missing clock activity with a constraint file, simulation results or by editing the "By Clock Domain" view | +| I/O nodes activity | Low | More than 75% of inputs are missing user specification | Provide missing input activity with simulation results or by editing the "By Resource Type -> I/Os" view | +| Internal nodes activity | Medium | User specified less than 25% of internal nodes | Provide missing internal nodes activity with simulation results or by editing the "By Resource Type" views | +| Device models | High | Device models are Production | | +| | | | | +| Overall confidence level | Low | | | ++-----------------------------+------------+--------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------+ + + +2. Settings +----------- + +2.1 Environment +--------------- + ++-----------------------+------------------------+ +| Ambient Temp (C) | 25.0 | +| ThetaJA (C/W) | 11.5 | +| Airflow (LFM) | 250 | +| Heat Sink | none | +| ThetaSA (C/W) | 0.0 | +| Board Selection | medium (10"x10") | +| # of Board Layers | 8to11 (8 to 11 Layers) | +| Board Temperature (C) | 25.0 | ++-----------------------+------------------------+ + + +2.2 Clock Constraints +--------------------- + ++-------+--------+-----------------+ +| Clock | Domain | Constraint (ns) | ++-------+--------+-----------------+ + + +3. Detailed Reports +------------------- + +3.1 By Hierarchy +---------------- + ++--------------+-----------+ +| Name | Power (W) | ++--------------+-----------+ +| lab0_wrapper | 6.855 | +| opA_mem | 0.089 | +| opB_mem | 0.046 | +| src_sel | 0.009 | ++--------------+-----------+ + + diff --git a/project_1/project_1.runs/impl_1/lab0_wrapper_power_routed.rpx b/project_1/project_1.runs/impl_1/lab0_wrapper_power_routed.rpx new file mode 100644 index 0000000..5704fbb Binary files /dev/null and b/project_1/project_1.runs/impl_1/lab0_wrapper_power_routed.rpx differ diff --git a/project_1/project_1.runs/impl_1/lab0_wrapper_power_summary_routed.pb b/project_1/project_1.runs/impl_1/lab0_wrapper_power_summary_routed.pb new file mode 100644 index 0000000..d933ff4 Binary files /dev/null and b/project_1/project_1.runs/impl_1/lab0_wrapper_power_summary_routed.pb differ diff --git a/project_1/project_1.runs/impl_1/lab0_wrapper_route_status.pb b/project_1/project_1.runs/impl_1/lab0_wrapper_route_status.pb new file mode 100644 index 0000000..ab862ab Binary files /dev/null and b/project_1/project_1.runs/impl_1/lab0_wrapper_route_status.pb differ diff --git a/project_1/project_1.runs/impl_1/lab0_wrapper_route_status.rpt b/project_1/project_1.runs/impl_1/lab0_wrapper_route_status.rpt new file mode 100644 index 0000000..a48d582 --- /dev/null +++ b/project_1/project_1.runs/impl_1/lab0_wrapper_route_status.rpt @@ -0,0 +1,11 @@ +Design Route Status + : # nets : + ------------------------------------------- : ----------- : + # of logical nets.......................... : 42 : + # of nets not needing routing.......... : 15 : + # of internally routed nets........ : 15 : + # of routable nets..................... : 27 : + # of fully routed nets............. : 27 : + # of nets with routing errors.......... : 0 : + ------------------------------------------- : ----------- : + diff --git a/project_1/project_1.runs/impl_1/lab0_wrapper_routed.dcp b/project_1/project_1.runs/impl_1/lab0_wrapper_routed.dcp new file mode 100644 index 0000000..94f4d17 Binary files /dev/null and b/project_1/project_1.runs/impl_1/lab0_wrapper_routed.dcp differ diff --git a/project_1/project_1.runs/impl_1/lab0_wrapper_timing_summary_routed.rpt b/project_1/project_1.runs/impl_1/lab0_wrapper_timing_summary_routed.rpt new file mode 100644 index 0000000..dcf6abd --- /dev/null +++ b/project_1/project_1.runs/impl_1/lab0_wrapper_timing_summary_routed.rpt @@ -0,0 +1,173 @@ +Copyright 1986-2017 Xilinx, Inc. All Rights Reserved. +----------------------------------------------------------------------------------------------------------------------------------------------------------------- +| Tool Version : Vivado v.2017.2 (lin64) Build 1909853 Thu Jun 15 18:39:10 MDT 2017 +| Date : Wed Sep 27 19:50:49 2017 +| Host : Kreyshawn running 64-bit Ubuntu 14.04.5 LTS +| Command : report_timing_summary -warn_on_violation -max_paths 10 -file lab0_wrapper_timing_summary_routed.rpt -rpx lab0_wrapper_timing_summary_routed.rpx +| Design : lab0_wrapper +| Device : 7z010-clg400 +| Speed File : -1 PRODUCTION 1.11 2014-09-11 +----------------------------------------------------------------------------------------------------------------------------------------------------------------- + +Timing Summary Report + +------------------------------------------------------------------------------------------------ +| Timer Settings +| -------------- +------------------------------------------------------------------------------------------------ + + Enable Multi Corner Analysis : Yes + Enable Pessimism Removal : Yes + Pessimism Removal Resolution : Nearest Common Node + Enable Input Delay Default Clock : No + Enable Preset / Clear Arcs : No + Disable Flight Delays : No + Ignore I/O Paths : No + Timing Early Launch at Borrowing Latches : false + + Corner Analyze Analyze + Name Max Paths Min Paths + ------ --------- --------- + Slow Yes Yes + Fast Yes Yes + + + +check_timing report + +Table of Contents +----------------- +1. checking no_clock +2. checking constant_clock +3. checking pulse_width_clock +4. checking unconstrained_internal_endpoints +5. checking no_input_delay +6. checking no_output_delay +7. checking multiple_clock +8. checking generated_clocks +9. checking loops +10. checking partial_input_delay +11. checking partial_output_delay +12. checking latch_loops + +1. checking no_clock +-------------------- + There are 9 register/latch pins with no clock driven by root clock pin: clk (HIGH) + + +2. checking constant_clock +-------------------------- + There are 0 register/latch pins with constant_clock. + + +3. checking pulse_width_clock +----------------------------- + There are 0 register/latch pins which need pulse_width check + + +4. checking unconstrained_internal_endpoints +-------------------------------------------- + There are 17 pins that are not constrained for maximum delay. (HIGH) + + There are 0 pins that are not constrained for maximum delay due to constant clock. + + +5. checking no_input_delay +-------------------------- + There are 8 input ports with no input delay specified. (HIGH) + + There are 0 input ports with no input delay but user has a false path constraint. + + +6. checking no_output_delay +--------------------------- + There are 4 ports with no output delay specified. (HIGH) + + There are 0 ports with no output delay but user has a false path constraint + + There are 0 ports with no output delay but with a timing clock defined on it or propagating through it + + +7. checking multiple_clock +-------------------------- + There are 0 register/latch pins with multiple clocks. + + +8. checking generated_clocks +---------------------------- + There are 0 generated clocks that are not connected to a clock source. + + +9. checking loops +----------------- + There are 0 combinational loops in the design. + + +10. checking partial_input_delay +-------------------------------- + There are 0 input ports with partial input delay specified. + + +11. checking partial_output_delay +--------------------------------- + There are 0 ports with partial output delay specified. + + +12. checking latch_loops +------------------------ + There are 0 combinational latch loops in the design through latch input + + + +------------------------------------------------------------------------------------------------ +| Design Timing Summary +| --------------------- +------------------------------------------------------------------------------------------------ + + WNS(ns) TNS(ns) TNS Failing Endpoints TNS Total Endpoints WHS(ns) THS(ns) THS Failing Endpoints THS Total Endpoints WPWS(ns) TPWS(ns) TPWS Failing Endpoints TPWS Total Endpoints + ------- ------- --------------------- ------------------- ------- ------- --------------------- ------------------- -------- -------- ---------------------- -------------------- + NA NA NA NA NA NA NA NA NA NA NA NA + + +There are no user specified timing constraints. + + +------------------------------------------------------------------------------------------------ +| Clock Summary +| ------------- +------------------------------------------------------------------------------------------------ + + +------------------------------------------------------------------------------------------------ +| Intra Clock Table +| ----------------- +------------------------------------------------------------------------------------------------ + +Clock WNS(ns) TNS(ns) TNS Failing Endpoints TNS Total Endpoints WHS(ns) THS(ns) THS Failing Endpoints THS Total Endpoints WPWS(ns) TPWS(ns) TPWS Failing Endpoints TPWS Total Endpoints +----- ------- ------- --------------------- ------------------- ------- ------- --------------------- ------------------- -------- -------- ---------------------- -------------------- + + +------------------------------------------------------------------------------------------------ +| Inter Clock Table +| ----------------- +------------------------------------------------------------------------------------------------ + +From Clock To Clock WNS(ns) TNS(ns) TNS Failing Endpoints TNS Total Endpoints WHS(ns) THS(ns) THS Failing Endpoints THS Total Endpoints +---------- -------- ------- ------- --------------------- ------------------- ------- ------- --------------------- ------------------- + + +------------------------------------------------------------------------------------------------ +| Other Path Groups Table +| ----------------------- +------------------------------------------------------------------------------------------------ + +Path Group From Clock To Clock WNS(ns) TNS(ns) TNS Failing Endpoints TNS Total Endpoints WHS(ns) THS(ns) THS Failing Endpoints THS Total Endpoints +---------- ---------- -------- ------- ------- --------------------- ------------------- ------- ------- --------------------- ------------------- + + +------------------------------------------------------------------------------------------------ +| Timing Details +| -------------- +------------------------------------------------------------------------------------------------ + + diff --git a/project_1/project_1.runs/impl_1/lab0_wrapper_timing_summary_routed.rpx b/project_1/project_1.runs/impl_1/lab0_wrapper_timing_summary_routed.rpx new file mode 100644 index 0000000..cb8112e Binary files /dev/null and b/project_1/project_1.runs/impl_1/lab0_wrapper_timing_summary_routed.rpx differ diff --git a/project_1/project_1.runs/impl_1/lab0_wrapper_utilization_placed.pb b/project_1/project_1.runs/impl_1/lab0_wrapper_utilization_placed.pb new file mode 100644 index 0000000..6bb822a Binary files /dev/null and b/project_1/project_1.runs/impl_1/lab0_wrapper_utilization_placed.pb differ diff --git a/project_1/project_1.runs/impl_1/lab0_wrapper_utilization_placed.rpt b/project_1/project_1.runs/impl_1/lab0_wrapper_utilization_placed.rpt new file mode 100644 index 0000000..e74f6b4 --- /dev/null +++ b/project_1/project_1.runs/impl_1/lab0_wrapper_utilization_placed.rpt @@ -0,0 +1,202 @@ +Copyright 1986-2017 Xilinx, Inc. All Rights Reserved. +--------------------------------------------------------------------------------------------------------------------- +| Tool Version : Vivado v.2017.2 (lin64) Build 1909853 Thu Jun 15 18:39:10 MDT 2017 +| Date : Wed Sep 27 19:50:38 2017 +| Host : Kreyshawn running 64-bit Ubuntu 14.04.5 LTS +| Command : report_utilization -file lab0_wrapper_utilization_placed.rpt -pb lab0_wrapper_utilization_placed.pb +| Design : lab0_wrapper +| Device : 7z010clg400-1 +| Design State : Fully Placed +--------------------------------------------------------------------------------------------------------------------- + +Utilization Design Information + +Table of Contents +----------------- +1. Slice Logic +1.1 Summary of Registers by Type +2. Slice Logic Distribution +3. Memory +4. DSP +5. IO and GT Specific +6. Clocking +7. Specific Feature +8. Primitives +9. Black Boxes +10. Instantiated Netlists + +1. Slice Logic +-------------- + ++-------------------------+------+-------+-----------+-------+ +| Site Type | Used | Fixed | Available | Util% | ++-------------------------+------+-------+-----------+-------+ +| Slice LUTs | 7 | 0 | 17600 | 0.04 | +| LUT as Logic | 7 | 0 | 17600 | 0.04 | +| LUT as Memory | 0 | 0 | 6000 | 0.00 | +| Slice Registers | 9 | 0 | 35200 | 0.03 | +| Register as Flip Flop | 9 | 0 | 35200 | 0.03 | +| Register as Latch | 0 | 0 | 35200 | 0.00 | +| F7 Muxes | 0 | 0 | 8800 | 0.00 | +| F8 Muxes | 0 | 0 | 4400 | 0.00 | ++-------------------------+------+-------+-----------+-------+ + + +1.1 Summary of Registers by Type +-------------------------------- + ++-------+--------------+-------------+--------------+ +| Total | Clock Enable | Synchronous | Asynchronous | ++-------+--------------+-------------+--------------+ +| 0 | _ | - | - | +| 0 | _ | - | Set | +| 0 | _ | - | Reset | +| 0 | _ | Set | - | +| 0 | _ | Reset | - | +| 0 | Yes | - | - | +| 0 | Yes | - | Set | +| 0 | Yes | - | Reset | +| 0 | Yes | Set | - | +| 9 | Yes | Reset | - | ++-------+--------------+-------------+--------------+ + + +2. Slice Logic Distribution +--------------------------- + ++-------------------------------------------+------+-------+-----------+-------+ +| Site Type | Used | Fixed | Available | Util% | ++-------------------------------------------+------+-------+-----------+-------+ +| Slice | 5 | 0 | 4400 | 0.11 | +| SLICEL | 3 | 0 | | | +| SLICEM | 2 | 0 | | | +| LUT as Logic | 7 | 0 | 17600 | 0.04 | +| using O5 output only | 0 | | | | +| using O6 output only | 6 | | | | +| using O5 and O6 | 1 | | | | +| LUT as Memory | 0 | 0 | 6000 | 0.00 | +| LUT as Distributed RAM | 0 | 0 | | | +| LUT as Shift Register | 0 | 0 | | | +| LUT Flip Flop Pairs | 1 | 0 | 17600 | <0.01 | +| fully used LUT-FF pairs | 0 | | | | +| LUT-FF pairs with one unused LUT output | 1 | | | | +| LUT-FF pairs with one unused Flip Flop | 1 | | | | +| Unique Control Sets | 3 | | | | ++-------------------------------------------+------+-------+-----------+-------+ +* Note: Review the Control Sets Report for more information regarding control sets. + + +3. Memory +--------- + ++----------------+------+-------+-----------+-------+ +| Site Type | Used | Fixed | Available | Util% | ++----------------+------+-------+-----------+-------+ +| Block RAM Tile | 0 | 0 | 60 | 0.00 | +| RAMB36/FIFO* | 0 | 0 | 60 | 0.00 | +| RAMB18 | 0 | 0 | 120 | 0.00 | ++----------------+------+-------+-----------+-------+ +* Note: Each Block RAM Tile only has one FIFO logic available and therefore can accommodate only one FIFO36E1 or one FIFO18E1. However, if a FIFO18E1 occupies a Block RAM Tile, that tile can still accommodate a RAMB18E1 + + +4. DSP +------ + ++-----------+------+-------+-----------+-------+ +| Site Type | Used | Fixed | Available | Util% | ++-----------+------+-------+-----------+-------+ +| DSPs | 0 | 0 | 80 | 0.00 | ++-----------+------+-------+-----------+-------+ + + +5. IO and GT Specific +--------------------- + ++-----------------------------+------+-------+-----------+-------+ +| Site Type | Used | Fixed | Available | Util% | ++-----------------------------+------+-------+-----------+-------+ +| Bonded IOB | 13 | 13 | 100 | 13.00 | +| IOB Master Pads | 6 | | | | +| IOB Slave Pads | 6 | | | | +| Bonded IPADs | 0 | 0 | 2 | 0.00 | +| Bonded IOPADs | 0 | 0 | 130 | 0.00 | +| PHY_CONTROL | 0 | 0 | 2 | 0.00 | +| PHASER_REF | 0 | 0 | 2 | 0.00 | +| OUT_FIFO | 0 | 0 | 8 | 0.00 | +| IN_FIFO | 0 | 0 | 8 | 0.00 | +| IDELAYCTRL | 0 | 0 | 2 | 0.00 | +| IBUFDS | 0 | 0 | 96 | 0.00 | +| PHASER_OUT/PHASER_OUT_PHY | 0 | 0 | 8 | 0.00 | +| PHASER_IN/PHASER_IN_PHY | 0 | 0 | 8 | 0.00 | +| IDELAYE2/IDELAYE2_FINEDELAY | 0 | 0 | 100 | 0.00 | +| ILOGIC | 0 | 0 | 100 | 0.00 | +| OLOGIC | 0 | 0 | 100 | 0.00 | ++-----------------------------+------+-------+-----------+-------+ + + +6. Clocking +----------- + ++------------+------+-------+-----------+-------+ +| Site Type | Used | Fixed | Available | Util% | ++------------+------+-------+-----------+-------+ +| BUFGCTRL | 1 | 0 | 32 | 3.13 | +| BUFIO | 0 | 0 | 8 | 0.00 | +| MMCME2_ADV | 0 | 0 | 2 | 0.00 | +| PLLE2_ADV | 0 | 0 | 2 | 0.00 | +| BUFMRCE | 0 | 0 | 4 | 0.00 | +| BUFHCE | 0 | 0 | 48 | 0.00 | +| BUFR | 0 | 0 | 8 | 0.00 | ++------------+------+-------+-----------+-------+ + + +7. Specific Feature +------------------- + ++-------------+------+-------+-----------+-------+ +| Site Type | Used | Fixed | Available | Util% | ++-------------+------+-------+-----------+-------+ +| BSCANE2 | 0 | 0 | 4 | 0.00 | +| CAPTUREE2 | 0 | 0 | 1 | 0.00 | +| DNA_PORT | 0 | 0 | 1 | 0.00 | +| EFUSE_USR | 0 | 0 | 1 | 0.00 | +| FRAME_ECCE2 | 0 | 0 | 1 | 0.00 | +| ICAPE2 | 0 | 0 | 2 | 0.00 | +| STARTUPE2 | 0 | 0 | 1 | 0.00 | +| XADC | 0 | 0 | 1 | 0.00 | ++-------------+------+-------+-----------+-------+ + + +8. Primitives +------------- + ++----------+------+---------------------+ +| Ref Name | Used | Functional Category | ++----------+------+---------------------+ +| IBUF | 9 | IO | +| FDRE | 9 | Flop & Latch | +| OBUF | 4 | IO | +| LUT4 | 4 | LUT | +| LUT6 | 2 | LUT | +| LUT5 | 1 | LUT | +| LUT3 | 1 | LUT | +| BUFG | 1 | Clock | ++----------+------+---------------------+ + + +9. Black Boxes +-------------- + ++----------+------+ +| Ref Name | Used | ++----------+------+ + + +10. Instantiated Netlists +------------------------- + ++----------+------+ +| Ref Name | Used | ++----------+------+ + + diff --git a/project_1/project_1.runs/impl_1/opt_design.pb b/project_1/project_1.runs/impl_1/opt_design.pb new file mode 100644 index 0000000..8c8f4ed Binary files /dev/null and b/project_1/project_1.runs/impl_1/opt_design.pb differ diff --git a/project_1/project_1.runs/impl_1/place_design.pb b/project_1/project_1.runs/impl_1/place_design.pb new file mode 100644 index 0000000..b04eba4 Binary files /dev/null and b/project_1/project_1.runs/impl_1/place_design.pb differ diff --git a/project_1/project_1.runs/impl_1/project.wdf b/project_1/project_1.runs/impl_1/project.wdf new file mode 100644 index 0000000..dbd9197 --- /dev/null +++ b/project_1/project_1.runs/impl_1/project.wdf @@ -0,0 +1,31 @@ +version:1 +70726f6a656374:76697661646f5f75736167655c70726f6a6563745f64617461:737263736574636f756e74:32:00:00 +70726f6a656374:76697661646f5f75736167655c70726f6a6563745f64617461:636f6e73747261696e74736574636f756e74:31:00:00 +70726f6a656374:76697661646f5f75736167655c70726f6a6563745f64617461:64657369676e6d6f6465:52544c:00:00 +70726f6a656374:76697661646f5f75736167655c70726f6a6563745f64617461:73796e7468657369737374726174656779:56697661646f2053796e7468657369732044656661756c7473:00:00 +70726f6a656374:76697661646f5f75736167655c70726f6a6563745f64617461:696d706c7374726174656779:56697661646f20496d706c656d656e746174696f6e2044656661756c7473:00:00 +70726f6a656374:76697661646f5f75736167655c70726f6a6563745f64617461:63757272656e7473796e74686573697372756e:73796e74685f31:00:00 +70726f6a656374:76697661646f5f75736167655c70726f6a6563745f64617461:63757272656e74696d706c72756e:696d706c5f31:00:00 +70726f6a656374:76697661646f5f75736167655c70726f6a6563745f64617461:746f74616c73796e74686573697372756e73:31:00:00 +70726f6a656374:76697661646f5f75736167655c70726f6a6563745f64617461:746f74616c696d706c72756e73:31:00:00 +70726f6a656374:76697661646f5f75736167655c70726f6a6563745f64617461:636f72655f636f6e7461696e6572:66616c7365:00:00 +70726f6a656374:76697661646f5f75736167655c70726f6a6563745f64617461:73696d756c61746f725f6c616e6775616765:4d69786564:00:00 +70726f6a656374:76697661646f5f75736167655c70726f6a6563745f64617461:7461726765745f6c616e6775616765:566572696c6f67:00:00 +70726f6a656374:76697661646f5f75736167655c70726f6a6563745f64617461:64656661756c745f6c696272617279:78696c5f64656661756c746c6962:00:00 +70726f6a656374:76697661646f5f75736167655c70726f6a6563745f64617461:7461726765745f73696d756c61746f72:5853696d:00:00 +70726f6a656374:76697661646f5f75736167655c70726f6a6563745f64617461:6c61756e63685f73696d756c6174696f6e5f7873696d:30:00:00 +70726f6a656374:76697661646f5f75736167655c70726f6a6563745f64617461:6c61756e63685f73696d756c6174696f6e5f6d6f64656c73696d:30:00:00 +70726f6a656374:76697661646f5f75736167655c70726f6a6563745f64617461:6c61756e63685f73696d756c6174696f6e5f717565737461:30:00:00 +70726f6a656374:76697661646f5f75736167655c70726f6a6563745f64617461:6c61756e63685f73696d756c6174696f6e5f696573:30:00:00 +70726f6a656374:76697661646f5f75736167655c70726f6a6563745f64617461:6c61756e63685f73696d756c6174696f6e5f766373:30:00:00 +70726f6a656374:76697661646f5f75736167655c70726f6a6563745f64617461:6c61756e63685f73696d756c6174696f6e5f72697669657261:30:00:00 +70726f6a656374:76697661646f5f75736167655c70726f6a6563745f64617461:6c61756e63685f73696d756c6174696f6e5f61637469766568646c:30:00:00 +70726f6a656374:76697661646f5f75736167655c70726f6a6563745f64617461:6578706f72745f73696d756c6174696f6e5f7873696d:30:00:00 +70726f6a656374:76697661646f5f75736167655c70726f6a6563745f64617461:6578706f72745f73696d756c6174696f6e5f6d6f64656c73696d:30:00:00 +70726f6a656374:76697661646f5f75736167655c70726f6a6563745f64617461:6578706f72745f73696d756c6174696f6e5f717565737461:30:00:00 +70726f6a656374:76697661646f5f75736167655c70726f6a6563745f64617461:6578706f72745f73696d756c6174696f6e5f696573:30:00:00 +70726f6a656374:76697661646f5f75736167655c70726f6a6563745f64617461:6578706f72745f73696d756c6174696f6e5f766373:30:00:00 +70726f6a656374:76697661646f5f75736167655c70726f6a6563745f64617461:6578706f72745f73696d756c6174696f6e5f72697669657261:30:00:00 +70726f6a656374:76697661646f5f75736167655c70726f6a6563745f64617461:6578706f72745f73696d756c6174696f6e5f61637469766568646c:30:00:00 +5f5f48494444454e5f5f:5f5f48494444454e5f5f:50726f6a65637455554944:6433303030313866656564623464366438353762376137623130616561663361:506172656e742050412070726f6a656374204944:00 +eof:2685172307 diff --git a/project_1/project_1.runs/impl_1/route_design.pb b/project_1/project_1.runs/impl_1/route_design.pb new file mode 100644 index 0000000..683b78b Binary files /dev/null and b/project_1/project_1.runs/impl_1/route_design.pb differ diff --git a/project_1/project_1.runs/impl_1/rundef.js b/project_1/project_1.runs/impl_1/rundef.js new file mode 100644 index 0000000..c66ed26 --- /dev/null +++ b/project_1/project_1.runs/impl_1/rundef.js @@ -0,0 +1,44 @@ +// +// Vivado(TM) +// rundef.js: a Vivado-generated Runs Script for WSH 5.1/5.6 +// Copyright 1986-2017 Xilinx, Inc. All Rights Reserved. +// + +echo "This script was generated under a different operating system." +echo "Please update the PATH variable below, before executing this script" +exit + +var WshShell = new ActiveXObject( "WScript.Shell" ); +var ProcEnv = WshShell.Environment( "Process" ); +var PathVal = ProcEnv("PATH"); +if ( PathVal.length == 0 ) { + PathVal = "/opt/Xilinx/Vivado/2017.2/ids_lite/ISE/bin/lin64;/opt/Xilinx/Vivado/2017.2/ids_lite/ISE/lib/lin64;/opt/Xilinx/Vivado/2017.2/bin;"; +} else { + PathVal = "/opt/Xilinx/Vivado/2017.2/ids_lite/ISE/bin/lin64;/opt/Xilinx/Vivado/2017.2/ids_lite/ISE/lib/lin64;/opt/Xilinx/Vivado/2017.2/bin;" + PathVal; +} + +ProcEnv("PATH") = PathVal; + +var RDScrFP = WScript.ScriptFullName; +var RDScrN = WScript.ScriptName; +var RDScrDir = RDScrFP.substr( 0, RDScrFP.length - RDScrN.length - 1 ); +var ISEJScriptLib = RDScrDir + "/ISEWrap.js"; +eval( EAInclude(ISEJScriptLib) ); + + +// pre-commands: +ISETouchFile( "init_design", "begin" ); +ISEStep( "vivado", + "-log lab0_wrapper.vdi -applog -m64 -product Vivado -messageDb vivado.pb -mode batch -source lab0_wrapper.tcl -notrace" ); + + + + + +function EAInclude( EAInclFilename ) { + var EAFso = new ActiveXObject( "Scripting.FileSystemObject" ); + var EAInclFile = EAFso.OpenTextFile( EAInclFilename ); + var EAIFContents = EAInclFile.ReadAll(); + EAInclFile.Close(); + return EAIFContents; +} diff --git a/project_1/project_1.runs/impl_1/runme.bat b/project_1/project_1.runs/impl_1/runme.bat new file mode 100644 index 0000000..220ba68 --- /dev/null +++ b/project_1/project_1.runs/impl_1/runme.bat @@ -0,0 +1,11 @@ +@echo off + +rem Vivado (TM) +rem runme.bat: a Vivado-generated Script +rem Copyright 1986-2017 Xilinx, Inc. All Rights Reserved. + + +set HD_SDIR=%~dp0 +cd /d "%HD_SDIR%" +set PATH=%SYSTEMROOT%\system32;%PATH% +cscript /nologo /E:JScript "%HD_SDIR%\rundef.js" %* diff --git a/project_1/project_1.runs/impl_1/runme.log b/project_1/project_1.runs/impl_1/runme.log new file mode 100644 index 0000000..5a74bfd --- /dev/null +++ b/project_1/project_1.runs/impl_1/runme.log @@ -0,0 +1,370 @@ + +*** Running vivado + with args -log lab0_wrapper.vdi -applog -m64 -product Vivado -messageDb vivado.pb -mode batch -source lab0_wrapper.tcl -notrace + + +****** Vivado v2017.2 (64-bit) + **** SW Build 1909853 on Thu Jun 15 18:39:10 MDT 2017 + **** IP Build 1909766 on Thu Jun 15 19:58:00 MDT 2017 + ** Copyright 1986-2017 Xilinx, Inc. All Rights Reserved. + +source lab0_wrapper.tcl -notrace +Design is defaulting to srcset: sources_1 +Design is defaulting to constrset: constrs_1 +INFO: [Netlist 29-17] Analyzing 9 Unisim elements for replacement +INFO: [Netlist 29-28] Unisim Transformation completed in 0 CPU seconds +INFO: [Project 1-479] Netlist was created with Vivado 2017.2 +INFO: [Device 21-403] Loading part xc7z010clg400-1 +INFO: [Project 1-570] Preparing netlist for logic optimization +Parsing XDC File [/home/jspear/Development/School/Comp_Arc/Lab0/ZYBO_Master.xdc] +Finished Parsing XDC File [/home/jspear/Development/School/Comp_Arc/Lab0/ZYBO_Master.xdc] +INFO: [Opt 31-138] Pushed 0 inverter(s) to 0 load pin(s). +INFO: [Project 1-111] Unisim Transformation Summary: +No Unisim elements were transformed. + +Command: opt_design +Attempting to get a license for feature 'Implementation' and/or device 'xc7z010-clg400' +INFO: [Common 17-349] Got license for feature 'Implementation' and/or device 'xc7z010-clg400' +Running DRC as a precondition to command opt_design + +Starting DRC Task +Command: report_drc (run_mandatory_drcs) for: opt_checks +INFO: [DRC 23-27] Running DRC with 4 threads +report_drc (run_mandatory_drcs) completed successfully +INFO: [Project 1-461] DRC finished with 0 Errors +INFO: [Project 1-462] Please refer to the DRC report (report_drc) for more information. + +Time (s): cpu = 00:00:01 ; elapsed = 00:00:00.58 . Memory (MB): peak = 1380.207 ; gain = 46.016 ; free physical = 7638 ; free virtual = 19226 +INFO: [Timing 38-35] Done setting XDC timing constraints. + +Starting Logic Optimization Task + +Phase 1 Retarget +INFO: [Opt 31-138] Pushed 0 inverter(s) to 0 load pin(s). +INFO: [Opt 31-49] Retargeted 0 cell(s). +Phase 1 Retarget | Checksum: 147d9b361 + +Time (s): cpu = 00:00:00 ; elapsed = 00:00:00 . Memory (MB): peak = 1806.699 ; gain = 0.000 ; free physical = 7279 ; free virtual = 18865 +INFO: [Opt 31-389] Phase Retarget created 0 cells and removed 0 cells + +Phase 2 Constant propagation +INFO: [Opt 31-138] Pushed 0 inverter(s) to 0 load pin(s). +Phase 2 Constant propagation | Checksum: 147d9b361 + +Time (s): cpu = 00:00:00 ; elapsed = 00:00:00 . Memory (MB): peak = 1806.699 ; gain = 0.000 ; free physical = 7279 ; free virtual = 18865 +INFO: [Opt 31-389] Phase Constant propagation created 0 cells and removed 0 cells + +Phase 3 Sweep +Phase 3 Sweep | Checksum: 147d9b361 + +Time (s): cpu = 00:00:00 ; elapsed = 00:00:00 . Memory (MB): peak = 1806.699 ; gain = 0.000 ; free physical = 7279 ; free virtual = 18865 +INFO: [Opt 31-389] Phase Sweep created 0 cells and removed 0 cells + +Phase 4 BUFG optimization +Phase 4 BUFG optimization | Checksum: 147d9b361 + +Time (s): cpu = 00:00:00 ; elapsed = 00:00:00.01 . Memory (MB): peak = 1806.699 ; gain = 0.000 ; free physical = 7279 ; free virtual = 18865 +INFO: [Opt 31-389] Phase BUFG optimization created 0 cells and removed 0 cells + +Phase 5 Shift Register Optimization +Phase 5 Shift Register Optimization | Checksum: 147d9b361 + +Time (s): cpu = 00:00:00 ; elapsed = 00:00:00.01 . Memory (MB): peak = 1806.699 ; gain = 0.000 ; free physical = 7279 ; free virtual = 18865 +INFO: [Opt 31-389] Phase Shift Register Optimization created 0 cells and removed 0 cells + +Starting Connectivity Check Task + +Time (s): cpu = 00:00:00 ; elapsed = 00:00:00 . Memory (MB): peak = 1806.699 ; gain = 0.000 ; free physical = 7279 ; free virtual = 18865 +Ending Logic Optimization Task | Checksum: 147d9b361 + +Time (s): cpu = 00:00:00 ; elapsed = 00:00:00.01 . Memory (MB): peak = 1806.699 ; gain = 0.000 ; free physical = 7279 ; free virtual = 18865 + +Starting Power Optimization Task +INFO: [Pwropt 34-132] Skipping clock gating for clocks with a period < 2.00 ns. +Ending Power Optimization Task | Checksum: 147d9b361 + +Time (s): cpu = 00:00:00.02 ; elapsed = 00:00:00.01 . Memory (MB): peak = 1806.699 ; gain = 0.000 ; free physical = 7279 ; free virtual = 18865 +21 Infos, 0 Warnings, 0 Critical Warnings and 0 Errors encountered. +opt_design completed successfully +opt_design: Time (s): cpu = 00:00:08 ; elapsed = 00:00:08 . Memory (MB): peak = 1806.699 ; gain = 472.508 ; free physical = 7279 ; free virtual = 18865 +Writing placer database... +Writing XDEF routing. +Writing XDEF routing logical nets. +Writing XDEF routing special nets. +Write XDEF Complete: Time (s): cpu = 00:00:00.02 ; elapsed = 00:00:00.01 . Memory (MB): peak = 1830.711 ; gain = 0.000 ; free physical = 7279 ; free virtual = 18866 +INFO: [Common 17-1381] The checkpoint '/home/jspear/Development/School/Comp_Arc/Lab0/project_1/project_1.runs/impl_1/lab0_wrapper_opt.dcp' has been generated. +Command: report_drc -file lab0_wrapper_drc_opted.rpt +INFO: [DRC 23-27] Running DRC with 4 threads +INFO: [Coretcl 2-168] The results of DRC are in file /home/jspear/Development/School/Comp_Arc/Lab0/project_1/project_1.runs/impl_1/lab0_wrapper_drc_opted.rpt. +report_drc completed successfully +INFO: [Chipscope 16-241] No debug cores found in the current design. +Before running the implement_debug_core command, either use the Set Up Debug wizard (GUI mode) +or use the create_debug_core and connect_debug_core Tcl commands to insert debug cores into the design. +Command: place_design +Attempting to get a license for feature 'Implementation' and/or device 'xc7z010-clg400' +INFO: [Common 17-349] Got license for feature 'Implementation' and/or device 'xc7z010-clg400' +Command: report_drc (run_mandatory_drcs) for: incr_eco_checks +INFO: [DRC 23-27] Running DRC with 4 threads +report_drc (run_mandatory_drcs) completed successfully +INFO: [Vivado_Tcl 4-198] DRC finished with 0 Errors +INFO: [Vivado_Tcl 4-199] Please refer to the DRC report (report_drc) for more information. +Running DRC as a precondition to command place_design +Command: report_drc (run_mandatory_drcs) for: placer_checks +INFO: [DRC 23-27] Running DRC with 4 threads +report_drc (run_mandatory_drcs) completed successfully +INFO: [Vivado_Tcl 4-198] DRC finished with 0 Errors +INFO: [Vivado_Tcl 4-199] Please refer to the DRC report (report_drc) for more information. + +Starting Placer Task +INFO: [Place 30-611] Multithreading enabled for place_design using a maximum of 4 CPUs + +Phase 1 Placer Initialization + +Phase 1.1 Placer Initialization Netlist Sorting +Netlist sorting complete. Time (s): cpu = 00:00:00 ; elapsed = 00:00:00 . Memory (MB): peak = 1838.715 ; gain = 0.000 ; free physical = 7264 ; free virtual = 18850 +Phase 1.1 Placer Initialization Netlist Sorting | Checksum: d5a1df2f + +Time (s): cpu = 00:00:00.01 ; elapsed = 00:00:00.01 . Memory (MB): peak = 1838.715 ; gain = 0.000 ; free physical = 7264 ; free virtual = 18850 +Netlist sorting complete. Time (s): cpu = 00:00:00 ; elapsed = 00:00:00 . Memory (MB): peak = 1838.715 ; gain = 0.000 ; free physical = 7264 ; free virtual = 18850 + +Phase 1.2 IO Placement/ Clock Placement/ Build Placer Device +INFO: [Timing 38-35] Done setting XDC timing constraints. +Phase 1.2 IO Placement/ Clock Placement/ Build Placer Device | Checksum: 1250244d5 + +Time (s): cpu = 00:00:00.36 ; elapsed = 00:00:00.24 . Memory (MB): peak = 1838.715 ; gain = 0.000 ; free physical = 7265 ; free virtual = 18851 + +Phase 1.3 Build Placer Netlist Model +Phase 1.3 Build Placer Netlist Model | Checksum: 16c3bf1d9 + +Time (s): cpu = 00:00:00.38 ; elapsed = 00:00:00.25 . Memory (MB): peak = 1838.715 ; gain = 0.000 ; free physical = 7265 ; free virtual = 18851 + +Phase 1.4 Constrain Clocks/Macros +Phase 1.4 Constrain Clocks/Macros | Checksum: 16c3bf1d9 + +Time (s): cpu = 00:00:00.38 ; elapsed = 00:00:00.25 . Memory (MB): peak = 1838.715 ; gain = 0.000 ; free physical = 7265 ; free virtual = 18851 +Phase 1 Placer Initialization | Checksum: 16c3bf1d9 + +Time (s): cpu = 00:00:00.38 ; elapsed = 00:00:00.25 . Memory (MB): peak = 1838.715 ; gain = 0.000 ; free physical = 7265 ; free virtual = 18851 + +Phase 2 Global Placement +WARNING: [Place 46-30] place_design is not in timing mode. Skip physical synthesis in placer +Phase 2 Global Placement | Checksum: 1d9ea070c + +Time (s): cpu = 00:00:00.66 ; elapsed = 00:00:00.36 . Memory (MB): peak = 1870.730 ; gain = 32.016 ; free physical = 7262 ; free virtual = 18848 + +Phase 3 Detail Placement + +Phase 3.1 Commit Multi Column Macros +Phase 3.1 Commit Multi Column Macros | Checksum: 1d9ea070c + +Time (s): cpu = 00:00:00.66 ; elapsed = 00:00:00.36 . Memory (MB): peak = 1870.730 ; gain = 32.016 ; free physical = 7262 ; free virtual = 18848 + +Phase 3.2 Commit Most Macros & LUTRAMs +Phase 3.2 Commit Most Macros & LUTRAMs | Checksum: 1ec31c88d + +Time (s): cpu = 00:00:00.67 ; elapsed = 00:00:00.36 . Memory (MB): peak = 1870.730 ; gain = 32.016 ; free physical = 7262 ; free virtual = 18848 + +Phase 3.3 Area Swap Optimization +Phase 3.3 Area Swap Optimization | Checksum: 1cd18c7b4 + +Time (s): cpu = 00:00:00.69 ; elapsed = 00:00:00.37 . Memory (MB): peak = 1870.730 ; gain = 32.016 ; free physical = 7262 ; free virtual = 18848 + +Phase 3.4 Pipeline Register Optimization +Phase 3.4 Pipeline Register Optimization | Checksum: 1cd18c7b4 + +Time (s): cpu = 00:00:00.69 ; elapsed = 00:00:00.37 . Memory (MB): peak = 1870.730 ; gain = 32.016 ; free physical = 7262 ; free virtual = 18848 + +Phase 3.5 Small Shape Detail Placement +Phase 3.5 Small Shape Detail Placement | Checksum: 6d8001ec + +Time (s): cpu = 00:00:00.76 ; elapsed = 00:00:00.41 . Memory (MB): peak = 1870.730 ; gain = 32.016 ; free physical = 7261 ; free virtual = 18847 + +Phase 3.6 Re-assign LUT pins +Phase 3.6 Re-assign LUT pins | Checksum: 6d8001ec + +Time (s): cpu = 00:00:00.76 ; elapsed = 00:00:00.41 . Memory (MB): peak = 1870.730 ; gain = 32.016 ; free physical = 7261 ; free virtual = 18847 + +Phase 3.7 Pipeline Register Optimization +Phase 3.7 Pipeline Register Optimization | Checksum: 6d8001ec + +Time (s): cpu = 00:00:00.76 ; elapsed = 00:00:00.41 . Memory (MB): peak = 1870.730 ; gain = 32.016 ; free physical = 7261 ; free virtual = 18847 +Phase 3 Detail Placement | Checksum: 6d8001ec + +Time (s): cpu = 00:00:00.76 ; elapsed = 00:00:00.41 . Memory (MB): peak = 1870.730 ; gain = 32.016 ; free physical = 7261 ; free virtual = 18847 + +Phase 4 Post Placement Optimization and Clean-Up + +Phase 4.1 Post Commit Optimization +Phase 4.1 Post Commit Optimization | Checksum: 6d8001ec + +Time (s): cpu = 00:00:00.77 ; elapsed = 00:00:00.42 . Memory (MB): peak = 1870.730 ; gain = 32.016 ; free physical = 7261 ; free virtual = 18847 + +Phase 4.2 Post Placement Cleanup +Phase 4.2 Post Placement Cleanup | Checksum: 6d8001ec + +Time (s): cpu = 00:00:00.78 ; elapsed = 00:00:00.42 . Memory (MB): peak = 1870.730 ; gain = 32.016 ; free physical = 7262 ; free virtual = 18848 + +Phase 4.3 Placer Reporting +Phase 4.3 Placer Reporting | Checksum: 6d8001ec + +Time (s): cpu = 00:00:00.78 ; elapsed = 00:00:00.42 . Memory (MB): peak = 1870.730 ; gain = 32.016 ; free physical = 7262 ; free virtual = 18848 + +Phase 4.4 Final Placement Cleanup +Phase 4.4 Final Placement Cleanup | Checksum: 5d120dd5 + +Time (s): cpu = 00:00:00.78 ; elapsed = 00:00:00.42 . Memory (MB): peak = 1870.730 ; gain = 32.016 ; free physical = 7262 ; free virtual = 18848 +Phase 4 Post Placement Optimization and Clean-Up | Checksum: 5d120dd5 + +Time (s): cpu = 00:00:00.78 ; elapsed = 00:00:00.42 . Memory (MB): peak = 1870.730 ; gain = 32.016 ; free physical = 7262 ; free virtual = 18848 +Ending Placer Task | Checksum: 3b3cc3fe + +Time (s): cpu = 00:00:00.78 ; elapsed = 00:00:00.43 . Memory (MB): peak = 1870.730 ; gain = 32.016 ; free physical = 7263 ; free virtual = 18849 +34 Infos, 1 Warnings, 0 Critical Warnings and 0 Errors encountered. +place_design completed successfully +Writing placer database... +Writing XDEF routing. +Writing XDEF routing logical nets. +Writing XDEF routing special nets. +Write XDEF Complete: Time (s): cpu = 00:00:00.02 ; elapsed = 00:00:00.01 . Memory (MB): peak = 1870.730 ; gain = 0.000 ; free physical = 7264 ; free virtual = 18851 +INFO: [Common 17-1381] The checkpoint '/home/jspear/Development/School/Comp_Arc/Lab0/project_1/project_1.runs/impl_1/lab0_wrapper_placed.dcp' has been generated. +report_io: Time (s): cpu = 00:00:00.13 ; elapsed = 00:00:00.17 . Memory (MB): peak = 1870.730 ; gain = 0.000 ; free physical = 7260 ; free virtual = 18846 +report_utilization: Time (s): cpu = 00:00:00.08 ; elapsed = 00:00:00.10 . Memory (MB): peak = 1870.730 ; gain = 0.000 ; free physical = 7266 ; free virtual = 18852 +report_control_sets: Time (s): cpu = 00:00:00.08 ; elapsed = 00:00:00.10 . Memory (MB): peak = 1870.730 ; gain = 0.000 ; free physical = 7267 ; free virtual = 18853 +Command: route_design +Attempting to get a license for feature 'Implementation' and/or device 'xc7z010-clg400' +INFO: [Common 17-349] Got license for feature 'Implementation' and/or device 'xc7z010-clg400' +Running DRC as a precondition to command route_design +Command: report_drc (run_mandatory_drcs) for: router_checks +INFO: [DRC 23-27] Running DRC with 4 threads +report_drc (run_mandatory_drcs) completed successfully +INFO: [Vivado_Tcl 4-198] DRC finished with 0 Errors +INFO: [Vivado_Tcl 4-199] Please refer to the DRC report (report_drc) for more information. + + +Starting Routing Task +INFO: [Route 35-254] Multithreading enabled for route_design using a maximum of 4 CPUs +Checksum: PlaceDB: 4f3a104 ConstDB: 0 ShapeSum: 364922fa RouteDB: 0 + +Phase 1 Build RT Design +Phase 1 Build RT Design | Checksum: 134c084e5 + +Time (s): cpu = 00:00:09 ; elapsed = 00:00:08 . Memory (MB): peak = 1891.719 ; gain = 20.988 ; free physical = 7190 ; free virtual = 18796 + +Phase 2 Router Initialization +INFO: [Route 35-64] No timing constraints were detected. The router will operate in resource-optimization mode. + +Phase 2.1 Fix Topology Constraints +Phase 2.1 Fix Topology Constraints | Checksum: 134c084e5 + +Time (s): cpu = 00:00:09 ; elapsed = 00:00:08 . Memory (MB): peak = 1905.719 ; gain = 34.988 ; free physical = 7176 ; free virtual = 18782 + +Phase 2.2 Pre Route Cleanup +Phase 2.2 Pre Route Cleanup | Checksum: 134c084e5 + +Time (s): cpu = 00:00:09 ; elapsed = 00:00:08 . Memory (MB): peak = 1905.719 ; gain = 34.988 ; free physical = 7176 ; free virtual = 18782 + Number of Nodes with overlaps = 0 +Phase 2 Router Initialization | Checksum: c75d0047 + +Time (s): cpu = 00:00:09 ; elapsed = 00:00:08 . Memory (MB): peak = 1910.719 ; gain = 39.988 ; free physical = 7170 ; free virtual = 18775 + +Phase 3 Initial Routing +Phase 3 Initial Routing | Checksum: 152d5e090 + +Time (s): cpu = 00:00:10 ; elapsed = 00:00:08 . Memory (MB): peak = 1910.719 ; gain = 39.988 ; free physical = 7172 ; free virtual = 18778 + +Phase 4 Rip-up And Reroute + +Phase 4.1 Global Iteration 0 + Number of Nodes with overlaps = 4 + Number of Nodes with overlaps = 0 +Phase 4.1 Global Iteration 0 | Checksum: d648e34d + +Time (s): cpu = 00:00:10 ; elapsed = 00:00:08 . Memory (MB): peak = 1910.719 ; gain = 39.988 ; free physical = 7172 ; free virtual = 18778 +Phase 4 Rip-up And Reroute | Checksum: d648e34d + +Time (s): cpu = 00:00:10 ; elapsed = 00:00:08 . Memory (MB): peak = 1910.719 ; gain = 39.988 ; free physical = 7172 ; free virtual = 18778 + +Phase 5 Delay and Skew Optimization +Phase 5 Delay and Skew Optimization | Checksum: d648e34d + +Time (s): cpu = 00:00:10 ; elapsed = 00:00:08 . Memory (MB): peak = 1910.719 ; gain = 39.988 ; free physical = 7172 ; free virtual = 18778 + +Phase 6 Post Hold Fix + +Phase 6.1 Hold Fix Iter +Phase 6.1 Hold Fix Iter | Checksum: d648e34d + +Time (s): cpu = 00:00:10 ; elapsed = 00:00:08 . Memory (MB): peak = 1910.719 ; gain = 39.988 ; free physical = 7172 ; free virtual = 18778 +Phase 6 Post Hold Fix | Checksum: d648e34d + +Time (s): cpu = 00:00:10 ; elapsed = 00:00:08 . Memory (MB): peak = 1910.719 ; gain = 39.988 ; free physical = 7172 ; free virtual = 18778 + +Phase 7 Route finalize + +Router Utilization Summary + Global Vertical Routing Utilization = 0.0523649 % + Global Horizontal Routing Utilization = 0.00758272 % + Routable Net Status* + *Does not include unroutable nets such as driverless and loadless. + Run report_route_status for detailed report. + Number of Failed Nets = 0 + Number of Unrouted Nets = 0 + Number of Partially Routed Nets = 0 + Number of Node Overlaps = 0 + +Congestion Report +North Dir 1x1 Area, Max Cong = 16.2162%, No Congested Regions. +South Dir 1x1 Area, Max Cong = 16.2162%, No Congested Regions. +East Dir 1x1 Area, Max Cong = 11.7647%, No Congested Regions. +West Dir 1x1 Area, Max Cong = 5.88235%, No Congested Regions. +Phase 7 Route finalize | Checksum: d648e34d + +Time (s): cpu = 00:00:10 ; elapsed = 00:00:08 . Memory (MB): peak = 1910.719 ; gain = 39.988 ; free physical = 7172 ; free virtual = 18778 + +Phase 8 Verifying routed nets + + Verification completed successfully +Phase 8 Verifying routed nets | Checksum: d648e34d + +Time (s): cpu = 00:00:10 ; elapsed = 00:00:08 . Memory (MB): peak = 1912.719 ; gain = 41.988 ; free physical = 7172 ; free virtual = 18777 + +Phase 9 Depositing Routes +Phase 9 Depositing Routes | Checksum: 42296b1e + +Time (s): cpu = 00:00:10 ; elapsed = 00:00:08 . Memory (MB): peak = 1912.719 ; gain = 41.988 ; free physical = 7172 ; free virtual = 18777 +INFO: [Route 35-16] Router Completed Successfully + +Time (s): cpu = 00:00:10 ; elapsed = 00:00:08 . Memory (MB): peak = 1912.719 ; gain = 41.988 ; free physical = 7186 ; free virtual = 18792 + +Routing Is Done. +42 Infos, 1 Warnings, 0 Critical Warnings and 0 Errors encountered. +route_design completed successfully +route_design: Time (s): cpu = 00:00:12 ; elapsed = 00:00:09 . Memory (MB): peak = 1938.750 ; gain = 68.020 ; free physical = 7186 ; free virtual = 18792 +Writing placer database... +Writing XDEF routing. +Writing XDEF routing logical nets. +Writing XDEF routing special nets. +Write XDEF Complete: Time (s): cpu = 00:00:00.02 ; elapsed = 00:00:00.01 . Memory (MB): peak = 1938.750 ; gain = 0.000 ; free physical = 7185 ; free virtual = 18792 +INFO: [Common 17-1381] The checkpoint '/home/jspear/Development/School/Comp_Arc/Lab0/project_1/project_1.runs/impl_1/lab0_wrapper_routed.dcp' has been generated. +Command: report_drc -file lab0_wrapper_drc_routed.rpt -pb lab0_wrapper_drc_routed.pb -rpx lab0_wrapper_drc_routed.rpx +INFO: [DRC 23-27] Running DRC with 4 threads +INFO: [Coretcl 2-168] The results of DRC are in file /home/jspear/Development/School/Comp_Arc/Lab0/project_1/project_1.runs/impl_1/lab0_wrapper_drc_routed.rpt. +report_drc completed successfully +Command: report_methodology -file lab0_wrapper_methodology_drc_routed.rpt -rpx lab0_wrapper_methodology_drc_routed.rpx +INFO: [Timing 38-35] Done setting XDC timing constraints. +INFO: [DRC 23-133] Running Methodology with 4 threads +INFO: [Coretcl 2-1520] The results of Report Methodology are in file /home/jspear/Development/School/Comp_Arc/Lab0/project_1/project_1.runs/impl_1/lab0_wrapper_methodology_drc_routed.rpt. +report_methodology completed successfully +Command: report_power -file lab0_wrapper_power_routed.rpt -pb lab0_wrapper_power_summary_routed.pb -rpx lab0_wrapper_power_routed.rpx +WARNING: [Power 33-232] No user defined clocks were found in the design! +Resolution: Please specify clocks using create_clock/create_generated_clock for sequential elements. For pure combinatorial circuits, please specify a virtual clock, otherwise the vectorless estimation might be inaccurate +INFO: [Timing 38-35] Done setting XDC timing constraints. +Running Vector-less Activity Propagation... + +Finished Running Vector-less Activity Propagation +49 Infos, 2 Warnings, 0 Critical Warnings and 0 Errors encountered. +report_power completed successfully +INFO: [Timing 38-91] UpdateTimingParams: Speed grade: -1, Delay Type: min_max. +INFO: [Timing 38-191] Multithreading enabled for timing update using a maximum of 4 CPUs +WARNING: [Timing 38-313] There are no user specified timing constraints. Timing constraints are needed for proper timing analysis. +INFO: [Common 17-206] Exiting Vivado at Wed Sep 27 19:50:50 2017... diff --git a/project_1/project_1.runs/impl_1/runme.sh b/project_1/project_1.runs/impl_1/runme.sh new file mode 100755 index 0000000..3c40c3e --- /dev/null +++ b/project_1/project_1.runs/impl_1/runme.sh @@ -0,0 +1,43 @@ +#!/bin/sh + +# +# Vivado(TM) +# runme.sh: a Vivado-generated Runs Script for UNIX +# Copyright 1986-2017 Xilinx, Inc. All Rights Reserved. +# + +if [ -z "$PATH" ]; then + PATH=/opt/Xilinx/Vivado/2017.2/ids_lite/ISE/bin/lin64:/opt/Xilinx/Vivado/2017.2/bin +else + PATH=/opt/Xilinx/Vivado/2017.2/ids_lite/ISE/bin/lin64:/opt/Xilinx/Vivado/2017.2/bin:$PATH +fi +export PATH + +if [ -z "$LD_LIBRARY_PATH" ]; then + LD_LIBRARY_PATH=/opt/Xilinx/Vivado/2017.2/ids_lite/ISE/lib/lin64 +else + LD_LIBRARY_PATH=/opt/Xilinx/Vivado/2017.2/ids_lite/ISE/lib/lin64:$LD_LIBRARY_PATH +fi +export LD_LIBRARY_PATH + +HD_PWD='/home/jspear/Development/School/Comp_Arc/Lab0/project_1/project_1.runs/impl_1' +cd "$HD_PWD" + +HD_LOG=runme.log +/bin/touch $HD_LOG + +ISEStep="./ISEWrap.sh" +EAStep() +{ + $ISEStep $HD_LOG "$@" >> $HD_LOG 2>&1 + if [ $? -ne 0 ] + then + exit + fi +} + +# pre-commands: +/bin/touch .init_design.begin.rst +EAStep vivado -log lab0_wrapper.vdi -applog -m64 -product Vivado -messageDb vivado.pb -mode batch -source lab0_wrapper.tcl -notrace + + diff --git a/project_1/project_1.runs/impl_1/vivado.jou b/project_1/project_1.runs/impl_1/vivado.jou new file mode 100644 index 0000000..6360a97 --- /dev/null +++ b/project_1/project_1.runs/impl_1/vivado.jou @@ -0,0 +1,12 @@ +#----------------------------------------------------------- +# Vivado v2017.2 (64-bit) +# SW Build 1909853 on Thu Jun 15 18:39:10 MDT 2017 +# IP Build 1909766 on Thu Jun 15 19:58:00 MDT 2017 +# Start of session at: Wed Sep 27 19:50:15 2017 +# Process ID: 5568 +# Current directory: /home/jspear/Development/School/Comp_Arc/Lab0/project_1/project_1.runs/impl_1 +# Command line: vivado -log lab0_wrapper.vdi -applog -product Vivado -messageDb vivado.pb -mode batch -source lab0_wrapper.tcl -notrace +# Log file: /home/jspear/Development/School/Comp_Arc/Lab0/project_1/project_1.runs/impl_1/lab0_wrapper.vdi +# Journal file: /home/jspear/Development/School/Comp_Arc/Lab0/project_1/project_1.runs/impl_1/vivado.jou +#----------------------------------------------------------- +source lab0_wrapper.tcl -notrace diff --git a/project_1/project_1.runs/impl_1/vivado.pb b/project_1/project_1.runs/impl_1/vivado.pb new file mode 100644 index 0000000..d00a165 Binary files /dev/null and b/project_1/project_1.runs/impl_1/vivado.pb differ diff --git a/project_1/project_1.runs/impl_1/vivado_12929.backup.jou b/project_1/project_1.runs/impl_1/vivado_12929.backup.jou new file mode 100644 index 0000000..357eae0 --- /dev/null +++ b/project_1/project_1.runs/impl_1/vivado_12929.backup.jou @@ -0,0 +1,12 @@ +#----------------------------------------------------------- +# Vivado v2017.2 (64-bit) +# SW Build 1909853 on Thu Jun 15 18:39:10 MDT 2017 +# IP Build 1909766 on Thu Jun 15 19:58:00 MDT 2017 +# Start of session at: Wed Sep 27 19:28:33 2017 +# Process ID: 12929 +# Current directory: /home/jspear/Development/School/Comp_Arc/Lab0/project_1/project_1.runs/impl_1 +# Command line: vivado -log lab0_wrapper.vdi -applog -product Vivado -messageDb vivado.pb -mode batch -source lab0_wrapper.tcl -notrace +# Log file: /home/jspear/Development/School/Comp_Arc/Lab0/project_1/project_1.runs/impl_1/lab0_wrapper.vdi +# Journal file: /home/jspear/Development/School/Comp_Arc/Lab0/project_1/project_1.runs/impl_1/vivado.jou +#----------------------------------------------------------- +source lab0_wrapper.tcl -notrace diff --git a/project_1/project_1.runs/impl_1/vivado_23797.backup.jou b/project_1/project_1.runs/impl_1/vivado_23797.backup.jou new file mode 100644 index 0000000..1e913c2 --- /dev/null +++ b/project_1/project_1.runs/impl_1/vivado_23797.backup.jou @@ -0,0 +1,12 @@ +#----------------------------------------------------------- +# Vivado v2017.2 (64-bit) +# SW Build 1909853 on Thu Jun 15 18:39:10 MDT 2017 +# IP Build 1909766 on Thu Jun 15 19:58:00 MDT 2017 +# Start of session at: Wed Sep 27 19:10:58 2017 +# Process ID: 23797 +# Current directory: /home/jspear/Development/School/Comp_Arc/Lab0/project_1/project_1.runs/impl_1 +# Command line: vivado -log hw_wrapper.vdi -applog -product Vivado -messageDb vivado.pb -mode batch -source hw_wrapper.tcl -notrace +# Log file: /home/jspear/Development/School/Comp_Arc/Lab0/project_1/project_1.runs/impl_1/hw_wrapper.vdi +# Journal file: /home/jspear/Development/School/Comp_Arc/Lab0/project_1/project_1.runs/impl_1/vivado.jou +#----------------------------------------------------------- +source hw_wrapper.tcl -notrace diff --git a/project_1/project_1.runs/impl_1/vivado_4122.backup.jou b/project_1/project_1.runs/impl_1/vivado_4122.backup.jou new file mode 100644 index 0000000..2ff7020 --- /dev/null +++ b/project_1/project_1.runs/impl_1/vivado_4122.backup.jou @@ -0,0 +1,12 @@ +#----------------------------------------------------------- +# Vivado v2017.2 (64-bit) +# SW Build 1909853 on Thu Jun 15 18:39:10 MDT 2017 +# IP Build 1909766 on Thu Jun 15 19:58:00 MDT 2017 +# Start of session at: Wed Sep 27 19:21:20 2017 +# Process ID: 4122 +# Current directory: /home/jspear/Development/School/Comp_Arc/Lab0/project_1/project_1.runs/impl_1 +# Command line: vivado -log lab0_wrapper.vdi -applog -product Vivado -messageDb vivado.pb -mode batch -source lab0_wrapper.tcl -notrace +# Log file: /home/jspear/Development/School/Comp_Arc/Lab0/project_1/project_1.runs/impl_1/lab0_wrapper.vdi +# Journal file: /home/jspear/Development/School/Comp_Arc/Lab0/project_1/project_1.runs/impl_1/vivado.jou +#----------------------------------------------------------- +source lab0_wrapper.tcl -notrace diff --git a/project_1/project_1.runs/synth_1/.Vivado_Synthesis.queue.rst b/project_1/project_1.runs/synth_1/.Vivado_Synthesis.queue.rst new file mode 100644 index 0000000..e69de29 diff --git a/project_1/project_1.runs/synth_1/.Xil/lab0_wrapper_propImpl.xdc b/project_1/project_1.runs/synth_1/.Xil/lab0_wrapper_propImpl.xdc new file mode 100644 index 0000000..6223b1a --- /dev/null +++ b/project_1/project_1.runs/synth_1/.Xil/lab0_wrapper_propImpl.xdc @@ -0,0 +1,27 @@ +set_property SRC_FILE_INFO {cfile:/home/jspear/Development/School/Comp_Arc/Lab0/ZYBO_Master.xdc rfile:../../../../ZYBO_Master.xdc id:1} [current_design] +set_property src_info {type:XDC file:1 line:8 export:INPUT save:INPUT read:READ} [current_design] +set_property -dict { PACKAGE_PIN L16 IOSTANDARD LVCMOS33 } [get_ports { clk }]; #IO_L11P_T1_SRCC_35 Sch=sysclk +set_property src_info {type:XDC file:1 line:13 export:INPUT save:INPUT read:READ} [current_design] +set_property -dict { PACKAGE_PIN G15 IOSTANDARD LVCMOS33 } [get_ports { sw[0] }]; #IO_L19N_T3_VREF_35 Sch=SW0 +set_property src_info {type:XDC file:1 line:14 export:INPUT save:INPUT read:READ} [current_design] +set_property -dict { PACKAGE_PIN P15 IOSTANDARD LVCMOS33 } [get_ports { sw[1] }]; #IO_L24P_T3_34 Sch=SW1 +set_property src_info {type:XDC file:1 line:15 export:INPUT save:INPUT read:READ} [current_design] +set_property -dict { PACKAGE_PIN W13 IOSTANDARD LVCMOS33 } [get_ports { sw[2] }]; #IO_L4N_T0_34 Sch=SW2 +set_property src_info {type:XDC file:1 line:16 export:INPUT save:INPUT read:READ} [current_design] +set_property -dict { PACKAGE_PIN T16 IOSTANDARD LVCMOS33 } [get_ports { sw[3] }]; #IO_L9P_T1_DQS_34 Sch=SW3 +set_property src_info {type:XDC file:1 line:20 export:INPUT save:INPUT read:READ} [current_design] +set_property -dict { PACKAGE_PIN R18 IOSTANDARD LVCMOS33 } [get_ports { btn[0] }]; #IO_L20N_T3_34 Sch=BTN0 +set_property src_info {type:XDC file:1 line:21 export:INPUT save:INPUT read:READ} [current_design] +set_property -dict { PACKAGE_PIN P16 IOSTANDARD LVCMOS33 } [get_ports { btn[1] }]; #IO_L24N_T3_34 Sch=BTN1 +set_property src_info {type:XDC file:1 line:22 export:INPUT save:INPUT read:READ} [current_design] +set_property -dict { PACKAGE_PIN V16 IOSTANDARD LVCMOS33 } [get_ports { btn[2] }]; #IO_L18P_T2_34 Sch=BTN2 +set_property src_info {type:XDC file:1 line:23 export:INPUT save:INPUT read:READ} [current_design] +set_property -dict { PACKAGE_PIN Y16 IOSTANDARD LVCMOS33 } [get_ports { btn[3] }]; #IO_L7P_T1_34 Sch=BTN3 +set_property src_info {type:XDC file:1 line:27 export:INPUT save:INPUT read:READ} [current_design] +set_property -dict { PACKAGE_PIN M14 IOSTANDARD LVCMOS33 } [get_ports { led[0] }]; #IO_L23P_T3_35 Sch=LED0 +set_property src_info {type:XDC file:1 line:28 export:INPUT save:INPUT read:READ} [current_design] +set_property -dict { PACKAGE_PIN M15 IOSTANDARD LVCMOS33 } [get_ports { led[1] }]; #IO_L23N_T3_35 Sch=LED1 +set_property src_info {type:XDC file:1 line:29 export:INPUT save:INPUT read:READ} [current_design] +set_property -dict { PACKAGE_PIN G14 IOSTANDARD LVCMOS33 } [get_ports { led[2] }]; #IO_0_35=Sch=LED2 +set_property src_info {type:XDC file:1 line:30 export:INPUT save:INPUT read:READ} [current_design] +set_property -dict { PACKAGE_PIN D18 IOSTANDARD LVCMOS33 } [get_ports { led[3] }]; #IO_L3N_T0_DQS_AD1N_35 Sch=LED3 diff --git a/project_1/project_1.runs/synth_1/.vivado.begin.rst b/project_1/project_1.runs/synth_1/.vivado.begin.rst new file mode 100644 index 0000000..5b502be --- /dev/null +++ b/project_1/project_1.runs/synth_1/.vivado.begin.rst @@ -0,0 +1,5 @@ + + + + + diff --git a/project_1/project_1.runs/synth_1/.vivado.end.rst b/project_1/project_1.runs/synth_1/.vivado.end.rst new file mode 100644 index 0000000..e69de29 diff --git a/project_1/project_1.runs/synth_1/ISEWrap.js b/project_1/project_1.runs/synth_1/ISEWrap.js new file mode 100755 index 0000000..8284d2d --- /dev/null +++ b/project_1/project_1.runs/synth_1/ISEWrap.js @@ -0,0 +1,244 @@ +// +// Vivado(TM) +// ISEWrap.js: Vivado Runs Script for WSH 5.1/5.6 +// Copyright 1986-1999, 2001-2013,2015 Xilinx, Inc. All Rights Reserved. +// + +// GLOBAL VARIABLES +var ISEShell = new ActiveXObject( "WScript.Shell" ); +var ISEFileSys = new ActiveXObject( "Scripting.FileSystemObject" ); +var ISERunDir = ""; +var ISELogFile = "runme.log"; +var ISELogFileStr = null; +var ISELogEcho = true; +var ISEOldVersionWSH = false; + + + +// BOOTSTRAP +ISEInit(); + + + +// +// ISE FUNCTIONS +// +function ISEInit() { + + // 1. RUN DIR setup + var ISEScrFP = WScript.ScriptFullName; + var ISEScrN = WScript.ScriptName; + ISERunDir = + ISEScrFP.substr( 0, ISEScrFP.length - ISEScrN.length - 1 ); + + // 2. LOG file setup + ISELogFileStr = ISEOpenFile( ISELogFile ); + + // 3. LOG echo? + var ISEScriptArgs = WScript.Arguments; + for ( var loopi=0; loopi> " + ISELogFile + " 2>&1"; + ISEExitCode = ISEShell.Run( ISECmdLine, 0, true ); + ISELogFileStr = ISEOpenFile( ISELogFile ); + + } else { // WSH 5.6 + + // LAUNCH! + ISEShell.CurrentDirectory = ISERunDir; + + // Redirect STDERR to STDOUT + ISECmdLine = "%comspec% /c " + ISECmdLine + " 2>&1"; + var ISEProcess = ISEShell.Exec( ISECmdLine ); + + // BEGIN file creation + var ISENetwork = WScript.CreateObject( "WScript.Network" ); + var ISEHost = ISENetwork.ComputerName; + var ISEUser = ISENetwork.UserName; + var ISEPid = ISEProcess.ProcessID; + var ISEBeginFile = ISEOpenFile( "." + ISEStep + ".begin.rst" ); + ISEBeginFile.WriteLine( "" ); + ISEBeginFile.WriteLine( "" ); + ISEBeginFile.WriteLine( " " ); + ISEBeginFile.WriteLine( " " ); + ISEBeginFile.WriteLine( "" ); + ISEBeginFile.Close(); + + var ISEOutStr = ISEProcess.StdOut; + var ISEErrStr = ISEProcess.StdErr; + + // WAIT for ISEStep to finish + while ( ISEProcess.Status == 0 ) { + + // dump stdout then stderr - feels a little arbitrary + while ( !ISEOutStr.AtEndOfStream ) { + ISEStdOut( ISEOutStr.ReadLine() ); + } + + WScript.Sleep( 100 ); + } + + ISEExitCode = ISEProcess.ExitCode; + } + + ISELogFileStr.Close(); + + // END/ERROR file creation + if ( ISEExitCode != 0 ) { + ISETouchFile( ISEStep, "error" ); + + } else { + ISETouchFile( ISEStep, "end" ); + } + + return ISEExitCode; +} + + +// +// UTILITIES +// +function ISEStdOut( ISELine ) { + + ISELogFileStr.WriteLine( ISELine ); + + if ( ISELogEcho ) { + WScript.StdOut.WriteLine( ISELine ); + } +} + +function ISEStdErr( ISELine ) { + + ISELogFileStr.WriteLine( ISELine ); + + if ( ISELogEcho ) { + WScript.StdErr.WriteLine( ISELine ); + } +} + +function ISETouchFile( ISERoot, ISEStatus ) { + + var ISETFile = + ISEOpenFile( "." + ISERoot + "." + ISEStatus + ".rst" ); + ISETFile.Close(); +} + +function ISEOpenFile( ISEFilename ) { + + // This function has been updated to deal with a problem seen in CR #870871. + // In that case the user runs a script that runs impl_1, and then turns around + // and runs impl_1 -to_step write_bitstream. That second run takes place in + // the same directory, which means we may hit some of the same files, and in + // particular, we will open the runme.log file. Even though this script closes + // the file (now), we see cases where a subsequent attempt to open the file + // fails. Perhaps the OS is slow to release the lock, or the disk comes into + // play? In any case, we try to work around this by first waiting if the file + // is already there for an arbitrary 5 seconds. Then we use a try-catch block + // and try to open the file 10 times with a one second delay after each attempt. + // Again, 10 is arbitrary. But these seem to stop the hang in CR #870871. + // If there is an unrecognized exception when trying to open the file, we output + // an error message and write details to an exception.log file. + var ISEFullPath = ISERunDir + "/" + ISEFilename; + if (ISEFileSys.FileExists(ISEFullPath)) { + // File is already there. This could be a problem. Wait in case it is still in use. + WScript.Sleep(5000); + } + var i; + for (i = 0; i < 10; ++i) { + try { + return ISEFileSys.OpenTextFile(ISEFullPath, 8, true); + } catch (exception) { + var error_code = exception.number & 0xFFFF; // The other bits are a facility code. + if (error_code == 52) { // 52 is bad file name or number. + // Wait a second and try again. + WScript.Sleep(1000); + continue; + } else { + WScript.StdErr.WriteLine("ERROR: Exception caught trying to open file " + ISEFullPath); + var exceptionFilePath = ISERunDir + "/exception.log"; + if (!ISEFileSys.FileExists(exceptionFilePath)) { + WScript.StdErr.WriteLine("See file " + exceptionFilePath + " for details."); + var exceptionFile = ISEFileSys.OpenTextFile(exceptionFilePath, 8, true); + exceptionFile.WriteLine("ERROR: Exception caught trying to open file " + ISEFullPath); + exceptionFile.WriteLine("\tException name: " + exception.name); + exceptionFile.WriteLine("\tException error code: " + error_code); + exceptionFile.WriteLine("\tException message: " + exception.message); + exceptionFile.Close(); + } + throw exception; + } + } + } + // If we reached this point, we failed to open the file after 10 attempts. + // We need to error out. + WScript.StdErr.WriteLine("ERROR: Failed to open file " + ISEFullPath); + WScript.Quit(1); +} diff --git a/project_1/project_1.runs/synth_1/ISEWrap.sh b/project_1/project_1.runs/synth_1/ISEWrap.sh new file mode 100755 index 0000000..e1a8f5d --- /dev/null +++ b/project_1/project_1.runs/synth_1/ISEWrap.sh @@ -0,0 +1,63 @@ +#!/bin/sh + +# +# Vivado(TM) +# ISEWrap.sh: Vivado Runs Script for UNIX +# Copyright 1986-1999, 2001-2013 Xilinx, Inc. All Rights Reserved. +# + +HD_LOG=$1 +shift + +# CHECK for a STOP FILE +if [ -f .stop.rst ] +then +echo "" >> $HD_LOG +echo "*** Halting run - EA reset detected ***" >> $HD_LOG +echo "" >> $HD_LOG +exit 1 +fi + +ISE_STEP=$1 +shift + +# WRITE STEP HEADER to LOG +echo "" >> $HD_LOG +echo "*** Running $ISE_STEP" >> $HD_LOG +echo " with args $@" >> $HD_LOG +echo "" >> $HD_LOG + +# LAUNCH! +$ISE_STEP "$@" >> $HD_LOG 2>&1 & + +# BEGIN file creation +ISE_PID=$! +if [ X != X$HOSTNAME ] +then +ISE_HOST=$HOSTNAME #bash +else +ISE_HOST=$HOST #csh +fi +ISE_USER=$USER +ISE_BEGINFILE=.$ISE_STEP.begin.rst +/bin/touch $ISE_BEGINFILE +echo "" >> $ISE_BEGINFILE +echo "" >> $ISE_BEGINFILE +echo " " >> $ISE_BEGINFILE +echo " " >> $ISE_BEGINFILE +echo "" >> $ISE_BEGINFILE + +# WAIT for ISEStep to finish +wait $ISE_PID + +# END/ERROR file creation +RETVAL=$? +if [ $RETVAL -eq 0 ] +then + /bin/touch .$ISE_STEP.end.rst +else + /bin/touch .$ISE_STEP.error.rst +fi + +exit $RETVAL + diff --git a/project_1/project_1.runs/synth_1/gen_run.xml b/project_1/project_1.runs/synth_1/gen_run.xml new file mode 100644 index 0000000..2a02167 --- /dev/null +++ b/project_1/project_1.runs/synth_1/gen_run.xml @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/project_1/project_1.runs/synth_1/htr.txt b/project_1/project_1.runs/synth_1/htr.txt new file mode 100644 index 0000000..4240d46 --- /dev/null +++ b/project_1/project_1.runs/synth_1/htr.txt @@ -0,0 +1,9 @@ +# +# Vivado(TM) +# htr.txt: a Vivado-generated description of how-to-repeat the +# the basic steps of a run. Note that runme.bat/sh needs +# to be invoked for Vivado to track run status. +# Copyright 1986-2017 Xilinx, Inc. All Rights Reserved. +# + +vivado -log lab0_wrapper.vds -m64 -product Vivado -mode batch -messageDb vivado.pb -notrace -source lab0_wrapper.tcl diff --git a/project_1/project_1.runs/synth_1/lab0_wrapper.dcp b/project_1/project_1.runs/synth_1/lab0_wrapper.dcp new file mode 100644 index 0000000..844c103 Binary files /dev/null and b/project_1/project_1.runs/synth_1/lab0_wrapper.dcp differ diff --git a/project_1/project_1.runs/synth_1/lab0_wrapper.tcl b/project_1/project_1.runs/synth_1/lab0_wrapper.tcl new file mode 100644 index 0000000..aa9e79e --- /dev/null +++ b/project_1/project_1.runs/synth_1/lab0_wrapper.tcl @@ -0,0 +1,40 @@ +# +# Synthesis run script generated by Vivado +# + +set_param xicom.use_bs_reader 1 +set_msg_config -id {Synth 8-256} -limit 10000 +set_msg_config -id {Synth 8-638} -limit 10000 +create_project -in_memory -part xc7z010clg400-1 + +set_param project.singleFileAddWarning.threshold 0 +set_param project.compositeFile.enableAutoGeneration 0 +set_param synth.vivado.isSynthRun true +set_property webtalk.parent_dir /home/jspear/Development/School/Comp_Arc/Lab0/project_1/project_1.cache/wt [current_project] +set_property parent.project_path /home/jspear/Development/School/Comp_Arc/Lab0/project_1/project_1.xpr [current_project] +set_property default_lib xil_defaultlib [current_project] +set_property target_language Verilog [current_project] +set_property ip_output_repo /home/jspear/Development/School/Comp_Arc/Lab0/project_1/project_1.cache/ip [current_project] +set_property ip_cache_permissions {read write} [current_project] +read_verilog -library xil_defaultlib { + /home/jspear/Development/School/Comp_Arc/Lab0/adder.v + /home/jspear/Development/School/Comp_Arc/Lab0/lab0_wrapper.v +} +# Mark all dcp files as not used in implementation to prevent them from being +# stitched into the results of this synthesis run. Any black boxes in the +# design are intentionally left as such for best results. Dcp files will be +# stitched into the design at a later time, either when this synthesis run is +# opened, or when it is stitched into a dependent implementation run. +foreach dcp [get_files -quiet -all -filter file_type=="Design\ Checkpoint"] { + set_property used_in_implementation false $dcp +} +read_xdc /home/jspear/Development/School/Comp_Arc/Lab0/ZYBO_Master.xdc +set_property used_in_implementation false [get_files /home/jspear/Development/School/Comp_Arc/Lab0/ZYBO_Master.xdc] + + +synth_design -top lab0_wrapper -part xc7z010clg400-1 + + +write_checkpoint -force -noxdef lab0_wrapper.dcp + +catch { report_utilization -file lab0_wrapper_utilization_synth.rpt -pb lab0_wrapper_utilization_synth.pb } diff --git a/project_1/project_1.runs/synth_1/lab0_wrapper.vds b/project_1/project_1.runs/synth_1/lab0_wrapper.vds new file mode 100644 index 0000000..2bbfcd0 --- /dev/null +++ b/project_1/project_1.runs/synth_1/lab0_wrapper.vds @@ -0,0 +1,300 @@ +#----------------------------------------------------------- +# Vivado v2017.2 (64-bit) +# SW Build 1909853 on Thu Jun 15 18:39:10 MDT 2017 +# IP Build 1909766 on Thu Jun 15 19:58:00 MDT 2017 +# Start of session at: Wed Sep 27 19:47:13 2017 +# Process ID: 1794 +# Current directory: /home/jspear/Development/School/Comp_Arc/Lab0/project_1/project_1.runs/synth_1 +# Command line: vivado -log lab0_wrapper.vds -product Vivado -mode batch -messageDb vivado.pb -notrace -source lab0_wrapper.tcl +# Log file: /home/jspear/Development/School/Comp_Arc/Lab0/project_1/project_1.runs/synth_1/lab0_wrapper.vds +# Journal file: /home/jspear/Development/School/Comp_Arc/Lab0/project_1/project_1.runs/synth_1/vivado.jou +#----------------------------------------------------------- +source lab0_wrapper.tcl -notrace +Command: synth_design -top lab0_wrapper -part xc7z010clg400-1 +Starting synth_design +Attempting to get a license for feature 'Synthesis' and/or device 'xc7z010-clg400' +INFO: [Common 17-349] Got license for feature 'Synthesis' and/or device 'xc7z010-clg400' +INFO: Launching helper process for spawning children vivado processes +INFO: Helper process launched with PID 2019 +CRITICAL WARNING: [Synth 8-2490] overwriting previous definition of module FullAdder1Bit [/home/jspear/Development/School/Comp_Arc/Lab0/adder.v:9] +CRITICAL WARNING: [Synth 8-2490] overwriting previous definition of module HalfAdder [/home/jspear/Development/School/Comp_Arc/Lab0/adder.v:30] +CRITICAL WARNING: [Synth 8-2490] overwriting previous definition of module FullAdder4bit [/home/jspear/Development/School/Comp_Arc/Lab0/adder.v:40] +--------------------------------------------------------------------------------- +Starting RTL Elaboration : Time (s): cpu = 00:00:04 ; elapsed = 00:00:04 . Memory (MB): peak = 1149.863 ; gain = 48.246 ; free physical = 7892 ; free virtual = 19474 +--------------------------------------------------------------------------------- +INFO: [Synth 8-638] synthesizing module 'lab0_wrapper' [/home/jspear/Development/School/Comp_Arc/Lab0/lab0_wrapper.v:95] +INFO: [Synth 8-638] synthesizing module 'dff' [/home/jspear/Development/School/Comp_Arc/Lab0/lab0_wrapper.v:37] + Parameter W bound to: 4 - type: integer +INFO: [Synth 8-256] done synthesizing module 'dff' (1#1) [/home/jspear/Development/School/Comp_Arc/Lab0/lab0_wrapper.v:37] +INFO: [Synth 8-638] synthesizing module 'jkff1' [/home/jspear/Development/School/Comp_Arc/Lab0/lab0_wrapper.v:52] +INFO: [Synth 8-256] done synthesizing module 'jkff1' (2#1) [/home/jspear/Development/School/Comp_Arc/Lab0/lab0_wrapper.v:52] +INFO: [Synth 8-638] synthesizing module 'mux2' [/home/jspear/Development/School/Comp_Arc/Lab0/lab0_wrapper.v:73] + Parameter W bound to: 4 - type: integer +INFO: [Synth 8-256] done synthesizing module 'mux2' (3#1) [/home/jspear/Development/School/Comp_Arc/Lab0/lab0_wrapper.v:73] +INFO: [Synth 8-638] synthesizing module 'FullAdder4bit' [/home/jspear/Development/School/Comp_Arc/Lab0/adder.v:40] +INFO: [Synth 8-638] synthesizing module 'HalfAdder' [/home/jspear/Development/School/Comp_Arc/Lab0/adder.v:30] +INFO: [Synth 8-638] synthesizing module 'FullAdder1Bit' [/home/jspear/Development/School/Comp_Arc/Lab0/adder.v:9] +INFO: [Synth 8-256] done synthesizing module 'FullAdder1Bit' (4#1) [/home/jspear/Development/School/Comp_Arc/Lab0/adder.v:9] +INFO: [Synth 8-256] done synthesizing module 'HalfAdder' (5#1) [/home/jspear/Development/School/Comp_Arc/Lab0/adder.v:30] +INFO: [Synth 8-256] done synthesizing module 'FullAdder4bit' (6#1) [/home/jspear/Development/School/Comp_Arc/Lab0/adder.v:40] +INFO: [Synth 8-256] done synthesizing module 'lab0_wrapper' (7#1) [/home/jspear/Development/School/Comp_Arc/Lab0/lab0_wrapper.v:95] +--------------------------------------------------------------------------------- +Finished RTL Elaboration : Time (s): cpu = 00:00:04 ; elapsed = 00:00:04 . Memory (MB): peak = 1174.121 ; gain = 72.504 ; free physical = 7909 ; free virtual = 19492 +--------------------------------------------------------------------------------- + +Report Check Netlist: ++------+------------------+-------+---------+-------+------------------+ +| |Item |Errors |Warnings |Status |Description | ++------+------------------+-------+---------+-------+------------------+ +|1 |multi_driven_nets | 0| 0|Passed |Multi driven nets | ++------+------------------+-------+---------+-------+------------------+ +--------------------------------------------------------------------------------- +Finished RTL Optimization Phase 1 : Time (s): cpu = 00:00:04 ; elapsed = 00:00:04 . Memory (MB): peak = 1174.121 ; gain = 72.504 ; free physical = 7909 ; free virtual = 19491 +--------------------------------------------------------------------------------- +INFO: [Device 21-403] Loading part xc7z010clg400-1 +INFO: [Project 1-570] Preparing netlist for logic optimization + +Processing XDC Constraints +Initializing timing engine +Parsing XDC File [/home/jspear/Development/School/Comp_Arc/Lab0/ZYBO_Master.xdc] +Finished Parsing XDC File [/home/jspear/Development/School/Comp_Arc/Lab0/ZYBO_Master.xdc] +INFO: [Project 1-236] Implementation specific constraints were found while reading constraint file [/home/jspear/Development/School/Comp_Arc/Lab0/ZYBO_Master.xdc]. These constraints will be ignored for synthesis but will be used in implementation. Impacted constraints are listed in the file [.Xil/lab0_wrapper_propImpl.xdc]. +Resolution: To avoid this warning, move constraints listed in [.Xil/lab0_wrapper_propImpl.xdc] to another XDC file and exclude this new file from synthesis with the used_in_synthesis property (File Properties dialog in GUI) and re-run elaboration/synthesis. +Completed Processing XDC Constraints + +INFO: [Project 1-111] Unisim Transformation Summary: +No Unisim elements were transformed. + +Constraint Validation Runtime : Time (s): cpu = 00:00:00 ; elapsed = 00:00:00 . Memory (MB): peak = 1482.059 ; gain = 0.000 ; free physical = 7612 ; free virtual = 19194 +--------------------------------------------------------------------------------- +Finished Constraint Validation : Time (s): cpu = 00:00:12 ; elapsed = 00:00:12 . Memory (MB): peak = 1482.062 ; gain = 380.445 ; free physical = 7758 ; free virtual = 19341 +--------------------------------------------------------------------------------- +--------------------------------------------------------------------------------- +Start Loading Part and Timing Information +--------------------------------------------------------------------------------- +Loading part: xc7z010clg400-1 +--------------------------------------------------------------------------------- +Finished Loading Part and Timing Information : Time (s): cpu = 00:00:12 ; elapsed = 00:00:12 . Memory (MB): peak = 1482.062 ; gain = 380.445 ; free physical = 7758 ; free virtual = 19341 +--------------------------------------------------------------------------------- +--------------------------------------------------------------------------------- +Start Applying 'set_property' XDC Constraints +--------------------------------------------------------------------------------- +--------------------------------------------------------------------------------- +Finished applying 'set_property' XDC Constraints : Time (s): cpu = 00:00:12 ; elapsed = 00:00:12 . Memory (MB): peak = 1482.062 ; gain = 380.445 ; free physical = 7760 ; free virtual = 19343 +--------------------------------------------------------------------------------- +--------------------------------------------------------------------------------- +Finished RTL Optimization Phase 2 : Time (s): cpu = 00:00:12 ; elapsed = 00:00:12 . Memory (MB): peak = 1482.062 ; gain = 380.445 ; free physical = 7753 ; free virtual = 19335 +--------------------------------------------------------------------------------- + +Report RTL Partitions: ++-+--------------+------------+----------+ +| |RTL Partition |Replication |Instances | ++-+--------------+------------+----------+ ++-+--------------+------------+----------+ +--------------------------------------------------------------------------------- +Start RTL Component Statistics +--------------------------------------------------------------------------------- +Detailed RTL Component Info : ++---XORs : + 3 Input 1 Bit XORs := 4 + 2 Input 1 Bit XORs := 1 ++---Registers : + 4 Bit Registers := 2 + 1 Bit Registers := 1 ++---Muxes : + 2 Input 4 Bit Muxes := 1 +--------------------------------------------------------------------------------- +Finished RTL Component Statistics +--------------------------------------------------------------------------------- +--------------------------------------------------------------------------------- +Start RTL Hierarchical Component Statistics +--------------------------------------------------------------------------------- +Hierarchical RTL Component report +Module dff +Detailed RTL Component Info : ++---Registers : + 4 Bit Registers := 1 +Module jkff1 +Detailed RTL Component Info : ++---Registers : + 1 Bit Registers := 1 +Module mux2 +Detailed RTL Component Info : ++---Muxes : + 2 Input 4 Bit Muxes := 1 +Module FullAdder1Bit +Detailed RTL Component Info : ++---XORs : + 3 Input 1 Bit XORs := 1 +Module FullAdder4bit +Detailed RTL Component Info : ++---XORs : + 2 Input 1 Bit XORs := 1 +--------------------------------------------------------------------------------- +Finished RTL Hierarchical Component Statistics +--------------------------------------------------------------------------------- +--------------------------------------------------------------------------------- +Start Part Resource Summary +--------------------------------------------------------------------------------- +Part Resources: +DSPs: 80 (col length:40) +BRAMs: 120 (col length: RAMB18 40 RAMB36 20) +--------------------------------------------------------------------------------- +Finished Part Resource Summary +--------------------------------------------------------------------------------- +--------------------------------------------------------------------------------- +Start Cross Boundary and Area Optimization +--------------------------------------------------------------------------------- +--------------------------------------------------------------------------------- +Finished Cross Boundary and Area Optimization : Time (s): cpu = 00:00:12 ; elapsed = 00:00:12 . Memory (MB): peak = 1482.066 ; gain = 380.449 ; free physical = 7742 ; free virtual = 19324 +--------------------------------------------------------------------------------- + +Report RTL Partitions: ++-+--------------+------------+----------+ +| |RTL Partition |Replication |Instances | ++-+--------------+------------+----------+ ++-+--------------+------------+----------+ +--------------------------------------------------------------------------------- +Start Applying XDC Timing Constraints +--------------------------------------------------------------------------------- +--------------------------------------------------------------------------------- +Finished Applying XDC Timing Constraints : Time (s): cpu = 00:00:18 ; elapsed = 00:00:18 . Memory (MB): peak = 1482.066 ; gain = 380.449 ; free physical = 7595 ; free virtual = 19176 +--------------------------------------------------------------------------------- +--------------------------------------------------------------------------------- +Start Timing Optimization +--------------------------------------------------------------------------------- +--------------------------------------------------------------------------------- +Finished Timing Optimization : Time (s): cpu = 00:00:18 ; elapsed = 00:00:18 . Memory (MB): peak = 1482.066 ; gain = 380.449 ; free physical = 7595 ; free virtual = 19176 +--------------------------------------------------------------------------------- + +Report RTL Partitions: ++-+--------------+------------+----------+ +| |RTL Partition |Replication |Instances | ++-+--------------+------------+----------+ ++-+--------------+------------+----------+ +--------------------------------------------------------------------------------- +Start Technology Mapping +--------------------------------------------------------------------------------- +--------------------------------------------------------------------------------- +Finished Technology Mapping : Time (s): cpu = 00:00:18 ; elapsed = 00:00:18 . Memory (MB): peak = 1490.066 ; gain = 388.449 ; free physical = 7594 ; free virtual = 19175 +--------------------------------------------------------------------------------- + +Report RTL Partitions: ++-+--------------+------------+----------+ +| |RTL Partition |Replication |Instances | ++-+--------------+------------+----------+ ++-+--------------+------------+----------+ +--------------------------------------------------------------------------------- +Start IO Insertion +--------------------------------------------------------------------------------- +--------------------------------------------------------------------------------- +Start Flattening Before IO Insertion +--------------------------------------------------------------------------------- +--------------------------------------------------------------------------------- +Finished Flattening Before IO Insertion +--------------------------------------------------------------------------------- +--------------------------------------------------------------------------------- +Start Final Netlist Cleanup +--------------------------------------------------------------------------------- +--------------------------------------------------------------------------------- +Finished Final Netlist Cleanup +--------------------------------------------------------------------------------- +--------------------------------------------------------------------------------- +Finished IO Insertion : Time (s): cpu = 00:00:18 ; elapsed = 00:00:18 . Memory (MB): peak = 1490.066 ; gain = 388.449 ; free physical = 7594 ; free virtual = 19175 +--------------------------------------------------------------------------------- + +Report Check Netlist: ++------+------------------+-------+---------+-------+------------------+ +| |Item |Errors |Warnings |Status |Description | ++------+------------------+-------+---------+-------+------------------+ +|1 |multi_driven_nets | 0| 0|Passed |Multi driven nets | ++------+------------------+-------+---------+-------+------------------+ +--------------------------------------------------------------------------------- +Start Renaming Generated Instances +--------------------------------------------------------------------------------- +--------------------------------------------------------------------------------- +Finished Renaming Generated Instances : Time (s): cpu = 00:00:18 ; elapsed = 00:00:18 . Memory (MB): peak = 1490.066 ; gain = 388.449 ; free physical = 7594 ; free virtual = 19175 +--------------------------------------------------------------------------------- + +Report RTL Partitions: ++-+--------------+------------+----------+ +| |RTL Partition |Replication |Instances | ++-+--------------+------------+----------+ ++-+--------------+------------+----------+ +--------------------------------------------------------------------------------- +Start Rebuilding User Hierarchy +--------------------------------------------------------------------------------- +--------------------------------------------------------------------------------- +Finished Rebuilding User Hierarchy : Time (s): cpu = 00:00:18 ; elapsed = 00:00:18 . Memory (MB): peak = 1490.066 ; gain = 388.449 ; free physical = 7593 ; free virtual = 19174 +--------------------------------------------------------------------------------- +--------------------------------------------------------------------------------- +Start Renaming Generated Ports +--------------------------------------------------------------------------------- +--------------------------------------------------------------------------------- +Finished Renaming Generated Ports : Time (s): cpu = 00:00:18 ; elapsed = 00:00:18 . Memory (MB): peak = 1490.066 ; gain = 388.449 ; free physical = 7592 ; free virtual = 19173 +--------------------------------------------------------------------------------- +--------------------------------------------------------------------------------- +Start Handling Custom Attributes +--------------------------------------------------------------------------------- +--------------------------------------------------------------------------------- +Finished Handling Custom Attributes : Time (s): cpu = 00:00:18 ; elapsed = 00:00:18 . Memory (MB): peak = 1490.066 ; gain = 388.449 ; free physical = 7590 ; free virtual = 19171 +--------------------------------------------------------------------------------- +--------------------------------------------------------------------------------- +Start Renaming Generated Nets +--------------------------------------------------------------------------------- +--------------------------------------------------------------------------------- +Finished Renaming Generated Nets : Time (s): cpu = 00:00:18 ; elapsed = 00:00:18 . Memory (MB): peak = 1490.066 ; gain = 388.449 ; free physical = 7589 ; free virtual = 19171 +--------------------------------------------------------------------------------- +--------------------------------------------------------------------------------- +Start Writing Synthesis Report +--------------------------------------------------------------------------------- + +Report BlackBoxes: ++-+--------------+----------+ +| |BlackBox name |Instances | ++-+--------------+----------+ ++-+--------------+----------+ + +Report Cell Usage: ++------+-----+------+ +| |Cell |Count | ++------+-----+------+ +|1 |BUFG | 1| +|2 |LUT3 | 1| +|3 |LUT4 | 4| +|4 |LUT5 | 1| +|5 |LUT6 | 2| +|6 |FDRE | 9| +|7 |IBUF | 9| +|8 |OBUF | 4| ++------+-----+------+ + +Report Instance Areas: ++------+----------+-------+------+ +| |Instance |Module |Cells | ++------+----------+-------+------+ +|1 |top | | 31| +|2 | opA_mem |dff | 9| +|3 | opB_mem |dff_0 | 6| +|4 | src_sel |jkff1 | 2| ++------+----------+-------+------+ +--------------------------------------------------------------------------------- +Finished Writing Synthesis Report : Time (s): cpu = 00:00:18 ; elapsed = 00:00:18 . Memory (MB): peak = 1490.066 ; gain = 388.449 ; free physical = 7589 ; free virtual = 19170 +--------------------------------------------------------------------------------- +Synthesis finished with 0 errors, 0 critical warnings and 0 warnings. +Synthesis Optimization Runtime : Time (s): cpu = 00:00:14 ; elapsed = 00:00:14 . Memory (MB): peak = 1490.066 ; gain = 80.512 ; free physical = 7648 ; free virtual = 19229 +Synthesis Optimization Complete : Time (s): cpu = 00:00:18 ; elapsed = 00:00:19 . Memory (MB): peak = 1490.074 ; gain = 388.449 ; free physical = 7648 ; free virtual = 19229 +INFO: [Project 1-571] Translating synthesized netlist +INFO: [Netlist 29-17] Analyzing 9 Unisim elements for replacement +INFO: [Netlist 29-28] Unisim Transformation completed in 0 CPU seconds +INFO: [Project 1-570] Preparing netlist for logic optimization +INFO: [Opt 31-138] Pushed 0 inverter(s) to 0 load pin(s). +INFO: [Project 1-111] Unisim Transformation Summary: +No Unisim elements were transformed. + +25 Infos, 6 Warnings, 3 Critical Warnings and 0 Errors encountered. +synth_design completed successfully +synth_design: Time (s): cpu = 00:00:19 ; elapsed = 00:00:20 . Memory (MB): peak = 1490.074 ; gain = 401.039 ; free physical = 7634 ; free virtual = 19215 +INFO: [Common 17-1381] The checkpoint '/home/jspear/Development/School/Comp_Arc/Lab0/project_1/project_1.runs/synth_1/lab0_wrapper.dcp' has been generated. +report_utilization: Time (s): cpu = 00:00:00.06 ; elapsed = 00:00:00.09 . Memory (MB): peak = 1514.082 ; gain = 0.000 ; free physical = 7635 ; free virtual = 19216 +INFO: [Common 17-206] Exiting Vivado at Wed Sep 27 19:47:41 2017... diff --git a/project_1/project_1.runs/synth_1/lab0_wrapper_utilization_synth.pb b/project_1/project_1.runs/synth_1/lab0_wrapper_utilization_synth.pb new file mode 100644 index 0000000..6bb822a Binary files /dev/null and b/project_1/project_1.runs/synth_1/lab0_wrapper_utilization_synth.pb differ diff --git a/project_1/project_1.runs/synth_1/lab0_wrapper_utilization_synth.rpt b/project_1/project_1.runs/synth_1/lab0_wrapper_utilization_synth.rpt new file mode 100644 index 0000000..89577f2 --- /dev/null +++ b/project_1/project_1.runs/synth_1/lab0_wrapper_utilization_synth.rpt @@ -0,0 +1,175 @@ +Copyright 1986-2017 Xilinx, Inc. All Rights Reserved. +------------------------------------------------------------------------------------------------------------------- +| Tool Version : Vivado v.2017.2 (lin64) Build 1909853 Thu Jun 15 18:39:10 MDT 2017 +| Date : Wed Sep 27 19:47:40 2017 +| Host : Kreyshawn running 64-bit Ubuntu 14.04.5 LTS +| Command : report_utilization -file lab0_wrapper_utilization_synth.rpt -pb lab0_wrapper_utilization_synth.pb +| Design : lab0_wrapper +| Device : 7z010clg400-1 +| Design State : Synthesized +------------------------------------------------------------------------------------------------------------------- + +Utilization Design Information + +Table of Contents +----------------- +1. Slice Logic +1.1 Summary of Registers by Type +2. Memory +3. DSP +4. IO and GT Specific +5. Clocking +6. Specific Feature +7. Primitives +8. Black Boxes +9. Instantiated Netlists + +1. Slice Logic +-------------- + ++-------------------------+------+-------+-----------+-------+ +| Site Type | Used | Fixed | Available | Util% | ++-------------------------+------+-------+-----------+-------+ +| Slice LUTs* | 7 | 0 | 17600 | 0.04 | +| LUT as Logic | 7 | 0 | 17600 | 0.04 | +| LUT as Memory | 0 | 0 | 6000 | 0.00 | +| Slice Registers | 9 | 0 | 35200 | 0.03 | +| Register as Flip Flop | 9 | 0 | 35200 | 0.03 | +| Register as Latch | 0 | 0 | 35200 | 0.00 | +| F7 Muxes | 0 | 0 | 8800 | 0.00 | +| F8 Muxes | 0 | 0 | 4400 | 0.00 | ++-------------------------+------+-------+-----------+-------+ +* Warning! The Final LUT count, after physical optimizations and full implementation, is typically lower. Run opt_design after synthesis, if not already completed, for a more realistic count. + + +1.1 Summary of Registers by Type +-------------------------------- + ++-------+--------------+-------------+--------------+ +| Total | Clock Enable | Synchronous | Asynchronous | ++-------+--------------+-------------+--------------+ +| 0 | _ | - | - | +| 0 | _ | - | Set | +| 0 | _ | - | Reset | +| 0 | _ | Set | - | +| 0 | _ | Reset | - | +| 0 | Yes | - | - | +| 0 | Yes | - | Set | +| 0 | Yes | - | Reset | +| 0 | Yes | Set | - | +| 9 | Yes | Reset | - | ++-------+--------------+-------------+--------------+ + + +2. Memory +--------- + ++----------------+------+-------+-----------+-------+ +| Site Type | Used | Fixed | Available | Util% | ++----------------+------+-------+-----------+-------+ +| Block RAM Tile | 0 | 0 | 60 | 0.00 | +| RAMB36/FIFO* | 0 | 0 | 60 | 0.00 | +| RAMB18 | 0 | 0 | 120 | 0.00 | ++----------------+------+-------+-----------+-------+ +* Note: Each Block RAM Tile only has one FIFO logic available and therefore can accommodate only one FIFO36E1 or one FIFO18E1. However, if a FIFO18E1 occupies a Block RAM Tile, that tile can still accommodate a RAMB18E1 + + +3. DSP +------ + ++-----------+------+-------+-----------+-------+ +| Site Type | Used | Fixed | Available | Util% | ++-----------+------+-------+-----------+-------+ +| DSPs | 0 | 0 | 80 | 0.00 | ++-----------+------+-------+-----------+-------+ + + +4. IO and GT Specific +--------------------- + ++-----------------------------+------+-------+-----------+-------+ +| Site Type | Used | Fixed | Available | Util% | ++-----------------------------+------+-------+-----------+-------+ +| Bonded IOB | 13 | 0 | 100 | 13.00 | +| Bonded IPADs | 0 | 0 | 2 | 0.00 | +| Bonded IOPADs | 0 | 0 | 130 | 0.00 | +| PHY_CONTROL | 0 | 0 | 2 | 0.00 | +| PHASER_REF | 0 | 0 | 2 | 0.00 | +| OUT_FIFO | 0 | 0 | 8 | 0.00 | +| IN_FIFO | 0 | 0 | 8 | 0.00 | +| IDELAYCTRL | 0 | 0 | 2 | 0.00 | +| IBUFDS | 0 | 0 | 96 | 0.00 | +| PHASER_OUT/PHASER_OUT_PHY | 0 | 0 | 8 | 0.00 | +| PHASER_IN/PHASER_IN_PHY | 0 | 0 | 8 | 0.00 | +| IDELAYE2/IDELAYE2_FINEDELAY | 0 | 0 | 100 | 0.00 | +| ILOGIC | 0 | 0 | 100 | 0.00 | +| OLOGIC | 0 | 0 | 100 | 0.00 | ++-----------------------------+------+-------+-----------+-------+ + + +5. Clocking +----------- + ++------------+------+-------+-----------+-------+ +| Site Type | Used | Fixed | Available | Util% | ++------------+------+-------+-----------+-------+ +| BUFGCTRL | 1 | 0 | 32 | 3.13 | +| BUFIO | 0 | 0 | 8 | 0.00 | +| MMCME2_ADV | 0 | 0 | 2 | 0.00 | +| PLLE2_ADV | 0 | 0 | 2 | 0.00 | +| BUFMRCE | 0 | 0 | 4 | 0.00 | +| BUFHCE | 0 | 0 | 48 | 0.00 | +| BUFR | 0 | 0 | 8 | 0.00 | ++------------+------+-------+-----------+-------+ + + +6. Specific Feature +------------------- + ++-------------+------+-------+-----------+-------+ +| Site Type | Used | Fixed | Available | Util% | ++-------------+------+-------+-----------+-------+ +| BSCANE2 | 0 | 0 | 4 | 0.00 | +| CAPTUREE2 | 0 | 0 | 1 | 0.00 | +| DNA_PORT | 0 | 0 | 1 | 0.00 | +| EFUSE_USR | 0 | 0 | 1 | 0.00 | +| FRAME_ECCE2 | 0 | 0 | 1 | 0.00 | +| ICAPE2 | 0 | 0 | 2 | 0.00 | +| STARTUPE2 | 0 | 0 | 1 | 0.00 | +| XADC | 0 | 0 | 1 | 0.00 | ++-------------+------+-------+-----------+-------+ + + +7. Primitives +------------- + ++----------+------+---------------------+ +| Ref Name | Used | Functional Category | ++----------+------+---------------------+ +| IBUF | 9 | IO | +| FDRE | 9 | Flop & Latch | +| OBUF | 4 | IO | +| LUT4 | 4 | LUT | +| LUT6 | 2 | LUT | +| LUT5 | 1 | LUT | +| LUT3 | 1 | LUT | +| BUFG | 1 | Clock | ++----------+------+---------------------+ + + +8. Black Boxes +-------------- + ++----------+------+ +| Ref Name | Used | ++----------+------+ + + +9. Instantiated Netlists +------------------------ + ++----------+------+ +| Ref Name | Used | ++----------+------+ + + diff --git a/project_1/project_1.runs/synth_1/project.wdf b/project_1/project_1.runs/synth_1/project.wdf new file mode 100644 index 0000000..dbd9197 --- /dev/null +++ b/project_1/project_1.runs/synth_1/project.wdf @@ -0,0 +1,31 @@ +version:1 +70726f6a656374:76697661646f5f75736167655c70726f6a6563745f64617461:737263736574636f756e74:32:00:00 +70726f6a656374:76697661646f5f75736167655c70726f6a6563745f64617461:636f6e73747261696e74736574636f756e74:31:00:00 +70726f6a656374:76697661646f5f75736167655c70726f6a6563745f64617461:64657369676e6d6f6465:52544c:00:00 +70726f6a656374:76697661646f5f75736167655c70726f6a6563745f64617461:73796e7468657369737374726174656779:56697661646f2053796e7468657369732044656661756c7473:00:00 +70726f6a656374:76697661646f5f75736167655c70726f6a6563745f64617461:696d706c7374726174656779:56697661646f20496d706c656d656e746174696f6e2044656661756c7473:00:00 +70726f6a656374:76697661646f5f75736167655c70726f6a6563745f64617461:63757272656e7473796e74686573697372756e:73796e74685f31:00:00 +70726f6a656374:76697661646f5f75736167655c70726f6a6563745f64617461:63757272656e74696d706c72756e:696d706c5f31:00:00 +70726f6a656374:76697661646f5f75736167655c70726f6a6563745f64617461:746f74616c73796e74686573697372756e73:31:00:00 +70726f6a656374:76697661646f5f75736167655c70726f6a6563745f64617461:746f74616c696d706c72756e73:31:00:00 +70726f6a656374:76697661646f5f75736167655c70726f6a6563745f64617461:636f72655f636f6e7461696e6572:66616c7365:00:00 +70726f6a656374:76697661646f5f75736167655c70726f6a6563745f64617461:73696d756c61746f725f6c616e6775616765:4d69786564:00:00 +70726f6a656374:76697661646f5f75736167655c70726f6a6563745f64617461:7461726765745f6c616e6775616765:566572696c6f67:00:00 +70726f6a656374:76697661646f5f75736167655c70726f6a6563745f64617461:64656661756c745f6c696272617279:78696c5f64656661756c746c6962:00:00 +70726f6a656374:76697661646f5f75736167655c70726f6a6563745f64617461:7461726765745f73696d756c61746f72:5853696d:00:00 +70726f6a656374:76697661646f5f75736167655c70726f6a6563745f64617461:6c61756e63685f73696d756c6174696f6e5f7873696d:30:00:00 +70726f6a656374:76697661646f5f75736167655c70726f6a6563745f64617461:6c61756e63685f73696d756c6174696f6e5f6d6f64656c73696d:30:00:00 +70726f6a656374:76697661646f5f75736167655c70726f6a6563745f64617461:6c61756e63685f73696d756c6174696f6e5f717565737461:30:00:00 +70726f6a656374:76697661646f5f75736167655c70726f6a6563745f64617461:6c61756e63685f73696d756c6174696f6e5f696573:30:00:00 +70726f6a656374:76697661646f5f75736167655c70726f6a6563745f64617461:6c61756e63685f73696d756c6174696f6e5f766373:30:00:00 +70726f6a656374:76697661646f5f75736167655c70726f6a6563745f64617461:6c61756e63685f73696d756c6174696f6e5f72697669657261:30:00:00 +70726f6a656374:76697661646f5f75736167655c70726f6a6563745f64617461:6c61756e63685f73696d756c6174696f6e5f61637469766568646c:30:00:00 +70726f6a656374:76697661646f5f75736167655c70726f6a6563745f64617461:6578706f72745f73696d756c6174696f6e5f7873696d:30:00:00 +70726f6a656374:76697661646f5f75736167655c70726f6a6563745f64617461:6578706f72745f73696d756c6174696f6e5f6d6f64656c73696d:30:00:00 +70726f6a656374:76697661646f5f75736167655c70726f6a6563745f64617461:6578706f72745f73696d756c6174696f6e5f717565737461:30:00:00 +70726f6a656374:76697661646f5f75736167655c70726f6a6563745f64617461:6578706f72745f73696d756c6174696f6e5f696573:30:00:00 +70726f6a656374:76697661646f5f75736167655c70726f6a6563745f64617461:6578706f72745f73696d756c6174696f6e5f766373:30:00:00 +70726f6a656374:76697661646f5f75736167655c70726f6a6563745f64617461:6578706f72745f73696d756c6174696f6e5f72697669657261:30:00:00 +70726f6a656374:76697661646f5f75736167655c70726f6a6563745f64617461:6578706f72745f73696d756c6174696f6e5f61637469766568646c:30:00:00 +5f5f48494444454e5f5f:5f5f48494444454e5f5f:50726f6a65637455554944:6433303030313866656564623464366438353762376137623130616561663361:506172656e742050412070726f6a656374204944:00 +eof:2685172307 diff --git a/project_1/project_1.runs/synth_1/rundef.js b/project_1/project_1.runs/synth_1/rundef.js new file mode 100644 index 0000000..14f4a17 --- /dev/null +++ b/project_1/project_1.runs/synth_1/rundef.js @@ -0,0 +1,40 @@ +// +// Vivado(TM) +// rundef.js: a Vivado-generated Runs Script for WSH 5.1/5.6 +// Copyright 1986-2017 Xilinx, Inc. All Rights Reserved. +// + +echo "This script was generated under a different operating system." +echo "Please update the PATH variable below, before executing this script" +exit + +var WshShell = new ActiveXObject( "WScript.Shell" ); +var ProcEnv = WshShell.Environment( "Process" ); +var PathVal = ProcEnv("PATH"); +if ( PathVal.length == 0 ) { + PathVal = "/opt/Xilinx/Vivado/2017.2/ids_lite/ISE/bin/lin64;/opt/Xilinx/Vivado/2017.2/ids_lite/ISE/lib/lin64;/opt/Xilinx/Vivado/2017.2/bin;"; +} else { + PathVal = "/opt/Xilinx/Vivado/2017.2/ids_lite/ISE/bin/lin64;/opt/Xilinx/Vivado/2017.2/ids_lite/ISE/lib/lin64;/opt/Xilinx/Vivado/2017.2/bin;" + PathVal; +} + +ProcEnv("PATH") = PathVal; + +var RDScrFP = WScript.ScriptFullName; +var RDScrN = WScript.ScriptName; +var RDScrDir = RDScrFP.substr( 0, RDScrFP.length - RDScrN.length - 1 ); +var ISEJScriptLib = RDScrDir + "/ISEWrap.js"; +eval( EAInclude(ISEJScriptLib) ); + + +ISEStep( "vivado", + "-log lab0_wrapper.vds -m64 -product Vivado -mode batch -messageDb vivado.pb -notrace -source lab0_wrapper.tcl" ); + + + +function EAInclude( EAInclFilename ) { + var EAFso = new ActiveXObject( "Scripting.FileSystemObject" ); + var EAInclFile = EAFso.OpenTextFile( EAInclFilename ); + var EAIFContents = EAInclFile.ReadAll(); + EAInclFile.Close(); + return EAIFContents; +} diff --git a/project_1/project_1.runs/synth_1/runme.bat b/project_1/project_1.runs/synth_1/runme.bat new file mode 100644 index 0000000..220ba68 --- /dev/null +++ b/project_1/project_1.runs/synth_1/runme.bat @@ -0,0 +1,11 @@ +@echo off + +rem Vivado (TM) +rem runme.bat: a Vivado-generated Script +rem Copyright 1986-2017 Xilinx, Inc. All Rights Reserved. + + +set HD_SDIR=%~dp0 +cd /d "%HD_SDIR%" +set PATH=%SYSTEMROOT%\system32;%PATH% +cscript /nologo /E:JScript "%HD_SDIR%\rundef.js" %* diff --git a/project_1/project_1.runs/synth_1/runme.log b/project_1/project_1.runs/synth_1/runme.log new file mode 100644 index 0000000..827ff42 --- /dev/null +++ b/project_1/project_1.runs/synth_1/runme.log @@ -0,0 +1,299 @@ + +*** Running vivado + with args -log lab0_wrapper.vds -m64 -product Vivado -mode batch -messageDb vivado.pb -notrace -source lab0_wrapper.tcl + + +****** Vivado v2017.2 (64-bit) + **** SW Build 1909853 on Thu Jun 15 18:39:10 MDT 2017 + **** IP Build 1909766 on Thu Jun 15 19:58:00 MDT 2017 + ** Copyright 1986-2017 Xilinx, Inc. All Rights Reserved. + +source lab0_wrapper.tcl -notrace +Command: synth_design -top lab0_wrapper -part xc7z010clg400-1 +Starting synth_design +Attempting to get a license for feature 'Synthesis' and/or device 'xc7z010-clg400' +INFO: [Common 17-349] Got license for feature 'Synthesis' and/or device 'xc7z010-clg400' +INFO: Launching helper process for spawning children vivado processes +INFO: Helper process launched with PID 2019 +CRITICAL WARNING: [Synth 8-2490] overwriting previous definition of module FullAdder1Bit [/home/jspear/Development/School/Comp_Arc/Lab0/adder.v:9] +CRITICAL WARNING: [Synth 8-2490] overwriting previous definition of module HalfAdder [/home/jspear/Development/School/Comp_Arc/Lab0/adder.v:30] +CRITICAL WARNING: [Synth 8-2490] overwriting previous definition of module FullAdder4bit [/home/jspear/Development/School/Comp_Arc/Lab0/adder.v:40] +--------------------------------------------------------------------------------- +Starting RTL Elaboration : Time (s): cpu = 00:00:04 ; elapsed = 00:00:04 . Memory (MB): peak = 1149.863 ; gain = 48.246 ; free physical = 7892 ; free virtual = 19474 +--------------------------------------------------------------------------------- +INFO: [Synth 8-638] synthesizing module 'lab0_wrapper' [/home/jspear/Development/School/Comp_Arc/Lab0/lab0_wrapper.v:95] +INFO: [Synth 8-638] synthesizing module 'dff' [/home/jspear/Development/School/Comp_Arc/Lab0/lab0_wrapper.v:37] + Parameter W bound to: 4 - type: integer +INFO: [Synth 8-256] done synthesizing module 'dff' (1#1) [/home/jspear/Development/School/Comp_Arc/Lab0/lab0_wrapper.v:37] +INFO: [Synth 8-638] synthesizing module 'jkff1' [/home/jspear/Development/School/Comp_Arc/Lab0/lab0_wrapper.v:52] +INFO: [Synth 8-256] done synthesizing module 'jkff1' (2#1) [/home/jspear/Development/School/Comp_Arc/Lab0/lab0_wrapper.v:52] +INFO: [Synth 8-638] synthesizing module 'mux2' [/home/jspear/Development/School/Comp_Arc/Lab0/lab0_wrapper.v:73] + Parameter W bound to: 4 - type: integer +INFO: [Synth 8-256] done synthesizing module 'mux2' (3#1) [/home/jspear/Development/School/Comp_Arc/Lab0/lab0_wrapper.v:73] +INFO: [Synth 8-638] synthesizing module 'FullAdder4bit' [/home/jspear/Development/School/Comp_Arc/Lab0/adder.v:40] +INFO: [Synth 8-638] synthesizing module 'HalfAdder' [/home/jspear/Development/School/Comp_Arc/Lab0/adder.v:30] +INFO: [Synth 8-638] synthesizing module 'FullAdder1Bit' [/home/jspear/Development/School/Comp_Arc/Lab0/adder.v:9] +INFO: [Synth 8-256] done synthesizing module 'FullAdder1Bit' (4#1) [/home/jspear/Development/School/Comp_Arc/Lab0/adder.v:9] +INFO: [Synth 8-256] done synthesizing module 'HalfAdder' (5#1) [/home/jspear/Development/School/Comp_Arc/Lab0/adder.v:30] +INFO: [Synth 8-256] done synthesizing module 'FullAdder4bit' (6#1) [/home/jspear/Development/School/Comp_Arc/Lab0/adder.v:40] +INFO: [Synth 8-256] done synthesizing module 'lab0_wrapper' (7#1) [/home/jspear/Development/School/Comp_Arc/Lab0/lab0_wrapper.v:95] +--------------------------------------------------------------------------------- +Finished RTL Elaboration : Time (s): cpu = 00:00:04 ; elapsed = 00:00:04 . Memory (MB): peak = 1174.121 ; gain = 72.504 ; free physical = 7909 ; free virtual = 19492 +--------------------------------------------------------------------------------- + +Report Check Netlist: ++------+------------------+-------+---------+-------+------------------+ +| |Item |Errors |Warnings |Status |Description | ++------+------------------+-------+---------+-------+------------------+ +|1 |multi_driven_nets | 0| 0|Passed |Multi driven nets | ++------+------------------+-------+---------+-------+------------------+ +--------------------------------------------------------------------------------- +Finished RTL Optimization Phase 1 : Time (s): cpu = 00:00:04 ; elapsed = 00:00:04 . Memory (MB): peak = 1174.121 ; gain = 72.504 ; free physical = 7909 ; free virtual = 19491 +--------------------------------------------------------------------------------- +INFO: [Device 21-403] Loading part xc7z010clg400-1 +INFO: [Project 1-570] Preparing netlist for logic optimization + +Processing XDC Constraints +Initializing timing engine +Parsing XDC File [/home/jspear/Development/School/Comp_Arc/Lab0/ZYBO_Master.xdc] +Finished Parsing XDC File [/home/jspear/Development/School/Comp_Arc/Lab0/ZYBO_Master.xdc] +INFO: [Project 1-236] Implementation specific constraints were found while reading constraint file [/home/jspear/Development/School/Comp_Arc/Lab0/ZYBO_Master.xdc]. These constraints will be ignored for synthesis but will be used in implementation. Impacted constraints are listed in the file [.Xil/lab0_wrapper_propImpl.xdc]. +Resolution: To avoid this warning, move constraints listed in [.Xil/lab0_wrapper_propImpl.xdc] to another XDC file and exclude this new file from synthesis with the used_in_synthesis property (File Properties dialog in GUI) and re-run elaboration/synthesis. +Completed Processing XDC Constraints + +INFO: [Project 1-111] Unisim Transformation Summary: +No Unisim elements were transformed. + +Constraint Validation Runtime : Time (s): cpu = 00:00:00 ; elapsed = 00:00:00 . Memory (MB): peak = 1482.059 ; gain = 0.000 ; free physical = 7612 ; free virtual = 19194 +--------------------------------------------------------------------------------- +Finished Constraint Validation : Time (s): cpu = 00:00:12 ; elapsed = 00:00:12 . Memory (MB): peak = 1482.062 ; gain = 380.445 ; free physical = 7758 ; free virtual = 19341 +--------------------------------------------------------------------------------- +--------------------------------------------------------------------------------- +Start Loading Part and Timing Information +--------------------------------------------------------------------------------- +Loading part: xc7z010clg400-1 +--------------------------------------------------------------------------------- +Finished Loading Part and Timing Information : Time (s): cpu = 00:00:12 ; elapsed = 00:00:12 . Memory (MB): peak = 1482.062 ; gain = 380.445 ; free physical = 7758 ; free virtual = 19341 +--------------------------------------------------------------------------------- +--------------------------------------------------------------------------------- +Start Applying 'set_property' XDC Constraints +--------------------------------------------------------------------------------- +--------------------------------------------------------------------------------- +Finished applying 'set_property' XDC Constraints : Time (s): cpu = 00:00:12 ; elapsed = 00:00:12 . Memory (MB): peak = 1482.062 ; gain = 380.445 ; free physical = 7760 ; free virtual = 19343 +--------------------------------------------------------------------------------- +--------------------------------------------------------------------------------- +Finished RTL Optimization Phase 2 : Time (s): cpu = 00:00:12 ; elapsed = 00:00:12 . Memory (MB): peak = 1482.062 ; gain = 380.445 ; free physical = 7753 ; free virtual = 19335 +--------------------------------------------------------------------------------- + +Report RTL Partitions: ++-+--------------+------------+----------+ +| |RTL Partition |Replication |Instances | ++-+--------------+------------+----------+ ++-+--------------+------------+----------+ +--------------------------------------------------------------------------------- +Start RTL Component Statistics +--------------------------------------------------------------------------------- +Detailed RTL Component Info : ++---XORs : + 3 Input 1 Bit XORs := 4 + 2 Input 1 Bit XORs := 1 ++---Registers : + 4 Bit Registers := 2 + 1 Bit Registers := 1 ++---Muxes : + 2 Input 4 Bit Muxes := 1 +--------------------------------------------------------------------------------- +Finished RTL Component Statistics +--------------------------------------------------------------------------------- +--------------------------------------------------------------------------------- +Start RTL Hierarchical Component Statistics +--------------------------------------------------------------------------------- +Hierarchical RTL Component report +Module dff +Detailed RTL Component Info : ++---Registers : + 4 Bit Registers := 1 +Module jkff1 +Detailed RTL Component Info : ++---Registers : + 1 Bit Registers := 1 +Module mux2 +Detailed RTL Component Info : ++---Muxes : + 2 Input 4 Bit Muxes := 1 +Module FullAdder1Bit +Detailed RTL Component Info : ++---XORs : + 3 Input 1 Bit XORs := 1 +Module FullAdder4bit +Detailed RTL Component Info : ++---XORs : + 2 Input 1 Bit XORs := 1 +--------------------------------------------------------------------------------- +Finished RTL Hierarchical Component Statistics +--------------------------------------------------------------------------------- +--------------------------------------------------------------------------------- +Start Part Resource Summary +--------------------------------------------------------------------------------- +Part Resources: +DSPs: 80 (col length:40) +BRAMs: 120 (col length: RAMB18 40 RAMB36 20) +--------------------------------------------------------------------------------- +Finished Part Resource Summary +--------------------------------------------------------------------------------- +--------------------------------------------------------------------------------- +Start Cross Boundary and Area Optimization +--------------------------------------------------------------------------------- +--------------------------------------------------------------------------------- +Finished Cross Boundary and Area Optimization : Time (s): cpu = 00:00:12 ; elapsed = 00:00:12 . Memory (MB): peak = 1482.066 ; gain = 380.449 ; free physical = 7742 ; free virtual = 19324 +--------------------------------------------------------------------------------- + +Report RTL Partitions: ++-+--------------+------------+----------+ +| |RTL Partition |Replication |Instances | ++-+--------------+------------+----------+ ++-+--------------+------------+----------+ +--------------------------------------------------------------------------------- +Start Applying XDC Timing Constraints +--------------------------------------------------------------------------------- +--------------------------------------------------------------------------------- +Finished Applying XDC Timing Constraints : Time (s): cpu = 00:00:18 ; elapsed = 00:00:18 . Memory (MB): peak = 1482.066 ; gain = 380.449 ; free physical = 7595 ; free virtual = 19176 +--------------------------------------------------------------------------------- +--------------------------------------------------------------------------------- +Start Timing Optimization +--------------------------------------------------------------------------------- +--------------------------------------------------------------------------------- +Finished Timing Optimization : Time (s): cpu = 00:00:18 ; elapsed = 00:00:18 . Memory (MB): peak = 1482.066 ; gain = 380.449 ; free physical = 7595 ; free virtual = 19176 +--------------------------------------------------------------------------------- + +Report RTL Partitions: ++-+--------------+------------+----------+ +| |RTL Partition |Replication |Instances | ++-+--------------+------------+----------+ ++-+--------------+------------+----------+ +--------------------------------------------------------------------------------- +Start Technology Mapping +--------------------------------------------------------------------------------- +--------------------------------------------------------------------------------- +Finished Technology Mapping : Time (s): cpu = 00:00:18 ; elapsed = 00:00:18 . Memory (MB): peak = 1490.066 ; gain = 388.449 ; free physical = 7594 ; free virtual = 19175 +--------------------------------------------------------------------------------- + +Report RTL Partitions: ++-+--------------+------------+----------+ +| |RTL Partition |Replication |Instances | ++-+--------------+------------+----------+ ++-+--------------+------------+----------+ +--------------------------------------------------------------------------------- +Start IO Insertion +--------------------------------------------------------------------------------- +--------------------------------------------------------------------------------- +Start Flattening Before IO Insertion +--------------------------------------------------------------------------------- +--------------------------------------------------------------------------------- +Finished Flattening Before IO Insertion +--------------------------------------------------------------------------------- +--------------------------------------------------------------------------------- +Start Final Netlist Cleanup +--------------------------------------------------------------------------------- +--------------------------------------------------------------------------------- +Finished Final Netlist Cleanup +--------------------------------------------------------------------------------- +--------------------------------------------------------------------------------- +Finished IO Insertion : Time (s): cpu = 00:00:18 ; elapsed = 00:00:18 . Memory (MB): peak = 1490.066 ; gain = 388.449 ; free physical = 7594 ; free virtual = 19175 +--------------------------------------------------------------------------------- + +Report Check Netlist: ++------+------------------+-------+---------+-------+------------------+ +| |Item |Errors |Warnings |Status |Description | ++------+------------------+-------+---------+-------+------------------+ +|1 |multi_driven_nets | 0| 0|Passed |Multi driven nets | ++------+------------------+-------+---------+-------+------------------+ +--------------------------------------------------------------------------------- +Start Renaming Generated Instances +--------------------------------------------------------------------------------- +--------------------------------------------------------------------------------- +Finished Renaming Generated Instances : Time (s): cpu = 00:00:18 ; elapsed = 00:00:18 . Memory (MB): peak = 1490.066 ; gain = 388.449 ; free physical = 7594 ; free virtual = 19175 +--------------------------------------------------------------------------------- + +Report RTL Partitions: ++-+--------------+------------+----------+ +| |RTL Partition |Replication |Instances | ++-+--------------+------------+----------+ ++-+--------------+------------+----------+ +--------------------------------------------------------------------------------- +Start Rebuilding User Hierarchy +--------------------------------------------------------------------------------- +--------------------------------------------------------------------------------- +Finished Rebuilding User Hierarchy : Time (s): cpu = 00:00:18 ; elapsed = 00:00:18 . Memory (MB): peak = 1490.066 ; gain = 388.449 ; free physical = 7593 ; free virtual = 19174 +--------------------------------------------------------------------------------- +--------------------------------------------------------------------------------- +Start Renaming Generated Ports +--------------------------------------------------------------------------------- +--------------------------------------------------------------------------------- +Finished Renaming Generated Ports : Time (s): cpu = 00:00:18 ; elapsed = 00:00:18 . Memory (MB): peak = 1490.066 ; gain = 388.449 ; free physical = 7592 ; free virtual = 19173 +--------------------------------------------------------------------------------- +--------------------------------------------------------------------------------- +Start Handling Custom Attributes +--------------------------------------------------------------------------------- +--------------------------------------------------------------------------------- +Finished Handling Custom Attributes : Time (s): cpu = 00:00:18 ; elapsed = 00:00:18 . Memory (MB): peak = 1490.066 ; gain = 388.449 ; free physical = 7590 ; free virtual = 19171 +--------------------------------------------------------------------------------- +--------------------------------------------------------------------------------- +Start Renaming Generated Nets +--------------------------------------------------------------------------------- +--------------------------------------------------------------------------------- +Finished Renaming Generated Nets : Time (s): cpu = 00:00:18 ; elapsed = 00:00:18 . Memory (MB): peak = 1490.066 ; gain = 388.449 ; free physical = 7589 ; free virtual = 19171 +--------------------------------------------------------------------------------- +--------------------------------------------------------------------------------- +Start Writing Synthesis Report +--------------------------------------------------------------------------------- + +Report BlackBoxes: ++-+--------------+----------+ +| |BlackBox name |Instances | ++-+--------------+----------+ ++-+--------------+----------+ + +Report Cell Usage: ++------+-----+------+ +| |Cell |Count | ++------+-----+------+ +|1 |BUFG | 1| +|2 |LUT3 | 1| +|3 |LUT4 | 4| +|4 |LUT5 | 1| +|5 |LUT6 | 2| +|6 |FDRE | 9| +|7 |IBUF | 9| +|8 |OBUF | 4| ++------+-----+------+ + +Report Instance Areas: ++------+----------+-------+------+ +| |Instance |Module |Cells | ++------+----------+-------+------+ +|1 |top | | 31| +|2 | opA_mem |dff | 9| +|3 | opB_mem |dff_0 | 6| +|4 | src_sel |jkff1 | 2| ++------+----------+-------+------+ +--------------------------------------------------------------------------------- +Finished Writing Synthesis Report : Time (s): cpu = 00:00:18 ; elapsed = 00:00:18 . Memory (MB): peak = 1490.066 ; gain = 388.449 ; free physical = 7589 ; free virtual = 19170 +--------------------------------------------------------------------------------- +Synthesis finished with 0 errors, 0 critical warnings and 0 warnings. +Synthesis Optimization Runtime : Time (s): cpu = 00:00:14 ; elapsed = 00:00:14 . Memory (MB): peak = 1490.066 ; gain = 80.512 ; free physical = 7648 ; free virtual = 19229 +Synthesis Optimization Complete : Time (s): cpu = 00:00:18 ; elapsed = 00:00:19 . Memory (MB): peak = 1490.074 ; gain = 388.449 ; free physical = 7648 ; free virtual = 19229 +INFO: [Project 1-571] Translating synthesized netlist +INFO: [Netlist 29-17] Analyzing 9 Unisim elements for replacement +INFO: [Netlist 29-28] Unisim Transformation completed in 0 CPU seconds +INFO: [Project 1-570] Preparing netlist for logic optimization +INFO: [Opt 31-138] Pushed 0 inverter(s) to 0 load pin(s). +INFO: [Project 1-111] Unisim Transformation Summary: +No Unisim elements were transformed. + +25 Infos, 6 Warnings, 3 Critical Warnings and 0 Errors encountered. +synth_design completed successfully +synth_design: Time (s): cpu = 00:00:19 ; elapsed = 00:00:20 . Memory (MB): peak = 1490.074 ; gain = 401.039 ; free physical = 7634 ; free virtual = 19215 +INFO: [Common 17-1381] The checkpoint '/home/jspear/Development/School/Comp_Arc/Lab0/project_1/project_1.runs/synth_1/lab0_wrapper.dcp' has been generated. +report_utilization: Time (s): cpu = 00:00:00.06 ; elapsed = 00:00:00.09 . Memory (MB): peak = 1514.082 ; gain = 0.000 ; free physical = 7635 ; free virtual = 19216 +INFO: [Common 17-206] Exiting Vivado at Wed Sep 27 19:47:41 2017... diff --git a/project_1/project_1.runs/synth_1/runme.sh b/project_1/project_1.runs/synth_1/runme.sh new file mode 100755 index 0000000..5086114 --- /dev/null +++ b/project_1/project_1.runs/synth_1/runme.sh @@ -0,0 +1,39 @@ +#!/bin/sh + +# +# Vivado(TM) +# runme.sh: a Vivado-generated Runs Script for UNIX +# Copyright 1986-2017 Xilinx, Inc. All Rights Reserved. +# + +if [ -z "$PATH" ]; then + PATH=/opt/Xilinx/Vivado/2017.2/ids_lite/ISE/bin/lin64:/opt/Xilinx/Vivado/2017.2/bin +else + PATH=/opt/Xilinx/Vivado/2017.2/ids_lite/ISE/bin/lin64:/opt/Xilinx/Vivado/2017.2/bin:$PATH +fi +export PATH + +if [ -z "$LD_LIBRARY_PATH" ]; then + LD_LIBRARY_PATH=/opt/Xilinx/Vivado/2017.2/ids_lite/ISE/lib/lin64 +else + LD_LIBRARY_PATH=/opt/Xilinx/Vivado/2017.2/ids_lite/ISE/lib/lin64:$LD_LIBRARY_PATH +fi +export LD_LIBRARY_PATH + +HD_PWD='/home/jspear/Development/School/Comp_Arc/Lab0/project_1/project_1.runs/synth_1' +cd "$HD_PWD" + +HD_LOG=runme.log +/bin/touch $HD_LOG + +ISEStep="./ISEWrap.sh" +EAStep() +{ + $ISEStep $HD_LOG "$@" >> $HD_LOG 2>&1 + if [ $? -ne 0 ] + then + exit + fi +} + +EAStep vivado -log lab0_wrapper.vds -m64 -product Vivado -mode batch -messageDb vivado.pb -notrace -source lab0_wrapper.tcl diff --git a/project_1/project_1.runs/synth_1/vivado.jou b/project_1/project_1.runs/synth_1/vivado.jou new file mode 100644 index 0000000..d9d3596 --- /dev/null +++ b/project_1/project_1.runs/synth_1/vivado.jou @@ -0,0 +1,12 @@ +#----------------------------------------------------------- +# Vivado v2017.2 (64-bit) +# SW Build 1909853 on Thu Jun 15 18:39:10 MDT 2017 +# IP Build 1909766 on Thu Jun 15 19:58:00 MDT 2017 +# Start of session at: Wed Sep 27 19:47:13 2017 +# Process ID: 1794 +# Current directory: /home/jspear/Development/School/Comp_Arc/Lab0/project_1/project_1.runs/synth_1 +# Command line: vivado -log lab0_wrapper.vds -product Vivado -mode batch -messageDb vivado.pb -notrace -source lab0_wrapper.tcl +# Log file: /home/jspear/Development/School/Comp_Arc/Lab0/project_1/project_1.runs/synth_1/lab0_wrapper.vds +# Journal file: /home/jspear/Development/School/Comp_Arc/Lab0/project_1/project_1.runs/synth_1/vivado.jou +#----------------------------------------------------------- +source lab0_wrapper.tcl -notrace diff --git a/project_1/project_1.runs/synth_1/vivado.pb b/project_1/project_1.runs/synth_1/vivado.pb new file mode 100644 index 0000000..14be96f Binary files /dev/null and b/project_1/project_1.runs/synth_1/vivado.pb differ diff --git a/project_1/project_1.xpr b/project_1/project_1.xpr new file mode 100644 index 0000000..2d3df00 --- /dev/null +++ b/project_1/project_1.xpr @@ -0,0 +1,148 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/vivado.jou b/vivado.jou new file mode 100644 index 0000000..6d3b387 --- /dev/null +++ b/vivado.jou @@ -0,0 +1,44 @@ +#----------------------------------------------------------- +# Vivado v2017.2 (64-bit) +# SW Build 1909853 on Thu Jun 15 18:39:10 MDT 2017 +# IP Build 1909766 on Thu Jun 15 19:58:00 MDT 2017 +# Start of session at: Wed Sep 27 19:25:10 2017 +# Process ID: 8659 +# Current directory: /home/jspear/Development/School/Comp_Arc/Lab0 +# Command line: vivado +# Log file: /home/jspear/Development/School/Comp_Arc/Lab0/vivado.log +# Journal file: /home/jspear/Development/School/Comp_Arc/Lab0/vivado.jou +#----------------------------------------------------------- +start_gui +open_project /home/jspear/Development/School/Comp_Arc/Lab0/project_1/project_1.xpr +update_compile_order -fileset sources_1 +reset_run synth_1 +launch_runs synth_1 -jobs 2 +wait_on_run synth_1 +launch_runs impl_1 -jobs 2 +wait_on_run impl_1 +reset_run synth_1 +launch_runs impl_1 -jobs 2 +wait_on_run impl_1 +launch_runs impl_1 -to_step write_bitstream -jobs 2 +wait_on_run impl_1 +open_hw +connect_hw_server +open_hw_target +set_property PROGRAM.FILE {/home/jspear/Development/School/Comp_Arc/Lab0/project_1/project_1.runs/impl_1/lab0_wrapper.bit} [get_hw_devices xc7z010_1] +current_hw_device [get_hw_devices xc7z010_1] +refresh_hw_device -update_hw_probes false [lindex [get_hw_devices xc7z010_1] 0] +set_property PROBES.FILE {} [get_hw_devices xc7z010_1] +set_property FULL_PROBES.FILE {} [get_hw_devices xc7z010_1] +set_property PROGRAM.FILE {/home/jspear/Development/School/Comp_Arc/Lab0/project_1/project_1.runs/impl_1/lab0_wrapper.bit} [get_hw_devices xc7z010_1] +program_hw_devices [get_hw_devices xc7z010_1] +refresh_hw_device [lindex [get_hw_devices xc7z010_1] 0] +report_utilization +synth_design -rtl -name rtl_1 +report_utilization +reset_run synth_1 +launch_runs synth_1 -jobs 2 +wait_on_run synth_1 +report_utilization +launch_runs impl_1 -jobs 2 +wait_on_run impl_1 diff --git a/vivado.log b/vivado.log new file mode 100644 index 0000000..73130f4 --- /dev/null +++ b/vivado.log @@ -0,0 +1,168 @@ +#----------------------------------------------------------- +# Vivado v2017.2 (64-bit) +# SW Build 1909853 on Thu Jun 15 18:39:10 MDT 2017 +# IP Build 1909766 on Thu Jun 15 19:58:00 MDT 2017 +# Start of session at: Wed Sep 27 19:25:10 2017 +# Process ID: 8659 +# Current directory: /home/jspear/Development/School/Comp_Arc/Lab0 +# Command line: vivado +# Log file: /home/jspear/Development/School/Comp_Arc/Lab0/vivado.log +# Journal file: /home/jspear/Development/School/Comp_Arc/Lab0/vivado.jou +#----------------------------------------------------------- +start_gui +open_project /home/jspear/Development/School/Comp_Arc/Lab0/project_1/project_1.xpr +Scanning sources... +Finished scanning sources +INFO: [IP_Flow 19-234] Refreshing IP repositories +INFO: [IP_Flow 19-1704] No user IP repositories specified +INFO: [IP_Flow 19-2313] Loaded Vivado IP repository '/opt/Xilinx/Vivado/2017.2/data/ip'. +update_compile_order -fileset sources_1 +reset_run synth_1 +launch_runs synth_1 -jobs 2 +WARNING: [HDL 9-687] Illegal redeclaration of module . [adder.v:9] +WARNING: [HDL 9-687] Illegal redeclaration of module . [adder.v:30] +WARNING: [HDL 9-687] Illegal redeclaration of module . [adder.v:40] +WARNING: [filemgmt 20-1318] Duplicate Design Unit 'FullAdder1Bit()' found in library 'xil_defaultlib' +Duplicate found at line 9 of file /home/jspear/Development/School/Comp_Arc/Lab0/adder.v +Duplicate found at line 9 of file /home/jspear/Development/School/Comp_Arc/Lab0/lab0_wrapper.v +WARNING: [filemgmt 20-1318] Duplicate Design Unit 'HalfAdder()' found in library 'xil_defaultlib' +Duplicate found at line 30 of file /home/jspear/Development/School/Comp_Arc/Lab0/adder.v +Duplicate found at line 30 of file /home/jspear/Development/School/Comp_Arc/Lab0/lab0_wrapper.v +WARNING: [filemgmt 20-1318] Duplicate Design Unit 'FullAdder4bit()' found in library 'xil_defaultlib' +Duplicate found at line 40 of file /home/jspear/Development/School/Comp_Arc/Lab0/adder.v +Duplicate found at line 40 of file /home/jspear/Development/School/Comp_Arc/Lab0/lab0_wrapper.v +[Wed Sep 27 19:26:07 2017] Launched synth_1... +Run output will be captured here: /home/jspear/Development/School/Comp_Arc/Lab0/project_1/project_1.runs/synth_1/runme.log +launch_runs impl_1 -jobs 2 +[Wed Sep 27 19:26:41 2017] Launched impl_1... +Run output will be captured here: /home/jspear/Development/School/Comp_Arc/Lab0/project_1/project_1.runs/impl_1/runme.log +reset_run synth_1 +launch_runs impl_1 -jobs 2 +[Wed Sep 27 19:28:06 2017] Launched synth_1... +Run output will be captured here: /home/jspear/Development/School/Comp_Arc/Lab0/project_1/project_1.runs/synth_1/runme.log +[Wed Sep 27 19:28:06 2017] Launched impl_1... +Run output will be captured here: /home/jspear/Development/School/Comp_Arc/Lab0/project_1/project_1.runs/impl_1/runme.log +launch_runs impl_1 -to_step write_bitstream -jobs 2 +[Wed Sep 27 19:29:13 2017] Launched impl_1... +Run output will be captured here: /home/jspear/Development/School/Comp_Arc/Lab0/project_1/project_1.runs/impl_1/runme.log +open_hw +connect_hw_server +INFO: [Labtools 27-2285] Connecting to hw_server url TCP:localhost:3121 +INFO: [Labtools 27-2222] Launching hw_server... +INFO: [Labtools 27-2221] Launch Output: + +****** Xilinx hw_server v2017.2 + **** Build date : Jun 15 2017-18:45:18 + ** Copyright 1986-2017 Xilinx, Inc. All Rights Reserved. + + +open_hw_target +INFO: [Labtoolstcl 44-466] Opening hw_target localhost:3121/xilinx_tcf/Digilent/210279651540A +set_property PROGRAM.FILE {/home/jspear/Development/School/Comp_Arc/Lab0/project_1/project_1.runs/impl_1/lab0_wrapper.bit} [get_hw_devices xc7z010_1] +current_hw_device [get_hw_devices xc7z010_1] +refresh_hw_device -update_hw_probes false [lindex [get_hw_devices xc7z010_1] 0] +INFO: [Labtools 27-1434] Device xc7z010 (JTAG device index = 1) is programmed with a design that has no supported debug core(s) in it. +WARNING: [Labtools 27-3361] The debug hub core was not detected. +Resolution: +1. Make sure the clock connected to the debug hub (dbg_hub) core is a free running clock and is active. +2. Make sure the BSCAN_SWITCH_USER_MASK device property in Vivado Hardware Manager reflects the user scan chain setting in the design and refresh the device. To determine the user scan chain setting in the design, open the implemented design and use 'get_property C_USER_SCAN_CHAIN [get_debug_cores dbg_hub]'. +For more details on setting the scan chain property, consult the Vivado Debug and Programming User Guide (UG908). +set_property PROBES.FILE {} [get_hw_devices xc7z010_1] +set_property FULL_PROBES.FILE {} [get_hw_devices xc7z010_1] +set_property PROGRAM.FILE {/home/jspear/Development/School/Comp_Arc/Lab0/project_1/project_1.runs/impl_1/lab0_wrapper.bit} [get_hw_devices xc7z010_1] +program_hw_devices [get_hw_devices xc7z010_1] +INFO: [Labtools 27-3164] End of startup status: HIGH +refresh_hw_device [lindex [get_hw_devices xc7z010_1] 0] +INFO: [Labtools 27-1434] Device xc7z010 (JTAG device index = 1) is programmed with a design that has no supported debug core(s) in it. +WARNING: [Labtools 27-3361] The debug hub core was not detected. +Resolution: +1. Make sure the clock connected to the debug hub (dbg_hub) core is a free running clock and is active. +2. Make sure the BSCAN_SWITCH_USER_MASK device property in Vivado Hardware Manager reflects the user scan chain setting in the design and refresh the device. To determine the user scan chain setting in the design, open the implemented design and use 'get_property C_USER_SCAN_CHAIN [get_debug_cores dbg_hub]'. +For more details on setting the scan chain property, consult the Vivado Debug and Programming User Guide (UG908). +report_utilization +ERROR: [Common 17-53] User Exception: No open design. Please open an elaborated, synthesized or implemented design before executing this command. +synth_design -rtl -name rtl_1 +Command: synth_design -rtl -name rtl_1 +Starting synth_design +Using part: xc7z010clg400-1 +Top: lab0_wrapper +CRITICAL WARNING: [Synth 8-2490] overwriting previous definition of module FullAdder1Bit [adder.v:9] +CRITICAL WARNING: [Synth 8-2490] overwriting previous definition of module HalfAdder [adder.v:30] +CRITICAL WARNING: [Synth 8-2490] overwriting previous definition of module FullAdder4bit [adder.v:40] +--------------------------------------------------------------------------------- +Starting RTL Elaboration : Time (s): cpu = 00:00:05 ; elapsed = 00:00:04 . Memory (MB): peak = 6238.406 ; gain = 51.602 ; free physical = 8439 ; free virtual = 20012 +--------------------------------------------------------------------------------- +INFO: [Synth 8-638] synthesizing module 'lab0_wrapper' [/home/jspear/Development/School/Comp_Arc/Lab0/lab0_wrapper.v:95] +INFO: [Synth 8-638] synthesizing module 'dff' [/home/jspear/Development/School/Comp_Arc/Lab0/lab0_wrapper.v:37] + Parameter W bound to: 4 - type: integer +INFO: [Synth 8-256] done synthesizing module 'dff' (1#1) [/home/jspear/Development/School/Comp_Arc/Lab0/lab0_wrapper.v:37] +INFO: [Synth 8-638] synthesizing module 'jkff1' [/home/jspear/Development/School/Comp_Arc/Lab0/lab0_wrapper.v:52] +INFO: [Synth 8-256] done synthesizing module 'jkff1' (2#1) [/home/jspear/Development/School/Comp_Arc/Lab0/lab0_wrapper.v:52] +INFO: [Synth 8-638] synthesizing module 'mux2' [/home/jspear/Development/School/Comp_Arc/Lab0/lab0_wrapper.v:73] + Parameter W bound to: 4 - type: integer +INFO: [Synth 8-256] done synthesizing module 'mux2' (3#1) [/home/jspear/Development/School/Comp_Arc/Lab0/lab0_wrapper.v:73] +INFO: [Synth 8-638] synthesizing module 'FullAdder4bit' [/home/jspear/Development/School/Comp_Arc/Lab0/adder.v:40] +INFO: [Synth 8-638] synthesizing module 'HalfAdder' [/home/jspear/Development/School/Comp_Arc/Lab0/adder.v:30] +INFO: [Synth 8-638] synthesizing module 'FullAdder1Bit' [/home/jspear/Development/School/Comp_Arc/Lab0/adder.v:9] +INFO: [Synth 8-256] done synthesizing module 'FullAdder1Bit' (4#1) [/home/jspear/Development/School/Comp_Arc/Lab0/adder.v:9] +INFO: [Synth 8-256] done synthesizing module 'HalfAdder' (5#1) [/home/jspear/Development/School/Comp_Arc/Lab0/adder.v:30] +INFO: [Synth 8-256] done synthesizing module 'FullAdder4bit' (6#1) [/home/jspear/Development/School/Comp_Arc/Lab0/adder.v:40] +INFO: [Synth 8-256] done synthesizing module 'lab0_wrapper' (7#1) [/home/jspear/Development/School/Comp_Arc/Lab0/lab0_wrapper.v:95] +--------------------------------------------------------------------------------- +Finished RTL Elaboration : Time (s): cpu = 00:00:05 ; elapsed = 00:00:04 . Memory (MB): peak = 6269.664 ; gain = 82.859 ; free physical = 8452 ; free virtual = 20026 +--------------------------------------------------------------------------------- + +Report Check Netlist: ++------+------------------+-------+---------+-------+------------------+ +| |Item |Errors |Warnings |Status |Description | ++------+------------------+-------+---------+-------+------------------+ +|1 |multi_driven_nets | 0| 0|Passed |Multi driven nets | ++------+------------------+-------+---------+-------+------------------+ +--------------------------------------------------------------------------------- +Finished RTL Optimization Phase 1 : Time (s): cpu = 00:00:06 ; elapsed = 00:00:04 . Memory (MB): peak = 6269.664 ; gain = 82.859 ; free physical = 8453 ; free virtual = 20026 +--------------------------------------------------------------------------------- +INFO: [Device 21-403] Loading part xc7z010clg400-1 +INFO: [Project 1-570] Preparing netlist for logic optimization + +Processing XDC Constraints +Initializing timing engine +Parsing XDC File [/home/jspear/Development/School/Comp_Arc/Lab0/ZYBO_Master.xdc] +Finished Parsing XDC File [/home/jspear/Development/School/Comp_Arc/Lab0/ZYBO_Master.xdc] +Completed Processing XDC Constraints + +INFO: [Opt 31-138] Pushed 0 inverter(s) to 0 load pin(s). +INFO: [Project 1-111] Unisim Transformation Summary: +No Unisim elements were transformed. + +RTL Elaboration Complete: : Time (s): cpu = 00:00:18 ; elapsed = 00:00:12 . Memory (MB): peak = 6625.734 ; gain = 438.930 ; free physical = 8154 ; free virtual = 19732 +18 Infos, 0 Warnings, 3 Critical Warnings and 0 Errors encountered. +synth_design completed successfully +synth_design: Time (s): cpu = 00:00:18 ; elapsed = 00:00:12 . Memory (MB): peak = 6625.734 ; gain = 438.930 ; free physical = 8154 ; free virtual = 19732 +report_utilization +ERROR: [Common 17-69] Command failed: report_utilization can be run only after synthesis has successfully completed. + +reset_run synth_1 +launch_runs synth_1 -jobs 2 +WARNING: [HDL 9-687] Illegal redeclaration of module . [adder.v:9] +WARNING: [HDL 9-687] Illegal redeclaration of module . [adder.v:30] +WARNING: [HDL 9-687] Illegal redeclaration of module . [adder.v:40] +WARNING: [filemgmt 20-1318] Duplicate Design Unit 'FullAdder1Bit()' found in library 'xil_defaultlib' +Duplicate found at line 9 of file /home/jspear/Development/School/Comp_Arc/Lab0/adder.v +Duplicate found at line 9 of file /home/jspear/Development/School/Comp_Arc/Lab0/lab0_wrapper.v +WARNING: [filemgmt 20-1318] Duplicate Design Unit 'HalfAdder()' found in library 'xil_defaultlib' +Duplicate found at line 30 of file /home/jspear/Development/School/Comp_Arc/Lab0/adder.v +Duplicate found at line 30 of file /home/jspear/Development/School/Comp_Arc/Lab0/lab0_wrapper.v +WARNING: [filemgmt 20-1318] Duplicate Design Unit 'FullAdder4bit()' found in library 'xil_defaultlib' +Duplicate found at line 40 of file /home/jspear/Development/School/Comp_Arc/Lab0/adder.v +Duplicate found at line 40 of file /home/jspear/Development/School/Comp_Arc/Lab0/lab0_wrapper.v +[Wed Sep 27 19:47:13 2017] Launched synth_1... +Run output will be captured here: /home/jspear/Development/School/Comp_Arc/Lab0/project_1/project_1.runs/synth_1/runme.log +report_utilization +ERROR: [Common 17-69] Command failed: report_utilization can be run only after synthesis has successfully completed. + +launch_runs impl_1 -jobs 2 +[Wed Sep 27 19:50:15 2017] Launched impl_1... +Run output will be captured here: /home/jspear/Development/School/Comp_Arc/Lab0/project_1/project_1.runs/impl_1/runme.log +ERROR: [Labtoolstcl 44-513] HW Target shutdown. Closing target: localhost:3121/xilinx_tcf/Digilent/210279651540A +exit +INFO: [Common 17-206] Exiting Vivado at Thu Sep 28 09:33:15 2017... diff --git a/vivado_7822.backup.jou b/vivado_7822.backup.jou new file mode 100644 index 0000000..d1c1b25 --- /dev/null +++ b/vivado_7822.backup.jou @@ -0,0 +1,51 @@ +#----------------------------------------------------------- +# Vivado v2017.2 (64-bit) +# SW Build 1909853 on Thu Jun 15 18:39:10 MDT 2017 +# IP Build 1909766 on Thu Jun 15 19:58:00 MDT 2017 +# Start of session at: Wed Sep 27 18:56:37 2017 +# Process ID: 7822 +# Current directory: /home/jspear/Development/School/Comp_Arc/Lab0 +# Command line: vivado +# Log file: /home/jspear/Development/School/Comp_Arc/Lab0/vivado.log +# Journal file: /home/jspear/Development/School/Comp_Arc/Lab0/vivado.jou +#----------------------------------------------------------- +start_gui +create_project project_1 /home/jspear/Development/School/Comp_Arc/Lab0/project_1 -part xc7z010clg400-1 +add_files -fileset constrs_1 -norecurse /home/jspear/Development/School/Comp_Arc/Lab0/ZYBO_Master.xdc +add_files -norecurse /home/jspear/Development/School/Comp_Arc/Lab0/project_1/example.v +update_compile_order -fileset sources_1 +launch_runs synth_1 -jobs 2 +wait_on_run synth_1 +launch_runs impl_1 -jobs 2 +wait_on_run impl_1 +open_hw +launch_runs impl_1 -to_step write_bitstream -jobs 2 +wait_on_run impl_1 +connect_hw_server +open_hw_target +set_property PROGRAM.FILE {/home/jspear/Development/School/Comp_Arc/Lab0/project_1/project_1.runs/impl_1/hw_wrapper.bit} [get_hw_devices xc7z010_1] +current_hw_device [get_hw_devices xc7z010_1] +refresh_hw_device -update_hw_probes false [lindex [get_hw_devices xc7z010_1] 0] +set_property PROBES.FILE {} [get_hw_devices xc7z010_1] +set_property FULL_PROBES.FILE {} [get_hw_devices xc7z010_1] +set_property PROGRAM.FILE {/home/jspear/Development/School/Comp_Arc/Lab0/project_1/project_1.runs/impl_1/hw_wrapper.bit} [get_hw_devices xc7z010_1] +program_hw_devices [get_hw_devices xc7z010_1] +refresh_hw_device [lindex [get_hw_devices xc7z010_1] 0] +add_files -norecurse {/home/jspear/Development/School/Comp_Arc/Lab0/adder.v /home/jspear/Development/School/Comp_Arc/Lab0/lab0_wrapper.v} +update_compile_order -fileset sources_1 +reset_run synth_1 +launch_runs synth_1 -jobs 2 +wait_on_run synth_1 +remove_files /home/jspear/Development/School/Comp_Arc/Lab0/project_1/example.v +update_compile_order -fileset sources_1 +reset_run synth_1 +launch_runs synth_1 -jobs 2 +wait_on_run synth_1 +launch_runs impl_1 -jobs 2 +wait_on_run impl_1 +reset_run impl_1 -prev_step +launch_runs impl_1 -jobs 2 +wait_on_run impl_1 +reset_run synth_1 +launch_runs synth_1 -jobs 2 +wait_on_run synth_1 diff --git a/vivado_7822.backup.log b/vivado_7822.backup.log new file mode 100644 index 0000000..7838106 --- /dev/null +++ b/vivado_7822.backup.log @@ -0,0 +1,124 @@ +#----------------------------------------------------------- +# Vivado v2017.2 (64-bit) +# SW Build 1909853 on Thu Jun 15 18:39:10 MDT 2017 +# IP Build 1909766 on Thu Jun 15 19:58:00 MDT 2017 +# Start of session at: Wed Sep 27 18:56:37 2017 +# Process ID: 7822 +# Current directory: /home/jspear/Development/School/Comp_Arc/Lab0 +# Command line: vivado +# Log file: /home/jspear/Development/School/Comp_Arc/Lab0/vivado.log +# Journal file: /home/jspear/Development/School/Comp_Arc/Lab0/vivado.jou +#----------------------------------------------------------- +start_gui +create_project project_1 /home/jspear/Development/School/Comp_Arc/Lab0/project_1 -part xc7z010clg400-1 +INFO: [IP_Flow 19-234] Refreshing IP repositories +INFO: [IP_Flow 19-1704] No user IP repositories specified +INFO: [IP_Flow 19-2313] Loaded Vivado IP repository '/opt/Xilinx/Vivado/2017.2/data/ip'. +add_files -fileset constrs_1 -norecurse /home/jspear/Development/School/Comp_Arc/Lab0/ZYBO_Master.xdc +add_files -norecurse /home/jspear/Development/School/Comp_Arc/Lab0/project_1/example.v +update_compile_order -fileset sources_1 +launch_runs synth_1 -jobs 2 +[Wed Sep 27 19:09:55 2017] Launched synth_1... +Run output will be captured here: /home/jspear/Development/School/Comp_Arc/Lab0/project_1/project_1.runs/synth_1/runme.log +launch_runs impl_1 -jobs 2 +[Wed Sep 27 19:10:58 2017] Launched impl_1... +Run output will be captured here: /home/jspear/Development/School/Comp_Arc/Lab0/project_1/project_1.runs/impl_1/runme.log +open_hw +launch_runs impl_1 -to_step write_bitstream -jobs 2 +[Wed Sep 27 19:11:40 2017] Launched impl_1... +Run output will be captured here: /home/jspear/Development/School/Comp_Arc/Lab0/project_1/project_1.runs/impl_1/runme.log +connect_hw_server +INFO: [Labtools 27-2285] Connecting to hw_server url TCP:localhost:3121 +INFO: [Labtools 27-2222] Launching hw_server... +INFO: [Labtools 27-2221] Launch Output: + +****** Xilinx hw_server v2017.2 + **** Build date : Jun 15 2017-18:45:18 + ** Copyright 1986-2017 Xilinx, Inc. All Rights Reserved. + + +open_hw_target +INFO: [Labtoolstcl 44-466] Opening hw_target localhost:3121/xilinx_tcf/Digilent/210279651540A +set_property PROGRAM.FILE {/home/jspear/Development/School/Comp_Arc/Lab0/project_1/project_1.runs/impl_1/hw_wrapper.bit} [get_hw_devices xc7z010_1] +current_hw_device [get_hw_devices xc7z010_1] +refresh_hw_device -update_hw_probes false [lindex [get_hw_devices xc7z010_1] 0] +INFO: [Labtools 27-1434] Device xc7z010 (JTAG device index = 1) is programmed with a design that has no supported debug core(s) in it. +WARNING: [Labtools 27-3361] The debug hub core was not detected. +Resolution: +1. Make sure the clock connected to the debug hub (dbg_hub) core is a free running clock and is active. +2. Make sure the BSCAN_SWITCH_USER_MASK device property in Vivado Hardware Manager reflects the user scan chain setting in the design and refresh the device. To determine the user scan chain setting in the design, open the implemented design and use 'get_property C_USER_SCAN_CHAIN [get_debug_cores dbg_hub]'. +For more details on setting the scan chain property, consult the Vivado Debug and Programming User Guide (UG908). +set_property PROBES.FILE {} [get_hw_devices xc7z010_1] +set_property FULL_PROBES.FILE {} [get_hw_devices xc7z010_1] +set_property PROGRAM.FILE {/home/jspear/Development/School/Comp_Arc/Lab0/project_1/project_1.runs/impl_1/hw_wrapper.bit} [get_hw_devices xc7z010_1] +program_hw_devices [get_hw_devices xc7z010_1] +INFO: [Labtools 27-3164] End of startup status: HIGH +refresh_hw_device [lindex [get_hw_devices xc7z010_1] 0] +INFO: [Labtools 27-1434] Device xc7z010 (JTAG device index = 1) is programmed with a design that has no supported debug core(s) in it. +WARNING: [Labtools 27-3361] The debug hub core was not detected. +Resolution: +1. Make sure the clock connected to the debug hub (dbg_hub) core is a free running clock and is active. +2. Make sure the BSCAN_SWITCH_USER_MASK device property in Vivado Hardware Manager reflects the user scan chain setting in the design and refresh the device. To determine the user scan chain setting in the design, open the implemented design and use 'get_property C_USER_SCAN_CHAIN [get_debug_cores dbg_hub]'. +For more details on setting the scan chain property, consult the Vivado Debug and Programming User Guide (UG908). +add_files -norecurse {/home/jspear/Development/School/Comp_Arc/Lab0/adder.v /home/jspear/Development/School/Comp_Arc/Lab0/lab0_wrapper.v} +update_compile_order -fileset sources_1 +reset_run synth_1 +launch_runs synth_1 -jobs 2 +WARNING: [HDL 9-687] Illegal redeclaration of module . [adder.v:9] +WARNING: [HDL 9-687] Illegal redeclaration of module . [adder.v:30] +WARNING: [HDL 9-687] Illegal redeclaration of module . [adder.v:40] +WARNING: [filemgmt 20-1318] Duplicate Design Unit 'FullAdder1bit()' found in library 'xil_defaultlib' +Duplicate found at line 9 of file /home/jspear/Development/School/Comp_Arc/Lab0/adder.v +Duplicate found at line 9 of file /home/jspear/Development/School/Comp_Arc/Lab0/lab0_wrapper.v +WARNING: [filemgmt 20-1318] Duplicate Design Unit 'HalfAdder()' found in library 'xil_defaultlib' +Duplicate found at line 30 of file /home/jspear/Development/School/Comp_Arc/Lab0/adder.v +Duplicate found at line 30 of file /home/jspear/Development/School/Comp_Arc/Lab0/lab0_wrapper.v +WARNING: [filemgmt 20-1318] Duplicate Design Unit 'FullAdder4bit()' found in library 'xil_defaultlib' +Duplicate found at line 40 of file /home/jspear/Development/School/Comp_Arc/Lab0/adder.v +Duplicate found at line 40 of file /home/jspear/Development/School/Comp_Arc/Lab0/lab0_wrapper.v +[Wed Sep 27 19:18:47 2017] Launched synth_1... +Run output will be captured here: /home/jspear/Development/School/Comp_Arc/Lab0/project_1/project_1.runs/synth_1/runme.log +WARNING: [IP_Flow 19-3899] Cannot get the environment domain name variable for the component vendor name. Setting the vendor name to 'user.org'. +remove_files /home/jspear/Development/School/Comp_Arc/Lab0/project_1/example.v +update_compile_order -fileset sources_1 +reset_run synth_1 +launch_runs synth_1 -jobs 2 +WARNING: [HDL 9-687] Illegal redeclaration of module . [adder.v:9] +WARNING: [HDL 9-687] Illegal redeclaration of module . [adder.v:30] +WARNING: [HDL 9-687] Illegal redeclaration of module . [adder.v:40] +WARNING: [filemgmt 20-1318] Duplicate Design Unit 'FullAdder1bit()' found in library 'xil_defaultlib' +Duplicate found at line 9 of file /home/jspear/Development/School/Comp_Arc/Lab0/adder.v +Duplicate found at line 9 of file /home/jspear/Development/School/Comp_Arc/Lab0/lab0_wrapper.v +WARNING: [filemgmt 20-1318] Duplicate Design Unit 'HalfAdder()' found in library 'xil_defaultlib' +Duplicate found at line 30 of file /home/jspear/Development/School/Comp_Arc/Lab0/adder.v +Duplicate found at line 30 of file /home/jspear/Development/School/Comp_Arc/Lab0/lab0_wrapper.v +WARNING: [filemgmt 20-1318] Duplicate Design Unit 'FullAdder4bit()' found in library 'xil_defaultlib' +Duplicate found at line 40 of file /home/jspear/Development/School/Comp_Arc/Lab0/adder.v +Duplicate found at line 40 of file /home/jspear/Development/School/Comp_Arc/Lab0/lab0_wrapper.v +[Wed Sep 27 19:20:32 2017] Launched synth_1... +Run output will be captured here: /home/jspear/Development/School/Comp_Arc/Lab0/project_1/project_1.runs/synth_1/runme.log +launch_runs impl_1 -jobs 2 +[Wed Sep 27 19:21:20 2017] Launched impl_1... +Run output will be captured here: /home/jspear/Development/School/Comp_Arc/Lab0/project_1/project_1.runs/impl_1/runme.log +reset_run impl_1 -prev_step +launch_runs impl_1 -jobs 2 +[Wed Sep 27 19:22:03 2017] Launched impl_1... +Run output will be captured here: /home/jspear/Development/School/Comp_Arc/Lab0/project_1/project_1.runs/impl_1/runme.log +reset_run synth_1 +launch_runs synth_1 -jobs 2 +WARNING: [HDL 9-687] Illegal redeclaration of module . [adder.v:9] +WARNING: [HDL 9-687] Illegal redeclaration of module . [adder.v:30] +WARNING: [HDL 9-687] Illegal redeclaration of module . [adder.v:40] +WARNING: [filemgmt 20-1318] Duplicate Design Unit 'FullAdder1bit()' found in library 'xil_defaultlib' +Duplicate found at line 9 of file /home/jspear/Development/School/Comp_Arc/Lab0/adder.v +Duplicate found at line 9 of file /home/jspear/Development/School/Comp_Arc/Lab0/lab0_wrapper.v +WARNING: [filemgmt 20-1318] Duplicate Design Unit 'HalfAdder()' found in library 'xil_defaultlib' +Duplicate found at line 30 of file /home/jspear/Development/School/Comp_Arc/Lab0/adder.v +Duplicate found at line 30 of file /home/jspear/Development/School/Comp_Arc/Lab0/lab0_wrapper.v +WARNING: [filemgmt 20-1318] Duplicate Design Unit 'FullAdder4bit()' found in library 'xil_defaultlib' +Duplicate found at line 40 of file /home/jspear/Development/School/Comp_Arc/Lab0/adder.v +Duplicate found at line 40 of file /home/jspear/Development/School/Comp_Arc/Lab0/lab0_wrapper.v +[Wed Sep 27 19:22:27 2017] Launched synth_1... +Run output will be captured here: /home/jspear/Development/School/Comp_Arc/Lab0/project_1/project_1.runs/synth_1/runme.log +exit +INFO: [Common 17-206] Exiting Vivado at Wed Sep 27 19:25:08 2017...