Newer
Older

javey
committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Xilinx Platform Studio (XPS)
Xilinx EDK 14.7 Build EDK_P.20131013
Copyright (c) 1995-2012 Xilinx, Inc. All rights reserved.
Assigned Driver generic 1.00.a for instance processing_system7_0
processing_system7_0 has been added to the project
INFO:EDK:3901 - please connect bus interface, set up port and generate address manually
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
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
Assigned Driver generic 1.00.a for instance pwm_recorder_0
pwm_recorder_0 has been added to the project
WARNING:EDK:2137 - Peripheral pwm_recorder_0 is not accessible from any processor in the system. Check Bus Interface connections and address parameters.
Assigned Driver generic 1.00.a for instance axi_interconnect_1
Address Map for Processor processing_system7_0
Address Map for Processor processing_system7_0
(0x76e00000-0x76e0ffff) pwm_recorder_0 axi_interconnect_1
INFO:EDK - Do connection by refering to bus interface of a processing_system7_0 in design
INFO:EDK - Create new axi_interconnect IP instance axi_interconnect_1
INFO:EDK - Connect clock port M_AXI_GP0_ACLK to processing_system7_0_FCLK_CLK0
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: pwm_recorder_0
Assigned Driver generic 1.00.a for instance pwm_signal_out_wkillswitch_0
pwm_signal_out_wkillswitch_0 has been added to the project
WARNING:EDK:2137 - Peripheral pwm_signal_out_wkillswitch_0 is not accessible from any processor in the system. Check Bus Interface connections and address parameters.
Address Map for Processor processing_system7_0
(0x76e00000-0x76e0ffff) pwm_recorder_0 axi_interconnect_1
(0x79400000-0x7940ffff) pwm_signal_out_wkillswitch_0 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: pwm_signal_out_wkillswitch_0
Assigned Driver generic 1.00.a for instance pwm_recorder_1
pwm_recorder_1 has been added to the project
WARNING:EDK:2137 - Peripheral pwm_recorder_1 is not accessible from any processor in the system. Check Bus Interface connections and address parameters.
Address Map for Processor processing_system7_0
(0x76e00000-0x76e0ffff) pwm_recorder_0 axi_interconnect_1
(0x76e20000-0x76e2ffff) pwm_recorder_1 axi_interconnect_1
(0x79400000-0x7940ffff) pwm_signal_out_wkillswitch_0 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: pwm_recorder_1
Assigned Driver generic 1.00.a for instance pwm_recorder_2
pwm_recorder_2 has been added to the project
WARNING:EDK:2137 - Peripheral pwm_recorder_2 is not accessible from any processor in the system. Check Bus Interface connections and address parameters.
Address Map for Processor processing_system7_0
(0x76e00000-0x76e0ffff) pwm_recorder_0 axi_interconnect_1
(0x76e20000-0x76e2ffff) pwm_recorder_1 axi_interconnect_1
(0x76e40000-0x76e4ffff) pwm_recorder_2 axi_interconnect_1
(0x79400000-0x7940ffff) pwm_signal_out_wkillswitch_0 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: pwm_recorder_2
Assigned Driver generic 1.00.a for instance pwm_recorder_3
pwm_recorder_3 has been added to the project
WARNING:EDK:2137 - Peripheral pwm_recorder_3 is not accessible from any processor in the system. Check Bus Interface connections and address parameters.
Address Map for Processor processing_system7_0
(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
(0x79400000-0x7940ffff) pwm_signal_out_wkillswitch_0 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: pwm_recorder_3
Assigned Driver generic 1.00.a for instance pwm_recorder_4
pwm_recorder_4 has been added to the project
WARNING:EDK:2137 - Peripheral pwm_recorder_4 is not accessible from any processor in the system. Check Bus Interface connections and address parameters.
Address Map for Processor processing_system7_0
(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
(0x79400000-0x7940ffff) pwm_signal_out_wkillswitch_0 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: pwm_recorder_4
Assigned Driver generic 1.00.a for instance pwm_recorder_5
pwm_recorder_5 has been added to the project
WARNING:EDK:2137 - Peripheral pwm_recorder_5 is not accessible from any processor in the system. Check Bus Interface connections and address parameters.
Address Map for Processor processing_system7_0
(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
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: pwm_recorder_5
Assigned Driver generic 1.00.a for instance pwm_signal_out_wkillswitch_1
pwm_signal_out_wkillswitch_1 has been added to the project
WARNING:EDK:2137 - Peripheral pwm_signal_out_wkillswitch_1 is not accessible from any processor in the system. Check Bus Interface connections and address parameters.
Address Map for Processor processing_system7_0
(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
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: pwm_signal_out_wkillswitch_1
Assigned Driver generic 1.00.a for instance pwm_signal_out_wkillswitch_2
pwm_signal_out_wkillswitch_2 has been added to the project
WARNING:EDK:2137 - Peripheral pwm_signal_out_wkillswitch_2 is not accessible from any processor in the system. Check Bus Interface connections and address parameters.
Address Map for Processor processing_system7_0
(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
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: pwm_signal_out_wkillswitch_2
Assigned Driver generic 1.00.a for instance pwm_signal_out_wkillswitch_3
pwm_signal_out_wkillswitch_3 has been added to the project
WARNING:EDK:2137 - Peripheral pwm_signal_out_wkillswitch_3 is not accessible from any processor in the system. Check Bus Interface connections and address parameters.
Address Map for Processor processing_system7_0
(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: pwm_signal_out_wkillswitch_3
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/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>
The project's MHS file has changed on disk.
WARNING:EDK:4092 - IPNAME: clock_generator, INSTANCE: clock_generator_0 - Pre-Production version not verified on hardware for architecture 'zynq' - /local/ucart/microcart_may16/tasks/Quad/system/system.mhs line 30
WARNING:EDK:4092 - IPNAME: clock_generator, INSTANCE: clock_generator_0 - Pre-Production version not verified on hardware for architecture 'zynq' - /local/ucart/microcart_may16/tasks/Quad/system/system.mhs line 30
WARNING:EDK:4092 - IPNAME: clock_generator, INSTANCE: clock_generator_0 - Pre-Production version not verified on hardware for architecture 'zynq' - /local/ucart/microcart_may16/tasks/Quad/system/system.mhs line 30
The project's MHS file has changed on disk.
WARNING:EDK:4092 - IPNAME: clock_generator, INSTANCE: clock_generator_0 - Pre-Production version not verified on hardware for architecture 'zynq' - /local/ucart/microcart_may16/tasks/Quad/system/system.mhs line 31
WARNING:EDK:4092 - IPNAME: clock_generator, INSTANCE: clock_generator_0 - Pre-Production version not verified on hardware for architecture 'zynq' - /local/ucart/microcart_may16/tasks/Quad/system/system.mhs line 31
WARNING:EDK:4092 - IPNAME: clock_generator, INSTANCE: clock_generator_0 - Pre-Production version not verified on hardware for architecture 'zynq' - /local/ucart/microcart_may16/tasks/Quad/system/system.mhs line 31
Make instance pwm_signal_out_wkillswitch_0 port pwm_out_sm external with net as port name
Instance pwm_signal_out_wkillswitch_0 port pwm_out_sm connector undefined, using pwm_signal_out_wkillswitch_0_pwm_out_sm
Make instance pwm_signal_out_wkillswitch_1 port pwm_out_sm external with net as port name
Instance pwm_signal_out_wkillswitch_1 port pwm_out_sm connector undefined, using pwm_signal_out_wkillswitch_1_pwm_out_sm
Make instance pwm_signal_out_wkillswitch_2 port pwm_out_sm external with net as port name
Instance pwm_signal_out_wkillswitch_2 port pwm_out_sm connector undefined, using pwm_signal_out_wkillswitch_2_pwm_out_sm
Make instance pwm_signal_out_wkillswitch_3 port pwm_out_sm external with net as port name
Instance pwm_signal_out_wkillswitch_3 port pwm_out_sm connector undefined, using pwm_signal_out_wkillswitch_3_pwm_out_sm
The project's MHS file has changed on disk.
WARNING:EDK:4092 - IPNAME: clock_generator, INSTANCE: clock_generator_0 - Pre-Production version not verified on hardware for architecture 'zynq' - /local/ucart/microcart_may16/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/microcart_may16/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/microcart_may16/tasks/Quad/system/system.mhs line 43
The project's MHS file has changed on disk.
WARNING:EDK:4092 - IPNAME: clock_generator, INSTANCE: clock_generator_0 - Pre-Production version not verified on hardware for architecture 'zynq' - /local/ucart/microcart_may16/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/microcart_may16/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/microcart_may16/tasks/Quad/system/system.mhs line 43
The project's MHS file has changed on disk.
WARNING:EDK:4092 - IPNAME: clock_generator, INSTANCE: clock_generator_0 - Pre-Production version not verified on hardware for architecture 'zynq' - /local/ucart/microcart_may16/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/microcart_may16/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/microcart_may16/tasks/Quad/system/system.mhs line 43
Assigned Driver gpio 3.01.a for instance axi_gpio_0
axi_gpio_0 has been added to the project
ERROR:EDK:4125 - IPNAME: axi_gpio, INSTANCE: axi_gpio_0, PARAMETER: C_BASEADDR - ASSIGNMENT=REQUIRE is defined in the MPD. You must specify a value in the MHS.
ERROR:EDK:4125 - IPNAME: axi_gpio, INSTANCE: axi_gpio_0, PARAMETER: C_HIGHADDR - ASSIGNMENT=REQUIRE is defined in the MPD. You must specify a value in the MHS.
WARNING:EDK:2137 - Peripheral axi_gpio_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
(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: BTNs_4Bits_TRI_IO
The project's MHS file has changed on disk.
WARNING:EDK:4092 - IPNAME: clock_generator, INSTANCE: clock_generator_0 - Pre-Production version not verified on hardware for architecture 'zynq' - /local/ucart/microcart_may16/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/microcart_may16/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/microcart_may16/tasks/Quad/system/system.mhs line 43
The project's MHS file has changed on disk.
WARNING:EDK:4092 - IPNAME: clock_generator, INSTANCE: clock_generator_0 - Pre-Production version not verified on hardware for architecture 'zynq' - /local/ucart/microcart_may16/tasks/Quad/system/system.mhs line 42
WARNING:EDK:4092 - IPNAME: clock_generator, INSTANCE: clock_generator_0 - Pre-Production version not verified on hardware for architecture 'zynq' - /local/ucart/microcart_may16/tasks/Quad/system/system.mhs line 42
WARNING:EDK:4092 - IPNAME: clock_generator, INSTANCE: clock_generator_0 - Pre-Production version not verified on hardware for architecture 'zynq' - /local/ucart/microcart_may16/tasks/Quad/system/system.mhs line 42
Make instance BTNs_4Bits_TRI_IO port GPIO_IO_I external with net as port name
Instance BTNs_4Bits_TRI_IO port GPIO_IO_I connector undefined, using BTNs_4Bits_TRI_IO_GPIO_IO_I
The project's MHS file has changed on disk.
WARNING:EDK:4092 - IPNAME: clock_generator, INSTANCE: clock_generator_0 - Pre-Production version not verified on hardware for architecture 'zynq' - /local/ucart/microcart_may16/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/microcart_may16/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/microcart_may16/tasks/Quad/system/system.mhs line 43
The project's MHS file has changed on disk.
WARNING:EDK:4092 - IPNAME: clock_generator, INSTANCE: clock_generator_0 - Pre-Production version not verified on hardware for architecture 'zynq' - /local/ucart/microcart_may16/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/microcart_may16/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/microcart_may16/tasks/Quad/system/system.mhs line 43
The project's MHS file has changed on disk.
WARNING:EDK:4092 - IPNAME: clock_generator, INSTANCE: clock_generator_0 - Pre-Production version not verified on hardware for architecture 'zynq' - /local/ucart/microcart_may16/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/microcart_may16/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/microcart_may16/tasks/Quad/system/system.mhs line 43
The project's MHS file has changed on disk.
WARNING:EDK:4092 - IPNAME: clock_generator, INSTANCE: clock_generator_0 - Pre-Production version not verified on hardware for architecture 'zynq' - /local/ucart/microcart_may16/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/microcart_may16/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/microcart_may16/tasks/Quad/system/system.mhs line 43
The project's MHS file has changed on disk.
WARNING:EDK:4092 - IPNAME: clock_generator, INSTANCE: clock_generator_0 - Pre-Production version not verified on hardware for architecture 'zynq' - /local/ucart/microcart_may16/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/microcart_may16/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/microcart_may16/tasks/Quad/system/system.mhs line 43
Running DRCs...
Overriding IP level properties ...
Computing clock values...
Performing IP level DRCs on properties...
Running DRC Tcl procedures for OPTION IPLEVEL_DRC_PROC...
Address Map for Processor processing_system7_0
(0x41200000-0x4120ffff) BTNs_4Bits_TRI_IO 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
Checking platform address map ...
Checking platform configuration ...
IPNAME: axi_interconnect, INSTANCE: axi_interconnect_1 - 1 master(s) : 11 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_v1_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...
Running system level DRCs...
Performing System level DRCs on properties...
Running DRC Tcl procedures for OPTION SYSLEVEL_DRC_PROC...
ERROR:EDK:3900 - issued from TCL procedure "zynqconfig_do" line 34
processing_system7_0 (processing_system7) - MHS file editing for Zynq related parameters is not allowed. Please use Zynq tab in XPS for PS configuration.
Value of parameter C_EN_EMIO_I2C0 (0) in MHS conflicts with the setting in Zynq tab. Value of C_EN_EMIO_I2C0 should be 1
Running DRCs...
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_v1_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
(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
Checking platform address map ...
Checking platform configuration ...
IPNAME: axi_interconnect, INSTANCE: axi_interconnect_1 - 1 master(s) : 11 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_v1_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...
Running system level DRCs...
Performing System level DRCs on properties...
Running DRC Tcl procedures for OPTION SYSLEVEL_DRC_PROC...
Done!
********************************************************************************
At Local date and time: Wed Oct 14 19:55:51 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/microcart_may16/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/microcart_may16/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/microcart_may16/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/microcart_may16/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
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
(0x76e00000-0x76e0ffff)
pwm_recorder_0 ps7_axi_interconnect_0->axi_interconnect_1
(0x76e20000-0x76e2ffff)
pwm_recorder_1 ps7_axi_interconnect_0->axi_interconnect_1
(0x76e40000-0x76e4ffff)
pwm_recorder_2 ps7_axi_interconnect_0->axi_interconnect_1
(0x76e60000-0x76e6ffff)
pwm_recorder_3 ps7_axi_interconnect_0->axi_interconnect_1
(0x76e80000-0x76e8ffff)
pwm_recorder_4 ps7_axi_interconnect_0->axi_interconnect_1
(0x76ea0000-0x76eaffff)
pwm_recorder_5 ps7_axi_interconnect_0->axi_interconnect_1
(0x79400000-0x7940ffff)
pwm_signal_out_wkillswitch_0 ps7_axi_interconnect_0->axi_interconnect_1
(0x79420000-0x7942ffff)
pwm_signal_out_wkillswitch_1 ps7_axi_interconnect_0->axi_interconnect_1
(0x79440000-0x7944ffff)
pwm_signal_out_wkillswitch_2 ps7_axi_interconnect_0->axi_interconnect_1
(0x79460000-0x7946ffff)
pwm_signal_out_wkillswitch_3 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
(0x76e00000-0x76e0ffff)
pwm_recorder_0 ps7_axi_interconnect_0->axi_interconnect_1
(0x76e20000-0x76e2ffff)
pwm_recorder_1 ps7_axi_interconnect_0->axi_interconnect_1
(0x76e40000-0x76e4ffff)
pwm_recorder_2 ps7_axi_interconnect_0->axi_interconnect_1
(0x76e60000-0x76e6ffff)
pwm_recorder_3 ps7_axi_interconnect_0->axi_interconnect_1
(0x76e80000-0x76e8ffff)
pwm_recorder_4 ps7_axi_interconnect_0->axi_interconnect_1
(0x76ea0000-0x76eaffff)
pwm_recorder_5 ps7_axi_interconnect_0->axi_interconnect_1
(0x79400000-0x7940ffff)
pwm_signal_out_wkillswitch_0 ps7_axi_interconnect_0->axi_interconnect_1
(0x79420000-0x7942ffff)
pwm_signal_out_wkillswitch_1 ps7_axi_interconnect_0->axi_interconnect_1
(0x79440000-0x7944ffff)
pwm_signal_out_wkillswitch_2 ps7_axi_interconnect_0->axi_interconnect_1
(0x79460000-0x7946ffff)
pwm_signal_out_wkillswitch_3 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