blob: 3f177f7c581c1c8a88ac182f7a3db49f0ff27a91 [file] [log] [blame]
Forest Bond5449c682009-04-25 10:30:44 -04001/*
2 * Copyright (c) 1996, 2003 VIA Networking Technologies, Inc.
3 * All rights reserved.
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 *
19 *
20 * File: mac.h
21 *
22 * Purpose: MAC routines
23 *
24 * Author: Tevin Chen
25 *
26 * Date: May 21, 1996
Jim Lieb612822f2009-08-12 14:54:03 -070027 *
Forest Bond5449c682009-04-25 10:30:44 -040028 * Revision History:
29 * 07-01-2003 Bryan YC Fan: Re-write codes to support VT3253 spec.
30 * 08-25-2003 Kyle Hsu: Porting MAC functions from sim53.
31 * 09-03-2003 Bryan YC Fan: Add MACvDisableProtectMD & MACvEnableProtectMD
Forest Bond5449c682009-04-25 10:30:44 -040032 */
33
34#ifndef __MAC_H__
35#define __MAC_H__
36
Forest Bond5449c682009-04-25 10:30:44 -040037#include "ttype.h"
Forest Bond5449c682009-04-25 10:30:44 -040038#include "tmacro.h"
Forest Bond5449c682009-04-25 10:30:44 -040039#include "upc.h"
Forest Bond5449c682009-04-25 10:30:44 -040040
41/*--------------------- Export Definitions -------------------------*/
42//
43// Registers in the MAC
44//
45#define MAC_MAX_CONTEXT_SIZE_PAGE0 256
46#define MAC_MAX_CONTEXT_SIZE_PAGE1 128
47#define MAC_MAX_CONTEXT_SIZE MAC_MAX_CONTEXT_SIZE_PAGE0 + MAC_MAX_CONTEXT_SIZE_PAGE1
48
49// Registers not related to 802.11b
50#define MAC_REG_BCFG0 0x00
51#define MAC_REG_BCFG1 0x01
52#define MAC_REG_FCR0 0x02
53#define MAC_REG_FCR1 0x03
54#define MAC_REG_BISTCMD 0x04
55#define MAC_REG_BISTSR0 0x05
56#define MAC_REG_BISTSR1 0x06
57#define MAC_REG_BISTSR2 0x07
58#define MAC_REG_I2MCSR 0x08
59#define MAC_REG_I2MTGID 0x09
60#define MAC_REG_I2MTGAD 0x0A
61#define MAC_REG_I2MCFG 0x0B
62#define MAC_REG_I2MDIPT 0x0C
63#define MAC_REG_I2MDOPT 0x0E
64#define MAC_REG_PMC0 0x10
65#define MAC_REG_PMC1 0x11
66#define MAC_REG_STICKHW 0x12
67#define MAC_REG_LOCALID 0x14
68#define MAC_REG_TESTCFG 0x15
69#define MAC_REG_JUMPER0 0x16
70#define MAC_REG_JUMPER1 0x17
71#define MAC_REG_TMCTL0 0x18
72#define MAC_REG_TMCTL1 0x19
73#define MAC_REG_TMDATA0 0x1C
74// MAC Parameter related
75#define MAC_REG_LRT 0x20 //
76#define MAC_REG_SRT 0x21 //
77#define MAC_REG_SIFS 0x22 //
78#define MAC_REG_DIFS 0x23 //
79#define MAC_REG_EIFS 0x24 //
80#define MAC_REG_SLOT 0x25 //
81#define MAC_REG_BI 0x26 //
82#define MAC_REG_CWMAXMIN0 0x28 //
83#define MAC_REG_LINKOFFTOTM 0x2A
84#define MAC_REG_SWTMOT 0x2B
85#define MAC_REG_MIBCNTR 0x2C
86#define MAC_REG_RTSOKCNT 0x2C
87#define MAC_REG_RTSFAILCNT 0x2D
88#define MAC_REG_ACKFAILCNT 0x2E
89#define MAC_REG_FCSERRCNT 0x2F
90// TSF Related
91#define MAC_REG_TSFCNTR 0x30 //
92#define MAC_REG_NEXTTBTT 0x38 //
93#define MAC_REG_TSFOFST 0x40 //
94#define MAC_REG_TFTCTL 0x48 //
95// WMAC Control/Status Related
96#define MAC_REG_ENCFG 0x4C //
97#define MAC_REG_PAGE1SEL 0x4F //
98#define MAC_REG_CFG 0x50 //
99#define MAC_REG_TEST 0x52 //
100#define MAC_REG_HOSTCR 0x54 //
101#define MAC_REG_MACCR 0x55 //
102#define MAC_REG_RCR 0x56 //
103#define MAC_REG_TCR 0x57 //
104#define MAC_REG_IMR 0x58 //
105#define MAC_REG_ISR 0x5C
106// Power Saving Related
107#define MAC_REG_PSCFG 0x60 //
108#define MAC_REG_PSCTL 0x61 //
109#define MAC_REG_PSPWRSIG 0x62 //
110#define MAC_REG_BBCR13 0x63
111#define MAC_REG_AIDATIM 0x64
112#define MAC_REG_PWBT 0x66
113#define MAC_REG_WAKEOKTMR 0x68
114#define MAC_REG_CALTMR 0x69
115#define MAC_REG_SYNSPACCNT 0x6A
116#define MAC_REG_WAKSYNOPT 0x6B
117// Baseband/IF Control Group
118#define MAC_REG_BBREGCTL 0x6C //
119#define MAC_REG_CHANNEL 0x6D
120#define MAC_REG_BBREGADR 0x6E
121#define MAC_REG_BBREGDATA 0x6F
122#define MAC_REG_IFREGCTL 0x70 //
123#define MAC_REG_IFDATA 0x71 //
124#define MAC_REG_ITRTMSET 0x74 //
Jim Lieb612822f2009-08-12 14:54:03 -0700125#define MAC_REG_PAPEDELAY 0x77
Forest Bond5449c682009-04-25 10:30:44 -0400126#define MAC_REG_SOFTPWRCTL 0x78 //
127#define MAC_REG_GPIOCTL0 0x7A //
128#define MAC_REG_GPIOCTL1 0x7B //
129
130// MAC DMA Related Group
131#define MAC_REG_TXDMACTL0 0x7C //
132#define MAC_REG_TXDMAPTR0 0x80 //
133#define MAC_REG_AC0DMACTL 0x84 //
134#define MAC_REG_AC0DMAPTR 0x88 //
135#define MAC_REG_BCNDMACTL 0x8C //
136#define MAC_REG_BCNDMAPTR 0x90 //
137#define MAC_REG_RXDMACTL0 0x94 //
138#define MAC_REG_RXDMAPTR0 0x98 //
139#define MAC_REG_RXDMACTL1 0x9C //
140#define MAC_REG_RXDMAPTR1 0xA0 //
141#define MAC_REG_SYNCDMACTL 0xA4 //
142#define MAC_REG_SYNCDMAPTR 0xA8
143#define MAC_REG_ATIMDMACTL 0xAC
144#define MAC_REG_ATIMDMAPTR 0xB0
145// MiscFF PIO related
146#define MAC_REG_MISCFFNDEX 0xB4
147#define MAC_REG_MISCFFCTL 0xB6
148#define MAC_REG_MISCFFDATA 0xB8
149// Extend SW Timer
150#define MAC_REG_TMDATA1 0xBC
151// WOW Related Group
152#define MAC_REG_WAKEUPEN0 0xC0
153#define MAC_REG_WAKEUPEN1 0xC1
154#define MAC_REG_WAKEUPSR0 0xC2
155#define MAC_REG_WAKEUPSR1 0xC3
156#define MAC_REG_WAKE128_0 0xC4
157#define MAC_REG_WAKE128_1 0xD4
158#define MAC_REG_WAKE128_2 0xE4
159#define MAC_REG_WAKE128_3 0xF4
160
161/////////////// Page 1 ///////////////////
162#define MAC_REG_CRC_128_0 0x04
163#define MAC_REG_CRC_128_1 0x06
164#define MAC_REG_CRC_128_2 0x08
165#define MAC_REG_CRC_128_3 0x0A
166// MAC Configuration Group
167#define MAC_REG_PAR0 0x0C
168#define MAC_REG_PAR4 0x10
169#define MAC_REG_BSSID0 0x14
170#define MAC_REG_BSSID4 0x18
171#define MAC_REG_MAR0 0x1C
172#define MAC_REG_MAR4 0x20
173// MAC RSPPKT INFO Group
174#define MAC_REG_RSPINF_B_1 0x24
175#define MAC_REG_RSPINF_B_2 0x28
176#define MAC_REG_RSPINF_B_5 0x2C
177#define MAC_REG_RSPINF_B_11 0x30
178#define MAC_REG_RSPINF_A_6 0x34
179#define MAC_REG_RSPINF_A_9 0x36
180#define MAC_REG_RSPINF_A_12 0x38
181#define MAC_REG_RSPINF_A_18 0x3A
182#define MAC_REG_RSPINF_A_24 0x3C
183#define MAC_REG_RSPINF_A_36 0x3E
184#define MAC_REG_RSPINF_A_48 0x40
185#define MAC_REG_RSPINF_A_54 0x42
186#define MAC_REG_RSPINF_A_72 0x44
187
188// 802.11h relative
189#define MAC_REG_QUIETINIT 0x60
190#define MAC_REG_QUIETGAP 0x62
191#define MAC_REG_QUIETDUR 0x64
192#define MAC_REG_MSRCTL 0x66
193#define MAC_REG_MSRBBSTS 0x67
194#define MAC_REG_MSRSTART 0x68
195#define MAC_REG_MSRDURATION 0x70
196#define MAC_REG_CCAFRACTION 0x72
197#define MAC_REG_PWRCCK 0x73
198#define MAC_REG_PWROFDM 0x7C
199
Forest Bond5449c682009-04-25 10:30:44 -0400200//
201// Bits in the BCFG0 register
202//
203#define BCFG0_PERROFF 0x40
204#define BCFG0_MRDMDIS 0x20
205#define BCFG0_MRDLDIS 0x10
206#define BCFG0_MWMEN 0x08
207#define BCFG0_VSERREN 0x02
208#define BCFG0_LATMEN 0x01
209
210//
211// Bits in the BCFG1 register
212//
213#define BCFG1_CFUNOPT 0x80
214#define BCFG1_CREQOPT 0x40
215#define BCFG1_DMA8 0x10
216#define BCFG1_ARBITOPT 0x08
217#define BCFG1_PCIMEN 0x04
218#define BCFG1_MIOEN 0x02
219#define BCFG1_CISDLYEN 0x01
220
221// Bits in RAMBIST registers
222#define BISTCMD_TSTPAT5 0x00 //
223#define BISTCMD_TSTPATA 0x80 //
224#define BISTCMD_TSTERR 0x20 //
225#define BISTCMD_TSTPATF 0x18 //
226#define BISTCMD_TSTPAT0 0x10 //
227#define BISTCMD_TSTMODE 0x04 //
228#define BISTCMD_TSTITTX 0x03 //
229#define BISTCMD_TSTATRX 0x02 //
230#define BISTCMD_TSTATTX 0x01 //
231#define BISTCMD_TSTRX 0x00 //
232#define BISTSR0_BISTGO 0x01 //
233#define BISTSR1_TSTSR 0x01 //
234#define BISTSR2_CMDPRTEN 0x02 //
235#define BISTSR2_RAMTSTEN 0x01 //
236
237//
238// Bits in the I2MCFG EEPROM register
239//
240#define I2MCFG_BOUNDCTL 0x80
241#define I2MCFG_WAITCTL 0x20
242#define I2MCFG_SCLOECTL 0x10
243#define I2MCFG_WBUSYCTL 0x08
244#define I2MCFG_NORETRY 0x04
245#define I2MCFG_I2MLDSEQ 0x02
246#define I2MCFG_I2CMFAST 0x01
247
248//
249// Bits in the I2MCSR EEPROM register
250//
251#define I2MCSR_EEMW 0x80
252#define I2MCSR_EEMR 0x40
253#define I2MCSR_AUTOLD 0x08
254#define I2MCSR_NACK 0x02
255#define I2MCSR_DONE 0x01
256
257//
258// Bits in the PMC1 register
259//
260#define SPS_RST 0x80
261#define PCISTIKY 0x40
262#define PME_OVR 0x02
263
264//
265// Bits in the STICKYHW register
266//
267#define STICKHW_DS1_SHADOW 0x02
268#define STICKHW_DS0_SHADOW 0x01
269
270//
271// Bits in the TMCTL register
272//
273#define TMCTL_TSUSP 0x04
274#define TMCTL_TMD 0x02
275#define TMCTL_TE 0x01
276
277//
278// Bits in the TFTCTL register
279//
280#define TFTCTL_HWUTSF 0x80 //
281#define TFTCTL_TBTTSYNC 0x40
282#define TFTCTL_HWUTSFEN 0x20
283#define TFTCTL_TSFCNTRRD 0x10 //
284#define TFTCTL_TBTTSYNCEN 0x08 //
285#define TFTCTL_TSFSYNCEN 0x04 //
286#define TFTCTL_TSFCNTRST 0x02 //
287#define TFTCTL_TSFCNTREN 0x01 //
288
289//
290// Bits in the EnhanceCFG register
291//
292#define EnCFG_BarkerPream 0x00020000
293#define EnCFG_NXTBTTCFPSTR 0x00010000
Forest Bond5449c682009-04-25 10:30:44 -0400294#define EnCFG_BcnSusClr 0x00000200
295#define EnCFG_BcnSusInd 0x00000100
Forest Bond5449c682009-04-25 10:30:44 -0400296#define EnCFG_CFP_ProtectEn 0x00000040
297#define EnCFG_ProtectMd 0x00000020
298#define EnCFG_HwParCFP 0x00000010
Forest Bond5449c682009-04-25 10:30:44 -0400299#define EnCFG_CFNULRSP 0x00000004
300#define EnCFG_BBType_MASK 0x00000003
301#define EnCFG_BBType_g 0x00000002
302#define EnCFG_BBType_b 0x00000001
303#define EnCFG_BBType_a 0x00000000
304
305//
306// Bits in the Page1Sel register
307//
308#define PAGE1_SEL 0x01
309
310//
311// Bits in the CFG register
312//
313#define CFG_TKIPOPT 0x80
314#define CFG_RXDMAOPT 0x40
315#define CFG_TMOT_SW 0x20
316#define CFG_TMOT_HWLONG 0x10
317#define CFG_TMOT_HW 0x00
318#define CFG_CFPENDOPT 0x08
319#define CFG_BCNSUSEN 0x04
320#define CFG_NOTXTIMEOUT 0x02
321#define CFG_NOBUFOPT 0x01
322
323//
324// Bits in the TEST register
325//
326#define TEST_LBEXT 0x80 //
327#define TEST_LBINT 0x40 //
328#define TEST_LBNONE 0x00 //
329#define TEST_SOFTINT 0x20 //
330#define TEST_CONTTX 0x10 //
331#define TEST_TXPE 0x08 //
332#define TEST_NAVDIS 0x04 //
333#define TEST_NOCTS 0x02 //
334#define TEST_NOACK 0x01 //
335
336//
337// Bits in the HOSTCR register
338//
339#define HOSTCR_TXONST 0x80 //
340#define HOSTCR_RXONST 0x40 //
341#define HOSTCR_ADHOC 0x20 // Network Type 1 = Ad-hoc
342#define HOSTCR_AP 0x10 // Port Type 1 = AP
343#define HOSTCR_TXON 0x08 //0000 1000
344#define HOSTCR_RXON 0x04 //0000 0100
345#define HOSTCR_MACEN 0x02 //0000 0010
346#define HOSTCR_SOFTRST 0x01 //0000 0001
347
348//
349// Bits in the MACCR register
350//
351#define MACCR_SYNCFLUSHOK 0x04 //
352#define MACCR_SYNCFLUSH 0x02 //
353#define MACCR_CLRNAV 0x01 //
354
355// Bits in the MAC_REG_GPIOCTL0 register
356//
357#define LED_ACTSET 0x01 //
358#define LED_RFOFF 0x02 //
359#define LED_NOCONNECT 0x04 //
360//
361// Bits in the RCR register
362//
363#define RCR_SSID 0x80
364#define RCR_RXALLTYPE 0x40 //
365#define RCR_UNICAST 0x20 //
366#define RCR_BROADCAST 0x10 //
367#define RCR_MULTICAST 0x08 //
368#define RCR_WPAERR 0x04 //
369#define RCR_ERRCRC 0x02 //
370#define RCR_BSSID 0x01 //
371
372//
373// Bits in the TCR register
374//
375#define TCR_SYNCDCFOPT 0x02 //
376#define TCR_AUTOBCNTX 0x01 // Beacon automatically transmit enable
377
378//
379// Bits in the IMR register
380//
381#define IMR_MEASURESTART 0x80000000 //
382#define IMR_QUIETSTART 0x20000000 //
383#define IMR_RADARDETECT 0x10000000 //
384#define IMR_MEASUREEND 0x08000000 //
385#define IMR_SOFTTIMER1 0x00200000 //
Forest Bond5449c682009-04-25 10:30:44 -0400386#define IMR_RXDMA1 0x00001000 //0000 0000 0001 0000 0000 0000
387#define IMR_RXNOBUF 0x00000800 //
388#define IMR_MIBNEARFULL 0x00000400 //
389#define IMR_SOFTINT 0x00000200 //
390#define IMR_FETALERR 0x00000100 //
391#define IMR_WATCHDOG 0x00000080 //
392#define IMR_SOFTTIMER 0x00000040 //
393#define IMR_GPIO 0x00000020 //
394#define IMR_TBTT 0x00000010 //
395#define IMR_RXDMA0 0x00000008 //
396#define IMR_BNTX 0x00000004 //
397#define IMR_AC0DMA 0x00000002 //
398#define IMR_TXDMA0 0x00000001 //
399
Forest Bond5449c682009-04-25 10:30:44 -0400400//
401// Bits in the ISR register
402//
403
404#define ISR_MEASURESTART 0x80000000 //
405#define ISR_QUIETSTART 0x20000000 //
406#define ISR_RADARDETECT 0x10000000 //
407#define ISR_MEASUREEND 0x08000000 //
408#define ISR_SOFTTIMER1 0x00200000 //
Forest Bond5449c682009-04-25 10:30:44 -0400409#define ISR_RXDMA1 0x00001000 //0000 0000 0001 0000 0000 0000
410#define ISR_RXNOBUF 0x00000800 //0000 0000 0000 1000 0000 0000
411#define ISR_MIBNEARFULL 0x00000400 //0000 0000 0000 0100 0000 0000
412#define ISR_SOFTINT 0x00000200 //
413#define ISR_FETALERR 0x00000100 //
414#define ISR_WATCHDOG 0x00000080 //
415#define ISR_SOFTTIMER 0x00000040 //
416#define ISR_GPIO 0x00000020 //
417#define ISR_TBTT 0x00000010 //
418#define ISR_RXDMA0 0x00000008 //
419#define ISR_BNTX 0x00000004 //
420#define ISR_AC0DMA 0x00000002 //
421#define ISR_TXDMA0 0x00000001 //
422
Forest Bond5449c682009-04-25 10:30:44 -0400423//
424// Bits in the PSCFG register
425//
426#define PSCFG_PHILIPMD 0x40 //
427#define PSCFG_WAKECALEN 0x20 //
428#define PSCFG_WAKETMREN 0x10 //
429#define PSCFG_BBPSPROG 0x08 //
430#define PSCFG_WAKESYN 0x04 //
431#define PSCFG_SLEEPSYN 0x02 //
432#define PSCFG_AUTOSLEEP 0x01 //
433
434//
435// Bits in the PSCTL register
436//
437#define PSCTL_WAKEDONE 0x20 //
438#define PSCTL_PS 0x10 //
439#define PSCTL_GO2DOZE 0x08 //
440#define PSCTL_LNBCN 0x04 //
441#define PSCTL_ALBCN 0x02 //
442#define PSCTL_PSEN 0x01 //
443
444//
445// Bits in the PSPWSIG register
446//
447#define PSSIG_WPE3 0x80 //
448#define PSSIG_WPE2 0x40 //
449#define PSSIG_WPE1 0x20 //
450#define PSSIG_WRADIOPE 0x10 //
451#define PSSIG_SPE3 0x08 //
452#define PSSIG_SPE2 0x04 //
453#define PSSIG_SPE1 0x02 //
454#define PSSIG_SRADIOPE 0x01 //
455
456//
457// Bits in the BBREGCTL register
458//
459#define BBREGCTL_DONE 0x04 //
460#define BBREGCTL_REGR 0x02 //
461#define BBREGCTL_REGW 0x01 //
462
463//
464// Bits in the IFREGCTL register
465//
466#define IFREGCTL_DONE 0x04 //
467#define IFREGCTL_IFRF 0x02 //
468#define IFREGCTL_REGW 0x01 //
469
470//
471// Bits in the SOFTPWRCTL register
472//
473#define SOFTPWRCTL_RFLEOPT 0x0800 //
474#define SOFTPWRCTL_TXPEINV 0x0200 //
475#define SOFTPWRCTL_SWPECTI 0x0100 //
476#define SOFTPWRCTL_SWPAPE 0x0020 //
477#define SOFTPWRCTL_SWCALEN 0x0010 //
478#define SOFTPWRCTL_SWRADIO_PE 0x0008 //
479#define SOFTPWRCTL_SWPE2 0x0004 //
480#define SOFTPWRCTL_SWPE1 0x0002 //
481#define SOFTPWRCTL_SWPE3 0x0001 //
482
483//
484// Bits in the GPIOCTL1 register
485//
486#define GPIO1_DATA1 0x20 //
487#define GPIO1_MD1 0x10 //
488#define GPIO1_DATA0 0x02 //
489#define GPIO1_MD0 0x01 //
490
491//
492// Bits in the DMACTL register
493//
494#define DMACTL_CLRRUN 0x00080000 //
495#define DMACTL_RUN 0x00000008 //
496#define DMACTL_WAKE 0x00000004 //
497#define DMACTL_DEAD 0x00000002 //
498#define DMACTL_ACTIVE 0x00000001 //
499//
500// Bits in the RXDMACTL0 register
501//
502#define RX_PERPKT 0x00000100 //
503#define RX_PERPKTCLR 0x01000000 //
504//
505// Bits in the BCNDMACTL register
506//
507#define BEACON_READY 0x01 //
508//
509// Bits in the MISCFFCTL register
510//
511#define MISCFFCTL_WRITE 0x0001 //
512
Forest Bond5449c682009-04-25 10:30:44 -0400513//
514// Bits in WAKEUPEN0
515//
516#define WAKEUPEN0_DIRPKT 0x10
517#define WAKEUPEN0_LINKOFF 0x08
518#define WAKEUPEN0_ATIMEN 0x04
519#define WAKEUPEN0_TIMEN 0x02
520#define WAKEUPEN0_MAGICEN 0x01
521
522//
523// Bits in WAKEUPEN1
524//
525#define WAKEUPEN1_128_3 0x08
526#define WAKEUPEN1_128_2 0x04
527#define WAKEUPEN1_128_1 0x02
528#define WAKEUPEN1_128_0 0x01
529
530//
531// Bits in WAKEUPSR0
532//
533#define WAKEUPSR0_DIRPKT 0x10
534#define WAKEUPSR0_LINKOFF 0x08
535#define WAKEUPSR0_ATIMEN 0x04
536#define WAKEUPSR0_TIMEN 0x02
537#define WAKEUPSR0_MAGICEN 0x01
538
539//
540// Bits in WAKEUPSR1
541//
542#define WAKEUPSR1_128_3 0x08
543#define WAKEUPSR1_128_2 0x04
544#define WAKEUPSR1_128_1 0x02
545#define WAKEUPSR1_128_0 0x01
546
547//
548// Bits in the MAC_REG_GPIOCTL register
549//
550#define GPIO0_MD 0x01 //
551#define GPIO0_DATA 0x02 //
552#define GPIO0_INTMD 0x04 //
553#define GPIO1_MD 0x10 //
554#define GPIO1_DATA 0x20 //
555
Forest Bond5449c682009-04-25 10:30:44 -0400556//
557// Bits in the MSRCTL register
558//
559#define MSRCTL_FINISH 0x80
560#define MSRCTL_READY 0x40
561#define MSRCTL_RADARDETECT 0x20
562#define MSRCTL_EN 0x10
563#define MSRCTL_QUIETTXCHK 0x08
564#define MSRCTL_QUIETRPT 0x04
565#define MSRCTL_QUIETINT 0x02
566#define MSRCTL_QUIETEN 0x01
567//
568// Bits in the MSRCTL1 register
569//
570#define MSRCTL1_TXPWR 0x08
571#define MSRCTL1_CSAPAREN 0x04
572#define MSRCTL1_TXPAUSE 0x01
573
Forest Bond5449c682009-04-25 10:30:44 -0400574// Loopback mode
575#define MAC_LB_EXT 0x02 //
576#define MAC_LB_INTERNAL 0x01 //
577#define MAC_LB_NONE 0x00 //
578
579// Ethernet address filter type
580#define PKT_TYPE_NONE 0x00 // turn off receiver
581#define PKT_TYPE_ALL_MULTICAST 0x80
582#define PKT_TYPE_PROMISCUOUS 0x40
Justin P. Mattock789d1ae2012-08-20 08:43:13 -0700583#define PKT_TYPE_DIRECTED 0x20 // obsolete, directed address is always accepted
Forest Bond5449c682009-04-25 10:30:44 -0400584#define PKT_TYPE_BROADCAST 0x10
585#define PKT_TYPE_MULTICAST 0x08
586#define PKT_TYPE_ERROR_WPA 0x04
587#define PKT_TYPE_ERROR_CRC 0x02
588#define PKT_TYPE_BSSID 0x01
589
590#define Default_BI 0x200
591
Forest Bond5449c682009-04-25 10:30:44 -0400592// MiscFIFO Offset
593#define MISCFIFO_KEYETRY0 32
594#define MISCFIFO_KEYENTRYSIZE 22
595#define MISCFIFO_SYNINFO_IDX 10
596#define MISCFIFO_SYNDATA_IDX 11
597#define MISCFIFO_SYNDATASIZE 21
598
599// enabled mask value of irq
Joe Perchesc3504bf2013-03-18 10:44:55 -0700600#define IMR_MASK_VALUE (IMR_SOFTTIMER1 | \
601 IMR_RXDMA1 | \
602 IMR_RXNOBUF | \
603 IMR_MIBNEARFULL | \
604 IMR_SOFTINT | \
605 IMR_FETALERR | \
606 IMR_WATCHDOG | \
607 IMR_SOFTTIMER | \
608 IMR_GPIO | \
609 IMR_TBTT | \
610 IMR_RXDMA0 | \
611 IMR_BNTX | \
612 IMR_AC0DMA | \
613 IMR_TXDMA0)
Forest Bond5449c682009-04-25 10:30:44 -0400614
615// max time out delay time
616#define W_MAX_TIMEOUT 0xFFF0U //
617
618// wait time within loop
619#define CB_DELAY_LOOP_WAIT 10 // 10ms
620
621//
622// revision id
623//
624#define REV_ID_VT3253_A0 0x00
625#define REV_ID_VT3253_A1 0x01
626#define REV_ID_VT3253_B0 0x08
627#define REV_ID_VT3253_B1 0x09
628
629/*--------------------- Export Types ------------------------------*/
630
631/*--------------------- Export Macros ------------------------------*/
632
Joe Perchesc3504bf2013-03-18 10:44:55 -0700633#define MACvRegBitsOn(dwIoBase, byRegOfs, byBits) \
Joe Perchesbda2a442013-03-18 20:55:40 -0700634do { \
635 unsigned char byData; \
636 VNSvInPortB(dwIoBase + byRegOfs, &byData); \
637 VNSvOutPortB(dwIoBase + byRegOfs, byData | (byBits)); \
638} while (0)
Forest Bond5449c682009-04-25 10:30:44 -0400639
Joe Perchesc3504bf2013-03-18 10:44:55 -0700640#define MACvWordRegBitsOn(dwIoBase, byRegOfs, wBits) \
Joe Perchesbda2a442013-03-18 20:55:40 -0700641do { \
642 unsigned short wData; \
643 VNSvInPortW(dwIoBase + byRegOfs, &wData); \
644 VNSvOutPortW(dwIoBase + byRegOfs, wData | (wBits)); \
645} while (0)
Forest Bond5449c682009-04-25 10:30:44 -0400646
Joe Perchesc3504bf2013-03-18 10:44:55 -0700647#define MACvDWordRegBitsOn(dwIoBase, byRegOfs, dwBits) \
Joe Perchesbda2a442013-03-18 20:55:40 -0700648do { \
649 unsigned long dwData; \
650 VNSvInPortD(dwIoBase + byRegOfs, &dwData); \
651 VNSvOutPortD(dwIoBase + byRegOfs, dwData | (dwBits)); \
652} while (0)
Forest Bond5449c682009-04-25 10:30:44 -0400653
Joe Perchesc3504bf2013-03-18 10:44:55 -0700654#define MACvRegBitsOnEx(dwIoBase, byRegOfs, byMask, byBits) \
Joe Perchesbda2a442013-03-18 20:55:40 -0700655do { \
656 unsigned char byData; \
657 VNSvInPortB(dwIoBase + byRegOfs, &byData); \
658 byData &= byMask; \
659 VNSvOutPortB(dwIoBase + byRegOfs, byData | (byBits)); \
660} while (0)
Forest Bond5449c682009-04-25 10:30:44 -0400661
Joe Perchesc3504bf2013-03-18 10:44:55 -0700662#define MACvRegBitsOff(dwIoBase, byRegOfs, byBits) \
Joe Perchesbda2a442013-03-18 20:55:40 -0700663do { \
664 unsigned char byData; \
665 VNSvInPortB(dwIoBase + byRegOfs, &byData); \
666 VNSvOutPortB(dwIoBase + byRegOfs, byData & ~(byBits)); \
667} while (0)
Forest Bond5449c682009-04-25 10:30:44 -0400668
Joe Perchesc3504bf2013-03-18 10:44:55 -0700669#define MACvWordRegBitsOff(dwIoBase, byRegOfs, wBits) \
Joe Perchesbda2a442013-03-18 20:55:40 -0700670do { \
671 unsigned short wData; \
672 VNSvInPortW(dwIoBase + byRegOfs, &wData); \
673 VNSvOutPortW(dwIoBase + byRegOfs, wData & ~(wBits)); \
674} while (0)
Forest Bond5449c682009-04-25 10:30:44 -0400675
Joe Perchesc3504bf2013-03-18 10:44:55 -0700676#define MACvDWordRegBitsOff(dwIoBase, byRegOfs, dwBits) \
Joe Perchesbda2a442013-03-18 20:55:40 -0700677do { \
678 unsigned long dwData; \
679 VNSvInPortD(dwIoBase + byRegOfs, &dwData); \
680 VNSvOutPortD(dwIoBase + byRegOfs, dwData & ~(dwBits)); \
681} while (0)
Forest Bond5449c682009-04-25 10:30:44 -0400682
Joe Perchesc3504bf2013-03-18 10:44:55 -0700683#define MACvGetCurrRx0DescAddr(dwIoBase, pdwCurrDescAddr) \
Joe Perchesbda2a442013-03-18 20:55:40 -0700684 VNSvInPortD(dwIoBase + MAC_REG_RXDMAPTR0, \
685 (unsigned long *)pdwCurrDescAddr)
Forest Bond5449c682009-04-25 10:30:44 -0400686
Joe Perchesc3504bf2013-03-18 10:44:55 -0700687#define MACvGetCurrRx1DescAddr(dwIoBase, pdwCurrDescAddr) \
Joe Perchesbda2a442013-03-18 20:55:40 -0700688 VNSvInPortD(dwIoBase + MAC_REG_RXDMAPTR1, \
689 (unsigned long *)pdwCurrDescAddr)
Forest Bond5449c682009-04-25 10:30:44 -0400690
Joe Perchesc3504bf2013-03-18 10:44:55 -0700691#define MACvGetCurrTx0DescAddr(dwIoBase, pdwCurrDescAddr) \
Joe Perchesbda2a442013-03-18 20:55:40 -0700692 VNSvInPortD(dwIoBase + MAC_REG_TXDMAPTR0, \
693 (unsigned long *)pdwCurrDescAddr)
Forest Bond5449c682009-04-25 10:30:44 -0400694
Joe Perchesc3504bf2013-03-18 10:44:55 -0700695#define MACvGetCurrAC0DescAddr(dwIoBase, pdwCurrDescAddr) \
Joe Perchesbda2a442013-03-18 20:55:40 -0700696 VNSvInPortD(dwIoBase + MAC_REG_AC0DMAPTR, \
697 (unsigned long *)pdwCurrDescAddr)
Forest Bond5449c682009-04-25 10:30:44 -0400698
Joe Perchesc3504bf2013-03-18 10:44:55 -0700699#define MACvGetCurrSyncDescAddr(dwIoBase, pdwCurrDescAddr) \
Joe Perchesbda2a442013-03-18 20:55:40 -0700700 VNSvInPortD(dwIoBase + MAC_REG_SYNCDMAPTR, \
701 (unsigned long *)pdwCurrDescAddr)
Forest Bond5449c682009-04-25 10:30:44 -0400702
Joe Perchesc3504bf2013-03-18 10:44:55 -0700703#define MACvGetCurrATIMDescAddr(dwIoBase, pdwCurrDescAddr) \
Joe Perchesbda2a442013-03-18 20:55:40 -0700704 VNSvInPortD(dwIoBase + MAC_REG_ATIMDMAPTR, \
705 (unsigned long *)pdwCurrDescAddr)
Forest Bond5449c682009-04-25 10:30:44 -0400706
707// set the chip with current BCN tx descriptor address
Joe Perchesc3504bf2013-03-18 10:44:55 -0700708#define MACvSetCurrBCNTxDescAddr(dwIoBase, dwCurrDescAddr) \
Joe Perchesbda2a442013-03-18 20:55:40 -0700709 VNSvOutPortD(dwIoBase + MAC_REG_BCNDMAPTR, \
710 dwCurrDescAddr)
Forest Bond5449c682009-04-25 10:30:44 -0400711
712// set the chip with current BCN length
Joe Perchesc3504bf2013-03-18 10:44:55 -0700713#define MACvSetCurrBCNLength(dwIoBase, wCurrBCNLength) \
Joe Perchesbda2a442013-03-18 20:55:40 -0700714 VNSvOutPortW(dwIoBase + MAC_REG_BCNDMACTL+2, \
715 wCurrBCNLength)
Forest Bond5449c682009-04-25 10:30:44 -0400716
Joe Perchesc3504bf2013-03-18 10:44:55 -0700717#define MACvReadBSSIDAddress(dwIoBase, pbyEtherAddr) \
Joe Perchesbda2a442013-03-18 20:55:40 -0700718do { \
719 VNSvOutPortB(dwIoBase + MAC_REG_PAGE1SEL, 1); \
720 VNSvInPortB(dwIoBase + MAC_REG_BSSID0, \
721 (unsigned char *)pbyEtherAddr); \
722 VNSvInPortB(dwIoBase + MAC_REG_BSSID0 + 1, \
723 pbyEtherAddr + 1); \
724 VNSvInPortB(dwIoBase + MAC_REG_BSSID0 + 2, \
725 pbyEtherAddr + 2); \
726 VNSvInPortB(dwIoBase + MAC_REG_BSSID0 + 3, \
727 pbyEtherAddr + 3); \
728 VNSvInPortB(dwIoBase + MAC_REG_BSSID0 + 4, \
729 pbyEtherAddr + 4); \
730 VNSvInPortB(dwIoBase + MAC_REG_BSSID0 + 5, \
731 pbyEtherAddr + 5); \
732 VNSvOutPortB(dwIoBase + MAC_REG_PAGE1SEL, 0); \
733} while (0)
Forest Bond5449c682009-04-25 10:30:44 -0400734
Joe Perchesc3504bf2013-03-18 10:44:55 -0700735#define MACvWriteBSSIDAddress(dwIoBase, pbyEtherAddr) \
Joe Perchesbda2a442013-03-18 20:55:40 -0700736do { \
737 VNSvOutPortB(dwIoBase + MAC_REG_PAGE1SEL, 1); \
738 VNSvOutPortB(dwIoBase + MAC_REG_BSSID0, \
739 *(pbyEtherAddr)); \
740 VNSvOutPortB(dwIoBase + MAC_REG_BSSID0 + 1, \
741 *(pbyEtherAddr + 1)); \
742 VNSvOutPortB(dwIoBase + MAC_REG_BSSID0 + 2, \
743 *(pbyEtherAddr + 2)); \
744 VNSvOutPortB(dwIoBase + MAC_REG_BSSID0 + 3, \
745 *(pbyEtherAddr + 3)); \
746 VNSvOutPortB(dwIoBase + MAC_REG_BSSID0 + 4, \
747 *(pbyEtherAddr + 4)); \
748 VNSvOutPortB(dwIoBase + MAC_REG_BSSID0 + 5, \
749 *(pbyEtherAddr + 5)); \
750 VNSvOutPortB(dwIoBase + MAC_REG_PAGE1SEL, 0); \
751} while (0)
Forest Bond5449c682009-04-25 10:30:44 -0400752
Joe Perchesc3504bf2013-03-18 10:44:55 -0700753#define MACvReadEtherAddress(dwIoBase, pbyEtherAddr) \
Joe Perchesbda2a442013-03-18 20:55:40 -0700754do { \
755 VNSvOutPortB(dwIoBase + MAC_REG_PAGE1SEL, 1); \
756 VNSvInPortB(dwIoBase + MAC_REG_PAR0, \
757 (unsigned char *)pbyEtherAddr); \
758 VNSvInPortB(dwIoBase + MAC_REG_PAR0 + 1, \
759 pbyEtherAddr + 1); \
760 VNSvInPortB(dwIoBase + MAC_REG_PAR0 + 2, \
761 pbyEtherAddr + 2); \
762 VNSvInPortB(dwIoBase + MAC_REG_PAR0 + 3, \
763 pbyEtherAddr + 3); \
764 VNSvInPortB(dwIoBase + MAC_REG_PAR0 + 4, \
765 pbyEtherAddr + 4); \
766 VNSvInPortB(dwIoBase + MAC_REG_PAR0 + 5, \
767 pbyEtherAddr + 5); \
768 VNSvOutPortB(dwIoBase + MAC_REG_PAGE1SEL, 0); \
769} while (0)
Forest Bond5449c682009-04-25 10:30:44 -0400770
Joe Perchesc3504bf2013-03-18 10:44:55 -0700771#define MACvWriteEtherAddress(dwIoBase, pbyEtherAddr) \
Joe Perchesbda2a442013-03-18 20:55:40 -0700772do { \
773 VNSvOutPortB(dwIoBase + MAC_REG_PAGE1SEL, 1); \
774 VNSvOutPortB(dwIoBase + MAC_REG_PAR0, \
775 *pbyEtherAddr); \
776 VNSvOutPortB(dwIoBase + MAC_REG_PAR0 + 1, \
777 *(pbyEtherAddr + 1)); \
778 VNSvOutPortB(dwIoBase + MAC_REG_PAR0 + 2, \
779 *(pbyEtherAddr + 2)); \
780 VNSvOutPortB(dwIoBase + MAC_REG_PAR0 + 3, \
781 *(pbyEtherAddr + 3)); \
782 VNSvOutPortB(dwIoBase + MAC_REG_PAR0 + 4, \
783 *(pbyEtherAddr + 4)); \
784 VNSvOutPortB(dwIoBase + MAC_REG_PAR0 + 5, \
785 *(pbyEtherAddr + 5)); \
786 VNSvOutPortB(dwIoBase + MAC_REG_PAGE1SEL, 0); \
787} while (0)
Forest Bond5449c682009-04-25 10:30:44 -0400788
Joe Perchesc3504bf2013-03-18 10:44:55 -0700789#define MACvClearISR(dwIoBase) \
Joe Perchesbda2a442013-03-18 20:55:40 -0700790 VNSvOutPortD(dwIoBase + MAC_REG_ISR, IMR_MASK_VALUE)
Forest Bond5449c682009-04-25 10:30:44 -0400791
Joe Perchesc3504bf2013-03-18 10:44:55 -0700792#define MACvStart(dwIoBase) \
Joe Perchesbda2a442013-03-18 20:55:40 -0700793 VNSvOutPortB(dwIoBase + MAC_REG_HOSTCR, \
794 (HOSTCR_MACEN | HOSTCR_RXON | HOSTCR_TXON))
Forest Bond5449c682009-04-25 10:30:44 -0400795
Joe Perchesc3504bf2013-03-18 10:44:55 -0700796#define MACvRx0PerPktMode(dwIoBase) \
Joe Perchesbda2a442013-03-18 20:55:40 -0700797 VNSvOutPortD(dwIoBase + MAC_REG_RXDMACTL0, RX_PERPKT)
Forest Bond5449c682009-04-25 10:30:44 -0400798
Joe Perchesc3504bf2013-03-18 10:44:55 -0700799#define MACvRx0BufferFillMode(dwIoBase) \
Joe Perchesbda2a442013-03-18 20:55:40 -0700800 VNSvOutPortD(dwIoBase + MAC_REG_RXDMACTL0, RX_PERPKTCLR)
Forest Bond5449c682009-04-25 10:30:44 -0400801
Joe Perchesc3504bf2013-03-18 10:44:55 -0700802#define MACvRx1PerPktMode(dwIoBase) \
Joe Perchesbda2a442013-03-18 20:55:40 -0700803 VNSvOutPortD(dwIoBase + MAC_REG_RXDMACTL1, RX_PERPKT)
Forest Bond5449c682009-04-25 10:30:44 -0400804
Joe Perchesc3504bf2013-03-18 10:44:55 -0700805#define MACvRx1BufferFillMode(dwIoBase) \
Joe Perchesbda2a442013-03-18 20:55:40 -0700806 VNSvOutPortD(dwIoBase + MAC_REG_RXDMACTL1, RX_PERPKTCLR)
Forest Bond5449c682009-04-25 10:30:44 -0400807
Joe Perchesc3504bf2013-03-18 10:44:55 -0700808#define MACvRxOn(dwIoBase) \
Joe Perchesbda2a442013-03-18 20:55:40 -0700809 MACvRegBitsOn(dwIoBase, MAC_REG_HOSTCR, HOSTCR_RXON)
Forest Bond5449c682009-04-25 10:30:44 -0400810
Joe Perchesc3504bf2013-03-18 10:44:55 -0700811#define MACvReceive0(dwIoBase) \
Joe Perchesbda2a442013-03-18 20:55:40 -0700812do { \
813 unsigned long dwData; \
814 VNSvInPortD(dwIoBase + MAC_REG_RXDMACTL0, &dwData); \
815 if (dwData & DMACTL_RUN) \
816 VNSvOutPortD(dwIoBase + MAC_REG_RXDMACTL0, DMACTL_WAKE); \
817 else \
818 VNSvOutPortD(dwIoBase + MAC_REG_RXDMACTL0, DMACTL_RUN); \
819} while (0)
Forest Bond5449c682009-04-25 10:30:44 -0400820
Joe Perchesc3504bf2013-03-18 10:44:55 -0700821#define MACvReceive1(dwIoBase) \
Joe Perchesbda2a442013-03-18 20:55:40 -0700822do { \
823 unsigned long dwData; \
824 VNSvInPortD(dwIoBase + MAC_REG_RXDMACTL1, &dwData); \
825 if (dwData & DMACTL_RUN) \
826 VNSvOutPortD(dwIoBase + MAC_REG_RXDMACTL1, DMACTL_WAKE); \
827 else \
828 VNSvOutPortD(dwIoBase + MAC_REG_RXDMACTL1, DMACTL_RUN); \
829} while (0)
Forest Bond5449c682009-04-25 10:30:44 -0400830
Joe Perchesc3504bf2013-03-18 10:44:55 -0700831#define MACvTxOn(dwIoBase) \
Joe Perchesbda2a442013-03-18 20:55:40 -0700832 MACvRegBitsOn(dwIoBase, MAC_REG_HOSTCR, HOSTCR_TXON)
Forest Bond5449c682009-04-25 10:30:44 -0400833
Joe Perchesc3504bf2013-03-18 10:44:55 -0700834#define MACvTransmit0(dwIoBase) \
Joe Perchesbda2a442013-03-18 20:55:40 -0700835do { \
836 unsigned long dwData; \
837 VNSvInPortD(dwIoBase + MAC_REG_TXDMACTL0, &dwData); \
838 if (dwData & DMACTL_RUN) \
839 VNSvOutPortD(dwIoBase + MAC_REG_TXDMACTL0, DMACTL_WAKE); \
840 else \
841 VNSvOutPortD(dwIoBase + MAC_REG_TXDMACTL0, DMACTL_RUN); \
842} while (0)
Forest Bond5449c682009-04-25 10:30:44 -0400843
Joe Perchesc3504bf2013-03-18 10:44:55 -0700844#define MACvTransmitAC0(dwIoBase) \
Joe Perchesbda2a442013-03-18 20:55:40 -0700845do { \
846 unsigned long dwData; \
847 VNSvInPortD(dwIoBase + MAC_REG_AC0DMACTL, &dwData); \
848 if (dwData & DMACTL_RUN) \
849 VNSvOutPortD(dwIoBase + MAC_REG_AC0DMACTL, DMACTL_WAKE); \
850 else \
851 VNSvOutPortD(dwIoBase + MAC_REG_AC0DMACTL, DMACTL_RUN); \
852} while (0)
Forest Bond5449c682009-04-25 10:30:44 -0400853
Joe Perchesc3504bf2013-03-18 10:44:55 -0700854#define MACvTransmitSYNC(dwIoBase) \
Joe Perchesbda2a442013-03-18 20:55:40 -0700855do { \
856 unsigned long dwData; \
857 VNSvInPortD(dwIoBase + MAC_REG_SYNCDMACTL, &dwData); \
858 if (dwData & DMACTL_RUN) \
859 VNSvOutPortD(dwIoBase + MAC_REG_SYNCDMACTL, DMACTL_WAKE); \
860 else \
861 VNSvOutPortD(dwIoBase + MAC_REG_SYNCDMACTL, DMACTL_RUN); \
862} while (0)
Forest Bond5449c682009-04-25 10:30:44 -0400863
Joe Perchesc3504bf2013-03-18 10:44:55 -0700864#define MACvTransmitATIM(dwIoBase) \
Joe Perchesbda2a442013-03-18 20:55:40 -0700865do { \
866 unsigned long dwData; \
867 VNSvInPortD(dwIoBase + MAC_REG_ATIMDMACTL, &dwData); \
868 if (dwData & DMACTL_RUN) \
869 VNSvOutPortD(dwIoBase + MAC_REG_ATIMDMACTL, DMACTL_WAKE); \
870 else \
871 VNSvOutPortD(dwIoBase + MAC_REG_ATIMDMACTL, DMACTL_RUN); \
872} while (0)
Forest Bond5449c682009-04-25 10:30:44 -0400873
Joe Perchesc3504bf2013-03-18 10:44:55 -0700874#define MACvTransmitBCN(dwIoBase) \
Joe Perchesbda2a442013-03-18 20:55:40 -0700875 VNSvOutPortB(dwIoBase + MAC_REG_BCNDMACTL, BEACON_READY)
Forest Bond5449c682009-04-25 10:30:44 -0400876
Joe Perchesc3504bf2013-03-18 10:44:55 -0700877#define MACvClearStckDS(dwIoBase) \
Joe Perchesbda2a442013-03-18 20:55:40 -0700878do { \
879 unsigned char byOrgValue; \
880 VNSvInPortB(dwIoBase + MAC_REG_STICKHW, &byOrgValue); \
881 byOrgValue = byOrgValue & 0xFC; \
882 VNSvOutPortB(dwIoBase + MAC_REG_STICKHW, byOrgValue); \
883} while (0)
Forest Bond5449c682009-04-25 10:30:44 -0400884
Joe Perchesc3504bf2013-03-18 10:44:55 -0700885#define MACvReadISR(dwIoBase, pdwValue) \
Joe Perchesbda2a442013-03-18 20:55:40 -0700886 VNSvInPortD(dwIoBase + MAC_REG_ISR, pdwValue)
Forest Bond5449c682009-04-25 10:30:44 -0400887
Joe Perchesc3504bf2013-03-18 10:44:55 -0700888#define MACvWriteISR(dwIoBase, dwValue) \
Joe Perchesbda2a442013-03-18 20:55:40 -0700889 VNSvOutPortD(dwIoBase + MAC_REG_ISR, dwValue)
Forest Bond5449c682009-04-25 10:30:44 -0400890
Joe Perchesc3504bf2013-03-18 10:44:55 -0700891#define MACvIntEnable(dwIoBase, dwMask) \
Joe Perchesbda2a442013-03-18 20:55:40 -0700892 VNSvOutPortD(dwIoBase + MAC_REG_IMR, dwMask)
Forest Bond5449c682009-04-25 10:30:44 -0400893
Joe Perchesc3504bf2013-03-18 10:44:55 -0700894#define MACvIntDisable(dwIoBase) \
Joe Perchesbda2a442013-03-18 20:55:40 -0700895 VNSvOutPortD(dwIoBase + MAC_REG_IMR, 0)
Forest Bond5449c682009-04-25 10:30:44 -0400896
Joe Perchesc3504bf2013-03-18 10:44:55 -0700897#define MACvSelectPage0(dwIoBase) \
Joe Perchesbda2a442013-03-18 20:55:40 -0700898 VNSvOutPortB(dwIoBase + MAC_REG_PAGE1SEL, 0)
899
Joe Perchesc3504bf2013-03-18 10:44:55 -0700900#define MACvSelectPage1(dwIoBase) \
Joe Perchesbda2a442013-03-18 20:55:40 -0700901 VNSvOutPortB(dwIoBase + MAC_REG_PAGE1SEL, 1)
Forest Bond5449c682009-04-25 10:30:44 -0400902
Joe Perchesc3504bf2013-03-18 10:44:55 -0700903#define MACvReadMIBCounter(dwIoBase, pdwCounter) \
Joe Perchesbda2a442013-03-18 20:55:40 -0700904 VNSvInPortD(dwIoBase + MAC_REG_MIBCNTR , pdwCounter)
Forest Bond5449c682009-04-25 10:30:44 -0400905
Joe Perchesc3504bf2013-03-18 10:44:55 -0700906#define MACvPwrEvntDisable(dwIoBase) \
Joe Perchesbda2a442013-03-18 20:55:40 -0700907 VNSvOutPortW(dwIoBase + MAC_REG_WAKEUPEN0, 0x0000)
Forest Bond5449c682009-04-25 10:30:44 -0400908
Joe Perchesc3504bf2013-03-18 10:44:55 -0700909#define MACvEnableProtectMD(dwIoBase) \
Joe Perchesbda2a442013-03-18 20:55:40 -0700910do { \
911 unsigned long dwOrgValue; \
912 VNSvInPortD(dwIoBase + MAC_REG_ENCFG , &dwOrgValue); \
913 dwOrgValue = dwOrgValue | EnCFG_ProtectMd; \
914 VNSvOutPortD(dwIoBase + MAC_REG_ENCFG, dwOrgValue); \
915} while (0)
Forest Bond5449c682009-04-25 10:30:44 -0400916
Joe Perchesc3504bf2013-03-18 10:44:55 -0700917#define MACvDisableProtectMD(dwIoBase) \
Joe Perchesbda2a442013-03-18 20:55:40 -0700918do { \
919 unsigned long dwOrgValue; \
920 VNSvInPortD(dwIoBase + MAC_REG_ENCFG , &dwOrgValue); \
921 dwOrgValue = dwOrgValue & ~EnCFG_ProtectMd; \
922 VNSvOutPortD(dwIoBase + MAC_REG_ENCFG, dwOrgValue); \
923} while (0)
Forest Bond5449c682009-04-25 10:30:44 -0400924
Joe Perchesc3504bf2013-03-18 10:44:55 -0700925#define MACvEnableBarkerPreambleMd(dwIoBase) \
Joe Perchesbda2a442013-03-18 20:55:40 -0700926do { \
927 unsigned long dwOrgValue; \
928 VNSvInPortD(dwIoBase + MAC_REG_ENCFG , &dwOrgValue); \
929 dwOrgValue = dwOrgValue | EnCFG_BarkerPream; \
930 VNSvOutPortD(dwIoBase + MAC_REG_ENCFG, dwOrgValue); \
931} while (0)
Forest Bond5449c682009-04-25 10:30:44 -0400932
Joe Perchesc3504bf2013-03-18 10:44:55 -0700933#define MACvDisableBarkerPreambleMd(dwIoBase) \
Joe Perchesbda2a442013-03-18 20:55:40 -0700934do { \
935 unsigned long dwOrgValue; \
936 VNSvInPortD(dwIoBase + MAC_REG_ENCFG , &dwOrgValue); \
937 dwOrgValue = dwOrgValue & ~EnCFG_BarkerPream; \
938 VNSvOutPortD(dwIoBase + MAC_REG_ENCFG, dwOrgValue); \
939} while (0)
Forest Bond5449c682009-04-25 10:30:44 -0400940
Joe Perchesc3504bf2013-03-18 10:44:55 -0700941#define MACvSetBBType(dwIoBase, byTyp) \
Joe Perchesbda2a442013-03-18 20:55:40 -0700942do { \
943 unsigned long dwOrgValue; \
944 VNSvInPortD(dwIoBase + MAC_REG_ENCFG , &dwOrgValue); \
945 dwOrgValue = dwOrgValue & ~EnCFG_BBType_MASK; \
946 dwOrgValue = dwOrgValue | (unsigned long)byTyp; \
947 VNSvOutPortD(dwIoBase + MAC_REG_ENCFG, dwOrgValue); \
948} while (0)
Forest Bond5449c682009-04-25 10:30:44 -0400949
Joe Perchesc3504bf2013-03-18 10:44:55 -0700950#define MACvReadATIMW(dwIoBase, pwCounter) \
Joe Perchesbda2a442013-03-18 20:55:40 -0700951 VNSvInPortW(dwIoBase + MAC_REG_AIDATIM, pwCounter)
Forest Bond5449c682009-04-25 10:30:44 -0400952
Joe Perchesc3504bf2013-03-18 10:44:55 -0700953#define MACvWriteATIMW(dwIoBase, wCounter) \
Joe Perchesbda2a442013-03-18 20:55:40 -0700954 VNSvOutPortW(dwIoBase + MAC_REG_AIDATIM, wCounter)
Forest Bond5449c682009-04-25 10:30:44 -0400955
Joe Perchesc3504bf2013-03-18 10:44:55 -0700956#define MACvWriteCRC16_128(dwIoBase, byRegOfs, wCRC) \
Joe Perchesbda2a442013-03-18 20:55:40 -0700957do { \
958 VNSvOutPortB(dwIoBase + MAC_REG_PAGE1SEL, 1); \
959 VNSvOutPortW(dwIoBase + byRegOfs, wCRC); \
960 VNSvOutPortB(dwIoBase + MAC_REG_PAGE1SEL, 0); \
961} while (0)
Forest Bond5449c682009-04-25 10:30:44 -0400962
Joe Perchesc3504bf2013-03-18 10:44:55 -0700963#define MACvGPIOIn(dwIoBase, pbyValue) \
Joe Perchesbda2a442013-03-18 20:55:40 -0700964 VNSvInPortB(dwIoBase + MAC_REG_GPIOCTL1, pbyValue)
Forest Bond5449c682009-04-25 10:30:44 -0400965
966#define MACvSetRFLE_LatchBase(dwIoBase) \
Joe Perchesbda2a442013-03-18 20:55:40 -0700967 MACvWordRegBitsOn(dwIoBase, MAC_REG_SOFTPWRCTL, SOFTPWRCTL_RFLEOPT)
Forest Bond5449c682009-04-25 10:30:44 -0400968
969/*--------------------- Export Classes ----------------------------*/
970
971/*--------------------- Export Variables --------------------------*/
972
973/*--------------------- Export Functions --------------------------*/
Forest Bond5449c682009-04-25 10:30:44 -0400974
Charles Clément2986db52010-06-24 11:02:26 -0700975extern unsigned short TxRate_iwconfig;//2008-5-8 <add> by chester
Charles Clément412b2d02010-06-22 08:54:42 -0700976void MACvReadAllRegs(unsigned long dwIoBase, unsigned char *pbyMacRegs);
Forest Bond5449c682009-04-25 10:30:44 -0400977
Charles Clément7b6a0012010-08-01 17:15:50 +0200978bool MACbIsRegBitsOn(unsigned long dwIoBase, unsigned char byRegOfs, unsigned char byTestBits);
979bool MACbIsRegBitsOff(unsigned long dwIoBase, unsigned char byRegOfs, unsigned char byTestBits);
Forest Bond5449c682009-04-25 10:30:44 -0400980
Charles Clément7b6a0012010-08-01 17:15:50 +0200981bool MACbIsIntDisable(unsigned long dwIoBase);
Forest Bond5449c682009-04-25 10:30:44 -0400982
Charles Clément3fc9b582010-06-24 11:02:27 -0700983unsigned char MACbyReadMultiAddr(unsigned long dwIoBase, unsigned int uByteIdx);
984void MACvWriteMultiAddr(unsigned long dwIoBase, unsigned int uByteIdx, unsigned char byData);
985void MACvSetMultiAddrByHash(unsigned long dwIoBase, unsigned char byHashIdx);
986void MACvResetMultiAddrByHash(unsigned long dwIoBase, unsigned char byHashIdx);
Forest Bond5449c682009-04-25 10:30:44 -0400987
Charles Clément3fc9b582010-06-24 11:02:27 -0700988void MACvSetRxThreshold(unsigned long dwIoBase, unsigned char byThreshold);
Charles Clément412b2d02010-06-22 08:54:42 -0700989void MACvGetRxThreshold(unsigned long dwIoBase, unsigned char *pbyThreshold);
Forest Bond5449c682009-04-25 10:30:44 -0400990
Charles Clément3fc9b582010-06-24 11:02:27 -0700991void MACvSetTxThreshold(unsigned long dwIoBase, unsigned char byThreshold);
Charles Clément412b2d02010-06-22 08:54:42 -0700992void MACvGetTxThreshold(unsigned long dwIoBase, unsigned char *pbyThreshold);
Forest Bond5449c682009-04-25 10:30:44 -0400993
Charles Clément3fc9b582010-06-24 11:02:27 -0700994void MACvSetDmaLength(unsigned long dwIoBase, unsigned char byDmaLength);
Charles Clément412b2d02010-06-22 08:54:42 -0700995void MACvGetDmaLength(unsigned long dwIoBase, unsigned char *pbyDmaLength);
Forest Bond5449c682009-04-25 10:30:44 -0400996
Charles Clément3fc9b582010-06-24 11:02:27 -0700997void MACvSetShortRetryLimit(unsigned long dwIoBase, unsigned char byRetryLimit);
Charles Clément412b2d02010-06-22 08:54:42 -0700998void MACvGetShortRetryLimit(unsigned long dwIoBase, unsigned char *pbyRetryLimit);
Forest Bond5449c682009-04-25 10:30:44 -0400999
Charles Clément3fc9b582010-06-24 11:02:27 -07001000void MACvSetLongRetryLimit(unsigned long dwIoBase, unsigned char byRetryLimit);
Charles Clément412b2d02010-06-22 08:54:42 -07001001void MACvGetLongRetryLimit(unsigned long dwIoBase, unsigned char *pbyRetryLimit);
Forest Bond5449c682009-04-25 10:30:44 -04001002
Charles Clément3fc9b582010-06-24 11:02:27 -07001003void MACvSetLoopbackMode(unsigned long dwIoBase, unsigned char byLoopbackMode);
Charles Clément7b6a0012010-08-01 17:15:50 +02001004bool MACbIsInLoopbackMode(unsigned long dwIoBase);
Forest Bond5449c682009-04-25 10:30:44 -04001005
Charles Clément2986db52010-06-24 11:02:26 -07001006void MACvSetPacketFilter(unsigned long dwIoBase, unsigned short wFilterType);
Forest Bond5449c682009-04-25 10:30:44 -04001007
Charles Clément412b2d02010-06-22 08:54:42 -07001008void MACvSaveContext(unsigned long dwIoBase, unsigned char *pbyCxtBuf);
1009void MACvRestoreContext(unsigned long dwIoBase, unsigned char *pbyCxtBuf);
Charles Clément7b6a0012010-08-01 17:15:50 +02001010bool MACbCompareContext(unsigned long dwIoBase, unsigned char *pbyCxtBuf);
Forest Bond5449c682009-04-25 10:30:44 -04001011
Charles Clément7b6a0012010-08-01 17:15:50 +02001012bool MACbSoftwareReset(unsigned long dwIoBase);
1013bool MACbSafeSoftwareReset(unsigned long dwIoBase);
1014bool MACbSafeRxOff(unsigned long dwIoBase);
1015bool MACbSafeTxOff(unsigned long dwIoBase);
1016bool MACbSafeStop(unsigned long dwIoBase);
1017bool MACbShutdown(unsigned long dwIoBase);
Charles Clément412b2d02010-06-22 08:54:42 -07001018void MACvInitialize(unsigned long dwIoBase);
Charles Clément0f4c60d2010-06-24 11:02:25 -07001019void MACvSetCurrRx0DescAddr(unsigned long dwIoBase, unsigned long dwCurrDescAddr);
1020void MACvSetCurrRx1DescAddr(unsigned long dwIoBase, unsigned long dwCurrDescAddr);
1021void MACvSetCurrTXDescAddr(int iTxType, unsigned long dwIoBase, unsigned long dwCurrDescAddr);
1022void MACvSetCurrTx0DescAddrEx(unsigned long dwIoBase, unsigned long dwCurrDescAddr);
1023void MACvSetCurrAC0DescAddrEx(unsigned long dwIoBase, unsigned long dwCurrDescAddr);
1024void MACvSetCurrSyncDescAddrEx(unsigned long dwIoBase, unsigned long dwCurrDescAddr);
1025void MACvSetCurrATIMDescAddrEx(unsigned long dwIoBase, unsigned long dwCurrDescAddr);
Charles Clément412b2d02010-06-22 08:54:42 -07001026void MACvTimer0MicroSDelay(unsigned long dwIoBase, unsigned int uDelay);
1027void MACvOneShotTimer0MicroSec(unsigned long dwIoBase, unsigned int uDelayTime);
1028void MACvOneShotTimer1MicroSec(unsigned long dwIoBase, unsigned int uDelayTime);
Forest Bond5449c682009-04-25 10:30:44 -04001029
Charles Clément2986db52010-06-24 11:02:26 -07001030void MACvSetMISCFifo(unsigned long dwIoBase, unsigned short wOffset, unsigned long dwData);
Forest Bond5449c682009-04-25 10:30:44 -04001031
Joe Perchesc3504bf2013-03-18 10:44:55 -07001032bool MACbTxDMAOff(unsigned long dwIoBase, unsigned int idx);
Forest Bond5449c682009-04-25 10:30:44 -04001033
Charles Clément412b2d02010-06-22 08:54:42 -07001034void MACvClearBusSusInd(unsigned long dwIoBase);
1035void MACvEnableBusSusEn(unsigned long dwIoBase);
Forest Bond5449c682009-04-25 10:30:44 -04001036
Charles Clément7b6a0012010-08-01 17:15:50 +02001037bool MACbFlushSYNCFifo(unsigned long dwIoBase);
1038bool MACbPSWakeup(unsigned long dwIoBase);
Forest Bond5449c682009-04-25 10:30:44 -04001039
Charles Clément2986db52010-06-24 11:02:26 -07001040void MACvSetKeyEntry(unsigned long dwIoBase, unsigned short wKeyCtl, unsigned int uEntryIdx,
Joe Perchesc3504bf2013-03-18 10:44:55 -07001041 unsigned int uKeyIdx, unsigned char *pbyAddr, unsigned long *pdwKey, unsigned char byLocalID);
Charles Clément412b2d02010-06-22 08:54:42 -07001042void MACvDisableKeyEntry(unsigned long dwIoBase, unsigned int uEntryIdx);
1043void MACvSetDefaultKeyEntry(unsigned long dwIoBase, unsigned int uKeyLen,
Joe Perchesc3504bf2013-03-18 10:44:55 -07001044 unsigned int uKeyIdx, unsigned long *pdwKey, unsigned char byLocalID);
Charles Clément3fc9b582010-06-24 11:02:27 -07001045//void MACvEnableDefaultKey(unsigned long dwIoBase, unsigned char byLocalID);
Charles Clément412b2d02010-06-22 08:54:42 -07001046void MACvDisableDefaultKey(unsigned long dwIoBase);
1047void MACvSetDefaultTKIPKeyEntry(unsigned long dwIoBase, unsigned int uKeyLen,
Joe Perchesc3504bf2013-03-18 10:44:55 -07001048 unsigned int uKeyIdx, unsigned long *pdwKey, unsigned char byLocalID);
Charles Clément3fc9b582010-06-24 11:02:27 -07001049void MACvSetDefaultKeyCtl(unsigned long dwIoBase, unsigned short wKeyCtl, unsigned int uEntryIdx, unsigned char byLocalID);
Forest Bond5449c682009-04-25 10:30:44 -04001050
Forest Bond5449c682009-04-25 10:30:44 -04001051#endif // __MAC_H__