blob: 758eeb2afd512a5e2d0e2928fdcbe3acf3f37145 [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 * File: desc.h
20 *
21 * Purpose:The header file of descriptor
22 *
23 * Revision History:
24 *
25 * Author: Tevin Chen
26 *
27 * Date: May 21, 1996
28 *
29 */
30
Forest Bond5449c682009-04-25 10:30:44 -040031#ifndef __DESC_H__
32#define __DESC_H__
33
34#include <linux/types.h>
35#include <linux/mm.h>
Malcolm Priestley52c41302014-08-30 22:25:39 +010036#include "linux/ieee80211.h"
Jim Lieb612822f2009-08-12 14:54:03 -070037
Igor Bezukh795a8f92014-07-25 19:05:31 +030038#define B_OWNED_BY_CHIP 1
39#define B_OWNED_BY_HOST 0
Forest Bond5449c682009-04-25 10:30:44 -040040
Veronika Kabatovab69c0bf2014-10-25 23:08:50 +020041/* Bits in the RSR register */
Igor Bezukh795a8f92014-07-25 19:05:31 +030042#define RSR_ADDRBROAD 0x80
43#define RSR_ADDRMULTI 0x40
44#define RSR_ADDRUNI 0x00
45#define RSR_IVLDTYP 0x20
Veronika Kabatovab69c0bf2014-10-25 23:08:50 +020046#define RSR_IVLDLEN 0x10 /* invalid len (> 2312 byte) */
Igor Bezukh795a8f92014-07-25 19:05:31 +030047#define RSR_BSSIDOK 0x08
48#define RSR_CRCOK 0x04
49#define RSR_BCNSSIDOK 0x02
50#define RSR_ADDROK 0x01
Forest Bond5449c682009-04-25 10:30:44 -040051
Veronika Kabatovab69c0bf2014-10-25 23:08:50 +020052/* Bits in the new RSR register */
Igor Bezukh795a8f92014-07-25 19:05:31 +030053#define NEWRSR_DECRYPTOK 0x10
54#define NEWRSR_CFPIND 0x08
55#define NEWRSR_HWUTSF 0x04
56#define NEWRSR_BCNHITAID 0x02
57#define NEWRSR_BCNHITAID0 0x01
Forest Bond5449c682009-04-25 10:30:44 -040058
Veronika Kabatovab69c0bf2014-10-25 23:08:50 +020059/* Bits in the TSR0 register */
Igor Bezukh795a8f92014-07-25 19:05:31 +030060#define TSR0_PWRSTS1_2 0xC0
61#define TSR0_PWRSTS7 0x20
62#define TSR0_NCR 0x1F
Forest Bond5449c682009-04-25 10:30:44 -040063
Veronika Kabatovab69c0bf2014-10-25 23:08:50 +020064/* Bits in the TSR1 register */
Igor Bezukh795a8f92014-07-25 19:05:31 +030065#define TSR1_TERR 0x80
66#define TSR1_PWRSTS4_6 0x70
67#define TSR1_RETRYTMO 0x08
68#define TSR1_TMO 0x04
69#define TSR1_PWRSTS3 0x02
70#define ACK_DATA 0x01
Forest Bond5449c682009-04-25 10:30:44 -040071
Veronika Kabatovab69c0bf2014-10-25 23:08:50 +020072/* Bits in the TCR register */
73#define EDMSDU 0x04 /* end of sdu */
74#define TCR_EDP 0x02 /* end of packet */
75#define TCR_STP 0x01 /* start of packet */
Forest Bond5449c682009-04-25 10:30:44 -040076
Veronika Kabatovab69c0bf2014-10-25 23:08:50 +020077/* max transmit or receive buffer size */
Igor Bezukh795a8f92014-07-25 19:05:31 +030078#define CB_MAX_BUF_SIZE 2900U
Veronika Kabatovab69c0bf2014-10-25 23:08:50 +020079 /* NOTE: must be multiple of 4 */
Igor Bezukh795a8f92014-07-25 19:05:31 +030080#define CB_MAX_TX_BUF_SIZE CB_MAX_BUF_SIZE
81#define CB_MAX_RX_BUF_SIZE_NORMAL CB_MAX_BUF_SIZE
Forest Bond5449c682009-04-25 10:30:44 -040082
Igor Bezukh795a8f92014-07-25 19:05:31 +030083#define CB_BEACON_BUF_SIZE 512U
Forest Bond5449c682009-04-25 10:30:44 -040084
Igor Bezukh795a8f92014-07-25 19:05:31 +030085#define CB_MAX_RX_DESC 128
86#define CB_MIN_RX_DESC 16
87#define CB_MAX_TX_DESC 64
88#define CB_MIN_TX_DESC 16
Forest Bond5449c682009-04-25 10:30:44 -040089
Igor Bezukh795a8f92014-07-25 19:05:31 +030090#define CB_MAX_RECEIVED_PACKETS 16
Veronika Kabatovab69c0bf2014-10-25 23:08:50 +020091 /*
92 * limit our receive routine to indicating
93 * this many at a time for 2 reasons:
94 * 1. driver flow control to protocol layer
95 * 2. limit the time used in ISR routine
96 */
Forest Bond5449c682009-04-25 10:30:44 -040097
Igor Bezukh795a8f92014-07-25 19:05:31 +030098#define CB_EXTRA_RD_NUM 32
99#define CB_RD_NUM 32
100#define CB_TD_NUM 32
Forest Bond5449c682009-04-25 10:30:44 -0400101
Veronika Kabatovab69c0bf2014-10-25 23:08:50 +0200102/*
103 * max number of physical segments in a single NDIS packet. Above this
104 * threshold, the packet is copied into a single physically contiguous buffer
105 */
Forest Bond5449c682009-04-25 10:30:44 -0400106#define CB_MAX_SEGMENT 4
107
108#define CB_MIN_MAP_REG_NUM 4
109#define CB_MAX_MAP_REG_NUM CB_MAX_TX_DESC
110
111#define CB_PROTOCOL_RESERVED_SECTION 16
112
Veronika Kabatovab69c0bf2014-10-25 23:08:50 +0200113/*
114 * if retrys excess 15 times , tx will abort, and if tx fifo underflow,
115 * tx will fail, we should try to resend it
116 */
Forest Bond5449c682009-04-25 10:30:44 -0400117#define CB_MAX_TX_ABORT_RETRY 3
118
Veronika Kabatovab69c0bf2014-10-25 23:08:50 +0200119/* WMAC definition FIFO Control */
Igor Bezukh795a8f92014-07-25 19:05:31 +0300120#define FIFOCTL_AUTO_FB_1 0x1000
121#define FIFOCTL_AUTO_FB_0 0x0800
122#define FIFOCTL_GRPACK 0x0400
123#define FIFOCTL_11GA 0x0300
124#define FIFOCTL_11GB 0x0200
125#define FIFOCTL_11B 0x0100
126#define FIFOCTL_11A 0x0000
127#define FIFOCTL_RTS 0x0080
128#define FIFOCTL_ISDMA0 0x0040
129#define FIFOCTL_GENINT 0x0020
130#define FIFOCTL_TMOEN 0x0010
131#define FIFOCTL_LRETRY 0x0008
132#define FIFOCTL_CRCDIS 0x0004
133#define FIFOCTL_NEEDACK 0x0002
134#define FIFOCTL_LHEAD 0x0001
Forest Bond5449c682009-04-25 10:30:44 -0400135
Veronika Kabatovab69c0bf2014-10-25 23:08:50 +0200136/* WMAC definition Frag Control */
Igor Bezukh795a8f92014-07-25 19:05:31 +0300137#define FRAGCTL_AES 0x0300
138#define FRAGCTL_TKIP 0x0200
139#define FRAGCTL_LEGACY 0x0100
140#define FRAGCTL_NONENCRYPT 0x0000
141#define FRAGCTL_ENDFRAG 0x0003
142#define FRAGCTL_MIDFRAG 0x0002
143#define FRAGCTL_STAFRAG 0x0001
144#define FRAGCTL_NONFRAG 0x0000
Forest Bond5449c682009-04-25 10:30:44 -0400145
Forest Bond5449c682009-04-25 10:30:44 -0400146#define TYPE_TXDMA0 0
147#define TYPE_AC0DMA 1
148#define TYPE_ATIMDMA 2
149#define TYPE_SYNCDMA 3
150#define TYPE_MAXTD 2
151
152#define TYPE_BEACONDMA 4
153
154#define TYPE_RXDMA0 0
155#define TYPE_RXDMA1 1
156#define TYPE_MAXRD 2
157
Veronika Kabatovab69c0bf2014-10-25 23:08:50 +0200158/* TD_INFO flags control bit */
159#define TD_FLAGS_NETIF_SKB 0x01 /* check if need release skb */
160#define TD_FLAGS_PRIV_SKB 0x02 /* check if called from private skb (hostap) */
161#define TD_FLAGS_PS_RETRY 0x04 /* check if PS STA frame re-transmit */
Forest Bond5449c682009-04-25 10:30:44 -0400162
Veronika Kabatovab69c0bf2014-10-25 23:08:50 +0200163/*
164 * ref_sk_buff is used for mapping the skb structure between pre-built
165 * driver-obj & running kernel. Since different kernel version (2.4x) may
166 * change skb structure, i.e. pre-built driver-obj may link to older skb that
167 * leads error.
168 */
Forest Bond5449c682009-04-25 10:30:44 -0400169
170typedef struct tagDEVICE_RD_INFO {
Joe Perches78a717d2013-03-18 10:44:44 -0700171 struct sk_buff *skb;
172 dma_addr_t skb_dma;
173 dma_addr_t curr_desc;
Forest Bond5449c682009-04-25 10:30:44 -0400174} DEVICE_RD_INFO, *PDEVICE_RD_INFO;
175
Forest Bond5449c682009-04-25 10:30:44 -0400176#ifdef __BIG_ENDIAN
177
178typedef struct tagRDES0 {
Joe Perches78a717d2013-03-18 10:44:44 -0700179 volatile unsigned short wResCount;
Forest Bond5449c682009-04-25 10:30:44 -0400180 union {
Charles Clémentc17ce8c2010-05-28 12:34:20 -0700181 volatile u16 f15Reserved;
Forest Bond5449c682009-04-25 10:30:44 -0400182 struct {
Joe Perches78a717d2013-03-18 10:44:44 -0700183 volatile u8 f8Reserved1;
Charles Clément737c3d72010-05-28 12:34:19 -0700184 volatile u8 f1Owner:1;
185 volatile u8 f7Reserved:7;
Forest Bond5449c682009-04-25 10:30:44 -0400186 } __attribute__ ((__packed__));
187 } __attribute__ ((__packed__));
188} __attribute__ ((__packed__))
189SRDES0, *PSRDES0;
190
191#else
192
193typedef struct tagRDES0 {
Joe Perches78a717d2013-03-18 10:44:44 -0700194 unsigned short wResCount;
195 unsigned short f15Reserved:15;
196 unsigned short f1Owner:1;
Forest Bond5449c682009-04-25 10:30:44 -0400197} __attribute__ ((__packed__))
198SRDES0;
199
Forest Bond5449c682009-04-25 10:30:44 -0400200#endif
201
202typedef struct tagRDES1 {
Joe Perches78a717d2013-03-18 10:44:44 -0700203 unsigned short wReqCount;
204 unsigned short wReserved;
Forest Bond5449c682009-04-25 10:30:44 -0400205} __attribute__ ((__packed__))
206SRDES1;
207
Veronika Kabatovab69c0bf2014-10-25 23:08:50 +0200208/* Rx descriptor*/
Forest Bond5449c682009-04-25 10:30:44 -0400209typedef struct tagSRxDesc {
Joe Perches78a717d2013-03-18 10:44:44 -0700210 volatile SRDES0 m_rd0RD0;
211 volatile SRDES1 m_rd1RD1;
212 volatile u32 buff_addr;
213 volatile u32 next_desc;
Malcolm Priestley829127b2014-03-06 22:44:21 +0000214 struct tagSRxDesc *next __aligned(8);
215 volatile PDEVICE_RD_INFO pRDInfo __aligned(8);
Forest Bond5449c682009-04-25 10:30:44 -0400216} __attribute__ ((__packed__))
Jim Lieba8848472009-08-12 14:54:07 -0700217SRxDesc, *PSRxDesc;
218typedef const SRxDesc *PCSRxDesc;
Forest Bond5449c682009-04-25 10:30:44 -0400219
220#ifdef __BIG_ENDIAN
221
Forest Bond5449c682009-04-25 10:30:44 -0400222typedef struct tagTDES0 {
Joe Perches78a717d2013-03-18 10:44:44 -0700223 volatile unsigned char byTSR0;
224 volatile unsigned char byTSR1;
Forest Bond5449c682009-04-25 10:30:44 -0400225 union {
Charles Clémentc17ce8c2010-05-28 12:34:20 -0700226 volatile u16 f15Txtime;
Forest Bond5449c682009-04-25 10:30:44 -0400227 struct {
Joe Perches78a717d2013-03-18 10:44:44 -0700228 volatile u8 f8Reserved1;
Charles Clément737c3d72010-05-28 12:34:19 -0700229 volatile u8 f1Owner:1;
230 volatile u8 f7Reserved:7;
Forest Bond5449c682009-04-25 10:30:44 -0400231 } __attribute__ ((__packed__));
232 } __attribute__ ((__packed__));
233} __attribute__ ((__packed__))
234STDES0, PSTDES0;
235
236#else
237
238typedef struct tagTDES0 {
Joe Perches78a717d2013-03-18 10:44:44 -0700239 volatile unsigned char byTSR0;
240 volatile unsigned char byTSR1;
241 volatile unsigned short f15Txtime:15;
242 volatile unsigned short f1Owner:1;
Forest Bond5449c682009-04-25 10:30:44 -0400243} __attribute__ ((__packed__))
244STDES0;
245
246#endif
247
Forest Bond5449c682009-04-25 10:30:44 -0400248typedef struct tagTDES1 {
Joe Perches78a717d2013-03-18 10:44:44 -0700249 volatile unsigned short wReqCount;
250 volatile unsigned char byTCR;
251 volatile unsigned char byReserved;
Forest Bond5449c682009-04-25 10:30:44 -0400252} __attribute__ ((__packed__))
253STDES1;
254
Joe Perches78a717d2013-03-18 10:44:44 -0700255typedef struct tagDEVICE_TD_INFO {
Malcolm Priestley01eec152014-10-29 17:43:38 +0000256 void *mic_hdr;
Joe Perches78a717d2013-03-18 10:44:44 -0700257 struct sk_buff *skb;
258 unsigned char *buf;
259 dma_addr_t skb_dma;
260 dma_addr_t buf_dma;
261 dma_addr_t curr_desc;
262 unsigned long dwReqCount;
263 unsigned long dwHeaderLength;
264 unsigned char byFlags;
Forest Bond5449c682009-04-25 10:30:44 -0400265} DEVICE_TD_INFO, *PDEVICE_TD_INFO;
266
Veronika Kabatovab69c0bf2014-10-25 23:08:50 +0200267/* transmit descriptor */
Forest Bond5449c682009-04-25 10:30:44 -0400268typedef struct tagSTxDesc {
Joe Perches78a717d2013-03-18 10:44:44 -0700269 volatile STDES0 m_td0TD0;
270 volatile STDES1 m_td1TD1;
271 volatile u32 buff_addr;
272 volatile u32 next_desc;
Malcolm Priestley829127b2014-03-06 22:44:21 +0000273 struct tagSTxDesc *next __aligned(8);
274 volatile PDEVICE_TD_INFO pTDInfo __aligned(8);
Forest Bond5449c682009-04-25 10:30:44 -0400275} __attribute__ ((__packed__))
Jim Lieba8848472009-08-12 14:54:07 -0700276STxDesc, *PSTxDesc;
277typedef const STxDesc *PCSTxDesc;
Forest Bond5449c682009-04-25 10:30:44 -0400278
Forest Bond5449c682009-04-25 10:30:44 -0400279typedef struct tagSTxSyncDesc {
Joe Perches78a717d2013-03-18 10:44:44 -0700280 volatile STDES0 m_td0TD0;
281 volatile STDES1 m_td1TD1;
Veronika Kabatovab69c0bf2014-10-25 23:08:50 +0200282 volatile u32 buff_addr; /* pointer to logical buffer */
283 volatile u32 next_desc; /* pointer to next logical descriptor */
Joe Perches78a717d2013-03-18 10:44:44 -0700284 volatile unsigned short m_wFIFOCtl;
285 volatile unsigned short m_wTimeStamp;
Malcolm Priestley829127b2014-03-06 22:44:21 +0000286 struct tagSTxSyncDesc *next __aligned(8);
287 volatile PDEVICE_TD_INFO pTDInfo __aligned(8);
Forest Bond5449c682009-04-25 10:30:44 -0400288} __attribute__ ((__packed__))
Jim Lieba8848472009-08-12 14:54:07 -0700289STxSyncDesc, *PSTxSyncDesc;
290typedef const STxSyncDesc *PCSTxSyncDesc;
Forest Bond5449c682009-04-25 10:30:44 -0400291
Veronika Kabatovab69c0bf2014-10-25 23:08:50 +0200292/* RsvTime buffer header */
Forest Bond5449c682009-04-25 10:30:44 -0400293typedef struct tagSRrvTime_atim {
Joe Perches78a717d2013-03-18 10:44:44 -0700294 unsigned short wCTSTxRrvTime_ba;
295 unsigned short wTxRrvTime_a;
296} __attribute__ ((__packed__))
Jim Lieba8848472009-08-12 14:54:07 -0700297SRrvTime_atim, *PSRrvTime_atim;
298typedef const SRrvTime_atim *PCSRrvTime_atim;
Forest Bond5449c682009-04-25 10:30:44 -0400299
Malcolm Priestleyedbae992014-08-20 22:30:27 +0100300/* Length, Service, and Signal fields of Phy for Tx */
301struct vnt_phy_field {
302 u8 signal;
303 u8 service;
304 __le16 len;
305} __packed;
306
Malcolm Priestley864a5a32014-08-20 22:30:30 +0100307union vnt_phy_field_swap {
308 struct vnt_phy_field field_read;
309 u16 swap[2];
310 u32 field_write;
311};
312
Veronika Kabatovab69c0bf2014-10-25 23:08:50 +0200313/* Tx FIFO header */
Forest Bond5449c682009-04-25 10:30:44 -0400314typedef struct tagSTxBufHead {
Joe Perches78a717d2013-03-18 10:44:44 -0700315 u32 adwTxKey[4];
316 unsigned short wFIFOCtl;
317 unsigned short wTimeStamp;
318 unsigned short wFragCtl;
319 unsigned char byTxPower;
320 unsigned char wReserved;
321} __attribute__ ((__packed__))
Jim Lieba8848472009-08-12 14:54:07 -0700322STxBufHead, *PSTxBufHead;
323typedef const STxBufHead *PCSTxBufHead;
Forest Bond5449c682009-04-25 10:30:44 -0400324
Forest Bond5449c682009-04-25 10:30:44 -0400325typedef struct tagSBEACONCtl {
Joe Perches78a717d2013-03-18 10:44:44 -0700326 u32 BufReady:1;
327 u32 TSF:15;
328 u32 BufLen:11;
329 u32 Reserved:5;
330} __attribute__ ((__packed__))
Forest Bond5449c682009-04-25 10:30:44 -0400331SBEACONCtl;
332
Forest Bond5449c682009-04-25 10:30:44 -0400333typedef struct tagSSecretKey {
Joe Perches78a717d2013-03-18 10:44:44 -0700334 u32 dwLowDword;
335 unsigned char byHighByte;
336} __attribute__ ((__packed__))
Forest Bond5449c682009-04-25 10:30:44 -0400337SSecretKey;
338
339typedef struct tagSKeyEntry {
Joe Perches78a717d2013-03-18 10:44:44 -0700340 unsigned char abyAddrHi[2];
341 unsigned short wKCTL;
342 unsigned char abyAddrLo[4];
343 u32 dwKey0[4];
344 u32 dwKey1[4];
345 u32 dwKey2[4];
346 u32 dwKey3[4];
347 u32 dwKey4[4];
348} __attribute__ ((__packed__))
Forest Bond5449c682009-04-25 10:30:44 -0400349SKeyEntry;
Forest Bond5449c682009-04-25 10:30:44 -0400350
Veronika Kabatovab69c0bf2014-10-25 23:08:50 +0200351#endif /* __DESC_H__ */