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
|
/* $OpenBSD: atwreg.h,v 1.7 2009/08/16 18:03:48 jsg Exp $ */
/* $NetBSD: atwreg.h,v 1.10 2004/07/23 05:01:29 dyoung Exp $ */
/*
* Copyright (c) 2003 The NetBSD Foundation, Inc. All rights reserved.
*
* This code is derived from software contributed to The NetBSD Foundation
* by David Young.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY David Young AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL David Young
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
* THE POSSIBILITY OF SUCH DAMAGE.
*/
/* glossary */
/* DTIM Delivery Traffic Indication Map, sent by AP
* ATIM Ad Hoc Traffic Indication Map
* TU 1024 microseconds
* TSF time synchronization function
* TBTT target beacon transmission time
* DIFS distributed inter-frame space
* SIFS short inter-frame space
* EIFS extended inter-frame space
*/
/* Macros for bit twiddling. */
#ifndef _BIT_TWIDDLE
#define _BIT_TWIDDLE
/* find least significant bit that is set */
#define LOWEST_SET_BIT(x) ((((x) - 1) & (x)) ^ (x))
/* for x a power of two and p a non-negative integer, is x a greater power than 2**p? */
#define GTEQ_POWER(x, p) (((u_long)(x) >> (p)) != 0)
#define MASK_TO_SHIFT2(m) (GTEQ_POWER(LOWEST_SET_BIT((m)), 1) ? 1 : 0)
#define MASK_TO_SHIFT4(m) \
(GTEQ_POWER(LOWEST_SET_BIT((m)), 2) \
? 2 + MASK_TO_SHIFT2((m) >> 2) \
: MASK_TO_SHIFT2((m)))
#define MASK_TO_SHIFT8(m) \
(GTEQ_POWER(LOWEST_SET_BIT((m)), 4) \
? 4 + MASK_TO_SHIFT4((m) >> 4) \
: MASK_TO_SHIFT4((m)))
#define MASK_TO_SHIFT16(m) \
(GTEQ_POWER(LOWEST_SET_BIT((m)), 8) \
? 8 + MASK_TO_SHIFT8((m) >> 8) \
: MASK_TO_SHIFT8((m)))
#define MASK_TO_SHIFT(m) \
(GTEQ_POWER(LOWEST_SET_BIT((m)), 16) \
? 16 + MASK_TO_SHIFT16((m) >> 16) \
: MASK_TO_SHIFT16((m)))
#define MASK_AND_RSHIFT(x, mask) (((x) & (mask)) >> MASK_TO_SHIFT(mask))
#define LSHIFT(x, mask) ((x) << MASK_TO_SHIFT(mask))
#define MASK_AND_REPLACE(reg, val, mask) ((reg & ~mask) | LSHIFT(val, mask))
#define PRESHIFT(m) MASK_AND_RSHIFT((m), (m))
#endif /* _BIT_TWIDDLE */
/* ADM8211 Host Control and Status Registers */
#define ATW_PAR 0x00 /* PCI access */
#define ATW_FRCTL 0x04 /* Frame control */
#define ATW_TDR 0x08 /* Transmit demand */
#define ATW_WTDP 0x0C /* Current transmit descriptor pointer */
#define ATW_RDR 0x10 /* Receive demand */
#define ATW_WRDP 0x14 /* Current receive descriptor pointer */
#define ATW_RDB 0x18 /* Receive descriptor base address */
#define ATW_CSR3A 0x1C /* Unused (on ADM8211A) */
#define ATW_C_TDBH 0x1C /* Transmit descriptor base address,
* high-priority packet
*/
#define ATW_TDBD 0x20 /* Transmit descriptor base address, DCF */
#define ATW_TDBP 0x24 /* Transmit descriptor base address, PCF */
#define ATW_STSR 0x28 /* Status */
#define ATW_CSR5A 0x2C /* Unused */
#define ATW_C_TDBB 0x2C /* Transmit descriptor base address, buffered
* broadcast/multicast packet
*/
#define ATW_NAR 0x30 /* Network access */
#define ATW_CSR6A 0x34 /* Unused */
#define ATW_IER 0x38 /* Interrupt enable */
#define ATW_CSR7A 0x3C
#define ATW_LPC 0x40 /* Lost packet counter */
#define ATW_TEST1 0x44 /* Test register 1 */
#define ATW_SPR 0x48 /* Serial port */
#define ATW_TEST0 0x4C /* Test register 0 */
#define ATW_WCSR 0x50 /* Wake-up control/status */
#define ATW_WPDR 0x54 /* Wake-up pattern data */
#define ATW_GPTMR 0x58 /* General purpose timer */
#define ATW_GPIO 0x5C /* GPIO[5:0] configuration and control */
#define ATW_BBPCTL 0x60 /* BBP control port */
#define ATW_SYNCTL 0x64 /* synthesizer control port */
#define ATW_PLCPHD 0x68 /* PLCP header setting */
#define ATW_MMIWADDR 0x6C /* MMI write address */
#define ATW_MMIRADDR1 0x70 /* MMI read address 1 */
#define ATW_MMIRADDR2 0x74 /* MMI read address 2 */
#define ATW_TXBR 0x78 /* Transmit burst counter */
#define ATW_CSR15A 0x7C /* Unused */
#define ATW_ALCSTAT 0x80 /* ALC statistics */
#define ATW_TOFS2 0x84 /* Timing offset parameter 2, 16b */
#define ATW_CMDR 0x88 /* Command */
#define ATW_PCIC 0x8C /* PCI bus performance counter */
#define ATW_PMCSR 0x90 /* Power management command and status */
#define ATW_PAR0 0x94 /* Local MAC address register 0, 32b */
#define ATW_PAR1 0x98 /* Local MAC address register 1, 16b */
#define ATW_MAR0 0x9C /* Multicast address hash table register 0 */
#define ATW_MAR1 0xA0 /* Multicast address hash table register 1 */
#define ATW_ATIMDA0 0xA4 /* Ad Hoc Traffic Indication Map (ATIM)
* frame DA, byte[3:0]
*/
#define ATW_ABDA1 0xA8 /* BSSID address byte[5:4];
* ATIM frame DA byte[5:4]
*/
#define ATW_BSSID0 0xAC /* BSSID address byte[3:0] */
#define ATW_TXLMT 0xB0 /* WLAN retry limit, 8b;
* Max TX MSDU lifetime, 16b
*/
#define ATW_MIBCNT 0xB4 /* RTS/ACK/FCS MIB count, 32b */
#define ATW_BCNT 0xB8 /* Beacon transmission time, 32b */
#define ATW_TSFTH 0xBC /* TSFT[63:32], 32b */
#define ATW_TSC 0xC0 /* TSFT[39:32] down count value */
#define ATW_SYNRF 0xC4 /* SYN RF IF direct control */
#define ATW_BPLI 0xC8 /* Beacon interval, 16b.
* STA listen interval, 16b.
*/
#define ATW_CAP0 0xCC /* Current channel, 4b. RCVDTIM, 1b. */
#define ATW_CAP1 0xD0 /* Capability information, 16b.
* ATIM window, 1b.
*/
#define ATW_RMD 0xD4 /* RX max reception duration, 16b */
#define ATW_CFPP 0xD8 /* CFP parameter, 32b */
#define ATW_TOFS0 0xDC /* Timing offset parameter 0, 28b */
#define ATW_TOFS1 0xE0 /* Timing offset parameter 1, 24b */
#define ATW_IFST 0xE4 /* IFS timing parameter 1, 32b */
#define ATW_RSPT 0xE8 /* Response time, 24b */
#define ATW_TSFTL 0xEC /* TSFT[31:0], 32b */
#define ATW_WEPCTL 0xF0 /* WEP control */
#define ATW_WESK 0xF4 /* Write entry for shared/individual key */
#define ATW_WEPCNT 0xF8 /* WEP count */
#define ATW_MACTEST 0xFC
#define ATW_FER 0x100 /* Function event */
#define ATW_FEMR 0x104 /* Function event mask */
#define ATW_FPSR 0x108 /* Function present state */
#define ATW_FFER 0x10C /* Function force event */
#define ATW_PAR_MWIE (1<<24) /* memory write and invalidate
* enable
*/
#define ATW_PAR_MRLE (1<<23) /* memory read line enable */
#define ATW_PAR_MRME (1<<21) /* memory read multiple
* enable
*/
#define ATW_PAR_RAP_MASK 0x60000 /* receive auto-polling in
* receive suspended state
*/
#define ATW_PAR_CAL_MASK 0xc000 /* cache alignment */
#define ATW_PAR_CAL_PBL 0x0
/* min(8 DW, PBL) */
#define ATW_PAR_CAL_8DW LSHIFT(0x1, ATW_PAR_CAL_MASK)
/* min(16 DW, PBL) */
#define ATW_PAR_CAL_16DW LSHIFT(0x2, ATW_PAR_CAL_MASK)
/* min(32 DW, PBL) */
#define ATW_PAR_CAL_32DW LSHIFT(0x3, ATW_PAR_CAL_MASK)
#define ATW_PAR_PBL_MASK 0x3f00 /* programmable burst length */
#define ATW_PAR_PBL_UNLIMITED 0x0
#define ATW_PAR_PBL_1DW LSHIFT(0x1, ATW_PAR_PBL_MASK)
#define ATW_PAR_PBL_2DW LSHIFT(0x2, ATW_PAR_PBL_MASK)
#define ATW_PAR_PBL_4DW LSHIFT(0x4, ATW_PAR_PBL_MASK)
#define ATW_PAR_PBL_8DW LSHIFT(0x8, ATW_PAR_PBL_MASK)
#define ATW_PAR_PBL_16DW LSHIFT(0x16, ATW_PAR_PBL_MASK)
#define ATW_PAR_PBL_32DW LSHIFT(0x32, ATW_PAR_PBL_MASK)
#define ATW_PAR_BLE (1<<7) /* big/little endian selection */
#define ATW_PAR_DSL_MASK 0x7c /* descriptor skip length */
#define ATW_PAR_BAR (1<<1) /* bus arbitration */
#define ATW_PAR_SWR (1<<0) /* software reset */
#define ATW_FRCTL_PWRMGMT (1<<31) /* power management */
#define ATW_FRCTL_VER_MASK 0x60000000 /* protocol version */
#define ATW_FRCTL_ORDER (1<<28) /* order bit */
#define ATW_FRCTL_MAXPSP (1<<27) /* maximum power saving */
#define ATW_C_FRCTL_PRSP (1<<26) /* 1: driver sends probe
* response
* 0: ASIC sends prresp
*/
#define ATW_C_FRCTL_DRVBCON (1<<25) /* 1: driver sends beacons
* 0: ASIC sends beacons
*/
#define ATW_C_FRCTL_DRVLINKCTRL (1<<24) /* 1: driver controls link LED
* 0: ASIC controls link LED
*/
#define ATW_C_FRCTL_DRVLINKON (1<<23) /* 1: turn on link LED
* 0: turn off link LED
*/
#define ATW_C_FRCTL_CTX_DATA (1<<22) /* 0: set by CSR28
* 1: random
*/
#define ATW_C_FRCTL_RSVFRM (1<<21) /* 1: receive "reserved"
* frames, 0: ignore
* reserved frames
*/
#define ATW_C_FRCTL_CFEND (1<<19) /* write to send CF_END,
* ADM8211C/CR clears
*/
#define ATW_FRCTL_DOZEFRM (1<<18) /* select pre-sleep frame */
#define ATW_FRCTL_PSAWAKE (1<<17) /* MAC is awake (?) */
#define ATW_FRCTL_PSMODE (1<<16) /* MAC is power-saving (?) */
#define ATW_FRCTL_AID_MASK 0xffff /* STA Association ID */
#define ATW_INTR_PCF (1<<31) /* started/ended CFP */
#define ATW_INTR_BCNTC (1<<30) /* transmitted IBSS beacon */
#define ATW_INTR_GPINT (1<<29) /* GPIO interrupt */
#define ATW_INTR_LINKOFF (1<<28) /* lost ATW_WCSR_BLN beacons */
#define ATW_INTR_ATIMTC (1<<27) /* transmitted ATIM */
#define ATW_INTR_TSFTF (1<<26) /* TSFT out of range */
#define ATW_INTR_TSCZ (1<<25) /* TSC countdown expired */
#define ATW_INTR_LINKON (1<<24) /* matched SSID, BSSID */
#define ATW_INTR_SQL (1<<23) /* Marvel signal quality */
#define ATW_INTR_WEPTD (1<<22) /* switched WEP table */
#define ATW_INTR_ATIME (1<<21) /* ended ATIM window */
#define ATW_INTR_TBTT (1<<20) /* (TBTT) Target Beacon TX Time
* passed
*/
#define ATW_INTR_NISS (1<<16) /* normal interrupt status
* summary: any of 31, 30, 27,
* 24, 14, 12, 6, 2, 0.
*/
#define ATW_INTR_AISS (1<<15) /* abnormal interrupt status
* summary: any of 29, 28, 26,
* 25, 23, 22, 13, 11, 8, 7, 5,
* 4, 3, 1.
*/
#define ATW_INTR_TEIS (1<<14) /* transmit early interrupt
* status: moved TX packet to
* FIFO
*/
#define ATW_INTR_FBE (1<<13) /* fatal bus error */
#define ATW_INTR_REIS (1<<12) /* receive early interrupt
* status: RX packet filled
* its first descriptor
*/
#define ATW_INTR_GPTT (1<<11) /* general purpose timer expired */
#define ATW_INTR_RPS (1<<8) /* stopped receive process */
#define ATW_INTR_RDU (1<<7) /* receive descriptor
* unavailable
*/
#define ATW_INTR_RCI (1<<6) /* completed packet reception */
#define ATW_INTR_TUF (1<<5) /* transmit underflow */
#define ATW_INTR_TRT (1<<4) /* transmit retry count
* expired
*/
#define ATW_INTR_TLT (1<<3) /* transmit lifetime exceeded */
#define ATW_INTR_TDU (1<<2) /* transmit descriptor
* unavailable
*/
#define ATW_INTR_TPS (1<<1) /* stopped transmit process */
#define ATW_INTR_TCI (1<<0) /* completed transmit */
#define ATW_NAR_TXCF (1<<31) /* stop process on TX failure */
#define ATW_NAR_HF (1<<30) /* flush TX FIFO to host (?) */
#define ATW_NAR_UTR (1<<29) /* select retry count source */
#define ATW_NAR_PCF (1<<28) /* use one/both transmit
* descriptor base addresses
*/
#define ATW_NAR_CFP (1<<27) /* indicate more TX data to
* point coordinator
*/
#define ATW_C_NAR_APSTA (1<<26) /* 0: STA mode
* 1: AP mode
*/
#define ATW_C_NAR_TDBBE (1<<25) /* 0: disable TDBB
* 1: enable TDBB
*/
#define ATW_C_NAR_TDBHE (1<<24) /* 0: disable TDBH
* 1: enable TDBH
*/
#define ATW_C_NAR_TDBHT (1<<23) /* write 1 to make ASIC
* poll TDBH once; ASIC clears
*/
#define ATW_NAR_SF (1<<21) /* store and forward: ignore
* TX threshold
*/
#define ATW_NAR_TR_MASK 0xc000 /* TX threshold */
#define ATW_NAR_TR_L64 LSHIFT(0x0, ATW_NAR_TR_MASK)
#define ATW_NAR_TR_L160 LSHIFT(0x2, ATW_NAR_TR_MASK)
#define ATW_NAR_TR_L192 LSHIFT(0x3, ATW_NAR_TR_MASK)
#define ATW_NAR_TR_H96 LSHIFT(0x0, ATW_NAR_TR_MASK)
#define ATW_NAR_TR_H288 LSHIFT(0x2, ATW_NAR_TR_MASK)
#define ATW_NAR_TR_H544 LSHIFT(0x3, ATW_NAR_TR_MASK)
#define ATW_NAR_ST (1<<13) /* start/stop transmit */
#define ATW_NAR_OM_MASK 0xc00 /* operating mode */
#define ATW_NAR_OM_NORMAL 0x0
#define ATW_NAR_OM_LOOPBACK LSHIFT(0x1, ATW_NAR_OM_MASK)
#define ATW_NAR_MM (1<<7) /* RX any multicast */
#define ATW_NAR_PR (1<<6) /* promiscuous mode */
#define ATW_NAR_EA (1<<5) /* match ad hoc packets (?) */
#define ATW_NAR_DISPCF (1<<4) /* 1: PCF *not* supported
* 0: PCF supported
*/
#define ATW_NAR_PB (1<<3) /* pass bad packets */
#define ATW_NAR_STPDMA (1<<2) /* stop DMA, abort packet */
#define ATW_NAR_SR (1<<1) /* start/stop receive */
#define ATW_NAR_CTX (1<<0) /* continuous TX mode */
/* IER bits are identical to STSR bits. Use ATW_INTR_*. */
#if 0
#define ATW_IER_NIE (1<<16) /* normal interrupt enable */
#define ATW_IER_AIE (1<<15) /* abnormal interrupt enable */
/* normal interrupts: combine with ATW_IER_NIE */
#define ATW_IER_PCFIE (1<<31) /* STA entered CFP */
#define ATW_IER_BCNTCIE (1<<30) /* STA TX'd beacon */
#define ATW_IER_ATIMTCIE (1<<27) /* transmitted ATIM */
#define ATW_IER_LINKONIE (1<<24) /* matched beacon */
#define ATW_IER_ATIMIE (1<<21) /* ended ATIM window */
#define ATW_IER_TBTTIE (1<<20) /* TBTT */
#define ATW_IER_TEIE (1<<14) /* moved TX packet to FIFO */
#define ATW_IER_REIE (1<<12) /* RX packet filled its first
* descriptor
*/
#define ATW_IER_RCIE (1<<6) /* completed RX */
#define ATW_IER_TDUIE (1<<2) /* transmit descriptor
* unavailable
*/
#define ATW_IER_TCIE (1<<0) /* completed TX */
/* abnormal interrupts: combine with ATW_IER_AIE */
#define ATW_IER_GPIE (1<<29) /* GPIO interrupt */
#define ATW_IER_LINKOFFIE (1<<28) /* lost beacon */
#define ATW_IER_TSFTFIE (1<<26) /* TSFT out of range */
#define ATW_IER_TSCIE (1<<25) /* TSC countdown expired */
#define ATW_IER_SQLIE (1<<23) /* signal quality */
#define ATW_IER_WEPIE (1<<22) /* finished WEP table switch */
#define ATW_IER_FBEIE (1<<13) /* fatal bus error */
#define ATW_IER_GPTIE (1<<11) /* general purpose timer expired */
#define ATW_IER_RPSIE (1<<8) /* stopped receive process */
#define ATW_IER_RUIE (1<<7) /* receive descriptor unavailable */
#define ATW_IER_TUIE (1<<5) /* transmit underflow */
#define ATW_IER_TRTIE (1<<4) /* exceeded transmit retry count */
#define ATW_IER_TLTTIE (1<<3) /* transmit lifetime exceeded */
#define ATW_IER_TPSIE (1<<1) /* stopped transmit process */
#endif
#define ATW_LPC_LPCO (1<<16) /* lost packet counter overflow */
#define ATW_LPC_LPC_MASK 0xffff /* lost packet counter */
#define ATW_TEST1_CONTROL (1<<31) /* "0: read from dxfer_control,
* 1: read from dxfer_state"
*/
#define ATW_TEST1_DBGREAD_MASK 0x70000000 /* "control of read data,
* debug only"
*/
#define ATW_TEST1_TXWP_MASK 0xe000000 /* select ATW_WTDP content? */
#define ATW_TEST1_TXWP_TDBD LSHIFT(0x0, ATW_TEST1_TXWP_MASK)
#define ATW_TEST1_TXWP_TDBH LSHIFT(0x1, ATW_TEST1_TXWP_MASK)
#define ATW_TEST1_TXWP_TDBB LSHIFT(0x2, ATW_TEST1_TXWP_MASK)
#define ATW_TEST1_TXWP_TDBP LSHIFT(0x3, ATW_TEST1_TXWP_MASK)
#define ATW_TEST1_RSVD0_MASK 0x1ffffc0 /* reserved */
#define ATW_TEST1_TESTMODE_MASK 0x30
/* normal operation */
#define ATW_TEST1_TESTMODE_NORMAL LSHIFT(0x0, ATW_TEST1_TESTMODE_MASK)
/* MAC-only mode */
#define ATW_TEST1_TESTMODE_MACONLY LSHIFT(0x1, ATW_TEST1_TESTMODE_MASK)
/* normal operation */
#define ATW_TEST1_TESTMODE_NORMAL2 LSHIFT(0x2, ATW_TEST1_TESTMODE_MASK)
/* monitor mode */
#define ATW_TEST1_TESTMODE_MONITOR LSHIFT(0x3, ATW_TEST1_TESTMODE_MASK)
#define ATW_TEST1_DUMP_MASK 0xf /* select dump signal
* from dxfer (huh?)
*/
#define ATW_SPR_SRS (1<<11) /* activate SEEPROM access */
#define ATW_SPR_SDO (1<<3) /* data out of SEEPROM */
#define ATW_SPR_SDI (1<<2) /* data into SEEPROM */
#define ATW_SPR_SCLK (1<<1) /* SEEPROM clock */
#define ATW_SPR_SCS (1<<0) /* SEEPROM chip select */
#define ATW_TEST0_BE_MASK 0xe0000000 /* Bus error state */
#define ATW_TEST0_TS_MASK 0x1c000000 /* Transmit process state */
/* Stopped */
#define ATW_TEST0_TS_STOPPED LSHIFT(0, ATW_TEST0_TS_MASK)
/* Running - fetch transmit descriptor */
#define ATW_TEST0_TS_FETCH LSHIFT(1, ATW_TEST0_TS_MASK)
/* Running - wait for end of transmission */
#define ATW_TEST0_TS_WAIT LSHIFT(2, ATW_TEST0_TS_MASK)
/* Running - read buffer from memory and queue into FIFO */
#define ATW_TEST0_TS_READING LSHIFT(3, ATW_TEST0_TS_MASK)
#define ATW_TEST0_TS_RESERVED1 LSHIFT(4, ATW_TEST0_TS_MASK)
#define ATW_TEST0_TS_RESERVED2 LSHIFT(5, ATW_TEST0_TS_MASK)
/* Suspended */
#define ATW_TEST0_TS_SUSPENDED LSHIFT(6, ATW_TEST0_TS_MASK)
/* Running - close transmit descriptor */
#define ATW_TEST0_TS_CLOSE LSHIFT(7, ATW_TEST0_TS_MASK)
/* ADM8211C/CR registers */
/* Suspended */
#define ATW_C_TEST0_TS_SUSPENDED LSHIFT(4, ATW_TEST0_TS_MASK)
/* Descriptor write */
#define ATW_C_TEST0_TS_CLOSE LSHIFT(5, ATW_TEST0_TS_MASK)
/* Last descriptor write */
#define ATW_C_TEST0_TS_CLOSELAST LSHIFT(6, ATW_TEST0_TS_MASK)
/* FIFO full */
#define ATW_C_TEST0_TS_FIFOFULL LSHIFT(7, ATW_TEST0_TS_MASK)
#define ATW_TEST0_RS_MASK 0x3800000 /* Receive process state */
/* Stopped */
#define ATW_TEST0_RS_STOPPED LSHIFT(0, ATW_TEST0_RS_MASK)
/* Running - fetch receive descriptor */
#define ATW_TEST0_RS_FETCH LSHIFT(1, ATW_TEST0_RS_MASK)
/* Running - check for end of receive */
#define ATW_TEST0_RS_CHECK LSHIFT(2, ATW_TEST0_RS_MASK)
/* Running - wait for packet */
#define ATW_TEST0_RS_WAIT LSHIFT(3, ATW_TEST0_RS_MASK)
/* Suspended */
#define ATW_TEST0_RS_SUSPENDED LSHIFT(4, ATW_TEST0_RS_MASK)
/* Running - close receive descriptor */
#define ATW_TEST0_RS_CLOSE LSHIFT(5, ATW_TEST0_RS_MASK)
/* Running - flush current frame from FIFO */
#define ATW_TEST0_RS_FLUSH LSHIFT(6, ATW_TEST0_RS_MASK)
/* Running - queue current frame from FIFO into buffer */
#define ATW_TEST0_RS_QUEUE LSHIFT(7, ATW_TEST0_RS_MASK)
#define ATW_TEST0_EPNE (1<<18) /* SEEPROM not detected */
#define ATW_TEST0_EPSNM (1<<17) /* SEEPROM bad signature */
#define ATW_TEST0_EPTYP_MASK (1<<16) /* SEEPROM type
* 1: 93c66,
* 0: 93c46
*/
#define ATW_TEST0_EPTYP_93c66 ATW_TEST0_EPTYP_MASK
#define ATW_TEST0_EPTYP_93c46 0
#define ATW_TEST0_EPRLD (1<<15) /* recall SEEPROM (write 1) */
#define ATW_WCSR_CRCT (1<<30) /* CRC-16 type */
#define ATW_WCSR_WP1E (1<<29) /* match wake-up pattern 1 */
#define ATW_WCSR_WP2E (1<<28) /* match wake-up pattern 2 */
#define ATW_WCSR_WP3E (1<<27) /* match wake-up pattern 3 */
#define ATW_WCSR_WP4E (1<<26) /* match wake-up pattern 4 */
#define ATW_WCSR_WP5E (1<<25) /* match wake-up pattern 5 */
#define ATW_WCSR_BLN_MASK 0xe00000 /* lose link after BLN lost
* beacons
*/
#define ATW_WCSR_TSFTWE (1<<20) /* wake up on TSFT out of
* range
*/
#define ATW_WCSR_TIMWE (1<<19) /* wake up on TIM */
#define ATW_WCSR_ATIMWE (1<<18) /* wake up on ATIM */
#define ATW_WCSR_KEYWE (1<<17) /* wake up on key update */
#define ATW_WCSR_WFRE (1<<10) /* wake up on wake-up frame */
#define ATW_WCSR_MPRE (1<<9) /* wake up on magic packet */
#define ATW_WCSR_LSOE (1<<8) /* wake up on link loss */
/* wake-up reasons correspond to enable bits */
#define ATW_WCSR_KEYUP (1<<6) /* */
#define ATW_WCSR_TSFTW (1<<5) /* */
#define ATW_WCSR_TIMW (1<<4) /* */
#define ATW_WCSR_ATIMW (1<<3) /* */
#define ATW_WCSR_WFR (1<<2) /* */
#define ATW_WCSR_MPR (1<<1) /* */
#define ATW_WCSR_LSO (1<<0) /* */
#define ATW_GPTMR_COM_MASK (1<<16) /* continuous operation mode */
#define ATW_GPTMR_GTV_MASK 0xffff /* set countdown in 204us ticks */
#define ATW_GPIO_EC1_MASK 0x3000000 /* GPIO1 event configuration */
#define ATW_GPIO_LAT_MASK 0x300000 /* input latch */
#define ATW_GPIO_INTEN_MASK 0xc0000 /* interrupt enable */
#define ATW_GPIO_EN_MASK 0x3f000 /* output enable */
#define ATW_GPIO_O_MASK 0xfc0 /* output value */
#define ATW_GPIO_I_MASK 0x3f /* pin static input */
#define ATW_BBPCTL_TWI (1<<31) /* Intersil 3-wire interface */
#define ATW_BBPCTL_RF3KADDR_MASK 0x7f000000 /* Address for RF3000 */
#define ATW_BBPCTL_RF3KADDR_ADDR LSHIFT(0x20, ATW_BBPCTL_RF3KADDR_MASK)
#define ATW_BBPCTL_NEGEDGE_DO (1<<23) /* data-out on negative edge */
#define ATW_BBPCTL_NEGEDGE_DI (1<<22) /* data-in on negative edge */
#define ATW_BBPCTL_CCA_ACTLO (1<<21) /* CCA low when busy */
#define ATW_BBPCTL_TYPE_MASK 0x1c0000 /* BBP type */
#define ATW_BBPCTL_WR (1<<17) /* start write; reset on
* completion
*/
#define ATW_BBPCTL_RD (1<<16) /* start read; reset on
* completion
*/
#define ATW_BBPCTL_ADDR_MASK 0xff00 /* BBP address */
#define ATW_BBPCTL_DATA_MASK 0xff /* BBP data */
#define ATW_SYNCTL_WR (1<<31) /* start write; reset on
* completion
*/
#define ATW_SYNCTL_RD (1<<30) /* start read; reset on
* completion
*/
#define ATW_SYNCTL_CS0 (1<<29) /* chip select */
#define ATW_SYNCTL_CS1 (1<<28)
#define ATW_SYNCTL_CAL (1<<27) /* generate RF CAL pulse after
* Rx
*/
#define ATW_SYNCTL_SELCAL (1<<26) /* RF CAL source, 0: CAL bit,
* 1: MAC; needed by Intersil
* BBP
*/
#define ATW_C_SYNCTL_MMICE (1<<25) /* ADM8211C/CR define this
* bit. 0: latch data on
* negative edge, 1: positive
* edge.
*/
#define ATW_SYNCTL_RFTYPE_MASK 0x1c00000 /* RF type */
#define ATW_SYNCTL_DATA_MASK 0x3fffff /* synthesizer setting */
#define ATW_PLCPHD_SIGNAL_MASK 0xff000000 /* signal field in PLCP header,
* only for beacon, ATIM, and
* RTS.
*/
#define ATW_PLCPHD_SERVICE_MASK 0xff0000 /* service field in PLCP
* header; with RFMD BBP,
* sets Tx power for beacon,
* RTS, ATIM.
*/
#define ATW_PLCPHD_PMBL (1<<15) /* 0: long preamble, 1: short */
#define ATW_MMIWADDR_LENLO_MASK 0xff000000 /* tx: written 4th */
#define ATW_MMIWADDR_LENHI_MASK 0xff0000 /* tx: written 3rd */
#define ATW_MMIWADDR_GAIN_MASK 0xff00 /* tx: written 2nd */
#define ATW_MMIWADDR_RATE_MASK 0xff /* tx: written 1st */
/* was magic 0x100E0C0A */
#define ATW_MMIWADDR_INTERSIL \
(LSHIFT(0x0c, ATW_MMIWADDR_GAIN_MASK) | \
LSHIFT(0x0a, ATW_MMIWADDR_RATE_MASK) | \
LSHIFT(0x0e, ATW_MMIWADDR_LENHI_MASK) | \
LSHIFT(0x10, ATW_MMIWADDR_LENLO_MASK))
/* was magic 0x00009101
*
* ADMtek sets the AI bit on the ATW_MMIWADDR_GAIN_MASK address to
* put the RF3000 into auto-increment mode so that it can write Tx gain,
* Tx length (high) and Tx length (low) registers back-to-back.
*/
#define ATW_MMIWADDR_RFMD \
(LSHIFT(RF3000_TWI_AI|RF3000_GAINCTL, ATW_MMIWADDR_GAIN_MASK) | \
LSHIFT(RF3000_CTL, ATW_MMIWADDR_RATE_MASK))
#define ATW_MMIRADDR1_RSVD_MASK 0xff000000
#define ATW_MMIRADDR1_PWRLVL_MASK 0xff0000
#define ATW_MMIRADDR1_RSSI_MASK 0xff00
#define ATW_MMIRADDR1_RXSTAT_MASK 0xff
/* was magic 0x00007c7e
*
* TBD document registers for Intersil 3861 baseband
*/
#define ATW_MMIRADDR1_INTERSIL \
(LSHIFT(0x7c, ATW_MMIRADDR1_RSSI_MASK) | \
LSHIFT(0x7e, ATW_MMIRADDR1_RXSTAT_MASK))
/* was magic 0x00000301 */
#define ATW_MMIRADDR1_RFMD \
(LSHIFT(RF3000_RSSI, ATW_MMIRADDR1_RSSI_MASK) | \
LSHIFT(RF3000_RXSTAT, ATW_MMIRADDR1_RXSTAT_MASK))
/* was magic 0x00100000 */
#define ATW_MMIRADDR2_INTERSIL \
(LSHIFT(0x0, ATW_MMIRADDR2_ID_MASK) | \
LSHIFT(0x10, ATW_MMIRADDR2_RXPECNT_MASK))
/* was magic 0x7e100000 */
#define ATW_MMIRADDR2_RFMD \
(LSHIFT(0x7e, ATW_MMIRADDR2_ID_MASK) | \
LSHIFT(0x10, ATW_MMIRADDR2_RXPECNT_MASK))
#define ATW_MMIRADDR2_ID_MASK 0xff000000 /* 1st element ID in WEP table
* for Probe Response (huh?)
*/
/* RXPE is re-asserted after RXPECNT * 22MHz. */
#define ATW_MMIRADDR2_RXPECNT_MASK 0xff0000
#define ATW_MMIRADDR2_PROREXT (1<<15) /* Probe Response
* 11Mb/s length
* extension.
*/
#define ATW_MMIRADDR2_PRORLEN_MASK 0x7fff /* Probe Response
* microsecond length
*/
#define ATW_TXBR_ALCUPDATE_MASK (1<<31) /* auto-update BBP with ALCSET */
#define ATW_TXBR_TBCNT_MASK 0x1f0000 /* transmit burst count */
#define ATW_TXBR_ALCSET_MASK 0xff00 /* TX power level set point */
#define ATW_TXBR_ALCREF_MASK 0xff /* TX power level reference point */
#define ATW_ALCSTAT_MCOV_MASK (1<<27) /* MPDU count overflow */
#define ATW_ALCSTAT_ESOV_MASK (1<<26) /* error sum overflow */
#define ATW_ALCSTAT_MCNT_MASK 0x3ff0000 /* MPDU count, unsigned integer */
#define ATW_ALCSTAT_ERSUM_MASK 0xffff /* power error sum,
* 2's complement signed integer
*/
#define ATW_TOFS2_PWR1UP_MASK 0xf0000000 /* delay of Tx/Rx from PE1,
* Radio, PHYRST change after
* power-up, in 2ms units
*/
#define ATW_TOFS2_PWR0PAPE_MASK 0xf000000 /* delay of PAPE going low
* after internal data
* transmit end, in us
*/
#define ATW_TOFS2_PWR1PAPE_MASK 0xf00000 /* delay of PAPE going high
* after TXPE asserted, in us
*/
#define ATW_TOFS2_PWR0TRSW_MASK 0xf0000 /* delay of TRSW going low
* after internal data transmit
* end, in us
*/
#define ATW_TOFS2_PWR1TRSW_MASK 0xf000 /* delay of TRSW going high
* after TXPE asserted, in us
*/
#define ATW_TOFS2_PWR0PE2_MASK 0xf00 /* delay of PE2 going low
* after internal data transmit
* end, in us
*/
#define ATW_TOFS2_PWR1PE2_MASK 0xf0 /* delay of PE2 going high
* after TXPE asserted, in us
*/
#define ATW_TOFS2_PWR0TXPE_MASK 0xf /* delay of TXPE going low
* after internal data transmit
* end, in us
*/
#define ATW_CMDR_PM (1<<19) /* enables power mgmt
* capabilities.
*/
#define ATW_CMDR_APM (1<<18) /* APM mode, effective when
* PM = 1.
*/
#define ATW_CMDR_RTE (1<<4) /* enable Rx FIFO threshold */
#define ATW_CMDR_DRT_MASK 0xc /* drain Rx FIFO threshold */
/* 32 bytes */
#define ATW_CMDR_DRT_8DW LSHIFT(0x0, ATW_CMDR_DRT_MASK)
/* 64 bytes */
#define ATW_CMDR_DRT_16DW LSHIFT(0x1, ATW_CMDR_DRT_MASK)
/* Store & Forward */
#define ATW_CMDR_DRT_SF LSHIFT(0x2, ATW_CMDR_DRT_MASK)
/* Reserved */
#define ATW_CMDR_DRT_RSVD LSHIFT(0x3, ATW_CMDR_DRT_MASK)
#define ATW_CMDR_SINT_MASK (1<<1) /* software interrupt---huh? */
/* TBD PCIC */
/* TBD PMCSR */
#define ATW_PAR0_PAB0_MASK 0xff /* MAC address byte 0 */
#define ATW_PAR0_PAB1_MASK 0xff00 /* MAC address byte 1 */
#define ATW_PAR0_PAB2_MASK 0xff0000 /* MAC address byte 2 */
#define ATW_PAR0_PAB3_MASK 0xff000000 /* MAC address byte 3 */
#define ATW_C_PAR1_CTD 0xffff0000 /* Continuous Tx pattern */
#define ATW_PAR1_PAB5_MASK 0xff00 /* MAC address byte 5 */
#define ATW_PAR1_PAB4_MASK 0xff /* MAC address byte 4 */
#define ATW_MAR0_MAB3_MASK 0xff000000 /* multicast table bits 31:24 */
#define ATW_MAR0_MAB2_MASK 0xff0000 /* multicast table bits 23:16 */
#define ATW_MAR0_MAB1_MASK 0xff00 /* multicast table bits 15:8 */
#define ATW_MAR0_MAB0_MASK 0xff /* multicast table bits 7:0 */
#define ATW_MAR1_MAB7_MASK 0xff000000 /* multicast table bits 63:56 */
#define ATW_MAR1_MAB6_MASK 0xff0000 /* multicast table bits 55:48 */
#define ATW_MAR1_MAB5_MASK 0xff00 /* multicast table bits 47:40 */
#define ATW_MAR1_MAB4_MASK 0xff /* multicast table bits 39:32 */
/* ATIM destination address */
#define ATW_ATIMDA0_ATIMB3_MASK 0xff000000
#define ATW_ATIMDA0_ATIMB2_MASK 0xff0000
#define ATW_ATIMDA0_ATIMB1_MASK 0xff00
#define ATW_ATIMDA0_ATIMB0_MASK 0xff
/* ATIM destination address, BSSID */
#define ATW_ABDA1_BSSIDB5_MASK 0xff000000
#define ATW_ABDA1_BSSIDB4_MASK 0xff0000
#define ATW_ABDA1_ATIMB5_MASK 0xff00
#define ATW_ABDA1_ATIMB4_MASK 0xff
/* BSSID */
#define ATW_BSSID0_BSSIDB3_MASK 0xff000000
#define ATW_BSSID0_BSSIDB2_MASK 0xff0000
#define ATW_BSSID0_BSSIDB1_MASK 0xff00
#define ATW_BSSID0_BSSIDB0_MASK 0xff
#define ATW_TXLMT_MTMLT_MASK 0xffff0000 /* max TX MSDU lifetime in TU */
#define ATW_TXLMT_SRTYLIM_MASK 0xff /* short retry limit */
#define ATW_MIBCNT_FFCNT_MASK 0xff000000 /* FCS failure count */
#define ATW_MIBCNT_AFCNT_MASK 0xff0000 /* ACK failure count */
#define ATW_MIBCNT_RSCNT_MASK 0xff00 /* RTS success count */
#define ATW_MIBCNT_RFCNT_MASK 0xff /* RTS failure count */
#define ATW_BCNT_PLCPH_MASK 0xff0000 /* 11M PLCP length (us) */
#define ATW_BCNT_PLCPL_MASK 0xff00 /* 5.5M PLCP length (us) */
#define ATW_BCNT_BCNT_MASK 0xff /* byte count of beacon frame */
/* For ADM8211C/CR */
/* ATW_C_TSC_TIMTABSEL = 1 */
#define ATW_C_BCNT_EXTEN1 (1<<31) /* 11M beacon len. extension */
#define ATW_C_BCNT_BEANLEN1 0x7fff0000 /* beacon length in us */
/* ATW_C_TSC_TIMTABSEL = 0 */
#define ATW_C_BCNT_EXTEN0 (1<<15) /* 11M beacon len. extension */
#define ATW_C_BCNT_BEANLEN0 BIT(14,0) /* beacon length in us */
#define ATW_C_TSC_TIMOFS 0xff000000 /* I think this is the
* SRAM offset for the TIM
*/
#define ATW_C_TSC_TIMLEN 0x3ff000 /* length of TIM */
#define ATW_C_TSC_TIMTABSEL (1<<4) /* select TIM table 0 or 1 */
#define ATW_TSC_TSC_MASK 0xf /* TSFT countdown value, 0
* disables
*/
#define ATW_SYNRF_SELSYN (1<<31) /* 0: MAC controls SYN IF pins,
* 1: ATW_SYNRF controls SYN IF pins.
*/
#define ATW_SYNRF_SELRF (1<<30) /* 0: MAC controls RF IF pins,
* 1: ATW_SYNRF controls RF IF pins.
*/
#define ATW_SYNRF_LERF (1<<29) /* if SELSYN = 1, direct control of
* LERF# pin
*/
#define ATW_SYNRF_LEIF (1<<28) /* if SELSYN = 1, direct control of
* LEIF# pin
*/
#define ATW_SYNRF_SYNCLK (1<<27) /* if SELSYN = 1, direct control of
* SYNCLK pin
*/
#define ATW_SYNRF_SYNDATA (1<<26) /* if SELSYN = 1, direct control of
* SYNDATA pin
*/
#define ATW_SYNRF_PE1 (1<<25) /* if SELRF = 1, direct control of
* PE1 pin
*/
#define ATW_SYNRF_PE2 (1<<24) /* if SELRF = 1, direct control of
* PE2 pin
*/
#define ATW_SYNRF_PAPE (1<<23) /* if SELRF = 1, direct control of
* PAPE pin
*/
#define ATW_C_SYNRF_TRSW (1<<22) /* if SELRF = 1, direct control of
* TRSW pin
*/
#define ATW_C_SYNRF_TRSWN (1<<21) /* if SELRF = 1, direct control of
* TRSWn pin
*/
#define ATW_SYNRF_INTERSIL_EN (1<<20) /* if SELRF = 1, enables
* some signal used by the
* Intersil RF front-end?
* Undocumented.
*/
#define ATW_SYNRF_PHYRST (1<<18) /* if SELRF = 1, direct control of
* PHYRST# pin
*/
/* 1: force TXPE = RXPE = 1 if ATW_CMDR[27] = 0. */
#define ATW_C_SYNRF_RF2958PD ATW_SYNRF_PHYRST
#define ATW_BPLI_BP_MASK 0xffff0000 /* beacon interval in TU */
#define ATW_BPLI_LI_MASK 0xffff /* STA listen interval in
* beacon intervals
*/
#define ATW_C_CAP0_TIMLEN1 0xff000000 /* TIM table 1 len in bytes
* including TIM ID (XXX huh?)
*/
#define ATW_C_CAP0_TIMLEN0 0xff0000 /* TIM table 0 len in bytes,
* including TIM ID (XXX huh?)
*/
#define ATW_C_CAP0_CWMAX 0xf00 /* 1 <= CWMAX <= 5 fixes CW?
* 5 < CWMAX <= 9 sets max?
* 10?
* default 0
*/
#define ATW_CAP0_RCVDTIM (1<<4) /* receive every DTIM */
#define ATW_CAP0_CHN_MASK 0xf /* current DSSS channel */
#define ATW_CAP1_CAPI_MASK 0xffff0000 /* capability information */
#define ATW_CAP1_ATIMW_MASK 0xffff /* ATIM window in TU */
#define ATW_RMD_ATIMST (1<<31) /* ATIM frame TX status */
#define ATW_RMD_CFP (1<<30) /* CFP indicator */
#define ATW_RMD_PCNT 0xfff0000 /* idle time between
* awake/ps mode, in seconds
*/
#define ATW_RMD_RMRD_MASK 0xffff /* max RX reception duration
* in us
*/
#define ATW_CFPP_CFPP 0xff000000 /* CFP unit DTIM */
#define ATW_CFPP_CFPMD 0xffff00 /* CFP max duration in TU */
#define ATW_CFPP_DTIMP 0xff /* DTIM period in beacon
* intervals
*/
#define ATW_TOFS0_USCNT_MASK 0x3f000000 /* number of system clocks
* in 1 microsecond.
* Depends PCI bus speed?
*/
#define ATW_C_TOFS0_TUCNT_MASK 0x7c00 /* PIFS (microseconds) */
#define ATW_TOFS0_TUCNT_MASK 0x3ff /* TU counter in microseconds */
/* TBD TOFS1 */
#define ATW_TOFS1_TSFTOFSR_MASK 0xff000000 /* RX TSFT offset in
* microseconds: RF+BBP
* latency
*/
#define ATW_TOFS1_TBTTPRE_MASK 0xffff00 /* prediction time, (next
* Nth TBTT - TBTTOFS) in
* microseconds (huh?). To
* match TSFT[25:10] (huh?).
*/
#define ATW_TBTTPRE_MASK 0x3fffc00
#define ATW_TOFS1_TBTTOFS_MASK 0xff /* wake-up time offset before
* TBTT in TU
*/
#define ATW_IFST_SLOT_MASK 0xf800000 /* SLOT time in us */
#define ATW_IFST_SIFS_MASK 0x7f8000 /* SIFS time in us */
#define ATW_IFST_DIFS_MASK 0x7e00 /* DIFS time in us */
#define ATW_IFST_EIFS_MASK 0x1ff /* EIFS time in us */
#define ATW_RSPT_MART_MASK 0xffff0000 /* max response time in us */
#define ATW_RSPT_MIRT_MASK 0xff00 /* min response time in us */
#define ATW_RSPT_TSFTOFST_MASK 0xff /* TX TSFT offset in us */
#define ATW_WEPCTL_WEPENABLE (1<<31) /* enable WEP engine */
#define ATW_WEPCTL_AUTOSWITCH (1<<30) /* auto-switch enable (huh?) */
#define ATW_WEPCTL_CURTBL (1<<29) /* current table in use */
#define ATW_WEPCTL_WR (1<<28) /* */
#define ATW_WEPCTL_RD (1<<27) /* */
#define ATW_WEPCTL_WEPRXBYP (1<<25) /* bypass WEP on RX */
#define ATW_WEPCTL_SHKEY (1<<24) /* 1: pass to host if tbl
* lookup fails, 0: use
* shared-key
*/
#define ATW_WEPCTL_UNKNOWN0 (1<<23) /* has something to do with
* revision 0x20. Possibly
* selects a different WEP
* table.
*/
#define ATW_WEPCTL_TBLADD_MASK 0x1ff /* add to table */
/* set these bits in the second byte of a SRAM shared key record to affect
* the use and interpretation of the key in the record.
*/
#define ATW_WEP_ENABLED (1<<7)
#define ATW_WEP_104BIT (1<<6)
#define ATW_WESK_DATA_MASK 0xffff /* data */
#define ATW_WEPCNT_WIEC_MASK 0xffff /* WEP ICV error count */
#define ATW_MACTEST_FORCE_IV (1<<23)
#define ATW_MACTEST_FORCE_KEYID (1<<22)
#define ATW_MACTEST_KEYID_MASK 0x300000
#define ATW_MACTEST_MMI_USETXCLK (1<<11)
/* Function Event/Status registers */
#define ATW_FER_INTR (1<<15) /* interrupt: set regardless of mask */
#define ATW_FER_GWAKE (1<<4) /* general wake-up: set regardless of mask */
#define ATW_FEMR_INTR_EN (1<<15) /* enable INTA# */
#define ATW_FEMR_WAKEUP_EN (1<<14) /* enable wake-up */
#define ATW_FEMR_GWAKE_EN (1<<4) /* enable general wake-up */
#define ATW_FPSR_INTR_STATUS (1<<15) /* interrupt status */
#define ATW_FPSR_WAKEUP_STATUS (1<<4) /* CSTSCHG state */
#define ATW_FFER_INTA_FORCE (1<<15) /* activate INTA (if not masked) */
#define ATW_FFER_GWAKE_FORCE (1<<4) /* activate CSTSCHG (if not masked) */
/* Serial EEPROM offsets */
#define ATW_SR_CLASS_CODE (0x00/2)
#define ATW_SR_FORMAT_VERSION (0x02/2)
#define ATW_SR_MAJOR_MASK 0xff
#define ATW_SR_MINOR_MASK 0xff00
#define ATW_SR_MAC00 (0x08/2) /* CSR21 */
#define ATW_SR_MAC01 (0x0A/2) /* CSR21/22 */
#define ATW_SR_MAC10 (0x0C/2) /* CSR22 */
#define ATW_SR_CSR20 (0x16/2)
#define ATW_SR_ANT_MASK 0x1c00
#define ATW_SR_PWRSCALE_MASK 0x300
#define ATW_SR_CLKSAVE_MASK 0xc0
#define ATW_SR_RFTYPE_MASK 0x38
#define ATW_SR_BBPTYPE_MASK 0x7
#define ATW_SR_CR28_CR03 (0x18/2)
#define ATW_SR_CR28_MASK 0xff00
#define ATW_SR_CR03_MASK 0xff
#define ATW_SR_CTRY_CR29 (0x1A/2)
#define ATW_SR_CTRY_MASK 0xff00 /* country code */
#define COUNTRY_FCC 0
#define COUNTRY_IC 1
#define COUNTRY_ETSI 2
#define COUNTRY_SPAIN 3
#define COUNTRY_FRANCE 4
#define COUNTRY_MMK 5
#define COUNTRY_MMK2 6
#define ATW_SR_CR29_MASK 0xff
#define ATW_SR_PCI_DEVICE (0x20/2) /* CR0 */
#define ATW_SR_PCI_VENDOR (0x22/2) /* CR0 */
#define ATW_SR_SUB_DEVICE (0x24/2) /* CR11 */
#define ATW_SR_SUB_VENDOR (0x26/2) /* CR11 */
#define ATW_SR_CR15 (0x28/2)
#define ATW_SR_LOCISPTR (0x2A/2) /* CR10 */
#define ATW_SR_HICISPTR (0x2C/2) /* CR10 */
#define ATW_SR_CSR18 (0x2E/2)
#define ATW_SR_D0_D1_PWR (0x40/2) /* CR49 */
#define ATW_SR_D2_D3_PWR (0x42/2) /* CR49 */
#define ATW_SR_CIS_WORDS (0x52/2)
/* CR17 of RFMD RF3000 BBP: returns TWO channels */
#define ATW_SR_TXPOWER(chnl) (0x54/2 + ((chnl) - 1)/2)
/* CR20 of RFMD RF3000 BBP: returns TWO channels */
#define ATW_SR_LPF_CUTOFF(chnl) (0x62/2 + ((chnl) - 1)/2)
/* CR21 of RFMD RF3000 BBP: returns TWO channels */
#define ATW_SR_LNA_GS_THRESH(chnl) (0x70/2 + ((chnl) - 1)/2)
#define ATW_SR_CHECKSUM (0x7e/2) /* for data 0x00-0x7d */
#define ATW_SR_CIS (0x80/2) /* Cardbus CIS */
/* Tx descriptor */
struct atw_txdesc {
u_int32_t at_ctl;
#define at_stat at_ctl
u_int32_t at_flags;
u_int32_t at_buf1;
u_int32_t at_buf2;
};
#define ATW_TXCTL_OWN (1<<31) /* 1: ready to transmit */
#define ATW_TXCTL_DONE (1<<30) /* 0: not processed */
#define ATW_TXCTL_TXDR_MASK 0xff00000 /* TX data rate (?) */
#define ATW_TXCTL_TL_MASK 0xfffff /* retry limit, 0 - 255 */
#define ATW_TXSTAT_OWN ATW_TXCTL_OWN /* 0: not for transmission */
#define ATW_TXSTAT_DONE ATW_TXCTL_DONE /* 1: been processed */
#define ATW_TXSTAT_ES (1<<29) /* 0: TX successful */
#define ATW_TXSTAT_TLT (1<<28) /* TX lifetime expired */
#define ATW_TXSTAT_TRT (1<<27) /* TX retry limit expired */
#define ATW_TXSTAT_TUF (1<<26) /* TX under-run error */
#define ATW_TXSTAT_TRO (1<<25) /* TX over-run error */
#define ATW_TXSTAT_SOFBR (1<<24) /* packet size != buffer size
* (?)
*/
#define ATW_TXSTAT_ARC_MASK 0xfff /* accumulated retry count */
#define ATW_TXFLAG_IC (1<<31) /* interrupt on completion */
#define ATW_TXFLAG_LS (1<<30) /* packet's last descriptor */
#define ATW_TXFLAG_FS (1<<29) /* packet's first descriptor */
#define ATW_TXFLAG_TER (1<<25) /* end of ring */
#define ATW_TXFLAG_TCH (1<<24) /* at_buf2 is 2nd chain */
#define ATW_TXFLAG_TBS2_MASK 0xfff000 /* at_buf2 byte count */
#define ATW_TXFLAG_TBS1_MASK 0xfff /* at_buf1 byte count */
/* Rx descriptor */
struct atw_rxdesc {
u_int32_t ar_stat;
u_int32_t ar_ctl;
u_int32_t ar_buf1;
u_int32_t ar_buf2;
};
#define ar_rssi ar_ctl
#define ATW_RXCTL_RER (1<<25) /* end of ring */
#define ATW_RXCTL_RCH (1<<24) /* ar_buf2 is 2nd chain */
#define ATW_RXCTL_RBS2_MASK 0xfff000 /* ar_buf2 byte count */
#define ATW_RXCTL_RBS1_MASK 0xfff /* ar_buf1 byte count */
#define ATW_RXSTAT_OWN (1<<31) /* 1: NIC may fill descriptor */
#define ATW_RXSTAT_ES (1<<30) /* error summary, 0 on
* success
*/
#define ATW_RXSTAT_SQL (1<<29) /* has signal quality (?) */
#define ATW_RXSTAT_DE (1<<28) /* descriptor error---packet is
* truncated. last descriptor
* only
*/
#define ATW_RXSTAT_FS (1<<27) /* packet's first descriptor */
#define ATW_RXSTAT_LS (1<<26) /* packet's last descriptor */
#define ATW_RXSTAT_PCF (1<<25) /* received during CFP */
#define ATW_RXSTAT_SFDE (1<<24) /* PLCP SFD error */
#define ATW_RXSTAT_SIGE (1<<23) /* PLCP signal error */
#define ATW_RXSTAT_CRC16E (1<<22) /* PLCP CRC16 error */
#define ATW_RXSTAT_RXTOE (1<<21) /* RX time-out, last descriptor
* only.
*/
#define ATW_RXSTAT_CRC32E (1<<20) /* CRC32 error */
#define ATW_RXSTAT_ICVE (1<<19) /* WEP ICV error */
#define ATW_RXSTAT_DA1 (1<<17) /* DA bit 1, admin'd address */
#define ATW_RXSTAT_DA0 (1<<16) /* DA bit 0, group address */
#define ATW_RXSTAT_RXDR_MASK 0xf000 /* RX data rate */
#define ATW_RXSTAT_FL_MASK 0xfff /* RX frame length, last
* descriptor only
*/
/* Static RAM (contains WEP keys, beacon content). Addresses and size
* are in 16-bit words.
*/
#define ATW_SRAM_ADDR_INDIVL_KEY 0x0
#define ATW_SRAM_ADDR_SHARED_KEY (0x160 * 2)
#define ATW_SRAM_ADDR_SSID (0x180 * 2)
#define ATW_SRAM_ADDR_SUPRATES (0x191 * 2)
#define ATW_SRAM_MAXSIZE (0x200 * 2)
#define ATW_SRAM_A_SIZE ATW_SRAM_MAXSIZE
#define ATW_SRAM_B_SIZE (0x1c0 * 2)
|