summaryrefslogtreecommitdiff
path: root/arch/mips/mach-octeon/include/mach/cvmx-pexp-defs.h
blob: 333c2caee14590c2851e0045a087be14885e943f (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
/* SPDX-License-Identifier: GPL-2.0 */
/*
 * Copyright (C) 2020 Marvell International Ltd.
 *
 * Configuration and status register (CSR) definitions for
 * OCTEON PEXP.
 */

#ifndef __CVMX_PEXP_DEFS_H__
#define __CVMX_PEXP_DEFS_H__

#define CVMX_PEXP_NPEI_BAR1_INDEXX(offset)	(0x00011F0000008000ull + ((offset) & 31) * 16)
#define CVMX_PEXP_NPEI_BIST_STATUS		(0x00011F0000008580ull)
#define CVMX_PEXP_NPEI_BIST_STATUS2		(0x00011F0000008680ull)
#define CVMX_PEXP_NPEI_CTL_PORT0		(0x00011F0000008250ull)
#define CVMX_PEXP_NPEI_CTL_PORT1		(0x00011F0000008260ull)
#define CVMX_PEXP_NPEI_CTL_STATUS		(0x00011F0000008570ull)
#define CVMX_PEXP_NPEI_CTL_STATUS2		(0x00011F000000BC00ull)
#define CVMX_PEXP_NPEI_DATA_OUT_CNT		(0x00011F00000085F0ull)
#define CVMX_PEXP_NPEI_DBG_DATA			(0x00011F0000008510ull)
#define CVMX_PEXP_NPEI_DBG_SELECT		(0x00011F0000008500ull)
#define CVMX_PEXP_NPEI_DMA0_INT_LEVEL		(0x00011F00000085C0ull)
#define CVMX_PEXP_NPEI_DMA1_INT_LEVEL		(0x00011F00000085D0ull)
#define CVMX_PEXP_NPEI_DMAX_COUNTS(offset)	(0x00011F0000008450ull + ((offset) & 7) * 16)
#define CVMX_PEXP_NPEI_DMAX_DBELL(offset)	(0x00011F00000083B0ull + ((offset) & 7) * 16)
#define CVMX_PEXP_NPEI_DMAX_IBUFF_SADDR(offset) (0x00011F0000008400ull + ((offset) & 7) * 16)
#define CVMX_PEXP_NPEI_DMAX_NADDR(offset)	(0x00011F00000084A0ull + ((offset) & 7) * 16)
#define CVMX_PEXP_NPEI_DMA_CNTS			(0x00011F00000085E0ull)
#define CVMX_PEXP_NPEI_DMA_CONTROL		(0x00011F00000083A0ull)
#define CVMX_PEXP_NPEI_DMA_PCIE_REQ_NUM		(0x00011F00000085B0ull)
#define CVMX_PEXP_NPEI_DMA_STATE1		(0x00011F00000086C0ull)
#define CVMX_PEXP_NPEI_DMA_STATE1_P1		(0x00011F0000008680ull)
#define CVMX_PEXP_NPEI_DMA_STATE2		(0x00011F00000086D0ull)
#define CVMX_PEXP_NPEI_DMA_STATE2_P1		(0x00011F0000008690ull)
#define CVMX_PEXP_NPEI_DMA_STATE3_P1		(0x00011F00000086A0ull)
#define CVMX_PEXP_NPEI_DMA_STATE4_P1		(0x00011F00000086B0ull)
#define CVMX_PEXP_NPEI_DMA_STATE5_P1		(0x00011F00000086C0ull)
#define CVMX_PEXP_NPEI_INT_A_ENB		(0x00011F0000008560ull)
#define CVMX_PEXP_NPEI_INT_A_ENB2		(0x00011F000000BCE0ull)
#define CVMX_PEXP_NPEI_INT_A_SUM		(0x00011F0000008550ull)
#define CVMX_PEXP_NPEI_INT_ENB			(0x00011F0000008540ull)
#define CVMX_PEXP_NPEI_INT_ENB2			(0x00011F000000BCD0ull)
#define CVMX_PEXP_NPEI_INT_INFO			(0x00011F0000008590ull)
#define CVMX_PEXP_NPEI_INT_SUM			(0x00011F0000008530ull)
#define CVMX_PEXP_NPEI_INT_SUM2			(0x00011F000000BCC0ull)
#define CVMX_PEXP_NPEI_LAST_WIN_RDATA0		(0x00011F0000008600ull)
#define CVMX_PEXP_NPEI_LAST_WIN_RDATA1		(0x00011F0000008610ull)
#define CVMX_PEXP_NPEI_MEM_ACCESS_CTL		(0x00011F00000084F0ull)
#define CVMX_PEXP_NPEI_MEM_ACCESS_SUBIDX(offset)                                                   \
	(0x00011F0000008280ull + ((offset) & 31) * 16 - 16 * 12)
#define CVMX_PEXP_NPEI_MSI_ENB0			      (0x00011F000000BC50ull)
#define CVMX_PEXP_NPEI_MSI_ENB1			      (0x00011F000000BC60ull)
#define CVMX_PEXP_NPEI_MSI_ENB2			      (0x00011F000000BC70ull)
#define CVMX_PEXP_NPEI_MSI_ENB3			      (0x00011F000000BC80ull)
#define CVMX_PEXP_NPEI_MSI_RCV0			      (0x00011F000000BC10ull)
#define CVMX_PEXP_NPEI_MSI_RCV1			      (0x00011F000000BC20ull)
#define CVMX_PEXP_NPEI_MSI_RCV2			      (0x00011F000000BC30ull)
#define CVMX_PEXP_NPEI_MSI_RCV3			      (0x00011F000000BC40ull)
#define CVMX_PEXP_NPEI_MSI_RD_MAP		      (0x00011F000000BCA0ull)
#define CVMX_PEXP_NPEI_MSI_W1C_ENB0		      (0x00011F000000BCF0ull)
#define CVMX_PEXP_NPEI_MSI_W1C_ENB1		      (0x00011F000000BD00ull)
#define CVMX_PEXP_NPEI_MSI_W1C_ENB2		      (0x00011F000000BD10ull)
#define CVMX_PEXP_NPEI_MSI_W1C_ENB3		      (0x00011F000000BD20ull)
#define CVMX_PEXP_NPEI_MSI_W1S_ENB0		      (0x00011F000000BD30ull)
#define CVMX_PEXP_NPEI_MSI_W1S_ENB1		      (0x00011F000000BD40ull)
#define CVMX_PEXP_NPEI_MSI_W1S_ENB2		      (0x00011F000000BD50ull)
#define CVMX_PEXP_NPEI_MSI_W1S_ENB3		      (0x00011F000000BD60ull)
#define CVMX_PEXP_NPEI_MSI_WR_MAP		      (0x00011F000000BC90ull)
#define CVMX_PEXP_NPEI_PCIE_CREDIT_CNT		      (0x00011F000000BD70ull)
#define CVMX_PEXP_NPEI_PCIE_MSI_RCV		      (0x00011F000000BCB0ull)
#define CVMX_PEXP_NPEI_PCIE_MSI_RCV_B1		      (0x00011F0000008650ull)
#define CVMX_PEXP_NPEI_PCIE_MSI_RCV_B2		      (0x00011F0000008660ull)
#define CVMX_PEXP_NPEI_PCIE_MSI_RCV_B3		      (0x00011F0000008670ull)
#define CVMX_PEXP_NPEI_PKTX_CNTS(offset)	      (0x00011F000000A400ull + ((offset) & 31) * 16)
#define CVMX_PEXP_NPEI_PKTX_INSTR_BADDR(offset)	      (0x00011F000000A800ull + ((offset) & 31) * 16)
#define CVMX_PEXP_NPEI_PKTX_INSTR_BAOFF_DBELL(offset) (0x00011F000000AC00ull + ((offset) & 31) * 16)
#define CVMX_PEXP_NPEI_PKTX_INSTR_FIFO_RSIZE(offset)  (0x00011F000000B000ull + ((offset) & 31) * 16)
#define CVMX_PEXP_NPEI_PKTX_INSTR_HEADER(offset)      (0x00011F000000B400ull + ((offset) & 31) * 16)
#define CVMX_PEXP_NPEI_PKTX_IN_BP(offset)	      (0x00011F000000B800ull + ((offset) & 31) * 16)
#define CVMX_PEXP_NPEI_PKTX_SLIST_BADDR(offset)	      (0x00011F0000009400ull + ((offset) & 31) * 16)
#define CVMX_PEXP_NPEI_PKTX_SLIST_BAOFF_DBELL(offset) (0x00011F0000009800ull + ((offset) & 31) * 16)
#define CVMX_PEXP_NPEI_PKTX_SLIST_FIFO_RSIZE(offset)  (0x00011F0000009C00ull + ((offset) & 31) * 16)
#define CVMX_PEXP_NPEI_PKT_CNT_INT		      (0x00011F0000009110ull)
#define CVMX_PEXP_NPEI_PKT_CNT_INT_ENB		      (0x00011F0000009130ull)
#define CVMX_PEXP_NPEI_PKT_DATA_OUT_ES		      (0x00011F00000090B0ull)
#define CVMX_PEXP_NPEI_PKT_DATA_OUT_NS		      (0x00011F00000090A0ull)
#define CVMX_PEXP_NPEI_PKT_DATA_OUT_ROR		      (0x00011F0000009090ull)
#define CVMX_PEXP_NPEI_PKT_DPADDR		      (0x00011F0000009080ull)
#define CVMX_PEXP_NPEI_PKT_INPUT_CONTROL	      (0x00011F0000009150ull)
#define CVMX_PEXP_NPEI_PKT_INSTR_ENB		      (0x00011F0000009000ull)
#define CVMX_PEXP_NPEI_PKT_INSTR_RD_SIZE	      (0x00011F0000009190ull)
#define CVMX_PEXP_NPEI_PKT_INSTR_SIZE		      (0x00011F0000009020ull)
#define CVMX_PEXP_NPEI_PKT_INT_LEVELS		      (0x00011F0000009100ull)
#define CVMX_PEXP_NPEI_PKT_IN_BP		      (0x00011F00000086B0ull)
#define CVMX_PEXP_NPEI_PKT_IN_DONEX_CNTS(offset)      (0x00011F000000A000ull + ((offset) & 31) * 16)
#define CVMX_PEXP_NPEI_PKT_IN_INSTR_COUNTS	      (0x00011F00000086A0ull)
#define CVMX_PEXP_NPEI_PKT_IN_PCIE_PORT		      (0x00011F00000091A0ull)
#define CVMX_PEXP_NPEI_PKT_IPTR			      (0x00011F0000009070ull)
#define CVMX_PEXP_NPEI_PKT_OUTPUT_WMARK		      (0x00011F0000009160ull)
#define CVMX_PEXP_NPEI_PKT_OUT_BMODE		      (0x00011F00000090D0ull)
#define CVMX_PEXP_NPEI_PKT_OUT_ENB		      (0x00011F0000009010ull)
#define CVMX_PEXP_NPEI_PKT_PCIE_PORT		      (0x00011F00000090E0ull)
#define CVMX_PEXP_NPEI_PKT_PORT_IN_RST		      (0x00011F0000008690ull)
#define CVMX_PEXP_NPEI_PKT_SLIST_ES		      (0x00011F0000009050ull)
#define CVMX_PEXP_NPEI_PKT_SLIST_ID_SIZE	      (0x00011F0000009180ull)
#define CVMX_PEXP_NPEI_PKT_SLIST_NS		      (0x00011F0000009040ull)
#define CVMX_PEXP_NPEI_PKT_SLIST_ROR		      (0x00011F0000009030ull)
#define CVMX_PEXP_NPEI_PKT_TIME_INT		      (0x00011F0000009120ull)
#define CVMX_PEXP_NPEI_PKT_TIME_INT_ENB		      (0x00011F0000009140ull)
#define CVMX_PEXP_NPEI_RSL_INT_BLOCKS		      (0x00011F0000008520ull)
#define CVMX_PEXP_NPEI_SCRATCH_1		      (0x00011F0000008270ull)
#define CVMX_PEXP_NPEI_STATE1			      (0x00011F0000008620ull)
#define CVMX_PEXP_NPEI_STATE2			      (0x00011F0000008630ull)
#define CVMX_PEXP_NPEI_STATE3			      (0x00011F0000008640ull)
#define CVMX_PEXP_NPEI_WINDOW_CTL		      (0x00011F0000008380ull)
#define CVMX_PEXP_NQM_VFX_ACQ(offset)		      (0x0001450000000030ull + ((offset) & 2047) * 0x20000ull)
#define CVMX_PEXP_NQM_VFX_AQA(offset)		      (0x0001450000000024ull + ((offset) & 2047) * 0x20000ull)
#define CVMX_PEXP_NQM_VFX_ASQ(offset)		      (0x0001450000000028ull + ((offset) & 2047) * 0x20000ull)
#define CVMX_PEXP_NQM_VFX_CAP(offset)		      (0x0001450000000000ull + ((offset) & 2047) * 0x20000ull)
#define CVMX_PEXP_NQM_VFX_CC(offset)		      (0x0001450000000014ull + ((offset) & 2047) * 0x20000ull)
#define CVMX_PEXP_NQM_VFX_CQX_HDBL(offset, block_id)                                               \
	(0x0001450000001004ull + (((offset) & 31) + ((block_id) & 2047) * 0x4000ull) * 8)
#define CVMX_PEXP_NQM_VFX_CSTS(offset)	   (0x000145000000001Cull + ((offset) & 2047) * 0x20000ull)
#define CVMX_PEXP_NQM_VFX_INTMC(offset)	   (0x0001450000000010ull + ((offset) & 2047) * 0x20000ull)
#define CVMX_PEXP_NQM_VFX_INTMS(offset)	   (0x000145000000000Cull + ((offset) & 2047) * 0x20000ull)
#define CVMX_PEXP_NQM_VFX_MSIX_PBA(offset) (0x0001450000010200ull + ((offset) & 2047) * 0x20000ull)
#define CVMX_PEXP_NQM_VFX_NSSR(offset)	   (0x0001450000000020ull + ((offset) & 2047) * 0x20000ull)
#define CVMX_PEXP_NQM_VFX_SQX_TDBL(offset, block_id)                                               \
	(0x0001450000001000ull + (((offset) & 31) + ((block_id) & 2047) * 0x4000ull) * 8)
#define CVMX_PEXP_NQM_VFX_VECX_MSIX_ADDR(offset, block_id)                                         \
	(0x0001450000010000ull + (((offset) & 31) + ((block_id) & 2047) * 0x2000ull) * 16)
#define CVMX_PEXP_NQM_VFX_VECX_MSIX_CTL(offset, block_id)                                          \
	(0x0001450000010008ull + (((offset) & 31) + ((block_id) & 2047) * 0x2000ull) * 16)
#define CVMX_PEXP_NQM_VFX_VS(offset)		 (0x0001450000000008ull + ((offset) & 2047) * 0x20000ull)
#define CVMX_PEXP_SLITB_MSIXX_TABLE_ADDR(offset) (0x00011F0000004000ull + ((offset) & 127) * 16)
#define CVMX_PEXP_SLITB_MSIXX_TABLE_DATA(offset) (0x00011F0000004008ull + ((offset) & 127) * 16)
#define CVMX_PEXP_SLITB_MSIX_MACX_PFX_TABLE_ADDR(offset, block_id)                                 \
	(0x00011F0000002000ull + ((offset) & 1) * 4096 + ((block_id) & 3) * 0x10ull)
#define CVMX_PEXP_SLITB_MSIX_MACX_PFX_TABLE_DATA(offset, block_id)                                 \
	(0x00011F0000002008ull + ((offset) & 1) * 4096 + ((block_id) & 3) * 0x10ull)
#define CVMX_PEXP_SLITB_PFX_PKT_CNT_INT(offset)	 (0x00011F0000008000ull + ((offset) & 7) * 16)
#define CVMX_PEXP_SLITB_PFX_PKT_INT(offset)	 (0x00011F0000008300ull + ((offset) & 7) * 16)
#define CVMX_PEXP_SLITB_PFX_PKT_IN_INT(offset)	 (0x00011F0000008200ull + ((offset) & 7) * 16)
#define CVMX_PEXP_SLITB_PFX_PKT_RING_RST(offset) (0x00011F0000008400ull + ((offset) & 7) * 16)
#define CVMX_PEXP_SLITB_PFX_PKT_TIME_INT(offset) (0x00011F0000008100ull + ((offset) & 7) * 16)
#define CVMX_PEXP_SLITB_PKTX_PF_VF_MBOX_SIGX(offset, block_id)                                     \
	(0x00011F0000011000ull + (((offset) & 1) + ((block_id) & 127) * 0x4000ull) * 8)
#define CVMX_PEXP_SLI_BIST_STATUS CVMX_PEXP_SLI_BIST_STATUS_FUNC()
static inline u64 CVMX_PEXP_SLI_BIST_STATUS_FUNC(void)
{
	switch (cvmx_get_octeon_family()) {
	case OCTEON_CNF71XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN61XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN70XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN66XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN63XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN68XX & OCTEON_FAMILY_MASK:
		return 0x00011F0000010580ull;
	case OCTEON_CNF75XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN78XX & OCTEON_FAMILY_MASK:
		if (OCTEON_IS_MODEL(OCTEON_CN78XX_PASS1_X))
			return 0x00011F0000010580ull;
		if (OCTEON_IS_MODEL(OCTEON_CN78XX))
			return 0x00011F0000028580ull;
	case OCTEON_CN73XX & OCTEON_FAMILY_MASK:
		return 0x00011F0000028580ull;
	}
	return 0x00011F0000028580ull;
}

static inline u64 CVMX_PEXP_SLI_CTL_PORTX(unsigned long offset)
{
	switch (cvmx_get_octeon_family()) {
	case OCTEON_CN63XX & OCTEON_FAMILY_MASK:
	case OCTEON_CNF71XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN61XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN68XX & OCTEON_FAMILY_MASK:
		return 0x00011F0000010050ull + (offset) * 16;
	case OCTEON_CN70XX & OCTEON_FAMILY_MASK:
		return 0x00011F0000010050ull + (offset) * 16;
	case OCTEON_CN66XX & OCTEON_FAMILY_MASK:
		return 0x00011F0000010050ull + (offset) * 16;

	case OCTEON_CNF75XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN78XX & OCTEON_FAMILY_MASK:
		if (OCTEON_IS_MODEL(OCTEON_CN78XX_PASS1_X))
			return 0x00011F00000106E0ull + (offset) * 16;
		if (OCTEON_IS_MODEL(OCTEON_CN78XX))
			return 0x00011F00000286E0ull + (offset) * 16;
	case OCTEON_CN73XX & OCTEON_FAMILY_MASK:
		return 0x00011F00000286E0ull + (offset) * 16;
	}
	return 0x00011F00000286E0ull + (offset) * 16;
}

#define CVMX_PEXP_SLI_CTL_STATUS CVMX_PEXP_SLI_CTL_STATUS_FUNC()
static inline u64 CVMX_PEXP_SLI_CTL_STATUS_FUNC(void)
{
	switch (cvmx_get_octeon_family()) {
	case OCTEON_CNF71XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN61XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN70XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN66XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN63XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN68XX & OCTEON_FAMILY_MASK:
		return 0x00011F0000010570ull;
	case OCTEON_CNF75XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN78XX & OCTEON_FAMILY_MASK:
		if (OCTEON_IS_MODEL(OCTEON_CN78XX_PASS1_X))
			return 0x00011F0000010570ull;
		if (OCTEON_IS_MODEL(OCTEON_CN78XX))
			return 0x00011F0000028570ull;
	case OCTEON_CN73XX & OCTEON_FAMILY_MASK:
		return 0x00011F0000028570ull;
	}
	return 0x00011F0000028570ull;
}

#define CVMX_PEXP_SLI_DATA_OUT_CNT CVMX_PEXP_SLI_DATA_OUT_CNT_FUNC()
static inline u64 CVMX_PEXP_SLI_DATA_OUT_CNT_FUNC(void)
{
	switch (cvmx_get_octeon_family()) {
	case OCTEON_CNF71XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN61XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN70XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN66XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN63XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN68XX & OCTEON_FAMILY_MASK:
		return 0x00011F00000105F0ull;
	case OCTEON_CNF75XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN78XX & OCTEON_FAMILY_MASK:
		if (OCTEON_IS_MODEL(OCTEON_CN78XX_PASS1_X))
			return 0x00011F00000105F0ull;
		if (OCTEON_IS_MODEL(OCTEON_CN78XX))
			return 0x00011F00000285F0ull;
	case OCTEON_CN73XX & OCTEON_FAMILY_MASK:
		return 0x00011F00000285F0ull;
	}
	return 0x00011F00000285F0ull;
}

#define CVMX_PEXP_SLI_DBG_DATA	 (0x00011F0000010310ull)
#define CVMX_PEXP_SLI_DBG_SELECT (0x00011F0000010300ull)
static inline u64 CVMX_PEXP_SLI_DMAX_CNT(unsigned long offset)
{
	switch (cvmx_get_octeon_family()) {
	case OCTEON_CNF71XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN61XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN70XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN66XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN63XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN68XX & OCTEON_FAMILY_MASK:
		return 0x00011F0000010400ull + (offset) * 16;
	case OCTEON_CNF75XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN78XX & OCTEON_FAMILY_MASK:
		if (OCTEON_IS_MODEL(OCTEON_CN78XX_PASS1_X))
			return 0x00011F0000010400ull + (offset) * 16;
		if (OCTEON_IS_MODEL(OCTEON_CN78XX))
			return 0x00011F0000028400ull + (offset) * 16;
	case OCTEON_CN73XX & OCTEON_FAMILY_MASK:
		return 0x00011F0000028400ull + (offset) * 16;
	}
	return 0x00011F0000028400ull + (offset) * 16;
}

static inline u64 CVMX_PEXP_SLI_DMAX_INT_LEVEL(unsigned long offset)
{
	switch (cvmx_get_octeon_family()) {
	case OCTEON_CNF71XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN61XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN70XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN66XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN63XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN68XX & OCTEON_FAMILY_MASK:
		return 0x00011F00000103E0ull + (offset) * 16;
	case OCTEON_CNF75XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN78XX & OCTEON_FAMILY_MASK:
		if (OCTEON_IS_MODEL(OCTEON_CN78XX_PASS1_X))
			return 0x00011F00000103E0ull + (offset) * 16;
		if (OCTEON_IS_MODEL(OCTEON_CN78XX))
			return 0x00011F00000283E0ull + (offset) * 16;
	case OCTEON_CN73XX & OCTEON_FAMILY_MASK:
		return 0x00011F00000283E0ull + (offset) * 16;
	}
	return 0x00011F00000283E0ull + (offset) * 16;
}

static inline u64 CVMX_PEXP_SLI_DMAX_TIM(unsigned long offset)
{
	switch (cvmx_get_octeon_family()) {
	case OCTEON_CNF71XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN61XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN70XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN66XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN63XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN68XX & OCTEON_FAMILY_MASK:
		return 0x00011F0000010420ull + (offset) * 16;
	case OCTEON_CNF75XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN78XX & OCTEON_FAMILY_MASK:
		if (OCTEON_IS_MODEL(OCTEON_CN78XX_PASS1_X))
			return 0x00011F0000010420ull + (offset) * 16;
		if (OCTEON_IS_MODEL(OCTEON_CN78XX))
			return 0x00011F0000028420ull + (offset) * 16;
	case OCTEON_CN73XX & OCTEON_FAMILY_MASK:
		return 0x00011F0000028420ull + (offset) * 16;
	}
	return 0x00011F0000028420ull + (offset) * 16;
}

#define CVMX_PEXP_SLI_INT_ENB_CIU	    (0x00011F0000013CD0ull)
#define CVMX_PEXP_SLI_INT_ENB_PORTX(offset) (0x00011F0000010340ull + ((offset) & 3) * 16)
#define CVMX_PEXP_SLI_INT_SUM		    (0x00011F0000010330ull)
#define CVMX_PEXP_SLI_LAST_WIN_RDATA0	    (0x00011F0000010600ull)
#define CVMX_PEXP_SLI_LAST_WIN_RDATA1	    (0x00011F0000010610ull)
#define CVMX_PEXP_SLI_LAST_WIN_RDATA2	    (0x00011F00000106C0ull)
#define CVMX_PEXP_SLI_LAST_WIN_RDATA3	    (0x00011F00000106D0ull)
#define CVMX_PEXP_SLI_MACX_PFX_DMA_VF_INT(offset, block_id)                                        \
	(0x00011F0000027280ull + (((offset) & 1) + ((block_id) & 3) * 0x2ull) * 16)
#define CVMX_PEXP_SLI_MACX_PFX_DMA_VF_INT_ENB(offset, block_id)                                    \
	(0x00011F0000027500ull + (((offset) & 1) + ((block_id) & 3) * 0x2ull) * 16)
#define CVMX_PEXP_SLI_MACX_PFX_FLR_VF_INT(offset, block_id)                                        \
	(0x00011F0000027400ull + (((offset) & 1) + ((block_id) & 3) * 0x2ull) * 16)
#define CVMX_PEXP_SLI_MACX_PFX_INT_ENB(offset, block_id)                                           \
	(0x00011F0000027080ull + (((offset) & 1) + ((block_id) & 3) * 0x2ull) * 16)
#define CVMX_PEXP_SLI_MACX_PFX_INT_SUM(offset, block_id)                                           \
	(0x00011F0000027000ull + (((offset) & 1) + ((block_id) & 3) * 0x2ull) * 16)
#define CVMX_PEXP_SLI_MACX_PFX_MBOX_INT(offset, block_id)                                          \
	(0x00011F0000027380ull + (((offset) & 1) + ((block_id) & 3) * 0x2ull) * 16)
#define CVMX_PEXP_SLI_MACX_PFX_PKT_VF_INT(offset, block_id)                                        \
	(0x00011F0000027300ull + (((offset) & 1) + ((block_id) & 3) * 0x2ull) * 16)
#define CVMX_PEXP_SLI_MACX_PFX_PKT_VF_INT_ENB(offset, block_id)                                    \
	(0x00011F0000027580ull + (((offset) & 1) + ((block_id) & 3) * 0x2ull) * 16)
#define CVMX_PEXP_SLI_MACX_PFX_PP_VF_INT(offset, block_id)                                         \
	(0x00011F0000027200ull + (((offset) & 1) + ((block_id) & 3) * 0x2ull) * 16)
#define CVMX_PEXP_SLI_MACX_PFX_PP_VF_INT_ENB(offset, block_id)                                     \
	(0x00011F0000027480ull + (((offset) & 1) + ((block_id) & 3) * 0x2ull) * 16)
#define CVMX_PEXP_SLI_MAC_CREDIT_CNT CVMX_PEXP_SLI_MAC_CREDIT_CNT_FUNC()
static inline u64 CVMX_PEXP_SLI_MAC_CREDIT_CNT_FUNC(void)
{
	switch (cvmx_get_octeon_family()) {
	case OCTEON_CNF71XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN61XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN70XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN66XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN63XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN68XX & OCTEON_FAMILY_MASK:
		return 0x00011F0000013D70ull;
	case OCTEON_CNF75XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN78XX & OCTEON_FAMILY_MASK:
		if (OCTEON_IS_MODEL(OCTEON_CN78XX_PASS1_X))
			return 0x00011F0000013D70ull;
		if (OCTEON_IS_MODEL(OCTEON_CN78XX))
			return 0x00011F0000023D70ull;
	case OCTEON_CN73XX & OCTEON_FAMILY_MASK:
		return 0x00011F0000023D70ull;
	}
	return 0x00011F0000023D70ull;
}

#define CVMX_PEXP_SLI_MAC_CREDIT_CNT2 CVMX_PEXP_SLI_MAC_CREDIT_CNT2_FUNC()
static inline u64 CVMX_PEXP_SLI_MAC_CREDIT_CNT2_FUNC(void)
{
	switch (cvmx_get_octeon_family()) {
	case OCTEON_CN70XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN66XX & OCTEON_FAMILY_MASK:
	case OCTEON_CNF71XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN61XX & OCTEON_FAMILY_MASK:
		return 0x00011F0000013E10ull;
	case OCTEON_CNF75XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN78XX & OCTEON_FAMILY_MASK:
		if (OCTEON_IS_MODEL(OCTEON_CN78XX_PASS1_X))
			return 0x00011F0000013E10ull;
		if (OCTEON_IS_MODEL(OCTEON_CN78XX))
			return 0x00011F0000023E10ull;
	case OCTEON_CN73XX & OCTEON_FAMILY_MASK:
		return 0x00011F0000023E10ull;
	}
	return 0x00011F0000023E10ull;
}

#define CVMX_PEXP_SLI_MEM_ACCESS_CTL CVMX_PEXP_SLI_MEM_ACCESS_CTL_FUNC()
static inline u64 CVMX_PEXP_SLI_MEM_ACCESS_CTL_FUNC(void)
{
	switch (cvmx_get_octeon_family()) {
	case OCTEON_CNF71XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN61XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN70XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN66XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN63XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN68XX & OCTEON_FAMILY_MASK:
		return 0x00011F00000102F0ull;
	case OCTEON_CNF75XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN78XX & OCTEON_FAMILY_MASK:
		if (OCTEON_IS_MODEL(OCTEON_CN78XX_PASS1_X))
			return 0x00011F00000102F0ull;
		if (OCTEON_IS_MODEL(OCTEON_CN78XX))
			return 0x00011F00000282F0ull;
	case OCTEON_CN73XX & OCTEON_FAMILY_MASK:
		return 0x00011F00000282F0ull;
	}
	return 0x00011F00000282F0ull;
}

static inline u64 CVMX_PEXP_SLI_MEM_ACCESS_SUBIDX(unsigned long offset)
{
	switch (cvmx_get_octeon_family()) {
	case OCTEON_CNF71XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN61XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN70XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN66XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN63XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN68XX & OCTEON_FAMILY_MASK:
		return 0x00011F00000100E0ull + (offset) * 16 - 16 * 12;
	case OCTEON_CNF75XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN78XX & OCTEON_FAMILY_MASK:
		if (OCTEON_IS_MODEL(OCTEON_CN78XX_PASS1_X))
			return 0x00011F00000100E0ull + (offset) * 16 - 16 * 12;
		if (OCTEON_IS_MODEL(OCTEON_CN78XX))
			return 0x00011F00000280E0ull + (offset) * 16 - 16 * 12;
	case OCTEON_CN73XX & OCTEON_FAMILY_MASK:
		return 0x00011F00000280E0ull + (offset) * 16 - 16 * 12;
	}
	return 0x00011F00000280E0ull + (offset) * 16 - 16 * 12;
}

#define CVMX_PEXP_SLI_MEM_CTL CVMX_PEXP_SLI_MEM_CTL_FUNC()
static inline u64 CVMX_PEXP_SLI_MEM_CTL_FUNC(void)
{
	switch (cvmx_get_octeon_family()) {
	case OCTEON_CN78XX & OCTEON_FAMILY_MASK:
		if (OCTEON_IS_MODEL(OCTEON_CN78XX_PASS1_X))
			return 0x00011F00000105E0ull;
		if (OCTEON_IS_MODEL(OCTEON_CN78XX))
			return 0x00011F00000285E0ull;
	case OCTEON_CNF75XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN73XX & OCTEON_FAMILY_MASK:
		return 0x00011F00000285E0ull;
	}
	return 0x00011F00000285E0ull;
}

#define CVMX_PEXP_SLI_MEM_INT_SUM CVMX_PEXP_SLI_MEM_INT_SUM_FUNC()
static inline u64 CVMX_PEXP_SLI_MEM_INT_SUM_FUNC(void)
{
	switch (cvmx_get_octeon_family()) {
	case OCTEON_CN78XX & OCTEON_FAMILY_MASK:
		if (OCTEON_IS_MODEL(OCTEON_CN78XX_PASS1_X))
			return 0x00011F00000105D0ull;
		if (OCTEON_IS_MODEL(OCTEON_CN78XX))
			return 0x00011F00000285D0ull;
	case OCTEON_CNF75XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN73XX & OCTEON_FAMILY_MASK:
		return 0x00011F00000285D0ull;
	}
	return 0x00011F00000285D0ull;
}

static inline u64 CVMX_PEXP_SLI_MSIXX_TABLE_ADDR(unsigned long offset)
{
	switch (cvmx_get_octeon_family()) {
	case OCTEON_CN78XX & OCTEON_FAMILY_MASK:
		if (OCTEON_IS_MODEL(OCTEON_CN78XX_PASS1_X))
			return 0x00011F0000016000ull + (offset) * 16;
		if (OCTEON_IS_MODEL(OCTEON_CN78XX))
			return 0x00011F0000000000ull + (offset) * 16;
	case OCTEON_CNF75XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN73XX & OCTEON_FAMILY_MASK:
		return 0x00011F0000000000ull + (offset) * 16;
	}
	return 0x00011F0000000000ull + (offset) * 16;
}

static inline u64 CVMX_PEXP_SLI_MSIXX_TABLE_DATA(unsigned long offset)
{
	switch (cvmx_get_octeon_family()) {
	case OCTEON_CN78XX & OCTEON_FAMILY_MASK:
		if (OCTEON_IS_MODEL(OCTEON_CN78XX_PASS1_X))
			return 0x00011F0000016008ull + (offset) * 16;
		if (OCTEON_IS_MODEL(OCTEON_CN78XX))
			return 0x00011F0000000008ull + (offset) * 16;
	case OCTEON_CNF75XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN73XX & OCTEON_FAMILY_MASK:
		return 0x00011F0000000008ull + (offset) * 16;
	}
	return 0x00011F0000000008ull + (offset) * 16;
}

#define CVMX_PEXP_SLI_MSIX_MACX_PF_TABLE_ADDR(offset) (0x00011F0000017C00ull + ((offset) & 3) * 16)
#define CVMX_PEXP_SLI_MSIX_MACX_PF_TABLE_DATA(offset) (0x00011F0000017C08ull + ((offset) & 3) * 16)
#define CVMX_PEXP_SLI_MSIX_PBA0			      CVMX_PEXP_SLI_MSIX_PBA0_FUNC()
static inline u64 CVMX_PEXP_SLI_MSIX_PBA0_FUNC(void)
{
	switch (cvmx_get_octeon_family()) {
	case OCTEON_CN78XX & OCTEON_FAMILY_MASK:
		if (OCTEON_IS_MODEL(OCTEON_CN78XX_PASS1_X))
			return 0x00011F0000017000ull;
		if (OCTEON_IS_MODEL(OCTEON_CN78XX))
			return 0x00011F0000001000ull;
	case OCTEON_CNF75XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN73XX & OCTEON_FAMILY_MASK:
		return 0x00011F0000001000ull;
	}
	return 0x00011F0000001000ull;
}

#define CVMX_PEXP_SLI_MSIX_PBA1 CVMX_PEXP_SLI_MSIX_PBA1_FUNC()
static inline u64 CVMX_PEXP_SLI_MSIX_PBA1_FUNC(void)
{
	switch (cvmx_get_octeon_family()) {
	case OCTEON_CN78XX & OCTEON_FAMILY_MASK:
		if (OCTEON_IS_MODEL(OCTEON_CN78XX_PASS1_X))
			return 0x00011F0000017010ull;
		if (OCTEON_IS_MODEL(OCTEON_CN78XX))
			return 0x00011F0000001008ull;
	case OCTEON_CNF75XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN73XX & OCTEON_FAMILY_MASK:
		return 0x00011F0000001008ull;
	}
	return 0x00011F0000001008ull;
}

#define CVMX_PEXP_SLI_MSI_ENB0 (0x00011F0000013C50ull)
#define CVMX_PEXP_SLI_MSI_ENB1 (0x00011F0000013C60ull)
#define CVMX_PEXP_SLI_MSI_ENB2 (0x00011F0000013C70ull)
#define CVMX_PEXP_SLI_MSI_ENB3 (0x00011F0000013C80ull)
#define CVMX_PEXP_SLI_MSI_RCV0 CVMX_PEXP_SLI_MSI_RCV0_FUNC()
static inline u64 CVMX_PEXP_SLI_MSI_RCV0_FUNC(void)
{
	switch (cvmx_get_octeon_family()) {
	case OCTEON_CNF71XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN61XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN70XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN66XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN63XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN68XX & OCTEON_FAMILY_MASK:
		return 0x00011F0000013C10ull;
	case OCTEON_CNF75XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN78XX & OCTEON_FAMILY_MASK:
		if (OCTEON_IS_MODEL(OCTEON_CN78XX_PASS1_X))
			return 0x00011F0000013C10ull;
		if (OCTEON_IS_MODEL(OCTEON_CN78XX))
			return 0x00011F0000023C10ull;
	case OCTEON_CN73XX & OCTEON_FAMILY_MASK:
		return 0x00011F0000023C10ull;
	}
	return 0x00011F0000023C10ull;
}

#define CVMX_PEXP_SLI_MSI_RCV1 CVMX_PEXP_SLI_MSI_RCV1_FUNC()
static inline u64 CVMX_PEXP_SLI_MSI_RCV1_FUNC(void)
{
	switch (cvmx_get_octeon_family()) {
	case OCTEON_CNF71XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN61XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN70XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN66XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN63XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN68XX & OCTEON_FAMILY_MASK:
		return 0x00011F0000013C20ull;
	case OCTEON_CNF75XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN78XX & OCTEON_FAMILY_MASK:
		if (OCTEON_IS_MODEL(OCTEON_CN78XX_PASS1_X))
			return 0x00011F0000013C20ull;
		if (OCTEON_IS_MODEL(OCTEON_CN78XX))
			return 0x00011F0000023C20ull;
	case OCTEON_CN73XX & OCTEON_FAMILY_MASK:
		return 0x00011F0000023C20ull;
	}
	return 0x00011F0000023C20ull;
}

#define CVMX_PEXP_SLI_MSI_RCV2 CVMX_PEXP_SLI_MSI_RCV2_FUNC()
static inline u64 CVMX_PEXP_SLI_MSI_RCV2_FUNC(void)
{
	switch (cvmx_get_octeon_family()) {
	case OCTEON_CNF71XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN61XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN70XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN66XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN63XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN68XX & OCTEON_FAMILY_MASK:
		return 0x00011F0000013C30ull;
	case OCTEON_CNF75XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN78XX & OCTEON_FAMILY_MASK:
		if (OCTEON_IS_MODEL(OCTEON_CN78XX_PASS1_X))
			return 0x00011F0000013C30ull;
		if (OCTEON_IS_MODEL(OCTEON_CN78XX))
			return 0x00011F0000023C30ull;
	case OCTEON_CN73XX & OCTEON_FAMILY_MASK:
		return 0x00011F0000023C30ull;
	}
	return 0x00011F0000023C30ull;
}

#define CVMX_PEXP_SLI_MSI_RCV3 CVMX_PEXP_SLI_MSI_RCV3_FUNC()
static inline u64 CVMX_PEXP_SLI_MSI_RCV3_FUNC(void)
{
	switch (cvmx_get_octeon_family()) {
	case OCTEON_CNF71XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN61XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN70XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN66XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN63XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN68XX & OCTEON_FAMILY_MASK:
		return 0x00011F0000013C40ull;
	case OCTEON_CNF75XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN78XX & OCTEON_FAMILY_MASK:
		if (OCTEON_IS_MODEL(OCTEON_CN78XX_PASS1_X))
			return 0x00011F0000013C40ull;
		if (OCTEON_IS_MODEL(OCTEON_CN78XX))
			return 0x00011F0000023C40ull;
	case OCTEON_CN73XX & OCTEON_FAMILY_MASK:
		return 0x00011F0000023C40ull;
	}
	return 0x00011F0000023C40ull;
}

#define CVMX_PEXP_SLI_MSI_RD_MAP CVMX_PEXP_SLI_MSI_RD_MAP_FUNC()
static inline u64 CVMX_PEXP_SLI_MSI_RD_MAP_FUNC(void)
{
	switch (cvmx_get_octeon_family()) {
	case OCTEON_CNF71XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN61XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN70XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN66XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN63XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN68XX & OCTEON_FAMILY_MASK:
		return 0x00011F0000013CA0ull;
	case OCTEON_CNF75XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN78XX & OCTEON_FAMILY_MASK:
		if (OCTEON_IS_MODEL(OCTEON_CN78XX_PASS1_X))
			return 0x00011F0000013CA0ull;
		if (OCTEON_IS_MODEL(OCTEON_CN78XX))
			return 0x00011F0000023CA0ull;
	case OCTEON_CN73XX & OCTEON_FAMILY_MASK:
		return 0x00011F0000023CA0ull;
	}
	return 0x00011F0000023CA0ull;
}

#define CVMX_PEXP_SLI_MSI_W1C_ENB0 (0x00011F0000013CF0ull)
#define CVMX_PEXP_SLI_MSI_W1C_ENB1 (0x00011F0000013D00ull)
#define CVMX_PEXP_SLI_MSI_W1C_ENB2 (0x00011F0000013D10ull)
#define CVMX_PEXP_SLI_MSI_W1C_ENB3 (0x00011F0000013D20ull)
#define CVMX_PEXP_SLI_MSI_W1S_ENB0 (0x00011F0000013D30ull)
#define CVMX_PEXP_SLI_MSI_W1S_ENB1 (0x00011F0000013D40ull)
#define CVMX_PEXP_SLI_MSI_W1S_ENB2 (0x00011F0000013D50ull)
#define CVMX_PEXP_SLI_MSI_W1S_ENB3 (0x00011F0000013D60ull)
#define CVMX_PEXP_SLI_MSI_WR_MAP   CVMX_PEXP_SLI_MSI_WR_MAP_FUNC()
static inline u64 CVMX_PEXP_SLI_MSI_WR_MAP_FUNC(void)
{
	switch (cvmx_get_octeon_family()) {
	case OCTEON_CNF71XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN61XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN70XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN66XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN63XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN68XX & OCTEON_FAMILY_MASK:
		return 0x00011F0000013C90ull;
	case OCTEON_CNF75XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN78XX & OCTEON_FAMILY_MASK:
		if (OCTEON_IS_MODEL(OCTEON_CN78XX_PASS1_X))
			return 0x00011F0000013C90ull;
		if (OCTEON_IS_MODEL(OCTEON_CN78XX))
			return 0x00011F0000023C90ull;
	case OCTEON_CN73XX & OCTEON_FAMILY_MASK:
		return 0x00011F0000023C90ull;
	}
	return 0x00011F0000023C90ull;
}

#define CVMX_PEXP_SLI_PCIE_MSI_RCV CVMX_PEXP_SLI_PCIE_MSI_RCV_FUNC()
static inline u64 CVMX_PEXP_SLI_PCIE_MSI_RCV_FUNC(void)
{
	switch (cvmx_get_octeon_family()) {
	case OCTEON_CNF71XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN61XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN70XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN66XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN63XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN68XX & OCTEON_FAMILY_MASK:
		return 0x00011F0000013CB0ull;
	case OCTEON_CNF75XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN78XX & OCTEON_FAMILY_MASK:
		if (OCTEON_IS_MODEL(OCTEON_CN78XX_PASS1_X))
			return 0x00011F0000013CB0ull;
		if (OCTEON_IS_MODEL(OCTEON_CN78XX))
			return 0x00011F0000023CB0ull;
	case OCTEON_CN73XX & OCTEON_FAMILY_MASK:
		return 0x00011F0000023CB0ull;
	}
	return 0x00011F0000023CB0ull;
}

#define CVMX_PEXP_SLI_PCIE_MSI_RCV_B1 CVMX_PEXP_SLI_PCIE_MSI_RCV_B1_FUNC()
static inline u64 CVMX_PEXP_SLI_PCIE_MSI_RCV_B1_FUNC(void)
{
	switch (cvmx_get_octeon_family()) {
	case OCTEON_CNF71XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN61XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN70XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN66XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN63XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN68XX & OCTEON_FAMILY_MASK:
		return 0x00011F0000010650ull;
	case OCTEON_CNF75XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN78XX & OCTEON_FAMILY_MASK:
		if (OCTEON_IS_MODEL(OCTEON_CN78XX_PASS1_X))
			return 0x00011F0000010650ull;
		if (OCTEON_IS_MODEL(OCTEON_CN78XX))
			return 0x00011F0000028650ull;
	case OCTEON_CN73XX & OCTEON_FAMILY_MASK:
		return 0x00011F0000028650ull;
	}
	return 0x00011F0000028650ull;
}

#define CVMX_PEXP_SLI_PCIE_MSI_RCV_B2 CVMX_PEXP_SLI_PCIE_MSI_RCV_B2_FUNC()
static inline u64 CVMX_PEXP_SLI_PCIE_MSI_RCV_B2_FUNC(void)
{
	switch (cvmx_get_octeon_family()) {
	case OCTEON_CNF71XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN61XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN70XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN66XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN63XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN68XX & OCTEON_FAMILY_MASK:
		return 0x00011F0000010660ull;
	case OCTEON_CNF75XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN78XX & OCTEON_FAMILY_MASK:
		if (OCTEON_IS_MODEL(OCTEON_CN78XX_PASS1_X))
			return 0x00011F0000010660ull;
		if (OCTEON_IS_MODEL(OCTEON_CN78XX))
			return 0x00011F0000028660ull;
	case OCTEON_CN73XX & OCTEON_FAMILY_MASK:
		return 0x00011F0000028660ull;
	}
	return 0x00011F0000028660ull;
}

#define CVMX_PEXP_SLI_PCIE_MSI_RCV_B3 CVMX_PEXP_SLI_PCIE_MSI_RCV_B3_FUNC()
static inline u64 CVMX_PEXP_SLI_PCIE_MSI_RCV_B3_FUNC(void)
{
	switch (cvmx_get_octeon_family()) {
	case OCTEON_CNF71XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN61XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN70XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN66XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN63XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN68XX & OCTEON_FAMILY_MASK:
		return 0x00011F0000010670ull;
	case OCTEON_CNF75XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN78XX & OCTEON_FAMILY_MASK:
		if (OCTEON_IS_MODEL(OCTEON_CN78XX_PASS1_X))
			return 0x00011F0000010670ull;
		if (OCTEON_IS_MODEL(OCTEON_CN78XX))
			return 0x00011F0000028670ull;
	case OCTEON_CN73XX & OCTEON_FAMILY_MASK:
		return 0x00011F0000028670ull;
	}
	return 0x00011F0000028670ull;
}

static inline u64 CVMX_PEXP_SLI_PKTX_CNTS(unsigned long offset)
{
	switch (cvmx_get_octeon_family()) {
	case OCTEON_CNF71XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN61XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN70XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN66XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN63XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN68XX & OCTEON_FAMILY_MASK:
		return 0x00011F0000012400ull + (offset) * 16;

	case OCTEON_CNF75XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN78XX & OCTEON_FAMILY_MASK:
		if (OCTEON_IS_MODEL(OCTEON_CN78XX_PASS1_X))
			return 0x00011F0000012400ull + (offset) * 16;
		if (OCTEON_IS_MODEL(OCTEON_CN78XX))
			return 0x00011F00000100B0ull + (offset) * 0x20000ull;
	case OCTEON_CN73XX & OCTEON_FAMILY_MASK:
		return 0x00011F00000100B0ull + (offset) * 0x20000ull;
	}
	return 0x00011F00000100B0ull + (offset) * 0x20000ull;
}

#define CVMX_PEXP_SLI_PKTX_ERROR_INFO(offset) (0x00011F00000100C0ull + ((offset) & 63) * 0x20000ull)
static inline u64 CVMX_PEXP_SLI_PKTX_INPUT_CONTROL(unsigned long offset)
{
	switch (cvmx_get_octeon_family()) {
	case OCTEON_CN78XX & OCTEON_FAMILY_MASK:
		if (OCTEON_IS_MODEL(OCTEON_CN78XX_PASS1_X))
			return 0x00011F0000014000ull + (offset) * 16;
		if (OCTEON_IS_MODEL(OCTEON_CN78XX))
			return 0x00011F0000010000ull + (offset) * 0x20000ull;
	case OCTEON_CNF75XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN73XX & OCTEON_FAMILY_MASK:
		return 0x00011F0000010000ull + (offset) * 0x20000ull;
	}
	return 0x00011F0000010000ull + (offset) * 0x20000ull;
}

static inline u64 CVMX_PEXP_SLI_PKTX_INSTR_BADDR(unsigned long offset)
{
	switch (cvmx_get_octeon_family()) {
	case OCTEON_CNF71XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN61XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN70XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN66XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN63XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN68XX & OCTEON_FAMILY_MASK:
		return 0x00011F0000012800ull + (offset) * 16;

	case OCTEON_CNF75XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN78XX & OCTEON_FAMILY_MASK:
		if (OCTEON_IS_MODEL(OCTEON_CN78XX_PASS1_X))
			return 0x00011F0000012800ull + (offset) * 16;
		if (OCTEON_IS_MODEL(OCTEON_CN78XX))
			return 0x00011F0000010010ull + (offset) * 0x20000ull;
	case OCTEON_CN73XX & OCTEON_FAMILY_MASK:
		return 0x00011F0000010010ull + (offset) * 0x20000ull;
	}
	return 0x00011F0000010010ull + (offset) * 0x20000ull;
}

static inline u64 CVMX_PEXP_SLI_PKTX_INSTR_BAOFF_DBELL(unsigned long offset)
{
	switch (cvmx_get_octeon_family()) {
	case OCTEON_CNF71XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN61XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN70XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN66XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN63XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN68XX & OCTEON_FAMILY_MASK:
		return 0x00011F0000012C00ull + (offset) * 16;

	case OCTEON_CNF75XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN78XX & OCTEON_FAMILY_MASK:
		if (OCTEON_IS_MODEL(OCTEON_CN78XX_PASS1_X))
			return 0x00011F0000012C00ull + (offset) * 16;
		if (OCTEON_IS_MODEL(OCTEON_CN78XX))
			return 0x00011F0000010020ull + (offset) * 0x20000ull;
	case OCTEON_CN73XX & OCTEON_FAMILY_MASK:
		return 0x00011F0000010020ull + (offset) * 0x20000ull;
	}
	return 0x00011F0000010020ull + (offset) * 0x20000ull;
}

static inline u64 CVMX_PEXP_SLI_PKTX_INSTR_FIFO_RSIZE(unsigned long offset)
{
	switch (cvmx_get_octeon_family()) {
	case OCTEON_CNF71XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN61XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN70XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN66XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN63XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN68XX & OCTEON_FAMILY_MASK:
		return 0x00011F0000013000ull + (offset) * 16;

	case OCTEON_CNF75XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN78XX & OCTEON_FAMILY_MASK:
		if (OCTEON_IS_MODEL(OCTEON_CN78XX_PASS1_X))
			return 0x00011F0000013000ull + (offset) * 16;
		if (OCTEON_IS_MODEL(OCTEON_CN78XX))
			return 0x00011F0000010030ull + (offset) * 0x20000ull;
	case OCTEON_CN73XX & OCTEON_FAMILY_MASK:
		return 0x00011F0000010030ull + (offset) * 0x20000ull;
	}
	return 0x00011F0000010030ull + (offset) * 0x20000ull;
}

#define CVMX_PEXP_SLI_PKTX_INSTR_HEADER(offset) (0x00011F0000013400ull + ((offset) & 31) * 16)
static inline u64 CVMX_PEXP_SLI_PKTX_INT_LEVELS(unsigned long offset)
{
	switch (cvmx_get_octeon_family()) {
	case OCTEON_CN78XX & OCTEON_FAMILY_MASK:
		if (OCTEON_IS_MODEL(OCTEON_CN78XX_PASS1_X))
			return 0x00011F0000014400ull + (offset) * 16;
		if (OCTEON_IS_MODEL(OCTEON_CN78XX))
			return 0x00011F00000100A0ull + (offset) * 0x20000ull;
	case OCTEON_CNF75XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN73XX & OCTEON_FAMILY_MASK:
		return 0x00011F00000100A0ull + (offset) * 0x20000ull;
	}
	return 0x00011F00000100A0ull + (offset) * 0x20000ull;
}

#define CVMX_PEXP_SLI_PKTX_IN_BP(offset)    (0x00011F0000013800ull + ((offset) & 31) * 16)
#define CVMX_PEXP_SLI_PKTX_MBOX_INT(offset) (0x00011F0000010210ull + ((offset) & 63) * 0x20000ull)
static inline u64 CVMX_PEXP_SLI_PKTX_OUTPUT_CONTROL(unsigned long offset)
{
	switch (cvmx_get_octeon_family()) {
	case OCTEON_CN78XX & OCTEON_FAMILY_MASK:
		if (OCTEON_IS_MODEL(OCTEON_CN78XX_PASS1_X))
			return 0x00011F0000014800ull + (offset) * 16;
		if (OCTEON_IS_MODEL(OCTEON_CN78XX))
			return 0x00011F0000010050ull + (offset) * 0x20000ull;
	case OCTEON_CNF75XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN73XX & OCTEON_FAMILY_MASK:
		return 0x00011F0000010050ull + (offset) * 0x20000ull;
	}
	return 0x00011F0000010050ull + (offset) * 0x20000ull;
}

static inline u64 CVMX_PEXP_SLI_PKTX_OUT_SIZE(unsigned long offset)
{
	switch (cvmx_get_octeon_family()) {
	case OCTEON_CNF71XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN61XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN70XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN66XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN63XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN68XX & OCTEON_FAMILY_MASK:
		return 0x00011F0000010C00ull + (offset) * 16;

	case OCTEON_CNF75XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN78XX & OCTEON_FAMILY_MASK:
		if (OCTEON_IS_MODEL(OCTEON_CN78XX_PASS1_X))
			return 0x00011F0000010C00ull + (offset) * 16;
		if (OCTEON_IS_MODEL(OCTEON_CN78XX))
			return 0x00011F0000010060ull + (offset) * 0x20000ull;
	case OCTEON_CN73XX & OCTEON_FAMILY_MASK:
		return 0x00011F0000010060ull + (offset) * 0x20000ull;
	}
	return 0x00011F0000010060ull + (offset) * 0x20000ull;
}

#define CVMX_PEXP_SLI_PKTX_PF_VF_MBOX_SIGX(offset, block_id)                                       \
	(0x00011F0000010200ull + (((offset) & 1) + ((block_id) & 63) * 0x4000ull) * 8)
static inline u64 CVMX_PEXP_SLI_PKTX_SLIST_BADDR(unsigned long offset)
{
	switch (cvmx_get_octeon_family()) {
	case OCTEON_CNF71XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN61XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN70XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN66XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN63XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN68XX & OCTEON_FAMILY_MASK:
		return 0x00011F0000011400ull + (offset) * 16;

	case OCTEON_CNF75XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN78XX & OCTEON_FAMILY_MASK:
		if (OCTEON_IS_MODEL(OCTEON_CN78XX_PASS1_X))
			return 0x00011F0000011400ull + (offset) * 16;
		if (OCTEON_IS_MODEL(OCTEON_CN78XX))
			return 0x00011F0000010070ull + (offset) * 0x20000ull;
	case OCTEON_CN73XX & OCTEON_FAMILY_MASK:
		return 0x00011F0000010070ull + (offset) * 0x20000ull;
	}
	return 0x00011F0000010070ull + (offset) * 0x20000ull;
}

static inline u64 CVMX_PEXP_SLI_PKTX_SLIST_BAOFF_DBELL(unsigned long offset)
{
	switch (cvmx_get_octeon_family()) {
	case OCTEON_CNF71XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN61XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN70XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN66XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN63XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN68XX & OCTEON_FAMILY_MASK:
		return 0x00011F0000011800ull + (offset) * 16;

	case OCTEON_CNF75XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN78XX & OCTEON_FAMILY_MASK:
		if (OCTEON_IS_MODEL(OCTEON_CN78XX_PASS1_X))
			return 0x00011F0000011800ull + (offset) * 16;
		if (OCTEON_IS_MODEL(OCTEON_CN78XX))
			return 0x00011F0000010080ull + (offset) * 0x20000ull;
	case OCTEON_CN73XX & OCTEON_FAMILY_MASK:
		return 0x00011F0000010080ull + (offset) * 0x20000ull;
	}
	return 0x00011F0000010080ull + (offset) * 0x20000ull;
}

static inline u64 CVMX_PEXP_SLI_PKTX_SLIST_FIFO_RSIZE(unsigned long offset)
{
	switch (cvmx_get_octeon_family()) {
	case OCTEON_CNF71XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN61XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN70XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN66XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN63XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN68XX & OCTEON_FAMILY_MASK:
		return 0x00011F0000011C00ull + (offset) * 16;

	case OCTEON_CNF75XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN78XX & OCTEON_FAMILY_MASK:
		if (OCTEON_IS_MODEL(OCTEON_CN78XX_PASS1_X))
			return 0x00011F0000011C00ull + (offset) * 16;
		if (OCTEON_IS_MODEL(OCTEON_CN78XX))
			return 0x00011F0000010090ull + (offset) * 0x20000ull;
	case OCTEON_CN73XX & OCTEON_FAMILY_MASK:
		return 0x00011F0000010090ull + (offset) * 0x20000ull;
	}
	return 0x00011F0000010090ull + (offset) * 0x20000ull;
}

#define CVMX_PEXP_SLI_PKTX_VF_INT_SUM(offset) (0x00011F00000100D0ull + ((offset) & 63) * 0x20000ull)
#define CVMX_PEXP_SLI_PKTX_VF_SIG(offset)     (0x00011F0000014C00ull + ((offset) & 63) * 16)
#define CVMX_PEXP_SLI_PKT_BIST_STATUS	      (0x00011F0000029220ull)
#define CVMX_PEXP_SLI_PKT_CNT_INT	      CVMX_PEXP_SLI_PKT_CNT_INT_FUNC()
static inline u64 CVMX_PEXP_SLI_PKT_CNT_INT_FUNC(void)
{
	switch (cvmx_get_octeon_family()) {
	case OCTEON_CNF71XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN61XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN70XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN66XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN63XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN68XX & OCTEON_FAMILY_MASK:
		return 0x00011F0000011130ull;
	case OCTEON_CNF75XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN78XX & OCTEON_FAMILY_MASK:
		if (OCTEON_IS_MODEL(OCTEON_CN78XX_PASS1_X))
			return 0x00011F0000011130ull;
		if (OCTEON_IS_MODEL(OCTEON_CN78XX))
			return 0x00011F0000029130ull;
	case OCTEON_CN73XX & OCTEON_FAMILY_MASK:
		return 0x00011F0000029130ull;
	}
	return 0x00011F0000029130ull;
}

#define CVMX_PEXP_SLI_PKT_CNT_INT_ENB	(0x00011F0000011150ull)
#define CVMX_PEXP_SLI_PKT_CTL		(0x00011F0000011220ull)
#define CVMX_PEXP_SLI_PKT_DATA_OUT_ES	(0x00011F00000110B0ull)
#define CVMX_PEXP_SLI_PKT_DATA_OUT_NS	(0x00011F00000110A0ull)
#define CVMX_PEXP_SLI_PKT_DATA_OUT_ROR	(0x00011F0000011090ull)
#define CVMX_PEXP_SLI_PKT_DPADDR	(0x00011F0000011080ull)
#define CVMX_PEXP_SLI_PKT_GBL_CONTROL	(0x00011F0000029210ull)
#define CVMX_PEXP_SLI_PKT_INPUT_CONTROL (0x00011F0000011170ull)
#define CVMX_PEXP_SLI_PKT_INSTR_ENB	(0x00011F0000011000ull)
#define CVMX_PEXP_SLI_PKT_INSTR_RD_SIZE (0x00011F00000111A0ull)
#define CVMX_PEXP_SLI_PKT_INSTR_SIZE	(0x00011F0000011020ull)
#define CVMX_PEXP_SLI_PKT_INT		CVMX_PEXP_SLI_PKT_INT_FUNC()
static inline u64 CVMX_PEXP_SLI_PKT_INT_FUNC(void)
{
	switch (cvmx_get_octeon_family()) {
	case OCTEON_CN78XX & OCTEON_FAMILY_MASK:
		if (OCTEON_IS_MODEL(OCTEON_CN78XX_PASS1_X))
			return 0x00011F0000011160ull;
		if (OCTEON_IS_MODEL(OCTEON_CN78XX))
			return 0x00011F0000029160ull;
	case OCTEON_CNF75XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN73XX & OCTEON_FAMILY_MASK:
		return 0x00011F0000029160ull;
	}
	return 0x00011F0000029160ull;
}

#define CVMX_PEXP_SLI_PKT_INT_LEVELS (0x00011F0000011120ull)
#define CVMX_PEXP_SLI_PKT_IN_BP	     (0x00011F0000011210ull)
static inline u64 CVMX_PEXP_SLI_PKT_IN_DONEX_CNTS(unsigned long offset)
{
	switch (cvmx_get_octeon_family()) {
	case OCTEON_CNF71XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN61XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN70XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN66XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN63XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN68XX & OCTEON_FAMILY_MASK:
		return 0x00011F0000012000ull + (offset) * 16;

	case OCTEON_CNF75XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN78XX & OCTEON_FAMILY_MASK:
		if (OCTEON_IS_MODEL(OCTEON_CN78XX_PASS1_X))
			return 0x00011F0000012000ull + (offset) * 16;
		if (OCTEON_IS_MODEL(OCTEON_CN78XX))
			return 0x00011F0000010040ull + (offset) * 0x20000ull;
	case OCTEON_CN73XX & OCTEON_FAMILY_MASK:
		return 0x00011F0000010040ull + (offset) * 0x20000ull;
	}
	return 0x00011F0000010040ull + (offset) * 0x20000ull;
}

#define CVMX_PEXP_SLI_PKT_IN_INSTR_COUNTS CVMX_PEXP_SLI_PKT_IN_INSTR_COUNTS_FUNC()
static inline u64 CVMX_PEXP_SLI_PKT_IN_INSTR_COUNTS_FUNC(void)
{
	switch (cvmx_get_octeon_family()) {
	case OCTEON_CNF71XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN61XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN70XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN66XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN63XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN68XX & OCTEON_FAMILY_MASK:
		return 0x00011F0000011200ull;
	case OCTEON_CNF75XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN78XX & OCTEON_FAMILY_MASK:
		if (OCTEON_IS_MODEL(OCTEON_CN78XX_PASS1_X))
			return 0x00011F0000011200ull;
		if (OCTEON_IS_MODEL(OCTEON_CN78XX))
			return 0x00011F0000029200ull;
	case OCTEON_CN73XX & OCTEON_FAMILY_MASK:
		return 0x00011F0000029200ull;
	}
	return 0x00011F0000029200ull;
}

#define CVMX_PEXP_SLI_PKT_IN_INT CVMX_PEXP_SLI_PKT_IN_INT_FUNC()
static inline u64 CVMX_PEXP_SLI_PKT_IN_INT_FUNC(void)
{
	switch (cvmx_get_octeon_family()) {
	case OCTEON_CN78XX & OCTEON_FAMILY_MASK:
		if (OCTEON_IS_MODEL(OCTEON_CN78XX_PASS1_X))
			return 0x00011F0000011150ull;
		if (OCTEON_IS_MODEL(OCTEON_CN78XX))
			return 0x00011F0000029150ull;
	case OCTEON_CNF75XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN73XX & OCTEON_FAMILY_MASK:
		return 0x00011F0000029150ull;
	}
	return 0x00011F0000029150ull;
}

#define CVMX_PEXP_SLI_PKT_IN_JABBER    (0x00011F0000029170ull)
#define CVMX_PEXP_SLI_PKT_IN_PCIE_PORT (0x00011F00000111B0ull)
#define CVMX_PEXP_SLI_PKT_IPTR	       (0x00011F0000011070ull)
#define CVMX_PEXP_SLI_PKT_MAC0_SIG0    (0x00011F0000011300ull)
#define CVMX_PEXP_SLI_PKT_MAC0_SIG1    (0x00011F0000011310ull)
#define CVMX_PEXP_SLI_PKT_MAC1_SIG0    (0x00011F0000011320ull)
#define CVMX_PEXP_SLI_PKT_MAC1_SIG1    (0x00011F0000011330ull)
#define CVMX_PEXP_SLI_PKT_MACX_PFX_RINFO(offset, block_id)                                         \
	(0x00011F0000029030ull + (((offset) & 1) + ((block_id) & 3) * 0x2ull) * 16)
#define CVMX_PEXP_SLI_PKT_MACX_RINFO(offset) (0x00011F0000011030ull + ((offset) & 3) * 16)
#define CVMX_PEXP_SLI_PKT_MEM_CTL	     CVMX_PEXP_SLI_PKT_MEM_CTL_FUNC()
static inline u64 CVMX_PEXP_SLI_PKT_MEM_CTL_FUNC(void)
{
	switch (cvmx_get_octeon_family()) {
	case OCTEON_CN78XX & OCTEON_FAMILY_MASK:
		if (OCTEON_IS_MODEL(OCTEON_CN78XX_PASS1_X))
			return 0x00011F0000011120ull;
		if (OCTEON_IS_MODEL(OCTEON_CN78XX))
			return 0x00011F0000029120ull;
	case OCTEON_CNF75XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN73XX & OCTEON_FAMILY_MASK:
		return 0x00011F0000029120ull;
	}
	return 0x00011F0000029120ull;
}

#define CVMX_PEXP_SLI_PKT_OUTPUT_WMARK CVMX_PEXP_SLI_PKT_OUTPUT_WMARK_FUNC()
static inline u64 CVMX_PEXP_SLI_PKT_OUTPUT_WMARK_FUNC(void)
{
	switch (cvmx_get_octeon_family()) {
	case OCTEON_CNF71XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN61XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN70XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN66XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN63XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN68XX & OCTEON_FAMILY_MASK:
		return 0x00011F0000011180ull;
	case OCTEON_CNF75XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN78XX & OCTEON_FAMILY_MASK:
		if (OCTEON_IS_MODEL(OCTEON_CN78XX_PASS1_X))
			return 0x00011F0000011180ull;
		if (OCTEON_IS_MODEL(OCTEON_CN78XX))
			return 0x00011F0000029180ull;
	case OCTEON_CN73XX & OCTEON_FAMILY_MASK:
		return 0x00011F0000029180ull;
	}
	return 0x00011F0000029180ull;
}

#define CVMX_PEXP_SLI_PKT_OUT_BMODE	 (0x00011F00000110D0ull)
#define CVMX_PEXP_SLI_PKT_OUT_BP_EN	 (0x00011F0000011240ull)
#define CVMX_PEXP_SLI_PKT_OUT_BP_EN2_W1C (0x00011F0000029290ull)
#define CVMX_PEXP_SLI_PKT_OUT_BP_EN2_W1S (0x00011F0000029270ull)
#define CVMX_PEXP_SLI_PKT_OUT_BP_EN_W1C	 (0x00011F0000029280ull)
#define CVMX_PEXP_SLI_PKT_OUT_BP_EN_W1S	 (0x00011F0000029260ull)
#define CVMX_PEXP_SLI_PKT_OUT_ENB	 (0x00011F0000011010ull)
#define CVMX_PEXP_SLI_PKT_PCIE_PORT	 (0x00011F00000110E0ull)
#define CVMX_PEXP_SLI_PKT_PKIND_VALID	 (0x00011F0000029190ull)
#define CVMX_PEXP_SLI_PKT_PORT_IN_RST	 (0x00011F00000111F0ull)
#define CVMX_PEXP_SLI_PKT_RING_RST	 CVMX_PEXP_SLI_PKT_RING_RST_FUNC()
static inline u64 CVMX_PEXP_SLI_PKT_RING_RST_FUNC(void)
{
	switch (cvmx_get_octeon_family()) {
	case OCTEON_CN78XX & OCTEON_FAMILY_MASK:
		if (OCTEON_IS_MODEL(OCTEON_CN78XX_PASS1_X))
			return 0x00011F00000111E0ull;
		if (OCTEON_IS_MODEL(OCTEON_CN78XX))
			return 0x00011F00000291E0ull;
	case OCTEON_CNF75XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN73XX & OCTEON_FAMILY_MASK:
		return 0x00011F00000291E0ull;
	}
	return 0x00011F00000291E0ull;
}

#define CVMX_PEXP_SLI_PKT_SLIST_ES  (0x00011F0000011050ull)
#define CVMX_PEXP_SLI_PKT_SLIST_NS  (0x00011F0000011040ull)
#define CVMX_PEXP_SLI_PKT_SLIST_ROR (0x00011F0000011030ull)
#define CVMX_PEXP_SLI_PKT_TIME_INT  CVMX_PEXP_SLI_PKT_TIME_INT_FUNC()
static inline u64 CVMX_PEXP_SLI_PKT_TIME_INT_FUNC(void)
{
	switch (cvmx_get_octeon_family()) {
	case OCTEON_CNF71XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN61XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN70XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN66XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN63XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN68XX & OCTEON_FAMILY_MASK:
		return 0x00011F0000011140ull;
	case OCTEON_CNF75XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN78XX & OCTEON_FAMILY_MASK:
		if (OCTEON_IS_MODEL(OCTEON_CN78XX_PASS1_X))
			return 0x00011F0000011140ull;
		if (OCTEON_IS_MODEL(OCTEON_CN78XX))
			return 0x00011F0000029140ull;
	case OCTEON_CN73XX & OCTEON_FAMILY_MASK:
		return 0x00011F0000029140ull;
	}
	return 0x00011F0000029140ull;
}

#define CVMX_PEXP_SLI_PKT_TIME_INT_ENB	  (0x00011F0000011160ull)
#define CVMX_PEXP_SLI_PORTX_PKIND(offset) (0x00011F0000010800ull + ((offset) & 31) * 16)
static inline u64 CVMX_PEXP_SLI_S2M_PORTX_CTL(unsigned long offset)
{
	switch (cvmx_get_octeon_family()) {
	case OCTEON_CN63XX & OCTEON_FAMILY_MASK:
	case OCTEON_CNF71XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN61XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN68XX & OCTEON_FAMILY_MASK:
		return 0x00011F0000013D80ull + (offset) * 16;
	case OCTEON_CN66XX & OCTEON_FAMILY_MASK:
		return 0x00011F0000013D80ull + (offset) * 16;
	case OCTEON_CN70XX & OCTEON_FAMILY_MASK:
		return 0x00011F0000013D80ull + (offset) * 16;
	case OCTEON_CNF75XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN78XX & OCTEON_FAMILY_MASK:
		if (OCTEON_IS_MODEL(OCTEON_CN78XX_PASS1_X))
			return 0x00011F0000013D80ull + (offset) * 16;
		if (OCTEON_IS_MODEL(OCTEON_CN78XX))
			return 0x00011F0000023D80ull + (offset) * 16;
	case OCTEON_CN73XX & OCTEON_FAMILY_MASK:
		return 0x00011F0000023D80ull + (offset) * 16;
	}
	return 0x00011F0000023D80ull + (offset) * 16;
}

#define CVMX_PEXP_SLI_SCRATCH_1 CVMX_PEXP_SLI_SCRATCH_1_FUNC()
static inline u64 CVMX_PEXP_SLI_SCRATCH_1_FUNC(void)
{
	switch (cvmx_get_octeon_family()) {
	case OCTEON_CNF71XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN61XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN70XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN66XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN63XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN68XX & OCTEON_FAMILY_MASK:
		return 0x00011F00000103C0ull;
	case OCTEON_CNF75XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN78XX & OCTEON_FAMILY_MASK:
		if (OCTEON_IS_MODEL(OCTEON_CN78XX_PASS1_X))
			return 0x00011F00000103C0ull;
		if (OCTEON_IS_MODEL(OCTEON_CN78XX))
			return 0x00011F00000283C0ull;
	case OCTEON_CN73XX & OCTEON_FAMILY_MASK:
		return 0x00011F00000283C0ull;
	}
	return 0x00011F00000283C0ull;
}

#define CVMX_PEXP_SLI_SCRATCH_2 CVMX_PEXP_SLI_SCRATCH_2_FUNC()
static inline u64 CVMX_PEXP_SLI_SCRATCH_2_FUNC(void)
{
	switch (cvmx_get_octeon_family()) {
	case OCTEON_CNF71XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN61XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN70XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN66XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN63XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN68XX & OCTEON_FAMILY_MASK:
		return 0x00011F00000103D0ull;
	case OCTEON_CNF75XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN78XX & OCTEON_FAMILY_MASK:
		if (OCTEON_IS_MODEL(OCTEON_CN78XX_PASS1_X))
			return 0x00011F00000103D0ull;
		if (OCTEON_IS_MODEL(OCTEON_CN78XX))
			return 0x00011F00000283D0ull;
	case OCTEON_CN73XX & OCTEON_FAMILY_MASK:
		return 0x00011F00000283D0ull;
	}
	return 0x00011F00000283D0ull;
}

#define CVMX_PEXP_SLI_STATE1 CVMX_PEXP_SLI_STATE1_FUNC()
static inline u64 CVMX_PEXP_SLI_STATE1_FUNC(void)
{
	switch (cvmx_get_octeon_family()) {
	case OCTEON_CNF71XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN61XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN70XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN66XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN63XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN68XX & OCTEON_FAMILY_MASK:
		return 0x00011F0000010620ull;
	case OCTEON_CNF75XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN78XX & OCTEON_FAMILY_MASK:
		if (OCTEON_IS_MODEL(OCTEON_CN78XX_PASS1_X))
			return 0x00011F0000010620ull;
		if (OCTEON_IS_MODEL(OCTEON_CN78XX))
			return 0x00011F0000028620ull;
	case OCTEON_CN73XX & OCTEON_FAMILY_MASK:
		return 0x00011F0000028620ull;
	}
	return 0x00011F0000028620ull;
}

#define CVMX_PEXP_SLI_STATE2 CVMX_PEXP_SLI_STATE2_FUNC()
static inline u64 CVMX_PEXP_SLI_STATE2_FUNC(void)
{
	switch (cvmx_get_octeon_family()) {
	case OCTEON_CNF71XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN61XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN70XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN66XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN63XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN68XX & OCTEON_FAMILY_MASK:
		return 0x00011F0000010630ull;
	case OCTEON_CNF75XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN78XX & OCTEON_FAMILY_MASK:
		if (OCTEON_IS_MODEL(OCTEON_CN78XX_PASS1_X))
			return 0x00011F0000010630ull;
		if (OCTEON_IS_MODEL(OCTEON_CN78XX))
			return 0x00011F0000028630ull;
	case OCTEON_CN73XX & OCTEON_FAMILY_MASK:
		return 0x00011F0000028630ull;
	}
	return 0x00011F0000028630ull;
}

#define CVMX_PEXP_SLI_STATE3 CVMX_PEXP_SLI_STATE3_FUNC()
static inline u64 CVMX_PEXP_SLI_STATE3_FUNC(void)
{
	switch (cvmx_get_octeon_family()) {
	case OCTEON_CNF71XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN61XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN70XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN66XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN63XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN68XX & OCTEON_FAMILY_MASK:
		return 0x00011F0000010640ull;
	case OCTEON_CNF75XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN78XX & OCTEON_FAMILY_MASK:
		if (OCTEON_IS_MODEL(OCTEON_CN78XX_PASS1_X))
			return 0x00011F0000010640ull;
		if (OCTEON_IS_MODEL(OCTEON_CN78XX))
			return 0x00011F0000028640ull;
	case OCTEON_CN73XX & OCTEON_FAMILY_MASK:
		return 0x00011F0000028640ull;
	}
	return 0x00011F0000028640ull;
}

#define CVMX_PEXP_SLI_TX_PIPE	 (0x00011F0000011230ull)
#define CVMX_PEXP_SLI_WINDOW_CTL CVMX_PEXP_SLI_WINDOW_CTL_FUNC()
static inline u64 CVMX_PEXP_SLI_WINDOW_CTL_FUNC(void)
{
	switch (cvmx_get_octeon_family()) {
	case OCTEON_CNF71XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN61XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN70XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN66XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN63XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN68XX & OCTEON_FAMILY_MASK:
		return 0x00011F00000102E0ull;
	case OCTEON_CNF75XX & OCTEON_FAMILY_MASK:
	case OCTEON_CN78XX & OCTEON_FAMILY_MASK:
		if (OCTEON_IS_MODEL(OCTEON_CN78XX_PASS1_X))
			return 0x00011F00000102E0ull;
		if (OCTEON_IS_MODEL(OCTEON_CN78XX))
			return 0x00011F00000282E0ull;
	case OCTEON_CN73XX & OCTEON_FAMILY_MASK:
		return 0x00011F00000282E0ull;
	}
	return 0x00011F00000282E0ull;
}

#endif