Newer
Older

javey
committed
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
5392
5393
5394
5395
5396
5397
5398
5399
5400
5401
5402
5403
5404
5405
5406
5407
5408
5409
5410
5411
5412
5413
5414
5415
5416
5417
5418
5419
5420
5421
5422
5423
5424
5425
5426
5427
5428
5429
5430
5431
5432
5433
5434
5435
5436
5437
5438
5439
5440
5441
5442
5443
5444
5445
5446
5447
5448
5449
5450
5451
5452
5453
5454
5455
5456
5457
5458
5459
5460
5461
5462
5463
5464
5465
5466
5467
5468
5469
5470
5471
5472
5473
5474
5475
5476
5477
5478
5479
5480
5481
5482
5483
5484
5485
5486
5487
5488
5489
5490
5491
5492
5493
5494
5495
5496
5497
5498
5499
5500
5501
5502
5503
5504
5505
5506
5507
5508
5509
5510
5511
5512
5513
5514
5515
5516
5517
5518
5519
5520
5521
5522
5523
5524
5525
5526
5527
5528
5529
5530
5531
5532
5533
5534
5535
5536
5537
5538
5539
5540
5541
5542
5543
5544
5545
5546
5547
5548
5549
5550
5551
5552
5553
5554
5555
5556
5557
5558
5559
5560
5561
5562
5563
5564
5565
5566
5567
5568
5569
5570
5571
5572
5573
5574
5575
5576
5577
5578
5579
5580
5581
5582
5583
5584
5585
5586
5587
5588
5589
5590
5591
5592
5593
5594
5595
5596
5597
5598
5599
5600
5601
5602
5603
5604
5605
5606
5607
5608
5609
5610
5611
5612
5613
5614
5615
5616
5617
5618
5619
5620
5621
5622
5623
5624
5625
5626
5627
5628
5629
5630
5631
5632
5633
5634
5635
5636
5637
5638
5639
5640
5641
5642
5643
5644
5645
5646
5647
5648
5649
5650
5651
5652
5653
5654
5655
5656
5657
5658
5659
5660
5661
5662
5663
5664
5665
5666
5667
5668
5669
5670
5671
5672
5673
5674
5675
5676
5677
5678
5679
5680
5681
5682
5683
5684
5685
5686
5687
5688
5689
5690
5691
5692
5693
5694
5695
5696
5697
5698
5699
5700
5701
5702
5703
5704
5705
5706
5707
5708
5709
5710
5711
5712
5713
5714
5715
5716
5717
5718
5719
5720
5721
5722
5723
5724
5725
5726
5727
5728
5729
5730
5731
5732
5733
5734
5735
5736
5737
5738
5739
5740
5741
5742
5743
5744
5745
5746
5747
5748
5749
5750
5751
5752
5753
5754
5755
5756
5757
5758
5759
5760
5761
5762
5763
5764
5765
5766
5767
5768
5769
5770
5771
5772
5773
5774
5775
5776
5777
5778
5779
5780
5781
5782
5783
5784
5785
5786
5787
5788
5789
5790
5791
5792
5793
5794
5795
5796
5797
5798
5799
5800
5801
5802
5803
5804
5805
5806
5807
5808
5809
5810
5811
5812
5813
5814
5815
5816
5817
5818
5819
5820
5821
5822
5823
5824
5825
5826
5827
5828
5829
5830
5831
5832
5833
5834
5835
5836
5837
5838
5839
5840
5841
5842
5843
5844
5845
5846
5847
5848
5849
5850
5851
5852
5853
5854
5855
5856
5857
5858
5859
5860
5861
5862
5863
5864
5865
5866
5867
5868
5869
5870
5871
5872
5873
5874
5875
5876
5877
5878
5879
5880
5881
5882
5883
5884
5885
5886
5887
5888
5889
5890
5891
5892
5893
5894
5895
5896
5897
5898
5899
5900
5901
5902
5903
5904
5905
5906
5907
5908
5909
5910
5911
5912
5913
5914
5915
5916
5917
5918
5919
5920
5921
5922
5923
5924
5925
5926
5927
5928
5929
5930
5931
5932
5933
5934
5935
5936
5937
5938
5939
5940
5941
5942
5943
5944
5945
5946
5947
5948
5949
5950
5951
5952
5953
5954
5955
5956
5957
5958
5959
5960
5961
5962
5963
5964
5965
5966
5967
5968
5969
5970
5971
5972
5973
5974
5975
5976
5977
5978
5979
5980
5981
5982
5983
5984
5985
5986
5987
5988
5989
5990
5991
5992
5993
5994
5995
5996
5997
5998
5999
6000
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
0_a/data/ps7_usb_v2_1_0.mpd line 146
WARNING:EDK:4131 - IPNAME: ps7_usb_0, PROPERTY: M_AXI_ARLOCK - 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 147
WARNING:EDK:4131 - IPNAME: ps7_usb_0, PROPERTY: M_AXI_ARVALID - 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 148
WARNING:EDK:4131 - IPNAME: ps7_usb_0, PROPERTY: M_AXI_ARREADY - 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 149
WARNING:EDK:4131 - IPNAME: ps7_usb_0, PROPERTY: M_AXI_RID - 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 150
WARNING:EDK:4131 - IPNAME: ps7_usb_0, PROPERTY: M_AXI_RDATA - 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 151
WARNING:EDK:4131 - IPNAME: ps7_usb_0, PROPERTY: M_AXI_RRESP - 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 152
WARNING:EDK:4131 - IPNAME: ps7_usb_0, PROPERTY: M_AXI_RLAST - 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 153
WARNING:EDK:4131 - IPNAME: ps7_usb_0, PROPERTY: M_AXI_RVALID - 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 154
WARNING:EDK:4131 - IPNAME: ps7_usb_0, PROPERTY: M_AXI_RREADY - 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 155
WARNING:EDK:4131 - IPNAME: ps7_usb_0, PROPERTY: M_AXI - 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 73
WARNING:EDK:4131 - IPNAME: ps7_qspi_0, PROPERTY: SCK_I - Failure in evaluting
ISVALID expresion "(C_USE_STARTUP==0)" -
/opt/Xilinx/14.7/ISE_DS/ISE/data/zynqconfig/ps7_internals/pcores/ps7_qspi_v1_
00_a/data/ps7_qspi_v2_1_0.mpd line 102
WARNING:EDK:4131 - IPNAME: ps7_qspi_0, PROPERTY: SCK_O - Failure in evaluting
ISVALID expresion "(C_USE_STARTUP==0)" -
/opt/Xilinx/14.7/ISE_DS/ISE/data/zynqconfig/ps7_internals/pcores/ps7_qspi_v1_
00_a/data/ps7_qspi_v2_1_0.mpd line 103
WARNING:EDK:4131 - IPNAME: ps7_qspi_0, PROPERTY: SCK_T - Failure in evaluting
ISVALID expresion "(C_USE_STARTUP==0)" -
/opt/Xilinx/14.7/ISE_DS/ISE/data/zynqconfig/ps7_internals/pcores/ps7_qspi_v1_
00_a/data/ps7_qspi_v2_1_0.mpd line 104
WARNING:EDK:4131 - IPNAME: ps7_qspi_0, PROPERTY: SCK - Failure in evaluting
ISVALID expresion "(C_USE_STARTUP==0)" -
/opt/Xilinx/14.7/ISE_DS/ISE/data/zynqconfig/ps7_internals/pcores/ps7_qspi_v1_
00_a/data/ps7_qspi_v2_1_0.mpd line 122
Overriding IP level properties ...
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
0_a/data/ps7_usb_v2_1_0.mpd line 146
WARNING:EDK:4131 - IPNAME: ps7_usb_0, PROPERTY: M_AXI_ARLOCK - 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 147
WARNING:EDK:4131 - IPNAME: ps7_usb_0, PROPERTY: M_AXI_ARVALID - 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 148
WARNING:EDK:4131 - IPNAME: ps7_usb_0, PROPERTY: M_AXI_ARREADY - 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 149
WARNING:EDK:4131 - IPNAME: ps7_usb_0, PROPERTY: M_AXI_RID - 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 150
WARNING:EDK:4131 - IPNAME: ps7_usb_0, PROPERTY: M_AXI_RDATA - 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 151
WARNING:EDK:4131 - IPNAME: ps7_usb_0, PROPERTY: M_AXI_RRESP - 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 152
WARNING:EDK:4131 - IPNAME: ps7_usb_0, PROPERTY: M_AXI_RLAST - 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 153
WARNING:EDK:4131 - IPNAME: ps7_usb_0, PROPERTY: M_AXI_RVALID - 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 154
WARNING:EDK:4131 - IPNAME: ps7_usb_0, PROPERTY: M_AXI_RREADY - 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 155
WARNING:EDK:4131 - IPNAME: ps7_usb_0, PROPERTY: M_AXI - 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 73
WARNING:EDK:4131 - IPNAME: ps7_qspi_0, PROPERTY: SCK_I - Failure in evaluting
ISVALID expresion "(C_USE_STARTUP==0)" -
/opt/Xilinx/14.7/ISE_DS/ISE/data/zynqconfig/ps7_internals/pcores/ps7_qspi_v1_
00_a/data/ps7_qspi_v2_1_0.mpd line 102
WARNING:EDK:4131 - IPNAME: ps7_qspi_0, PROPERTY: SCK_O - Failure in evaluting
ISVALID expresion "(C_USE_STARTUP==0)" -
/opt/Xilinx/14.7/ISE_DS/ISE/data/zynqconfig/ps7_internals/pcores/ps7_qspi_v1_
00_a/data/ps7_qspi_v2_1_0.mpd line 103
WARNING:EDK:4131 - IPNAME: ps7_qspi_0, PROPERTY: SCK_T - Failure in evaluting
ISVALID expresion "(C_USE_STARTUP==0)" -
/opt/Xilinx/14.7/ISE_DS/ISE/data/zynqconfig/ps7_internals/pcores/ps7_qspi_v1_
00_a/data/ps7_qspi_v2_1_0.mpd line 104
WARNING:EDK:4131 - IPNAME: ps7_qspi_0, PROPERTY: SCK - Failure in evaluting
ISVALID expresion "(C_USE_STARTUP==0)" -
/opt/Xilinx/14.7/ISE_DS/ISE/data/zynqconfig/ps7_internals/pcores/ps7_qspi_v1_
00_a/data/ps7_qspi_v2_1_0.mpd line 122
Computing clock values...
Performing IP level DRCs on properties...
Running DRC Tcl procedures for OPTION IPLEVEL_DRC_PROC...
Address Map for Processor ps7_cortexa9_0
(0000000000-0x0002ffff) ps7_ram_0 ps7_axi_interconnect_0
(0x00100000-0x1fffffff) ps7_ddr_0 ps7_axi_interconnect_0
(0x41200000-0x4120ffff)
BTNs_4Bits_TRI_IO ps7_axi_interconnect_0->axi_interconnect_1
(0x42800000-0x4280ffff) axi_timer_0 ps7_axi_interconnect_0->axi_interconnect_1
(0x76e00000-0x76e0ffff)
pwm_recorder_5 ps7_axi_interconnect_0->axi_interconnect_1
(0x76e20000-0x76e2ffff)
pwm_recorder_4 ps7_axi_interconnect_0->axi_interconnect_1
(0x76e40000-0x76e4ffff)
pwm_recorder_3 ps7_axi_interconnect_0->axi_interconnect_1
(0x76e60000-0x76e6ffff)
pwm_recorder_2 ps7_axi_interconnect_0->axi_interconnect_1
(0x76e80000-0x76e8ffff)
pwm_recorder_1 ps7_axi_interconnect_0->axi_interconnect_1
(0x76ea0000-0x76eaffff)
pwm_recorder_0 ps7_axi_interconnect_0->axi_interconnect_1
(0x79400000-0x7940ffff)
pwm_signal_out_wkillswitch_3 ps7_axi_interconnect_0->axi_interconnect_1
(0x79420000-0x7942ffff)
pwm_signal_out_wkillswitch_2 ps7_axi_interconnect_0->axi_interconnect_1
(0x79440000-0x7944ffff)
pwm_signal_out_wkillswitch_1 ps7_axi_interconnect_0->axi_interconnect_1
(0x79460000-0x7946ffff)
pwm_signal_out_wkillswitch_0 ps7_axi_interconnect_0->axi_interconnect_1
(0xe0000000-0xe0000fff) ps7_uart_0 ps7_axi_interconnect_0
(0xe0001000-0xe0001fff) ps7_uart_1 ps7_axi_interconnect_0
(0xe0002000-0xe0002fff) ps7_usb_0 ps7_axi_interconnect_0
(0xe0004000-0xe0004fff) ps7_i2c_0 ps7_axi_interconnect_0
(0xe000a000-0xe000afff) ps7_gpio_0 ps7_axi_interconnect_0
(0xe000b000-0xe000bfff) ps7_ethernet_0 ps7_axi_interconnect_0
(0xe000d000-0xe000dfff) ps7_qspi_0 ps7_axi_interconnect_0
(0xe0100000-0xe0100fff) ps7_sd_0 ps7_axi_interconnect_0
(0xe0200000-0xe0200fff) ps7_iop_bus_config_0 ps7_axi_interconnect_0
(0xf8000000-0xf8000fff) ps7_slcr_0 ps7_axi_interconnect_0
(0xf8003000-0xf8003fff) ps7_dma_s ps7_axi_interconnect_0
(0xf8004000-0xf8004fff) ps7_dma_ns ps7_axi_interconnect_0
(0xf8006000-0xf8006fff) ps7_ddrc_0 ps7_axi_interconnect_0
(0xf8007000-0xf80070ff) ps7_dev_cfg_0 ps7_axi_interconnect_0
(0xf8007100-0xf8007120) ps7_xadc_0 ps7_axi_interconnect_0
(0xf8008000-0xf8008fff) ps7_afi_0 ps7_axi_interconnect_0
(0xf8009000-0xf8009fff) ps7_afi_1 ps7_axi_interconnect_0
(0xf800a000-0xf800afff) ps7_afi_2 ps7_axi_interconnect_0
(0xf800b000-0xf800bfff) ps7_afi_3 ps7_axi_interconnect_0
(0xf800c000-0xf800cfff) ps7_ocmc_0 ps7_axi_interconnect_0
(0xf8800000-0xf88fffff) ps7_coresight_comp_0 ps7_axi_interconnect_0
(0xf8900000-0xf89fffff) ps7_gpv_0 ps7_axi_interconnect_0
(0xf8f00000-0xf8f000fc) ps7_scuc_0 ps7_axi_interconnect_0
(0xf8f00100-0xf8f001ff) ps7_scugic_0 ps7_axi_interconnect_0
(0xf8f00200-0xf8f002ff) ps7_globaltimer_0 ps7_axi_interconnect_0
(0xf8f00600-0xf8f0061f) ps7_scutimer_0 ps7_axi_interconnect_0
(0xf8f00620-0xf8f006ff) ps7_scuwdt_0 ps7_axi_interconnect_0
(0xf8f01000-0xf8f01fff) ps7_intc_dist_0 ps7_axi_interconnect_0
(0xf8f02000-0xf8f02fff) ps7_l2cachec_0 ps7_axi_interconnect_0
(0xfc000000-0xfcffffff) ps7_qspi_linear_0 ps7_axi_interconnect_0
(0xffff0000-0xfffffdff) ps7_ram_1 ps7_axi_interconnect_0
Address Map for Processor ps7_cortexa9_1
(0000000000-0x0002ffff) ps7_ram_0 ps7_axi_interconnect_0
(0x00100000-0x1fffffff) ps7_ddr_0 ps7_axi_interconnect_0
(0x41200000-0x4120ffff)
BTNs_4Bits_TRI_IO ps7_axi_interconnect_0->axi_interconnect_1
(0x42800000-0x4280ffff) axi_timer_0 ps7_axi_interconnect_0->axi_interconnect_1
(0x76e00000-0x76e0ffff)
pwm_recorder_5 ps7_axi_interconnect_0->axi_interconnect_1
(0x76e20000-0x76e2ffff)
pwm_recorder_4 ps7_axi_interconnect_0->axi_interconnect_1
(0x76e40000-0x76e4ffff)
pwm_recorder_3 ps7_axi_interconnect_0->axi_interconnect_1
(0x76e60000-0x76e6ffff)
pwm_recorder_2 ps7_axi_interconnect_0->axi_interconnect_1
(0x76e80000-0x76e8ffff)
pwm_recorder_1 ps7_axi_interconnect_0->axi_interconnect_1
(0x76ea0000-0x76eaffff)
pwm_recorder_0 ps7_axi_interconnect_0->axi_interconnect_1
(0x79400000-0x7940ffff)
pwm_signal_out_wkillswitch_3 ps7_axi_interconnect_0->axi_interconnect_1
(0x79420000-0x7942ffff)
pwm_signal_out_wkillswitch_2 ps7_axi_interconnect_0->axi_interconnect_1
(0x79440000-0x7944ffff)
pwm_signal_out_wkillswitch_1 ps7_axi_interconnect_0->axi_interconnect_1
(0x79460000-0x7946ffff)
pwm_signal_out_wkillswitch_0 ps7_axi_interconnect_0->axi_interconnect_1
(0xe0000000-0xe0000fff) ps7_uart_0 ps7_axi_interconnect_0
(0xe0001000-0xe0001fff) ps7_uart_1 ps7_axi_interconnect_0
(0xe0002000-0xe0002fff) ps7_usb_0 ps7_axi_interconnect_0
(0xe0004000-0xe0004fff) ps7_i2c_0 ps7_axi_interconnect_0
(0xe000a000-0xe000afff) ps7_gpio_0 ps7_axi_interconnect_0
(0xe000b000-0xe000bfff) ps7_ethernet_0 ps7_axi_interconnect_0
(0xe000d000-0xe000dfff) ps7_qspi_0 ps7_axi_interconnect_0
(0xe0100000-0xe0100fff) ps7_sd_0 ps7_axi_interconnect_0
(0xe0200000-0xe0200fff) ps7_iop_bus_config_0 ps7_axi_interconnect_0
(0xf8000000-0xf8000fff) ps7_slcr_0 ps7_axi_interconnect_0
(0xf8003000-0xf8003fff) ps7_dma_s ps7_axi_interconnect_0
(0xf8004000-0xf8004fff) ps7_dma_ns ps7_axi_interconnect_0
(0xf8006000-0xf8006fff) ps7_ddrc_0 ps7_axi_interconnect_0
(0xf8007000-0xf80070ff) ps7_dev_cfg_0 ps7_axi_interconnect_0
(0xf8007100-0xf8007120) ps7_xadc_0 ps7_axi_interconnect_0
(0xf8008000-0xf8008fff) ps7_afi_0 ps7_axi_interconnect_0
(0xf8009000-0xf8009fff) ps7_afi_1 ps7_axi_interconnect_0
(0xf800a000-0xf800afff) ps7_afi_2 ps7_axi_interconnect_0
(0xf800b000-0xf800bfff) ps7_afi_3 ps7_axi_interconnect_0
(0xf800c000-0xf800cfff) ps7_ocmc_0 ps7_axi_interconnect_0
(0xf8800000-0xf88fffff) ps7_coresight_comp_0 ps7_axi_interconnect_0
(0xf8900000-0xf89fffff) ps7_gpv_0 ps7_axi_interconnect_0
(0xf8f00000-0xf8f000fc) ps7_scuc_0 ps7_axi_interconnect_0
(0xf8f00100-0xf8f001ff) ps7_scugic_0 ps7_axi_interconnect_0
(0xf8f00200-0xf8f002ff) ps7_globaltimer_0 ps7_axi_interconnect_0
(0xf8f00600-0xf8f0061f) ps7_scutimer_0 ps7_axi_interconnect_0
(0xf8f00620-0xf8f006ff) ps7_scuwdt_0 ps7_axi_interconnect_0
(0xf8f01000-0xf8f01fff) ps7_intc_dist_0 ps7_axi_interconnect_0
(0xf8f02000-0xf8f02fff) ps7_l2cachec_0 ps7_axi_interconnect_0
(0xfc000000-0xfcffffff) ps7_qspi_linear_0 ps7_axi_interconnect_0
(0xffff0000-0xfffffdff) ps7_ram_1 ps7_axi_interconnect_0
Checking platform address map ...
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
Conversion to XML complete.
xdsgen -inp system.xmp -report SDK/SDK_Export/hw/system.html -make_docs_local
Release 14.7 - xdsgen 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:878 - Could not find IP doc
http://www.xilinx.com/cgi-bin/docs/ipdoc?c=clock_generator;v=v4_03_a;d=clock_
generator.pdf
WARNING:EDK:878 - Could not find IP doc
http://www.xilinx.com/cgi-bin/docs/ipdoc?c=proc_sys_reset;v=v3_00_a;d=proc_sy
s_reset.pdf
WARNING:EDK:878 - Could not find IP doc
http://www.xilinx.com/cgi-bin/docs/ipdoc?c=axi_interconnect;v=v1_06_a;d=ds768
_axi_interconnect.pdf
WARNING:EDK:878 - Could not find IP doc
http://www.xilinx.com/cgi-bin/docs/ipdoc?c=axi_gpio;v=v1_01_b;d=ds744_axi_gpi
o.pdf
WARNING:EDK:878 - Could not find IP doc
http://www.xilinx.com/cgi-bin/docs/ipdoc?c=axi_timer;v=v1_03_a;d=axi_timer_ds
764.pdf
Generated Block Diagram.
Rasterizing clock_generator_0.jpg.....
Rasterizing reset_0.jpg.....
Rasterizing processing_system7_0.jpg.....
Rasterizing pwm_recorder_0.jpg.....
Rasterizing axi_interconnect_1.jpg.....
Rasterizing pwm_recorder_1.jpg.....
Rasterizing pwm_recorder_2.jpg.....
Rasterizing pwm_recorder_3.jpg.....
Rasterizing pwm_recorder_4.jpg.....
Rasterizing pwm_recorder_5.jpg.....
Rasterizing BTNs_4Bits_TRI_IO.jpg.....
Rasterizing pwm_signal_out_wkillswitch_0.jpg.....
Rasterizing pwm_signal_out_wkillswitch_1.jpg.....
Rasterizing pwm_signal_out_wkillswitch_2.jpg.....
Rasterizing pwm_signal_out_wkillswitch_3.jpg.....
Rasterizing axi_timer_0.jpg.....
Rasterizing system_blkd.jpg.....
Report generated.
Report generation completed.
****************************************************
Creating system netlist for hardware specification..
****************************************************
platgen -p xc7z010clg400-1 -lang vhdl -intstyle default -msg __xps/ise/xmsgprops.lst system.mhs
Release 14.7 - platgen Xilinx EDK 14.7 Build EDK_P.20131013
(lin64)
Copyright (c) 1995-2013 Xilinx, Inc. All rights reserved.
Command Line: platgen -p xc7z010clg400-1 -lang vhdl -intstyle default -msg
__xps/ise/xmsgprops.lst system.mhs
WARNING:EDK - 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:71 - If a license for part 'xc7z010' is available, it will be
possible to use 'XPS_TDP' instead of 'XPS'.
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.
Parse /local/ucart/microcart1630/tasks/Quad/system/system.mhs ...
Read MPD definitions ...
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
Overriding IP level properties ...
INFO:EDK:4130 - IPNAME: processing_system7, INSTANCE:processing_system7_0 - tcl
is overriding PARAMETER C_PACKAGE_NAME value to clg400 -
/opt/Xilinx/14.7/ISE_DS/EDK/hw/XilinxProcessorIPLib/pcores/processing_system7
_v4_03_a/data/processing_system7_v2_1_0.mpd line 185
INFO:EDK:4130 - IPNAME: processing_system7, INSTANCE:processing_system7_0 - tcl
is overriding PARAMETER C_S_AXI_HP0_HIGHADDR value to 0x1FFFFFFF -
/opt/Xilinx/14.7/ISE_DS/EDK/hw/XilinxProcessorIPLib/pcores/processing_system7
_v4_03_a/data/processing_system7_v2_1_0.mpd line 300
INFO:EDK:4130 - IPNAME: processing_system7, INSTANCE:processing_system7_0 - tcl
is overriding PARAMETER C_S_AXI_HP1_HIGHADDR value to 0x1FFFFFFF -
/opt/Xilinx/14.7/ISE_DS/EDK/hw/XilinxProcessorIPLib/pcores/processing_system7
_v4_03_a/data/processing_system7_v2_1_0.mpd line 304
INFO:EDK:4130 - IPNAME: processing_system7, INSTANCE:processing_system7_0 - tcl
is overriding PARAMETER C_S_AXI_HP2_HIGHADDR value to 0x1FFFFFFF -
/opt/Xilinx/14.7/ISE_DS/EDK/hw/XilinxProcessorIPLib/pcores/processing_system7
_v4_03_a/data/processing_system7_v2_1_0.mpd line 308
INFO:EDK:4130 - IPNAME: processing_system7, INSTANCE:processing_system7_0 - tcl
is overriding PARAMETER C_S_AXI_HP3_HIGHADDR value to 0x1FFFFFFF -
/opt/Xilinx/14.7/ISE_DS/EDK/hw/XilinxProcessorIPLib/pcores/processing_system7
_v4_03_a/data/processing_system7_v2_1_0.mpd line 312
INFO:EDK:4130 - IPNAME: processing_system7, INSTANCE:processing_system7_0 - tcl
is overriding PARAMETER C_NUM_F2P_INTR_INPUTS value to 1 -
/opt/Xilinx/14.7/ISE_DS/EDK/hw/XilinxProcessorIPLib/pcores/processing_system7
_v4_03_a/data/processing_system7_v2_1_0.mpd line 319
INFO:EDK:4130 - IPNAME: axi_interconnect, INSTANCE:axi_interconnect_1 - tcl is
overriding PARAMETER C_BASEFAMILY value to zynq -
/opt/Xilinx/14.7/ISE_DS/EDK/hw/XilinxProcessorIPLib/pcores/axi_interconnect_v
1_06_a/data/axi_interconnect_v2_1_0.mpd line 81
Computing clock values...
INFO:EDK:1432 - Frequency for Top-Level Input Clock
'processing_system7_0_PS_CLK_pin' is not specified. Clock DRCs will not be
performed for IPs connected to that clock port, unless they are connected
through the clock generator IP.
Performing IP level DRCs on properties...
Running DRC Tcl procedures for OPTION IPLEVEL_DRC_PROC...
INFO:EDK - INFO: DDR Base and High address in current configuration is
0x00000000 and 0x1FFFFFFF respectively.
INFO:EDK - INFO: You can modify the DDR address range accessed by Programmable
Logic through the processing_system7 AXI slave interfaces. If MicroBlaze is a
master on processing_system7 AXI slave interfaces, please use the top half of
the address range (Base Address = 0x10000000; High Address = 0x1FFFFFFF). For
all other master, any subset of the DDR address can be used. See Xilinx
Answer 47167 for more information.
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_5 axi_interconnect_1
(0x76e20000-0x76e2ffff) pwm_recorder_4 axi_interconnect_1
(0x76e40000-0x76e4ffff) pwm_recorder_3 axi_interconnect_1
(0x76e60000-0x76e6ffff) pwm_recorder_2 axi_interconnect_1
(0x76e80000-0x76e8ffff) pwm_recorder_1 axi_interconnect_1
(0x76ea0000-0x76eaffff) pwm_recorder_0 axi_interconnect_1
(0x79400000-0x7940ffff) pwm_signal_out_wkillswitch_3 axi_interconnect_1
(0x79420000-0x7942ffff) pwm_signal_out_wkillswitch_2 axi_interconnect_1
(0x79440000-0x7944ffff) pwm_signal_out_wkillswitch_1 axi_interconnect_1
(0x79460000-0x7946ffff) pwm_signal_out_wkillswitch_0 axi_interconnect_1
Checking platform address map ...
Checking platform configuration ...
IPNAME: axi_interconnect, INSTANCE: axi_interconnect_1 - 1 master(s) : 12
slave(s)
Checking port drivers...
Performing Clock DRCs...
Performing Reset DRCs...
Overriding system level properties...
INFO:EDK:4130 - IPNAME: processing_system7, INSTANCE:processing_system7_0 - tcl
is overriding PARAMETER C_FCLK_CLK1_BUF value to FALSE -
/opt/Xilinx/14.7/ISE_DS/EDK/hw/XilinxProcessorIPLib/pcores/processing_system7
_v4_03_a/data/processing_system7_v2_1_0.mpd line 351
INFO:EDK:4130 - IPNAME: processing_system7, INSTANCE:processing_system7_0 - tcl
is overriding PARAMETER C_FCLK_CLK2_BUF value to FALSE -
/opt/Xilinx/14.7/ISE_DS/EDK/hw/XilinxProcessorIPLib/pcores/processing_system7
_v4_03_a/data/processing_system7_v2_1_0.mpd line 352
INFO:EDK:4130 - IPNAME: processing_system7, INSTANCE:processing_system7_0 - tcl
is overriding PARAMETER C_FCLK_CLK3_BUF value to FALSE -
/opt/Xilinx/14.7/ISE_DS/EDK/hw/XilinxProcessorIPLib/pcores/processing_system7
_v4_03_a/data/processing_system7_v2_1_0.mpd line 353
INFO: Setting C_RANGE_CHECK = ON for axi_interconnect axi_interconnect_1.
INFO:EDK:4130 - IPNAME: axi_interconnect, INSTANCE:axi_interconnect_1 - tcl is
overriding PARAMETER C_RANGE_CHECK value to 1 -
/opt/Xilinx/14.7/ISE_DS/EDK/hw/XilinxProcessorIPLib/pcores/axi_interconnect_v
1_06_a/data/axi_interconnect_v2_1_0.mpd line 149
Running system level update procedures...
Running UPDATE Tcl procedures for OPTION SYSLEVEL_UPDATE_PROC...
ZynqConfig: Terminated for tcl mode
Running system level DRCs...
Performing System level DRCs on properties...
Running DRC Tcl procedures for OPTION SYSLEVEL_DRC_PROC...
ZynqConfig: Terminated for tcl mode
Running UPDATE Tcl procedures for OPTION PLATGEN_SYSLEVEL_UPDATE_PROC...
ZynqConfig: Terminated for tcl mode
INFO: No asynchronous clock conversions in axi_interconnect axi_interconnect_1.
Modify defaults ...
Creating stub ...
Processing licensed instances ...
Completion time: 0.00 seconds
Creating hardware output directories ...
Managing hardware (BBD-specified) netlist files ...
Managing cache ...
Elaborating instances ...
IPNAME:clock_generator INSTANCE:clock_generator_0 -
/local/ucart/microcart1630/tasks/Quad/system/system.mhs line 43 - elaborating IP
ClkGen elaborate status: PASSED
----------------------------------------
----------------------------------------
Writing HDL for elaborated instances ...
Inserting wrapper level ...
Completion time: 0.00 seconds
Constructing platform-level connectivity ...
Completion time: 0.00 seconds
Writing (top-level) BMM ...
Writing (top-level and wrappers) HDL ...
Generating synthesis project file ...
Running XST synthesis ...
INFO:EDK:4211 - The following instances are synthesized with XST. The MPD option
IMP_NETLIST=TRUE indicates that a NGC file is to be produced using XST
synthesis. IMP_NETLIST=FALSE (default) instances are not synthesized.
INSTANCE:clock_generator_0 -
/local/ucart/microcart1630/tasks/Quad/system/system.mhs line 43 - Running XST
synthesis
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>
INSTANCE:reset_0 - /local/ucart/microcart1630/tasks/Quad/system/system.mhs line
50 - Running XST synthesis
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>
INSTANCE:processing_system7_0 -
/local/ucart/microcart1630/tasks/Quad/system/system.mhs line 56 - Running XST
synthesis
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>
INSTANCE:pwm_recorder_0 -
/local/ucart/microcart1630/tasks/Quad/system/system.mhs line 146 - Running XST
synthesis
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>
INSTANCE:axi_interconnect_1 -
/local/ucart/microcart1630/tasks/Quad/system/system.mhs line 156 - Running XST
synthesis
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>
INSTANCE:pwm_recorder_1 -
/local/ucart/microcart1630/tasks/Quad/system/system.mhs line 164 - Running XST
synthesis
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>
INSTANCE:pwm_recorder_2 -
/local/ucart/microcart1630/tasks/Quad/system/system.mhs line 174 - Running XST
synthesis
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>
INSTANCE:pwm_recorder_3 -
/local/ucart/microcart1630/tasks/Quad/system/system.mhs line 184 - Running XST
synthesis
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>
INSTANCE:pwm_recorder_4 -
/local/ucart/microcart1630/tasks/Quad/system/system.mhs line 194 - Running XST
synthesis
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>
INSTANCE:pwm_recorder_5 -
/local/ucart/microcart1630/tasks/Quad/system/system.mhs line 204 - Running XST
synthesis
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>
INSTANCE:btns_4bits_tri_io -
/local/ucart/microcart1630/tasks/Quad/system/system.mhs line 214 - Running XST
synthesis
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>
INSTANCE:pwm_signal_out_wkillswitch_0 -
/local/ucart/microcart1630/tasks/Quad/system/system.mhs line 226 - Running XST
synthesis
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>
INSTANCE:pwm_signal_out_wkillswitch_1 -
/local/ucart/microcart1630/tasks/Quad/system/system.mhs line 236 - Running XST
synthesis
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>
INSTANCE:pwm_signal_out_wkillswitch_2 -
/local/ucart/microcart1630/tasks/Quad/system/system.mhs line 246 - Running XST
synthesis
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>
INSTANCE:pwm_signal_out_wkillswitch_3 -
/local/ucart/microcart1630/tasks/Quad/system/system.mhs line 256 - Running XST
synthesis
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>
INSTANCE:axi_timer_0 - /local/ucart/microcart1630/tasks/Quad/system/system.mhs
line 266 - Running XST synthesis
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>
Running NGCBUILD ...
IPNAME:system_clock_generator_0_wrapper INSTANCE:clock_generator_0 -
/local/ucart/microcart1630/tasks/Quad/system/system.mhs line 43 - Running
NGCBUILD
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>
Command Line: /opt/Xilinx/14.7/ISE_DS/ISE/bin/lin64/unwrapped/ngcbuild -p
xc7z010clg400-1 -intstyle silent -i -sd .. system_clock_generator_0_wrapper.ngc
../system_clock_generator_0_wrapper
Reading NGO file
"/local/ucart/microcart1630/tasks/Quad/system/implementation/clock_generator_0_w
rapper/system_clock_generator_0_wrapper.ngc" ...
Partition Implementation Status
-------------------------------
No Partitions were found in this design.
-------------------------------
NGCBUILD Design Results Summary:
Number of errors: 0
Number of warnings: 0
Writing NGC file "../system_clock_generator_0_wrapper.ngc" ...
Total REAL time to NGCBUILD completion: 4 sec
Total CPU time to NGCBUILD completion: 4 sec
Writing NGCBUILD log file "../system_clock_generator_0_wrapper.blc"...
NGCBUILD done.
IPNAME:system_axi_interconnect_1_wrapper INSTANCE:axi_interconnect_1 -
/local/ucart/microcart1630/tasks/Quad/system/system.mhs line 156 - Running
NGCBUILD
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>
Command Line: /opt/Xilinx/14.7/ISE_DS/ISE/bin/lin64/unwrapped/ngcbuild -p
xc7z010clg400-1 -intstyle silent -i -sd .. system_axi_interconnect_1_wrapper.ngc
../system_axi_interconnect_1_wrapper
Reading NGO file
"/local/ucart/microcart1630/tasks/Quad/system/implementation/axi_interconnect_1_
wrapper/system_axi_interconnect_1_wrapper.ngc" ...
Partition Implementation Status
-------------------------------
No Partitions were found in this design.
-------------------------------
NGCBUILD Design Results Summary:
Number of errors: 0
Number of warnings: 0
Writing NGC file "../system_axi_interconnect_1_wrapper.ngc" ...
Total REAL time to NGCBUILD completion: 4 sec
Total CPU time to NGCBUILD completion: 4 sec
Writing NGCBUILD log file "../system_axi_interconnect_1_wrapper.blc"...
NGCBUILD done.
INFO:EDK:3509 - NCF files should not be modified as they will be regenerated.
If any constraint needs to be overridden, this should be done by modifying
the data/system.ucf file.
Rebuilding cache ...
Total run time: 218.00 seconds
Running synthesis...
bash -c "cd synthesis; ./synthesis.sh"
xst -ifn system_xst.scr -intstyle silent
Running XST synthesis ...
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>
XST completed
*********************************************
Running Xilinx Implementation tools..
*********************************************
xflow -wd implementation -p xc7z010clg400-1 -implement xflow.opt system.ngc
Release 14.7 - Xflow P.20131013 (lin64)
Copyright (c) 1995-2013 Xilinx, Inc. All rights reserved.
xflow -wd implementation -p xc7z010clg400-1 -implement xflow.opt system.ngc
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>
.... Copying flowfile /opt/Xilinx/14.7/ISE_DS/ISE/xilinx/data/fpga.flw into
working directory /local/ucart/microcart1630/tasks/Quad/system/implementation
Using Flow File:
/local/ucart/microcart1630/tasks/Quad/system/implementation/fpga.flw
Using Option File(s):
/local/ucart/microcart1630/tasks/Quad/system/implementation/xflow.opt
Creating Script File ...
#----------------------------------------------#
# Starting program ngdbuild
# ngdbuild -p xc7z010clg400-1 -nt timestamp -bm system.bmm
"/local/ucart/microcart1630/tasks/Quad/system/implementation/system.ngc" -uc
system.ucf system.ngd
#----------------------------------------------#
Release 14.7 - ngdbuild 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>
Command Line: /opt/Xilinx/14.7/ISE_DS/ISE/bin/lin64/unwrapped/ngdbuild -p
xc7z010clg400-1 -nt timestamp -bm system.bmm
/local/ucart/microcart1630/tasks/Quad/system/implementation/system.ngc -uc
system.ucf system.ngd
Reading NGO file
"/local/ucart/microcart1630/tasks/Quad/system/implementation/system.ngc" ...
Loading design module
"/local/ucart/microcart1630/tasks/Quad/system/implementation/system_btns_4bits_t
ri_io_wrapper.ngc"...
Loading design module
"/local/ucart/microcart1630/tasks/Quad/system/implementation/system_processing_s
ystem7_0_wrapper.ngc"...
Loading design module
"/local/ucart/microcart1630/tasks/Quad/system/implementation/system_pwm_recorder
_0_wrapper.ngc"...
Loading design module
"/local/ucart/microcart1630/tasks/Quad/system/implementation/system_pwm_recorder
_1_wrapper.ngc"...
Loading design module
"/local/ucart/microcart1630/tasks/Quad/system/implementation/system_pwm_recorder
_2_wrapper.ngc"...
Loading design module
"/local/ucart/microcart1630/tasks/Quad/system/implementation/system_pwm_recorder
_3_wrapper.ngc"...
Loading design module
"/local/ucart/microcart1630/tasks/Quad/system/implementation/system_pwm_recorder
_4_wrapper.ngc"...
Loading design module
"/local/ucart/microcart1630/tasks/Quad/system/implementation/system_pwm_recorder
_5_wrapper.ngc"...