]> git.proxmox.com Git - mirror_ubuntu-eoan-kernel.git/blame - drivers/staging/vt6655/desc.h
Merge tag 'armsoc-cleanup' of git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc
[mirror_ubuntu-eoan-kernel.git] / drivers / staging / vt6655 / desc.h
CommitLineData
5449c685
FB
1/*
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
5449c685
FB
31#ifndef __DESC_H__
32#define __DESC_H__
33
34#include <linux/types.h>
35#include <linux/mm.h>
52c4130b 36#include "linux/ieee80211.h"
612822f5 37
795a8f9a
IB
38#define B_OWNED_BY_CHIP 1
39#define B_OWNED_BY_HOST 0
5449c685 40
b69c0bfd 41/* Bits in the RSR register */
795a8f9a
IB
42#define RSR_ADDRBROAD 0x80
43#define RSR_ADDRMULTI 0x40
44#define RSR_ADDRUNI 0x00
45#define RSR_IVLDTYP 0x20
b69c0bfd 46#define RSR_IVLDLEN 0x10 /* invalid len (> 2312 byte) */
795a8f9a
IB
47#define RSR_BSSIDOK 0x08
48#define RSR_CRCOK 0x04
49#define RSR_BCNSSIDOK 0x02
50#define RSR_ADDROK 0x01
5449c685 51
b69c0bfd 52/* Bits in the new RSR register */
795a8f9a
IB
53#define NEWRSR_DECRYPTOK 0x10
54#define NEWRSR_CFPIND 0x08
55#define NEWRSR_HWUTSF 0x04
56#define NEWRSR_BCNHITAID 0x02
57#define NEWRSR_BCNHITAID0 0x01
5449c685 58
b69c0bfd 59/* Bits in the TSR0 register */
795a8f9a
IB
60#define TSR0_PWRSTS1_2 0xC0
61#define TSR0_PWRSTS7 0x20
62#define TSR0_NCR 0x1F
5449c685 63
b69c0bfd 64/* Bits in the TSR1 register */
795a8f9a
IB
65#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
5449c685 71
b69c0bfd
VK
72/* 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 */
5449c685 76
b69c0bfd 77/* max transmit or receive buffer size */
795a8f9a 78#define CB_MAX_BUF_SIZE 2900U
b69c0bfd 79 /* NOTE: must be multiple of 4 */
795a8f9a
IB
80#define CB_MAX_TX_BUF_SIZE CB_MAX_BUF_SIZE
81#define CB_MAX_RX_BUF_SIZE_NORMAL CB_MAX_BUF_SIZE
5449c685 82
795a8f9a 83#define CB_BEACON_BUF_SIZE 512U
5449c685 84
795a8f9a
IB
85#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
5449c685 89
795a8f9a 90#define CB_MAX_RECEIVED_PACKETS 16
b69c0bfd
VK
91 /*
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 */
5449c685 97
795a8f9a
IB
98#define CB_EXTRA_RD_NUM 32
99#define CB_RD_NUM 32
100#define CB_TD_NUM 32
5449c685 101
b69c0bfd
VK
102/*
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 */
5449c685
FB
106#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
b69c0bfd
VK
113/*
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 */
5449c685
FB
117#define CB_MAX_TX_ABORT_RETRY 3
118
b69c0bfd 119/* WMAC definition FIFO Control */
795a8f9a
IB
120#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
5449c685 135
b69c0bfd 136/* WMAC definition Frag Control */
795a8f9a
IB
137#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
5449c685 145
5449c685
FB
146#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
b69c0bfd
VK
158/* 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 */
5449c685 162
b69c0bfd
VK
163/*
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 */
5449c685
FB
169
170typedef struct tagDEVICE_RD_INFO {
78a717d8
JP
171 struct sk_buff *skb;
172 dma_addr_t skb_dma;
5449c685
FB
173} DEVICE_RD_INFO, *PDEVICE_RD_INFO;
174
5449c685
FB
175#ifdef __BIG_ENDIAN
176
177typedef struct tagRDES0 {
7135d9a7 178 volatile __le16 wResCount;
5449c685 179 union {
c17ce8c2 180 volatile u16 f15Reserved;
5449c685 181 struct {
78a717d8 182 volatile u8 f8Reserved1;
737c3d70
CC
183 volatile u8 f1Owner:1;
184 volatile u8 f7Reserved:7;
5449c685
FB
185 } __attribute__ ((__packed__));
186 } __attribute__ ((__packed__));
187} __attribute__ ((__packed__))
188SRDES0, *PSRDES0;
189
190#else
191
192typedef struct tagRDES0 {
7135d9a7 193 __le16 wResCount;
78a717d8
JP
194 unsigned short f15Reserved:15;
195 unsigned short f1Owner:1;
5449c685
FB
196} __attribute__ ((__packed__))
197SRDES0;
198
5449c685
FB
199#endif
200
201typedef struct tagRDES1 {
7135d9a7 202 __le16 wReqCount;
78a717d8 203 unsigned short wReserved;
5449c685
FB
204} __attribute__ ((__packed__))
205SRDES1;
206
b69c0bfd 207/* Rx descriptor*/
5449c685 208typedef struct tagSRxDesc {
78a717d8
JP
209 volatile SRDES0 m_rd0RD0;
210 volatile SRDES1 m_rd1RD1;
f0fb87fb 211 volatile __le32 buff_addr;
f1e3e921 212 volatile __le32 next_desc;
829127b4
MP
213 struct tagSRxDesc *next __aligned(8);
214 volatile PDEVICE_RD_INFO pRDInfo __aligned(8);
5449c685 215} __attribute__ ((__packed__))
a884847a
JL
216SRxDesc, *PSRxDesc;
217typedef const SRxDesc *PCSRxDesc;
5449c685 218
5235ff6a
MP
219struct vnt_tdes0 {
220 volatile u8 tsr0;
221 volatile u8 tsr1;
5449c685 222#ifdef __BIG_ENDIAN
5449c685 223 union {
5235ff6a 224 volatile u16 f15_txtime;
5449c685 225 struct {
5235ff6a
MP
226 volatile u8 f8_reserved;
227 volatile u8 owner:1;
228 volatile u8 f7_reserved:7;
229 } __packed;
230 } __packed;
5449c685 231#else
5235ff6a
MP
232 volatile u16 f15_txtime:15;
233 volatile u16 owner:1;
5449c685 234#endif
5235ff6a 235} __packed;
5449c685 236
9cc8eac9
MP
237struct vnt_tdes1 {
238 volatile __le16 req_count;
239 volatile u8 tcr;
240 volatile u8 reserved;
241} __packed;
5449c685 242
54382859 243struct vnt_td_info {
01eec153 244 void *mic_hdr;
78a717d8
JP
245 struct sk_buff *skb;
246 unsigned char *buf;
54382859
MP
247 dma_addr_t buf_dma;
248 u16 req_count;
249 u8 flags;
250};
5449c685 251
b69c0bfd 252/* transmit descriptor */
e2357271 253struct vnt_tx_desc {
5235ff6a 254 volatile struct vnt_tdes0 td0;
9cc8eac9 255 volatile struct vnt_tdes1 td1;
e2357271
MP
256 volatile __le32 buff_addr;
257 volatile __le32 next_desc;
258 struct vnt_tx_desc *next __aligned(8);
54382859 259 struct vnt_td_info *td_info __aligned(8);
e2357271 260} __packed;
5449c685 261
edbae997
MP
262/* Length, Service, and Signal fields of Phy for Tx */
263struct vnt_phy_field {
264 u8 signal;
265 u8 service;
266 __le16 len;
267} __packed;
268
864a5a37
MP
269union vnt_phy_field_swap {
270 struct vnt_phy_field field_read;
271 u16 swap[2];
272 u32 field_write;
273};
274
b69c0bfd 275#endif /* __DESC_H__ */