-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSTORM_SoC_basic.syr
More file actions
3211 lines (3027 loc) · 332 KB
/
STORM_SoC_basic.syr
File metadata and controls
3211 lines (3027 loc) · 332 KB
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
Release 14.7 - xst P.20131013 (lin64)
Copyright (c) 1995-2013 Xilinx, Inc. All rights reserved.
-->
Parameter TMPDIR set to xst/projnav.tmp
Total REAL time to Xst completion: 0.00 secs
Total CPU time to Xst completion: 0.04 secs
-->
Parameter xsthdpdir set to xst
Total REAL time to Xst completion: 0.00 secs
Total CPU time to Xst completion: 0.04 secs
-->
Reading design: STORM_SoC_basic.prj
TABLE OF CONTENTS
1) Synthesis Options Summary
2) HDL Parsing
3) HDL Elaboration
4) HDL Synthesis
4.1) HDL Synthesis Report
5) Advanced HDL Synthesis
5.1) Advanced HDL Synthesis Report
6) Low Level Synthesis
7) Partition Report
8) Design Summary
8.1) Primitive and Black Box Usage
8.2) Device utilization summary
8.3) Partition Resource Summary
8.4) Timing Report
8.4.1) Clock Information
8.4.2) Asynchronous Control Signals Information
8.4.3) Timing Summary
8.4.4) Timing Details
8.4.5) Cross Clock Domains Report
=========================================================================
* Synthesis Options Summary *
=========================================================================
---- Source Parameters
Input File Name : "STORM_SoC_basic.prj"
Ignore Synthesis Constraint File : NO
---- Target Parameters
Output File Name : "STORM_SoC_basic"
Output Format : NGC
Target Device : xc6slx9-3-ftg256
---- Source Options
Top Module Name : STORM_SoC_basic
Automatic FSM Extraction : YES
FSM Encoding Algorithm : Auto
Safe Implementation : No
FSM Style : LUT
RAM Extraction : Yes
RAM Style : Auto
ROM Extraction : Yes
Shift Register Extraction : YES
ROM Style : Auto
Resource Sharing : YES
Asynchronous To Synchronous : NO
Shift Register Minimum Size : 2
Use DSP Block : Auto
Automatic Register Balancing : No
---- Target Options
LUT Combining : Auto
Reduce Control Sets : Auto
Add IO Buffers : YES
Global Maximum Fanout : 100000
Add Generic Clock Buffer(BUFG) : 16
Register Duplication : YES
Optimize Instantiated Primitives : NO
Use Clock Enable : Auto
Use Synchronous Set : Auto
Use Synchronous Reset : Auto
Pack IO Registers into IOBs : Auto
Equivalent register Removal : YES
---- General Options
Optimization Goal : Speed
Optimization Effort : 1
Power Reduction : NO
Keep Hierarchy : No
Netlist Hierarchy : As_Optimized
RTL Output : Yes
Global Optimization : AllClockNets
Read Cores : YES
Write Timing Constraints : NO
Cross Clock Analysis : NO
Hierarchy Separator : /
Bus Delimiter : <>
Case Specifier : Maintain
Slice Utilization Ratio : 100
BRAM Utilization Ratio : 100
DSP48 Utilization Ratio : 100
Auto BRAM Packing : NO
Slice Utilization Ratio Delta : 5
=========================================================================
=========================================================================
* HDL Parsing *
=========================================================================
Parsing VHDL file "/home/martin/git-work/MyStormOnMiniSpartan6/CORE_PKG.vhd" into library work
Parsing package <STORM_core_package>.
Parsing VHDL file "/home/martin/git-work/MyStormOnMiniSpartan6/MULTIPLY_UNIT.vhd" into library work
Parsing entity <MULTIPLY_UNIT>.
Parsing architecture <Behavioral> of entity <multiply_unit>.
Parsing VHDL file "/home/martin/git-work/MyStormOnMiniSpartan6/BARREL_SHIFTER.vhd" into library work
Parsing entity <BARREL_SHIFTER>.
Parsing architecture <Structure> of entity <barrel_shifter>.
Parsing VHDL file "/home/martin/git-work/MyStormOnMiniSpartan6/WB_UNIT.vhd" into library work
Parsing entity <WB_UNIT>.
Parsing architecture <Structure> of entity <wb_unit>.
Parsing VHDL file "/home/martin/git-work/MyStormOnMiniSpartan6/utils.vhd" into library work
Parsing entity <synchroniser>.
Parsing architecture <Behaviour> of entity <synchroniser>.
Parsing entity <Counter>.
Parsing architecture <Behaviour> of entity <counter>.
Parsing VHDL file "/home/martin/git-work/MyStormOnMiniSpartan6/REG_FILE.vhd" into library work
Parsing entity <REG_FILE>.
Parsing architecture <REG_FILE_STRUCTURE> of entity <reg_file>.
Parsing entity <ADR_TRANSLATION_UNIT>.
Parsing architecture <ADRTU_STRUCTURE> of entity <adr_translation_unit>.
Parsing VHDL file "/home/martin/git-work/MyStormOnMiniSpartan6/OPERAND_UNIT.vhd" into library work
Parsing entity <OPERAND_UNIT>.
Parsing architecture <OPERAND_UNIT_STRUCTURE> of entity <operand_unit>.
Parsing VHDL file "/home/martin/git-work/MyStormOnMiniSpartan6/OPCODE_DECODER.vhd" into library work
Parsing entity <OPCODE_DECODER>.
Parsing architecture <instruction_decoder> of entity <opcode_decoder>.
Parsing VHDL file "/home/martin/git-work/MyStormOnMiniSpartan6/MS_UNIT.vhd" into library work
Parsing entity <MS_UNIT>.
Parsing architecture <Structural> of entity <ms_unit>.
Parsing VHDL file "/home/martin/git-work/MyStormOnMiniSpartan6/MC_SYS.vhd" into library work
Parsing entity <MC_SYS>.
Parsing architecture <MC_SYS_STRUCTURE> of entity <mc_sys>.
Parsing VHDL file "/home/martin/git-work/MyStormOnMiniSpartan6/LOAD_STORE_UNIT.vhd" into library work
Parsing entity <LOAD_STORE_UNIT>.
Parsing architecture <Structure> of entity <load_store_unit>.
Parsing VHDL file "/home/martin/git-work/MyStormOnMiniSpartan6/i2c_master_bit_ctrl.vhd" into library work
Parsing entity <i2c_master_bit_ctrl>.
Parsing architecture <structural> of entity <i2c_master_bit_ctrl>.
Parsing VHDL file "/home/martin/git-work/MyStormOnMiniSpartan6/FLOW_CTRL.vhd" into library work
Parsing entity <FLOW_CTRL>.
Parsing architecture <FLOW_CTRL_STRUCTURE> of entity <flow_ctrl>.
Parsing VHDL file "/home/martin/git-work/MyStormOnMiniSpartan6/ALU.vhd" into library work
Parsing entity <ALU>.
Parsing architecture <ALU_STRUCTURE> of entity <alu>.
Parsing VHDL file "/home/martin/git-work/MyStormOnMiniSpartan6/Txunit.vhd" into library work
Parsing entity <TxUnit>.
Parsing architecture <Behaviour> of entity <txunit>.
Parsing VHDL file "/home/martin/git-work/MyStormOnMiniSpartan6/SDRAM_Controller.vhd" into library work
Parsing entity <SDRAM_Controller>.
Parsing architecture <Behavioral> of entity <sdram_controller>.
WARNING:HDLCompiler:946 - "/home/martin/git-work/MyStormOnMiniSpartan6/SDRAM_Controller.vhd" Line 203: Actual for formal port c1 is neither a static name nor a globally static expression
Parsing VHDL file "/home/martin/git-work/MyStormOnMiniSpartan6/Rxunit.vhd" into library work
Parsing entity <RxUnit>.
Parsing architecture <Behaviour> of entity <rxunit>.
Parsing VHDL file "/home/martin/git-work/MyStormOnMiniSpartan6/i2c_master_byte_ctrl.vhd" into library work
Parsing entity <i2c_master_byte_ctrl>.
Parsing architecture <structural> of entity <i2c_master_byte_ctrl>.
Parsing VHDL file "/home/martin/git-work/MyStormOnMiniSpartan6/CORE.vhd" into library work
Parsing entity <CORE>.
Parsing architecture <CORE_STRUCTURE> of entity <core>.
Parsing VHDL file "/home/martin/git-work/MyStormOnMiniSpartan6/CACHE.vhd" into library work
Parsing entity <CACHE>.
Parsing architecture <Behavioral> of entity <cache>.
Parsing VHDL file "/home/martin/git-work/MyStormOnMiniSpartan6/BUS_UNIT.vhd" into library work
Parsing entity <BUS_UNIT>.
Parsing architecture <Structure> of entity <bus_unit>.
Parsing VHDL file "/home/martin/git-work/MyStormOnMiniSpartan6/VIC.vhd" into library work
Parsing entity <VIC>.
Parsing architecture <Structure> of entity <vic>.
Parsing VHDL file "/home/martin/git-work/MyStormOnMiniSpartan6/TIMER.vhd" into library work
Parsing entity <TIMER>.
Parsing architecture <Structure> of entity <timer>.
Parsing VHDL file "/home/martin/git-work/MyStormOnMiniSpartan6/SYSTEM_PLL.vhd" into library work
Parsing entity <SYSTEM_PLL>.
Parsing architecture <Behavioral> of entity <system_pll>.
Parsing VHDL file "/home/martin/git-work/MyStormOnMiniSpartan6/STORM_TOP.vhd" into library work
Parsing entity <STORM_TOP>.
Parsing architecture <Structure> of entity <storm_top>.
Parsing VHDL file "/home/martin/git-work/MyStormOnMiniSpartan6/SDRAM_WB_CTRL.vhd" into library work
Parsing entity <SDRAM_WB_CTRL>.
Parsing architecture <Behavioral> of entity <sdram_wb_ctrl>.
Parsing VHDL file "/home/martin/git-work/MyStormOnMiniSpartan6/RST_PROTECT.vhd" into library work
Parsing entity <RST_PROTECT>.
Parsing architecture <Behavioral> of entity <rst_protect>.
Parsing VHDL file "/home/martin/git-work/MyStormOnMiniSpartan6/MINI_UART.vhd" into library work
Parsing entity <MINI_UART>.
Parsing architecture <Behaviour> of entity <mini_uart>.
Parsing VHDL file "/home/martin/git-work/MyStormOnMiniSpartan6/MEMORY.vhd" into library work
Parsing entity <MEMORY>.
Parsing architecture <Behavioral> of entity <memory>.
Parsing VHDL file "/home/martin/git-work/MyStormOnMiniSpartan6/i2c_master_top.vhd" into library work
Parsing entity <i2c_master_top>.
Parsing architecture <structural> of entity <i2c_master_top>.
Parsing VHDL file "/home/martin/git-work/MyStormOnMiniSpartan6/GP_IO_CTRL.vhd" into library work
Parsing entity <GP_IO_CTRL>.
Parsing architecture <Structure> of entity <gp_io_ctrl>.
Parsing VHDL file "/home/martin/git-work/MyStormOnMiniSpartan6/BOOT_ROM_FILE.vhd" into library work
Parsing entity <BOOT_ROM_FILE>.
Parsing architecture <Behavioral> of entity <boot_rom_file>.
Parsing VHDL file "/home/martin/git-work/MyStormOnMiniSpartan6/STORM_SoC_basic.vhd" into library work
Parsing entity <STORM_SoC_basic>.
Parsing architecture <Structure> of entity <storm_soc_basic>.
=========================================================================
* HDL Elaboration *
=========================================================================
Elaborating entity <STORM_SoC_basic> (architecture <Structure>) from library <work>.
Elaborating entity <SYSTEM_PLL> (architecture <Behavioral>) from library <work>.
WARNING:HDLCompiler:1127 - "/home/martin/git-work/MyStormOnMiniSpartan6/STORM_SoC_basic.vhd" Line 546: Assignment to clk_lock ignored, since the identifier is never used
Elaborating entity <RST_PROTECT> (architecture <Behavioral>) with generics from library <work>.
WARNING:HDLCompiler:1127 - "/home/martin/git-work/MyStormOnMiniSpartan6/STORM_SoC_basic.vhd" Line 568: Assignment to main_rst_n ignored, since the identifier is never used
Elaborating entity <STORM_TOP> (architecture <Structure>) with generics from library <work>.
Elaborating entity <CORE> (architecture <CORE_STRUCTURE>) with generics from library <work>.
Elaborating entity <OPCODE_DECODER> (architecture <instruction_decoder>) from library <work>.
Elaborating entity <FLOW_CTRL> (architecture <FLOW_CTRL_STRUCTURE>) from library <work>.
INFO:HDLCompiler:679 - "/home/martin/git-work/MyStormOnMiniSpartan6/FLOW_CTRL.vhd" Line 372. Case statement is complete. others clause is never selected
Elaborating entity <MC_SYS> (architecture <MC_SYS_STRUCTURE>) with generics from library <work>.
WARNING:HDLCompiler:1127 - "/home/martin/git-work/MyStormOnMiniSpartan6/MC_SYS.vhd" Line 591: Assignment to mrd_cp_v ignored, since the identifier is never used
Elaborating entity <REG_FILE> (architecture <REG_FILE_STRUCTURE>) from library <work>.
Elaborating entity <ADR_TRANSLATION_UNIT> (architecture <ADRTU_STRUCTURE>) from library <work>.
INFO:HDLCompiler:679 - "/home/martin/git-work/MyStormOnMiniSpartan6/REG_FILE.vhd" Line 217. Case statement is complete. others clause is never selected
Elaborating entity <OPERAND_UNIT> (architecture <OPERAND_UNIT_STRUCTURE>) from library <work>.
Elaborating entity <MS_UNIT> (architecture <Structural>) from library <work>.
Elaborating entity <MULTIPLY_UNIT> (architecture <Behavioral>) from library <work>.
Elaborating entity <BARREL_SHIFTER> (architecture <Structure>) from library <work>.
INFO:HDLCompiler:679 - "/home/martin/git-work/MyStormOnMiniSpartan6/BARREL_SHIFTER.vhd" Line 87. Case statement is complete. others clause is never selected
Elaborating entity <ALU> (architecture <ALU_STRUCTURE>) from library <work>.
INFO:HDLCompiler:679 - "/home/martin/git-work/MyStormOnMiniSpartan6/ALU.vhd" Line 145. Case statement is complete. others clause is never selected
Elaborating entity <LOAD_STORE_UNIT> (architecture <Structure>) from library <work>.
Elaborating entity <WB_UNIT> (architecture <Structure>) from library <work>.
Elaborating entity <CACHE> (architecture <Behavioral>) with generics from library <work>.
WARNING:HDLCompiler:1127 - "/home/martin/git-work/MyStormOnMiniSpartan6/CACHE.vhd" Line 336: Assignment to b_base_o_sel ignored, since the identifier is never used
Elaborating entity <BUS_UNIT> (architecture <Structure>) with generics from library <work>.
Elaborating entity <MEMORY> (architecture <Behavioral>) with generics from library <work>.
Elaborating entity <SDRAM_WB_CTRL> (architecture <Behavioral>) from library <work>.
WARNING:HDLCompiler:244 - "/home/martin/git-work/MyStormOnMiniSpartan6/SDRAM_WB_CTRL.vhd" Line 66: Binding entity sdram_controller does not have generic high_bit
INFO:HDLCompiler:1408 - "/home/martin/git-work/MyStormOnMiniSpartan6/SDRAM_Controller.vhd" Line 35. sdram_controller is declared here
Elaborating entity <SDRAM_Controller> (architecture <Behavioral>) with generics from library <work>.
INFO:HDLCompiler:679 - "/home/martin/git-work/MyStormOnMiniSpartan6/SDRAM_Controller.vhd" Line 497. Case statement is complete. others clause is never selected
WARNING:HDLCompiler:634 - "/home/martin/git-work/MyStormOnMiniSpartan6/SDRAM_Controller.vhd" Line 148: Net <addr_col[12]> does not have a driver.
INFO:HDLCompiler:1408 - "/home/martin/git-work/MyStormOnMiniSpartan6/SDRAM_Controller.vhd" Line 35. sdram_controller is declared here
Elaborating entity <BOOT_ROM_FILE> (architecture <Behavioral>) with generics from library <work>.
Elaborating entity <GP_IO_CTRL> (architecture <Structure>) from library <work>.
Elaborating entity <MINI_UART> (architecture <Behaviour>) with generics from library <work>.
Elaborating entity <Counter> (architecture <Behaviour>) with generics from library <work>.
Elaborating entity <Counter> (architecture <Behaviour>) with generics from library <work>.
Elaborating entity <TxUnit> (architecture <Behaviour>) from library <work>.
Elaborating entity <synchroniser> (architecture <Behaviour>) from library <work>.
Elaborating entity <RxUnit> (architecture <Behaviour>) from library <work>.
Elaborating entity <TIMER> (architecture <Structure>) from library <work>.
Elaborating entity <i2c_master_top> (architecture <structural>) with generics from library <work>.
INFO:HDLCompiler:679 - "/home/martin/git-work/MyStormOnMiniSpartan6/i2c_master_top.vhd" Line 204. Case statement is complete. others clause is never selected
Elaborating entity <i2c_master_byte_ctrl> (architecture <structural>) from library <work>.
Elaborating entity <i2c_master_bit_ctrl> (architecture <structural>) from library <work>.
INFO:HDLCompiler:679 - "/home/martin/git-work/MyStormOnMiniSpartan6/i2c_master_bit_ctrl.vhd" Line 561. Case statement is complete. others clause is never selected
INFO:HDLCompiler:679 - "/home/martin/git-work/MyStormOnMiniSpartan6/i2c_master_byte_ctrl.vhd" Line 353. Case statement is complete. others clause is never selected
Elaborating entity <VIC> (architecture <Structure>) from library <work>.
WARNING:HDLCompiler:634 - "/home/martin/git-work/MyStormOnMiniSpartan6/STORM_SoC_basic.vhd" Line 211: Net <INT_LINES[4]> does not have a driver.
WARNING:Xst:2972 - "/home/martin/git-work/MyStormOnMiniSpartan6/STORM_SoC_basic.vhd" line 555. All outputs of instance <SYSCON_RST> of block <RST_PROTECT> are unconnected in block <STORM_SoC_basic>. Underlying logic will be removed.
=========================================================================
* HDL Synthesis *
=========================================================================
Synthesizing Unit <STORM_SoC_basic>.
Related source file is "/home/martin/git-work/MyStormOnMiniSpartan6/STORM_SoC_basic.vhd".
INFO:Xst:3210 - "/home/martin/git-work/MyStormOnMiniSpartan6/STORM_SoC_basic.vhd" line 529: Output port <c0> of the instance <SYSCON_CLK> is unconnected or connected to loadless signal.
INFO:Xst:3210 - "/home/martin/git-work/MyStormOnMiniSpartan6/STORM_SoC_basic.vhd" line 555: Output port <SYS_RST_O> of the instance <SYSCON_RST> is unconnected or connected to loadless signal.
INFO:Xst:3210 - "/home/martin/git-work/MyStormOnMiniSpartan6/STORM_SoC_basic.vhd" line 725: Output port <wb_stall_o> of the instance <SDRAM> is unconnected or connected to loadless signal.
INFO:Xst:3210 - "/home/martin/git-work/MyStormOnMiniSpartan6/STORM_SoC_basic.vhd" line 918: Output port <ACK_LINES_O> of the instance <VECTOR_INTERRUPT_CONTROLLER> is unconnected or connected to loadless signal.
WARNING:Xst:653 - Signal <INT_LINES<4>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
Found 1-bit tristate buffer for signal <I2C_SCL_IO> created at line 906
Found 1-bit tristate buffer for signal <I2C_SDA_IO> created at line 907
Found 32-bit comparator greater for signal <CORE_WB_ADR_O[31]_GND_5_o_LessThan_6_o> created at line 630
Found 32-bit comparator lessequal for signal <n0009> created at line 631
Found 32-bit comparator greater for signal <CORE_WB_ADR_O[31]_GND_5_o_LessThan_8_o> created at line 631
Found 32-bit comparator lessequal for signal <n0014> created at line 632
Found 32-bit comparator greater for signal <CORE_WB_ADR_O[31]_PWR_5_o_LessThan_10_o> created at line 632
Found 32-bit comparator greater for signal <n0019> created at line 633
Found 32-bit comparator greater for signal <CORE_WB_ADR_O[31]_PWR_5_o_LessThan_12_o> created at line 633
Found 32-bit comparator lessequal for signal <n0024> created at line 634
Found 32-bit comparator greater for signal <CORE_WB_ADR_O[31]_PWR_5_o_LessThan_14_o> created at line 634
Found 32-bit comparator lessequal for signal <n0029> created at line 635
Found 32-bit comparator lessequal for signal <n0034> created at line 636
Found 32-bit comparator greater for signal <CORE_WB_ADR_O[31]_PWR_5_o_LessThan_18_o> created at line 636
Found 32-bit comparator lessequal for signal <n0039> created at line 637
Found 32-bit comparator greater for signal <CORE_WB_ADR_O[31]_PWR_5_o_LessThan_20_o> created at line 637
Summary:
inferred 14 Comparator(s).
inferred 16 Multiplexer(s).
inferred 2 Tristate(s).
Unit <STORM_SoC_basic> synthesized.
Synthesizing Unit <SYSTEM_PLL>.
Related source file is "/home/martin/git-work/MyStormOnMiniSpartan6/SYSTEM_PLL.vhd".
Summary:
no macro.
Unit <SYSTEM_PLL> synthesized.
Synthesizing Unit <STORM_TOP>.
Related source file is "/home/martin/git-work/MyStormOnMiniSpartan6/STORM_TOP.vhd".
I_CACHE_PAGES = 8
I_CACHE_PAGE_SIZE = 32
D_CACHE_PAGES = 8
D_CACHE_PAGE_SIZE = 32
BOOT_VECTOR = "11111111111100000000000000000000"
IO_UC_BEGIN = "11111111111111110000000000000000"
IO_UC_END = "11111111111111111111111111111111"
INFO:Xst:3210 - "/home/martin/git-work/MyStormOnMiniSpartan6/STORM_TOP.vhd" line 216: Output port <B_A_SEL_O> of the instance <I_CACHE_INST> is unconnected or connected to loadless signal.
INFO:Xst:3210 - "/home/martin/git-work/MyStormOnMiniSpartan6/STORM_TOP.vhd" line 216: Output port <B_DATA_O> of the instance <I_CACHE_INST> is unconnected or connected to loadless signal.
INFO:Xst:3210 - "/home/martin/git-work/MyStormOnMiniSpartan6/STORM_TOP.vhd" line 216: Output port <B_D_SEL_O> of the instance <I_CACHE_INST> is unconnected or connected to loadless signal.
INFO:Xst:3210 - "/home/martin/git-work/MyStormOnMiniSpartan6/STORM_TOP.vhd" line 216: Output port <C_DIRTY_O> of the instance <I_CACHE_INST> is unconnected or connected to loadless signal.
INFO:Xst:3210 - "/home/martin/git-work/MyStormOnMiniSpartan6/STORM_TOP.vhd" line 216: Output port <C_SYNC_O> of the instance <I_CACHE_INST> is unconnected or connected to loadless signal.
Summary:
no macro.
Unit <STORM_TOP> synthesized.
Synthesizing Unit <CORE>.
Related source file is "/home/martin/git-work/MyStormOnMiniSpartan6/CORE.vhd".
BOOT_VEC = "11111111111100000000000000000000"
Summary:
no macro.
Unit <CORE> synthesized.
Synthesizing Unit <OPCODE_DECODER>.
Related source file is "/home/martin/git-work/MyStormOnMiniSpartan6/OPCODE_DECODER.vhd".
WARNING:Xst:647 - Input <OPCODE_CTRL_I<15:10>> is never used. This port will be preserved and left unconnected if it belongs to a top-level block or it belongs to a sub-block and the hierarchy of this sub-block is preserved.
WARNING:Xst:653 - Signal <OPCODE_MISC_O<32:0>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
Found 5-bit adder for signal <R_OFFSET[4]_GND_19_o_add_106_OUT> created at line 1241.
Found 4-bit adder for signal <DUAL_OP[4]_GND_19_o_add_111_OUT> created at line 1241.
Found 5-bit adder for signal <GND_19_o_GND_19_o_add_117_OUT> created at line 1241.
Found 5-bit adder for signal <GND_19_o_GND_19_o_add_119_OUT> created at line 1241.
Found 5-bit adder for signal <GND_19_o_GND_19_o_add_121_OUT> created at line 1241.
Found 5-bit adder for signal <GND_19_o_GND_19_o_add_123_OUT> created at line 1241.
Found 5-bit adder for signal <GND_19_o_GND_19_o_add_125_OUT> created at line 1241.
Found 5-bit adder for signal <GND_19_o_GND_19_o_add_127_OUT> created at line 1241.
Found 5-bit adder for signal <GND_19_o_GND_19_o_add_129_OUT> created at line 1241.
Found 5-bit adder for signal <GND_19_o_GND_19_o_add_131_OUT> created at line 1241.
Found 5-bit adder for signal <GND_19_o_GND_19_o_add_133_OUT> created at line 1241.
Found 5-bit adder for signal <GND_19_o_GND_19_o_add_135_OUT> created at line 1241.
Found 5-bit adder for signal <GND_19_o_GND_19_o_add_137_OUT> created at line 1241.
Found 5-bit adder for signal <GND_19_o_GND_19_o_add_139_OUT> created at line 1241.
Found 5-bit adder for signal <GND_19_o_GND_19_o_add_141_OUT> created at line 1241.
Found 5-bit adder for signal <GND_19_o_GND_19_o_add_143_OUT> created at line 1241.
Found 5-bit adder for signal <GND_19_o_GND_19_o_add_145_OUT> created at line 1241.
Found 5-bit adder for signal <GND_19_o_GND_19_o_add_148_OUT> created at line 1241.
Found 5-bit subtractor for signal <GND_19_o_GND_19_o_sub_108_OUT<4:0>> created at line 1308.
Found 5-bit subtractor for signal <GND_19_o_GND_19_o_sub_152_OUT<4:0>> created at line 1308.
Found 3-bit 5-to-1 multiplexer for signal <INSTR_REG[20]_GND_19_o_wide_mux_34_OUT> created at line 156.
Found 3-bit 5-to-1 multiplexer for signal <INSTR_REG[20]_GND_19_o_wide_mux_101_OUT> created at line 424.
Found 1-bit 16-to-1 multiplexer for signal <DUAL_OP[4]_INSTR_REG[15]_Mux_102_o> created at line 571.
Found 1-bit 3-to-1 multiplexer for signal <DEC_CTRL<45>> created at line 95.
Found 1-bit 3-to-1 multiplexer for signal <DEC_CTRL<44>> created at line 95.
Found 1-bit 3-to-1 multiplexer for signal <DEC_CTRL<43>> created at line 95.
Found 1-bit 4-to-1 multiplexer for signal <DEC_CTRL<42>> created at line 95.
Found 1-bit 3-to-1 multiplexer for signal <DEC_CTRL<41>> created at line 95.
Found 1-bit 3-to-1 multiplexer for signal <DEC_CTRL<40>> created at line 95.
Found 1-bit 3-to-1 multiplexer for signal <DEC_CTRL<39>> created at line 95.
Found 1-bit 4-to-1 multiplexer for signal <DEC_CTRL<26>> created at line 95.
Found 1-bit 3-to-1 multiplexer for signal <DEC_CTRL<23>> created at line 95.
Found 1-bit 4-to-1 multiplexer for signal <DEC_CTRL<22>> created at line 95.
Found 1-bit 4-to-1 multiplexer for signal <DEC_CTRL<21>> created at line 95.
Found 1-bit 4-to-1 multiplexer for signal <DEC_CTRL<20>> created at line 95.
Found 1-bit 4-to-1 multiplexer for signal <DEC_CTRL<19>> created at line 95.
Found 1-bit 4-to-1 multiplexer for signal <DEC_CTRL<18>> created at line 95.
Found 1-bit 4-to-1 multiplexer for signal <DEC_CTRL<17>> created at line 95.
Found 1-bit 4-to-1 multiplexer for signal <DEC_CTRL<11>> created at line 95.
Found 1-bit 4-to-1 multiplexer for signal <DEC_CTRL<9>> created at line 95.
Found 1-bit 4-to-1 multiplexer for signal <DEC_CTRL<8>> created at line 95.
Found 1-bit 4-to-1 multiplexer for signal <DEC_CTRL<7>> created at line 95.
Found 1-bit 4-to-1 multiplexer for signal <DEC_CTRL<6>> created at line 95.
Found 1-bit 4-to-1 multiplexer for signal <DEC_CTRL<5>> created at line 95.
Found 1-bit 3-to-1 multiplexer for signal <DEC_CTRL<4>> created at line 95.
Found 1-bit 4-to-1 multiplexer for signal <DEC_CTRL<2>> created at line 95.
Found 1-bit 4-to-1 multiplexer for signal <DEC_CTRL<1>> created at line 95.
Found 12-bit 4-to-1 multiplexer for signal <OP_ADR_OUT> created at line 95.
Found 3-bit 4-to-1 multiplexer for signal <REG_SEL> created at line 95.
Found 32-bit 4-to-1 multiplexer for signal <IMM_OUT> created at line 95.
Found 5-bit 4-to-1 multiplexer for signal <NEXT_DUAL_OP> created at line 95.
Summary:
inferred 20 Adder/Subtractor(s).
inferred 408 Multiplexer(s).
Unit <OPCODE_DECODER> synthesized.
Synthesizing Unit <FLOW_CTRL>.
Related source file is "/home/martin/git-work/MyStormOnMiniSpartan6/FLOW_CTRL.vhd".
WARNING:Xst:647 - Input <OPCODE_CTRL_I<0:0>> is never used. This port will be preserved and left unconnected if it belongs to a top-level block or it belongs to a sub-block and the hierarchy of this sub-block is preserved.
WARNING:Xst:647 - Input <OPCODE_MISC_I<32:0>> is never used. This port will be preserved and left unconnected if it belongs to a top-level block or it belongs to a sub-block and the hierarchy of this sub-block is preserved.
WARNING:Xst:647 - Input <OPCODE_MISC_I<86:80>> is never used. This port will be preserved and left unconnected if it belongs to a top-level block or it belongs to a sub-block and the hierarchy of this sub-block is preserved.
WARNING:Xst:647 - Input <OPCODE_MISC_I<99:97>> is never used. This port will be preserved and left unconnected if it belongs to a top-level block or it belongs to a sub-block and the hierarchy of this sub-block is preserved.
WARNING:Xst:647 - Input <SREG_I<27:5>> is never used. This port will be preserved and left unconnected if it belongs to a top-level block or it belongs to a sub-block and the hierarchy of this sub-block is preserved.
WARNING:Xst:653 - Signal <OPCODE_CTRL_O<15:10>> is used but never assigned. This sourceless signal will be automatically connected to value GND.
Found 1-bit register for signal <IF_CYCLE_MOD>.
Found 1-bit register for signal <WR_IR_EN>.
Found 32-bit register for signal <INSTR_REG>.
Found 32-bit register for signal <INSTR_BUF>.
Found 1-bit register for signal <INS_BUF_SEL>.
Found 47-bit register for signal <DEC_CTRL_FF>.
Found 15-bit register for signal <OP_ADR_O>.
Found 32-bit register for signal <IMM_O>.
Found 1-bit register for signal <OPCODE_CTRL_O<9>>.
Found 1-bit register for signal <OPCODE_CTRL_O<8>>.
Found 1-bit register for signal <OPCODE_CTRL_O<7>>.
Found 1-bit register for signal <OPCODE_CTRL_O<6>>.
Found 1-bit register for signal <OPCODE_CTRL_O<5>>.
Found 1-bit register for signal <OPCODE_CTRL_O<4>>.
Found 1-bit register for signal <OPCODE_CTRL_O<3>>.
Found 1-bit register for signal <OPCODE_CTRL_O<2>>.
Found 1-bit register for signal <OPCODE_CTRL_O<1>>.
Found 1-bit register for signal <OPCODE_CTRL_O<0>>.
Found 47-bit register for signal <MS_CTRL>.
Found 47-bit register for signal <EX1_CTRL>.
Found 47-bit register for signal <MEM_CTRL>.
Found 47-bit register for signal <WB_CTRL>.
Found 2-bit register for signal <IF_CYCLE_CNT>.
Found 2-bit subtractor for signal <GND_20_o_GND_20_o_sub_2_OUT<1:0>> created at line 1308.
Found 1-bit 16-to-1 multiplexer for signal <COND_CHECK_SYS.valid_v> created at line 339.
Summary:
inferred 1 Adder/Subtractor(s).
inferred 361 D-type flip-flop(s).
inferred 21 Multiplexer(s).
Unit <FLOW_CTRL> synthesized.
Synthesizing Unit <MC_SYS>.
Related source file is "/home/martin/git-work/MyStormOnMiniSpartan6/MC_SYS.vhd".
BOOT_VEC = "11111111111100000000000000000000"
WARNING:Xst:647 - Input <CTRL_I<1:1>> is never used. This port will be preserved and left unconnected if it belongs to a top-level block or it belongs to a sub-block and the hierarchy of this sub-block is preserved.
WARNING:Xst:647 - Input <CTRL_I<5:3>> is never used. This port will be preserved and left unconnected if it belongs to a top-level block or it belongs to a sub-block and the hierarchy of this sub-block is preserved.
WARNING:Xst:647 - Input <CTRL_I<16:12>> is never used. This port will be preserved and left unconnected if it belongs to a top-level block or it belongs to a sub-block and the hierarchy of this sub-block is preserved.
WARNING:Xst:647 - Input <CTRL_I<28:18>> is never used. This port will be preserved and left unconnected if it belongs to a top-level block or it belongs to a sub-block and the hierarchy of this sub-block is preserved.
WARNING:Xst:647 - Input <CTRL_I<46:39>> is never used. This port will be preserved and left unconnected if it belongs to a top-level block or it belongs to a sub-block and the hierarchy of this sub-block is preserved.
Found 1-bit register for signal <IRQ_TAKEN>.
Found 1-bit register for signal <DAB_TAKEN>.
Found 1-bit register for signal <IAB_TAKEN>.
Found 4-bit register for signal <EXT_INT_REQ_SYNC>.
Found 3-bit register for signal <BR_CNT>.
Found 32-bit register for signal <MCR_PC>.
Found 32-bit register for signal <MCR_CMSR>.
Found 32-bit register for signal <SMSR_FIQ>.
Found 32-bit register for signal <SMSR_SVC>.
Found 32-bit register for signal <SMSR_ABT>.
Found 32-bit register for signal <SMSR_IRQ>.
Found 32-bit register for signal <SMSR_UND>.
Found 32-bit register for signal <SMSR_SYS>.
Found 32-bit register for signal <CP_REG_FILE<15>>.
Found 32-bit register for signal <CP_REG_FILE<14>>.
Found 32-bit register for signal <CP_REG_FILE<13>>.
Found 32-bit register for signal <CP_REG_FILE<12>>.
Found 32-bit register for signal <CP_REG_FILE<11>>.
Found 32-bit register for signal <CP_REG_FILE<10>>.
Found 32-bit register for signal <CP_REG_FILE<9>>.
Found 32-bit register for signal <CP_REG_FILE<8>>.
Found 32-bit register for signal <CP_REG_FILE<7>>.
Found 32-bit register for signal <CP_REG_FILE<6>>.
Found 32-bit register for signal <CP_REG_FILE<5>>.
Found 32-bit register for signal <CP_REG_FILE<4>>.
Found 32-bit register for signal <CP_REG_FILE<3>>.
Found 32-bit register for signal <CP_REG_FILE<2>>.
Found 32-bit register for signal <CP_REG_FILE<1>>.
Found 32-bit register for signal <CP_REG_FILE<0>>.
Found 32-bit register for signal <PC_DELAY_BUF<4>>.
Found 32-bit register for signal <PC_DELAY_BUF<3>>.
Found 32-bit register for signal <PC_DELAY_BUF<2>>.
Found 32-bit register for signal <PC_DELAY_BUF<1>>.
Found 32-bit register for signal <PC_DELAY_BUF<0>>.
Found 1-bit register for signal <FIQ_TAKEN>.
Found 30-bit adder for signal <MCR_PC[31]_GND_21_o_add_24_OUT> created at line 1241.
Found 16-bit adder for signal <CP_REG_FILE[8][15]_GND_21_o_add_103_OUT> created at line 1241.
Found 16-bit adder for signal <CP_REG_FILE[8][31]_GND_21_o_add_105_OUT> created at line 1241.
Found 3-bit subtractor for signal <GND_21_o_GND_21_o_sub_4_OUT<2:0>> created at line 1308.
INFO:Xst:3019 - HDL ADVISOR - 512 flip-flops were inferred for signal <CP_REG_FILE>. You may be trying to describe a RAM in a way that is incompatible with block and distributed RAM resources available on Xilinx devices, or with a specific template that is not supported. Please review the Xilinx resources documentation and the XST user manual for coding guidelines. Taking advantage of RAM resources will lead to improved device usage and reduced synthesis time.
Found 32-bit 16-to-1 multiplexer for signal <CTRL_I[38]_CP_REG_FILE[15][31]_wide_mux_151_OUT> created at line 615.
Summary:
inferred 4 Adder/Subtractor(s).
inferred 939 D-type flip-flop(s).
inferred 263 Multiplexer(s).
Unit <MC_SYS> synthesized.
Synthesizing Unit <REG_FILE>.
Related source file is "/home/martin/git-work/MyStormOnMiniSpartan6/REG_FILE.vhd".
WARNING:Xst:647 - Input <CTRL_I<4:1>> is never used. This port will be preserved and left unconnected if it belongs to a top-level block or it belongs to a sub-block and the hierarchy of this sub-block is preserved.
WARNING:Xst:647 - Input <CTRL_I<16:10>> is never used. This port will be preserved and left unconnected if it belongs to a top-level block or it belongs to a sub-block and the hierarchy of this sub-block is preserved.
WARNING:Xst:647 - Input <CTRL_I<46:22>> is never used. This port will be preserved and left unconnected if it belongs to a top-level block or it belongs to a sub-block and the hierarchy of this sub-block is preserved.
WARNING:Xst:647 - Input <OP_ADR_I<14:12>> is never used. This port will be preserved and left unconnected if it belongs to a top-level block or it belongs to a sub-block and the hierarchy of this sub-block is preserved.
WARNING:Xst:647 - Input <RST_I> is never used. This port will be preserved and left unconnected if it belongs to a top-level block or it belongs to a sub-block and the hierarchy of this sub-block is preserved.
Found 32x32-bit dual-port RAM <Mram_REG_FILE> for signal <REG_FILE>.
Summary:
inferred 3 RAM(s).
inferred 4 Multiplexer(s).
Unit <REG_FILE> synthesized.
Synthesizing Unit <ADR_TRANSLATION_UNIT>.
Related source file is "/home/martin/git-work/MyStormOnMiniSpartan6/REG_FILE.vhd".
Summary:
inferred 30 Multiplexer(s).
Unit <ADR_TRANSLATION_UNIT> synthesized.
Synthesizing Unit <OPERAND_UNIT>.
Related source file is "/home/martin/git-work/MyStormOnMiniSpartan6/OPERAND_UNIT.vhd".
WARNING:Xst:647 - Input <CTRL_I<0:0>> is never used. This port will be preserved and left unconnected if it belongs to a top-level block or it belongs to a sub-block and the hierarchy of this sub-block is preserved.
WARNING:Xst:647 - Input <CTRL_I<3:3>> is never used. This port will be preserved and left unconnected if it belongs to a top-level block or it belongs to a sub-block and the hierarchy of this sub-block is preserved.
WARNING:Xst:647 - Input <CTRL_I<38:5>> is never used. This port will be preserved and left unconnected if it belongs to a top-level block or it belongs to a sub-block and the hierarchy of this sub-block is preserved.
WARNING:Xst:647 - Input <CTRL_I<46:46>> is never used. This port will be preserved and left unconnected if it belongs to a top-level block or it belongs to a sub-block and the hierarchy of this sub-block is preserved.
WARNING:Xst:647 - Input <MSU_FW_I<31:0>> is never used. This port will be preserved and left unconnected if it belongs to a top-level block or it belongs to a sub-block and the hierarchy of this sub-block is preserved.
WARNING:Xst:647 - Input <ALU_FW_I<38:37>> is never used. This port will be preserved and left unconnected if it belongs to a top-level block or it belongs to a sub-block and the hierarchy of this sub-block is preserved.
WARNING:Xst:647 - Input <ALU_FW_I<41:41>> is never used. This port will be preserved and left unconnected if it belongs to a top-level block or it belongs to a sub-block and the hierarchy of this sub-block is preserved.
WARNING:Xst:647 - Input <MEM_FW_I<39:37>> is never used. This port will be preserved and left unconnected if it belongs to a top-level block or it belongs to a sub-block and the hierarchy of this sub-block is preserved.
WARNING:Xst:647 - Input <MEM_FW_I<41:41>> is never used. This port will be preserved and left unconnected if it belongs to a top-level block or it belongs to a sub-block and the hierarchy of this sub-block is preserved.
WARNING:Xst:647 - Input <WB_FW_I<41:37>> is never used. This port will be preserved and left unconnected if it belongs to a top-level block or it belongs to a sub-block and the hierarchy of this sub-block is preserved.
Found 4-bit comparator equal for signal <MSU_FW_I[35]_OP_ADR_I[3]_equal_1_o> created at line 80
Found 4-bit comparator equal for signal <MSU_FW_I[35]_OP_ADR_I[7]_equal_2_o> created at line 83
Found 4-bit comparator equal for signal <MSU_FW_I[35]_OP_ADR_I[11]_equal_3_o> created at line 86
Found 4-bit comparator equal for signal <ALU_FW_I[35]_OP_ADR_I[3]_equal_4_o> created at line 91
Found 4-bit comparator equal for signal <ALU_FW_I[35]_OP_ADR_I[7]_equal_5_o> created at line 94
Found 4-bit comparator equal for signal <ALU_FW_I[35]_OP_ADR_I[11]_equal_6_o> created at line 97
Found 4-bit comparator equal for signal <MEM_FW_I[35]_OP_ADR_I[3]_equal_7_o> created at line 102
Found 4-bit comparator equal for signal <MEM_FW_I[35]_OP_ADR_I[7]_equal_8_o> created at line 105
Found 4-bit comparator equal for signal <MEM_FW_I[35]_OP_ADR_I[11]_equal_9_o> created at line 108
Found 4-bit comparator equal for signal <WB_FW_I[35]_OP_ADR_I[3]_equal_10_o> created at line 113
Found 4-bit comparator equal for signal <WB_FW_I[35]_OP_ADR_I[7]_equal_11_o> created at line 116
Found 4-bit comparator equal for signal <WB_FW_I[35]_OP_ADR_I[11]_equal_12_o> created at line 119
Summary:
inferred 12 Comparator(s).
inferred 26 Multiplexer(s).
Unit <OPERAND_UNIT> synthesized.
Synthesizing Unit <MS_UNIT>.
Related source file is "/home/martin/git-work/MyStormOnMiniSpartan6/MS_UNIT.vhd".
WARNING:Xst:647 - Input <CTRL_I<4:1>> is never used. This port will be preserved and left unconnected if it belongs to a top-level block or it belongs to a sub-block and the hierarchy of this sub-block is preserved.
WARNING:Xst:647 - Input <CTRL_I<15:10>> is never used. This port will be preserved and left unconnected if it belongs to a top-level block or it belongs to a sub-block and the hierarchy of this sub-block is preserved.
WARNING:Xst:647 - Input <CTRL_I<21:18>> is never used. This port will be preserved and left unconnected if it belongs to a top-level block or it belongs to a sub-block and the hierarchy of this sub-block is preserved.
WARNING:Xst:647 - Input <CTRL_I<25:23>> is never used. This port will be preserved and left unconnected if it belongs to a top-level block or it belongs to a sub-block and the hierarchy of this sub-block is preserved.
WARNING:Xst:647 - Input <CTRL_I<28:27>> is never used. This port will be preserved and left unconnected if it belongs to a top-level block or it belongs to a sub-block and the hierarchy of this sub-block is preserved.
WARNING:Xst:647 - Input <CTRL_I<30:30>> is never used. This port will be preserved and left unconnected if it belongs to a top-level block or it belongs to a sub-block and the hierarchy of this sub-block is preserved.
WARNING:Xst:647 - Input <CTRL_I<32:32>> is never used. This port will be preserved and left unconnected if it belongs to a top-level block or it belongs to a sub-block and the hierarchy of this sub-block is preserved.
WARNING:Xst:647 - Input <CTRL_I<38:35>> is never used. This port will be preserved and left unconnected if it belongs to a top-level block or it belongs to a sub-block and the hierarchy of this sub-block is preserved.
WARNING:Xst:647 - Input <CTRL_I<46:41>> is never used. This port will be preserved and left unconnected if it belongs to a top-level block or it belongs to a sub-block and the hierarchy of this sub-block is preserved.
Found 32-bit register for signal <OP_B_REG>.
Found 32-bit register for signal <BP_REG>.
Found 5-bit register for signal <SHIFT_V_TEMP>.
Found 32-bit register for signal <OP_A_REG>.
Summary:
inferred 101 D-type flip-flop(s).
inferred 3 Multiplexer(s).
Unit <MS_UNIT> synthesized.
Synthesizing Unit <MULTIPLY_UNIT>.
Related source file is "/home/martin/git-work/MyStormOnMiniSpartan6/MULTIPLY_UNIT.vhd".
Found 32x32-bit multiplier for signal <TEMP> created at line 40.
Summary:
inferred 1 Multiplier(s).
Unit <MULTIPLY_UNIT> synthesized.
Synthesizing Unit <BARREL_SHIFTER>.
Related source file is "/home/martin/git-work/MyStormOnMiniSpartan6/BARREL_SHIFTER.vhd".
Found 5-bit subtractor for signal <GND_28_o_GND_28_o_sub_18_OUT<4:0>> created at line 84.
Found 5-bit subtractor for signal <GND_28_o_GND_28_o_sub_3_OUT<4:0>> created at line 57.
Found 32-bit shifter logical left for signal <SHIFT_DATA_I[31]_SHIFT_POS_I[4]_shift_left_1_OUT> created at line 56
Found 32-bit shifter logical right for signal <SHIFT_DATA_I[31]_SHIFT_POS_I[4]_shift_right_6_OUT> created at line 65
Found 32-bit shifter arithmetic right for signal <SHIFT_DATA_I[31]_SHIFT_POS_I[4]_shift_right_11_OUT> created at line 74
Found 32-bit shifter rotate right for signal <SHIFT_DATA_I[31]_SHIFT_POS_I[4]_rotate_right_16_OUT> created at line 83
Found 1-bit 32-to-1 multiplexer for signal <GND_28_o_SHIFT_DATA_I[31]_Mux_3_o> created at line 57.
Found 1-bit 32-to-1 multiplexer for signal <GND_28_o_SHIFT_DATA_I[31]_Mux_18_o> created at line 84.
Found 32-bit 4-to-1 multiplexer for signal <BARREL_SHIFTER.SHIFT_DATA> created at line 50.
Found 1-bit 4-to-1 multiplexer for signal <CARRY_O> created at line 50.
Summary:
inferred 2 Adder/Subtractor(s).
inferred 11 Multiplexer(s).
inferred 4 Combinational logic shifter(s).
Unit <BARREL_SHIFTER> synthesized.
Synthesizing Unit <ALU>.
Related source file is "/home/martin/git-work/MyStormOnMiniSpartan6/ALU.vhd".
WARNING:Xst:647 - Input <CTRL_I<4:1>> is never used. This port will be preserved and left unconnected if it belongs to a top-level block or it belongs to a sub-block and the hierarchy of this sub-block is preserved.
WARNING:Xst:647 - Input <CTRL_I<16:10>> is never used. This port will be preserved and left unconnected if it belongs to a top-level block or it belongs to a sub-block and the hierarchy of this sub-block is preserved.
WARNING:Xst:647 - Input <CTRL_I<25:23>> is never used. This port will be preserved and left unconnected if it belongs to a top-level block or it belongs to a sub-block and the hierarchy of this sub-block is preserved.
WARNING:Xst:647 - Input <CTRL_I<28:27>> is never used. This port will be preserved and left unconnected if it belongs to a top-level block or it belongs to a sub-block and the hierarchy of this sub-block is preserved.
WARNING:Xst:647 - Input <CTRL_I<30:30>> is never used. This port will be preserved and left unconnected if it belongs to a top-level block or it belongs to a sub-block and the hierarchy of this sub-block is preserved.
WARNING:Xst:647 - Input <CTRL_I<32:32>> is never used. This port will be preserved and left unconnected if it belongs to a top-level block or it belongs to a sub-block and the hierarchy of this sub-block is preserved.
WARNING:Xst:647 - Input <CTRL_I<46:35>> is never used. This port will be preserved and left unconnected if it belongs to a top-level block or it belongs to a sub-block and the hierarchy of this sub-block is preserved.
WARNING:Xst:647 - Input <FLAG_I<0:0>> is never used. This port will be preserved and left unconnected if it belongs to a top-level block or it belongs to a sub-block and the hierarchy of this sub-block is preserved.
WARNING:Xst:647 - Input <FLAG_I<3:2>> is never used. This port will be preserved and left unconnected if it belongs to a top-level block or it belongs to a sub-block and the hierarchy of this sub-block is preserved.
Found 32-bit register for signal <OP_B>.
Found 32-bit register for signal <BP1_O>.
Found 1-bit register for signal <MS_CARRY_REG>.
Found 1-bit register for signal <MS_OVFL_REG>.
Found 32-bit register for signal <OP_A>.
Found 33-bit adder for signal <n0128> created at line 176.
Found 33-bit adder for signal <ADDER_SUBTRACTOR.adder_tmp_v> created at line 176.
Summary:
inferred 2 Adder/Subtractor(s).
inferred 98 D-type flip-flop(s).
inferred 22 Multiplexer(s).
Unit <ALU> synthesized.
Synthesizing Unit <LOAD_STORE_UNIT>.
Related source file is "/home/martin/git-work/MyStormOnMiniSpartan6/LOAD_STORE_UNIT.vhd".
WARNING:Xst:647 - Input <CTRL_I<2:1>> is never used. This port will be preserved and left unconnected if it belongs to a top-level block or it belongs to a sub-block and the hierarchy of this sub-block is preserved.
WARNING:Xst:647 - Input <CTRL_I<4:4>> is never used. This port will be preserved and left unconnected if it belongs to a top-level block or it belongs to a sub-block and the hierarchy of this sub-block is preserved.
WARNING:Xst:647 - Input <CTRL_I<21:10>> is never used. This port will be preserved and left unconnected if it belongs to a top-level block or it belongs to a sub-block and the hierarchy of this sub-block is preserved.
WARNING:Xst:647 - Input <CTRL_I<25:25>> is never used. This port will be preserved and left unconnected if it belongs to a top-level block or it belongs to a sub-block and the hierarchy of this sub-block is preserved.
WARNING:Xst:647 - Input <CTRL_I<46:27>> is never used. This port will be preserved and left unconnected if it belongs to a top-level block or it belongs to a sub-block and the hierarchy of this sub-block is preserved.
Found 32-bit register for signal <ADR_BUFFER>.
Found 32-bit register for signal <BP_BUFFER>.
Found 32-bit register for signal <DATA_BUFFER>.
Found 1-bit 3-to-1 multiplexer for signal <MEM_DATA_INTERFACE.OUTPUT_DATA_BUFFER<31>> created at line 135.
Found 1-bit 3-to-1 multiplexer for signal <MEM_DATA_INTERFACE.OUTPUT_DATA_BUFFER<30>> created at line 135.
Found 1-bit 3-to-1 multiplexer for signal <MEM_DATA_INTERFACE.OUTPUT_DATA_BUFFER<29>> created at line 135.
Found 1-bit 3-to-1 multiplexer for signal <MEM_DATA_INTERFACE.OUTPUT_DATA_BUFFER<28>> created at line 135.
Found 1-bit 3-to-1 multiplexer for signal <MEM_DATA_INTERFACE.OUTPUT_DATA_BUFFER<27>> created at line 135.
Found 1-bit 3-to-1 multiplexer for signal <MEM_DATA_INTERFACE.OUTPUT_DATA_BUFFER<26>> created at line 135.
Found 1-bit 3-to-1 multiplexer for signal <MEM_DATA_INTERFACE.OUTPUT_DATA_BUFFER<25>> created at line 135.
Found 1-bit 3-to-1 multiplexer for signal <MEM_DATA_INTERFACE.OUTPUT_DATA_BUFFER<24>> created at line 135.
Summary:
inferred 96 D-type flip-flop(s).
inferred 25 Multiplexer(s).
Unit <LOAD_STORE_UNIT> synthesized.
Synthesizing Unit <WB_UNIT>.
Related source file is "/home/martin/git-work/MyStormOnMiniSpartan6/WB_UNIT.vhd".
WARNING:Xst:647 - Input <CTRL_I<4:1>> is never used. This port will be preserved and left unconnected if it belongs to a top-level block or it belongs to a sub-block and the hierarchy of this sub-block is preserved.
WARNING:Xst:647 - Input <CTRL_I<21:10>> is never used. This port will be preserved and left unconnected if it belongs to a top-level block or it belongs to a sub-block and the hierarchy of this sub-block is preserved.
WARNING:Xst:647 - Input <CTRL_I<46:27>> is never used. This port will be preserved and left unconnected if it belongs to a top-level block or it belongs to a sub-block and the hierarchy of this sub-block is preserved.
WARNING:Xst:647 - Input <ADR_BUFF_I<31:2>> is never used. This port will be preserved and left unconnected if it belongs to a top-level block or it belongs to a sub-block and the hierarchy of this sub-block is preserved.
Found 2-bit register for signal <ADR_BUFF>.
Found 32-bit register for signal <ALU_DATA>.
Found 32-bit 20-to-1 multiplexer for signal <WB_DATA_MUX.RD_DATA_TMP> created at line 101.
Summary:
inferred 34 D-type flip-flop(s).
inferred 2 Multiplexer(s).
Unit <WB_UNIT> synthesized.
Synthesizing Unit <CACHE>.
Related source file is "/home/martin/git-work/MyStormOnMiniSpartan6/CACHE.vhd".
CACHE_PAGES = 8
LOG2_CACHE_PAGES = 3
PAGE_SIZE = 32
LOG2_PAGE_SIZE = 5
WARNING:Xst:647 - Input <B_WE_I> is never used. This port will be preserved and left unconnected if it belongs to a top-level block or it belongs to a sub-block and the hierarchy of this sub-block is preserved.
Found 256x8-bit single-port RAM <Mram_CACHE_MEM_LL> for signal <CACHE_MEM_LL>.
Found 256x8-bit single-port RAM <Mram_CACHE_MEM_LH> for signal <CACHE_MEM_LH>.
Found 256x8-bit single-port RAM <Mram_CACHE_MEM_HL> for signal <CACHE_MEM_HL>.
Found 256x8-bit single-port RAM <Mram_CACHE_MEM_HH> for signal <CACHE_MEM_HH>.
Found 25-bit register for signal <PAGE_BASE_ADR<1>>.
Found 25-bit register for signal <PAGE_BASE_ADR<2>>.
Found 25-bit register for signal <PAGE_BASE_ADR<3>>.
Found 25-bit register for signal <PAGE_BASE_ADR<4>>.
Found 25-bit register for signal <PAGE_BASE_ADR<5>>.
Found 25-bit register for signal <PAGE_BASE_ADR<6>>.
Found 25-bit register for signal <PAGE_BASE_ADR<7>>.
Found 3-bit register for signal <PAGE_SELECT_FF>.
Found 1-bit register for signal <UPDATE_HIST_FF>.
Found 3-bit register for signal <HIST_MEM<7>>.
Found 3-bit register for signal <HIST_MEM<6>>.
Found 3-bit register for signal <HIST_MEM<5>>.
Found 3-bit register for signal <HIST_MEM<4>>.
Found 3-bit register for signal <HIST_MEM<3>>.
Found 3-bit register for signal <HIST_MEM<2>>.
Found 3-bit register for signal <HIST_MEM<1>>.
Found 3-bit register for signal <HIST_MEM<0>>.
Found 8-bit register for signal <VALID_FLAG>.
Found 8-bit register for signal <DIRTY_FLAG>.
Found 3-bit register for signal <ARB_STATE>.
Found 32-bit register for signal <ADR_BUF>.
Found 32-bit register for signal <DAT_BUF>.
Found 3-bit register for signal <HST_BUF>.
Found 1-bit register for signal <BIT_BUF>.
Found 32-bit register for signal <CACHE_R_DATA>.
Found 1-bit register for signal <P_DATA_O_SEL>.
Found 32-bit register for signal <P_DATA_O_BUF>.
Found 25-bit register for signal <PAGE_BASE_ADR<0>>.
Found finite state machine <FSM_0> for signal <ARB_STATE>.
-----------------------------------------------------------------------
| States | 7 |
| Transitions | 27 |
| Inputs | 11 |
| Outputs | 6 |
| Clock | CORE_CLK_I (rising_edge) |
| Reset | RST_I (positive) |
| Reset type | synchronous |
| Reset State | storm_access |
| Power Up State | storm_access |
| Encoding | auto |
| Implementation | LUT |
-----------------------------------------------------------------------
Found 25-bit 8-to-1 multiplexer for signal <B_A_SEL_O<31:7>> created at line 166.
Found 1-bit 8-to-1 multiplexer for signal <B_P_SEL_I[2]_DIRTY_FLAG[7]_Mux_97_o> created at line 289.
Found 1-bit 8-to-1 multiplexer for signal <B_P_SEL_I[2]_VALID_FLAG[7]_Mux_98_o> created at line 289.
Found 1-bit 8-to-1 multiplexer for signal <HIST_MEM[7][2]_DIRTY_FLAG[7]_Mux_123_o> created at line 397.
Found 1-bit 8-to-1 multiplexer for signal <HIST_MEM[7][2]_VALID_FLAG[7]_Mux_124_o> created at line 398.
Found 8-bit 6-to-1 multiplexer for signal <CACHE_ADR> created at line 379.
Found 3-bit comparator equal for signal <PAGE_SELECT_FF[2]_HIST_MEM[7][2]_equal_37_o> created at line 193
Found 3-bit comparator equal for signal <PAGE_SELECT_FF[2]_HIST_MEM[6][2]_equal_38_o> created at line 193
Found 3-bit comparator equal for signal <PAGE_SELECT_FF[2]_HIST_MEM[5][2]_equal_40_o> created at line 193
Found 3-bit comparator equal for signal <PAGE_SELECT_FF[2]_HIST_MEM[4][2]_equal_42_o> created at line 193
Found 3-bit comparator equal for signal <PAGE_SELECT_FF[2]_HIST_MEM[3][2]_equal_44_o> created at line 193
Found 3-bit comparator equal for signal <PAGE_SELECT_FF[2]_HIST_MEM[2][2]_equal_46_o> created at line 193
Found 3-bit comparator equal for signal <PAGE_SELECT_FF[2]_HIST_MEM[1][2]_equal_48_o> created at line 193
Found 3-bit comparator equal for signal <PAGE_SELECT_FF[2]_HIST_MEM[0][2]_equal_50_o> created at line 193
Found 25-bit comparator equal for signal <ADR_INT[31]_PAGE_BASE_ADR[0][31]_equal_100_o> created at line 301
Found 25-bit comparator equal for signal <ADR_INT[31]_PAGE_BASE_ADR[1][31]_equal_101_o> created at line 301
Found 25-bit comparator equal for signal <ADR_INT[31]_PAGE_BASE_ADR[2][31]_equal_103_o> created at line 301
Found 25-bit comparator equal for signal <ADR_INT[31]_PAGE_BASE_ADR[3][31]_equal_105_o> created at line 301
Found 25-bit comparator equal for signal <ADR_INT[31]_PAGE_BASE_ADR[4][31]_equal_107_o> created at line 301
Found 25-bit comparator equal for signal <ADR_INT[31]_PAGE_BASE_ADR[5][31]_equal_109_o> created at line 301
Found 25-bit comparator equal for signal <ADR_INT[31]_PAGE_BASE_ADR[6][31]_equal_111_o> created at line 301
Found 25-bit comparator equal for signal <ADR_INT[31]_PAGE_BASE_ADR[7][31]_equal_113_o> created at line 301
Summary:
inferred 4 RAM(s).
inferred 377 D-type flip-flop(s).
inferred 16 Comparator(s).
inferred 125 Multiplexer(s).
inferred 1 Finite State Machine(s).
Unit <CACHE> synthesized.
Synthesizing Unit <BUS_UNIT>.
Related source file is "/home/martin/git-work/MyStormOnMiniSpartan6/BUS_UNIT.vhd".
I_CACHE_PAGES = 8
LOG2_I_CACHE_PAGES = 3
I_CACHE_PAGE_SIZE = 32
LOG2_I_CACHE_PAGE_SIZE = 5
D_CACHE_PAGES = 8
LOG2_D_CACHE_PAGES = 3
D_CACHE_PAGE_SIZE = 32
LOG2_D_CACHE_PAGE_SIZE = 5
IO_UC_BEGIN = "11111111111111110000000000000000"
IO_UC_END = "11111111111111111111111111111111"
WARNING:Xst:647 - Input <IC_P_CS_I> is never used. This port will be preserved and left unconnected if it belongs to a top-level block or it belongs to a sub-block and the hierarchy of this sub-block is preserved.
Found 1-bit register for signal <FREEZE_DIS>.
Found 3-bit register for signal <ARB_STATE>.
Found 16-bit register for signal <TIMEOUT_CNT>.
Found 32-bit register for signal <WB_DATA_BUF>.
Found 1-bit register for signal <WB_ACK_BUF>.
Found 16-bit register for signal <WB_ACK_CNT>.
Found 1-bit register for signal <WB_ERR_BUF>.
Found 32-bit register for signal <IC_ADR_BUF>.
Found 32-bit register for signal <DC_ADR_BUF>.
Found 3-bit register for signal <PAGE_BUF>.
Found 32-bit register for signal <WB_ADR_BUF>.
Found 32-bit register for signal <BASE_BUF>.
Found 25-bit register for signal <DC_P_ADR_BUF<31:7>>.
Found 25-bit register for signal <IC_P_ADR_BUF<31:7>>.
Found 32-bit register for signal <WB_DATA_FF>.
Found 32-bit register for signal <WB_ADR_O>.
Found 3-bit register for signal <WB_CTI_O>.
Found 7-bit register for signal <WB_TGC_O>.
Found 1-bit register for signal <WB_STB_O>.
Found 1-bit register for signal <WB_CYC_O>.
Found 1-bit register for signal <WB_WE_O>.
Found 1-bit register for signal <BIT_BUF>.
Found 1-bit register for signal <FREEZE_FLAG>.
Found finite state machine <FSM_1> for signal <ARB_STATE>.
-----------------------------------------------------------------------
| States | 7 |
| Transitions | 30 |
| Inputs | 16 |
| Outputs | 10 |
| Clock | CORE_CLK_I (rising_edge) |
| Reset | RST_I (positive) |
| Reset type | synchronous |
| Reset State | idle |
| Power Up State | idle |
| Encoding | auto |
| Implementation | LUT |
-----------------------------------------------------------------------
Found 16-bit adder for signal <WB_ACK_CNT[15]_GND_71_o_add_55_OUT> created at line 1241.
Found 32-bit adder for signal <IC_ADR_BUF[31]_GND_71_o_add_82_OUT> created at line 1241.
Found 16-bit adder for signal <TIMEOUT_CNT[15]_GND_71_o_add_87_OUT> created at line 1241.
Found 32-bit adder for signal <WB_ADR_BUF[31]_GND_71_o_add_93_OUT> created at line 1241.
Found 32-bit adder for signal <BASE_BUF[31]_GND_71_o_add_98_OUT> created at line 1241.
Found 32-bit adder for signal <DC_ADR_BUF[31]_GND_71_o_add_100_OUT> created at line 1241.
Found 32-bit adder for signal <BASE_BUF[31]_GND_71_o_add_121_OUT> created at line 1241.
Found 3-bit subtractor for signal <GND_71_o_GND_71_o_sub_112_OUT<2:0>> created at line 1308.
Found 1-bit 6-to-1 multiplexer for signal <WB_CYC_O_NXT> created at line 313.
Found 32-bit comparator greater for signal <n0019> created at line 187
Found 32-bit comparator greater for signal <n0111> created at line 354
Found 32-bit comparator greater for signal <IC_ADR_BUF[31]_BASE_BUF[31]_LessThan_82_o> created at line 364
Found 32-bit comparator greater for signal <n0127> created at line 390
Found 32-bit comparator greater for signal <WB_ADR_BUF[31]_BASE_BUF[31]_LessThan_93_o> created at line 397
Found 32-bit comparator greater for signal <DC_ADR_BUF[31]_BASE_BUF[31]_LessThan_100_o> created at line 400
Found 16-bit comparator greater for signal <C_BUS_CYCC_I[15]_TIMEOUT_CNT[15]_LessThan_103_o> created at line 406
Found 16-bit comparator greater for signal <GND_71_o_INV_301_o> created at line 426
Found 16-bit comparator greater for signal <GND_71_o_INV_303_o> created at line 472
Summary:
inferred 8 Adder/Subtractor(s).
inferred 327 D-type flip-flop(s).
inferred 9 Comparator(s).
inferred 67 Multiplexer(s).
inferred 1 Finite State Machine(s).
Unit <BUS_UNIT> synthesized.
Synthesizing Unit <MEMORY>.
Related source file is "/home/martin/git-work/MyStormOnMiniSpartan6/MEMORY.vhd".
MEM_SIZE = 8192
LOG2_MEM_SIZE = 13
OUTPUT_GATE = false
WARNING:Xst:647 - Input <WB_TGC_I> is never used. This port will be preserved and left unconnected if it belongs to a top-level block or it belongs to a sub-block and the hierarchy of this sub-block is preserved.
WARNING:Xst:647 - Input <WB_SEL_I> is never used. This port will be preserved and left unconnected if it belongs to a top-level block or it belongs to a sub-block and the hierarchy of this sub-block is preserved.
Found 8192x32-bit single-port RAM <Mram_MEM_FILE> for signal <MEM_FILE>.
Found 1-bit register for signal <WB_ACK_O_INT>.
Found 32-bit register for signal <WB_DATA_INT>.
Summary:
inferred 1 RAM(s).
inferred 33 D-type flip-flop(s).
inferred 1 Multiplexer(s).
Unit <MEMORY> synthesized.
Synthesizing Unit <SDRAM_WB_CTRL>.
Related source file is "/home/martin/git-work/MyStormOnMiniSpartan6/SDRAM_WB_CTRL.vhd".
INFO:Xst:3210 - "/home/martin/git-work/MyStormOnMiniSpartan6/SDRAM_WB_CTRL.vhd" line 105: Output port <cmd_ready> of the instance <ctrl> is unconnected or connected to loadless signal.
WARNING:Xst:653 - Signal <wb_stall_o> is used but never assigned. This sourceless signal will be automatically connected to value GND.
Found 32-bit register for signal <WB_DATA_O>.
Found 1-bit register for signal <WB_ACK_O>.
Summary:
inferred 33 D-type flip-flop(s).
Unit <SDRAM_WB_CTRL> synthesized.
Synthesizing Unit <SDRAM_Controller>.
Related source file is "/home/martin/git-work/MyStormOnMiniSpartan6/SDRAM_Controller.vhd".
sdram_address_width = 24
sdram_column_bits = 9
sdram_startup_cycles = 10100
cycles_per_refresh = 389
very_low_speed = 0
Set property "IOB = TRUE" for signal <iob_command>.
Set property "IOB = TRUE" for signal <iob_address>.
Set property "IOB = TRUE" for signal <iob_data>.
Set property "IOB = TRUE" for signal <iob_dqm>.
Set property "IOB = TRUE" for signal <iob_bank>.
Set property "IOB = TRUE" for signal <captured_data>.
Set property "fsm_encoding = ONE-HOT" for signal <state>.
Set property "IOB = TRUE" for signal <iob_cke>.
WARNING:Xst:2935 - Signal 'addr_col<12:9>', unconnected in block 'SDRAM_Controller', is tied to its initial value (0000).
Found 16-bit register for signal <captured_data_last>.
Found 4-bit register for signal <iob_command>.
Found 13-bit register for signal <iob_address>.
Found 2-bit register for signal <iob_bank>.
Found 14-bit register for signal <startup_refresh_count>.
Found 1-bit register for signal <can_back_to_back>.
Found 13-bit register for signal <save_row>.
Found 2-bit register for signal <save_bank>.
Found 13-bit register for signal <save_col>.
Found 1-bit register for signal <save_wr>.
Found 32-bit register for signal <save_data_in>.
Found 4-bit register for signal <save_byte_enable>.
Found 1-bit register for signal <got_transaction>.
Found 1-bit register for signal <ready_for_new>.
Found 1-bit register for signal <data_out_ready>.
Found 32-bit register for signal <data_out>.
Found 5-bit register for signal <data_ready_delay>.
Found 2-bit register for signal <iob_dqm>.
Found 4-bit register for signal <dqm_sr>.
Found 1-bit register for signal <iob_cke>.
Found 5-bit register for signal <state>.
Found 1-bit register for signal <iob_dq_hiz>.
Found 16-bit register for signal <iob_data>.
Found 16-bit register for signal <iob_data_next>.
Found 16-bit register for signal <captured_data>.
Found finite state machine <FSM_2> for signal <state>.
-----------------------------------------------------------------------
| States | 18 |
| Transitions | 42 |
| Inputs | 6 |
| Outputs | 6 |
| Clock | clk (rising_edge) |
| Reset | reset (positive) |
| Reset type | synchronous |
| Reset State | s_startup |
| Power Up State | s_startup |
| Encoding | ONE-HOT |
| Implementation | LUT |
-----------------------------------------------------------------------
Found 14-bit adder for signal <startup_refresh_count[13]_GND_74_o_add_7_OUT> created at line 1241.
Found 14-bit subtractor for signal <GND_74_o_GND_74_o_add_32_OUT> created at line 1241.
Found 2-bit comparator equal for signal <addr_bank[1]_save_bank[1]_equal_9_o> created at line 260
Found 13-bit comparator equal for signal <addr_row[12]_save_row[12]_equal_10_o> created at line 260
INFO:Xst:2774 - HDL ADVISOR - IOB property attached to signal captured_data may hinder XST clustering optimizations.
Summary:
inferred 2 Adder/Subtractor(s).
inferred 211 D-type flip-flop(s).
inferred 2 Comparator(s).
inferred 55 Multiplexer(s).
inferred 1 Finite State Machine(s).
Unit <SDRAM_Controller> synthesized.
Synthesizing Unit <BOOT_ROM_FILE>.
Related source file is "/home/martin/git-work/MyStormOnMiniSpartan6/BOOT_ROM_FILE.vhd".
MEM_SIZE = 2048
LOG2_MEM_SIZE = 11
OUTPUT_GATE = false
INIT_IMAGE_ID = "STORM_SOC_BASIC_BL_32_8"
WARNING:Xst:647 - Input <WB_TGC_I> is never used. This port will be preserved and left unconnected if it belongs to a top-level block or it belongs to a sub-block and the hierarchy of this sub-block is preserved.
WARNING:Xst:647 - Input <WB_DATA_I> is never used. This port will be preserved and left unconnected if it belongs to a top-level block or it belongs to a sub-block and the hierarchy of this sub-block is preserved.
WARNING:Xst:647 - Input <WB_SEL_I> is never used. This port will be preserved and left unconnected if it belongs to a top-level block or it belongs to a sub-block and the hierarchy of this sub-block is preserved.
WARNING:Xst:647 - Input <WB_WE_I> is never used. This port will be preserved and left unconnected if it belongs to a top-level block or it belongs to a sub-block and the hierarchy of this sub-block is preserved.
WARNING:Xst:2999 - Signal 'BOOT_ROM', unconnected in block 'BOOT_ROM_FILE', is tied to its initial value.
Found 2048x32-bit single-port Read Only RAM <Mram_BOOT_ROM> for signal <BOOT_ROM>.
Found 1-bit register for signal <WB_ACK_O_INT>.
Found 32-bit register for signal <WB_DATA_INT>.
Summary:
inferred 1 RAM(s).
inferred 33 D-type flip-flop(s).
inferred 1 Multiplexer(s).
Unit <BOOT_ROM_FILE> synthesized.
Synthesizing Unit <GP_IO_CTRL>.
Related source file is "/home/martin/git-work/MyStormOnMiniSpartan6/GP_IO_CTRL.vhd".
WARNING:Xst:647 - Input <WB_TGC_I> is never used. This port will be preserved and left unconnected if it belongs to a top-level block or it belongs to a sub-block and the hierarchy of this sub-block is preserved.
Found 32-bit register for signal <WB_DATA_O>.
Found 1-bit register for signal <WB_ACK_O_INT>.
Found 32-bit register for signal <IO_I_SYNC>.
Found 32-bit register for signal <IRQ_SYNC>.
Found 1-bit register for signal <IO_IRQ_O>.
Found 32-bit register for signal <IO_O_SYNC>.
Found 32-bit comparator not equal for signal <n0059> created at line 141
Summary:
inferred 130 D-type flip-flop(s).
inferred 1 Comparator(s).
inferred 35 Multiplexer(s).
Unit <GP_IO_CTRL> synthesized.
Synthesizing Unit <MINI_UART>.
Related source file is "/home/martin/git-work/MyStormOnMiniSpartan6/MINI_UART.vhd".
BRDIVISOR = 108
WARNING:Xst:647 - Input <WB_TGC_I> is never used. This port will be preserved and left unconnected if it belongs to a top-level block or it belongs to a sub-block and the hierarchy of this sub-block is preserved.
WARNING:Xst:647 - Input <WB_DATA_I<31:8>> is never used. This port will be preserved and left unconnected if it belongs to a top-level block or it belongs to a sub-block and the hierarchy of this sub-block is preserved.
WARNING:Xst:647 - Input <WB_SEL_I> is never used. This port will be preserved and left unconnected if it belongs to a top-level block or it belongs to a sub-block and the hierarchy of this sub-block is preserved.
Found 1-bit register for signal <WB_ACK_O_INT>.
Found 1-bit register for signal <LoadA>.
Found 1-bit register for signal <ReadA>.
Found 8-bit register for signal <TxData>.
Found 32-bit register for signal <WB_DATA_O>.
Summary:
inferred 43 D-type flip-flop(s).
inferred 3 Multiplexer(s).
Unit <MINI_UART> synthesized.
Synthesizing Unit <Counter_1>.
Related source file is "/home/martin/git-work/MyStormOnMiniSpartan6/utils.vhd".
Count = 108
Found 1-bit register for signal <O>.
Found 7-bit register for signal <counter.Cnt>.
Found 7-bit subtractor for signal <GND_81_o_GND_81_o_sub_2_OUT<6:0>> created at line 126.
Summary:
inferred 1 Adder/Subtractor(s).
inferred 8 D-type flip-flop(s).
Unit <Counter_1> synthesized.
Synthesizing Unit <Counter_2>.
Related source file is "/home/martin/git-work/MyStormOnMiniSpartan6/utils.vhd".
Count = 4
Found 1-bit register for signal <O>.
Found 2-bit register for signal <counter.Cnt>.
Found 2-bit subtractor for signal <GND_84_o_GND_84_o_sub_2_OUT<1:0>> created at line 126.