forked from lordarcadius/electrablue_mido
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsmctr.h
1588 lines (1344 loc) · 61.4 KB
/
smctr.h
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
/* smctr.h: SMC Token Ring driver header for Linux
*
* Authors:
* - Jay Schulist <jschlst@samba.org>
*/
#ifndef __LINUX_SMCTR_H
#define __LINUX_SMCTR_H
#ifdef __KERNEL__
#define MAX_TX_QUEUE 10
#define SMC_HEADER_SIZE 14
#define SMC_PAGE_OFFSET(X) (((unsigned long)(X) - tp->ram_access) & tp->page_offset_mask)
#define INIT 0x0D
#define RQ_ATTCH 0x10
#define RQ_STATE 0x0F
#define RQ_ADDR 0x0E
#define CHG_PARM 0x0C
#define RSP 0x00
#define TX_FORWARD 0x09
#define AC_FC_DAT ((3<<13) | 1)
#define DAT 0x07
#define RPT_NEW_MON 0x25
#define RPT_SUA_CHG 0x26
#define RPT_ACTIVE_ERR 0x28
#define RPT_NN_INCMP 0x27
#define RPT_ERROR 0x29
#define RQ_INIT 0x20
#define RPT_ATTCH 0x24
#define RPT_STATE 0x23
#define RPT_ADDR 0x22
#define POSITIVE_ACK 0x0001
#define A_FRAME_WAS_FORWARDED 0x8888
#define GROUP_ADDRESS 0x2B
#define PHYSICAL_DROP 0x0B
#define AUTHORIZED_ACCESS_PRIORITY 0x07
#define AUTHORIZED_FUNCTION_CLASS 0x06
#define FUNCTIONAL_ADDRESS 0x2C
#define RING_STATION_STATUS 0x29
#define TRANSMIT_STATUS_CODE 0x2A
#define IBM_PASS_SOURCE_ADDR 0x01
#define AC_FC_RPT_TX_FORWARD ((0<<13) | 0)
#define AC_FC_RPT_STATE ((0<<13) | 0)
#define AC_FC_RPT_ADDR ((0<<13) | 0)
#define CORRELATOR 0x09
#define POSITIVE_ACK 0x0001 /* */
#define E_MAC_DATA_INCOMPLETE 0x8001 /* not used */
#define E_VECTOR_LENGTH_ERROR 0x8002 /* */
#define E_UNRECOGNIZED_VECTOR_ID 0x8003 /* */
#define E_INAPPROPRIATE_SOURCE_CLASS 0x8004 /* */
#define E_SUB_VECTOR_LENGTH_ERROR 0x8005 /* */
#define E_TRANSMIT_FORWARD_INVALID 0x8006 /* def. by IBM */
#define E_MISSING_SUB_VECTOR 0x8007 /* */
#define E_SUB_VECTOR_UNKNOWN 0x8008 /* */
#define E_MAC_HEADER_TOO_LONG 0x8009 /* */
#define E_FUNCTION_DISABLED 0x800A /* not used */
#define A_FRAME_WAS_FORWARDED 0x8888 /* used by send_TX_FORWARD */
#define UPSTREAM_NEIGHBOR_ADDRESS 0x02
#define LOCAL_RING_NUMBER 0x03
#define ASSIGN_PHYSICAL_DROP 0x04
#define ERROR_TIMER_VALUE 0x05
#define AUTHORIZED_FUNCTION_CLASS 0x06
#define AUTHORIZED_ACCESS_PRIORITY 0x07
#define CORRELATOR 0x09
#define PHYSICAL_DROP 0x0B
#define RESPONSE_CODE 0x20
#define ADDRESS_MODIFER 0x21
#define PRODUCT_INSTANCE_ID 0x22
#define RING_STATION_VERSION_NUMBER 0x23
#define WRAP_DATA 0x26
#define FRAME_FORWARD 0x27
#define STATION_IDENTIFER 0x28
#define RING_STATION_STATUS 0x29
#define TRANSMIT_STATUS_CODE 0x2A
#define GROUP_ADDRESS 0x2B
#define FUNCTIONAL_ADDRESS 0x2C
#define F_NO_SUB_VECTORS_FOUND 0x0000
#define F_UPSTREAM_NEIGHBOR_ADDRESS 0x0001
#define F_LOCAL_RING_NUMBER 0x0002
#define F_ASSIGN_PHYSICAL_DROP 0x0004
#define F_ERROR_TIMER_VALUE 0x0008
#define F_AUTHORIZED_FUNCTION_CLASS 0x0010
#define F_AUTHORIZED_ACCESS_PRIORITY 0x0020
#define F_CORRELATOR 0x0040
#define F_PHYSICAL_DROP 0x0080
#define F_RESPONSE_CODE 0x0100
#define F_PRODUCT_INSTANCE_ID 0x0200
#define F_RING_STATION_VERSION_NUMBER 0x0400
#define F_STATION_IDENTIFER 0x0800
#define F_RING_STATION_STATUS 0x1000
#define F_GROUP_ADDRESS 0x2000
#define F_FUNCTIONAL_ADDRESS 0x4000
#define F_FRAME_FORWARD 0x8000
#define R_INIT 0x00
#define R_RQ_ATTCH_STATE_ADDR 0x00
#define R_CHG_PARM 0x00
#define R_TX_FORWARD F_FRAME_FORWARD
#define UPSTREAM_NEIGHBOR_ADDRESS 0x02
#define ADDRESS_MODIFER 0x21
#define RING_STATION_VERSION_NUMBER 0x23
#define PRODUCT_INSTANCE_ID 0x22
#define RPT_TX_FORWARD 0x2A
#define AC_FC_INIT (3<<13) | 0 /* */
#define AC_FC_RQ_INIT ((3<<13) | 0) /* */
#define AC_FC_RQ_ATTCH (3<<13) | 0 /* DC = SC of rx frame */
#define AC_FC_RQ_STATE (3<<13) | 0 /* DC = SC of rx frame */
#define AC_FC_RQ_ADDR (3<<13) | 0 /* DC = SC of rx frame */
#define AC_FC_CHG_PARM (3<<13) | 0 /* */
#define AC_FC_RSP (0<<13) | 0 /* DC = SC of rx frame */
#define AC_FC_RPT_ATTCH (0<<13) | 0
#define S_UPSTREAM_NEIGHBOR_ADDRESS 6 + 2
#define S_LOCAL_RING_NUMBER 2 + 2
#define S_ASSIGN_PHYSICAL_DROP 4 + 2
#define S_ERROR_TIMER_VALUE 2 + 2
#define S_AUTHORIZED_FUNCTION_CLASS 2 + 2
#define S_AUTHORIZED_ACCESS_PRIORITY 2 + 2
#define S_CORRELATOR 2 + 2
#define S_PHYSICAL_DROP 4 + 2
#define S_RESPONSE_CODE 4 + 2
#define S_ADDRESS_MODIFER 2 + 2
#define S_PRODUCT_INSTANCE_ID 18 + 2
#define S_RING_STATION_VERSION_NUMBER 10 + 2
#define S_STATION_IDENTIFER 6 + 2
#define S_RING_STATION_STATUS 6 + 2
#define S_GROUP_ADDRESS 4 + 2
#define S_FUNCTIONAL_ADDRESS 4 + 2
#define S_FRAME_FORWARD 252 + 2
#define S_TRANSMIT_STATUS_CODE 2 + 2
#define ISB_IMC_RES0 0x0000 /* */
#define ISB_IMC_MAC_TYPE_3 0x0001 /* MAC_ARC_INDICATE */
#define ISB_IMC_MAC_ERROR_COUNTERS 0x0002 /* */
#define ISB_IMC_RES1 0x0003 /* */
#define ISB_IMC_MAC_TYPE_2 0x0004 /* QUE_MAC_INDICATE */
#define ISB_IMC_TX_FRAME 0x0005 /* */
#define ISB_IMC_END_OF_TX_QUEUE 0x0006 /* */
#define ISB_IMC_NON_MAC_RX_RESOURCE 0x0007 /* */
#define ISB_IMC_MAC_RX_RESOURCE 0x0008 /* */
#define ISB_IMC_NON_MAC_RX_FRAME 0x0009 /* */
#define ISB_IMC_MAC_RX_FRAME 0x000A /* */
#define ISB_IMC_TRC_FIFO_STATUS 0x000B /* */
#define ISB_IMC_COMMAND_STATUS 0x000C /* */
#define ISB_IMC_MAC_TYPE_1 0x000D /* Self Removed */
#define ISB_IMC_TRC_INTRNL_TST_STATUS 0x000E /* */
#define ISB_IMC_RES2 0x000F /* */
#define NON_MAC_RX_RESOURCE_BW 0x10 /* shifted right 8 bits */
#define NON_MAC_RX_RESOURCE_FW 0x20 /* shifted right 8 bits */
#define NON_MAC_RX_RESOURCE_BE 0x40 /* shifted right 8 bits */
#define NON_MAC_RX_RESOURCE_FE 0x80 /* shifted right 8 bits */
#define RAW_NON_MAC_RX_RESOURCE_BW 0x1000 /* */
#define RAW_NON_MAC_RX_RESOURCE_FW 0x2000 /* */
#define RAW_NON_MAC_RX_RESOURCE_BE 0x4000 /* */
#define RAW_NON_MAC_RX_RESOURCE_FE 0x8000 /* */
#define MAC_RX_RESOURCE_BW 0x10 /* shifted right 8 bits */
#define MAC_RX_RESOURCE_FW 0x20 /* shifted right 8 bits */
#define MAC_RX_RESOURCE_BE 0x40 /* shifted right 8 bits */
#define MAC_RX_RESOURCE_FE 0x80 /* shifted right 8 bits */
#define RAW_MAC_RX_RESOURCE_BW 0x1000 /* */
#define RAW_MAC_RX_RESOURCE_FW 0x2000 /* */
#define RAW_MAC_RX_RESOURCE_BE 0x4000 /* */
#define RAW_MAC_RX_RESOURCE_FE 0x8000 /* */
#define TRC_FIFO_STATUS_TX_UNDERRUN 0x40 /* shifted right 8 bits */
#define TRC_FIFO_STATUS_RX_OVERRUN 0x80 /* shifted right 8 bits */
#define RAW_TRC_FIFO_STATUS_TX_UNDERRUN 0x4000 /* */
#define RAW_TRC_FIFO_STATUS_RX_OVERRUN 0x8000 /* */
#define CSR_CLRTINT 0x08
#define MSB(X) ((__u8)((__u16) X >> 8))
#define LSB(X) ((__u8)((__u16) X & 0xff))
#define AC_FC_LOBE_MEDIA_TEST ((3<<13) | 0)
#define S_WRAP_DATA 248 + 2 /* 500 + 2 */
#define WRAP_DATA 0x26
#define LOBE_MEDIA_TEST 0x08
/* Destination Class (dc) */
#define DC_MASK 0xF0
#define DC_RS 0x00
#define DC_CRS 0x40
#define DC_RPS 0x50
#define DC_REM 0x60
/* Source Classes (sc) */
#define SC_MASK 0x0F
#define SC_RS 0x00
#define SC_CRS 0x04
#define SC_RPS 0x05
#define SC_REM 0x06
#define PR 0x11
#define PR_PAGE_MASK 0x0C000
#define MICROCHANNEL 0x0008
#define INTERFACE_CHIP 0x0010
#define BOARD_16BIT 0x0040
#define PAGED_RAM 0x0080
#define WD8115TA (TOKEN_MEDIA | MICROCHANNEL | INTERFACE_CHIP | PAGED_RAM)
#define WD8115T (TOKEN_MEDIA | INTERFACE_CHIP | BOARD_16BIT | PAGED_RAM)
#define BRD_ID_8316 0x50
#define r587_SER 0x001
#define SER_DIN 0x80
#define SER_DOUT 0x40
#define SER_CLK 0x20
#define SER_ECS 0x10
#define SER_E806 0x08
#define SER_PNP 0x04
#define SER_BIO 0x02
#define SER_16B 0x01
#define r587_IDR 0x004
#define IDR_IRQ_MASK 0x0F0
#define IDR_DCS_MASK 0x007
#define IDR_RWS 0x008
#define r587_BIO 0x003
#define BIO_ENB 0x080
#define BIO_MASK 0x03F
#define r587_PCR 0x005
#define PCR_RAMS 0x040
#define NUM_ADDR_BITS 8
#define ISA_MAX_ADDRESS 0x00ffffff
#define SMCTR_MAX_ADAPTERS 7
#define MC_TABLE_ENTRIES 16
#define MAXFRAGMENTS 32
#define CHIP_REV_MASK 0x3000
#define MAX_TX_QS 8
#define NUM_TX_QS_USED 3
#define MAX_RX_QS 2
#define NUM_RX_QS_USED 2
#define INTEL_DATA_FORMAT 0x4000
#define INTEL_ADDRESS_POINTER_FORMAT 0x8000
#define PAGE_POINTER(X) ((((unsigned long)(X) - tp->ram_access) & tp->page_offset_mask) + tp->ram_access)
#define SWAP_WORDS(X) (((X & 0xFFFF) << 16) | (X >> 16))
#define INTERFACE_CHIP 0x0010 /* Soft Config Adapter */
#define ADVANCED_FEATURES 0x0020 /* Adv. netw. interface features */
#define BOARD_16BIT 0x0040 /* 16 bit capability */
#define PAGED_RAM 0x0080 /* Adapter has paged RAM */
#define PAGED_ROM 0x0100 /* Adapter has paged ROM */
#define RAM_SIZE_UNKNOWN 0x0000 /* Unknown RAM size */
#define RAM_SIZE_0K 0x0001 /* 0K RAM */
#define RAM_SIZE_8K 0x0002 /* 8k RAM */
#define RAM_SIZE_16K 0x0003 /* 16k RAM */
#define RAM_SIZE_32K 0x0004 /* 32k RAM */
#define RAM_SIZE_64K 0x0005 /* 64k RAM */
#define RAM_SIZE_RESERVED_6 0x0006 /* Reserved RAM size */
#define RAM_SIZE_RESERVED_7 0x0007 /* Reserved RAM size */
#define RAM_SIZE_MASK 0x0007 /* Isolates RAM Size */
#define TOKEN_MEDIA 0x0005
#define BID_REG_0 0x00
#define BID_REG_1 0x01
#define BID_REG_2 0x02
#define BID_REG_3 0x03
#define BID_REG_4 0x04
#define BID_REG_5 0x05
#define BID_REG_6 0x06
#define BID_REG_7 0x07
#define BID_LAR_0 0x08
#define BID_LAR_1 0x09
#define BID_LAR_2 0x0A
#define BID_LAR_3 0x0B
#define BID_LAR_4 0x0C
#define BID_LAR_5 0x0D
#define BID_BOARD_ID_BYTE 0x0E
#define BID_CHCKSM_BYTE 0x0F
#define BID_LAR_OFFSET 0x08
#define BID_MSZ_583_BIT 0x08
#define BID_SIXTEEN_BIT_BIT 0x01
#define BID_BOARD_REV_MASK 0x1E
#define BID_MEDIA_TYPE_BIT 0x01
#define BID_SOFT_CONFIG_BIT 0x20
#define BID_RAM_SIZE_BIT 0x40
#define BID_BUS_TYPE_BIT 0x80
#define BID_CR 0x10
#define BID_TXP 0x04 /* Transmit Packet Command */
#define BID_TCR_DIFF 0x0D /* Transmit Configuration Register */
#define BID_TCR_VAL 0x18 /* Value to Test 8390 or 690 */
#define BID_PS0 0x00 /* Register Page Select 0 */
#define BID_PS1 0x40 /* Register Page Select 1 */
#define BID_PS2 0x80 /* Register Page Select 2 */
#define BID_PS_MASK 0x3F /* For Masking Off Page Select Bits */
#define BID_EEPROM_0 0x08
#define BID_EEPROM_1 0x09
#define BID_EEPROM_2 0x0A
#define BID_EEPROM_3 0x0B
#define BID_EEPROM_4 0x0C
#define BID_EEPROM_5 0x0D
#define BID_EEPROM_6 0x0E
#define BID_EEPROM_7 0x0F
#define BID_OTHER_BIT 0x02
#define BID_ICR_MASK 0x0C
#define BID_EAR_MASK 0x0F
#define BID_ENGR_PAGE 0x0A0
#define BID_RLA 0x10
#define BID_EA6 0x80
#define BID_RECALL_DONE_MASK 0x10
#define BID_BID_EEPROM_OVERRIDE 0xFFB0
#define BID_EXTRA_EEPROM_OVERRIDE 0xFFD0
#define BID_EEPROM_MEDIA_MASK 0x07
#define BID_STARLAN_TYPE 0x00
#define BID_ETHERNET_TYPE 0x01
#define BID_TP_TYPE 0x02
#define BID_EW_TYPE 0x03
#define BID_TOKEN_RING_TYPE 0x04
#define BID_UTP2_TYPE 0x05
#define BID_EEPROM_IRQ_MASK 0x18
#define BID_PRIMARY_IRQ 0x00
#define BID_ALTERNATE_IRQ_1 0x08
#define BID_ALTERNATE_IRQ_2 0x10
#define BID_ALTERNATE_IRQ_3 0x18
#define BID_EEPROM_RAM_SIZE_MASK 0xE0
#define BID_EEPROM_RAM_SIZE_RES1 0x00
#define BID_EEPROM_RAM_SIZE_RES2 0x20
#define BID_EEPROM_RAM_SIZE_8K 0x40
#define BID_EEPROM_RAM_SIZE_16K 0x60
#define BID_EEPROM_RAM_SIZE_32K 0x80
#define BID_EEPROM_RAM_SIZE_64K 0xA0
#define BID_EEPROM_RAM_SIZE_RES3 0xC0
#define BID_EEPROM_RAM_SIZE_RES4 0xE0
#define BID_EEPROM_BUS_TYPE_MASK 0x07
#define BID_EEPROM_BUS_TYPE_AT 0x00
#define BID_EEPROM_BUS_TYPE_MCA 0x01
#define BID_EEPROM_BUS_TYPE_EISA 0x02
#define BID_EEPROM_BUS_TYPE_NEC 0x03
#define BID_EEPROM_BUS_SIZE_MASK 0x18
#define BID_EEPROM_BUS_SIZE_8BIT 0x00
#define BID_EEPROM_BUS_SIZE_16BIT 0x08
#define BID_EEPROM_BUS_SIZE_32BIT 0x10
#define BID_EEPROM_BUS_SIZE_64BIT 0x18
#define BID_EEPROM_BUS_MASTER 0x20
#define BID_EEPROM_RAM_PAGING 0x40
#define BID_EEPROM_ROM_PAGING 0x80
#define BID_EEPROM_PAGING_MASK 0xC0
#define BID_EEPROM_LOW_COST 0x08
#define BID_EEPROM_IO_MAPPED 0x10
#define BID_EEPROM_HMI 0x01
#define BID_EEPROM_AUTO_MEDIA_DETECT 0x01
#define BID_EEPROM_CHIP_REV_MASK 0x0C
#define BID_EEPROM_LAN_ADDR 0x30
#define BID_EEPROM_MEDIA_OPTION 0x54
#define BID_EEPROM_MEDIA_UTP 0x01
#define BID_EEPROM_4MB_RING 0x08
#define BID_EEPROM_16MB_RING 0x10
#define BID_EEPROM_MEDIA_STP 0x40
#define BID_EEPROM_MISC_DATA 0x56
#define BID_EEPROM_EARLY_TOKEN_RELEASE 0x02
#define CNFG_ID_8003E 0x6fc0
#define CNFG_ID_8003S 0x6fc1
#define CNFG_ID_8003W 0x6fc2
#define CNFG_ID_8115TRA 0x6ec6
#define CNFG_ID_8013E 0x61C8
#define CNFG_ID_8013W 0x61C9
#define CNFG_ID_BISTRO03E 0xEFE5
#define CNFG_ID_BISTRO13E 0xEFD5
#define CNFG_ID_BISTRO13W 0xEFD4
#define CNFG_MSR_583 0x0
#define CNFG_ICR_583 0x1
#define CNFG_IAR_583 0x2
#define CNFG_BIO_583 0x3
#define CNFG_EAR_583 0x3
#define CNFG_IRR_583 0x4
#define CNFG_LAAR_584 0x5
#define CNFG_GP2 0x7
#define CNFG_LAAR_MASK 0x1F
#define CNFG_LAAR_ZWS 0x20
#define CNFG_LAAR_L16E 0x40
#define CNFG_ICR_IR2_584 0x04
#define CNFG_ICR_MASK 0x08
#define CNFG_ICR_MSZ 0x08
#define CNFG_ICR_RLA 0x10
#define CNFG_ICR_STO 0x80
#define CNFG_IRR_IRQS 0x60
#define CNFG_IRR_IEN 0x80
#define CNFG_IRR_ZWS 0x01
#define CNFG_GP2_BOOT_NIBBLE 0x0F
#define CNFG_IRR_OUT2 0x04
#define CNFG_IRR_OUT1 0x02
#define CNFG_SIZE_8KB 8
#define CNFG_SIZE_16KB 16
#define CNFG_SIZE_32KB 32
#define CNFG_SIZE_64KB 64
#define CNFG_SIZE_128KB 128
#define CNFG_SIZE_256KB 256
#define ROM_DISABLE 0x0
#define CNFG_SLOT_ENABLE_BIT 0x08
#define CNFG_POS_CONTROL_REG 0x096
#define CNFG_POS_REG0 0x100
#define CNFG_POS_REG1 0x101
#define CNFG_POS_REG2 0x102
#define CNFG_POS_REG3 0x103
#define CNFG_POS_REG4 0x104
#define CNFG_POS_REG5 0x105
#define CNFG_ADAPTER_TYPE_MASK 0x0e
#define SLOT_16BIT 0x0008
#define INTERFACE_5X3_CHIP 0x0000 /* 0000 = 583 or 593 chips */
#define NIC_690_BIT 0x0010 /* NIC is 690 */
#define ALTERNATE_IRQ_BIT 0x0020 /* Alternate IRQ is used */
#define INTERFACE_584_CHIP 0x0040 /* 0001 = 584 chip */
#define INTERFACE_594_CHIP 0x0080 /* 0010 = 594 chip */
#define INTERFACE_585_CHIP 0x0100 /* 0100 = 585/790 chip */
#define INTERFACE_CHIP_MASK 0x03C0 /* Isolates Intfc Chip Type */
#define BOARD_16BIT 0x0040
#define NODE_ADDR_CKSUM 0xEE
#define BRD_ID_8115T 0x04
#define NIC_825_BIT 0x0400 /* TRC 83C825 NIC */
#define NIC_790_BIT 0x0800 /* NIC is 83C790 Ethernet */
#define CHIP_REV_MASK 0x3000
#define HWR_CBUSY 0x02
#define HWR_CA 0x01
#define MAC_QUEUE 0
#define NON_MAC_QUEUE 1
#define BUG_QUEUE 2 /* NO RECEIVE QUEUE, ONLY TX */
#define NUM_MAC_TX_FCBS 8
#define NUM_MAC_TX_BDBS NUM_MAC_TX_FCBS
#define NUM_MAC_RX_FCBS 7
#define NUM_MAC_RX_BDBS 8
#define NUM_NON_MAC_TX_FCBS 6
#define NUM_NON_MAC_TX_BDBS NUM_NON_MAC_TX_FCBS
#define NUM_NON_MAC_RX_BDBS 0 /* CALCULATED DYNAMICALLY */
#define NUM_BUG_TX_FCBS 8
#define NUM_BUG_TX_BDBS NUM_BUG_TX_FCBS
#define MAC_TX_BUFFER_MEMORY 1024
#define NON_MAC_TX_BUFFER_MEMORY (20 * 1024)
#define BUG_TX_BUFFER_MEMORY (NUM_BUG_TX_FCBS * 32)
#define RX_BUFFER_MEMORY 0 /* CALCULATED DYNAMICALLY */
#define RX_DATA_BUFFER_SIZE 256
#define RX_BDB_SIZE_SHIFT 3 /* log2(RX_DATA_BUFFER_SIZE)-log2(sizeof(BDBlock)) */
#define RX_BDB_SIZE_MASK (sizeof(BDBlock) - 1)
#define RX_DATA_BUFFER_SIZE_MASK (RX_DATA_BUFFER_SIZE-1)
#define NUM_OF_INTERRUPTS 0x20
#define NOT_TRANSMITING 0
#define TRANSMITING 1
#define TRC_INTERRUPT_ENABLE_MASK 0x7FF6
#define UCODE_VERSION 0x58
#define UCODE_SIZE_OFFSET 0x0000 /* WORD */
#define UCODE_CHECKSUM_OFFSET 0x0002 /* WORD */
#define UCODE_VERSION_OFFSET 0x0004 /* BYTE */
#define CS_RAM_SIZE 0X2000
#define CS_RAM_CHECKSUM_OFFSET 0x1FFE /* WORD 1FFE(MSB)-1FFF(LSB)*/
#define CS_RAM_VERSION_OFFSET 0x1FFC /* WORD 1FFC(MSB)-1FFD(LSB)*/
#define MISC_DATA_SIZE 128
#define NUM_OF_ACBS 1
#define ACB_COMMAND_NOT_DONE 0x0000 /* Init, command not done */
#define ACB_COMMAND_DONE 0x8000 /* TRC says command done */
#define ACB_COMMAND_STATUS_MASK 0x00FF /* low byte is status */
#define ACB_COMMAND_SUCCESSFUL 0x0000 /* means cmd was successful */
#define ACB_NOT_CHAIN_END 0x0000 /* tell TRC more CBs in chain */
#define ACB_CHAIN_END 0x8000 /* tell TRC last CB in chain */
#define ACB_COMMAND_NO_INTERRUPT 0x0000 /* tell TRC no INT after CB */
#define ACB_COMMAND_INTERRUPT 0x2000 /* tell TRC to INT after CB */
#define ACB_SUB_CMD_NOP 0x0000
#define ACB_CMD_HIC_NOP 0x0080
#define ACB_CMD_MCT_NOP 0x0000
#define ACB_CMD_MCT_TEST 0x0001
#define ACB_CMD_HIC_TEST 0x0081
#define ACB_CMD_INSERT 0x0002
#define ACB_CMD_REMOVE 0x0003
#define ACB_CMD_MCT_WRITE_VALUE 0x0004
#define ACB_CMD_HIC_WRITE_VALUE 0x0084
#define ACB_CMD_MCT_READ_VALUE 0x0005
#define ACB_CMD_HIC_READ_VALUE 0x0085
#define ACB_CMD_INIT_TX_RX 0x0086
#define ACB_CMD_INIT_TRC_TIMERS 0x0006
#define ACB_CMD_READ_TRC_STATUS 0x0007
#define ACB_CMD_CHANGE_JOIN_STATE 0x0008
#define ACB_CMD_RESERVED_9 0x0009
#define ACB_CMD_RESERVED_A 0x000A
#define ACB_CMD_RESERVED_B 0x000B
#define ACB_CMD_RESERVED_C 0x000C
#define ACB_CMD_RESERVED_D 0x000D
#define ACB_CMD_RESERVED_E 0x000E
#define ACB_CMD_RESERVED_F 0x000F
#define TRC_MAC_REGISTERS_TEST 0x0000
#define TRC_INTERNAL_LOOPBACK 0x0001
#define TRC_TRI_LOOPBACK 0x0002
#define TRC_INTERNAL_ROM_TEST 0x0003
#define TRC_LOBE_MEDIA_TEST 0x0004
#define TRC_ANALOG_TEST 0x0005
#define TRC_HOST_INTERFACE_REG_TEST 0x0003
#define TEST_DMA_1 0x0000
#define TEST_DMA_2 0x0001
#define TEST_MCT_ROM 0x0002
#define HIC_INTERNAL_DIAG 0x0003
#define ABORT_TRANSMIT_PRIORITY_0 0x0001
#define ABORT_TRANSMIT_PRIORITY_1 0x0002
#define ABORT_TRANSMIT_PRIORITY_2 0x0004
#define ABORT_TRANSMIT_PRIORITY_3 0x0008
#define ABORT_TRANSMIT_PRIORITY_4 0x0010
#define ABORT_TRANSMIT_PRIORITY_5 0x0020
#define ABORT_TRANSMIT_PRIORITY_6 0x0040
#define ABORT_TRANSMIT_PRIORITY_7 0x0080
#define TX_PENDING_PRIORITY_0 0x0001
#define TX_PENDING_PRIORITY_1 0x0002
#define TX_PENDING_PRIORITY_2 0x0004
#define TX_PENDING_PRIORITY_3 0x0008
#define TX_PENDING_PRIORITY_4 0x0010
#define TX_PENDING_PRIORITY_5 0x0020
#define TX_PENDING_PRIORITY_6 0x0040
#define TX_PENDING_PRIORITY_7 0x0080
#define FCB_FRAME_LENGTH 0x100
#define FCB_COMMAND_DONE 0x8000 /* FCB Word 0 */
#define FCB_NOT_CHAIN_END 0x0000 /* FCB Word 1 */
#define FCB_CHAIN_END 0x8000
#define FCB_NO_WARNING 0x0000
#define FCB_WARNING 0x4000
#define FCB_INTERRUPT_DISABLE 0x0000
#define FCB_INTERRUPT_ENABLE 0x2000
#define FCB_ENABLE_IMA 0x0008
#define FCB_ENABLE_TES 0x0004 /* Guarantee Tx before Int */
#define FCB_ENABLE_TFS 0x0002 /* Post Tx Frame Status */
#define FCB_ENABLE_NTC 0x0001 /* No Tx CRC */
#define FCB_TX_STATUS_CR2 0x0004
#define FCB_TX_STATUS_AR2 0x0008
#define FCB_TX_STATUS_CR1 0x0040
#define FCB_TX_STATUS_AR1 0x0080
#define FCB_TX_AC_BITS (FCB_TX_STATUS_AR1+FCB_TX_STATUS_AR2+FCB_TX_STATUS_CR1+FCB_TX_STATUS_CR2)
#define FCB_TX_STATUS_E 0x0100
#define FCB_RX_STATUS_ANY_ERROR 0x0001
#define FCB_RX_STATUS_FCS_ERROR 0x0002
#define FCB_RX_STATUS_IA_MATCHED 0x0400
#define FCB_RX_STATUS_IGA_BSGA_MATCHED 0x0500
#define FCB_RX_STATUS_FA_MATCHED 0x0600
#define FCB_RX_STATUS_BA_MATCHED 0x0700
#define FCB_RX_STATUS_DA_MATCHED 0x0400
#define FCB_RX_STATUS_SOURCE_ROUTING 0x0800
#define BDB_BUFFER_SIZE 0x100
#define BDB_NOT_CHAIN_END 0x0000
#define BDB_CHAIN_END 0x8000
#define BDB_NO_WARNING 0x0000
#define BDB_WARNING 0x4000
#define ERROR_COUNTERS_CHANGED 0x0001
#define TI_NDIS_RING_STATUS_CHANGED 0x0002
#define UNA_CHANGED 0x0004
#define READY_TO_SEND_RQ_INIT 0x0008
#define SCGB_ADDRESS_POINTER_FORMAT INTEL_ADDRESS_POINTER_FORMAT
#define SCGB_DATA_FORMAT INTEL_DATA_FORMAT
#define SCGB_MULTI_WORD_CONTROL 0
#define SCGB_BURST_LENGTH 0x000E /* DMA Burst Length */
#define SCGB_CONFIG (INTEL_ADDRESS_POINTER_FORMAT+INTEL_DATA_FORMAT+SCGB_BURST_LENGTH)
#define ISCP_BLOCK_SIZE 0x0A
#define RAM_SIZE 0x10000
#define INIT_SYS_CONFIG_PTR_OFFSET (RAM_SIZE-ISCP_BLOCK_SIZE)
#define SCGP_BLOCK_OFFSET 0
#define SCLB_NOT_VALID 0x0000 /* Initially, SCLB not valid */
#define SCLB_VALID 0x8000 /* Host tells TRC SCLB valid */
#define SCLB_PROCESSED 0x0000 /* TRC says SCLB processed */
#define SCLB_RESUME_CONTROL_NOT_VALID 0x0000 /* Initially, RC not valid */
#define SCLB_RESUME_CONTROL_VALID 0x4000 /* Host tells TRC RC valid */
#define SCLB_IACK_CODE_NOT_VALID 0x0000 /* Initially, IACK not valid */
#define SCLB_IACK_CODE_VALID 0x2000 /* Host tells TRC IACK valid */
#define SCLB_CMD_NOP 0x0000
#define SCLB_CMD_REMOVE 0x0001
#define SCLB_CMD_SUSPEND_ACB_CHAIN 0x0002
#define SCLB_CMD_SET_INTERRUPT_MASK 0x0003
#define SCLB_CMD_CLEAR_INTERRUPT_MASK 0x0004
#define SCLB_CMD_RESERVED_5 0x0005
#define SCLB_CMD_RESERVED_6 0x0006
#define SCLB_CMD_RESERVED_7 0x0007
#define SCLB_CMD_RESERVED_8 0x0008
#define SCLB_CMD_RESERVED_9 0x0009
#define SCLB_CMD_RESERVED_A 0x000A
#define SCLB_CMD_RESERVED_B 0x000B
#define SCLB_CMD_RESERVED_C 0x000C
#define SCLB_CMD_RESERVED_D 0x000D
#define SCLB_CMD_RESERVED_E 0x000E
#define SCLB_CMD_RESERVED_F 0x000F
#define SCLB_RC_ACB 0x0001 /* Action Command Block Chain */
#define SCLB_RC_RES0 0x0002 /* Always Zero */
#define SCLB_RC_RES1 0x0004 /* Always Zero */
#define SCLB_RC_RES2 0x0008 /* Always Zero */
#define SCLB_RC_RX_MAC_FCB 0x0010 /* RX_MAC_FCB Chain */
#define SCLB_RC_RX_MAC_BDB 0x0020 /* RX_MAC_BDB Chain */
#define SCLB_RC_RX_NON_MAC_FCB 0x0040 /* RX_NON_MAC_FCB Chain */
#define SCLB_RC_RX_NON_MAC_BDB 0x0080 /* RX_NON_MAC_BDB Chain */
#define SCLB_RC_TFCB0 0x0100 /* TX Priority 0 FCB Chain */
#define SCLB_RC_TFCB1 0x0200 /* TX Priority 1 FCB Chain */
#define SCLB_RC_TFCB2 0x0400 /* TX Priority 2 FCB Chain */
#define SCLB_RC_TFCB3 0x0800 /* TX Priority 3 FCB Chain */
#define SCLB_RC_TFCB4 0x1000 /* TX Priority 4 FCB Chain */
#define SCLB_RC_TFCB5 0x2000 /* TX Priority 5 FCB Chain */
#define SCLB_RC_TFCB6 0x4000 /* TX Priority 6 FCB Chain */
#define SCLB_RC_TFCB7 0x8000 /* TX Priority 7 FCB Chain */
#define SCLB_IMC_RES0 0x0001 /* */
#define SCLB_IMC_MAC_TYPE_3 0x0002 /* MAC_ARC_INDICATE */
#define SCLB_IMC_MAC_ERROR_COUNTERS 0x0004 /* */
#define SCLB_IMC_RES1 0x0008 /* */
#define SCLB_IMC_MAC_TYPE_2 0x0010 /* QUE_MAC_INDICATE */
#define SCLB_IMC_TX_FRAME 0x0020 /* */
#define SCLB_IMC_END_OF_TX_QUEUE 0x0040 /* */
#define SCLB_IMC_NON_MAC_RX_RESOURCE 0x0080 /* */
#define SCLB_IMC_MAC_RX_RESOURCE 0x0100 /* */
#define SCLB_IMC_NON_MAC_RX_FRAME 0x0200 /* */
#define SCLB_IMC_MAC_RX_FRAME 0x0400 /* */
#define SCLB_IMC_TRC_FIFO_STATUS 0x0800 /* */
#define SCLB_IMC_COMMAND_STATUS 0x1000 /* */
#define SCLB_IMC_MAC_TYPE_1 0x2000 /* Self Removed */
#define SCLB_IMC_TRC_INTRNL_TST_STATUS 0x4000 /* */
#define SCLB_IMC_RES2 0x8000 /* */
#define DMA_TRIGGER 0x0004
#define FREQ_16MB_BIT 0x0010
#define THDREN 0x0020
#define CFG0_RSV1 0x0040
#define CFG0_RSV2 0x0080
#define ETREN 0x0100
#define RX_OWN_BIT 0x0200
#define RXATMAC 0x0400
#define PROMISCUOUS_BIT 0x0800
#define USETPT 0x1000
#define SAVBAD_BIT 0x2000
#define ONEQUE 0x4000
#define NO_AUTOREMOVE 0x8000
#define RX_FCB_AREA_8316 0x00000000
#define RX_BUFF_AREA_8316 0x00000000
#define TRC_POINTER(X) ((unsigned long)(X) - tp->ram_access)
#define RX_FCB_TRC_POINTER(X) ((unsigned long)(X) - tp->ram_access + RX_FCB_AREA_8316)
#define RX_BUFF_TRC_POINTER(X) ((unsigned long)(X) - tp->ram_access + RX_BUFF_AREA_8316)
// Offset 0: MSR - Memory Select Register
//
#define r587_MSR 0x000 // Register Offset
//#define MSR_RST 0x080 // LAN Controller Reset
#define MSR_MENB 0x040 // Shared Memory Enable
#define MSR_RA18 0x020 // Ram Address bit 18 (583, 584, 587)
#define MSR_RA17 0x010 // Ram Address bit 17 (583, 584, 585/790)
#define MSR_RA16 0x008 // Ram Address bit 16 (583, 584, 585/790)
#define MSR_RA15 0x004 // Ram Address bit 15 (583, 584, 585/790)
#define MSR_RA14 0x002 // Ram Address bit 14 (583, 584, 585/790)
#define MSR_RA13 0x001 // Ram Address bit 13 (583, 584, 585/790)
#define MSR_MASK 0x03F // Mask for Address bits RA18-RA13 (583, 584, 587)
#define MSR 0x00
#define IRR 0x04
#define HWR 0x04
#define LAAR 0x05
#define IMCCR 0x05
#define LAR0 0x08
#define BDID 0x0E // Adapter ID byte register offset
#define CSR 0x10
#define PR 0x11
#define MSR_RST 0x80
#define MSR_MEMB 0x40
#define MSR_0WS 0x20
#define FORCED_16BIT_MODE 0x0002
#define INTERFRAME_SPACING_16 0x0003 /* 6 bytes */
#define INTERFRAME_SPACING_4 0x0001 /* 2 bytes */
#define MULTICAST_ADDRESS_BIT 0x0010
#define NON_SRC_ROUTING_BIT 0x0020
#define LOOPING_MODE_MASK 0x0007
/*
* Decode firmware defines.
*/
#define SWAP_BYTES(X) ((X & 0xff) << 8) | (X >> 8)
#define WEIGHT_OFFSET 5
#define TREE_SIZE_OFFSET 9
#define TREE_OFFSET 11
/* The Huffman Encoding Tree is constructed of these nodes. */
typedef struct {
__u8 llink; /* Short version of above node. */
__u8 tag;
__u8 info; /* This node is used on decodes. */
__u8 rlink;
} DECODE_TREE_NODE;
#define ROOT 0 /* Branch value. */
#define LEAF 0 /* Tag field value. */
#define BRANCH 1 /* Tag field value. */
/*
* Multicast Table Structure
*/
typedef struct {
__u8 address[6];
__u8 instance_count;
} McTable;
/*
* Fragment Descriptor Definition
*/
typedef struct {
__u8 *fragment_ptr;
__u32 fragment_length;
} FragmentStructure;
/*
* Data Buffer Structure Definition
*/
typedef struct {
__u32 fragment_count;
FragmentStructure fragment_list[MAXFRAGMENTS];
} DataBufferStructure;
#pragma pack(1)
typedef struct {
__u8 IType;
__u8 ISubtype;
} Interrupt_Status_Word;
#pragma pack(1)
typedef struct BDBlockType {
__u16 info; /* 02 */
__u32 trc_next_ptr; /* 06 */
__u32 trc_data_block_ptr; /* 10 */
__u16 buffer_length; /* 12 */
__u16 *data_block_ptr; /* 16 */
struct BDBlockType *next_ptr; /* 20 */
struct BDBlockType *back_ptr; /* 24 */
__u8 filler[8]; /* 32 */
} BDBlock;
#pragma pack(1)
typedef struct FCBlockType {
__u16 frame_status; /* 02 */
__u16 info; /* 04 */
__u32 trc_next_ptr; /* 08 */
__u32 trc_bdb_ptr; /* 12 */
__u16 frame_length; /* 14 */
BDBlock *bdb_ptr; /* 18 */
struct FCBlockType *next_ptr; /* 22 */
struct FCBlockType *back_ptr; /* 26 */
__u16 memory_alloc; /* 28 */
__u8 filler[4]; /* 32 */
} FCBlock;
#pragma pack(1)
typedef struct SBlockType{
__u8 Internal_Error_Count;
__u8 Line_Error_Count;
__u8 AC_Error_Count;
__u8 Burst_Error_Count;
__u8 RESERVED_COUNTER_0;
__u8 AD_TRANS_Count;
__u8 RCV_Congestion_Count;
__u8 Lost_FR_Error_Count;
__u8 FREQ_Error_Count;
__u8 FR_Copied_Error_Count;
__u8 RESERVED_COUNTER_1;
__u8 Token_Error_Count;
__u16 TI_NDIS_Ring_Status;
__u16 BCN_Type;
__u16 Error_Code;
__u16 SA_of_Last_AMP_SMP[3];
__u16 UNA[3];
__u16 Ucode_Version_Number;
__u16 Status_CHG_Indicate;
__u16 RESERVED_STATUS_0;
} SBlock;
#pragma pack(1)
typedef struct ACBlockType {
__u16 cmd_done_status; /* 02 */
__u16 cmd_info; /* 04 */
__u32 trc_next_ptr; /* 08 */
__u16 cmd; /* 10 */
__u16 subcmd; /* 12 */
__u16 data_offset_lo; /* 14 */
__u16 data_offset_hi; /* 16 */
struct ACBlockType *next_ptr; /* 20 */
__u8 filler[12]; /* 32 */
} ACBlock;
#define NUM_OF_INTERRUPTS 0x20
#pragma pack(1)
typedef struct {
Interrupt_Status_Word IStatus[NUM_OF_INTERRUPTS];
} ISBlock;
#pragma pack(1)
typedef struct {
__u16 valid_command; /* 02 */
__u16 iack_code; /* 04 */
__u16 resume_control; /* 06 */
__u16 int_mask_control; /* 08 */
__u16 int_mask_state; /* 10 */
__u8 filler[6]; /* 16 */
} SCLBlock;
#pragma pack(1)
typedef struct
{
__u16 config; /* 02 */
__u32 trc_sclb_ptr; /* 06 */
__u32 trc_acb_ptr; /* 10 */
__u32 trc_isb_ptr; /* 14 */
__u16 isbsiz; /* 16 */
SCLBlock *sclb_ptr; /* 20 */
ACBlock *acb_ptr; /* 24 */
ISBlock *isb_ptr; /* 28 */
__u16 Non_Mac_Rx_Bdbs; /* 30 DEBUG */
__u8 filler[2]; /* 32 */
} SCGBlock;
#pragma pack(1)
typedef struct
{
__u32 trc_scgb_ptr;
SCGBlock *scgb_ptr;
} ISCPBlock;
#pragma pack()
typedef struct net_local {
ISCPBlock *iscpb_ptr;
SCGBlock *scgb_ptr;
SCLBlock *sclb_ptr;
ISBlock *isb_ptr;
ACBlock *acb_head;
ACBlock *acb_curr;
ACBlock *acb_next;
__u8 adapter_name[12];
__u16 num_rx_bdbs [NUM_RX_QS_USED];
__u16 num_rx_fcbs [NUM_RX_QS_USED];
__u16 num_tx_bdbs [NUM_TX_QS_USED];
__u16 num_tx_fcbs [NUM_TX_QS_USED];
__u16 num_of_tx_buffs;
__u16 tx_buff_size [NUM_TX_QS_USED];
__u16 tx_buff_used [NUM_TX_QS_USED];
__u16 tx_queue_status [NUM_TX_QS_USED];
FCBlock *tx_fcb_head[NUM_TX_QS_USED];
FCBlock *tx_fcb_curr[NUM_TX_QS_USED];
FCBlock *tx_fcb_end[NUM_TX_QS_USED];
BDBlock *tx_bdb_head[NUM_TX_QS_USED];
__u16 *tx_buff_head[NUM_TX_QS_USED];
__u16 *tx_buff_end[NUM_TX_QS_USED];
__u16 *tx_buff_curr[NUM_TX_QS_USED];
__u16 num_tx_fcbs_used[NUM_TX_QS_USED];
FCBlock *rx_fcb_head[NUM_RX_QS_USED];
FCBlock *rx_fcb_curr[NUM_RX_QS_USED];
BDBlock *rx_bdb_head[NUM_RX_QS_USED];
BDBlock *rx_bdb_curr[NUM_RX_QS_USED];
BDBlock *rx_bdb_end[NUM_RX_QS_USED];
__u16 *rx_buff_head[NUM_RX_QS_USED];
__u16 *rx_buff_end[NUM_RX_QS_USED];
__u32 *ptr_local_ring_num;
__u32 sh_mem_used;
__u16 page_offset_mask;
__u16 authorized_function_classes;
__u16 authorized_access_priority;
__u16 num_acbs;
__u16 num_acbs_used;
__u16 acb_pending;
__u16 current_isb_index;
__u8 monitor_state;
__u8 monitor_state_ready;
__u16 ring_status;
__u8 ring_status_flags;
__u8 current_ring_status;
__u8 state;
__u8 join_state;
__u8 slot_num;
__u16 pos_id;
__u32 *ptr_una;
__u32 *ptr_bcn_type;
__u32 *ptr_tx_fifo_underruns;
__u32 *ptr_rx_fifo_underruns;
__u32 *ptr_rx_fifo_overruns;
__u32 *ptr_tx_fifo_overruns;
__u32 *ptr_tx_fcb_overruns;
__u32 *ptr_rx_fcb_overruns;
__u32 *ptr_tx_bdb_overruns;
__u32 *ptr_rx_bdb_overruns;
__u16 receive_queue_number;