2 * Marvell Wireless LAN device driver: 802.11n Aggregation
4 * Copyright (C) 2011, Marvell International Ltd.
6 * This software file (the "File") is distributed by Marvell International
7 * Ltd. under the terms of the GNU General Public License Version 2, June 1991
8 * (the "License"). You may use, redistribute and/or modify this File in
9 * accordance with the terms and conditions of the License, a copy of which
10 * is available by writing to the Free Software Foundation, Inc.,
11 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the
12 * worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
14 * THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE
15 * IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE
16 * ARE EXPRESSLY DISCLAIMED. The License provides additional details about
17 * this warranty disclaimer.
30 * Creates an AMSDU subframe for aggregation into one AMSDU packet.
32 * The resultant AMSDU subframe format is -
34 * +---- ~ -----+---- ~ ------+---- ~ -----+----- ~ -----+---- ~ -----+
35 * | DA | SA | Length | SNAP header | MSDU |
36 * | data[0..5] | data[6..11] | | | data[14..] |
37 * +---- ~ -----+---- ~ ------+---- ~ -----+----- ~ -----+---- ~ -----+
38 * <--6-bytes--> <--6-bytes--> <--2-bytes--><--8-bytes--> <--n-bytes-->
40 * This function also computes the amount of padding required to make the
41 * buffer length multiple of 4 bytes.
43 * Data => |DA|SA|SNAP-TYPE|........ .|
44 * MSDU => |DA|SA|Length|SNAP|...... ..|
47 mwifiex_11n_form_amsdu_pkt(struct sk_buff
*skb_aggr
,
48 struct sk_buff
*skb_src
, int *pad
)
52 struct rfc_1042_hdr snap
= {
56 {0x00, 0x00, 0x00}, /* SNAP OUI */
57 0x0000 /* SNAP type */
59 * This field will be overwritten
60 * later with ethertype
63 struct tx_packet_hdr
*tx_header
;
65 tx_header
= (void *)skb_put(skb_aggr
, sizeof(*tx_header
));
68 dt_offset
= 2 * ETH_ALEN
;
69 memcpy(&tx_header
->eth803_hdr
, skb_src
->data
, dt_offset
);
71 /* Copy SNAP header */
73 le16_to_cpu(*(__le16
*) ((u8
*)skb_src
->data
+ dt_offset
));
74 dt_offset
+= sizeof(u16
);
76 memcpy(&tx_header
->rfc1042_hdr
, &snap
, sizeof(struct rfc_1042_hdr
));
78 skb_pull(skb_src
, dt_offset
);
80 /* Update Length field */
81 tx_header
->eth803_hdr
.h_proto
= htons(skb_src
->len
+ LLC_SNAP_LEN
);
84 memcpy(skb_put(skb_aggr
, skb_src
->len
), skb_src
->data
, skb_src
->len
);
86 /* Add padding for new MSDU to start from 4 byte boundary */
87 *pad
= (4 - ((unsigned long)skb_aggr
->tail
& 0x3)) % 4;
89 return skb_aggr
->len
+ *pad
;
93 * Adds TxPD to AMSDU header.
95 * Each AMSDU packet will contain one TxPD at the beginning,
96 * followed by multiple AMSDU subframes.
99 mwifiex_11n_form_amsdu_txpd(struct mwifiex_private
*priv
,
102 struct txpd
*local_tx_pd
;
104 skb_push(skb
, sizeof(*local_tx_pd
));
106 local_tx_pd
= (struct txpd
*) skb
->data
;
107 memset(local_tx_pd
, 0, sizeof(struct txpd
));
109 /* Original priority has been overwritten */
110 local_tx_pd
->priority
= (u8
) skb
->priority
;
111 local_tx_pd
->pkt_delay_2ms
=
112 mwifiex_wmm_compute_drv_pkt_delay(priv
, skb
);
113 local_tx_pd
->bss_num
= priv
->bss_num
;
114 local_tx_pd
->bss_type
= priv
->bss_type
;
115 /* Always zero as the data is followed by struct txpd */
116 local_tx_pd
->tx_pkt_offset
= cpu_to_le16(sizeof(struct txpd
));
117 local_tx_pd
->tx_pkt_type
= cpu_to_le16(PKT_TYPE_AMSDU
);
118 local_tx_pd
->tx_pkt_length
= cpu_to_le16(skb
->len
-
119 sizeof(*local_tx_pd
));
121 if (local_tx_pd
->tx_control
== 0)
122 /* TxCtrl set by user or default */
123 local_tx_pd
->tx_control
= cpu_to_le32(priv
->pkt_tx_ctrl
);
125 if (GET_BSS_ROLE(priv
) == MWIFIEX_BSS_ROLE_STA
&&
126 priv
->adapter
->pps_uapsd_mode
) {
127 if (true == mwifiex_check_last_packet_indication(priv
)) {
128 priv
->adapter
->tx_lock_flag
= true;
130 MWIFIEX_TxPD_POWER_MGMT_LAST_PACKET
;
136 * Create aggregated packet.
138 * This function creates an aggregated MSDU packet, by combining buffers
139 * from the RA list. Each individual buffer is encapsulated as an AMSDU
140 * subframe and all such subframes are concatenated together to form the
143 * A TxPD is also added to the front of the resultant AMSDU packets for
144 * transmission. The resultant packets format is -
146 * +---- ~ ----+------ ~ ------+------ ~ ------+-..-+------ ~ ------+
147 * | TxPD |AMSDU sub-frame|AMSDU sub-frame| .. |AMSDU sub-frame|
148 * | | 1 | 2 | .. | n |
149 * +---- ~ ----+------ ~ ------+------ ~ ------+ .. +------ ~ ------+
152 mwifiex_11n_aggregate_pkt(struct mwifiex_private
*priv
,
153 struct mwifiex_ra_list_tbl
*pra_list
,
154 int ptrindex
, unsigned long ra_list_flags
)
155 __releases(&priv
->wmm
.ra_list_spinlock
)
157 struct mwifiex_adapter
*adapter
= priv
->adapter
;
158 struct sk_buff
*skb_aggr
, *skb_src
;
159 struct mwifiex_txinfo
*tx_info_aggr
, *tx_info_src
;
161 struct mwifiex_tx_param tx_param
;
162 struct txpd
*ptx_pd
= NULL
;
163 int headroom
= adapter
->iface_type
== MWIFIEX_USB
? 0 : INTF_HEADER_LEN
;
165 skb_src
= skb_peek(&pra_list
->skb_head
);
167 spin_unlock_irqrestore(&priv
->wmm
.ra_list_spinlock
,
172 tx_info_src
= MWIFIEX_SKB_TXCB(skb_src
);
173 skb_aggr
= dev_alloc_skb(adapter
->tx_buf_size
);
175 dev_err(adapter
->dev
, "%s: alloc skb_aggr\n", __func__
);
176 spin_unlock_irqrestore(&priv
->wmm
.ra_list_spinlock
,
180 skb_reserve(skb_aggr
, headroom
+ sizeof(struct txpd
));
181 tx_info_aggr
= MWIFIEX_SKB_TXCB(skb_aggr
);
183 tx_info_aggr
->bss_type
= tx_info_src
->bss_type
;
184 tx_info_aggr
->bss_num
= tx_info_src
->bss_num
;
185 skb_aggr
->priority
= skb_src
->priority
;
188 /* Check if AMSDU can accommodate this MSDU */
189 if (skb_tailroom(skb_aggr
) < (skb_src
->len
+ LLC_SNAP_LEN
))
192 skb_src
= skb_dequeue(&pra_list
->skb_head
);
194 pra_list
->total_pkt_count
--;
196 atomic_dec(&priv
->wmm
.tx_pkts_queued
);
198 spin_unlock_irqrestore(&priv
->wmm
.ra_list_spinlock
,
200 mwifiex_11n_form_amsdu_pkt(skb_aggr
, skb_src
, &pad
);
202 mwifiex_write_data_complete(adapter
, skb_src
, 0, 0);
204 spin_lock_irqsave(&priv
->wmm
.ra_list_spinlock
, ra_list_flags
);
206 if (!mwifiex_is_ralist_valid(priv
, pra_list
, ptrindex
)) {
207 spin_unlock_irqrestore(&priv
->wmm
.ra_list_spinlock
,
212 if (skb_tailroom(skb_aggr
) < pad
) {
216 skb_put(skb_aggr
, pad
);
218 skb_src
= skb_peek(&pra_list
->skb_head
);
222 spin_unlock_irqrestore(&priv
->wmm
.ra_list_spinlock
, ra_list_flags
);
224 /* Last AMSDU packet does not need padding */
225 skb_trim(skb_aggr
, skb_aggr
->len
- pad
);
228 mwifiex_11n_form_amsdu_txpd(priv
, skb_aggr
);
229 if (GET_BSS_ROLE(priv
) == MWIFIEX_BSS_ROLE_STA
)
230 ptx_pd
= (struct txpd
*)skb_aggr
->data
;
232 skb_push(skb_aggr
, headroom
);
234 if (adapter
->iface_type
== MWIFIEX_USB
) {
235 adapter
->data_sent
= true;
236 ret
= adapter
->if_ops
.host_to_card(adapter
, MWIFIEX_USB_EP_DATA
,
240 * Padding per MSDU will affect the length of next
241 * packet and hence the exact length of next packet
244 * Also, aggregation of transmission buffer, while
245 * downloading the data to the card, wont gain much
246 * on the AMSDU packets as the AMSDU packets utilizes
247 * the transmission buffer space to the maximum
248 * (adapter->tx_buf_size).
250 tx_param
.next_pkt_len
= 0;
252 ret
= adapter
->if_ops
.host_to_card(adapter
, MWIFIEX_TYPE_DATA
,
253 skb_aggr
, &tx_param
);
257 spin_lock_irqsave(&priv
->wmm
.ra_list_spinlock
, ra_list_flags
);
258 if (!mwifiex_is_ralist_valid(priv
, pra_list
, ptrindex
)) {
259 spin_unlock_irqrestore(&priv
->wmm
.ra_list_spinlock
,
261 mwifiex_write_data_complete(adapter
, skb_aggr
, 1, -1);
264 if (GET_BSS_ROLE(priv
) == MWIFIEX_BSS_ROLE_STA
&&
265 adapter
->pps_uapsd_mode
&& adapter
->tx_lock_flag
) {
266 priv
->adapter
->tx_lock_flag
= false;
271 skb_queue_tail(&pra_list
->skb_head
, skb_aggr
);
273 pra_list
->total_pkt_count
++;
275 atomic_inc(&priv
->wmm
.tx_pkts_queued
);
277 tx_info_aggr
->flags
|= MWIFIEX_BUF_FLAG_REQUEUED_PKT
;
278 spin_unlock_irqrestore(&priv
->wmm
.ra_list_spinlock
,
280 dev_dbg(adapter
->dev
, "data: -EBUSY is returned\n");
283 if (adapter
->iface_type
!= MWIFIEX_PCIE
)
284 adapter
->data_sent
= false;
285 dev_err(adapter
->dev
, "%s: host_to_card failed: %#x\n",
287 adapter
->dbg
.num_tx_host_to_card_failure
++;
288 mwifiex_write_data_complete(adapter
, skb_aggr
, 1, ret
);
291 if (adapter
->iface_type
!= MWIFIEX_PCIE
)
292 adapter
->data_sent
= false;
295 mwifiex_write_data_complete(adapter
, skb_aggr
, 1, ret
);
301 mwifiex_rotate_priolists(priv
, pra_list
, ptrindex
);