-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsystem.log
9528 lines (9394 loc) · 639 KB
/
system.log
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
WARNING:EDK:1557 - IPNAME:ppc440mc_ddr2 INSTANCE:DDR2_SDRAM - /home/aalonso/workspace/ppc44x/xlnx/xilinx-ml507/system.mhs line 205 - PARAMETER C_DQ_BITS has value 8 specified in MHS, but tcl is overriding the value to 6
Generating Block Diagram to Buffer
Generated Block Diagram SVG
Assigning default drivers to peripherals
Assigned Driver generic 1.00.a for instance plb_v46_0
At Local date and time: Fri Mar 12 17:26:46 2010
make -f system.make libs started...
*********************************************
Creating software libraries...
*********************************************
libgen -mhs system.mhs -p xc5vfx70tff1136-1 -msg __xps/ise/xmsgprops.lst system.mss
libgen
Xilinx EDK 11.4 Build EDK_LS4.68
Copyright (c) 1995-2009 Xilinx, Inc. All rights reserved.
Command Line: libgen -mhs system.mhs -p xc5vfx70tff1136-1 -msg
__xps/ise/xmsgprops.lst system.mss
Release 11.4 - psf2Edward EDK_LS4.68 (lin64)
Copyright (c) 1995-2009 Xilinx, Inc. All rights reserved.
WARNING:EDK:1557 - IPNAME:ppc440mc_ddr2 INSTANCE:DDR2_SDRAM -
/home/aalonso/workspace/ppc44x/xlnx/xilinx-ml507/system.mhs line 199 -
PARAMETER C_DQ_BITS has value 8 specified in MHS, but tcl is overriding the
value to 6
Checking platform configuration ...
IPNAME:plb_v46 INSTANCE:plb_v46_0 -
/home/aalonso/workspace/ppc44x/xlnx/xilinx-ml507/system.mhs line 97 - 1
master(s) : 13 slave(s)
Checking port drivers...
WARNING:EDK:2098 - PORT:HostMiimRdy CONNECTOR:host_mii_rdy -
/opt/Xilinx/11.4/EDK/hw/XilinxProcessorIPLib/pcores/xps_ll_temac_v2_03_a/data
/xps_ll_temac_v2_1_0.mpd line 264 - No driver found. Port will be driven to
GND!
WARNING:EDK:2098 - PORT:HostRdData CONNECTOR:host_rd_data -
/opt/Xilinx/11.4/EDK/hw/XilinxProcessorIPLib/pcores/xps_ll_temac_v2_03_a/data
/xps_ll_temac_v2_1_0.mpd line 265 - No driver found. Port will be driven to
GND!
WARNING:EDK:2099 - PORT:HostMiimSel CONNECTOR:host_mii_sel -
/opt/Xilinx/11.4/EDK/hw/XilinxProcessorIPLib/pcores/xps_ll_temac_v2_03_a/data
/xps_ll_temac_v2_1_0.mpd line 266 - floating connection!
WARNING:EDK:2099 - PORT:HostReq CONNECTOR:host_req -
/opt/Xilinx/11.4/EDK/hw/XilinxProcessorIPLib/pcores/xps_ll_temac_v2_03_a/data
/xps_ll_temac_v2_1_0.mpd line 267 - floating connection!
WARNING:EDK:2099 - PORT:HostAddr CONNECTOR:host_addr -
/opt/Xilinx/11.4/EDK/hw/XilinxProcessorIPLib/pcores/xps_ll_temac_v2_03_a/data
/xps_ll_temac_v2_1_0.mpd line 268 - floating connection!
WARNING:EDK:2099 - PORT:HostEmac1Sel CONNECTOR:host_emac1_sel -
/opt/Xilinx/11.4/EDK/hw/XilinxProcessorIPLib/pcores/xps_ll_temac_v2_03_a/data
/xps_ll_temac_v2_1_0.mpd line 269 - floating connection!
Performing Clock DRCs...
Performing Reset DRCs...
Overriding system level properties...
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...
WARNING:EDK:494 - /home/aalonso/workspace/ppc44x/xlnx/xilinx-ml507/synthesis/
not found.
WARNING:EDK:2530 - Timing and Resource utilization information not added
WARNING:EDK:453 - /home/aalonso/workspace/ppc44x/xlnx/xilinx-ml507/system.mss
line 81 - PARAMETER CLOCK_HZ is deprecated !. .
To avoid seeing this Warning again, please remove PARAMETER CLOCK_HZ.
INFO:EDK:1740 - List of peripherals connected to processor instance ppc440_0:
- DDR2_SDRAM
- DIP_Switches_8Bit
- FLASH
- Hard_Ethernet_MAC
- IIC_EEPROM
- LEDs_8Bit
- LEDs_Positions
- Push_Buttons_5Bit
- RS232_Uart_1
- SysACE_CompactFlash
- xps_bram_if_cntlr_1
- xps_intc_0
- xps_timebase_wdt_0
- xps_timer_0
-- Generating libraries for processor: ppc440_0 --
Staging source files.
Running DRCs.
Running generate.
Running post_generate.
Running include - 'gmake -s include "COMPILER=powerpc-eabi-gcc"
"ARCHIVER=powerpc-eabi-ar" "COMPILER_FLAGS=-mcpu=440 -O2 -c"
"EXTRA_COMPILER_FLAGS=-g"'.
Running libs - 'gmake -s libs "COMPILER=powerpc-eabi-gcc"
"ARCHIVER=powerpc-eabi-ar" "COMPILER_FLAGS=-mcpu=440 -O2 -c"
"EXTRA_COMPILER_FLAGS=-g"'.
Compiling common
powerpc-eabi-ar:
creating ../../../lib/libxil.a
Compiling llfifo
Compiling lldma
Compiling standalone
Compiling gpio
Compiling lltemac
Compiling iic
Compiling uartns550
Compiling sysace
Compiling intc
Compiling wdttb
Compiling tmrctr
Compiling cpu_ppc440
Running execs_generate.
Done!
At Local date and time: Fri Mar 12 17:27:29 2010
make -f system.make libs started...
make: Nothing to be done for `libs'.
Done!
At Local date and time: Fri Mar 12 17:27:34 2010
make -f system.make program started...
powerpc-eabi-gcc -O2 TestApp_Memory_ppc440_0/src/TestApp_Memory.c -o TestApp_Memory_ppc440_0/executable.elf \
-mcpu=440 -Wl,-T -Wl,TestApp_Memory_ppc440_0/src/TestApp_Memory_LinkScr.ld -g -I./ppc440_0/include/ -L./ppc440_0/lib/ \
powerpc-eabi-size TestApp_Memory_ppc440_0/executable.elf
text data bss dec hex filename
6086 316 6184 12586 312a TestApp_Memory_ppc440_0/executable.elf
powerpc-eabi-gcc -O2 TestApp_Peripheral_ppc440_0/src/TestApp_Peripheral.c TestApp_Peripheral_ppc440_0/src/xintc_tapp_example.c TestApp_Peripheral_ppc440_0/src/xgpio_tapp_example.c TestApp_Peripheral_ppc440_0/src/xgpio_intr_tapp_example.c TestApp_Peripheral_ppc440_0/src/xiic_selftest_example.c TestApp_Peripheral_ppc440_0/src/xsysace_selftest_example.c TestApp_Peripheral_ppc440_0/src/xlltemac_example_polled.c TestApp_Peripheral_ppc440_0/src/xlltemac_example_util.c TestApp_Peripheral_ppc440_0/src/xlltemac_example_intr_sgdma.c TestApp_Peripheral_ppc440_0/src/xwdttb_selftest_example.c TestApp_Peripheral_ppc440_0/src/xwdttb_intr_example.c TestApp_Peripheral_ppc440_0/src/xtmrctr_selftest_example.c TestApp_Peripheral_ppc440_0/src/xtmrctr_intr_example.c -o TestApp_Peripheral_ppc440_0/executable.elf \
-mcpu=440 -Wl,-T -Wl,TestApp_Peripheral_ppc440_0/src/TestApp_Peripheral_LinkScr.ld -g -I./ppc440_0/include/ -ITestApp_Peripheral_ppc440_0/src/ -L./ppc440_0/lib/ \
powerpc-eabi-size TestApp_Peripheral_ppc440_0/executable.elf
text data bss dec hex filename
59638 580 40056 100274 187b2 TestApp_Peripheral_ppc440_0/executable.elf
Done!
At Local date and time: Fri Mar 12 17:27:41 2010
make -f system.make bits started...
****************************************************
Creating system netlist for hardware specification..
****************************************************
platgen -p xc5vfx70tff1136-1 -lang vhdl -msg __xps/ise/xmsgprops.lst system.mhs
Release 11.4 - platgen Xilinx EDK 11.4 Build EDK_LS4.68
(lin64)
Copyright (c) 1995-2009 Xilinx, Inc. All rights reserved.
Command Line: platgen -p xc5vfx70tff1136-1 -lang vhdl -msg
__xps/ise/xmsgprops.lst system.mhs
Parse /home/aalonso/workspace/ppc44x/xlnx/xilinx-ml507/system.mhs ...
Read MPD definitions ...
Overriding IP level properties ...
WARNING:EDK:1557 - IPNAME:ppc440mc_ddr2 INSTANCE:DDR2_SDRAM -
/home/aalonso/workspace/ppc44x/xlnx/xilinx-ml507/system.mhs line 199 -
PARAMETER C_DQ_BITS has value 8 specified in MHS, but tcl is overriding the
value to 6
INFO:EDK:1560 - IPNAME:ppc440mc_ddr2 INSTANCE:DDR2_SDRAM -
/opt/Xilinx/11.4/EDK/hw/XilinxProcessorIPLib/pcores/ppc440mc_ddr2_v3_00_a/dat
a/ppc440mc_ddr2_v2_1_0.mpd line 104 - tcl is overriding PARAMETER
C_IODELAY_GRP value to DDR2_SDRAM
Performing IP level DRCs on properties...
Running DRC Tcl procedures for OPTION IPLEVEL_DRC_PROC...
Address Map for Processor ppc440_0
(0b0000000000-0b0011111111) ppc440_0
(0000000000-0x0fffffff) DDR2_SDRAM ppc440_0_PPC440MC
(0x81400000-0x8140ffff) Push_Buttons_5Bit plb_v46_0
(0x81420000-0x8142ffff) LEDs_Positions plb_v46_0
(0x81440000-0x8144ffff) LEDs_8Bit plb_v46_0
(0x81460000-0x8146ffff) DIP_Switches_8Bit plb_v46_0
(0x81600000-0x8160ffff) IIC_EEPROM plb_v46_0
(0x81800000-0x8180ffff) xps_intc_0 plb_v46_0
(0x83600000-0x8360ffff) SysACE_CompactFlash plb_v46_0
(0x83a00000-0x83a0ffff) xps_timebase_wdt_0 plb_v46_0
(0x83c00000-0x83c0ffff) xps_timer_0 plb_v46_0
(0x83e00000-0x83e0ffff) RS232_Uart_1 plb_v46_0
(0xfc000000-0xfdffffff) FLASH plb_v46_0
(0xff000000-0xff07ffff) Hard_Ethernet_MAC plb_v46_0
(0xffff0000-0xffffffff) xps_bram_if_cntlr_1 plb_v46_0
Computing clock values...
INFO:EDK:1560 - IPNAME:plb_v46 INSTANCE:plb_v46_0 -
/opt/Xilinx/11.4/EDK/hw/XilinxProcessorIPLib/pcores/plb_v46_v1_04_a/data/plb_
v46_v2_1_0.mpd line 70 - tool is overriding PARAMETER C_PLBV46_NUM_MASTERS
value to 1
INFO:EDK:1560 - IPNAME:plb_v46 INSTANCE:plb_v46_0 -
/opt/Xilinx/11.4/EDK/hw/XilinxProcessorIPLib/pcores/plb_v46_v1_04_a/data/plb_
v46_v2_1_0.mpd line 71 - tool is overriding PARAMETER C_PLBV46_NUM_SLAVES
value to 13
INFO:EDK:1560 - IPNAME:plb_v46 INSTANCE:plb_v46_0 -
/opt/Xilinx/11.4/EDK/hw/XilinxProcessorIPLib/pcores/plb_v46_v1_04_a/data/plb_
v46_v2_1_0.mpd line 72 - tool is overriding PARAMETER C_PLBV46_MID_WIDTH
value to 1
INFO:EDK:1560 - IPNAME:plb_v46 INSTANCE:plb_v46_0 -
/opt/Xilinx/11.4/EDK/hw/XilinxProcessorIPLib/pcores/plb_v46_v1_04_a/data/plb_
v46_v2_1_0.mpd line 74 - tool is overriding PARAMETER C_PLBV46_DWIDTH value
to 128
INFO:EDK:1560 - IPNAME:xps_bram_if_cntlr INSTANCE:xps_bram_if_cntlr_1 -
/opt/Xilinx/11.4/EDK/hw/XilinxProcessorIPLib/pcores/xps_bram_if_cntlr_v1_00_b
/data/xps_bram_if_cntlr_v2_1_0.mpd line 75 - tool is overriding PARAMETER
C_SPLB_DWIDTH value to 128
INFO:EDK:1560 - IPNAME:xps_bram_if_cntlr INSTANCE:xps_bram_if_cntlr_1 -
/opt/Xilinx/11.4/EDK/hw/XilinxProcessorIPLib/pcores/xps_bram_if_cntlr_v1_00_b
/data/xps_bram_if_cntlr_v2_1_0.mpd line 76 - tool is overriding PARAMETER
C_SPLB_NUM_MASTERS value to 1
INFO:EDK:1560 - IPNAME:xps_bram_if_cntlr INSTANCE:xps_bram_if_cntlr_1 -
/opt/Xilinx/11.4/EDK/hw/XilinxProcessorIPLib/pcores/xps_bram_if_cntlr_v1_00_b
/data/xps_bram_if_cntlr_v2_1_0.mpd line 80 - tool is overriding PARAMETER
C_SPLB_SMALLEST_MASTER value to 128
INFO:EDK:1560 - IPNAME:bram_block INSTANCE:xps_bram_if_cntlr_1_bram -
/opt/Xilinx/11.4/EDK/hw/XilinxProcessorIPLib/pcores/bram_block_v1_00_a/data/b
ram_block_v2_1_0.mpd line 69 - tool is overriding PARAMETER C_MEMSIZE value
to 0x10000
INFO:EDK:1560 - IPNAME:bram_block INSTANCE:xps_bram_if_cntlr_1_bram -
/opt/Xilinx/11.4/EDK/hw/XilinxProcessorIPLib/pcores/bram_block_v1_00_a/data/b
ram_block_v2_1_0.mpd line 70 - tool is overriding PARAMETER C_PORT_DWIDTH
value to 64
INFO:EDK:1560 - IPNAME:bram_block INSTANCE:xps_bram_if_cntlr_1_bram -
/opt/Xilinx/11.4/EDK/hw/XilinxProcessorIPLib/pcores/bram_block_v1_00_a/data/b
ram_block_v2_1_0.mpd line 72 - tool is overriding PARAMETER C_NUM_WE value to
8
INFO:EDK:1560 - IPNAME:xps_gpio INSTANCE:LEDs_8Bit -
/opt/Xilinx/11.4/EDK/hw/XilinxProcessorIPLib/pcores/xps_gpio_v2_00_a/data/xps
_gpio_v2_1_0.mpd line 71 - tool is overriding PARAMETER C_SPLB_DWIDTH value
to 128
INFO:EDK:1560 - IPNAME:xps_gpio INSTANCE:LEDs_Positions -
/opt/Xilinx/11.4/EDK/hw/XilinxProcessorIPLib/pcores/xps_gpio_v2_00_a/data/xps
_gpio_v2_1_0.mpd line 71 - tool is overriding PARAMETER C_SPLB_DWIDTH value
to 128
INFO:EDK:1560 - IPNAME:xps_gpio INSTANCE:Push_Buttons_5Bit -
/opt/Xilinx/11.4/EDK/hw/XilinxProcessorIPLib/pcores/xps_gpio_v2_00_a/data/xps
_gpio_v2_1_0.mpd line 71 - tool is overriding PARAMETER C_SPLB_DWIDTH value
to 128
INFO:EDK:1560 - IPNAME:xps_gpio INSTANCE:DIP_Switches_8Bit -
/opt/Xilinx/11.4/EDK/hw/XilinxProcessorIPLib/pcores/xps_gpio_v2_00_a/data/xps
_gpio_v2_1_0.mpd line 71 - tool is overriding PARAMETER C_SPLB_DWIDTH value
to 128
INFO:EDK:1560 - IPNAME:xps_iic INSTANCE:IIC_EEPROM -
/opt/Xilinx/11.4/EDK/hw/XilinxProcessorIPLib/pcores/xps_iic_v2_02_a/data/xps_
iic_v2_1_0.mpd line 79 - tool is overriding PARAMETER C_SPLB_DWIDTH value to
128
INFO:EDK:1560 - IPNAME:xps_sysace INSTANCE:SysACE_CompactFlash -
/opt/Xilinx/11.4/EDK/hw/XilinxProcessorIPLib/pcores/xps_sysace_v1_01_a/data/x
ps_sysace_v2_1_0.mpd line 72 - tool is overriding PARAMETER C_SPLB_DWIDTH
value to 128
INFO:EDK:1560 - IPNAME:xps_sysace INSTANCE:SysACE_CompactFlash -
/opt/Xilinx/11.4/EDK/hw/XilinxProcessorIPLib/pcores/xps_sysace_v1_01_a/data/x
ps_sysace_v2_1_0.mpd line 74 - tool is overriding PARAMETER C_SPLB_MID_WIDTH
value to 1
INFO:EDK:1560 - IPNAME:xps_sysace INSTANCE:SysACE_CompactFlash -
/opt/Xilinx/11.4/EDK/hw/XilinxProcessorIPLib/pcores/xps_sysace_v1_01_a/data/x
ps_sysace_v2_1_0.mpd line 75 - tool is overriding PARAMETER
C_SPLB_NUM_MASTERS value to 1
INFO:EDK:1560 - IPNAME:xps_uart16550 INSTANCE:RS232_Uart_1 -
/opt/Xilinx/11.4/EDK/hw/XilinxProcessorIPLib/pcores/xps_uart16550_v3_00_a/dat
a/xps_uart16550_v2_1_0.mpd line 76 - tool is overriding PARAMETER
C_SPLB_DWIDTH value to 128
INFO:EDK:1560 - IPNAME:xps_mch_emc INSTANCE:FLASH -
/opt/Xilinx/11.4/EDK/hw/XilinxProcessorIPLib/pcores/xps_mch_emc_v3_01_a/data/
xps_mch_emc_v2_1_0.mpd line 82 - tool is overriding PARAMETER C_SPLB_DWIDTH
value to 128
INFO:EDK:1560 - IPNAME:xps_mch_emc INSTANCE:FLASH -
/opt/Xilinx/11.4/EDK/hw/XilinxProcessorIPLib/pcores/xps_mch_emc_v3_01_a/data/
xps_mch_emc_v2_1_0.mpd line 84 - tool is overriding PARAMETER
C_SPLB_SMALLEST_MASTER value to 128
INFO:EDK:1560 - IPNAME:xps_ll_temac INSTANCE:Hard_Ethernet_MAC -
/opt/Xilinx/11.4/EDK/hw/XilinxProcessorIPLib/pcores/xps_ll_temac_v2_03_a/data
/xps_ll_temac_v2_1_0.mpd line 82 - tool is overriding PARAMETER C_SPLB_DWIDTH
value to 128
INFO:EDK:1560 - IPNAME:xps_ll_temac INSTANCE:Hard_Ethernet_MAC -
/opt/Xilinx/11.4/EDK/hw/XilinxProcessorIPLib/pcores/xps_ll_temac_v2_03_a/data
/xps_ll_temac_v2_1_0.mpd line 84 - tool is overriding PARAMETER
C_SPLB_NUM_MASTERS value to 1
INFO:EDK:1560 - IPNAME:xps_ll_temac INSTANCE:Hard_Ethernet_MAC -
/opt/Xilinx/11.4/EDK/hw/XilinxProcessorIPLib/pcores/xps_ll_temac_v2_03_a/data
/xps_ll_temac_v2_1_0.mpd line 85 - tool is overriding PARAMETER
C_SPLB_MID_WIDTH value to 1
INFO:EDK:1560 - IPNAME:xps_timebase_wdt INSTANCE:xps_timebase_wdt_0 -
/opt/Xilinx/11.4/EDK/hw/XilinxProcessorIPLib/pcores/xps_timebase_wdt_v1_01_a/
data/xps_timebase_wdt_v2_1_0.mpd line 73 - tool is overriding PARAMETER
C_SPLB_DWIDTH value to 128
INFO:EDK:1560 - IPNAME:xps_timer INSTANCE:xps_timer_0 -
/opt/Xilinx/11.4/EDK/hw/XilinxProcessorIPLib/pcores/xps_timer_v1_01_b/data/xp
s_timer_v2_1_0.mpd line 78 - tool is overriding PARAMETER C_SPLB_DWIDTH value
to 128
INFO:EDK:1560 - IPNAME:xps_timer INSTANCE:xps_timer_0 -
/opt/Xilinx/11.4/EDK/hw/XilinxProcessorIPLib/pcores/xps_timer_v1_01_b/data/xp
s_timer_v2_1_0.mpd line 80 - tool is overriding PARAMETER C_SPLB_MID_WIDTH
value to 1
INFO:EDK:1560 - IPNAME:xps_timer INSTANCE:xps_timer_0 -
/opt/Xilinx/11.4/EDK/hw/XilinxProcessorIPLib/pcores/xps_timer_v1_01_b/data/xp
s_timer_v2_1_0.mpd line 81 - tool is overriding PARAMETER C_SPLB_NUM_MASTERS
value to 1
INFO:EDK:1560 - IPNAME:xps_intc INSTANCE:xps_intc_0 -
/opt/Xilinx/11.4/EDK/hw/XilinxProcessorIPLib/pcores/xps_intc_v2_00_a/data/xps
_intc_v2_1_0.mpd line 73 - tool is overriding PARAMETER C_SPLB_DWIDTH value
to 128
Checking platform address map ...
Checking platform configuration ...
IPNAME:plb_v46 INSTANCE:plb_v46_0 -
/home/aalonso/workspace/ppc44x/xlnx/xilinx-ml507/system.mhs line 97 - 1
master(s) : 13 slave(s)
Checking port drivers...
WARNING:EDK:2098 - PORT:HostMiimRdy CONNECTOR:host_mii_rdy -
/opt/Xilinx/11.4/EDK/hw/XilinxProcessorIPLib/pcores/xps_ll_temac_v2_03_a/data
/xps_ll_temac_v2_1_0.mpd line 264 - No driver found. Port will be driven to
GND!
WARNING:EDK:2098 - PORT:HostRdData CONNECTOR:host_rd_data -
/opt/Xilinx/11.4/EDK/hw/XilinxProcessorIPLib/pcores/xps_ll_temac_v2_03_a/data
/xps_ll_temac_v2_1_0.mpd line 265 - No driver found. Port will be driven to
GND!
WARNING:EDK:2099 - PORT:HostMiimSel CONNECTOR:host_mii_sel -
/opt/Xilinx/11.4/EDK/hw/XilinxProcessorIPLib/pcores/xps_ll_temac_v2_03_a/data
/xps_ll_temac_v2_1_0.mpd line 266 - floating connection!
WARNING:EDK:2099 - PORT:HostReq CONNECTOR:host_req -
/opt/Xilinx/11.4/EDK/hw/XilinxProcessorIPLib/pcores/xps_ll_temac_v2_03_a/data
/xps_ll_temac_v2_1_0.mpd line 267 - floating connection!
WARNING:EDK:2099 - PORT:HostAddr CONNECTOR:host_addr -
/opt/Xilinx/11.4/EDK/hw/XilinxProcessorIPLib/pcores/xps_ll_temac_v2_03_a/data
/xps_ll_temac_v2_1_0.mpd line 268 - floating connection!
WARNING:EDK:2099 - PORT:HostEmac1Sel CONNECTOR:host_emac1_sel -
/opt/Xilinx/11.4/EDK/hw/XilinxProcessorIPLib/pcores/xps_ll_temac_v2_03_a/data
/xps_ll_temac_v2_1_0.mpd line 269 - floating connection!
Performing Clock DRCs...
Performing Reset DRCs...
Overriding system level properties...
INFO:EDK:1560 - IPNAME:ppc440_virtex5 INSTANCE:ppc440_0 -
/opt/Xilinx/11.4/EDK/hw/XilinxProcessorIPLib/pcores/ppc440_virtex5_v1_01_a/da
ta/ppc440_virtex5_v2_1_0.mpd line 124 - tcl is overriding PARAMETER
C_PPC440MC_ADDR_BASE value to 0x00000000
INFO:EDK:1560 - IPNAME:ppc440_virtex5 INSTANCE:ppc440_0 -
/opt/Xilinx/11.4/EDK/hw/XilinxProcessorIPLib/pcores/ppc440_virtex5_v1_01_a/da
ta/ppc440_virtex5_v2_1_0.mpd line 125 - tcl is overriding PARAMETER
C_PPC440MC_ADDR_HIGH value to 0x0fffffff
INFO:EDK:1560 - IPNAME:jtagppc_cntlr INSTANCE:jtagppc_cntlr_inst -
/opt/Xilinx/11.4/EDK/hw/XilinxProcessorIPLib/pcores/jtagppc_cntlr_v2_01_c/dat
a/jtagppc_cntlr_v2_1_0.mpd line 70 - tcl is overriding PARAMETER
C_NUM_PPC_USED value to 1
INFO:EDK:1560 - IPNAME:xps_intc INSTANCE:xps_intc_0 -
/opt/Xilinx/11.4/EDK/hw/XilinxProcessorIPLib/pcores/xps_intc_v2_00_a/data/xps
_intc_v2_1_0.mpd line 79 - tcl is overriding PARAMETER C_NUM_INTR_INPUTS
value to 12
INFO:EDK:1560 - IPNAME:xps_intc INSTANCE:xps_intc_0 -
/opt/Xilinx/11.4/EDK/hw/XilinxProcessorIPLib/pcores/xps_intc_v2_00_a/data/xps
_intc_v2_1_0.mpd line 80 - tcl is overriding PARAMETER C_KIND_OF_INTR value
to 0b11111111111111111111000000001000
INFO:EDK:1560 - IPNAME:xps_intc INSTANCE:xps_intc_0 -
/opt/Xilinx/11.4/EDK/hw/XilinxProcessorIPLib/pcores/xps_intc_v2_00_a/data/xps
_intc_v2_1_0.mpd line 81 - tcl is overriding PARAMETER C_KIND_OF_EDGE value
to 0b11111111111111111111111111111111
INFO:EDK:1560 - IPNAME:xps_intc INSTANCE:xps_intc_0 -
/opt/Xilinx/11.4/EDK/hw/XilinxProcessorIPLib/pcores/xps_intc_v2_00_a/data/xps
_intc_v2_1_0.mpd line 82 - tcl is overriding PARAMETER C_KIND_OF_LVL value to
0b11111111111111111111111111111110
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...
Running UPDATE Tcl procedures for OPTION PLATGEN_SYSLEVEL_UPDATE_PROC...
INFO: The DDR2_SDRAM core has constraints automatically generated by XPS in
implementation/ddr2_sdram_wrapper/ddr2_sdram_wrapper.ucf.
It can be overridden by constraints placed in the system.ucf file.
INFO: The Hard_Ethernet_MAC core has constraints automatically generated by XPS
in implementation/hard_ethernet_mac_wrapper/hard_ethernet_mac_wrapper.ucf.
It can be overridden by constraints placed in the system.ucf file.
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:bram_block INSTANCE:xps_bram_if_cntlr_1_bram -
/home/aalonso/workspace/ppc44x/xlnx/xilinx-ml507/system.mhs line 117 -
elaborating IP
Writing HDL for elaborated instances ...
Inserting wrapper level ...
Completion time: 1.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:2502 - 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:ppc440_0 - /home/aalonso/workspace/ppc44x/xlnx/xilinx-ml507/system.mhs
line 71 - Running XST synthesis
INSTANCE:plb_v46_0 - /home/aalonso/workspace/ppc44x/xlnx/xilinx-ml507/system.mhs
line 97 - Running XST synthesis
INSTANCE:xps_bram_if_cntlr_1 -
/home/aalonso/workspace/ppc44x/xlnx/xilinx-ml507/system.mhs line 105 - Running
XST synthesis
INSTANCE:xps_bram_if_cntlr_1_bram -
/home/aalonso/workspace/ppc44x/xlnx/xilinx-ml507/system.mhs line 117 - Running
XST synthesis
INSTANCE:leds_8bit - /home/aalonso/workspace/ppc44x/xlnx/xilinx-ml507/system.mhs
line 123 - Running XST synthesis
INSTANCE:leds_positions -
/home/aalonso/workspace/ppc44x/xlnx/xilinx-ml507/system.mhs line 136 - Running
XST synthesis
INSTANCE:push_buttons_5bit -
/home/aalonso/workspace/ppc44x/xlnx/xilinx-ml507/system.mhs line 149 - Running
XST synthesis
INSTANCE:dip_switches_8bit -
/home/aalonso/workspace/ppc44x/xlnx/xilinx-ml507/system.mhs line 163 - Running
XST synthesis
INSTANCE:iic_eeprom -
/home/aalonso/workspace/ppc44x/xlnx/xilinx-ml507/system.mhs line 177 - Running
XST synthesis
INSTANCE:ddr2_sdram -
/home/aalonso/workspace/ppc44x/xlnx/xilinx-ml507/system.mhs line 190 - Running
XST synthesis
INSTANCE:sysace_compactflash -
/home/aalonso/workspace/ppc44x/xlnx/xilinx-ml507/system.mhs line 246 - Running
XST synthesis
INSTANCE:rs232_uart_1 -
/home/aalonso/workspace/ppc44x/xlnx/xilinx-ml507/system.mhs line 263 - Running
XST synthesis
INSTANCE:flash - /home/aalonso/workspace/ppc44x/xlnx/xilinx-ml507/system.mhs
line 275 - Running XST synthesis
INSTANCE:hard_ethernet_mac -
/home/aalonso/workspace/ppc44x/xlnx/xilinx-ml507/system.mhs line 302 - Running
XST synthesis
INSTANCE:xps_timebase_wdt_0 -
/home/aalonso/workspace/ppc44x/xlnx/xilinx-ml507/system.mhs line 334 - Running
XST synthesis
INSTANCE:xps_timer_0 -
/home/aalonso/workspace/ppc44x/xlnx/xilinx-ml507/system.mhs line 346 - Running
XST synthesis
INSTANCE:clock_generator_0 -
/home/aalonso/workspace/ppc44x/xlnx/xilinx-ml507/system.mhs line 357 - Running
XST synthesis
INSTANCE:jtagppc_cntlr_inst -
/home/aalonso/workspace/ppc44x/xlnx/xilinx-ml507/system.mhs line 397 - Running
XST synthesis
INSTANCE:proc_sys_reset_0 -
/home/aalonso/workspace/ppc44x/xlnx/xilinx-ml507/system.mhs line 403 - Running
XST synthesis
INSTANCE:xps_intc_0 -
/home/aalonso/workspace/ppc44x/xlnx/xilinx-ml507/system.mhs line 414 - Running
XST synthesis
Running NGCBUILD ...
IPNAME:ppc440_0_wrapper INSTANCE:ppc440_0 -
/home/aalonso/workspace/ppc44x/xlnx/xilinx-ml507/system.mhs line 71 - Running
NGCBUILD
PMSPEC -- Overriding Xilinx file </opt/Xilinx/11.4/EDK/virtex5/data/virtex5.acd>
with local file </opt/Xilinx/11.4/ISE/virtex5/data/virtex5.acd>
Command Line: /opt/Xilinx/11.4/ISE/bin/lin64/unwrapped/ngcbuild -p
xc5vfx70tff1136-1 -intstyle silent -uc ppc440_0_wrapper.ucf -sd ..
ppc440_0_wrapper.ngc ../ppc440_0_wrapper.ngc
Reading NGO file
"/home/aalonso/workspace/ppc44x/xlnx/xilinx-ml507/implementation/ppc440_0_wrappe
r/ppc440_0_wrapper.ngc" ...
Applying constraints in "ppc440_0_wrapper.ucf" to the design...
Checking Constraint Associations...
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 "../ppc440_0_wrapper.ngc" ...
Total REAL time to NGCBUILD completion: 3 sec
Total CPU time to NGCBUILD completion: 3 sec
Writing NGCBUILD log file "../ppc440_0_wrapper.blc"...
NGCBUILD done.
IPNAME:ddr2_sdram_wrapper INSTANCE:ddr2_sdram -
/home/aalonso/workspace/ppc44x/xlnx/xilinx-ml507/system.mhs line 190 - Running
NGCBUILD
PMSPEC -- Overriding Xilinx file </opt/Xilinx/11.4/EDK/virtex5/data/virtex5.acd>
with local file </opt/Xilinx/11.4/ISE/virtex5/data/virtex5.acd>
Command Line: /opt/Xilinx/11.4/ISE/bin/lin64/unwrapped/ngcbuild -p
xc5vfx70tff1136-1 -intstyle silent -uc ddr2_sdram_wrapper.ucf -sd ..
ddr2_sdram_wrapper.ngc ../ddr2_sdram_wrapper.ngc
Reading NGO file
"/home/aalonso/workspace/ppc44x/xlnx/xilinx-ml507/implementation/ddr2_sdram_wrap
per/ddr2_sdram_wrapper.ngc" ...
Applying constraints in "ddr2_sdram_wrapper.ucf" to the design...
Checking Constraint Associations...
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 "../ddr2_sdram_wrapper.ngc" ...
Total REAL time to NGCBUILD completion: 3 sec
Total CPU time to NGCBUILD completion: 3 sec
Writing NGCBUILD log file "../ddr2_sdram_wrapper.blc"...
NGCBUILD done.
IPNAME:hard_ethernet_mac_wrapper INSTANCE:hard_ethernet_mac -
/home/aalonso/workspace/ppc44x/xlnx/xilinx-ml507/system.mhs line 302 - Running
NGCBUILD
PMSPEC -- Overriding Xilinx file </opt/Xilinx/11.4/EDK/virtex5/data/virtex5.acd>
with local file </opt/Xilinx/11.4/ISE/virtex5/data/virtex5.acd>
Command Line: /opt/Xilinx/11.4/ISE/bin/lin64/unwrapped/ngcbuild -p
xc5vfx70tff1136-1 -intstyle silent -uc hard_ethernet_mac_wrapper.ucf -sd ..
hard_ethernet_mac_wrapper.ngc ../hard_ethernet_mac_wrapper.ngc
Reading NGO file
"/home/aalonso/workspace/ppc44x/xlnx/xilinx-ml507/implementation/hard_ethernet_m
ac_wrapper/hard_ethernet_mac_wrapper.ngc" ...
Executing edif2ngd -noa
"/home/aalonso/workspace/ppc44x/xlnx/xilinx-ml507/implementation/hard_ethernet_m
ac_wrapper_fifo_generator_v4_3_1.edn"
"hard_ethernet_mac_wrapper_fifo_generator_v4_3_1.ngo"
Release 11.4 - edif2ngd L.68 (lin64)
Copyright (c) 1995-2009 Xilinx, Inc. All rights reserved.
INFO:NgdBuild - Release 11.4 edif2ngd L.68 (lin64)
INFO:NgdBuild - Copyright (c) 1995-2009 Xilinx, Inc. All rights reserved.
PMSPEC -- Overriding Xilinx file </opt/Xilinx/11.4/EDK/data/edif2ngd.pfd> with
local file </opt/Xilinx/11.4/ISE/data/edif2ngd.pfd>
Writing module to "hard_ethernet_mac_wrapper_fifo_generator_v4_3_1.ngo"...
Loading design module
"/home/aalonso/workspace/ppc44x/xlnx/xilinx-ml507/implementation/hard_ethernet_m
ac_wrapper/hard_ethernet_mac_wrapper_fifo_generator_v4_3_1.ngo"...
Loading design module
"../hard_ethernet_mac_wrapper_fifo_generator_v4_3_1_fifo_generator_v4_3_xst_1.ng
c"...
Executing edif2ngd -noa
"/home/aalonso/workspace/ppc44x/xlnx/xilinx-ml507/implementation/hard_ethernet_m
ac_wrapper_fifo_generator_v4_3_2.edn"
"hard_ethernet_mac_wrapper_fifo_generator_v4_3_2.ngo"
Release 11.4 - edif2ngd L.68 (lin64)
Copyright (c) 1995-2009 Xilinx, Inc. All rights reserved.
INFO:NgdBuild - Release 11.4 edif2ngd L.68 (lin64)
INFO:NgdBuild - Copyright (c) 1995-2009 Xilinx, Inc. All rights reserved.
PMSPEC -- Overriding Xilinx file </opt/Xilinx/11.4/EDK/data/edif2ngd.pfd> with
local file </opt/Xilinx/11.4/ISE/data/edif2ngd.pfd>
Writing module to "hard_ethernet_mac_wrapper_fifo_generator_v4_3_2.ngo"...
Loading design module
"/home/aalonso/workspace/ppc44x/xlnx/xilinx-ml507/implementation/hard_ethernet_m
ac_wrapper/hard_ethernet_mac_wrapper_fifo_generator_v4_3_2.ngo"...
Loading design module
"../hard_ethernet_mac_wrapper_fifo_generator_v4_3_2_fifo_generator_v4_3_xst_1.ng
c"...
Executing edif2ngd -noa
"/home/aalonso/workspace/ppc44x/xlnx/xilinx-ml507/implementation/hard_ethernet_m
ac_wrapper_fifo_generator_v4_3_4.edn"
"hard_ethernet_mac_wrapper_fifo_generator_v4_3_4.ngo"
Release 11.4 - edif2ngd L.68 (lin64)
Copyright (c) 1995-2009 Xilinx, Inc. All rights reserved.
INFO:NgdBuild - Release 11.4 edif2ngd L.68 (lin64)
INFO:NgdBuild - Copyright (c) 1995-2009 Xilinx, Inc. All rights reserved.
PMSPEC -- Overriding Xilinx file </opt/Xilinx/11.4/EDK/data/edif2ngd.pfd> with
local file </opt/Xilinx/11.4/ISE/data/edif2ngd.pfd>
Writing module to "hard_ethernet_mac_wrapper_fifo_generator_v4_3_4.ngo"...
Loading design module
"/home/aalonso/workspace/ppc44x/xlnx/xilinx-ml507/implementation/hard_ethernet_m
ac_wrapper/hard_ethernet_mac_wrapper_fifo_generator_v4_3_4.ngo"...
Loading design module
"../hard_ethernet_mac_wrapper_fifo_generator_v4_3_4_fifo_generator_v4_3_xst_1.ng
c"...
Executing edif2ngd -noa
"/home/aalonso/workspace/ppc44x/xlnx/xilinx-ml507/implementation/hard_ethernet_m
ac_wrapper_fifo_generator_v4_3_3.edn"
"hard_ethernet_mac_wrapper_fifo_generator_v4_3_3.ngo"
Release 11.4 - edif2ngd L.68 (lin64)
Copyright (c) 1995-2009 Xilinx, Inc. All rights reserved.
INFO:NgdBuild - Release 11.4 edif2ngd L.68 (lin64)
INFO:NgdBuild - Copyright (c) 1995-2009 Xilinx, Inc. All rights reserved.
PMSPEC -- Overriding Xilinx file </opt/Xilinx/11.4/EDK/data/edif2ngd.pfd> with
local file </opt/Xilinx/11.4/ISE/data/edif2ngd.pfd>
Writing module to "hard_ethernet_mac_wrapper_fifo_generator_v4_3_3.ngo"...
Loading design module
"/home/aalonso/workspace/ppc44x/xlnx/xilinx-ml507/implementation/hard_ethernet_m
ac_wrapper/hard_ethernet_mac_wrapper_fifo_generator_v4_3_3.ngo"...
Loading design module
"../hard_ethernet_mac_wrapper_fifo_generator_v4_3_3_fifo_generator_v4_3_xst_1.ng
c"...
Executing edif2ngd -noa
"/home/aalonso/workspace/ppc44x/xlnx/xilinx-ml507/implementation/hard_ethernet_m
ac_wrapper_blk_mem_gen_v2_7.edn"
"hard_ethernet_mac_wrapper_blk_mem_gen_v2_7.ngo"
Release 11.4 - edif2ngd L.68 (lin64)
Copyright (c) 1995-2009 Xilinx, Inc. All rights reserved.
INFO:NgdBuild - Release 11.4 edif2ngd L.68 (lin64)
INFO:NgdBuild - Copyright (c) 1995-2009 Xilinx, Inc. All rights reserved.
PMSPEC -- Overriding Xilinx file </opt/Xilinx/11.4/EDK/data/edif2ngd.pfd> with
local file </opt/Xilinx/11.4/ISE/data/edif2ngd.pfd>
Writing module to "hard_ethernet_mac_wrapper_blk_mem_gen_v2_7.ngo"...
Loading design module
"/home/aalonso/workspace/ppc44x/xlnx/xilinx-ml507/implementation/hard_ethernet_m
ac_wrapper/hard_ethernet_mac_wrapper_blk_mem_gen_v2_7.ngo"...
Loading design module
"../hard_ethernet_mac_wrapper_blk_mem_gen_v2_7_blk_mem_gen_v2_7_xst_1.ngc"...
Applying constraints in "hard_ethernet_mac_wrapper.ucf" to the design...
Checking Constraint Associations...
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 "../hard_ethernet_mac_wrapper.ngc" ...
Total REAL time to NGCBUILD completion: 13 sec
Total CPU time to NGCBUILD completion: 3 sec
Writing NGCBUILD log file "../hard_ethernet_mac_wrapper.blc"...
NGCBUILD done.
IPNAME:clock_generator_0_wrapper INSTANCE:clock_generator_0 -
/home/aalonso/workspace/ppc44x/xlnx/xilinx-ml507/system.mhs line 357 - Running
NGCBUILD
PMSPEC -- Overriding Xilinx file </opt/Xilinx/11.4/EDK/virtex5/data/virtex5.acd>
with local file </opt/Xilinx/11.4/ISE/virtex5/data/virtex5.acd>
Command Line: /opt/Xilinx/11.4/ISE/bin/lin64/unwrapped/ngcbuild -p
xc5vfx70tff1136-1 -intstyle silent -sd .. clock_generator_0_wrapper.ngc
../clock_generator_0_wrapper.ngc
Reading NGO file
"/home/aalonso/workspace/ppc44x/xlnx/xilinx-ml507/implementation/clock_generator
_0_wrapper/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 "../clock_generator_0_wrapper.ngc" ...
Total REAL time to NGCBUILD completion: 1 sec
Total CPU time to NGCBUILD completion: 1 sec
Writing NGCBUILD log file "../clock_generator_0_wrapper.blc"...
NGCBUILD done.
IPNAME:xps_intc_0_wrapper INSTANCE:xps_intc_0 -
/home/aalonso/workspace/ppc44x/xlnx/xilinx-ml507/system.mhs line 414 - Running
NGCBUILD
PMSPEC -- Overriding Xilinx file </opt/Xilinx/11.4/EDK/virtex5/data/virtex5.acd>
with local file </opt/Xilinx/11.4/ISE/virtex5/data/virtex5.acd>
Command Line: /opt/Xilinx/11.4/ISE/bin/lin64/unwrapped/ngcbuild -p
xc5vfx70tff1136-1 -intstyle silent -sd .. xps_intc_0_wrapper.ngc
../xps_intc_0_wrapper.ngc
Reading NGO file
"/home/aalonso/workspace/ppc44x/xlnx/xilinx-ml507/implementation/xps_intc_0_wrap
per/xps_intc_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 "../xps_intc_0_wrapper.ngc" ...
Total REAL time to NGCBUILD completion: 1 sec
Total CPU time to NGCBUILD completion: 1 sec
Writing NGCBUILD log file "../xps_intc_0_wrapper.blc"...
NGCBUILD done.
Rebuilding cache ...
Total run time: 703.00 seconds
Running synthesis...
bash -c "cd synthesis; ./synthesis.sh"
xst -ifn system_xst.scr -intstyle silent
Running XST synthesis ...
XST completed
Release 11.4 - ngcbuild L.68 (lin64)
Copyright (c) 1995-2009 Xilinx, Inc. All rights reserved.
Overriding Xilinx file <ngcflow.csf> with local file
</opt/Xilinx/11.4/ISE/data/ngcflow.csf>
Command Line: /opt/Xilinx/11.4/ISE/bin/lin64/unwrapped/ngcbuild ./system.ngc
../implementation/system.ngc -sd ../implementation -i -ise
../__xps/ise/system.ise
Reading NGO file
"/home/aalonso/workspace/ppc44x/xlnx/xilinx-ml507/synthesis/system.ngc" ...
Loading design module "../implementation/ppc440_0_wrapper.ngc"...
Loading design module "../implementation/plb_v46_0_wrapper.ngc"...
Loading design module "../implementation/xps_bram_if_cntlr_1_wrapper.ngc"...
Loading design module
"../implementation/xps_bram_if_cntlr_1_bram_wrapper.ngc"...
Loading design module "../implementation/leds_8bit_wrapper.ngc"...
Loading design module "../implementation/leds_positions_wrapper.ngc"...
Loading design module "../implementation/push_buttons_5bit_wrapper.ngc"...
Loading design module "../implementation/dip_switches_8bit_wrapper.ngc"...
Loading design module "../implementation/iic_eeprom_wrapper.ngc"...
Loading design module "../implementation/ddr2_sdram_wrapper.ngc"...
Loading design module "../implementation/sysace_compactflash_wrapper.ngc"...
Loading design module "../implementation/rs232_uart_1_wrapper.ngc"...
Loading design module "../implementation/flash_wrapper.ngc"...
Loading design module "../implementation/hard_ethernet_mac_wrapper.ngc"...
Loading design module "../implementation/xps_timebase_wdt_0_wrapper.ngc"...
Loading design module "../implementation/xps_timer_0_wrapper.ngc"...
Loading design module "../implementation/clock_generator_0_wrapper.ngc"...
Loading design module "../implementation/jtagppc_cntlr_inst_wrapper.ngc"...
Loading design module "../implementation/proc_sys_reset_0_wrapper.ngc"...
Loading design module "../implementation/xps_intc_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 "../implementation/system.ngc" ...
Total REAL time to NGCBUILD completion: 3 sec
Total CPU time to NGCBUILD completion: 3 sec
Writing NGCBUILD log file "../implementation/system.blc"...
NGCBUILD done.
*********************************************
Running Xilinx Implementation tools..
*********************************************
xflow -wd implementation -p xc5vfx70tff1136-1 -implement xflow.opt -ise ../__xps/ise/system.ise system.ngc
Release 11.4 - Xflow L.68 (lin64)
Copyright (c) 1995-2009 Xilinx, Inc. All rights reserved.
xflow -wd implementation -p xc5vfx70tff1136-1 -implement xflow.opt -ise
../__xps/ise/system.ise system.ngc
PMSPEC -- Overriding Xilinx file </opt/Xilinx/11.4/EDK/virtex5/data/virtex5.acd>
with local file </opt/Xilinx/11.4/ISE/virtex5/data/virtex5.acd>
.... Copying flowfile /opt/Xilinx/11.4/ISE/xilinx/data/fpga.flw into working
directory /home/aalonso/workspace/ppc44x/xlnx/xilinx-ml507/implementation
Using Flow File:
/home/aalonso/workspace/ppc44x/xlnx/xilinx-ml507/implementation/fpga.flw
Using Option File(s):
/home/aalonso/workspace/ppc44x/xlnx/xilinx-ml507/implementation/xflow.opt
Creating Script File ...
#----------------------------------------------#
# Starting program ngdbuild
# ngdbuild -ise ../__xps/ise/system.ise -p xc5vfx70tff1136-1 -nt timestamp -bm
system.bmm
"/home/aalonso/workspace/ppc44x/xlnx/xilinx-ml507/implementation/system.ngc" -uc
system.ucf system.ngd
#----------------------------------------------#
Release 11.4 - ngdbuild L.68 (lin64)
Copyright (c) 1995-2009 Xilinx, Inc. All rights reserved.
PMSPEC -- Overriding Xilinx file </opt/Xilinx/11.4/EDK/virtex5/data/virtex5.acd>
with local file </opt/Xilinx/11.4/ISE/virtex5/data/virtex5.acd>
Command Line: /opt/Xilinx/11.4/ISE/bin/lin64/unwrapped/ngdbuild -ise
../__xps/ise/system.ise -p xc5vfx70tff1136-1 -nt timestamp -bm system.bmm
/home/aalonso/workspace/ppc44x/xlnx/xilinx-ml507/implementation/system.ngc -uc
system.ucf system.ngd
Reading NGO file
"/home/aalonso/workspace/ppc44x/xlnx/xilinx-ml507/implementation/system.ngc" ...
Gathering constraint information from source properties...
Done.
Annotating constraints to design from ucf file "system.ucf" ...
Resolving constraint associations...
Checking Constraint Associations...
WARNING:ConstraintSystem:56 - Constraint <AREA_GROUP "DDR_CAPTURE_FFS" GROUP =
CLOSED;> [system.ucf(404)]: Unable to find an active 'Area_Group' constraint
named 'DDR_CAPTURE_FFS'.
INFO:ConstraintSystem:178 - TNM 'sys_clk_pin', used in period specification
'TS_sys_clk_pin', was traced into PLL_ADV instance
clock_generator_0/Using_PLL1.PLL1_INST/PLL_INST/Using_PLL_ADV.PLL_ADV_inst.
The following new TNM groups and period specifications were generated at the
PLL_ADV output(s):
CLKOUT0: <TIMESPEC TS_clock_generator_0_clock_generator_0_PLL1_CLK_OUT_0_ =
PERIOD "clock_generator_0_clock_generator_0_PLL1_CLK_OUT_0_" TS_sys_clk_pin *
1.25 HIGH 50%>
INFO:ConstraintSystem:178 - TNM 'sys_clk_pin', used in period specification
'TS_sys_clk_pin', was traced into PLL_ADV instance
clock_generator_0/Using_PLL0.PLL0_INST/PLL_INST/Using_PLL_ADV.PLL_ADV_inst.
The following new TNM groups and period specifications were generated at the
PLL_ADV output(s):
CLKOUT0: <TIMESPEC TS_clock_generator_0_clock_generator_0_PLL0_CLK_OUT_0_ =
PERIOD "clock_generator_0_clock_generator_0_PLL0_CLK_OUT_0_" TS_sys_clk_pin
HIGH 50%>
INFO:ConstraintSystem:178 - TNM 'sys_clk_pin', used in period specification
'TS_sys_clk_pin', was traced into PLL_ADV instance
clock_generator_0/Using_PLL0.PLL0_INST/PLL_INST/Using_PLL_ADV.PLL_ADV_inst.
The following new TNM groups and period specifications were generated at the
PLL_ADV output(s):
CLKOUT1: <TIMESPEC TS_clock_generator_0_clock_generator_0_PLL0_CLK_OUT_1_ =
PERIOD "clock_generator_0_clock_generator_0_PLL0_CLK_OUT_1_" TS_sys_clk_pin *
2 PHASE 1.25 ns HIGH 50%>
INFO:ConstraintSystem:178 - TNM 'sys_clk_pin', used in period specification
'TS_sys_clk_pin', was traced into PLL_ADV instance
clock_generator_0/Using_PLL0.PLL0_INST/PLL_INST/Using_PLL_ADV.PLL_ADV_inst.
The following new TNM groups and period specifications were generated at the
PLL_ADV output(s):
CLKOUT2: <TIMESPEC TS_clock_generator_0_clock_generator_0_PLL0_CLK_OUT_2_ =
PERIOD "clock_generator_0_clock_generator_0_PLL0_CLK_OUT_2_" TS_sys_clk_pin *
2 HIGH 50%>
INFO:ConstraintSystem:178 - TNM 'sys_clk_pin', used in period specification
'TS_sys_clk_pin', was traced into PLL_ADV instance
clock_generator_0/Using_PLL0.PLL0_INST/PLL_INST/Using_PLL_ADV.PLL_ADV_inst.
The following new TNM groups and period specifications were generated at the
PLL_ADV output(s):
CLKOUT3: <TIMESPEC TS_clock_generator_0_clock_generator_0_PLL0_CLK_OUT_3_ =
PERIOD "clock_generator_0_clock_generator_0_PLL0_CLK_OUT_3_" TS_sys_clk_pin *
2 HIGH 50%>
INFO:ConstraintSystem:178 - TNM 'sys_clk_pin', used in period specification
'TS_sys_clk_pin', was traced into PLL_ADV instance
clock_generator_0/Using_PLL0.PLL0_INST/PLL_INST/Using_PLL_ADV.PLL_ADV_inst.
The following new TNM groups and period specifications were generated at the
PLL_ADV output(s):
CLKOUT4: <TIMESPEC TS_clock_generator_0_clock_generator_0_PLL0_CLK_OUT_4_ =
PERIOD "clock_generator_0_clock_generator_0_PLL0_CLK_OUT_4_" TS_sys_clk_pin *
4 HIGH 50%>
Done...
Checking Partitions ...
Processing BMM file ...
Checking expanded design ...
WARNING:NgdBuild:443 - SFF primitive
'xps_bram_if_cntlr_1/xps_bram_if_cntlr_1/INCLUDE_BURST_SUPPORT.I_SLAVE_BURST_
ATTACH/I_DBEAT_CONTROL/I_DBEAT_CNTR/STRUCTURAL_A_GEN.I_ADDSUB_GEN[4].FDRE_I'
has unconnected output pin
WARNING:NgdBuild:443 - SFF primitive
'DDR2_SDRAM/DDR2_SDRAM/u_ddr2_top/u_mem_if_top/u_phy_top/u_phy_io/u_phy_calib
/gen_rden[1].u_calib_rden_r' has unconnected output pin
WARNING:NgdBuild:443 - SFF primitive
'DDR2_SDRAM/DDR2_SDRAM/u_ddr2_top/u_mem_if_top/u_phy_top/u_phy_io/u_phy_calib
/gen_rden[2].u_calib_rden_r' has unconnected output pin
WARNING:NgdBuild:443 - SFF primitive
'DDR2_SDRAM/DDR2_SDRAM/u_ddr2_top/u_mem_if_top/u_phy_top/u_phy_io/u_phy_calib
/gen_rden[3].u_calib_rden_r' has unconnected output pin
WARNING:NgdBuild:443 - SFF primitive
'DDR2_SDRAM/DDR2_SDRAM/u_ddr2_top/u_mem_if_top/u_phy_top/u_phy_io/u_phy_calib
/gen_rden[4].u_calib_rden_r' has unconnected output pin
WARNING:NgdBuild:443 - SFF primitive
'DDR2_SDRAM/DDR2_SDRAM/u_ddr2_top/u_mem_if_top/u_phy_top/u_phy_io/u_phy_calib
/gen_rden[5].u_calib_rden_r' has unconnected output pin
WARNING:NgdBuild:443 - SFF primitive
'DDR2_SDRAM/DDR2_SDRAM/u_ddr2_top/u_mem_if_top/u_phy_top/u_phy_io/u_phy_calib
/gen_rden[6].u_calib_rden_r' has unconnected output pin
WARNING:NgdBuild:443 - SFF primitive
'DDR2_SDRAM/DDR2_SDRAM/u_ddr2_top/u_mem_if_top/u_phy_top/u_phy_io/u_phy_calib
/gen_rden[7].u_calib_rden_r' has unconnected output pin
WARNING:NgdBuild:443 - SFF primitive
'FLASH/FLASH/EMC_CTRL_I/MEM_STATE_MACHINE_I/READ_COMPLETE_PIPE_GEN[6].READ_CO
MPLETE_PIPE' has unconnected output pin
WARNING:NgdBuild:443 - SFF primitive
'FLASH/FLASH/EMC_CTRL_I/MEM_STEER_I/RDDATA_PATH_MUX_GEN.ASYNC_ADDR_CNT_GEN.RD
DATA_EN_GEN_ASYNC[3].RDDATA_EN_REG_ASYNC' has unconnected output pin
WARNING:NgdBuild:443 - SFF primitive
'FLASH/FLASH/EMC_CTRL_I/MEM_STEER_I/ASYNC_MEM_RDACK_GEN.AALIGN_PIPE_GEN[1].AA
LIGN_PIPE' has unconnected output pin
WARNING:NgdBuild:443 - SFF primitive
'FLASH/FLASH/EMC_CTRL_I/ADDR_COUNTER_MUX_I/ADDRESS_STORE_GEN[31].ADDRESS_REG'
has unconnected output pin
WARNING:NgdBuild:443 - SFF primitive
'FLASH/FLASH/EMC_CTRL_I/ADDR_COUNTER_MUX_I/ADDRESS_STORE_GEN[30].ADDRESS_REG'
has unconnected output pin
WARNING:NgdBuild:443 - SFF primitive
'FLASH/FLASH/MCH_PLB_IPIF_I/NO_CHNL_IF_GEN.PLBV46_SLAVE_BURST_I/I_SLAVE_ATTAC
HMENT/I_DECODER/GEN_CE_FOR_SHARED.GEN_BKEND_CE_REGISTERS[0].I_BKEND_WRCE_REG'
has unconnected output pin
WARNING:NgdBuild:443 - SFF primitive
'FLASH/FLASH/MCH_PLB_IPIF_I/NO_CHNL_IF_GEN.PLBV46_SLAVE_BURST_I/I_SLAVE_ATTAC
HMENT/I_DECODER/GEN_CE_FOR_SHARED.GEN_BKEND_CE_REGISTERS[0].I_BKEND_RDCE_REG'
has unconnected output pin
WARNING:NgdBuild:443 - SFF primitive
'FLASH/FLASH/MCH_PLB_IPIF_I/NO_CHNL_IF_GEN.PLBV46_SLAVE_BURST_I/I_SLAVE_ATTAC
HMENT/I_BURST_SUPPORT/RESPONSE_DBEAT_CNTR_I/STRUCTURAL_A_GEN.I_ADDSUB_GEN[7].
FDRE_I' has unconnected output pin
WARNING:NgdBuild:443 - SFF primitive
'FLASH/FLASH/MCH_PLB_IPIF_I/NO_CHNL_IF_GEN.PLBV46_SLAVE_BURST_I/I_SLAVE_ATTAC
HMENT/I_BURST_SUPPORT/CONTROL_DBEAT_CNTR_I/STRUCTURAL_A_GEN.I_ADDSUB_GEN[7].F
DRE_I' has unconnected output pin
WARNING:NgdBuild:443 - SFF primitive
'FLASH/FLASH/MCH_PLB_IPIF_I/NO_CHNL_IF_GEN.PLBV46_SLAVE_BURST_I/I_SLAVE_ATTAC
HMENT/I_BUS_ADDRESS_COUNTER/I_FLEX_ADDR_CNTR/LDMUX_FDRSE_0to3[0].I_FDRSE_BE0t
o3' has unconnected output pin
WARNING:NgdBuild:443 - SFF primitive
'FLASH/FLASH/MCH_PLB_IPIF_I/NO_CHNL_IF_GEN.PLBV46_SLAVE_BURST_I/I_SLAVE_ATTAC
HMENT/I_BUS_ADDRESS_COUNTER/I_FLEX_ADDR_CNTR/LDMUX_FDRSE_0to3[1].I_FDRSE_BE0t
o3' has unconnected output pin
WARNING:NgdBuild:443 - SFF primitive
'FLASH/FLASH/MCH_PLB_IPIF_I/NO_CHNL_IF_GEN.PLBV46_SLAVE_BURST_I/I_SLAVE_ATTAC
HMENT/I_BUS_ADDRESS_COUNTER/I_FLEX_ADDR_CNTR/LDMUX_FDRSE_0to3[2].I_FDRSE_BE0t
o3' has unconnected output pin
WARNING:NgdBuild:443 - SFF primitive
'FLASH/FLASH/MCH_PLB_IPIF_I/NO_CHNL_IF_GEN.PLBV46_SLAVE_BURST_I/I_SLAVE_ATTAC
HMENT/I_BUS_ADDRESS_COUNTER/I_FLEX_ADDR_CNTR/LDMUX_FDRSE_0to3[3].I_FDRSE_BE0t
o3' has unconnected output pin
WARNING:NgdBuild:443 - SFF primitive
'FLASH/FLASH/MCH_PLB_IPIF_I/NO_CHNL_IF_GEN.PLBV46_SLAVE_BURST_I/I_SLAVE_ATTAC
HMENT/I_BUS_ADDRESS_COUNTER/GEN_FOR_SHARED.GEN_S_H_SIZE_REG[0].I_SIZE_S_H_REG
' has unconnected output pin
WARNING:NgdBuild:443 - SFF primitive
'FLASH/FLASH/MCH_PLB_IPIF_I/NO_CHNL_IF_GEN.PLBV46_SLAVE_BURST_I/I_SLAVE_ATTAC
HMENT/I_STEER_ADDRESS_COUNTER/GEN_FOR_SHARED.GEN_S_H_SIZE_REG[0].I_SIZE_S_H_R
EG' has unconnected output pin
WARNING:NgdBuild:486 - Attribute "IOBDELAY_TYPE" is not allowed on symbol
"Hard_Ethernet_MAC/V5HARD_SYS.I_TEMAC/SINGLE_GMII.IO_YES_01.gmii_rxc0_delay"
of type "IODELAY". This attribute will be ignored.
WARNING:NgdBuild:486 - Attribute "IOBDELAY_TYPE" is not allowed on symbol
"Hard_Ethernet_MAC/V5HARD_SYS.I_TEMAC/SINGLE_GMII.I_EMAC_TOP/gmii0/YES_IO_1.i
deld0" of type "IODELAY". This attribute will be ignored.
WARNING:NgdBuild:486 - Attribute "IOBDELAY_TYPE" is not allowed on symbol
"Hard_Ethernet_MAC/V5HARD_SYS.I_TEMAC/SINGLE_GMII.I_EMAC_TOP/gmii0/YES_IO_1.i
deld1" of type "IODELAY". This attribute will be ignored.
WARNING:NgdBuild:486 - Attribute "IOBDELAY_TYPE" is not allowed on symbol
"Hard_Ethernet_MAC/V5HARD_SYS.I_TEMAC/SINGLE_GMII.I_EMAC_TOP/gmii0/YES_IO_1.i
deld2" of type "IODELAY". This attribute will be ignored.
WARNING:NgdBuild:486 - Attribute "IOBDELAY_TYPE" is not allowed on symbol
"Hard_Ethernet_MAC/V5HARD_SYS.I_TEMAC/SINGLE_GMII.I_EMAC_TOP/gmii0/YES_IO_1.i
deld3" of type "IODELAY". This attribute will be ignored.
WARNING:NgdBuild:486 - Attribute "IOBDELAY_TYPE" is not allowed on symbol
"Hard_Ethernet_MAC/V5HARD_SYS.I_TEMAC/SINGLE_GMII.I_EMAC_TOP/gmii0/YES_IO_1.i
deld4" of type "IODELAY". This attribute will be ignored.
WARNING:NgdBuild:486 - Attribute "IOBDELAY_TYPE" is not allowed on symbol
"Hard_Ethernet_MAC/V5HARD_SYS.I_TEMAC/SINGLE_GMII.I_EMAC_TOP/gmii0/YES_IO_1.i
deld5" of type "IODELAY". This attribute will be ignored.
WARNING:NgdBuild:486 - Attribute "IOBDELAY_TYPE" is not allowed on symbol
"Hard_Ethernet_MAC/V5HARD_SYS.I_TEMAC/SINGLE_GMII.I_EMAC_TOP/gmii0/YES_IO_1.i
deld6" of type "IODELAY". This attribute will be ignored.
WARNING:NgdBuild:486 - Attribute "IOBDELAY_TYPE" is not allowed on symbol
"Hard_Ethernet_MAC/V5HARD_SYS.I_TEMAC/SINGLE_GMII.I_EMAC_TOP/gmii0/YES_IO_1.i
deld7" of type "IODELAY". This attribute will be ignored.
WARNING:NgdBuild:486 - Attribute "IOBDELAY_TYPE" is not allowed on symbol
"Hard_Ethernet_MAC/V5HARD_SYS.I_TEMAC/SINGLE_GMII.I_EMAC_TOP/gmii0/YES_IO_1.i
deldv" of type "IODELAY". This attribute will be ignored.
WARNING:NgdBuild:486 - Attribute "IOBDELAY_TYPE" is not allowed on symbol
"Hard_Ethernet_MAC/V5HARD_SYS.I_TEMAC/SINGLE_GMII.I_EMAC_TOP/gmii0/YES_IO_1.i
deler" of type "IODELAY". This attribute will be ignored.
WARNING:NgdBuild:443 - SFF primitive
'xps_timer_0/xps_timer_0/TC_CORE_I/TIMER_CONTROL_I/TCSR0_GENERATE[0].TCSR0_FF
_I' has unconnected output pin
WARNING:NgdBuild:443 - SFF primitive
'xps_timer_0/xps_timer_0/TC_CORE_I/TIMER_CONTROL_I/TCSR0_GENERATE[1].TCSR0_FF
_I' has unconnected output pin
WARNING:NgdBuild:443 - SFF primitive
'xps_timer_0/xps_timer_0/TC_CORE_I/TIMER_CONTROL_I/TCSR0_GENERATE[2].TCSR0_FF
_I' has unconnected output pin
WARNING:NgdBuild:443 - SFF primitive
'xps_timer_0/xps_timer_0/TC_CORE_I/TIMER_CONTROL_I/TCSR0_GENERATE[3].TCSR0_FF
_I' has unconnected output pin
WARNING:NgdBuild:443 - SFF primitive
'xps_timer_0/xps_timer_0/TC_CORE_I/TIMER_CONTROL_I/TCSR0_GENERATE[4].TCSR0_FF
_I' has unconnected output pin
WARNING:NgdBuild:443 - SFF primitive
'xps_timer_0/xps_timer_0/TC_CORE_I/TIMER_CONTROL_I/TCSR0_GENERATE[5].TCSR0_FF
_I' has unconnected output pin
WARNING:NgdBuild:443 - SFF primitive
'xps_timer_0/xps_timer_0/TC_CORE_I/TIMER_CONTROL_I/TCSR0_GENERATE[6].TCSR0_FF
_I' has unconnected output pin
WARNING:NgdBuild:443 - SFF primitive
'xps_timer_0/xps_timer_0/TC_CORE_I/TIMER_CONTROL_I/TCSR0_GENERATE[7].TCSR0_FF
_I' has unconnected output pin
WARNING:NgdBuild:443 - SFF primitive
'xps_timer_0/xps_timer_0/TC_CORE_I/TIMER_CONTROL_I/TCSR0_GENERATE[8].TCSR0_FF
_I' has unconnected output pin
WARNING:NgdBuild:443 - SFF primitive
'xps_timer_0/xps_timer_0/TC_CORE_I/TIMER_CONTROL_I/TCSR0_GENERATE[9].TCSR0_FF
_I' has unconnected output pin
WARNING:NgdBuild:443 - SFF primitive
'xps_timer_0/xps_timer_0/TC_CORE_I/TIMER_CONTROL_I/TCSR0_GENERATE[10].TCSR0_F
F_I' has unconnected output pin
WARNING:NgdBuild:443 - SFF primitive
'xps_timer_0/xps_timer_0/TC_CORE_I/TIMER_CONTROL_I/TCSR0_GENERATE[11].TCSR0_F
F_I' has unconnected output pin
WARNING:NgdBuild:443 - SFF primitive
'xps_timer_0/xps_timer_0/TC_CORE_I/TIMER_CONTROL_I/TCSR0_GENERATE[12].TCSR0_F
F_I' has unconnected output pin
WARNING:NgdBuild:443 - SFF primitive
'xps_timer_0/xps_timer_0/TC_CORE_I/TIMER_CONTROL_I/TCSR0_GENERATE[13].TCSR0_F
F_I' has unconnected output pin
WARNING:NgdBuild:443 - SFF primitive
'xps_timer_0/xps_timer_0/TC_CORE_I/TIMER_CONTROL_I/TCSR0_GENERATE[14].TCSR0_F
F_I' has unconnected output pin
WARNING:NgdBuild:443 - SFF primitive
'xps_timer_0/xps_timer_0/TC_CORE_I/TIMER_CONTROL_I/TCSR0_GENERATE[15].TCSR0_F
F_I' has unconnected output pin
WARNING:NgdBuild:443 - SFF primitive
'xps_timer_0/xps_timer_0/TC_CORE_I/TIMER_CONTROL_I/TCSR0_GENERATE[16].TCSR0_F
F_I' has unconnected output pin
WARNING:NgdBuild:443 - SFF primitive
'xps_timer_0/xps_timer_0/TC_CORE_I/TIMER_CONTROL_I/TCSR0_GENERATE[17].TCSR0_F
F_I' has unconnected output pin
WARNING:NgdBuild:443 - SFF primitive
'xps_timer_0/xps_timer_0/TC_CORE_I/TIMER_CONTROL_I/TCSR0_GENERATE[18].TCSR0_F
F_I' has unconnected output pin
WARNING:NgdBuild:443 - SFF primitive
'xps_timer_0/xps_timer_0/TC_CORE_I/TIMER_CONTROL_I/TCSR0_GENERATE[19].TCSR0_F
F_I' has unconnected output pin
WARNING:NgdBuild:443 - SFF primitive
'xps_timer_0/xps_timer_0/TC_CORE_I/TIMER_CONTROL_I/TCSR0_GENERATE[20].TCSR0_F
F_I' has unconnected output pin
WARNING:NgdBuild:443 - SFF primitive
'xps_timer_0/xps_timer_0/TC_CORE_I/TIMER_CONTROL_I/TCSR1_GENERATE[0].TCSR1_FF
_I' has unconnected output pin
WARNING:NgdBuild:443 - SFF primitive
'xps_timer_0/xps_timer_0/TC_CORE_I/TIMER_CONTROL_I/TCSR1_GENERATE[1].TCSR1_FF
_I' has unconnected output pin
WARNING:NgdBuild:443 - SFF primitive
'xps_timer_0/xps_timer_0/TC_CORE_I/TIMER_CONTROL_I/TCSR1_GENERATE[2].TCSR1_FF
_I' has unconnected output pin
WARNING:NgdBuild:443 - SFF primitive
'xps_timer_0/xps_timer_0/TC_CORE_I/TIMER_CONTROL_I/TCSR1_GENERATE[3].TCSR1_FF
_I' has unconnected output pin
WARNING:NgdBuild:443 - SFF primitive
'xps_timer_0/xps_timer_0/TC_CORE_I/TIMER_CONTROL_I/TCSR1_GENERATE[4].TCSR1_FF
_I' has unconnected output pin
WARNING:NgdBuild:443 - SFF primitive
'xps_timer_0/xps_timer_0/TC_CORE_I/TIMER_CONTROL_I/TCSR1_GENERATE[5].TCSR1_FF
_I' has unconnected output pin
WARNING:NgdBuild:443 - SFF primitive
'xps_timer_0/xps_timer_0/TC_CORE_I/TIMER_CONTROL_I/TCSR1_GENERATE[6].TCSR1_FF
_I' has unconnected output pin
WARNING:NgdBuild:443 - SFF primitive
'xps_timer_0/xps_timer_0/TC_CORE_I/TIMER_CONTROL_I/TCSR1_GENERATE[7].TCSR1_FF
_I' has unconnected output pin
WARNING:NgdBuild:443 - SFF primitive
'xps_timer_0/xps_timer_0/TC_CORE_I/TIMER_CONTROL_I/TCSR1_GENERATE[8].TCSR1_FF
_I' has unconnected output pin
WARNING:NgdBuild:443 - SFF primitive