blob: d90c8aa20c157924cadde2ef8f1bdad9bcab16ae [file] [log] [blame]
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08001/*
Vladimir Kondratiev02525a72014-08-06 10:31:51 +03002 * Copyright (c) 2012-2014 Qualcomm Atheros, Inc.
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -08003 *
4 * Permission to use, copy, modify, and/or distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice appear in all copies.
7 *
8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 */
16
17#ifndef WIL6210_TXRX_H
18#define WIL6210_TXRX_H
19
20#define BUF_SW_OWNED (1)
21#define BUF_HW_OWNED (0)
22
Vladimir Kondratievc44690a2014-12-23 09:47:11 +020023/* default size of MAC Tx/Rx buffers */
24#define TXRX_BUF_LEN_DEFAULT (2048)
Vladimir Kondratiev9a06bec2014-10-28 16:51:27 +020025
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -080026/* how many bytes to reserve for rtap header? */
27#define WIL6210_RTAP_SIZE (128)
28
29/* Tx/Rx path */
Vladimir Kondratiev68ada712013-05-12 14:43:37 +030030
Vladimir Kondratiev8d3b2f02014-12-23 09:47:22 +020031/* Common representation of physical address in Vring */
Vladimir Kondratiev68ada712013-05-12 14:43:37 +030032struct vring_dma_addr {
33 __le32 addr_low;
34 __le16 addr_high;
35} __packed;
36
37static inline dma_addr_t wil_desc_addr(struct vring_dma_addr *addr)
38{
39 return le32_to_cpu(addr->addr_low) |
40 ((u64)le16_to_cpu(addr->addr_high) << 32);
41}
42
43static inline void wil_desc_addr_set(struct vring_dma_addr *addr,
44 dma_addr_t pa)
45{
46 addr->addr_low = cpu_to_le32(lower_32_bits(pa));
47 addr->addr_high = cpu_to_le16((u16)upper_32_bits(pa));
48}
49
Vladimir Kondratiev8d3b2f02014-12-23 09:47:22 +020050/* Tx descriptor - MAC part
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -080051 * [dword 0]
52 * bit 0.. 9 : lifetime_expiry_value:10
Vladimir Kondratiev8d3b2f02014-12-23 09:47:22 +020053 * bit 10 : interrupt_en:1
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -080054 * bit 11 : status_en:1
55 * bit 12..13 : txss_override:2
56 * bit 14 : timestamp_insertion:1
57 * bit 15 : duration_preserve:1
58 * bit 16..21 : reserved0:6
59 * bit 22..26 : mcs_index:5
60 * bit 27 : mcs_en:1
Vladimir Kondratiev8d3b2f02014-12-23 09:47:22 +020061 * bit 28..30 : reserved1:3
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -080062 * bit 31 : sn_preserved:1
63 * [dword 1]
64 * bit 0.. 3 : pkt_mode:4
65 * bit 4 : pkt_mode_en:1
Vladimir Kondratiev8d3b2f02014-12-23 09:47:22 +020066 * bit 5..14 : reserved0:10
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -080067 * bit 15 : ack_policy_en:1
68 * bit 16..19 : dst_index:4
69 * bit 20 : dst_index_en:1
70 * bit 21..22 : ack_policy:2
71 * bit 23 : lifetime_en:1
72 * bit 24..30 : max_retry:7
73 * bit 31 : max_retry_en:1
74 * [dword 2]
75 * bit 0.. 7 : num_of_descriptors:8
76 * bit 8..17 : reserved:10
Vladimir Kondratiev8d3b2f02014-12-23 09:47:22 +020077 * bit 18..19 : l2_translation_type:2 00 - bypass, 01 - 802.3, 10 - 802.11
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -080078 * bit 20 : snap_hdr_insertion_en:1
79 * bit 21 : vlan_removal_en:1
80 * bit 22..31 : reserved0:10
81 * [dword 3]
82 * bit 0.. 31: ucode_cmd:32
83 */
84struct vring_tx_mac {
85 u32 d[3];
86 u32 ucode_cmd;
87} __packed;
88
89/* TX MAC Dword 0 */
90#define MAC_CFG_DESC_TX_0_LIFETIME_EXPIRY_VALUE_POS 0
91#define MAC_CFG_DESC_TX_0_LIFETIME_EXPIRY_VALUE_LEN 10
92#define MAC_CFG_DESC_TX_0_LIFETIME_EXPIRY_VALUE_MSK 0x3FF
93
94#define MAC_CFG_DESC_TX_0_INTERRUP_EN_POS 10
95#define MAC_CFG_DESC_TX_0_INTERRUP_EN_LEN 1
96#define MAC_CFG_DESC_TX_0_INTERRUP_EN_MSK 0x400
97
98#define MAC_CFG_DESC_TX_0_STATUS_EN_POS 11
99#define MAC_CFG_DESC_TX_0_STATUS_EN_LEN 1
100#define MAC_CFG_DESC_TX_0_STATUS_EN_MSK 0x800
101
102#define MAC_CFG_DESC_TX_0_TXSS_OVERRIDE_POS 12
103#define MAC_CFG_DESC_TX_0_TXSS_OVERRIDE_LEN 2
104#define MAC_CFG_DESC_TX_0_TXSS_OVERRIDE_MSK 0x3000
105
106#define MAC_CFG_DESC_TX_0_TIMESTAMP_INSERTION_POS 14
107#define MAC_CFG_DESC_TX_0_TIMESTAMP_INSERTION_LEN 1
108#define MAC_CFG_DESC_TX_0_TIMESTAMP_INSERTION_MSK 0x4000
109
110#define MAC_CFG_DESC_TX_0_DURATION_PRESERVE_POS 15
111#define MAC_CFG_DESC_TX_0_DURATION_PRESERVE_LEN 1
112#define MAC_CFG_DESC_TX_0_DURATION_PRESERVE_MSK 0x8000
113
114#define MAC_CFG_DESC_TX_0_MCS_INDEX_POS 22
115#define MAC_CFG_DESC_TX_0_MCS_INDEX_LEN 5
116#define MAC_CFG_DESC_TX_0_MCS_INDEX_MSK 0x7C00000
117
118#define MAC_CFG_DESC_TX_0_MCS_EN_POS 27
119#define MAC_CFG_DESC_TX_0_MCS_EN_LEN 1
120#define MAC_CFG_DESC_TX_0_MCS_EN_MSK 0x8000000
121
122#define MAC_CFG_DESC_TX_0_SN_PRESERVED_POS 31
123#define MAC_CFG_DESC_TX_0_SN_PRESERVED_LEN 1
124#define MAC_CFG_DESC_TX_0_SN_PRESERVED_MSK 0x80000000
125
126/* TX MAC Dword 1 */
127#define MAC_CFG_DESC_TX_1_PKT_MODE_POS 0
128#define MAC_CFG_DESC_TX_1_PKT_MODE_LEN 4
129#define MAC_CFG_DESC_TX_1_PKT_MODE_MSK 0xF
130
131#define MAC_CFG_DESC_TX_1_PKT_MODE_EN_POS 4
132#define MAC_CFG_DESC_TX_1_PKT_MODE_EN_LEN 1
133#define MAC_CFG_DESC_TX_1_PKT_MODE_EN_MSK 0x10
134
135#define MAC_CFG_DESC_TX_1_ACK_POLICY_EN_POS 15
136#define MAC_CFG_DESC_TX_1_ACK_POLICY_EN_LEN 1
137#define MAC_CFG_DESC_TX_1_ACK_POLICY_EN_MSK 0x8000
138
139#define MAC_CFG_DESC_TX_1_DST_INDEX_POS 16
140#define MAC_CFG_DESC_TX_1_DST_INDEX_LEN 4
141#define MAC_CFG_DESC_TX_1_DST_INDEX_MSK 0xF0000
142
143#define MAC_CFG_DESC_TX_1_DST_INDEX_EN_POS 20
144#define MAC_CFG_DESC_TX_1_DST_INDEX_EN_LEN 1
145#define MAC_CFG_DESC_TX_1_DST_INDEX_EN_MSK 0x100000
146
147#define MAC_CFG_DESC_TX_1_ACK_POLICY_POS 21
148#define MAC_CFG_DESC_TX_1_ACK_POLICY_LEN 2
149#define MAC_CFG_DESC_TX_1_ACK_POLICY_MSK 0x600000
150
151#define MAC_CFG_DESC_TX_1_LIFETIME_EN_POS 23
152#define MAC_CFG_DESC_TX_1_LIFETIME_EN_LEN 1
153#define MAC_CFG_DESC_TX_1_LIFETIME_EN_MSK 0x800000
154
155#define MAC_CFG_DESC_TX_1_MAX_RETRY_POS 24
156#define MAC_CFG_DESC_TX_1_MAX_RETRY_LEN 7
157#define MAC_CFG_DESC_TX_1_MAX_RETRY_MSK 0x7F000000
158
159#define MAC_CFG_DESC_TX_1_MAX_RETRY_EN_POS 31
160#define MAC_CFG_DESC_TX_1_MAX_RETRY_EN_LEN 1
161#define MAC_CFG_DESC_TX_1_MAX_RETRY_EN_MSK 0x80000000
162
163/* TX MAC Dword 2 */
164#define MAC_CFG_DESC_TX_2_NUM_OF_DESCRIPTORS_POS 0
165#define MAC_CFG_DESC_TX_2_NUM_OF_DESCRIPTORS_LEN 8
166#define MAC_CFG_DESC_TX_2_NUM_OF_DESCRIPTORS_MSK 0xFF
167
168#define MAC_CFG_DESC_TX_2_RESERVED_POS 8
169#define MAC_CFG_DESC_TX_2_RESERVED_LEN 10
170#define MAC_CFG_DESC_TX_2_RESERVED_MSK 0x3FF00
171
172#define MAC_CFG_DESC_TX_2_L2_TRANSLATION_TYPE_POS 18
173#define MAC_CFG_DESC_TX_2_L2_TRANSLATION_TYPE_LEN 2
174#define MAC_CFG_DESC_TX_2_L2_TRANSLATION_TYPE_MSK 0xC0000
175
176#define MAC_CFG_DESC_TX_2_SNAP_HDR_INSERTION_EN_POS 20
177#define MAC_CFG_DESC_TX_2_SNAP_HDR_INSERTION_EN_LEN 1
178#define MAC_CFG_DESC_TX_2_SNAP_HDR_INSERTION_EN_MSK 0x100000
179
180#define MAC_CFG_DESC_TX_2_VLAN_REMOVAL_EN_POS 21
181#define MAC_CFG_DESC_TX_2_VLAN_REMOVAL_EN_LEN 1
182#define MAC_CFG_DESC_TX_2_VLAN_REMOVAL_EN_MSK 0x200000
183
184/* TX MAC Dword 3 */
185#define MAC_CFG_DESC_TX_3_UCODE_CMD_POS 0
186#define MAC_CFG_DESC_TX_3_UCODE_CMD_LEN 32
187#define MAC_CFG_DESC_TX_3_UCODE_CMD_MSK 0xFFFFFFFF
188
189/* TX DMA Dword 0 */
190#define DMA_CFG_DESC_TX_0_L4_LENGTH_POS 0
191#define DMA_CFG_DESC_TX_0_L4_LENGTH_LEN 8
192#define DMA_CFG_DESC_TX_0_L4_LENGTH_MSK 0xFF
193
194#define DMA_CFG_DESC_TX_0_CMD_EOP_POS 8
195#define DMA_CFG_DESC_TX_0_CMD_EOP_LEN 1
196#define DMA_CFG_DESC_TX_0_CMD_EOP_MSK 0x100
197
Kirshenbaum Erez668b2bb2013-06-23 12:59:35 +0300198#define DMA_CFG_DESC_TX_0_CMD_MARK_WB_POS 9
199#define DMA_CFG_DESC_TX_0_CMD_MARK_WB_LEN 1
200#define DMA_CFG_DESC_TX_0_CMD_MARK_WB_MSK 0x200
201
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800202#define DMA_CFG_DESC_TX_0_CMD_DMA_IT_POS 10
203#define DMA_CFG_DESC_TX_0_CMD_DMA_IT_LEN 1
204#define DMA_CFG_DESC_TX_0_CMD_DMA_IT_MSK 0x400
205
206#define DMA_CFG_DESC_TX_0_SEGMENT_BUF_DETAILS_POS 11
207#define DMA_CFG_DESC_TX_0_SEGMENT_BUF_DETAILS_LEN 2
208#define DMA_CFG_DESC_TX_0_SEGMENT_BUF_DETAILS_MSK 0x1800
209
210#define DMA_CFG_DESC_TX_0_TCP_SEG_EN_POS 13
211#define DMA_CFG_DESC_TX_0_TCP_SEG_EN_LEN 1
212#define DMA_CFG_DESC_TX_0_TCP_SEG_EN_MSK 0x2000
213
214#define DMA_CFG_DESC_TX_0_IPV4_CHECKSUM_EN_POS 14
215#define DMA_CFG_DESC_TX_0_IPV4_CHECKSUM_EN_LEN 1
216#define DMA_CFG_DESC_TX_0_IPV4_CHECKSUM_EN_MSK 0x4000
217
218#define DMA_CFG_DESC_TX_0_TCP_UDP_CHECKSUM_EN_POS 15
219#define DMA_CFG_DESC_TX_0_TCP_UDP_CHECKSUM_EN_LEN 1
220#define DMA_CFG_DESC_TX_0_TCP_UDP_CHECKSUM_EN_MSK 0x8000
221
222#define DMA_CFG_DESC_TX_0_QID_POS 16
223#define DMA_CFG_DESC_TX_0_QID_LEN 5
224#define DMA_CFG_DESC_TX_0_QID_MSK 0x1F0000
225
226#define DMA_CFG_DESC_TX_0_PSEUDO_HEADER_CALC_EN_POS 21
227#define DMA_CFG_DESC_TX_0_PSEUDO_HEADER_CALC_EN_LEN 1
228#define DMA_CFG_DESC_TX_0_PSEUDO_HEADER_CALC_EN_MSK 0x200000
229
230#define DMA_CFG_DESC_TX_0_L4_TYPE_POS 30
231#define DMA_CFG_DESC_TX_0_L4_TYPE_LEN 2
Kirshenbaum Erez504937d2013-07-21 11:34:37 +0300232#define DMA_CFG_DESC_TX_0_L4_TYPE_MSK 0xC0000000 /* L4 type: 0-UDP, 2-TCP */
233
Kirshenbaum Erez504937d2013-07-21 11:34:37 +0300234#define DMA_CFG_DESC_TX_OFFLOAD_CFG_MAC_LEN_POS 0
235#define DMA_CFG_DESC_TX_OFFLOAD_CFG_MAC_LEN_LEN 7
236#define DMA_CFG_DESC_TX_OFFLOAD_CFG_MAC_LEN_MSK 0x7F /* MAC hdr len */
237
238#define DMA_CFG_DESC_TX_OFFLOAD_CFG_L3T_IPV4_POS 7
239#define DMA_CFG_DESC_TX_OFFLOAD_CFG_L3T_IPV4_LEN 1
240#define DMA_CFG_DESC_TX_OFFLOAD_CFG_L3T_IPV4_MSK 0x80 /* 1-IPv4, 0-IPv6 */
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800241
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800242#define TX_DMA_STATUS_DU BIT(0)
243
Vladimir Kondratiev8d3b2f02014-12-23 09:47:22 +0200244/* Tx descriptor - DMA part
245 * [dword 0]
246 * bit 0.. 7 : l4_length:8 layer 4 length
247 * bit 8 : cmd_eop:1 This descriptor is the last one in the packet
248 * bit 9 : reserved
249 * bit 10 : cmd_dma_it:1 immediate interrupt
250 * bit 11..12 : SBD - Segment Buffer Details
251 * 00 - Header Segment
252 * 01 - First Data Segment
253 * 10 - Medium Data Segment
254 * 11 - Last Data Segment
255 * bit 13 : TSE - TCP Segmentation Enable
256 * bit 14 : IIC - Directs the HW to Insert IPv4 Checksum
257 * bit 15 : ITC - Directs the HW to Insert TCP/UDP Checksum
258 * bit 16..20 : QID - The target QID that the packet should be stored
259 * in the MAC.
260 * bit 21 : PO - Pseudo header Offload:
261 * 0 - Use the pseudo header value from the TCP checksum field
262 * 1- Calculate Pseudo header Checksum
263 * bit 22 : NC - No UDP Checksum
264 * bit 23..29 : reserved
265 * bit 30..31 : L4T - Layer 4 Type: 00 - UDP , 10 - TCP , 10, 11 - Reserved
266 * If L4Len equal 0, no L4 at all
267 * [dword 1]
268 * bit 0..31 : addr_low:32 The payload buffer low address
269 * [dword 2]
270 * bit 0..15 : addr_high:16 The payload buffer high address
271 * bit 16..23 : ip_length:8 The IP header length for the TX IP checksum
272 * offload feature
273 * bit 24..30 : mac_length:7
274 * bit 31 : ip_version:1 1 - IPv4, 0 - IPv6
275 * [dword 3]
276 * [byte 12] error
277 * bit 0 2 : mac_status:3
278 * bit 3 7 : reserved:5
279 * [byte 13] status
280 * bit 0 : DU:1 Descriptor Used
281 * bit 1 7 : reserved:7
282 * [word 7] length
283 */
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800284struct vring_tx_dma {
285 u32 d0;
Vladimir Kondratiev68ada712013-05-12 14:43:37 +0300286 struct vring_dma_addr addr;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800287 u8 ip_length;
288 u8 b11; /* 0..6: mac_length; 7:ip_version */
289 u8 error; /* 0..2: err; 3..7: reserved; */
290 u8 status; /* 0: used; 1..7; reserved */
Vladimir Kondratiev7e5944442013-05-12 14:43:32 +0300291 __le16 length;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800292} __packed;
293
Vladimir Kondratiev8d3b2f02014-12-23 09:47:22 +0200294/* Rx descriptor - MAC part
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800295 * [dword 0]
296 * bit 0.. 3 : tid:4 The QoS (b3-0) TID Field
Vladimir Kondratiev8d3b2f02014-12-23 09:47:22 +0200297 * bit 4.. 6 : cid:3 The Source index that was found during parsing the TA.
298 * This field is used to define the source of the packet
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800299 * bit 7 : reserved:1
Vladimir Kondratiev8d3b2f02014-12-23 09:47:22 +0200300 * bit 8.. 9 : mid:2 The MAC virtual number
301 * bit 10..11 : frame_type:2 : The FC (b3-2) - MPDU Type
302 * (management, data, control and extension)
303 * bit 12..15 : frame_subtype:4 : The FC (b7-4) - Frame Subtype
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800304 * bit 16..27 : seq_number:12 The received Sequence number field
305 * bit 28..31 : extended:4 extended subtype
306 * [dword 1]
307 * bit 0.. 3 : reserved
308 * bit 4.. 5 : key_id:2
309 * bit 6 : decrypt_bypass:1
Vladimir Kondratiev8d3b2f02014-12-23 09:47:22 +0200310 * bit 7 : security:1 FC (b14)
311 * bit 8.. 9 : ds_bits:2 FC (b9-8)
312 * bit 10 : a_msdu_present:1 QoS (b7)
313 * bit 11 : a_msdu_type:1 QoS (b8)
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800314 * bit 12 : a_mpdu:1 part of AMPDU aggregation
315 * bit 13 : broadcast:1
316 * bit 14 : mutlicast:1
317 * bit 15 : reserved:1
Vladimir Kondratiev8d3b2f02014-12-23 09:47:22 +0200318 * bit 16..20 : rx_mac_qid:5 The Queue Identifier that the packet
319 * is received from
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800320 * bit 21..24 : mcs:4
Vladimir Kondratiev8d3b2f02014-12-23 09:47:22 +0200321 * bit 25..28 : mic_icr:4 this signal tells the DMA to assert an interrupt
322 * after it writes the packet
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800323 * bit 29..31 : reserved:3
324 * [dword 2]
325 * bit 0.. 2 : time_slot:3 The timeslot that the MPDU is received
Vladimir Kondratiev8d3b2f02014-12-23 09:47:22 +0200326 * bit 3.. 4 : fc_protocol_ver:1 The FC (b1-0) - Protocol Version
327 * bit 5 : fc_order:1 The FC Control (b15) -Order
328 * bit 6.. 7 : qos_ack_policy:2 The QoS (b6-5) ack policy Field
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800329 * bit 8 : esop:1 The QoS (b4) ESOP field
Vladimir Kondratiev8d3b2f02014-12-23 09:47:22 +0200330 * bit 9 : qos_rdg_more_ppdu:1 The QoS (b9) RDG field
331 * bit 10..14 : qos_reserved:5 The QoS (b14-10) Reserved field
332 * bit 15 : qos_ac_constraint:1 QoS (b15)
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800333 * bit 16..31 : pn_15_0:16 low 2 bytes of PN
334 * [dword 3]
335 * bit 0..31 : pn_47_16:32 high 4 bytes of PN
336 */
337struct vring_rx_mac {
338 u32 d0;
339 u32 d1;
340 u16 w4;
341 u16 pn_15_0;
342 u32 pn_47_16;
343} __packed;
344
Vladimir Kondratiev8d3b2f02014-12-23 09:47:22 +0200345/* Rx descriptor - DMA part
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800346 * [dword 0]
Vladimir Kondratiev8d3b2f02014-12-23 09:47:22 +0200347 * bit 0.. 7 : l4_length:8 layer 4 length. The field is only valid if
348 * L4I bit is set
349 * bit 8 : cmd_eop:1 set to 1
350 * bit 9 : cmd_rt:1 set to 1
351 * bit 10 : cmd_dma_it:1 immediate interrupt
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800352 * bit 11..15 : reserved:5
Vladimir Kondratiev8d3b2f02014-12-23 09:47:22 +0200353 * bit 16..29 : phy_info_length:14 It is valid when the PII is set.
354 * When the FFM bit is set bits 29-27 are used for for
355 * Flex Filter Match. Matching Index to one of the L2
356 * EtherType Flex Filter
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800357 * bit 30..31 : l4_type:2 valid if the L4I bit is set in the status field
Vladimir Kondratiev8d3b2f02014-12-23 09:47:22 +0200358 * 00 - UDP, 01 - TCP, 10, 11 - reserved
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800359 * [dword 1]
360 * bit 0..31 : addr_low:32 The payload buffer low address
361 * [dword 2]
362 * bit 0..15 : addr_high:16 The payload buffer high address
Vladimir Kondratiev8d3b2f02014-12-23 09:47:22 +0200363 * bit 16..23 : ip_length:8 The filed is valid only if the L3I bit is set
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800364 * bit 24..30 : mac_length:7
Vladimir Kondratiev8d3b2f02014-12-23 09:47:22 +0200365 * bit 31 : ip_version:1 1 - IPv4, 0 - IPv6
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800366 * [dword 3]
367 * [byte 12] error
Vladimir Kondratiev8d3b2f02014-12-23 09:47:22 +0200368 * bit 0 : FCS:1
369 * bit 1 : MIC:1
370 * bit 2 : Key miss:1
371 * bit 3 : Replay:1
372 * bit 4 : L3:1 IPv4 checksum
373 * bit 5 : L4:1 TCP/UDP checksum
374 * bit 6 7 : reserved:2
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800375 * [byte 13] status
Vladimir Kondratiev8d3b2f02014-12-23 09:47:22 +0200376 * bit 0 : DU:1 Descriptor Used
377 * bit 1 : EOP:1 The descriptor indicates the End of Packet
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800378 * bit 2 : error:1
Vladimir Kondratiev8d3b2f02014-12-23 09:47:22 +0200379 * bit 3 : MI:1 MAC Interrupt is asserted (according to parser decision)
380 * bit 4 : L3I:1 L3 identified and checksum calculated
381 * bit 5 : L4I:1 L4 identified and checksum calculated
382 * bit 6 : PII:1 PHY Info Included in the packet
383 * bit 7 : FFM:1 EtherType Flex Filter Match
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800384 * [word 7] length
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800385 */
386
387#define RX_DMA_D0_CMD_DMA_IT BIT(10)
388
Kirshenbaum Erez504937d2013-07-21 11:34:37 +0300389/* Error field, offload bits */
390#define RX_DMA_ERROR_L3_ERR BIT(4)
391#define RX_DMA_ERROR_L4_ERR BIT(5)
392
Kirshenbaum Erez504937d2013-07-21 11:34:37 +0300393/* Status field */
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800394#define RX_DMA_STATUS_DU BIT(0)
395#define RX_DMA_STATUS_ERROR BIT(2)
Kirshenbaum Erez504937d2013-07-21 11:34:37 +0300396
Vladimir Kondratiev8d3b2f02014-12-23 09:47:22 +0200397#define RX_DMA_STATUS_L3I BIT(4)
398#define RX_DMA_STATUS_L4I BIT(5)
399#define RX_DMA_STATUS_PHY_INFO BIT(6)
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800400
401struct vring_rx_dma {
402 u32 d0;
Vladimir Kondratiev68ada712013-05-12 14:43:37 +0300403 struct vring_dma_addr addr;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800404 u8 ip_length;
405 u8 b11;
406 u8 error;
407 u8 status;
Vladimir Kondratiev7e5944442013-05-12 14:43:32 +0300408 __le16 length;
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800409} __packed;
410
411struct vring_tx_desc {
412 struct vring_tx_mac mac;
413 struct vring_tx_dma dma;
414} __packed;
415
416struct vring_rx_desc {
417 struct vring_rx_mac mac;
418 struct vring_rx_dma dma;
419} __packed;
420
421union vring_desc {
422 struct vring_tx_desc tx;
423 struct vring_rx_desc rx;
424} __packed;
425
Vladimir Kondratiev4fc41182013-04-18 14:33:53 +0300426static inline int wil_rxdesc_tid(struct vring_rx_desc *d)
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800427{
Vladimir Kondratiev4fc41182013-04-18 14:33:53 +0300428 return WIL_GET_BITS(d->mac.d0, 0, 3);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800429}
430
Vladimir Kondratiev4fc41182013-04-18 14:33:53 +0300431static inline int wil_rxdesc_cid(struct vring_rx_desc *d)
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800432{
Vladimir Kondratiev4fc41182013-04-18 14:33:53 +0300433 return WIL_GET_BITS(d->mac.d0, 4, 6);
434}
435
436static inline int wil_rxdesc_mid(struct vring_rx_desc *d)
437{
438 return WIL_GET_BITS(d->mac.d0, 8, 9);
439}
440
441static inline int wil_rxdesc_ftype(struct vring_rx_desc *d)
442{
443 return WIL_GET_BITS(d->mac.d0, 10, 11);
444}
445
446static inline int wil_rxdesc_subtype(struct vring_rx_desc *d)
447{
448 return WIL_GET_BITS(d->mac.d0, 12, 15);
449}
450
451static inline int wil_rxdesc_seq(struct vring_rx_desc *d)
452{
453 return WIL_GET_BITS(d->mac.d0, 16, 27);
454}
455
456static inline int wil_rxdesc_ext_subtype(struct vring_rx_desc *d)
457{
458 return WIL_GET_BITS(d->mac.d0, 28, 31);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800459}
460
Vladimir Kondratiev33e61162013-04-18 14:33:50 +0300461static inline int wil_rxdesc_ds_bits(struct vring_rx_desc *d)
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800462{
463 return WIL_GET_BITS(d->mac.d1, 8, 9);
464}
465
Vladimir Kondratiev4fc41182013-04-18 14:33:53 +0300466static inline int wil_rxdesc_mcs(struct vring_rx_desc *d)
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800467{
Vladimir Kondratiev4fc41182013-04-18 14:33:53 +0300468 return WIL_GET_BITS(d->mac.d1, 21, 24);
469}
470
Vladimir Kondratieve4373d82014-12-23 09:47:21 +0200471static inline int wil_rxdesc_mcast(struct vring_rx_desc *d)
472{
473 return WIL_GET_BITS(d->mac.d1, 13, 14);
474}
475
Vladimir Kondratiev4fc41182013-04-18 14:33:53 +0300476static inline int wil_rxdesc_phy_length(struct vring_rx_desc *d)
477{
478 return WIL_GET_BITS(d->dma.d0, 16, 29);
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800479}
480
Vladimir Kondratiev33e61162013-04-18 14:33:50 +0300481static inline struct vring_rx_desc *wil_skb_rxdesc(struct sk_buff *skb)
482{
483 return (void *)skb->cb;
484}
485
Vladimir Kondratievb4490f42014-02-27 16:20:44 +0200486void wil_netif_rx_any(struct sk_buff *skb, struct net_device *ndev);
487void wil_rx_reorder(struct wil6210_priv *wil, struct sk_buff *skb);
488struct wil_tid_ampdu_rx *wil_tid_ampdu_rx_alloc(struct wil6210_priv *wil,
489 int size, u16 ssn);
490void wil_tid_ampdu_rx_free(struct wil6210_priv *wil,
491 struct wil_tid_ampdu_rx *r);
492
Vladimir Kondratiev2be7d222012-12-20 13:13:19 -0800493#endif /* WIL6210_TXRX_H */