110590c6aSGidon Studinski /*
210590c6aSGidon Studinski  * Copyright (c) 2012-2016,2018, The Linux Foundation. All rights reserved.
310590c6aSGidon Studinski  *
410590c6aSGidon Studinski  * Permission to use, copy, modify, and/or distribute this software for any
510590c6aSGidon Studinski  * purpose with or without fee is hereby granted, provided that the above
610590c6aSGidon Studinski  * copyright notice and this permission notice appear in all copies.
710590c6aSGidon Studinski  *
810590c6aSGidon Studinski  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
910590c6aSGidon Studinski  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
1010590c6aSGidon Studinski  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
1110590c6aSGidon Studinski  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
1210590c6aSGidon Studinski  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
1310590c6aSGidon Studinski  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
1410590c6aSGidon Studinski  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1510590c6aSGidon Studinski  */
1610590c6aSGidon Studinski 
1710590c6aSGidon Studinski #ifndef WIL6210_TXRX_EDMA_H
1810590c6aSGidon Studinski #define WIL6210_TXRX_EDMA_H
1910590c6aSGidon Studinski 
2010590c6aSGidon Studinski #include "wil6210.h"
2110590c6aSGidon Studinski 
2210590c6aSGidon Studinski /* Enhanced Rx descriptor - MAC part
2310590c6aSGidon Studinski  * [dword 0] : Reserved
2410590c6aSGidon Studinski  * [dword 1] : Reserved
2510590c6aSGidon Studinski  * [dword 2] : Reserved
2610590c6aSGidon Studinski  * [dword 3]
2710590c6aSGidon Studinski  *	bit  0..15 : Buffer ID
2810590c6aSGidon Studinski  *	bit 16..31 : Reserved
2910590c6aSGidon Studinski  */
3010590c6aSGidon Studinski struct wil_ring_rx_enhanced_mac {
3110590c6aSGidon Studinski 	u32 d[3];
3210590c6aSGidon Studinski 	__le16 buff_id;
3310590c6aSGidon Studinski 	u16 reserved;
3410590c6aSGidon Studinski } __packed;
3510590c6aSGidon Studinski 
3610590c6aSGidon Studinski /* Enhanced Rx descriptor - DMA part
3710590c6aSGidon Studinski  * [dword 0] - Reserved
3810590c6aSGidon Studinski  * [dword 1]
3910590c6aSGidon Studinski  *	bit  0..31 : addr_low:32 The payload buffer address, bits 0-31
4010590c6aSGidon Studinski  * [dword 2]
4110590c6aSGidon Studinski  *	bit  0..15 : addr_high_low:16 The payload buffer address, bits 32-47
4210590c6aSGidon Studinski  *	bit 16..31 : Reserved
4310590c6aSGidon Studinski  * [dword 3]
4410590c6aSGidon Studinski  *	bit  0..15 : addr_high_high:16 The payload buffer address, bits 48-63
4510590c6aSGidon Studinski  *	bit 16..31 : length
4610590c6aSGidon Studinski  */
4710590c6aSGidon Studinski struct wil_ring_rx_enhanced_dma {
4810590c6aSGidon Studinski 	u32 d0;
4910590c6aSGidon Studinski 	struct wil_ring_dma_addr addr;
5010590c6aSGidon Studinski 	u16 w5;
5110590c6aSGidon Studinski 	__le16 addr_high_high;
5210590c6aSGidon Studinski 	__le16 length;
5310590c6aSGidon Studinski } __packed;
5410590c6aSGidon Studinski 
5510590c6aSGidon Studinski struct wil_rx_enhanced_desc {
5610590c6aSGidon Studinski 	struct wil_ring_rx_enhanced_mac mac;
5710590c6aSGidon Studinski 	struct wil_ring_rx_enhanced_dma dma;
5810590c6aSGidon Studinski } __packed;
5910590c6aSGidon Studinski 
6010590c6aSGidon Studinski /* Enhanced Tx descriptor - DMA part
6110590c6aSGidon Studinski  * [dword 0]
6210590c6aSGidon Studinski  *	Same as legacy
6310590c6aSGidon Studinski  * [dword 1]
6410590c6aSGidon Studinski  * bit  0..31 : addr_low:32 The payload buffer address, bits 0-31
6510590c6aSGidon Studinski  * [dword 2]
6610590c6aSGidon Studinski  * bit  0..15 : addr_high_low:16 The payload buffer address, bits 32-47
6710590c6aSGidon Studinski  * bit 16..23 : ip_length:8 The IP header length for the TX IP checksum
6810590c6aSGidon Studinski  *		offload feature
6910590c6aSGidon Studinski  * bit 24..30 : mac_length:7
7010590c6aSGidon Studinski  * bit     31 : ip_version:1 1 - IPv4, 0 - IPv6
7110590c6aSGidon Studinski  * [dword 3]
7210590c6aSGidon Studinski  * bit  0..15 : addr_high_high:16 The payload buffer address, bits 48-63
7310590c6aSGidon Studinski  * bit 16..31 : length
7410590c6aSGidon Studinski  */
7510590c6aSGidon Studinski struct wil_ring_tx_enhanced_dma {
7610590c6aSGidon Studinski 	u8 l4_hdr_len;
7710590c6aSGidon Studinski 	u8 cmd;
7810590c6aSGidon Studinski 	u16 w1;
7910590c6aSGidon Studinski 	struct wil_ring_dma_addr addr;
8010590c6aSGidon Studinski 	u8  ip_length;
8110590c6aSGidon Studinski 	u8  b11;       /* 0..6: mac_length; 7:ip_version */
8210590c6aSGidon Studinski 	__le16 addr_high_high;
8310590c6aSGidon Studinski 	__le16 length;
8410590c6aSGidon Studinski } __packed;
8510590c6aSGidon Studinski 
8610590c6aSGidon Studinski /* Enhanced Tx descriptor - MAC part
8710590c6aSGidon Studinski  * [dword 0]
8810590c6aSGidon Studinski  * bit  0.. 9 : lifetime_expiry_value:10
8910590c6aSGidon Studinski  * bit     10 : interrupt_en:1
9010590c6aSGidon Studinski  * bit     11 : status_en:1
9110590c6aSGidon Studinski  * bit 12..13 : txss_override:2
9210590c6aSGidon Studinski  * bit     14 : timestamp_insertion:1
9310590c6aSGidon Studinski  * bit     15 : duration_preserve:1
9410590c6aSGidon Studinski  * bit 16..21 : reserved0:6
9510590c6aSGidon Studinski  * bit 22..26 : mcs_index:5
9610590c6aSGidon Studinski  * bit     27 : mcs_en:1
9710590c6aSGidon Studinski  * bit 28..30 : reserved1:3
9810590c6aSGidon Studinski  * bit     31 : sn_preserved:1
9910590c6aSGidon Studinski  * [dword 1]
10010590c6aSGidon Studinski  * bit  0.. 3 : pkt_mode:4
10110590c6aSGidon Studinski  * bit      4 : pkt_mode_en:1
10210590c6aSGidon Studinski  * bit  5..14 : reserved0:10
10310590c6aSGidon Studinski  * bit     15 : ack_policy_en:1
10410590c6aSGidon Studinski  * bit 16..19 : dst_index:4
10510590c6aSGidon Studinski  * bit     20 : dst_index_en:1
10610590c6aSGidon Studinski  * bit 21..22 : ack_policy:2
10710590c6aSGidon Studinski  * bit     23 : lifetime_en:1
10810590c6aSGidon Studinski  * bit 24..30 : max_retry:7
10910590c6aSGidon Studinski  * bit     31 : max_retry_en:1
11010590c6aSGidon Studinski  * [dword 2]
11110590c6aSGidon Studinski  * bit  0.. 7 : num_of_descriptors:8
11210590c6aSGidon Studinski  * bit  8..17 : reserved:10
11310590c6aSGidon Studinski  * bit 18..19 : l2_translation_type:2 00 - bypass, 01 - 802.3, 10 - 802.11
11410590c6aSGidon Studinski  * bit     20 : snap_hdr_insertion_en:1
11510590c6aSGidon Studinski  * bit     21 : vlan_removal_en:1
11610590c6aSGidon Studinski  * bit 22..23 : reserved0:2
11710590c6aSGidon Studinski  * bit	   24 : Dest ID extension:1
11810590c6aSGidon Studinski  * bit 25..31 : reserved0:7
11910590c6aSGidon Studinski  * [dword 3]
12010590c6aSGidon Studinski  * bit  0..15 : tso_mss:16
12110590c6aSGidon Studinski  * bit 16..31 : descriptor_scratchpad:16 - mailbox between driver and ucode
12210590c6aSGidon Studinski  */
12310590c6aSGidon Studinski struct wil_ring_tx_enhanced_mac {
12410590c6aSGidon Studinski 	u32 d[3];
12510590c6aSGidon Studinski 	__le16 tso_mss;
12610590c6aSGidon Studinski 	u16 scratchpad;
12710590c6aSGidon Studinski } __packed;
12810590c6aSGidon Studinski 
12910590c6aSGidon Studinski struct wil_tx_enhanced_desc {
13010590c6aSGidon Studinski 	struct wil_ring_tx_enhanced_mac mac;
13110590c6aSGidon Studinski 	struct wil_ring_tx_enhanced_dma dma;
13210590c6aSGidon Studinski } __packed;
13310590c6aSGidon Studinski 
13410590c6aSGidon Studinski #define TX_STATUS_DESC_READY_POS 7
13510590c6aSGidon Studinski 
13610590c6aSGidon Studinski /* Enhanced TX status message
13710590c6aSGidon Studinski  * [dword 0]
13810590c6aSGidon Studinski  *	bit  0.. 7 : Number of Descriptor:8 - The number of descriptors that
13910590c6aSGidon Studinski  *		     are used to form the packets. It  is needed for WB when
14010590c6aSGidon Studinski  *		     releasing the packet
14110590c6aSGidon Studinski  *	bit  8..15 : tx_ring_id:8 The transmission ring ID that is related to
14210590c6aSGidon Studinski  *		     the message
14310590c6aSGidon Studinski  *	bit 16..23 : Status:8 - The TX status Code
14410590c6aSGidon Studinski  *		0x0 - A successful transmission
14510590c6aSGidon Studinski  *		0x1 - Retry expired
14610590c6aSGidon Studinski  *		0x2 - Lifetime Expired
14710590c6aSGidon Studinski  *		0x3 - Released
14810590c6aSGidon Studinski  *		0x4-0xFF - Reserved
14910590c6aSGidon Studinski  *	bit 24..30 : Reserved:7
15010590c6aSGidon Studinski  *	bit     31 : Descriptor Ready bit:1 - It is initiated to
15110590c6aSGidon Studinski  *		zero by the driver when the ring is created. It is set by the HW
15210590c6aSGidon Studinski  *		to one for each completed status message. Each wrap around,
15310590c6aSGidon Studinski  *		the DR bit value is flipped.
15410590c6aSGidon Studinski  * [dword 1]
15510590c6aSGidon Studinski  *	bit 0..31  : timestamp:32 - Set when MPDU is transmitted.
15610590c6aSGidon Studinski  * [dword 2]
15710590c6aSGidon Studinski  *	bit  0.. 4 : MCS:5 - The transmitted MCS value
15810590c6aSGidon Studinski  *	bit      5 : Reserved:1
15910590c6aSGidon Studinski  *	bit  6.. 7 : CB mode:2 - 0-DMG 1-EDMG 2-Wide
16010590c6aSGidon Studinski  *	bit  8..12 : QID:5 - The QID that was used for the transmission
16110590c6aSGidon Studinski  *	bit 13..15 : Reserved:3
16210590c6aSGidon Studinski  *	bit 16..20 : Num of MSDUs:5 - Number of MSDUs in the aggregation
16310590c6aSGidon Studinski  *	bit 21..22 : Reserved:2
16410590c6aSGidon Studinski  *	bit     23 : Retry:1 - An indication that the transmission was retried
16510590c6aSGidon Studinski  *	bit 24..31 : TX-Sector:8 - the antenna sector that was used for
16610590c6aSGidon Studinski  *		     transmission
16710590c6aSGidon Studinski  * [dword 3]
16810590c6aSGidon Studinski  *	bit  0..11 : Sequence number:12 - The Sequence Number that was used
16910590c6aSGidon Studinski  *		     for the MPDU transmission
17010590c6aSGidon Studinski  *	bit 12..31 : Reserved:20
17110590c6aSGidon Studinski  */
17210590c6aSGidon Studinski struct wil_ring_tx_status {
17310590c6aSGidon Studinski 	u8 num_descriptors;
17410590c6aSGidon Studinski 	u8 ring_id;
17510590c6aSGidon Studinski 	u8 status;
17610590c6aSGidon Studinski 	u8 desc_ready; /* Only the last bit should be set */
17710590c6aSGidon Studinski 	u32 timestamp;
17810590c6aSGidon Studinski 	u32 d2;
17910590c6aSGidon Studinski 	u16 seq_number; /* Only the first 12 bits */
18010590c6aSGidon Studinski 	u16 w7;
18110590c6aSGidon Studinski } __packed;
18210590c6aSGidon Studinski 
18310590c6aSGidon Studinski /* Enhanced Rx status message - compressed part
18410590c6aSGidon Studinski  * [dword 0]
18510590c6aSGidon Studinski  *	bit  0.. 2 : L2 Rx Status:3 - The L2 packet reception Status
18610590c6aSGidon Studinski  *		     0-Success, 1-MIC Error, 2-Key Error, 3-Replay Error,
18710590c6aSGidon Studinski  *		     4-A-MSDU Error, 5-Reserved, 6-Reserved, 7-FCS Error
18810590c6aSGidon Studinski  *	bit  3.. 4 : L3 Rx Status:2 - Bit0 - L3I - L3 identified and checksum
18910590c6aSGidon Studinski  *		     calculated, Bit1- L3Err - IPv4 Checksum Error
19010590c6aSGidon Studinski  *	bit  5.. 6 : L4 Rx Status:2 - Bit0 - L4I - L4 identified and checksum
19110590c6aSGidon Studinski  *		     calculated, Bit1- L4Err - TCP/UDP Checksum Error
19210590c6aSGidon Studinski  *	bit      7 : Reserved:1
19310590c6aSGidon Studinski  *	bit  8..19 : Flow ID:12 - MSDU flow ID
19410590c6aSGidon Studinski  *	bit 20..21 : MID:2 - The MAC ID
19510590c6aSGidon Studinski  *	bit     22 : MID_V:1 - The MAC ID field is valid
19610590c6aSGidon Studinski  *	bit     23 : L3T:1 - IP types: 0-IPv6, 1-IPv4
19710590c6aSGidon Studinski  *	bit     24 : L4T:1 - Layer 4 Type: 0-UDP, 1-TCP
19810590c6aSGidon Studinski  *	bit     25 : BC:1 - The received MPDU is broadcast
19910590c6aSGidon Studinski  *	bit     26 : MC:1 - The received MPDU is multicast
20010590c6aSGidon Studinski  *	bit     27 : Raw:1 - The MPDU received with no translation
20110590c6aSGidon Studinski  *	bit     28 : Sec:1 - The FC control (b14) - Frame Protected
20210590c6aSGidon Studinski  *	bit     29 : Error:1 - An error is set when (L2 status != 0) ||
20310590c6aSGidon Studinski  *		(L3 status == 3) || (L4 status == 3)
20410590c6aSGidon Studinski  *	bit     30 : EOP:1 - End of MSDU signaling. It is set to mark the end
20510590c6aSGidon Studinski  *		     of the transfer, otherwise the status indicates buffer
20610590c6aSGidon Studinski  *		     only completion.
20710590c6aSGidon Studinski  *	bit     31 : Descriptor Ready bit:1 - It is initiated to
20810590c6aSGidon Studinski  *		     zero by the driver when the ring is created. It is set
20910590c6aSGidon Studinski  *		     by the HW to one for each completed status message.
21010590c6aSGidon Studinski  *		     Each wrap around, the DR bit value is flipped.
21110590c6aSGidon Studinski  * [dword 1]
21210590c6aSGidon Studinski  *	bit  0.. 5 : MAC Len:6 - The number of bytes that are used for L2 header
21310590c6aSGidon Studinski  *	bit  6..11 : IPLEN:6 - The number of DW that are used for L3 header
21410590c6aSGidon Studinski  *	bit 12..15 : I4Len:4 - The number of DW that are used for L4 header
21510590c6aSGidon Studinski  *	bit 16..21 : MCS:6 - The received MCS field from the PLCP Header
21610590c6aSGidon Studinski  *	bit 22..23 : CB mode:2 - The CB Mode: 0-DMG, 1-EDMG, 2-Wide
21710590c6aSGidon Studinski  *	bit 24..27 : Data Offset:4 - The data offset, a code that describe the
21810590c6aSGidon Studinski  *		     payload shift from the beginning of the buffer:
21910590c6aSGidon Studinski  *		     0 - 0 Bytes, 1 - 2 Bytes, 2 - 6 Bytes
22010590c6aSGidon Studinski  *	bit     28 : A-MSDU Present:1 - The QoS (b7) A-MSDU present field
22110590c6aSGidon Studinski  *	bit     29 : A-MSDU Type:1 The QoS (b8) A-MSDU Type field
22210590c6aSGidon Studinski  *	bit     30 : A-MPDU:1 - Packet is part of aggregated MPDU
22310590c6aSGidon Studinski  *	bit     31 : Key ID:1 - The extracted Key ID from the encryption header
22410590c6aSGidon Studinski  * [dword 2]
22510590c6aSGidon Studinski  *	bit  0..15 : Buffer ID:16 - The Buffer Identifier
22610590c6aSGidon Studinski  *	bit 16..31 : Length:16 - It indicates the valid bytes that are stored
22710590c6aSGidon Studinski  *		     in the current descriptor buffer. For multiple buffer
22810590c6aSGidon Studinski  *		     descriptor, SW need to sum the total descriptor length
22910590c6aSGidon Studinski  *		     in all buffers to produce the packet length
23010590c6aSGidon Studinski  * [dword 3]
23110590c6aSGidon Studinski  *	bit  0..31  : timestamp:32 - The MPDU Timestamp.
23210590c6aSGidon Studinski  */
23310590c6aSGidon Studinski struct wil_rx_status_compressed {
23410590c6aSGidon Studinski 	u32 d0;
23510590c6aSGidon Studinski 	u32 d1;
23610590c6aSGidon Studinski 	__le16 buff_id;
23710590c6aSGidon Studinski 	__le16 length;
23810590c6aSGidon Studinski 	u32 timestamp;
23910590c6aSGidon Studinski } __packed;
24010590c6aSGidon Studinski 
24110590c6aSGidon Studinski /* Enhanced Rx status message - extension part
24210590c6aSGidon Studinski  * [dword 0]
24310590c6aSGidon Studinski  *	bit  0.. 4 : QID:5 - The Queue Identifier that the packet is received
24410590c6aSGidon Studinski  *		     from
24510590c6aSGidon Studinski  *	bit  5.. 7 : Reserved:3
24610590c6aSGidon Studinski  *	bit  8..11 : TID:4 - The QoS (b3-0) TID Field
24710590c6aSGidon Studinski  *	bit 12..15   Source index:4 - The Source index that was found
24810590c6aSGidon Studinski 		     during Parsing the TA. This field is used to define the
24910590c6aSGidon Studinski 		     source of the packet
25010590c6aSGidon Studinski  *	bit 16..18 : Destination index:3 - The Destination index that
25110590c6aSGidon Studinski 		     was found during Parsing the RA.
25210590c6aSGidon Studinski  *	bit 19..20 : DS Type:2 - The FC Control (b9-8) - From / To DS
25310590c6aSGidon Studinski  *	bit 21..22 : MIC ICR:2 - this signal tells the DMA to assert an
25410590c6aSGidon Studinski 		     interrupt after it writes the packet
25510590c6aSGidon Studinski  *	bit     23 : ESOP:1 - The QoS (b4) ESOP field
25610590c6aSGidon Studinski  *	bit     24 : RDG:1
25710590c6aSGidon Studinski  *	bit 25..31 : Reserved:7
25810590c6aSGidon Studinski  * [dword 1]
25910590c6aSGidon Studinski  *	bit  0.. 1 : Frame Type:2 - The FC Control (b3-2) - MPDU Type
26010590c6aSGidon Studinski 		     (management, data, control and extension)
26110590c6aSGidon Studinski  *	bit  2.. 5 : Syb type:4 - The FC Control (b7-4) - Frame Subtype
26210590c6aSGidon Studinski  *	bit  6..11 : Ext sub type:6 - The FC Control (b11-8) - Frame Extended
26310590c6aSGidon Studinski  *                   Subtype
26410590c6aSGidon Studinski  *	bit 12..13 : ACK Policy:2 - The QoS (b6-5) ACK Policy fields
26510590c6aSGidon Studinski  *	bit 14     : DECRYPT_BYP:1 - The MPDU is bypass by the decryption unit
26610590c6aSGidon Studinski  *	bit 15..23 : Reserved:9
26710590c6aSGidon Studinski  *	bit 24..31 : RSSI/SNR:8 - The RSSI / SNR measurement for the received
26810590c6aSGidon Studinski  *                   MPDU
26910590c6aSGidon Studinski  * [dword 2]
27010590c6aSGidon Studinski  *	bit  0..11 : SN:12 - The received Sequence number field
27110590c6aSGidon Studinski  *	bit 12..15 : Reserved:4
27210590c6aSGidon Studinski  *	bit 16..31 : PN bits [15:0]:16
27310590c6aSGidon Studinski  * [dword 3]
27410590c6aSGidon Studinski  *	bit  0..31 : PN bits [47:16]:32
27510590c6aSGidon Studinski  */
27610590c6aSGidon Studinski struct wil_rx_status_extension {
27710590c6aSGidon Studinski 	u32 d0;
27810590c6aSGidon Studinski 	u32 d1;
27910590c6aSGidon Studinski 	__le16 seq_num; /* only lower 12 bits */
28010590c6aSGidon Studinski 	u16 pn_15_0;
28110590c6aSGidon Studinski 	u32 pn_47_16;
28210590c6aSGidon Studinski } __packed;
28310590c6aSGidon Studinski 
28410590c6aSGidon Studinski struct wil_rx_status_extended {
28510590c6aSGidon Studinski 	struct wil_rx_status_compressed comp;
28610590c6aSGidon Studinski 	struct wil_rx_status_extension ext;
28710590c6aSGidon Studinski };
28810590c6aSGidon Studinski 
28910590c6aSGidon Studinski #endif /* WIL6210_TXRX_EDMA_H */
29010590c6aSGidon Studinski 
291