Newer
Older

javey
committed
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
WARNING:ConstraintSystem - A target design object for the Locate constraint
'<NET "processing_system7_0_PS_SRSTB_pin_IBUF" LOC = B10>' could not be found
and so the Locate constraint will be removed.
WARNING:ConstraintSystem:58 - Constraint <TIMEGRP
axi_interconnect_1_reset_source = FFS PADS CPUS;>: CPUS "*" does not match
any design objects.
WARNING:ConstraintSystem:194 - The TNM 'axi_interconnect_1_reset_resync', does
not directly or indirectly drive any flip-flops, latches and/or RAMs and is
not actively used by any referencing constraint.
Done...
Processing BMM file "system.bmm" ...
WARNING::53 - File 'system.bmm' is empty or has no BMM content.
Checking expanded design ...
WARNING:NgdBuild:452 - logical net 'N129' has no driver
WARNING:NgdBuild:452 - logical net 'N130' has no driver
WARNING:NgdBuild:452 - logical net 'N131' has no driver
WARNING:NgdBuild:452 - logical net 'N132' has no driver
WARNING:NgdBuild:452 - logical net 'N133' has no driver
WARNING:NgdBuild:452 - logical net 'N134' has no driver
WARNING:NgdBuild:452 - logical net 'N135' has no driver
WARNING:NgdBuild:452 - logical net 'N136' has no driver
WARNING:NgdBuild:452 - logical net 'N137' has no driver
WARNING:NgdBuild:452 - logical net 'N138' has no driver
WARNING:NgdBuild:452 - logical net 'N139' has no driver
WARNING:NgdBuild:452 - logical net 'N140' has no driver
WARNING:NgdBuild:452 - logical net 'N141' has no driver
WARNING:NgdBuild:452 - logical net 'N142' has no driver
WARNING:NgdBuild:452 - logical net 'N143' has no driver
WARNING:NgdBuild:452 - logical net 'N144' has no driver
WARNING:NgdBuild:452 - logical net 'N145' has no driver
WARNING:NgdBuild:452 - logical net 'N146' has no driver
WARNING:NgdBuild:452 - logical net 'N147' has no driver
WARNING:NgdBuild:452 - logical net 'N148' has no driver
WARNING:NgdBuild:452 - logical net 'N149' has no driver
WARNING:NgdBuild:452 - logical net 'N150' has no driver
WARNING:NgdBuild:452 - logical net 'N151' has no driver
WARNING:NgdBuild:452 - logical net 'N152' has no driver
WARNING:NgdBuild:452 - logical net 'N153' has no driver
WARNING:NgdBuild:452 - logical net 'N154' has no driver
WARNING:NgdBuild:452 - logical net 'N155' has no driver
WARNING:NgdBuild:452 - logical net 'N156' has no driver
WARNING:NgdBuild:452 - logical net 'N157' has no driver
WARNING:NgdBuild:452 - logical net 'N158' has no driver
WARNING:NgdBuild:452 - logical net 'N159' has no driver
WARNING:NgdBuild:452 - logical net 'N160' has no driver
WARNING:NgdBuild:452 - logical net 'N161' has no driver
WARNING:NgdBuild:452 - logical net 'N162' has no driver
WARNING:NgdBuild:452 - logical net 'N163' has no driver
WARNING:NgdBuild:452 - logical net 'N164' has no driver
WARNING:NgdBuild:452 - logical net 'N165' has no driver
WARNING:NgdBuild:452 - logical net 'N166' has no driver
WARNING:NgdBuild:452 - logical net 'N167' has no driver
WARNING:NgdBuild:452 - logical net 'N168' has no driver
WARNING:NgdBuild:452 - logical net 'N169' has no driver
WARNING:NgdBuild:452 - logical net 'N170' has no driver
WARNING:NgdBuild:452 - logical net 'N171' has no driver
WARNING:NgdBuild:452 - logical net 'N172' has no driver
WARNING:NgdBuild:452 - logical net 'N173' has no driver
WARNING:NgdBuild:452 - logical net 'N174' has no driver
WARNING:NgdBuild:452 - logical net 'N175' has no driver
WARNING:NgdBuild:452 - logical net 'N176' has no driver
WARNING:NgdBuild:452 - logical net 'N177' has no driver
WARNING:NgdBuild:452 - logical net 'N178' has no driver
WARNING:NgdBuild:452 - logical net 'N179' has no driver
WARNING:NgdBuild:452 - logical net 'N180' has no driver
WARNING:NgdBuild:452 - logical net 'N181' has no driver
WARNING:NgdBuild:452 - logical net 'N182' has no driver
WARNING:NgdBuild:452 - logical net 'N183' has no driver
WARNING:NgdBuild:452 - logical net 'N184' has no driver
WARNING:NgdBuild:452 - logical net 'N185' has no driver
WARNING:NgdBuild:452 - logical net 'N186' has no driver
WARNING:NgdBuild:452 - logical net 'N187' has no driver
WARNING:NgdBuild:452 - logical net 'N188' has no driver
WARNING:NgdBuild:452 - logical net 'N189' has no driver
WARNING:NgdBuild:452 - logical net 'N190' has no driver
WARNING:NgdBuild:452 - logical net 'N191' has no driver
WARNING:NgdBuild:452 - logical net 'N192' has no driver
WARNING:NgdBuild:452 - logical net 'N193' has no driver
WARNING:NgdBuild:452 - logical net 'N194' has no driver
WARNING:NgdBuild:452 - logical net 'N195' has no driver
WARNING:NgdBuild:452 - logical net 'N196' has no driver
WARNING:NgdBuild:452 - logical net 'N197' has no driver
WARNING:NgdBuild:452 - logical net 'N198' has no driver
WARNING:NgdBuild:452 - logical net 'N199' has no driver
WARNING:NgdBuild:452 - logical net 'N200' has no driver
WARNING:NgdBuild:452 - logical net 'N201' has no driver
WARNING:NgdBuild:452 - logical net 'N202' has no driver
WARNING:NgdBuild:452 - logical net 'N203' has no driver
WARNING:NgdBuild:452 - logical net 'N204' has no driver
WARNING:NgdBuild:452 - logical net 'N205' has no driver
WARNING:NgdBuild:452 - logical net 'N206' has no driver
WARNING:NgdBuild:452 - logical net 'N207' has no driver
WARNING:NgdBuild:452 - logical net 'N208' has no driver
WARNING:NgdBuild:452 - logical net 'N209' has no driver
WARNING:NgdBuild:452 - logical net 'N210' has no driver
WARNING:NgdBuild:452 - logical net 'N211' has no driver
WARNING:NgdBuild:452 - logical net 'N212' has no driver
WARNING:NgdBuild:452 - logical net 'N213' has no driver
WARNING:NgdBuild:452 - logical net 'N214' has no driver
WARNING:NgdBuild:452 - logical net 'N215' has no driver
WARNING:NgdBuild:452 - logical net 'N216' has no driver
WARNING:NgdBuild:452 - logical net 'N217' has no driver
WARNING:NgdBuild:452 - logical net 'N218' has no driver
WARNING:NgdBuild:452 - logical net 'N219' has no driver
WARNING:NgdBuild:452 - logical net 'N220' has no driver
WARNING:NgdBuild:452 - logical net 'N221' has no driver
WARNING:NgdBuild:452 - logical net 'N222' has no driver
WARNING:NgdBuild:452 - logical net 'N223' has no driver
WARNING:NgdBuild:452 - logical net 'N224' has no driver
WARNING:NgdBuild:452 - logical net 'N225' has no driver
WARNING:NgdBuild:452 - logical net 'N226' has no driver
WARNING:NgdBuild:452 - logical net 'N227' has no driver
WARNING:NgdBuild:452 - logical net 'N228' has no driver
WARNING:NgdBuild:452 - logical net 'N229' has no driver
WARNING:NgdBuild:452 - logical net 'N230' has no driver
WARNING:NgdBuild:452 - logical net 'N231' has no driver
WARNING:NgdBuild:452 - logical net 'N232' has no driver
WARNING:NgdBuild:452 - logical net 'N233' has no driver
WARNING:NgdBuild:452 - logical net 'N234' has no driver
WARNING:NgdBuild:452 - logical net 'N235' has no driver
WARNING:NgdBuild:452 - logical net 'N236' has no driver
WARNING:NgdBuild:452 - logical net 'N237' has no driver
WARNING:NgdBuild:452 - logical net 'N238' has no driver
WARNING:NgdBuild:452 - logical net 'N239' has no driver
WARNING:NgdBuild:452 - logical net 'N240' has no driver
WARNING:NgdBuild:452 - logical net 'N241' has no driver
WARNING:NgdBuild:452 - logical net 'N242' has no driver
WARNING:NgdBuild:452 - logical net 'N243' has no driver
WARNING:NgdBuild:452 - logical net 'N244' has no driver
WARNING:NgdBuild:452 - logical net 'N245' has no driver
WARNING:NgdBuild:452 - logical net 'N246' has no driver
WARNING:NgdBuild:452 - logical net 'N247' has no driver
WARNING:NgdBuild:452 - logical net 'N248' has no driver
WARNING:NgdBuild:452 - logical net 'N249' has no driver
WARNING:NgdBuild:452 - logical net 'N250' has no driver
WARNING:NgdBuild:452 - logical net 'N251' has no driver
WARNING:NgdBuild:452 - logical net 'N252' has no driver
WARNING:NgdBuild:452 - logical net 'N253' has no driver
WARNING:NgdBuild:452 - logical net 'N254' has no driver
Partition Implementation Status
-------------------------------
No Partitions were found in this design.
-------------------------------
NGDBUILD Design Results Summary:
Number of errors: 0
Number of warnings: 132
Writing NGD file "system.ngd" ...
Total REAL time to NGDBUILD completion: 25 sec
Total CPU time to NGDBUILD completion: 25 sec
Writing NGDBUILD log file "system.bld"...
NGDBUILD done.
#----------------------------------------------#
# Starting program map
# map -o system_map.ncd -w -pr b -ol high -timing -detail system.ngd system.pcf
#----------------------------------------------#
Release 14.7 - Map P.20131013 (lin64)
Copyright (c) 1995-2013 Xilinx, Inc. All rights reserved.
PMSPEC -- Overriding Xilinx file
</opt/Xilinx/14.7/ISE_DS/EDK/data/Xdh_PrimTypeLib.xda> with local file
</opt/Xilinx/14.7/ISE_DS/ISE/data/Xdh_PrimTypeLib.xda>
Using target part "7z010clg400-1".
vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv
INFO:Security:51 - The XILINXD_LICENSE_FILE environment variable is not set.
INFO:Security:52 - The LM_LICENSE_FILE environment variable is set to
'1717@io.ece.iastate.edu:27006@io.ece.iastate.edu'.
INFO:Security:54 - 'xc7z010' is a WebPack part.
WARNING:Security:43 - No license file was found in the standard Xilinx license
directory.
WARNING:Security:44 - Since no license file was found,
please run the Xilinx License Configuration Manager
(xlcm or "Manage Xilinx Licenses")
to assist in obtaining a license.
WARNING:Security:42 - Your software subscription period has lapsed. Your current
version of Xilinx tools will continue to function, but you no longer qualify for
Xilinx software updates or new releases.
----------------------------------------------------------------------
WARNING:LIT:701 - PAD symbol "CLK_N" has an undefined IOSTANDARD.
WARNING:LIT:702 - PAD symbol "CLK_N" is not constrained (LOC) to a specific
location.
WARNING:LIT:701 - PAD symbol "CLK_P" has an undefined IOSTANDARD.
WARNING:LIT:702 - PAD symbol "CLK_P" is not constrained (LOC) to a specific
location.
WARNING:LIT:701 - PAD symbol "processing_system7_0_PS_SRSTB_pin" has an
undefined IOSTANDARD.
WARNING:LIT:702 - PAD symbol "processing_system7_0_PS_SRSTB_pin" is not
constrained (LOC) to a specific location.
WARNING:LIT:701 - PAD symbol "processing_system7_0_PS_CLK_pin" has an undefined
IOSTANDARD.
WARNING:LIT:702 - PAD symbol "processing_system7_0_PS_CLK_pin" is not
constrained (LOC) to a specific location.
WARNING:LIT:701 - PAD symbol "processing_system7_0_PS_PORB_pin" has an undefined
IOSTANDARD.
WARNING:LIT:702 - PAD symbol "processing_system7_0_PS_PORB_pin" is not
constrained (LOC) to a specific location.
Mapping design into LUTs...
WARNING:MapLib:701 - Signal CLK_P connected to top level port CLK_P has been
removed.
WARNING:MapLib:701 - Signal CLK_N connected to top level port CLK_N has been
removed.
Writing file system_map.ngm...
Running directed packing...
Running delay-based LUT packing...
Updating timing models...
INFO:Map:215 - The Interim Design Summary has been generated in the MAP Report
(.mrp).
Running timing-driven placement...
Total REAL time at the beginning of Placer: 27 secs
Total CPU time at the beginning of Placer: 27 secs
Phase 1.1 Initial Placement Analysis
Phase 1.1 Initial Placement Analysis (Checksum:8310d50b) REAL time: 29 secs
Phase 2.7 Design Feasibility Check
Phase 2.7 Design Feasibility Check (Checksum:8310d50b) REAL time: 30 secs
Phase 3.31 Local Placement Optimization
Phase 3.31 Local Placement Optimization (Checksum:8310d50b) REAL time: 30 secs
Phase 4.2 Initial Placement for Architecture Specific Features
Phase 4.2 Initial Placement for Architecture Specific Features
(Checksum:abb3fc01) REAL time: 34 secs
Phase 5.30 Global Clock Region Assignment
Phase 5.30 Global Clock Region Assignment (Checksum:abb3fc01) REAL time: 34 secs
Phase 6.3 Local Placement Optimization
Phase 6.3 Local Placement Optimization (Checksum:abb3fc01) REAL time: 34 secs
Phase 7.5 Local Placement Optimization
Phase 7.5 Local Placement Optimization (Checksum:abb3fc01) REAL time: 34 secs
Phase 8.8 Global Placement
................................
....................................................................................................................................
.........................................................................................................................................................
Phase 8.8 Global Placement (Checksum:e347f06c) REAL time: 40 secs
Phase 9.5 Local Placement Optimization
Phase 9.5 Local Placement Optimization (Checksum:e347f06c) REAL time: 40 secs
Phase 10.18 Placement Optimization
Phase 10.18 Placement Optimization (Checksum:ab7cf133) REAL time: 43 secs
Phase 11.5 Local Placement Optimization
Phase 11.5 Local Placement Optimization (Checksum:ab7cf133) REAL time: 43 secs
Phase 12.34 Placement Validation
Phase 12.34 Placement Validation (Checksum:ab7cf133) REAL time: 44 secs
Total REAL time to Placer completion: 44 secs
Total CPU time to Placer completion: 44 secs
Running post-placement packing...
Writing output files...
Design Summary:
Number of errors: 0
Number of warnings: 12
Slice Logic Utilization:
Number of Slice Registers: 2,373 out of 35,200 6%
Number used as Flip Flops: 2,116
Number used as Latches: 256
Number used as Latch-thrus: 0
Number used as AND/OR logics: 1
Number of Slice LUTs: 2,146 out of 17,600 12%
Number used as logic: 2,042 out of 17,600 11%
Number using O6 output only: 1,096
Number using O5 output only: 224
Number using O5 and O6: 722
Number used as ROM: 0
Number used as Memory: 4 out of 6,000 1%
Number used as Dual Port RAM: 0
Number used as Single Port RAM: 0
Number used as Shift Register: 4
Number using O6 output only: 4
Number using O5 output only: 0
Number using O5 and O6: 0
Number used exclusively as route-thrus: 100
Number with same-slice register load: 96
Number with same-slice carry load: 4
Number with other load: 0
Slice Logic Distribution:
Number of occupied Slices: 938 out of 4,400 21%
Number of LUT Flip Flop pairs used: 3,038
Number with an unused Flip Flop: 983 out of 3,038 32%
Number with an unused LUT: 892 out of 3,038 29%
Number of fully used LUT-FF pairs: 1,163 out of 3,038 38%
Number of unique control sets: 106
Number of slice register sites lost
to control set restrictions: 432 out of 35,200 1%
A LUT Flip Flop pair for this architecture represents one LUT paired with
one Flip Flop within a slice. A control set is a unique combination of
clock, reset, set, and enable signals for a registered element.
The Slice Logic Distribution report is not meaningful if the design is
over-mapped for a non-slice resource or if Placement fails.
OVERMAPPING of BRAM resources should be ignored if the design is
over-mapped for a non-BRAM resource or if placement fails.
IO Utilization:
Number of bonded IOBs: 16 out of 100 16%
Number of LOCed IOBs: 16 out of 16 100%
Number of bonded IOPAD: 130 out of 130 100%
IOB Flip Flops: 6
Specific Feature Utilization:
Number of RAMB36E1/FIFO36E1s: 0 out of 60 0%
Number of RAMB18E1/FIFO18E1s: 0 out of 120 0%
Number of BUFG/BUFGCTRLs: 5 out of 32 15%
Number used as BUFGs: 5
Number used as BUFGCTRLs: 0
Number of IDELAYE2/IDELAYE2_FINEDELAYs: 0 out of 100 0%
Number of ILOGICE2/ILOGICE3/ISERDESE2s: 6 out of 100 6%
Number used as ILOGICE2s: 6
Number used as ILOGICE3s: 0
Number used as ISERDESE2s: 0
Number of ODELAYE2/ODELAYE2_FINEDELAYs: 0
Number of OLOGICE2/OLOGICE3/OSERDESE2s: 0 out of 100 0%
Number of PHASER_IN/PHASER_IN_PHYs: 0 out of 8 0%
Number of PHASER_OUT/PHASER_OUT_PHYs: 0 out of 8 0%
Number of BSCANs: 0 out of 4 0%
Number of BUFHCEs: 0 out of 48 0%
Number of BUFRs: 0 out of 8 0%
Number of CAPTUREs: 0 out of 1 0%
Number of DNA_PORTs: 0 out of 1 0%
Number of DSP48E1s: 0 out of 80 0%
Number of EFUSE_USRs: 0 out of 1 0%
Number of FRAME_ECCs: 0 out of 1 0%
Number of ICAPs: 0 out of 2 0%
Number of IDELAYCTRLs: 0 out of 2 0%
Number of IN_FIFOs: 0 out of 8 0%
Number of MMCME2_ADVs: 0 out of 2 0%
Number of OUT_FIFOs: 0 out of 8 0%
Number of PHASER_REFs: 0 out of 2 0%
Number of PHY_CONTROLs: 0 out of 2 0%
Number of PLLE2_ADVs: 0 out of 2 0%
Number of PS7s: 1 out of 1 100%
Number of STARTUPs: 0 out of 1 0%
Number of XADCs: 0 out of 1 0%
Average Fanout of Non-Clock Nets: 3.25
Peak Memory Usage: 1270 MB
Total REAL time to MAP completion: 46 secs
Total CPU time to MAP completion: 46 secs
Mapping completed.
See MAP report file "system_map.mrp" for details.
#----------------------------------------------#
# Starting program par
# par -w -ol high system_map.ncd system.ncd system.pcf
#----------------------------------------------#
Release 14.7 - par P.20131013 (lin64)
Copyright (c) 1995-2013 Xilinx, Inc. All rights reserved.
PMSPEC -- Overriding Xilinx file </opt/Xilinx/14.7/ISE_DS/EDK/data/parBmgr.acd> with local file
</opt/Xilinx/14.7/ISE_DS/ISE/data/parBmgr.acd>
Constraints file: system.pcf.
Loading device for application Rf_Device from file '7z010.nph' in environment
/opt/Xilinx/14.7/ISE_DS/ISE/:/opt/Xilinx/14.7/ISE_DS/EDK.
"system" is an NCD, version 3.2, device xc7z010, package clg400, speed -1
vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv
INFO:Security:51 - The XILINXD_LICENSE_FILE environment variable is not set.
INFO:Security:52 - The LM_LICENSE_FILE environment variable is set to
'1717@io.ece.iastate.edu:27006@io.ece.iastate.edu'.
INFO:Security:54 - 'xc7z010' is a WebPack part.
WARNING:Security:43 - No license file was found in the standard Xilinx license directory.
WARNING:Security:44 - Since no license file was found,
please run the Xilinx License Configuration Manager
(xlcm or "Manage Xilinx Licenses")
to assist in obtaining a license.
WARNING:Security:42 - Your software subscription period has lapsed. Your current version of Xilinx tools will continue
to function, but you no longer qualify for Xilinx software updates or new releases.
----------------------------------------------------------------------
Initializing temperature to 85.000 Celsius. (default - Range: 0.000 to 85.000 Celsius)
Initializing voltage to 0.950 Volts. (default - Range: 0.950 to 1.050 Volts)
Device speed data version: "PRODUCTION 1.08 2013-10-13".
Device Utilization Summary:
Number of BUFGs 5 out of 32 15%
Number of ILOGICE2s 6 out of 100 6%
Number of External IOB33s 16 out of 100 16%
Number of LOCed IOB33s 16 out of 16 100%
Number of External IOPADs 130 out of 130 100%
Number of LOCed IOPADs 127 out of 130 97%
Number of PS7s 1 out of 1 100%
Number of Slices 938 out of 4400 21%
Number of Slice Registers 2373 out of 35200 6%
Number used as Flip Flops 2117
Number used as Latches 256
Number used as LatchThrus 0
Number of Slice LUTS 2146 out of 17600 12%
Number of Slice LUT-Flip Flop pairs 2994 out of 17600 17%
Overall effort level (-ol): High
Router effort level (-rl): High
INFO:Timing:3386 - Intersecting Constraints found and resolved. For more information, see the TSI report. Please consult the Xilinx
Command Line Tools User Guide for information on generating a TSI report.
Starting initial Timing Analysis. REAL time: 15 secs
Finished initial Timing Analysis. REAL time: 15 secs
Starting Router
Phase 1 : 13725 unrouted; REAL time: 16 secs
Phase 2 : 10227 unrouted; REAL time: 16 secs
Phase 3 : 3457 unrouted; REAL time: 20 secs
Phase 4 : 3457 unrouted; (Setup:0, Hold:13564, Component Switching Limit:0) REAL time: 21 secs
Updating file: system.ncd with current fully routed design.
Phase 5 : 0 unrouted; (Setup:0, Hold:12100, Component Switching Limit:0) REAL time: 25 secs
Phase 6 : 0 unrouted; (Setup:0, Hold:12100, Component Switching Limit:0) REAL time: 25 secs
Phase 7 : 0 unrouted; (Setup:0, Hold:12100, Component Switching Limit:0) REAL time: 25 secs
Phase 8 : 0 unrouted; (Setup:0, Hold:12100, Component Switching Limit:0) REAL time: 25 secs
Phase 9 : 0 unrouted; (Setup:0, Hold:0, Component Switching Limit:0) REAL time: 26 secs
Total REAL time to Router completion: 26 secs
Total CPU time to Router completion: 26 secs
Partition Implementation Status
-------------------------------
No Partitions were found in this design.
-------------------------------
Generating "PAR" statistics.
**************************
Generating Clock Report
**************************
+---------------------+--------------+------+------+------------+-------------+
| Clock Net | Resource |Locked|Fanout|Net Skew(ns)|Max Delay(ns)|
+---------------------+--------------+------+------+------------+-------------+
|processing_system7_0 | | | | | |
| _FCLK_CLK0 | BUFGCTRL_X0Y0| No | 611 | 0.133 | 1.774 |
+---------------------+--------------+------+------+------------+-------------+
|pwm_signal_out_wkill | | | | | |
|switch_0/pwm_signal_ | | | | | |
|out_wkillswitch_0/US | | | | | |
|ER_LOGIC_I/PWM_Hello | | | | | |
|/counter[31]_pwm_per | | | | | |
|_t[31]_equal_9_o_BUF | | | | | |
| G |BUFGCTRL_X0Y31| No | 16 | 0.022 | 1.657 |
+---------------------+--------------+------+------+------------+-------------+
|pwm_signal_out_wkill | | | | | |
|switch_1/pwm_signal_ | | | | | |
|out_wkillswitch_1/US | | | | | |
|ER_LOGIC_I/PWM_Hello | | | | | |
|/counter[31]_pwm_per | | | | | |
|_t[31]_equal_9_o_BUF | | | | | |
| G |BUFGCTRL_X0Y30| No | 16 | 0.018 | 1.667 |
+---------------------+--------------+------+------+------------+-------------+
|pwm_signal_out_wkill | | | | | |
|switch_3/pwm_signal_ | | | | | |
|out_wkillswitch_3/US | | | | | |
|ER_LOGIC_I/PWM_Hello | | | | | |
|/counter[31]_pwm_per | | | | | |
|_t[31]_equal_9_o_BUF | | | | | |
| G | BUFGCTRL_X0Y1| No | 16 | 0.018 | 1.665 |
+---------------------+--------------+------+------+------------+-------------+
|pwm_signal_out_wkill | | | | | |
|switch_2/pwm_signal_ | | | | | |
|out_wkillswitch_2/US | | | | | |
|ER_LOGIC_I/PWM_Hello | | | | | |
|/counter[31]_pwm_per | | | | | |
|_t[31]_equal_9_o_BUF | | | | | |
| G | BUFGCTRL_X0Y2| No | 16 | 0.012 | 1.670 |
+---------------------+--------------+------+------+------------+-------------+
* Net Skew is the difference between the minimum and maximum routing
only delays for the net. Note this is different from Clock Skew which
is reported in TRCE timing report. Clock Skew is the difference between
the minimum and maximum path delays which includes logic delays.
* The fanout is the number of component pins not the individual BEL loads,
for example SLICE loads not FF loads.
Timing Score: 0 (Setup: 0, Hold: 0, Component Switching Limit: 0)
Asterisk (*) preceding a constraint indicates it was not met.
This may be due to a setup or hold violation.
----------------------------------------------------------------------------------------------------------
Constraint | Check | Worst Case | Best Case | Timing | Timing
| | Slack | Achievable | Errors | Score
----------------------------------------------------------------------------------------------------------
TS_clk_fpga_0 = PERIOD TIMEGRP "clk_fpga_ | SETUP | 0.453ns| 9.547ns| 0| 0
0" 100 MHz HIGH 50% | HOLD | 0.018ns| | 0| 0
----------------------------------------------------------------------------------------------------------
PATH "TS_axi_interconnect_1_reset_resync_ | SETUP | N/A| 1.100ns| N/A| 0
path" TIG | | | | |
----------------------------------------------------------------------------------------------------------
All constraints were met.
INFO:Timing:2761 - N/A entries in the Constraints List may indicate that the
constraint is not analyzed due to the following: No paths covered by this
constraint; Other constraints intersect with this constraint; or This
constraint was disabled by a Path Tracing Control. Please run the Timespec
Interaction Report (TSI) via command line (trce tsi) or Timing Analyzer GUI.
Generating Pad Report.
All signals are completely routed.
Total REAL time to PAR completion: 27 secs
Total CPU time to PAR completion: 27 secs
Peak Memory Usage: 961 MB
Placer: Placement generated during map.
Routing: Completed - No errors found.
Timing: Completed - No errors found.
Number of error messages: 0
Number of warning messages: 0
Number of info messages: 1
Writing design to file system.ncd
PAR done!
#----------------------------------------------#
# Starting program post_par_trce
# trce -e 3 -xml system.twx system.ncd system.pcf
#----------------------------------------------#
Release 14.7 - Trace (lin64)
Copyright (c) 1995-2013 Xilinx, Inc. All rights reserved.
PMSPEC -- Overriding Xilinx file
</opt/Xilinx/14.7/ISE_DS/EDK/zynq/data/zynq.acd> with local file
</opt/Xilinx/14.7/ISE_DS/ISE/zynq/data/zynq.acd>
Loading device for application Rf_Device from file '7z010.nph' in environment
/opt/Xilinx/14.7/ISE_DS/ISE/:/opt/Xilinx/14.7/ISE_DS/EDK.
"system" is an NCD, version 3.2, device xc7z010, package clg400, speed -1
INFO:Timing:3386 - Intersecting Constraints found and resolved. For more
information, see the TSI report. Please consult the Xilinx Command Line
Tools User Guide for information on generating a TSI report.
--------------------------------------------------------------------------------
Release 14.7 Trace (lin64)
Copyright (c) 1995-2013 Xilinx, Inc. All rights reserved.
/opt/Xilinx/14.7/ISE_DS/ISE/bin/lin64/unwrapped/trce -e 3 -xml system.twx
system.ncd system.pcf
Design file: system.ncd
Physical constraint file: system.pcf
Device,speed: xc7z010,-1 (PRODUCTION 1.08 2013-10-13)
Report level: error report
--------------------------------------------------------------------------------
INFO:Timing:3412 - To improve timing, see the Timing Closure User Guide (UG612).
INFO:Timing:2752 - To get complete path coverage, use the unconstrained paths option. All paths that are not constrained will be reported in
the unconstrained paths section(s) of the report.
INFO:Timing:3339 - The clock-to-out numbers in this timing report are based on a 50 Ohm transmission line loading model. For the details of
this model, and for more information on accounting for different loading conditions, please see the device datasheet.
Timing summary:
---------------
Timing errors: 0 Score: 0 (Setup/Max: 0, Hold: 0)
Constraints cover 71514 paths, 0 nets, and 9934 connections
Design statistics:
Minimum period: 9.547ns (Maximum frequency: 104.745MHz)
Analysis completed Wed Oct 14 20:11:43 2015
--------------------------------------------------------------------------------
Generating Report ...
Number of warnings: 0
Number of info messages: 4
Total time: 15 secs
xflow done!
touch __xps/system_routed
xilperl /opt/Xilinx/14.7/ISE_DS/EDK/data/fpga_impl/observe_par.pl -error yes implementation/system.par
Analyzing implementation/system.par
*********************************************
Running Bitgen..
*********************************************
cd implementation ; bitgen -w -f bitgen.ut system ; cd ..
Release 14.7 - Bitgen P.20131013 (lin64)
Copyright (c) 1995-2013 Xilinx, Inc. All rights reserved.
PMSPEC -- Overriding Xilinx file
</opt/Xilinx/14.7/ISE_DS/EDK/zynq/data/zynq.acd> with local file
</opt/Xilinx/14.7/ISE_DS/ISE/zynq/data/zynq.acd>
Loading device for application Rf_Device from file '7z010.nph' in environment
/opt/Xilinx/14.7/ISE_DS/ISE/:/opt/Xilinx/14.7/ISE_DS/EDK.
"system" is an NCD, version 3.2, device xc7z010, package clg400, speed -1
Opened constraints file system.pcf.
Wed Oct 14 20:11:55 2015
Running DRC.
DRC detected 0 errors and 0 warnings.
INFO:Security:51 - The XILINXD_LICENSE_FILE environment variable is not set.
INFO:Security:52 - The LM_LICENSE_FILE environment variable is set to
'1717@io.ece.iastate.edu:27006@io.ece.iastate.edu'.
INFO:Security:54 - 'xc7z010' is a WebPack part.
WARNING:Security:43 - No license file was found in the standard Xilinx license
directory.
WARNING:Security:44 - Since no license file was found,
please run the Xilinx License Configuration Manager
(xlcm or "Manage Xilinx Licenses")
to assist in obtaining a license.
WARNING:Security:42 - Your software subscription period has lapsed. Your current
version of Xilinx tools will continue to function, but you no longer qualify for
Xilinx software updates or new releases.
Creating bit map...
Saving bit stream in "system.bit".
Bitstream generation is complete.
Done!
Writing filter settings....
Done writing filter settings to:
/local/ucart/microcart_may16/tasks/Quad/system/etc/system.filters
Done writing Tab View settings to:
/local/ucart/microcart_may16/tasks/Quad/system/etc/system.gui
Xilinx Platform Studio (XPS)
Xilinx EDK 14.7 Build EDK_P.20131013
Copyright (c) 1995-2012 Xilinx, Inc. All rights reserved.
Writing filter settings....
Done writing filter settings to:
/local/ucart/microcart_may16/tasks/Quad/system/etc/system.filters
Done writing Tab View settings to:
/local/ucart/microcart_may16/tasks/Quad/system/etc/system.gui
Xilinx Platform Studio (XPS)
Xilinx EDK 14.7 Build EDK_P.20131013
Copyright (c) 1995-2012 Xilinx, Inc. All rights reserved.
Overriding Xilinx file <TextEditor.cfg> with local file </opt/Xilinx/14.7/ISE_DS/EDK/data/TextEditor.cfg>
Writing filter settings....
Done writing filter settings to:
/local/ucart/microcart1630/tasks/Quad/system/etc/system.filters
Done writing Tab View settings to:
/local/ucart/microcart1630/tasks/Quad/system/etc/system.gui
Xilinx Platform Studio (XPS)
Xilinx EDK 14.7 Build EDK_P.20131013
Copyright (c) 1995-2012 Xilinx, Inc. All rights reserved.
Overriding Xilinx file <TextEditor.cfg> with local file </opt/Xilinx/14.7/ISE_DS/EDK/data/TextEditor.cfg>
Xilinx Platform Studio (XPS)
Xilinx EDK 14.7 Build EDK_P.20131013
Copyright (c) 1995-2012 Xilinx, Inc. All rights reserved.
Overriding Xilinx file <TextEditor.cfg> with local file </opt/Xilinx/14.7/ISE_DS/EDK/data/TextEditor.cfg>
Writing filter settings....
Done writing filter settings to:
/local/ucart/microcart1630/tasks/Quad/system/etc/system.filters
Done writing Tab View settings to:
/local/ucart/microcart1630/tasks/Quad/system/etc/system.gui
Xilinx Platform Studio (XPS)
Xilinx EDK 14.7 Build EDK_P.20131013
Copyright (c) 1995-2012 Xilinx, Inc. All rights reserved.
Writing filter settings....
Done writing filter settings to:
/local/ucart/microcart1630/tasks/Quad/system/etc/system.filters
Done writing Tab View settings to:
/local/ucart/microcart1630/tasks/Quad/system/etc/system.gui
Xilinx Platform Studio (XPS)
Xilinx EDK 14.7 Build EDK_P.20131013
Copyright (c) 1995-2012 Xilinx, Inc. All rights reserved.
Overriding Xilinx file <TextEditor.cfg> with local file </opt/Xilinx/14.7/ISE_DS/EDK/data/TextEditor.cfg>
Writing filter settings....
Done writing filter settings to:
/local/ucart/microcart1630/tasks/Quad/system/etc/system.filters
Done writing Tab View settings to:
/local/ucart/microcart1630/tasks/Quad/system/etc/system.gui
Xilinx Platform Studio (XPS)
Xilinx EDK 14.7 Build EDK_P.20131013
Copyright (c) 1995-2012 Xilinx, Inc. All rights reserved.
Assigned Driver tmrctr 2.05.a for instance axi_timer_0
axi_timer_0 has been added to the project
ERROR:EDK:4125 - IPNAME: axi_timer, INSTANCE: axi_timer_0, PARAMETER: C_BASEADDR - ASSIGNMENT=REQUIRE is defined in the MPD. You must specify a value in the MHS.
ERROR:EDK:4125 - IPNAME: axi_timer, INSTANCE: axi_timer_0, PARAMETER: C_HIGHADDR - ASSIGNMENT=REQUIRE is defined in the MPD. You must specify a value in the MHS.
WARNING:EDK:2137 - Peripheral axi_timer_0 is not accessible from any processor in the system. Check Bus Interface connections and address parameters.
Address Map for Processor processing_system7_0
(0x41200000-0x4120ffff) BTNs_4Bits_TRI_IO axi_interconnect_1
(0x42800000-0x4280ffff) axi_timer_0 axi_interconnect_1
(0x76e00000-0x76e0ffff) pwm_recorder_0 axi_interconnect_1
(0x76e20000-0x76e2ffff) pwm_recorder_1 axi_interconnect_1
(0x76e40000-0x76e4ffff) pwm_recorder_2 axi_interconnect_1
(0x76e60000-0x76e6ffff) pwm_recorder_3 axi_interconnect_1
(0x76e80000-0x76e8ffff) pwm_recorder_4 axi_interconnect_1
(0x76ea0000-0x76eaffff) pwm_recorder_5 axi_interconnect_1
(0x79400000-0x7940ffff) pwm_signal_out_wkillswitch_0 axi_interconnect_1
(0x79420000-0x7942ffff) pwm_signal_out_wkillswitch_1 axi_interconnect_1
(0x79440000-0x7944ffff) pwm_signal_out_wkillswitch_2 axi_interconnect_1
(0x79460000-0x7946ffff) pwm_signal_out_wkillswitch_3 axi_interconnect_1
INFO:EDK - Do connection by refering to bus interface of a processing_system7_0 in design
INFO:EDK - Connect bus interface S_AXI to axi_interconnect_1
INFO:EDK - Connect clock port S_AXI_ACLK to processing_system7_0_FCLK_CLK0
INFO:EDK - Successfully did connection by refering to M_AXI_GP0 bus interface in processing_system7_0
INFO:EDK - External IO port grouping doneINFO:EDK - Generate address successfully
INFO:EDK - Successfully finished auto bus connection for IP instance: axi_timer_0
********************************************************************************
At Local date and time: Wed Dec 30 20:33:54 2015
make -f system.make hwclean started...
rm -f implementation/system.ngc
rm -f implementation/system_clock_generator_0_wrapper.ngc implementation/system_reset_0_wrapper.ngc implementation/system_processing_system7_0_wrapper.ngc implementation/system_pwm_recorder_0_wrapper.ngc implementation/system_axi_interconnect_1_wrapper.ngc implementation/system_pwm_recorder_1_wrapper.ngc implementation/system_pwm_recorder_2_wrapper.ngc implementation/system_pwm_recorder_3_wrapper.ngc implementation/system_pwm_recorder_4_wrapper.ngc implementation/system_pwm_recorder_5_wrapper.ngc implementation/system_btns_4bits_tri_io_wrapper.ngc implementation/system_pwm_signal_out_wkillswitch_0_wrapper.ngc implementation/system_pwm_signal_out_wkillswitch_1_wrapper.ngc implementation/system_pwm_signal_out_wkillswitch_2_wrapper.ngc implementation/system_pwm_signal_out_wkillswitch_3_wrapper.ngc implementation/system_axi_timer_0_wrapper.ngc
rm -f platgen.log
rm -f __xps/ise/_xmsgs/platgen.xmsgs
rm -f implementation/system.bmm
rm -rf implementation/cache
rm -f implementation/system.bit
rm -f implementation/system.ncd
rm -f implementation/system_bd.bmm
rm -f implementation/system_map.ncd
rm -f implementation/download.bit
rm -f __xps/system_bits
rm -rf implementation synthesis xst hdl
rm -rf xst.srp system.srp
rm -f __xps/ise/_xmsgs/bitinit.xmsgs
rm -rf __xps/ps7_instance.mhs
Done!
********************************************************************************
At Local date and time: Wed Dec 30 20:33:59 2015
make -f system.make netlistclean started...
rm -f implementation/system.ngc
rm -f implementation/system_clock_generator_0_wrapper.ngc implementation/system_reset_0_wrapper.ngc implementation/system_processing_system7_0_wrapper.ngc implementation/system_pwm_recorder_0_wrapper.ngc implementation/system_axi_interconnect_1_wrapper.ngc implementation/system_pwm_recorder_1_wrapper.ngc implementation/system_pwm_recorder_2_wrapper.ngc implementation/system_pwm_recorder_3_wrapper.ngc implementation/system_pwm_recorder_4_wrapper.ngc implementation/system_pwm_recorder_5_wrapper.ngc implementation/system_btns_4bits_tri_io_wrapper.ngc implementation/system_pwm_signal_out_wkillswitch_0_wrapper.ngc implementation/system_pwm_signal_out_wkillswitch_1_wrapper.ngc implementation/system_pwm_signal_out_wkillswitch_2_wrapper.ngc implementation/system_pwm_signal_out_wkillswitch_3_wrapper.ngc implementation/system_axi_timer_0_wrapper.ngc
rm -f platgen.log
rm -f __xps/ise/_xmsgs/platgen.xmsgs
rm -f implementation/system.bmm
rm -rf implementation/cache
Done!
********************************************************************************
At Local date and time: Wed Dec 30 20:34:03 2015
make -f system.make bitsclean started...
rm -f implementation/system.bit
rm -f implementation/system.ncd
rm -f implementation/system_bd.bmm
rm -f implementation/system_map.ncd
rm -f implementation/download.bit
rm -f __xps/system_bits
Done!
********************************************************************************
At Local date and time: Wed Dec 30 20:34:29 2015
make -f system.make exporttosdk started...
pscgen -mhs system.mhs -expdir SDK/SDK_Export/hw
Generating ps7_init code for Si version 1....
Generating ps7_init code for Si version 2....
Generating ps7_init code for Si version 3....
psf2Edward -inp system.xmp -flat_zynq -dont_run_checkhwsys -dont_add_loginfo -make_inst_lower -edwver 1.2 -xml SDK/SDK_Export/hw/system.xml
Release 14.7 - psf2Edward EDK_P.20131013 (lin64)
Copyright (c) 1995-2013 Xilinx, Inc. All rights reserved.
WARNING:EDK:4092 - IPNAME: clock_generator, INSTANCE: clock_generator_0 -
Pre-Production version not verified on hardware for architecture 'zynq' -
/local/ucart/microcart1630/tasks/Quad/system/system.mhs line 43
WARNING:EDK:4092 - IPNAME: clock_generator, INSTANCE: clock_generator_0 -
Pre-Production version not verified on hardware for architecture 'zynq' -
/local/ucart/microcart1630/tasks/Quad/system/system.mhs line 43
WARNING:EDK:4092 - IPNAME: clock_generator, INSTANCE: clock_generator_0 -
Pre-Production version not verified on hardware for architecture 'zynq' -
/local/ucart/microcart1630/tasks/Quad/system/system.mhs line 43
WARNING:EDK:4092 - IPNAME: clock_generator, INSTANCE: clock_generator_0 -
Pre-Production version not verified on hardware for architecture 'zynq' -
/local/ucart/microcart1630/tasks/Quad/system/system.mhs line 43
WARNING:EDK -
/opt/Xilinx/14.7/ISE_DS/ISE/data/zynqconfig/ps7_internals/pcores/ps7_i2c_v1_0
0_a/data/ps7_i2c_v2_1_0.mpd line 108 Unknown PORT subproperty IIC Serial Data
WARNING:EDK -
/opt/Xilinx/14.7/ISE_DS/ISE/data/zynqconfig/ps7_internals/pcores/ps7_i2c_v1_0
0_a/data/ps7_i2c_v2_1_0.mpd line 109 Unknown PORT subproperty IIC Serial
Clock
WARNING:EDK:2486 - The bitwidth 52 of new value 0xc00000000f281 is greater than
32
WARNING:EDK:4131 - IPNAME: ps7_usb_0, PROPERTY: C_INTERCONNECT_M_AXI_BASE_ID -
Failure in evaluting ISVALID expresion "(C_INCLUDE_DMA == 1)" -
/opt/Xilinx/14.7/ISE_DS/EDK/data/coremodel/axi/data/tools_axi_v1_01_a.txt
line 19
WARNING:EDK:4131 - IPNAME: ps7_usb_0, PROPERTY:
C_INTERCONNECT_M_AXI_IS_ACLK_ASYNC - Failure in evaluting ISVALID expresion
"(C_INCLUDE_DMA == 1)" -
/opt/Xilinx/14.7/ISE_DS/EDK/data/coremodel/axi/data/tools_axi_v1_01_a.txt
line 20
WARNING:EDK:4131 - IPNAME: ps7_usb_0, PROPERTY: C_INTERCONNECT_M_AXI_ACLK_RATIO
- Failure in evaluting ISVALID expresion "(C_INCLUDE_DMA == 1)" -
/opt/Xilinx/14.7/ISE_DS/EDK/data/coremodel/axi/data/tools_axi_v1_01_a.txt
line 21
WARNING:EDK:4131 - IPNAME: ps7_usb_0, PROPERTY:
C_INTERCONNECT_M_AXI_ARB_PRIORITY - Failure in evaluting ISVALID expresion
"(C_INCLUDE_DMA == 1)" -
/opt/Xilinx/14.7/ISE_DS/EDK/data/coremodel/axi/data/tools_axi_v1_01_a.txt
line 22
WARNING:EDK:4131 - IPNAME: ps7_usb_0, PROPERTY: C_INTERCONNECT_M_AXI_AW_REGISTER
- Failure in evaluting ISVALID expresion "(C_INCLUDE_DMA == 1)" -
/opt/Xilinx/14.7/ISE_DS/EDK/data/coremodel/axi/data/tools_axi_v1_01_a.txt
line 23
WARNING:EDK:4131 - IPNAME: ps7_usb_0, PROPERTY: C_INTERCONNECT_M_AXI_AR_REGISTER
- Failure in evaluting ISVALID expresion "(C_INCLUDE_DMA == 1)" -
/opt/Xilinx/14.7/ISE_DS/EDK/data/coremodel/axi/data/tools_axi_v1_01_a.txt
line 24
WARNING:EDK:4131 - IPNAME: ps7_usb_0, PROPERTY: C_INTERCONNECT_M_AXI_W_REGISTER
- Failure in evaluting ISVALID expresion "(C_INCLUDE_DMA == 1)" -
/opt/Xilinx/14.7/ISE_DS/EDK/data/coremodel/axi/data/tools_axi_v1_01_a.txt
line 25
WARNING:EDK:4131 - IPNAME: ps7_usb_0, PROPERTY: C_INTERCONNECT_M_AXI_R_REGISTER
- Failure in evaluting ISVALID expresion "(C_INCLUDE_DMA == 1)" -
/opt/Xilinx/14.7/ISE_DS/EDK/data/coremodel/axi/data/tools_axi_v1_01_a.txt
line 26
WARNING:EDK:4131 - IPNAME: ps7_usb_0, PROPERTY: C_INTERCONNECT_M_AXI_B_REGISTER
- Failure in evaluting ISVALID expresion "(C_INCLUDE_DMA == 1)" -
/opt/Xilinx/14.7/ISE_DS/EDK/data/coremodel/axi/data/tools_axi_v1_01_a.txt
line 27
WARNING:EDK:4131 - IPNAME: ps7_usb_0, PROPERTY:
C_INTERCONNECT_M_AXI_WRITE_FIFO_DEPTH - Failure in evaluting ISVALID
expresion "(C_INCLUDE_DMA == 1)" -
/opt/Xilinx/14.7/ISE_DS/EDK/data/coremodel/axi/data/tools_axi_v1_01_a.txt
line 28
WARNING:EDK:4131 - IPNAME: ps7_usb_0, PROPERTY:
C_INTERCONNECT_M_AXI_READ_FIFO_DEPTH - Failure in evaluting ISVALID expresion
"(C_INCLUDE_DMA == 1)" -
/opt/Xilinx/14.7/ISE_DS/EDK/data/coremodel/axi/data/tools_axi_v1_01_a.txt
line 29
WARNING:EDK:4131 - IPNAME: ps7_usb_0, PROPERTY:
C_INTERCONNECT_M_AXI_WRITE_ISSUING - Failure in evaluting ISVALID expresion
"(C_INCLUDE_DMA == 1)" -
/opt/Xilinx/14.7/ISE_DS/EDK/data/coremodel/axi/data/tools_axi_v1_01_a.txt
line 30
WARNING:EDK:4131 - IPNAME: ps7_usb_0, PROPERTY:
C_INTERCONNECT_M_AXI_READ_ISSUING - Failure in evaluting ISVALID expresion
"(C_INCLUDE_DMA == 1)" -
/opt/Xilinx/14.7/ISE_DS/EDK/data/coremodel/axi/data/tools_axi_v1_01_a.txt
line 31
WARNING:EDK:4131 - IPNAME: ps7_usb_0, PROPERTY: M_AXI_ACLK - Failure in
evaluting ISVALID expresion "(C_INCLUDE_DMA == 1)" -
/opt/Xilinx/14.7/ISE_DS/ISE/data/zynqconfig/ps7_internals/pcores/ps7_usb_v1_0
0_a/data/ps7_usb_v2_1_0.mpd line 119
WARNING:EDK:4131 - IPNAME: ps7_usb_0, PROPERTY: M_AXI_ARESETN - Failure in
evaluting ISVALID expresion "(C_INCLUDE_DMA == 1)" -
/opt/Xilinx/14.7/ISE_DS/ISE/data/zynqconfig/ps7_internals/pcores/ps7_usb_v1_0
0_a/data/ps7_usb_v2_1_0.mpd line 120
WARNING:EDK:4131 - IPNAME: ps7_usb_0, PROPERTY: M_AXI_AWID - Failure in
evaluting ISVALID expresion "(C_INCLUDE_DMA == 1)" -
/opt/Xilinx/14.7/ISE_DS/ISE/data/zynqconfig/ps7_internals/pcores/ps7_usb_v1_0
0_a/data/ps7_usb_v2_1_0.mpd line 121
WARNING:EDK:4131 - IPNAME: ps7_usb_0, PROPERTY: M_AXI_AWADDR - Failure in
evaluting ISVALID expresion "(C_INCLUDE_DMA == 1)" -
/opt/Xilinx/14.7/ISE_DS/ISE/data/zynqconfig/ps7_internals/pcores/ps7_usb_v1_0
0_a/data/ps7_usb_v2_1_0.mpd line 122
WARNING:EDK:4131 - IPNAME: ps7_usb_0, PROPERTY: M_AXI_AWLEN - Failure in
evaluting ISVALID expresion "(C_INCLUDE_DMA == 1)" -
/opt/Xilinx/14.7/ISE_DS/ISE/data/zynqconfig/ps7_internals/pcores/ps7_usb_v1_0
0_a/data/ps7_usb_v2_1_0.mpd line 123
WARNING:EDK:4131 - IPNAME: ps7_usb_0, PROPERTY: M_AXI_AWSIZE - Failure in
evaluting ISVALID expresion "(C_INCLUDE_DMA == 1)" -
/opt/Xilinx/14.7/ISE_DS/ISE/data/zynqconfig/ps7_internals/pcores/ps7_usb_v1_0
0_a/data/ps7_usb_v2_1_0.mpd line 124
WARNING:EDK:4131 - IPNAME: ps7_usb_0, PROPERTY: M_AXI_AWBURST - Failure in
evaluting ISVALID expresion "(C_INCLUDE_DMA == 1)" -
/opt/Xilinx/14.7/ISE_DS/ISE/data/zynqconfig/ps7_internals/pcores/ps7_usb_v1_0
0_a/data/ps7_usb_v2_1_0.mpd line 125
WARNING:EDK:4131 - IPNAME: ps7_usb_0, PROPERTY: M_AXI_AWCACHE - Failure in
evaluting ISVALID expresion "(C_INCLUDE_DMA == 1)" -
/opt/Xilinx/14.7/ISE_DS/ISE/data/zynqconfig/ps7_internals/pcores/ps7_usb_v1_0
0_a/data/ps7_usb_v2_1_0.mpd line 126
WARNING:EDK:4131 - IPNAME: ps7_usb_0, PROPERTY: M_AXI_AWPROT - Failure in
evaluting ISVALID expresion "(C_INCLUDE_DMA == 1)" -
/opt/Xilinx/14.7/ISE_DS/ISE/data/zynqconfig/ps7_internals/pcores/ps7_usb_v1_0
0_a/data/ps7_usb_v2_1_0.mpd line 127
WARNING:EDK:4131 - IPNAME: ps7_usb_0, PROPERTY: M_AXI_AWLOCK - Failure in
evaluting ISVALID expresion "(C_INCLUDE_DMA == 1)" -
/opt/Xilinx/14.7/ISE_DS/ISE/data/zynqconfig/ps7_internals/pcores/ps7_usb_v1_0
0_a/data/ps7_usb_v2_1_0.mpd line 128
WARNING:EDK:4131 - IPNAME: ps7_usb_0, PROPERTY: M_AXI_AWVALID - Failure in
evaluting ISVALID expresion "(C_INCLUDE_DMA == 1)" -
/opt/Xilinx/14.7/ISE_DS/ISE/data/zynqconfig/ps7_internals/pcores/ps7_usb_v1_0
0_a/data/ps7_usb_v2_1_0.mpd line 129
WARNING:EDK:4131 - IPNAME: ps7_usb_0, PROPERTY: M_AXI_AWREADY - Failure in
evaluting ISVALID expresion "(C_INCLUDE_DMA == 1)" -
/opt/Xilinx/14.7/ISE_DS/ISE/data/zynqconfig/ps7_internals/pcores/ps7_usb_v1_0
0_a/data/ps7_usb_v2_1_0.mpd line 130
WARNING:EDK:4131 - IPNAME: ps7_usb_0, PROPERTY: M_AXI_WDATA - Failure in
evaluting ISVALID expresion "(C_INCLUDE_DMA == 1)" -
/opt/Xilinx/14.7/ISE_DS/ISE/data/zynqconfig/ps7_internals/pcores/ps7_usb_v1_0
0_a/data/ps7_usb_v2_1_0.mpd line 131
WARNING:EDK:4131 - IPNAME: ps7_usb_0, PROPERTY: M_AXI_WSTRB - Failure in
evaluting ISVALID expresion "(C_INCLUDE_DMA == 1)" -
/opt/Xilinx/14.7/ISE_DS/ISE/data/zynqconfig/ps7_internals/pcores/ps7_usb_v1_0
0_a/data/ps7_usb_v2_1_0.mpd line 132
WARNING:EDK:4131 - IPNAME: ps7_usb_0, PROPERTY: M_AXI_WLAST - Failure in
evaluting ISVALID expresion "(C_INCLUDE_DMA == 1)" -
/opt/Xilinx/14.7/ISE_DS/ISE/data/zynqconfig/ps7_internals/pcores/ps7_usb_v1_0
0_a/data/ps7_usb_v2_1_0.mpd line 133
WARNING:EDK:4131 - IPNAME: ps7_usb_0, PROPERTY: M_AXI_WVALID - Failure in
evaluting ISVALID expresion "(C_INCLUDE_DMA == 1)" -
/opt/Xilinx/14.7/ISE_DS/ISE/data/zynqconfig/ps7_internals/pcores/ps7_usb_v1_0
0_a/data/ps7_usb_v2_1_0.mpd line 134
WARNING:EDK:4131 - IPNAME: ps7_usb_0, PROPERTY: M_AXI_WREADY - Failure in
evaluting ISVALID expresion "(C_INCLUDE_DMA == 1)" -
/opt/Xilinx/14.7/ISE_DS/ISE/data/zynqconfig/ps7_internals/pcores/ps7_usb_v1_0
0_a/data/ps7_usb_v2_1_0.mpd line 135
WARNING:EDK:4131 - IPNAME: ps7_usb_0, PROPERTY: M_AXI_BID - Failure in evaluting
ISVALID expresion "(C_INCLUDE_DMA == 1)" -
/opt/Xilinx/14.7/ISE_DS/ISE/data/zynqconfig/ps7_internals/pcores/ps7_usb_v1_0
0_a/data/ps7_usb_v2_1_0.mpd line 136
WARNING:EDK:4131 - IPNAME: ps7_usb_0, PROPERTY: M_AXI_BRESP - Failure in
evaluting ISVALID expresion "(C_INCLUDE_DMA == 1)" -
/opt/Xilinx/14.7/ISE_DS/ISE/data/zynqconfig/ps7_internals/pcores/ps7_usb_v1_0
0_a/data/ps7_usb_v2_1_0.mpd line 137
WARNING:EDK:4131 - IPNAME: ps7_usb_0, PROPERTY: M_AXI_BVALID - Failure in
evaluting ISVALID expresion "(C_INCLUDE_DMA == 1)" -
/opt/Xilinx/14.7/ISE_DS/ISE/data/zynqconfig/ps7_internals/pcores/ps7_usb_v1_0
0_a/data/ps7_usb_v2_1_0.mpd line 138
WARNING:EDK:4131 - IPNAME: ps7_usb_0, PROPERTY: M_AXI_BREADY - Failure in
evaluting ISVALID expresion "(C_INCLUDE_DMA == 1)" -
/opt/Xilinx/14.7/ISE_DS/ISE/data/zynqconfig/ps7_internals/pcores/ps7_usb_v1_0
0_a/data/ps7_usb_v2_1_0.mpd line 139
WARNING:EDK:4131 - IPNAME: ps7_usb_0, PROPERTY: M_AXI_ARID - Failure in
evaluting ISVALID expresion "(C_INCLUDE_DMA == 1)" -
/opt/Xilinx/14.7/ISE_DS/ISE/data/zynqconfig/ps7_internals/pcores/ps7_usb_v1_0
0_a/data/ps7_usb_v2_1_0.mpd line 140
WARNING:EDK:4131 - IPNAME: ps7_usb_0, PROPERTY: M_AXI_ARADDR - Failure in
evaluting ISVALID expresion "(C_INCLUDE_DMA == 1)" -
/opt/Xilinx/14.7/ISE_DS/ISE/data/zynqconfig/ps7_internals/pcores/ps7_usb_v1_0
0_a/data/ps7_usb_v2_1_0.mpd line 141
WARNING:EDK:4131 - IPNAME: ps7_usb_0, PROPERTY: M_AXI_ARLEN - Failure in
evaluting ISVALID expresion "(C_INCLUDE_DMA == 1)" -
/opt/Xilinx/14.7/ISE_DS/ISE/data/zynqconfig/ps7_internals/pcores/ps7_usb_v1_0
0_a/data/ps7_usb_v2_1_0.mpd line 142
WARNING:EDK:4131 - IPNAME: ps7_usb_0, PROPERTY: M_AXI_ARSIZE - Failure in
evaluting ISVALID expresion "(C_INCLUDE_DMA == 1)" -
/opt/Xilinx/14.7/ISE_DS/ISE/data/zynqconfig/ps7_internals/pcores/ps7_usb_v1_0
0_a/data/ps7_usb_v2_1_0.mpd line 143
WARNING:EDK:4131 - IPNAME: ps7_usb_0, PROPERTY: M_AXI_ARBURST - Failure in
evaluting ISVALID expresion "(C_INCLUDE_DMA == 1)" -
/opt/Xilinx/14.7/ISE_DS/ISE/data/zynqconfig/ps7_internals/pcores/ps7_usb_v1_0
0_a/data/ps7_usb_v2_1_0.mpd line 144
WARNING:EDK:4131 - IPNAME: ps7_usb_0, PROPERTY: M_AXI_ARCACHE - Failure in
evaluting ISVALID expresion "(C_INCLUDE_DMA == 1)" -
/opt/Xilinx/14.7/ISE_DS/ISE/data/zynqconfig/ps7_internals/pcores/ps7_usb_v1_0
0_a/data/ps7_usb_v2_1_0.mpd line 145
WARNING:EDK:4131 - IPNAME: ps7_usb_0, PROPERTY: M_AXI_ARPROT - Failure in
evaluting ISVALID expresion "(C_INCLUDE_DMA == 1)" -
/opt/Xilinx/14.7/ISE_DS/ISE/data/zynqconfig/ps7_internals/pcores/ps7_usb_v1_0