-
Notifications
You must be signed in to change notification settings - Fork 6
/
pcie_compiler_0_serdes.vhd
1882 lines (1852 loc) · 105 KB
/
pcie_compiler_0_serdes.vhd
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
-- NetUP Universal Dual DVB-CI FPGA firmware
-- http://www.netup.tv
--
-- Copyright (c) 2014 NetUP Inc, AVB Labs
-- License: GPLv3
-- megafunction wizard: %ALTGX%
-- GENERATION: STANDARD
-- VERSION: WM1.0
-- MODULE: alt_c3gxb
-- ============================================================
-- File Name: pcie_compiler_0_serdes.vhd
-- Megafunction Name(s):
-- alt_c3gxb
--
-- Simulation Library Files(s):
--
-- ============================================================
-- ************************************************************
-- THIS IS A WIZARD-GENERATED FILE. DO NOT EDIT THIS FILE!
--
-- 11.1 Build 259 01/25/2012 SP 2 SJ Full Version
-- ************************************************************
--Copyright (C) 1991-2011 Altera Corporation
--Your use of Altera Corporation's design tools, logic functions
--and other software and tools, and its AMPP partner logic
--functions, and any output files from any of the foregoing
--(including device programming or simulation files), and any
--associated documentation or information are expressly subject
--to the terms and conditions of the Altera Program License
--Subscription Agreement, Altera MegaCore Function License
--Agreement, or other applicable license agreement, including,
--without limitation, that your use is for the sole purpose of
--programming logic devices manufactured by Altera and sold by
--Altera or its authorized distributors. Please refer to the
--applicable agreement for further details.
--alt_c3gxb CBX_AUTO_BLACKBOX="ALL" device_family="Cyclone IV GX" effective_data_rate="2500 Mbps" elec_idle_infer_enable="false" enable_0ppm="false" equalization_setting=1 equalizer_dcgain_setting=1 gxb_powerdown_width=1 hip_enable="true" loopback_mode="none" number_of_channels=1 number_of_quads=1 operation_mode="duplex" pll_bandwidth_type="auto" pll_control_width=1 pll_divide_by="2" pll_inclk_period=10000 pll_multiply_by="25" pll_pfd_fb_mode="internal" preemphasis_ctrl_1stposttap_setting=1 protocol="pcie" receiver_termination="OCT_100_OHMS" reconfig_calibration="true" reconfig_dprio_mode=0 reconfig_pll_control_width=1 rx_8b_10b_mode="normal" rx_align_pattern="0101111100" rx_align_pattern_length=10 rx_allow_align_polarity_inversion="false" rx_allow_pipe_polarity_inversion="true" rx_bitslip_enable="false" rx_byte_ordering_mode="none" rx_cdrctrl_enable="true" rx_channel_bonding="indv" rx_channel_width=8 rx_common_mode="0.82v" rx_datapath_protocol="pipe" rx_deskew_pattern="0" rx_digitalreset_port_width=1 rx_dwidth_factor=1 rx_enable_bit_reversal="false" rx_enable_lock_to_data_sig="false" rx_enable_lock_to_refclk_sig="false" rx_enable_second_order_loop="false" rx_enable_self_test_mode="false" rx_force_signal_detect="false" rx_loop_1_digital_filter=8 rx_ppmselect=8 rx_rate_match_fifo_mode="normal" rx_rate_match_pattern1="11010000111010000011" rx_rate_match_pattern2="00101111000101111100" rx_rate_match_pattern_size=20 rx_run_length=40 rx_run_length_enable="true" rx_signal_detect_loss_threshold=3 rx_signal_detect_threshold=4 rx_signal_detect_valid_threshold=14 rx_use_align_state_machine="true" rx_use_clkout="false" rx_use_coreclk="false" rx_use_deskew_fifo="false" rx_use_double_data_mode="false" rx_use_external_termination="false" rx_use_pipe8b10binvpolarity="true" rx_word_aligner_num_byte=1 starting_channel_number=0 top_module_name="pcie_compiler_0_serdes" transmitter_termination="OCT_100_OHMS" tx_8b_10b_mode="normal" tx_allow_polarity_inversion="false" tx_bitslip_enable="false" tx_channel_bonding="indv" tx_channel_width=8 tx_clkout_width=1 tx_common_mode="0.65v" tx_digitalreset_port_width=1 tx_dwidth_factor=1 tx_enable_bit_reversal="false" tx_enable_self_test_mode="false" tx_slew_rate="low" tx_transmit_protocol="pipe" tx_use_coreclk="false" tx_use_double_data_mode="false" tx_use_external_termination="false" use_calibration_block="true" vod_ctrl_setting=4 cal_blk_clk fixedclk gxb_powerdown hip_tx_clkout pipe8b10binvpolarity pipedatavalid pipeelecidle pipephydonestatus pipestatus pll_areset pll_inclk pll_locked powerdn reconfig_clk reconfig_fromgxb reconfig_togxb rx_analogreset rx_ctrldetect rx_datain rx_dataout rx_digitalreset rx_elecidleinfersel rx_freqlocked rx_patterndetect rx_syncstatus tx_clkout tx_ctrlenable tx_datain tx_dataout tx_detectrxloop tx_digitalreset tx_forcedispcompliance tx_forceelecidle intended_device_family="Cyclone IV GX"
--VERSION_BEGIN 11.1SP2 cbx_alt_c3gxb 2012:01:25:21:13:53:SJ cbx_altclkbuf 2012:01:25:21:13:53:SJ cbx_altiobuf_bidir 2012:01:25:21:13:53:SJ cbx_altiobuf_in 2012:01:25:21:13:53:SJ cbx_altiobuf_out 2012:01:25:21:13:53:SJ cbx_altpll 2012:01:25:21:13:53:SJ cbx_cycloneii 2012:01:25:21:13:53:SJ cbx_lpm_add_sub 2012:01:25:21:13:53:SJ cbx_lpm_compare 2012:01:25:21:13:53:SJ cbx_lpm_decode 2012:01:25:21:13:53:SJ cbx_lpm_mux 2012:01:25:21:13:53:SJ cbx_mgl 2012:01:25:21:15:41:SJ cbx_stingray 2012:01:25:21:13:52:SJ cbx_stratix 2012:01:25:21:13:53:SJ cbx_stratixii 2012:01:25:21:13:53:SJ cbx_stratixiii 2012:01:25:21:13:53:SJ cbx_stratixv 2012:01:25:21:13:53:SJ cbx_util_mgl 2012:01:25:21:13:53:SJ VERSION_END
LIBRARY altera_mf;
USE altera_mf.all;
LIBRARY cycloneiv_hssi;
USE cycloneiv_hssi.all;
--synthesis_resources = altpll 1 cycloneiv_hssi_calibration_block 1 cycloneiv_hssi_cmu 1 cycloneiv_hssi_rx_pcs 1 cycloneiv_hssi_rx_pma 1 cycloneiv_hssi_tx_pcs 1 cycloneiv_hssi_tx_pma 1 reg 3
LIBRARY ieee;
USE ieee.std_logic_1164.all;
ENTITY pcie_compiler_0_serdes_alt_c3gxb_euf8 IS
GENERIC
(
starting_channel_number : NATURAL := 0
);
PORT
(
cal_blk_clk : IN STD_LOGIC := '0';
fixedclk : IN STD_LOGIC := '0';
gxb_powerdown : IN STD_LOGIC_VECTOR (0 DOWNTO 0) := (OTHERS => '0');
hip_tx_clkout : OUT STD_LOGIC_VECTOR (0 DOWNTO 0);
pipe8b10binvpolarity : IN STD_LOGIC_VECTOR (0 DOWNTO 0) := (OTHERS => '0');
pipedatavalid : OUT STD_LOGIC_VECTOR (0 DOWNTO 0);
pipeelecidle : OUT STD_LOGIC_VECTOR (0 DOWNTO 0);
pipephydonestatus : OUT STD_LOGIC_VECTOR (0 DOWNTO 0);
pipestatus : OUT STD_LOGIC_VECTOR (2 DOWNTO 0);
pll_areset : IN STD_LOGIC_VECTOR (0 DOWNTO 0) := (OTHERS => '0');
pll_inclk : IN STD_LOGIC_VECTOR (0 DOWNTO 0);
pll_locked : OUT STD_LOGIC_VECTOR (0 DOWNTO 0);
powerdn : IN STD_LOGIC_VECTOR (1 DOWNTO 0) := (OTHERS => '0');
reconfig_clk : IN STD_LOGIC := '0';
reconfig_fromgxb : OUT STD_LOGIC_VECTOR (4 DOWNTO 0);
reconfig_togxb : IN STD_LOGIC_VECTOR (3 DOWNTO 0) := (OTHERS => 'Z');
rx_analogreset : IN STD_LOGIC_VECTOR (0 DOWNTO 0) := (OTHERS => '0');
rx_ctrldetect : OUT STD_LOGIC_VECTOR (0 DOWNTO 0);
rx_datain : IN STD_LOGIC_VECTOR (0 DOWNTO 0) := (OTHERS => 'Z');
rx_dataout : OUT STD_LOGIC_VECTOR (7 DOWNTO 0);
rx_digitalreset : IN STD_LOGIC_VECTOR (0 DOWNTO 0) := (OTHERS => '0');
rx_elecidleinfersel : IN STD_LOGIC_VECTOR (2 DOWNTO 0) := (OTHERS => '0');
rx_freqlocked : OUT STD_LOGIC_VECTOR (0 DOWNTO 0);
rx_patterndetect : OUT STD_LOGIC_VECTOR (0 DOWNTO 0);
rx_syncstatus : OUT STD_LOGIC_VECTOR (0 DOWNTO 0);
tx_clkout : OUT STD_LOGIC_VECTOR (0 DOWNTO 0);
tx_ctrlenable : IN STD_LOGIC_VECTOR (0 DOWNTO 0) := (OTHERS => '0');
tx_datain : IN STD_LOGIC_VECTOR (7 DOWNTO 0) := (OTHERS => '0');
tx_dataout : OUT STD_LOGIC_VECTOR (0 DOWNTO 0);
tx_detectrxloop : IN STD_LOGIC_VECTOR (0 DOWNTO 0) := (OTHERS => '0');
tx_digitalreset : IN STD_LOGIC_VECTOR (0 DOWNTO 0) := (OTHERS => '0');
tx_forcedispcompliance : IN STD_LOGIC_VECTOR (0 DOWNTO 0) := (OTHERS => '0');
tx_forceelecidle : IN STD_LOGIC_VECTOR (0 DOWNTO 0) := (OTHERS => '0')
);
END pcie_compiler_0_serdes_alt_c3gxb_euf8;
ARCHITECTURE RTL OF pcie_compiler_0_serdes_alt_c3gxb_euf8 IS
ATTRIBUTE synthesis_clearbox : natural;
ATTRIBUTE synthesis_clearbox OF RTL : ARCHITECTURE IS 2;
ATTRIBUTE ALTERA_ATTRIBUTE : string;
ATTRIBUTE ALTERA_ATTRIBUTE OF RTL : ARCHITECTURE IS "suppress_da_rule_internal=c104";
SIGNAL wire_pll0_areset : STD_LOGIC;
SIGNAL wire_w_lg_w_pll_areset_range32w33w : STD_LOGIC_VECTOR (0 DOWNTO 0);
SIGNAL wire_pll0_clk : STD_LOGIC_VECTOR (5 DOWNTO 0);
SIGNAL wire_pll0_fref : STD_LOGIC;
SIGNAL wire_pll0_icdrclk : STD_LOGIC;
SIGNAL wire_pll0_inclk : STD_LOGIC_VECTOR (1 DOWNTO 0);
SIGNAL wire_pll0_locked : STD_LOGIC;
SIGNAL wire_cal_blk0_nonusertocmu : STD_LOGIC;
SIGNAL wire_cent_unit0_adet : STD_LOGIC_VECTOR (3 DOWNTO 0);
SIGNAL wire_cent_unit0_dpriodisableout : STD_LOGIC;
SIGNAL wire_cent_unit0_dprioout : STD_LOGIC;
SIGNAL wire_cent_unit0_fixedclk : STD_LOGIC_VECTOR (3 DOWNTO 0);
SIGNAL wire_cent_unit0_quadresetout : STD_LOGIC;
SIGNAL wire_cent_unit0_rdalign : STD_LOGIC_VECTOR (3 DOWNTO 0);
SIGNAL wire_gnd : STD_LOGIC;
SIGNAL wire_cent_unit0_rxanalogreset : STD_LOGIC_VECTOR (3 DOWNTO 0);
SIGNAL wire_cent_unit0_rxanalogresetout : STD_LOGIC_VECTOR (3 DOWNTO 0);
SIGNAL wire_cent_unit0_rxcrupowerdown : STD_LOGIC_VECTOR (3 DOWNTO 0);
SIGNAL wire_cent_unit0_rxctrl : STD_LOGIC_VECTOR (3 DOWNTO 0);
SIGNAL wire_cent_unit0_rxdatain : STD_LOGIC_VECTOR (31 DOWNTO 0);
SIGNAL wire_cent_unit0_rxdatavalid : STD_LOGIC_VECTOR (3 DOWNTO 0);
SIGNAL wire_cent_unit0_rxdigitalreset : STD_LOGIC_VECTOR (3 DOWNTO 0);
SIGNAL wire_cent_unit0_rxdigitalresetout : STD_LOGIC_VECTOR (3 DOWNTO 0);
SIGNAL wire_cent_unit0_rxibpowerdown : STD_LOGIC_VECTOR (3 DOWNTO 0);
SIGNAL wire_cent_unit0_rxpcsdprioin : STD_LOGIC_VECTOR (1599 DOWNTO 0);
SIGNAL wire_cent_unit0_rxpcsdprioout : STD_LOGIC_VECTOR (1599 DOWNTO 0);
SIGNAL wire_cent_unit0_rxpmadprioin : STD_LOGIC_VECTOR (1199 DOWNTO 0);
SIGNAL wire_cent_unit0_rxpmadprioout : STD_LOGIC_VECTOR (1199 DOWNTO 0);
SIGNAL wire_cent_unit0_rxpowerdown : STD_LOGIC_VECTOR (3 DOWNTO 0);
SIGNAL wire_cent_unit0_rxrunningdisp : STD_LOGIC_VECTOR (3 DOWNTO 0);
SIGNAL wire_cent_unit0_syncstatus : STD_LOGIC_VECTOR (3 DOWNTO 0);
SIGNAL wire_cent_unit0_txanalogresetout : STD_LOGIC_VECTOR (3 DOWNTO 0);
SIGNAL wire_cent_unit0_txctrl : STD_LOGIC_VECTOR (3 DOWNTO 0);
SIGNAL wire_cent_unit0_txdatain : STD_LOGIC_VECTOR (31 DOWNTO 0);
SIGNAL wire_cent_unit0_txdetectrxpowerdown : STD_LOGIC_VECTOR (3 DOWNTO 0);
SIGNAL wire_cent_unit0_txdigitalreset : STD_LOGIC_VECTOR (3 DOWNTO 0);
SIGNAL wire_cent_unit0_txdigitalresetout : STD_LOGIC_VECTOR (3 DOWNTO 0);
SIGNAL wire_cent_unit0_txdividerpowerdown : STD_LOGIC_VECTOR (3 DOWNTO 0);
SIGNAL wire_cent_unit0_txobpowerdown : STD_LOGIC_VECTOR (3 DOWNTO 0);
SIGNAL wire_cent_unit0_txpcsdprioin : STD_LOGIC_VECTOR (599 DOWNTO 0);
SIGNAL wire_cent_unit0_txpcsdprioout : STD_LOGIC_VECTOR (599 DOWNTO 0);
SIGNAL wire_cent_unit0_txpmadprioin : STD_LOGIC_VECTOR (1199 DOWNTO 0);
SIGNAL wire_cent_unit0_txpmadprioout : STD_LOGIC_VECTOR (1199 DOWNTO 0);
SIGNAL wire_receive_pcs0_cdrctrlearlyeios : STD_LOGIC;
SIGNAL wire_receive_pcs0_cdrctrllocktorefclkout : STD_LOGIC;
SIGNAL wire_receive_pcs0_dprioout : STD_LOGIC_VECTOR (399 DOWNTO 0);
SIGNAL wire_receive_pcs0_hipdataout : STD_LOGIC_VECTOR (8 DOWNTO 0);
SIGNAL wire_receive_pcs0_hipdatavalid : STD_LOGIC;
SIGNAL wire_receive_pcs0_hipelecidle : STD_LOGIC;
SIGNAL wire_receive_pcs0_hipelecidleinfersel : STD_LOGIC_VECTOR (2 DOWNTO 0);
SIGNAL wire_receive_pcs0_hipphydonestatus : STD_LOGIC;
SIGNAL wire_receive_pcs0_hipstatus : STD_LOGIC_VECTOR (2 DOWNTO 0);
SIGNAL wire_receive_pcs0_parallelfdbk : STD_LOGIC_VECTOR (19 DOWNTO 0);
SIGNAL wire_receive_pcs0_revparallelfdbkdata : STD_LOGIC_VECTOR (19 DOWNTO 0);
SIGNAL wire_receive_pcs0_xgmdatain : STD_LOGIC_VECTOR (7 DOWNTO 0);
SIGNAL wire_receive_pma0_w_lg_freqlocked337w : STD_LOGIC_VECTOR (0 DOWNTO 0);
SIGNAL wire_receive_pma0_analogtestbus : STD_LOGIC_VECTOR (7 DOWNTO 0);
SIGNAL wire_receive_pma0_clockout : STD_LOGIC;
SIGNAL wire_receive_pma0_diagnosticlpbkout : STD_LOGIC;
SIGNAL wire_receive_pma0_dprioout : STD_LOGIC_VECTOR (299 DOWNTO 0);
SIGNAL wire_receive_pma0_freqlocked : STD_LOGIC;
SIGNAL wire_receive_pma0_locktodata : STD_LOGIC;
SIGNAL wire_w_lg_w_lg_reconfig_togxb_busy267w326w : STD_LOGIC_VECTOR (0 DOWNTO 0);
SIGNAL wire_receive_pma0_locktorefout : STD_LOGIC;
SIGNAL wire_receive_pma0_recoverdataout : STD_LOGIC_VECTOR (9 DOWNTO 0);
SIGNAL wire_receive_pma0_reverselpbkout : STD_LOGIC;
SIGNAL wire_receive_pma0_signaldetect : STD_LOGIC;
SIGNAL wire_receive_pma0_testbussel : STD_LOGIC_VECTOR (3 DOWNTO 0);
SIGNAL wire_transmit_pcs0_clkout : STD_LOGIC;
SIGNAL wire_transmit_pcs0_ctrlenable : STD_LOGIC_VECTOR (1 DOWNTO 0);
SIGNAL wire_transmit_pcs0_datainfull : STD_LOGIC_VECTOR (21 DOWNTO 0);
SIGNAL wire_transmit_pcs0_dataout : STD_LOGIC_VECTOR (9 DOWNTO 0);
SIGNAL wire_transmit_pcs0_dispval : STD_LOGIC_VECTOR (1 DOWNTO 0);
SIGNAL wire_transmit_pcs0_dprioout : STD_LOGIC_VECTOR (149 DOWNTO 0);
SIGNAL wire_transmit_pcs0_forcedisp : STD_LOGIC_VECTOR (1 DOWNTO 0);
SIGNAL wire_transmit_pcs0_forceelecidleout : STD_LOGIC;
SIGNAL wire_transmit_pcs0_grayelecidleinferselout : STD_LOGIC_VECTOR (2 DOWNTO 0);
SIGNAL wire_transmit_pcs0_hipdatain : STD_LOGIC_VECTOR (9 DOWNTO 0);
SIGNAL wire_transmit_pcs0_hiptxclkout : STD_LOGIC;
SIGNAL wire_vcc : STD_LOGIC;
SIGNAL wire_transmit_pcs0_pipeenrevparallellpbkout : STD_LOGIC;
SIGNAL wire_transmit_pcs0_pipepowerdownout : STD_LOGIC_VECTOR (1 DOWNTO 0);
SIGNAL wire_transmit_pcs0_pipepowerstateout : STD_LOGIC_VECTOR (3 DOWNTO 0);
SIGNAL wire_transmit_pcs0_txdetectrx : STD_LOGIC;
SIGNAL wire_transmit_pma0_clockout : STD_LOGIC;
SIGNAL wire_transmit_pma0_datain : STD_LOGIC_VECTOR (9 DOWNTO 0);
SIGNAL wire_transmit_pma0_dataout : STD_LOGIC;
SIGNAL wire_transmit_pma0_dprioout : STD_LOGIC_VECTOR (299 DOWNTO 0);
SIGNAL wire_transmit_pma0_rxdetectvalidout : STD_LOGIC;
SIGNAL wire_transmit_pma0_rxfoundout : STD_LOGIC;
SIGNAL wire_transmit_pma0_seriallpbkout : STD_LOGIC;
SIGNAL fixedclk_div : STD_LOGIC_VECTOR(0 DOWNTO 0)
-- synopsys translate_off
:= (OTHERS => '0')
-- synopsys translate_on
;
SIGNAL reconfig_togxb_busy_reg : STD_LOGIC_VECTOR(1 DOWNTO 0)
-- synopsys translate_off
:= (OTHERS => '0')
-- synopsys translate_on
;
SIGNAL wire_w_lg_w_lg_w_lg_fixedclk_sel39w40w41w : STD_LOGIC_VECTOR (0 DOWNTO 0);
SIGNAL wire_w_lg_w_lg_w_lg_fixedclk_sel39w46w47w : STD_LOGIC_VECTOR (0 DOWNTO 0);
SIGNAL wire_w_lg_w_lg_w_lg_fixedclk_sel39w51w52w : STD_LOGIC_VECTOR (0 DOWNTO 0);
SIGNAL wire_w_lg_w_lg_w_lg_fixedclk_sel39w56w57w : STD_LOGIC_VECTOR (0 DOWNTO 0);
SIGNAL wire_w_lg_w_lg_w_lg_fixedclk_sel35w36w37w : STD_LOGIC_VECTOR (0 DOWNTO 0);
SIGNAL wire_w_lg_w_lg_fixedclk_sel39w40w : STD_LOGIC_VECTOR (0 DOWNTO 0);
SIGNAL wire_w_lg_w_lg_fixedclk_sel39w46w : STD_LOGIC_VECTOR (0 DOWNTO 0);
SIGNAL wire_w_lg_w_lg_fixedclk_sel39w51w : STD_LOGIC_VECTOR (0 DOWNTO 0);
SIGNAL wire_w_lg_w_lg_fixedclk_sel39w56w : STD_LOGIC_VECTOR (0 DOWNTO 0);
SIGNAL wire_w_lg_w_lg_fixedclk_sel35w36w : STD_LOGIC_VECTOR (0 DOWNTO 0);
SIGNAL wire_w_lg_w_lg_reconfig_togxb_busy267w268w : STD_LOGIC_VECTOR (0 DOWNTO 0);
SIGNAL wire_w_lg_fixedclk_sel39w : STD_LOGIC_VECTOR (0 DOWNTO 0);
SIGNAL wire_w_lg_fixedclk_enable34w : STD_LOGIC_VECTOR (0 DOWNTO 0);
SIGNAL wire_w_lg_fixedclk_sel35w : STD_LOGIC_VECTOR (0 DOWNTO 0);
SIGNAL wire_w_lg_reconfig_togxb_busy267w : STD_LOGIC_VECTOR (0 DOWNTO 0);
SIGNAL wire_w_lg_w_rx_analogreset_range266w336w : STD_LOGIC_VECTOR (0 DOWNTO 0);
SIGNAL wire_w_lg_w_lg_w_lg_w_lg_fixedclk_sel39w40w41w42w : STD_LOGIC_VECTOR (0 DOWNTO 0);
SIGNAL wire_w_lg_w_lg_w_lg_w_lg_fixedclk_sel39w46w47w48w : STD_LOGIC_VECTOR (0 DOWNTO 0);
SIGNAL wire_w_lg_w_lg_w_lg_w_lg_fixedclk_sel39w51w52w53w : STD_LOGIC_VECTOR (0 DOWNTO 0);
SIGNAL wire_w_lg_w_lg_w_lg_w_lg_fixedclk_sel39w56w57w58w : STD_LOGIC_VECTOR (0 DOWNTO 0);
SIGNAL cal_blk_powerdown : STD_LOGIC;
SIGNAL cent_unit_quadresetout : STD_LOGIC_VECTOR (0 DOWNTO 0);
SIGNAL cent_unit_rxcrupowerdn : STD_LOGIC_VECTOR (3 DOWNTO 0);
SIGNAL cent_unit_rxibpowerdn : STD_LOGIC_VECTOR (3 DOWNTO 0);
SIGNAL cent_unit_rxpcsdprioin : STD_LOGIC_VECTOR (1599 DOWNTO 0);
SIGNAL cent_unit_rxpcsdprioout : STD_LOGIC_VECTOR (1599 DOWNTO 0);
SIGNAL cent_unit_rxpmadprioin : STD_LOGIC_VECTOR (1199 DOWNTO 0);
SIGNAL cent_unit_rxpmadprioout : STD_LOGIC_VECTOR (1199 DOWNTO 0);
SIGNAL cent_unit_tx_dprioin : STD_LOGIC_VECTOR (599 DOWNTO 0);
SIGNAL cent_unit_txdetectrxpowerdn : STD_LOGIC_VECTOR (3 DOWNTO 0);
SIGNAL cent_unit_txdividerpowerdown : STD_LOGIC_VECTOR (3 DOWNTO 0);
SIGNAL cent_unit_txdprioout : STD_LOGIC_VECTOR (599 DOWNTO 0);
SIGNAL cent_unit_txobpowerdn : STD_LOGIC_VECTOR (3 DOWNTO 0);
SIGNAL cent_unit_txpmadprioin : STD_LOGIC_VECTOR (1199 DOWNTO 0);
SIGNAL cent_unit_txpmadprioout : STD_LOGIC_VECTOR (1199 DOWNTO 0);
SIGNAL fixedclk_div_in : STD_LOGIC_VECTOR (0 DOWNTO 0);
SIGNAL fixedclk_enable : STD_LOGIC_VECTOR (0 DOWNTO 0);
SIGNAL fixedclk_fast : STD_LOGIC_VECTOR (3 DOWNTO 0);
SIGNAL fixedclk_sel : STD_LOGIC_VECTOR (0 DOWNTO 0);
SIGNAL fixedclk_to_cmu : STD_LOGIC_VECTOR (3 DOWNTO 0);
SIGNAL int_pipeenrevparallellpbkfromtx : STD_LOGIC_VECTOR (0 DOWNTO 0);
SIGNAL nonusertocmu_out : STD_LOGIC_VECTOR (0 DOWNTO 0);
SIGNAL pipedatavalid_out : STD_LOGIC_VECTOR (0 DOWNTO 0);
SIGNAL pipeelecidle_out : STD_LOGIC_VECTOR (0 DOWNTO 0);
SIGNAL pll_powerdown : STD_LOGIC_VECTOR (0 DOWNTO 0);
SIGNAL reconfig_togxb_busy : STD_LOGIC_VECTOR (0 DOWNTO 0);
SIGNAL reconfig_togxb_disable : STD_LOGIC_VECTOR (0 DOWNTO 0);
SIGNAL reconfig_togxb_in : STD_LOGIC_VECTOR (0 DOWNTO 0);
SIGNAL reconfig_togxb_load : STD_LOGIC_VECTOR (0 DOWNTO 0);
SIGNAL refclk_pma : STD_LOGIC_VECTOR (0 DOWNTO 0);
SIGNAL rx_analogreset_in : STD_LOGIC_VECTOR (3 DOWNTO 0);
SIGNAL rx_analogreset_out : STD_LOGIC_VECTOR (3 DOWNTO 0);
SIGNAL rx_deserclock_in : STD_LOGIC_VECTOR (0 DOWNTO 0);
SIGNAL rx_digitalreset_in : STD_LOGIC_VECTOR (3 DOWNTO 0);
SIGNAL rx_digitalreset_out : STD_LOGIC_VECTOR (3 DOWNTO 0);
SIGNAL rx_enapatternalign : STD_LOGIC_VECTOR (0 DOWNTO 0);
SIGNAL rx_locktodata : STD_LOGIC_VECTOR (0 DOWNTO 0);
SIGNAL rx_locktorefclk_wire : STD_LOGIC_VECTOR (0 DOWNTO 0);
SIGNAL rx_out_wire : STD_LOGIC_VECTOR (7 DOWNTO 0);
SIGNAL rx_pcs_rxfound_wire : STD_LOGIC_VECTOR (1 DOWNTO 0);
SIGNAL rx_pcsdprioin_wire : STD_LOGIC_VECTOR (1599 DOWNTO 0);
SIGNAL rx_pcsdprioout : STD_LOGIC_VECTOR (1599 DOWNTO 0);
SIGNAL rx_phfifordenable : STD_LOGIC_VECTOR (0 DOWNTO 0);
SIGNAL rx_phfiforeset : STD_LOGIC_VECTOR (0 DOWNTO 0);
SIGNAL rx_phfifowrdisable : STD_LOGIC_VECTOR (0 DOWNTO 0);
SIGNAL rx_pll_pfdrefclkout_wire : STD_LOGIC_VECTOR (0 DOWNTO 0);
SIGNAL rx_pma_analogtestbus : STD_LOGIC_VECTOR (4 DOWNTO 0);
SIGNAL rx_pma_clockout : STD_LOGIC_VECTOR (0 DOWNTO 0);
SIGNAL rx_pma_recoverdataout_wire : STD_LOGIC_VECTOR (9 DOWNTO 0);
SIGNAL rx_pmadprioin_wire : STD_LOGIC_VECTOR (1199 DOWNTO 0);
SIGNAL rx_pmadprioout : STD_LOGIC_VECTOR (1199 DOWNTO 0);
SIGNAL rx_powerdown : STD_LOGIC_VECTOR (0 DOWNTO 0);
SIGNAL rx_powerdown_in : STD_LOGIC_VECTOR (3 DOWNTO 0);
SIGNAL rx_prbscidenable : STD_LOGIC_VECTOR (0 DOWNTO 0);
SIGNAL rx_reverselpbkout : STD_LOGIC_VECTOR (0 DOWNTO 0);
SIGNAL rx_revparallelfdbkdata : STD_LOGIC_VECTOR (19 DOWNTO 0);
SIGNAL rx_rmfiforeset : STD_LOGIC_VECTOR (0 DOWNTO 0);
SIGNAL rx_signaldetect_wire : STD_LOGIC_VECTOR (0 DOWNTO 0);
SIGNAL tx_analogreset_out : STD_LOGIC_VECTOR (3 DOWNTO 0);
SIGNAL tx_clkout_int_wire : STD_LOGIC_VECTOR (0 DOWNTO 0);
SIGNAL tx_core_clkout_wire : STD_LOGIC_VECTOR (0 DOWNTO 0);
SIGNAL tx_datain_wire : STD_LOGIC_VECTOR (7 DOWNTO 0);
SIGNAL tx_dataout_pcs_to_pma : STD_LOGIC_VECTOR (9 DOWNTO 0);
SIGNAL tx_diagnosticlpbkin : STD_LOGIC_VECTOR (0 DOWNTO 0);
SIGNAL tx_digitalreset_in : STD_LOGIC_VECTOR (3 DOWNTO 0);
SIGNAL tx_digitalreset_out : STD_LOGIC_VECTOR (3 DOWNTO 0);
SIGNAL tx_dprioin_wire : STD_LOGIC_VECTOR (599 DOWNTO 0);
SIGNAL tx_invpolarity : STD_LOGIC_VECTOR (0 DOWNTO 0);
SIGNAL tx_localrefclk : STD_LOGIC_VECTOR (0 DOWNTO 0);
SIGNAL tx_pcs_forceelecidleout : STD_LOGIC_VECTOR (0 DOWNTO 0);
SIGNAL tx_phfiforeset : STD_LOGIC_VECTOR (0 DOWNTO 0);
SIGNAL tx_pipepowerdownout : STD_LOGIC_VECTOR (1 DOWNTO 0);
SIGNAL tx_pipepowerstateout : STD_LOGIC_VECTOR (3 DOWNTO 0);
SIGNAL tx_pma_fastrefclk0in : STD_LOGIC_VECTOR (0 DOWNTO 0);
SIGNAL tx_pma_refclk0in : STD_LOGIC_VECTOR (0 DOWNTO 0);
SIGNAL tx_pma_refclk0inpulse : STD_LOGIC_VECTOR (0 DOWNTO 0);
SIGNAL tx_pmadprioin_wire : STD_LOGIC_VECTOR (1199 DOWNTO 0);
SIGNAL tx_pmadprioout : STD_LOGIC_VECTOR (1199 DOWNTO 0);
SIGNAL tx_revparallellpbken : STD_LOGIC_VECTOR (0 DOWNTO 0);
SIGNAL tx_rxdetectvalidout : STD_LOGIC_VECTOR (0 DOWNTO 0);
SIGNAL tx_rxfoundout : STD_LOGIC_VECTOR (0 DOWNTO 0);
SIGNAL tx_serialloopbackout : STD_LOGIC_VECTOR (0 DOWNTO 0);
SIGNAL tx_txdprioout : STD_LOGIC_VECTOR (599 DOWNTO 0);
SIGNAL txdataout : STD_LOGIC_VECTOR (0 DOWNTO 0);
SIGNAL txdetectrxout : STD_LOGIC_VECTOR (0 DOWNTO 0);
SIGNAL w_cent_unit_dpriodisableout1w : STD_LOGIC_VECTOR (0 DOWNTO 0);
SIGNAL wire_w_fixedclk_fast_range38w : STD_LOGIC_VECTOR (0 DOWNTO 0);
SIGNAL wire_w_fixedclk_fast_range45w : STD_LOGIC_VECTOR (0 DOWNTO 0);
SIGNAL wire_w_fixedclk_fast_range50w : STD_LOGIC_VECTOR (0 DOWNTO 0);
SIGNAL wire_w_fixedclk_fast_range55w : STD_LOGIC_VECTOR (0 DOWNTO 0);
SIGNAL wire_w_rx_analogreset_range266w : STD_LOGIC_VECTOR (0 DOWNTO 0);
COMPONENT altpll
GENERIC
(
bandwidth_type : STRING := "AUTO";
clk0_divide_by : NATURAL := 1;
clk0_multiply_by : NATURAL := 1;
clk1_divide_by : NATURAL := 1;
clk1_multiply_by : NATURAL := 1;
clk2_divide_by : NATURAL := 1;
clk2_duty_cycle : NATURAL := 50;
clk2_multiply_by : NATURAL := 1;
DPA_DIVIDE_BY : NATURAL := 1;
DPA_MULTIPLY_BY : NATURAL := 0;
inclk0_input_frequency : NATURAL := 0;
operation_mode : STRING := "normal";
INTENDED_DEVICE_FAMILY : STRING := "Cyclone IV GX"
);
PORT
(
areset : IN STD_LOGIC := '0';
clk : OUT STD_LOGIC_VECTOR(5 DOWNTO 0);
fref : OUT STD_LOGIC;
icdrclk : OUT STD_LOGIC;
inclk : IN STD_LOGIC_VECTOR(1 DOWNTO 0) := (OTHERS => '0');
locked : OUT STD_LOGIC
);
END COMPONENT;
COMPONENT cycloneiv_hssi_calibration_block
GENERIC
(
cont_cal_mode : STRING := "false";
enable_rx_cal_tw : STRING := "false";
enable_tx_cal_tw : STRING := "false";
rtest : STRING := "false";
rx_cal_wt_value : NATURAL := 0;
send_rx_cal_status : STRING := "false";
tx_cal_wt_value : NATURAL := 1;
lpm_type : STRING := "cycloneiv_hssi_calibration_block"
);
PORT
(
calibrationstatus : OUT STD_LOGIC_VECTOR(4 DOWNTO 0);
clk : IN STD_LOGIC := '0';
nonusertocmu : OUT STD_LOGIC;
powerdn : IN STD_LOGIC := '0';
testctrl : IN STD_LOGIC := '0'
);
END COMPONENT;
COMPONENT cycloneiv_hssi_cmu
GENERIC
(
auto_spd_deassert_ph_fifo_rst_count : NATURAL := 0;
auto_spd_phystatus_notify_count : NATURAL := 0;
coreclk_out_gated_by_quad_reset : STRING := "false";
devaddr : NATURAL := 1;
dprio_config_mode : STD_LOGIC_VECTOR(5 DOWNTO 0) := "000000";
in_xaui_mode : STRING := "false";
portaddr : NATURAL := 1;
rx0_channel_bonding : STRING := "none";
rx0_clk1_mux_select : STRING := "recovered clock";
rx0_clk2_mux_select : STRING := "recovered clock";
rx0_clk_pd_enable : STRING := "false";
rx0_logical_to_physical_mapping : NATURAL := 0;
rx0_ph_fifo_reg_mode : STRING := "false";
rx0_ph_fifo_reset_enable : STRING := "false";
rx0_ph_fifo_user_ctrl_enable : STRING := "false";
rx0_rd_clk_mux_select : STRING := "int clock";
rx0_recovered_clk_mux_select : STRING := "recovered clock";
rx0_reset_clock_output_during_digital_reset : STRING := "false";
rx0_use_double_data_mode : STRING := "false";
rx1_logical_to_physical_mapping : NATURAL := 1;
rx2_logical_to_physical_mapping : NATURAL := 2;
rx3_logical_to_physical_mapping : NATURAL := 3;
rx_xaui_sm_backward_compatible_enable : STRING := "false";
select_refclk_dig : STRING := "false";
tx0_channel_bonding : STRING := "none";
tx0_clk_pd_enable : STRING := "false";
tx0_logical_to_physical_mapping : NATURAL := 0;
tx0_ph_fifo_reset_enable : STRING := "false";
tx0_ph_fifo_user_ctrl_enable : STRING := "false";
tx0_rd_clk_mux_select : STRING := "local";
tx0_reset_clock_output_during_digital_reset : STRING := "false";
tx0_use_double_data_mode : STRING := "false";
tx0_wr_clk_mux_select : STRING := "int_clk";
tx1_logical_to_physical_mapping : NATURAL := 1;
tx2_logical_to_physical_mapping : NATURAL := 2;
tx3_logical_to_physical_mapping : NATURAL := 3;
tx_xaui_sm_backward_compatible_enable : STRING := "false";
use_coreclk_out_post_divider : STRING := "false";
use_deskew_fifo : STRING := "false";
lpm_type : STRING := "cycloneiv_hssi_cmu"
);
PORT
(
adet : IN STD_LOGIC_VECTOR(3 DOWNTO 0) := (OTHERS => '0');
alignstatus : OUT STD_LOGIC;
coreclkout : OUT STD_LOGIC;
digitaltestout : OUT STD_LOGIC_VECTOR(9 DOWNTO 0);
dpclk : IN STD_LOGIC := '0';
dpriodisable : IN STD_LOGIC := '1';
dpriodisableout : OUT STD_LOGIC;
dprioin : IN STD_LOGIC := '0';
dprioload : IN STD_LOGIC := '0';
dpriooe : OUT STD_LOGIC;
dprioout : OUT STD_LOGIC;
enabledeskew : OUT STD_LOGIC;
fiforesetrd : OUT STD_LOGIC;
fixedclk : IN STD_LOGIC_VECTOR(3 DOWNTO 0) := (OTHERS => '0');
nonuserfromcal : IN STD_LOGIC := '0';
pmacramtest : IN STD_LOGIC := '0';
quadreset : IN STD_LOGIC := '0';
quadresetout : OUT STD_LOGIC;
rdalign : IN STD_LOGIC_VECTOR(3 DOWNTO 0) := (OTHERS => '0');
rdenablesync : IN STD_LOGIC := '1';
recovclk : IN STD_LOGIC := '0';
refclkdig : IN STD_LOGIC := '0';
refclkout : OUT STD_LOGIC;
rxanalogreset : IN STD_LOGIC_VECTOR(3 DOWNTO 0) := (OTHERS => '0');
rxanalogresetout : OUT STD_LOGIC_VECTOR(3 DOWNTO 0);
rxcoreclk : IN STD_LOGIC := '0';
rxcrupowerdown : OUT STD_LOGIC_VECTOR(3 DOWNTO 0);
rxctrl : IN STD_LOGIC_VECTOR(3 DOWNTO 0) := (OTHERS => '0');
rxctrlout : OUT STD_LOGIC_VECTOR(3 DOWNTO 0);
rxdatain : IN STD_LOGIC_VECTOR(31 DOWNTO 0) := (OTHERS => '0');
rxdataout : OUT STD_LOGIC_VECTOR(31 DOWNTO 0);
rxdatavalid : IN STD_LOGIC_VECTOR(3 DOWNTO 0) := (OTHERS => '0');
rxdigitalreset : IN STD_LOGIC_VECTOR(3 DOWNTO 0) := (OTHERS => '0');
rxdigitalresetout : OUT STD_LOGIC_VECTOR(3 DOWNTO 0);
rxibpowerdown : OUT STD_LOGIC_VECTOR(3 DOWNTO 0);
rxpcsdprioin : IN STD_LOGIC_VECTOR(1599 DOWNTO 0) := (OTHERS => '0');
rxpcsdprioout : OUT STD_LOGIC_VECTOR(1599 DOWNTO 0);
rxphfifordenable : IN STD_LOGIC := '1';
rxphfiforeset : IN STD_LOGIC := '0';
rxphfifowrdisable : IN STD_LOGIC := '0';
rxphfifox4byteselout : OUT STD_LOGIC;
rxphfifox4rdenableout : OUT STD_LOGIC;
rxphfifox4wrclkout : OUT STD_LOGIC;
rxphfifox4wrenableout : OUT STD_LOGIC;
rxpmadprioin : IN STD_LOGIC_VECTOR(1199 DOWNTO 0) := (OTHERS => '0');
rxpmadprioout : OUT STD_LOGIC_VECTOR(1199 DOWNTO 0);
rxpowerdown : IN STD_LOGIC_VECTOR(3 DOWNTO 0) := (OTHERS => '0');
rxrunningdisp : IN STD_LOGIC_VECTOR(3 DOWNTO 0) := (OTHERS => '0');
scanclk : IN STD_LOGIC := '0';
scanmode : IN STD_LOGIC := '0';
scanshift : IN STD_LOGIC := '0';
syncstatus : IN STD_LOGIC_VECTOR(3 DOWNTO 0) := (OTHERS => '0');
testin : IN STD_LOGIC_VECTOR(1999 DOWNTO 0) := (OTHERS => '0');
testout : OUT STD_LOGIC_VECTOR(2399 DOWNTO 0);
txanalogresetout : OUT STD_LOGIC_VECTOR(3 DOWNTO 0);
txclk : IN STD_LOGIC := '0';
txcoreclk : IN STD_LOGIC := '0';
txctrl : IN STD_LOGIC_VECTOR(3 DOWNTO 0) := (OTHERS => '0');
txctrlout : OUT STD_LOGIC_VECTOR(3 DOWNTO 0);
txdatain : IN STD_LOGIC_VECTOR(31 DOWNTO 0) := (OTHERS => '0');
txdataout : OUT STD_LOGIC_VECTOR(31 DOWNTO 0);
txdetectrxpowerdown : OUT STD_LOGIC_VECTOR(3 DOWNTO 0);
txdigitalreset : IN STD_LOGIC_VECTOR(3 DOWNTO 0) := (OTHERS => '0');
txdigitalresetout : OUT STD_LOGIC_VECTOR(3 DOWNTO 0);
txdividerpowerdown : OUT STD_LOGIC_VECTOR(3 DOWNTO 0);
txobpowerdown : OUT STD_LOGIC_VECTOR(3 DOWNTO 0);
txpcsdprioin : IN STD_LOGIC_VECTOR(599 DOWNTO 0) := (OTHERS => '0');
txpcsdprioout : OUT STD_LOGIC_VECTOR(599 DOWNTO 0);
txphfiforddisable : IN STD_LOGIC := '0';
txphfiforeset : IN STD_LOGIC := '0';
txphfifowrenable : IN STD_LOGIC := '0';
txphfifox4byteselout : OUT STD_LOGIC;
txphfifox4rdclkout : OUT STD_LOGIC;
txphfifox4rdenableout : OUT STD_LOGIC;
txphfifox4wrenableout : OUT STD_LOGIC;
txpmadprioin : IN STD_LOGIC_VECTOR(1199 DOWNTO 0) := (OTHERS => '0');
txpmadprioout : OUT STD_LOGIC_VECTOR(1199 DOWNTO 0)
);
END COMPONENT;
COMPONENT cycloneiv_hssi_rx_pcs
GENERIC
(
align_ordered_set_based : STRING := "false";
align_pattern : STRING := "UNUSED";
align_pattern_length : NATURAL := 7;
align_to_deskew_pattern_pos_disp_only : STRING := "false";
allow_align_polarity_inversion : STRING := "false";
allow_pipe_polarity_inversion : STRING := "false";
auto_spd_deassert_ph_fifo_rst_count : NATURAL := 0;
auto_spd_phystatus_notify_count : NATURAL := 0;
bit_slip_enable : STRING := "false";
byte_order_back_compat_enable : STRING := "false";
byte_order_invalid_code_or_run_disp_error : STRING := "false";
byte_order_mode : STRING := "none";
byte_order_pad_pattern : STRING := "UNUSED";
byte_order_pattern : STRING := "UNUSED";
byte_order_pld_ctrl_enable : STRING := "false";
cdrctrl_bypass_ppm_detector_cycle : NATURAL := 0;
cdrctrl_cid_mode_enable : STRING := "false";
cdrctrl_enable : STRING := "false";
cdrctrl_mask_cycle : NATURAL := 0;
cdrctrl_min_lock_to_ref_cycle : NATURAL := 0;
cdrctrl_rxvalid_mask : STRING := "false";
channel_bonding : STRING := "none";
channel_number : NATURAL := 0;
channel_width : NATURAL := 8;
clk1_mux_select : STRING := "recovered clock";
clk2_mux_select : STRING := "recovered clock";
core_clock_0ppm : STRING := "false";
datapath_low_latency_mode : STRING := "false";
datapath_protocol : STRING := "basic";
dec_8b_10b_compatibility_mode : STRING := "false";
dec_8b_10b_mode : STRING := "none";
deskew_pattern : STRING := "UNUSED";
disable_auto_idle_insertion : STRING := "false";
disable_running_disp_in_word_align : STRING := "false";
disallow_kchar_after_pattern_ordered_set : STRING := "false";
dprio_config_mode : STD_LOGIC_VECTOR(5 DOWNTO 0) := "000000";
elec_idle_eios_detect_priority_over_eidle_disable : STRING := "false";
elec_idle_gen1_sigdet_enable : STRING := "false";
elec_idle_infer_enable : STRING := "false";
elec_idle_num_com_detect : NATURAL := 0;
enable_bit_reversal : STRING := "false";
enable_self_test_mode : STRING := "false";
error_from_wa_or_8b_10b_select : STRING := "false";
force_signal_detect_dig : STRING := "false";
hip_enable : STRING := "false";
infiniband_invalid_code : NATURAL := 0;
insert_pad_on_underflow : STRING := "false";
logical_channel_address : NATURAL := 0;
num_align_code_groups_in_ordered_set : NATURAL := 0;
num_align_cons_good_data : NATURAL := 1;
num_align_cons_pat : NATURAL := 1;
num_align_loss_sync_error : NATURAL := 1;
ph_fifo_low_latency_enable : STRING := "false";
ph_fifo_reg_mode : STRING := "false";
ph_fifo_reset_enable : STRING := "false";
ph_fifo_user_ctrl_enable : STRING := "false";
phystatus_delay : NATURAL := 0;
phystatus_reset_toggle : STRING := "false";
pipe_auto_speed_nego_enable : STRING := "false";
prbs_all_one_detect : STRING := "false";
prbs_cid_pattern : STRING := "false";
prbs_cid_pattern_length : NATURAL := 0;
protocol_hint : STRING := "basic";
rate_match_back_to_back : STRING := "false";
rate_match_delete_threshold : NATURAL := 0;
rate_match_empty_threshold : NATURAL := 0;
rate_match_fifo_mode : STRING := "false";
rate_match_full_threshold : NATURAL := 0;
rate_match_insert_threshold : NATURAL := 0;
rate_match_ordered_set_based : STRING := "false";
rate_match_pattern1 : STRING := "UNUSED";
rate_match_pattern2 : STRING := "UNUSED";
rate_match_pattern_size : NATURAL := 10;
rate_match_pipe_enable : STRING := "false";
rate_match_reset_enable : STRING := "false";
rate_match_skip_set_based : STRING := "false";
rate_match_start_threshold : NATURAL := 0;
rd_clk_mux_select : STRING := "int clock";
recovered_clk_mux_select : STRING := "recovered clock";
reset_clock_output_during_digital_reset : STRING := "false";
run_length : NATURAL := 4;
run_length_enable : STRING := "false";
rx_detect_bypass : STRING := "false";
rx_phfifo_wait_cnt : NATURAL := 0;
rxstatus_error_report_mode : NATURAL := 0;
self_test_mode : STRING := "prbs7";
test_bus_sel : NATURAL := 0;
use_alignment_state_machine : STRING := "false";
use_deskew_fifo : STRING := "false";
use_double_data_mode : STRING := "false";
use_parallel_loopback : STRING := "false";
lpm_type : STRING := "cycloneiv_hssi_rx_pcs"
);
PORT
(
a1a2size : IN STD_LOGIC := '0';
a1a2sizeout : OUT STD_LOGIC_VECTOR(1 DOWNTO 0);
a1detect : OUT STD_LOGIC;
a2detect : OUT STD_LOGIC;
adetectdeskew : OUT STD_LOGIC;
alignstatus : IN STD_LOGIC := '0';
alignstatussync : IN STD_LOGIC := '0';
alignstatussyncout : OUT STD_LOGIC;
bistdone : OUT STD_LOGIC;
bisterr : OUT STD_LOGIC;
bitslip : IN STD_LOGIC := '0';
bitslipboundaryselectout : OUT STD_LOGIC_VECTOR(4 DOWNTO 0);
byteorderalignstatus : OUT STD_LOGIC;
cdrctrlearlyeios : OUT STD_LOGIC;
cdrctrllocktorefcl : IN STD_LOGIC := '0';
cdrctrllocktorefclkout : OUT STD_LOGIC;
clkout : OUT STD_LOGIC;
coreclk : IN STD_LOGIC := '0';
coreclkout : OUT STD_LOGIC;
ctrldetect : OUT STD_LOGIC_VECTOR(1 DOWNTO 0);
datain : IN STD_LOGIC_VECTOR(9 DOWNTO 0) := (OTHERS => '0');
dataout : OUT STD_LOGIC_VECTOR(19 DOWNTO 0);
dataoutfull : OUT STD_LOGIC_VECTOR(31 DOWNTO 0);
digitalreset : IN STD_LOGIC := '0';
disperr : OUT STD_LOGIC_VECTOR(1 DOWNTO 0);
dpriodisable : IN STD_LOGIC := '1';
dprioin : IN STD_LOGIC_VECTOR(399 DOWNTO 0) := (OTHERS => '0');
dprioout : OUT STD_LOGIC_VECTOR(399 DOWNTO 0);
elecidleinfersel : IN STD_LOGIC_VECTOR(2 DOWNTO 0) := (OTHERS => '0');
enabledeskew : IN STD_LOGIC := '0';
enabyteord : IN STD_LOGIC := '0';
enapatternalign : IN STD_LOGIC := '0';
errdetect : OUT STD_LOGIC_VECTOR(1 DOWNTO 0);
fifordin : IN STD_LOGIC := '0';
fifordout : OUT STD_LOGIC;
fiforesetrd : IN STD_LOGIC := '0';
grayelecidleinferselfromtx : IN STD_LOGIC_VECTOR(2 DOWNTO 0) := (OTHERS => '0');
hip8b10binvpolarity : IN STD_LOGIC := '0';
hipdataout : OUT STD_LOGIC_VECTOR(8 DOWNTO 0);
hipdatavalid : OUT STD_LOGIC;
hipelecidle : OUT STD_LOGIC;
hipelecidleinfersel : IN STD_LOGIC_VECTOR(2 DOWNTO 0) := (OTHERS => '0');
hipphydonestatus : OUT STD_LOGIC;
hippowerdown : IN STD_LOGIC_VECTOR(1 DOWNTO 0) := (OTHERS => '0');
hipstatus : OUT STD_LOGIC_VECTOR(2 DOWNTO 0);
invpol : IN STD_LOGIC := '0';
k1detect : OUT STD_LOGIC;
k2detect : OUT STD_LOGIC;
localrefclk : IN STD_LOGIC := '0';
masterclk : IN STD_LOGIC := '0';
parallelfdbk : IN STD_LOGIC_VECTOR(19 DOWNTO 0) := (OTHERS => '0');
patterndetect : OUT STD_LOGIC_VECTOR(1 DOWNTO 0);
phfifooverflow : OUT STD_LOGIC;
phfifordenable : IN STD_LOGIC := '1';
phfifordenableout : OUT STD_LOGIC;
phfiforeset : IN STD_LOGIC := '0';
phfiforesetout : OUT STD_LOGIC;
phfifounderflow : OUT STD_LOGIC;
phfifowrdisable : IN STD_LOGIC := '0';
phfifowrdisableout : OUT STD_LOGIC;
phfifox4bytesel : IN STD_LOGIC := '0';
phfifox4rdenable : IN STD_LOGIC := '0';
phfifox4wrclk : IN STD_LOGIC := '0';
phfifox4wrenable : IN STD_LOGIC := '0';
pipe8b10binvpolarity : IN STD_LOGIC := '0';
pipebufferstat : OUT STD_LOGIC_VECTOR(3 DOWNTO 0);
pipedatavalid : OUT STD_LOGIC;
pipeelecidle : OUT STD_LOGIC;
pipeenrevparallellpbkfromtx : IN STD_LOGIC := '0';
pipephydonestatus : OUT STD_LOGIC;
pipepowerdown : IN STD_LOGIC_VECTOR(1 DOWNTO 0) := (OTHERS => '0');
pipepowerstate : IN STD_LOGIC_VECTOR(3 DOWNTO 0) := (OTHERS => '0');
pipestatetransdoneout : OUT STD_LOGIC;
pipestatus : OUT STD_LOGIC_VECTOR(2 DOWNTO 0);
pmatestbusin : IN STD_LOGIC_VECTOR(7 DOWNTO 0) := (OTHERS => '0');
powerdn : IN STD_LOGIC_VECTOR(1 DOWNTO 0) := (OTHERS => '0');
prbscidenable : IN STD_LOGIC := '0';
quadreset : IN STD_LOGIC := '0';
rdalign : OUT STD_LOGIC;
recoveredclk : IN STD_LOGIC := '0';
refclk : IN STD_LOGIC := '0';
revbitorderwa : IN STD_LOGIC := '0';
revbyteorderwa : IN STD_LOGIC := '0';
revparallelfdbkdata : OUT STD_LOGIC_VECTOR(19 DOWNTO 0);
rlv : OUT STD_LOGIC;
rmfifodatadeleted : OUT STD_LOGIC_VECTOR(1 DOWNTO 0);
rmfifodatainserted : OUT STD_LOGIC_VECTOR(1 DOWNTO 0);
rmfifoempty : OUT STD_LOGIC;
rmfifofull : OUT STD_LOGIC;
rmfifordena : IN STD_LOGIC := '1';
rmfiforeset : IN STD_LOGIC := '0';
rmfifowrena : IN STD_LOGIC := '1';
runningdisp : OUT STD_LOGIC_VECTOR(1 DOWNTO 0);
rxdetectvalid : IN STD_LOGIC := '0';
rxfound : IN STD_LOGIC_VECTOR(1 DOWNTO 0) := (OTHERS => '0');
signaldetect : OUT STD_LOGIC;
signaldetected : IN STD_LOGIC := '0';
syncstatus : OUT STD_LOGIC_VECTOR(1 DOWNTO 0);
syncstatusdeskew : OUT STD_LOGIC;
wareset : IN STD_LOGIC := '0';
xauidelcondmet : IN STD_LOGIC := '0';
xauidelcondmetout : OUT STD_LOGIC;
xauififoovr : IN STD_LOGIC := '0';
xauififoovrout : OUT STD_LOGIC;
xauiinsertincomplete : IN STD_LOGIC := '0';
xauiinsertincompleteout : OUT STD_LOGIC;
xauilatencycomp : IN STD_LOGIC := '0';
xauilatencycompout : OUT STD_LOGIC;
xgmctrldet : OUT STD_LOGIC;
xgmctrlin : IN STD_LOGIC := '0';
xgmdatain : IN STD_LOGIC_VECTOR(7 DOWNTO 0) := (OTHERS => '0');
xgmdataout : OUT STD_LOGIC_VECTOR(7 DOWNTO 0);
xgmdatavalid : OUT STD_LOGIC;
xgmrunningdisp : OUT STD_LOGIC
);
END COMPONENT;
COMPONENT cycloneiv_hssi_rx_pma
GENERIC
(
allow_serial_loopback : STRING := "false";
channel_number : NATURAL := 0;
common_mode : STRING := "0.82V";
deserialization_factor : NATURAL := 8;
dprio_config_mode : STD_LOGIC_VECTOR(5 DOWNTO 0) := "000000";
effective_data_rate : STRING := "UNUSED";
enable_dpa_shift : STRING := "false";
enable_initial_phase_selection : STRING := "true";
enable_local_divider : STRING := "false";
enable_ltd : STRING := "false";
enable_ltr : STRING := "false";
enable_pd_counter_accumulate_mode : STRING := "true";
enable_second_order_loop : STRING := "false";
eq_dc_gain : NATURAL := 0;
eq_setting : NATURAL := 1;
force_signal_detect : STRING := "false";
initial_phase_value : NATURAL := 0;
logical_channel_address : NATURAL := 0;
loop_1_digital_filter : NATURAL := 8;
offset_cancellation : NATURAL := 0;
pd1_counter_setting : NATURAL := 3;
pd2_counter_setting : NATURAL := 2;
pd_rising_edge_only : STRING := "false";
phase_step_add_setting : NATURAL := 2;
phase_step_sub_setting : NATURAL := 1;
pi_frequency_selector : NATURAL := 0;
ppm_gen1_2_xcnt_en : NATURAL := 0;
ppm_post_eidle : NATURAL := 0;
ppmselect : NATURAL := 0;
protocol_hint : STRING := "basic";
send_reverse_serial_loopback_data : STRING := "false";
send_reverse_serial_loopback_recovered_clk : STRING := "false";
signal_detect_hysteresis : NATURAL := 4;
signal_detect_hysteresis_valid_threshold : NATURAL := 14;
signal_detect_loss_threshold : NATURAL := 3;
termination : STRING := "OCT 100 Ohms";
use_external_termination : STRING := "false";
lpm_type : STRING := "cycloneiv_hssi_rx_pma"
);
PORT
(
analogtestbus : OUT STD_LOGIC_VECTOR(7 DOWNTO 0);
clockout : OUT STD_LOGIC;
crupowerdn : IN STD_LOGIC := '0';
datain : IN STD_LOGIC := '0';
datastrobeout : OUT STD_LOGIC;
deserclock : IN STD_LOGIC := '0';
diagnosticlpbkout : OUT STD_LOGIC;
dpashift : IN STD_LOGIC := '0';
dpriodisable : IN STD_LOGIC := '1';
dprioin : IN STD_LOGIC_VECTOR(299 DOWNTO 0) := (OTHERS => '0');
dprioout : OUT STD_LOGIC_VECTOR(299 DOWNTO 0);
freqlocked : OUT STD_LOGIC;
locktodata : IN STD_LOGIC := '0';
locktoref : IN STD_LOGIC := '0';
locktorefout : OUT STD_LOGIC;
powerdn : IN STD_LOGIC := '0';
ppmdetectrefclk : IN STD_LOGIC := '0';
recoverdataout : OUT STD_LOGIC_VECTOR(9 DOWNTO 0);
reverselpbkout : OUT STD_LOGIC;
rxpmareset : IN STD_LOGIC := '0';
seriallpbkin : IN STD_LOGIC := '0';
signaldetect : OUT STD_LOGIC;
testbussel : IN STD_LOGIC_VECTOR(3 DOWNTO 0) := (OTHERS => '0')
);
END COMPONENT;
COMPONENT cycloneiv_hssi_tx_pcs
GENERIC
(
allow_polarity_inversion : STRING := "false";
bitslip_enable : STRING := "false";
channel_bonding : STRING := "none";
channel_number : NATURAL := 0;
channel_width : NATURAL := 8;
core_clock_0ppm : STRING := "false";
datapath_low_latency_mode : STRING := "false";
datapath_protocol : STRING := "basic";
disable_ph_low_latency_mode : STRING := "false";
disparity_mode : STRING := "none";
dprio_config_mode : STD_LOGIC_VECTOR(5 DOWNTO 0) := "000000";
elec_idle_delay : NATURAL := 3;
enable_bit_reversal : STRING := "false";
enable_idle_selection : STRING := "false";
enable_phfifo_bypass : STRING := "false";
enable_reverse_parallel_loopback : STRING := "false";
enable_self_test_mode : STRING := "false";
enc_8b_10b_compatibility_mode : STRING := "false";
enc_8b_10b_mode : STRING := "none";
force_echar : STRING := "false";
force_kchar : STRING := "false";
hip_enable : STRING := "false";
logical_channel_address : NATURAL := 0;
ph_fifo_reg_mode : STRING := "false";
ph_fifo_reset_enable : STRING := "false";
ph_fifo_user_ctrl_enable : STRING := "false";
pipe_voltage_swing_control : STRING := "false";
prbs_cid_pattern : STRING := "false";
prbs_cid_pattern_length : NATURAL := 0;
protocol_hint : STRING := "basic";
refclk_select : STRING := "local";
reset_clock_output_during_digital_reset : STRING := "false";
self_test_mode : STRING := "crpat";
use_double_data_mode : STRING := "false";
wr_clk_mux_select : STRING := "int_clk";
lpm_type : STRING := "cycloneiv_hssi_tx_pcs"
);
PORT
(
bitslipboundaryselect : IN STD_LOGIC_VECTOR(4 DOWNTO 0) := (OTHERS => '0');
clkout : OUT STD_LOGIC;
coreclk : IN STD_LOGIC := '0';
coreclkout : OUT STD_LOGIC;
ctrlenable : IN STD_LOGIC_VECTOR(1 DOWNTO 0) := (OTHERS => '0');
datain : IN STD_LOGIC_VECTOR(19 DOWNTO 0) := (OTHERS => '0');
datainfull : IN STD_LOGIC_VECTOR(21 DOWNTO 0) := (OTHERS => '0');
dataout : OUT STD_LOGIC_VECTOR(9 DOWNTO 0);
detectrxloop : IN STD_LOGIC := '0';
digitalreset : IN STD_LOGIC := '0';
dispval : IN STD_LOGIC_VECTOR(1 DOWNTO 0) := (OTHERS => '0');
dpriodisable : IN STD_LOGIC := '1';
dprioin : IN STD_LOGIC_VECTOR(149 DOWNTO 0) := (OTHERS => '0');
dprioout : OUT STD_LOGIC_VECTOR(149 DOWNTO 0);
elecidleinfersel : IN STD_LOGIC_VECTOR(2 DOWNTO 0) := (OTHERS => '0');
enrevparallellpbk : IN STD_LOGIC := '0';
forcedisp : IN STD_LOGIC_VECTOR(1 DOWNTO 0) := (OTHERS => '0');
forceelecidle : IN STD_LOGIC := '0';
forceelecidleout : OUT STD_LOGIC;
grayelecidleinferselout : OUT STD_LOGIC_VECTOR(2 DOWNTO 0);
hipdatain : IN STD_LOGIC_VECTOR(9 DOWNTO 0) := (OTHERS => '0');
hipdetectrxloop : IN STD_LOGIC := '0';
hipelecidleinfersel : IN STD_LOGIC_VECTOR(2 DOWNTO 0) := (OTHERS => '0');
hipforceelecidle : IN STD_LOGIC := '0';
hippowerdn : IN STD_LOGIC_VECTOR(1 DOWNTO 0) := (OTHERS => '0');
hiptxclkout : OUT STD_LOGIC;
invpol : IN STD_LOGIC := '0';
localrefclk : IN STD_LOGIC := '0';
parallelfdbkout : OUT STD_LOGIC_VECTOR(19 DOWNTO 0);
phfifooverflow : OUT STD_LOGIC;
phfiforddisable : IN STD_LOGIC := '0';
phfiforddisableout : OUT STD_LOGIC;
phfiforeset : IN STD_LOGIC := '0';
phfiforesetout : OUT STD_LOGIC;
phfifounderflow : OUT STD_LOGIC;
phfifowrenable : IN STD_LOGIC := '1';
phfifowrenableout : OUT STD_LOGIC;
phfifox4bytesel : IN STD_LOGIC := '0';
phfifox4rdclk : IN STD_LOGIC := '0';
phfifox4rdenable : IN STD_LOGIC := '0';
phfifox4wrenable : IN STD_LOGIC := '0';
pipeenrevparallellpbkout : OUT STD_LOGIC;
pipepowerdownout : OUT STD_LOGIC_VECTOR(1 DOWNTO 0);
pipepowerstateout : OUT STD_LOGIC_VECTOR(3 DOWNTO 0);
pipestatetransdone : IN STD_LOGIC := '0';
pipetxswing : IN STD_LOGIC := '0';
powerdn : IN STD_LOGIC_VECTOR(1 DOWNTO 0) := (OTHERS => '0');
prbscidenable : IN STD_LOGIC := '0';
quadreset : IN STD_LOGIC := '0';
rdenablesync : OUT STD_LOGIC;
refclk : IN STD_LOGIC := '0';
revparallelfdbk : IN STD_LOGIC_VECTOR(19 DOWNTO 0) := (OTHERS => '0');
txdetectrx : OUT STD_LOGIC;
xgmctrl : IN STD_LOGIC := '0';
xgmctrlenable : OUT STD_LOGIC;
xgmdatain : IN STD_LOGIC_VECTOR(7 DOWNTO 0) := (OTHERS => '0');
xgmdataout : OUT STD_LOGIC_VECTOR(7 DOWNTO 0)
);
END COMPONENT;
COMPONENT cycloneiv_hssi_tx_pma
GENERIC
(
channel_number : NATURAL := 0;
common_mode : STRING := "0.65V";
dprio_config_mode : STD_LOGIC_VECTOR(5 DOWNTO 0) := "000000";
effective_data_rate : STRING := "UNUSED";
enable_diagnostic_loopback : STRING := "false";
enable_reverse_serial_loopback : STRING := "false";
enable_txclkout_loopback : STRING := "false";
logical_channel_address : NATURAL := 0;
preemp_tap_1 : NATURAL := 0;
protocol_hint : STRING := "basic";
rx_detect : NATURAL := 0;
serialization_factor : NATURAL := 8;
slew_rate : STRING := "low";
termination : STRING := "OCT 100 Ohms";
use_external_termination : STRING := "false";
use_rx_detect : STRING := "false";
vod_selection : NATURAL := 0;
lpm_type : STRING := "cycloneiv_hssi_tx_pma"
);
PORT
(
cgbpowerdn : IN STD_LOGIC := '0';
clockout : OUT STD_LOGIC;
datain : IN STD_LOGIC_VECTOR(9 DOWNTO 0) := (OTHERS => '0');
dataout : OUT STD_LOGIC;
detectrxpowerdown : IN STD_LOGIC := '0';
diagnosticlpbkin : IN STD_LOGIC := '0';
dpriodisable : IN STD_LOGIC := '0';
dprioin : IN STD_LOGIC_VECTOR(299 DOWNTO 0) := (OTHERS => '0');
dprioout : OUT STD_LOGIC_VECTOR(299 DOWNTO 0);
fastrefclk0in : IN STD_LOGIC := '0';
forceelecidle : IN STD_LOGIC := '0';
powerdn : IN STD_LOGIC := '0';
refclk0in : IN STD_LOGIC := '0';
refclk0inpulse : IN STD_LOGIC := '0';
reverselpbkin : IN STD_LOGIC := '0';
rxdetectclk : IN STD_LOGIC := '0';
rxdetecten : IN STD_LOGIC := '0';
rxdetectvalidout : OUT STD_LOGIC;
rxfoundout : OUT STD_LOGIC;
seriallpbkout : OUT STD_LOGIC;
txpmareset : IN STD_LOGIC := '0'
);
END COMPONENT;
BEGIN
wire_gnd <= '0';
wire_vcc <= '1';
wire_w_lg_w_lg_w_lg_fixedclk_sel39w40w41w(0) <= wire_w_lg_w_lg_fixedclk_sel39w40w(0) AND fixedclk_div_in(0);
wire_w_lg_w_lg_w_lg_fixedclk_sel39w46w47w(0) <= wire_w_lg_w_lg_fixedclk_sel39w46w(0) AND fixedclk_div_in(0);
wire_w_lg_w_lg_w_lg_fixedclk_sel39w51w52w(0) <= wire_w_lg_w_lg_fixedclk_sel39w51w(0) AND fixedclk_div_in(0);
wire_w_lg_w_lg_w_lg_fixedclk_sel39w56w57w(0) <= wire_w_lg_w_lg_fixedclk_sel39w56w(0) AND fixedclk_div_in(0);
wire_w_lg_w_lg_w_lg_fixedclk_sel35w36w37w(0) <= wire_w_lg_w_lg_fixedclk_sel35w36w(0) AND fixedclk;
wire_w_lg_w_lg_fixedclk_sel39w40w(0) <= wire_w_lg_fixedclk_sel39w(0) AND wire_w_fixedclk_fast_range38w(0);
wire_w_lg_w_lg_fixedclk_sel39w46w(0) <= wire_w_lg_fixedclk_sel39w(0) AND wire_w_fixedclk_fast_range45w(0);
wire_w_lg_w_lg_fixedclk_sel39w51w(0) <= wire_w_lg_fixedclk_sel39w(0) AND wire_w_fixedclk_fast_range50w(0);
wire_w_lg_w_lg_fixedclk_sel39w56w(0) <= wire_w_lg_fixedclk_sel39w(0) AND wire_w_fixedclk_fast_range55w(0);
wire_w_lg_w_lg_fixedclk_sel35w36w(0) <= wire_w_lg_fixedclk_sel35w(0) AND wire_w_lg_fixedclk_enable34w(0);
wire_w_lg_w_lg_reconfig_togxb_busy267w268w(0) <= wire_w_lg_reconfig_togxb_busy267w(0) AND wire_w_rx_analogreset_range266w(0);
wire_w_lg_fixedclk_sel39w(0) <= fixedclk_sel(0) AND fixedclk_enable(0);
wire_w_lg_fixedclk_enable34w(0) <= NOT fixedclk_enable(0);
wire_w_lg_fixedclk_sel35w(0) <= NOT fixedclk_sel(0);
wire_w_lg_reconfig_togxb_busy267w(0) <= NOT reconfig_togxb_busy(0);
wire_w_lg_w_rx_analogreset_range266w336w(0) <= NOT wire_w_rx_analogreset_range266w(0);
wire_w_lg_w_lg_w_lg_w_lg_fixedclk_sel39w40w41w42w(0) <= wire_w_lg_w_lg_w_lg_fixedclk_sel39w40w41w(0) OR wire_w_lg_w_lg_w_lg_fixedclk_sel35w36w37w(0);
wire_w_lg_w_lg_w_lg_w_lg_fixedclk_sel39w46w47w48w(0) <= wire_w_lg_w_lg_w_lg_fixedclk_sel39w46w47w(0) OR wire_w_lg_w_lg_w_lg_fixedclk_sel35w36w37w(0);
wire_w_lg_w_lg_w_lg_w_lg_fixedclk_sel39w51w52w53w(0) <= wire_w_lg_w_lg_w_lg_fixedclk_sel39w51w52w(0) OR wire_w_lg_w_lg_w_lg_fixedclk_sel35w36w37w(0);
wire_w_lg_w_lg_w_lg_w_lg_fixedclk_sel39w56w57w58w(0) <= wire_w_lg_w_lg_w_lg_fixedclk_sel39w56w57w(0) OR wire_w_lg_w_lg_w_lg_fixedclk_sel35w36w37w(0);
cal_blk_powerdown <= '0';
cent_unit_quadresetout(0) <= ( wire_cent_unit0_quadresetout);
cent_unit_rxcrupowerdn <= ( wire_cent_unit0_rxcrupowerdown(3 DOWNTO 0));
cent_unit_rxibpowerdn <= ( wire_cent_unit0_rxibpowerdown(3 DOWNTO 0));
cent_unit_rxpcsdprioin <= ( "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000"
& "00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000"
& rx_pcsdprioout(399 DOWNTO 0));
cent_unit_rxpcsdprioout <= ( wire_cent_unit0_rxpcsdprioout(1599 DOWNTO 0));
cent_unit_rxpmadprioin <= ( "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" & rx_pmadprioout(299 DOWNTO 0));
cent_unit_rxpmadprioout <= ( wire_cent_unit0_rxpmadprioout(1199 DOWNTO 0));
cent_unit_tx_dprioin <= ( "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" & tx_txdprioout(149 DOWNTO 0));
cent_unit_txdetectrxpowerdn <= ( wire_cent_unit0_txdetectrxpowerdown(3 DOWNTO 0));
cent_unit_txdividerpowerdown <= ( wire_cent_unit0_txdividerpowerdown(3 DOWNTO 0));
cent_unit_txdprioout <= ( wire_cent_unit0_txpcsdprioout(599 DOWNTO 0));
cent_unit_txobpowerdn <= ( wire_cent_unit0_txobpowerdown(3 DOWNTO 0));
cent_unit_txpmadprioin <= ( "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" & tx_pmadprioout(299 DOWNTO 0));
cent_unit_txpmadprioout <= ( wire_cent_unit0_txpmadprioout(1199 DOWNTO 0));
fixedclk_div_in <= fixedclk_div;
fixedclk_enable(0) <= reconfig_togxb_busy_reg(0);
fixedclk_fast <= (OTHERS => '1');
fixedclk_sel(0) <= reconfig_togxb_busy_reg(1);
fixedclk_to_cmu <= ( wire_w_lg_w_lg_w_lg_w_lg_fixedclk_sel39w56w57w58w & wire_w_lg_w_lg_w_lg_w_lg_fixedclk_sel39w51w52w53w & wire_w_lg_w_lg_w_lg_w_lg_fixedclk_sel39w46w47w48w & wire_w_lg_w_lg_w_lg_w_lg_fixedclk_sel39w40w41w42w);
hip_tx_clkout(0) <= ( wire_transmit_pcs0_hiptxclkout);
int_pipeenrevparallellpbkfromtx(0) <= ( wire_transmit_pcs0_pipeenrevparallellpbkout);
nonusertocmu_out(0) <= ( wire_cal_blk0_nonusertocmu);
pipedatavalid(0) <= ( pipedatavalid_out(0));
pipedatavalid_out(0) <= ( wire_receive_pcs0_hipdatavalid);
pipeelecidle(0) <= ( pipeelecidle_out(0));
pipeelecidle_out(0) <= ( wire_receive_pcs0_hipelecidle);
pipephydonestatus(0) <= ( wire_receive_pcs0_hipphydonestatus);
pipestatus <= ( wire_receive_pcs0_hipstatus);
pll_locked(0) <= ( wire_pll0_locked);
pll_powerdown <= (OTHERS => '0');
reconfig_fromgxb <= ( rx_pma_analogtestbus(4 DOWNTO 1) & wire_cent_unit0_dprioout);
reconfig_togxb_busy(0) <= reconfig_togxb(3);
reconfig_togxb_disable(0) <= reconfig_togxb(1);
reconfig_togxb_in(0) <= reconfig_togxb(0);
reconfig_togxb_load(0) <= reconfig_togxb(2);
rx_analogreset_in <= ( "000" & wire_w_lg_w_lg_reconfig_togxb_busy267w268w);
rx_analogreset_out <= ( wire_cent_unit0_rxanalogresetout(3 DOWNTO 0));
rx_ctrldetect(0) <= ( wire_receive_pcs0_hipdataout(8));
rx_dataout <= ( rx_out_wire(7 DOWNTO 0));
rx_deserclock_in(0) <= ( wire_pll0_icdrclk);
rx_digitalreset_in <= ( "000" & rx_digitalreset(0));
rx_digitalreset_out <= ( wire_cent_unit0_rxdigitalresetout(3 DOWNTO 0));
rx_enapatternalign <= (OTHERS => '0');
rx_freqlocked <= ( wire_receive_pma0_w_lg_freqlocked337w);
rx_locktodata <= (OTHERS => '0');
rx_locktorefclk_wire(0) <= ( wire_receive_pcs0_cdrctrllocktorefclkout);
rx_out_wire <= ( wire_receive_pcs0_hipdataout(7 DOWNTO 0));
rx_pcs_rxfound_wire <= ( txdetectrxout(0) & tx_rxfoundout(0));
rx_pcsdprioin_wire <= ( "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000"
& "00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000"
& cent_unit_rxpcsdprioout(399 DOWNTO 0));
rx_pcsdprioout <= ( "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000"
& "00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000"