Merge branch 'akpm'
[linux-2.6/next.git] / drivers / net / wireless / mwifiex / sta_tx.c
blob1822bfad88963937f94d9b339063aca28b4ee07a
1 /*
2 * Marvell Wireless LAN device driver: station TX data handling
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.
20 #include "decl.h"
21 #include "ioctl.h"
22 #include "util.h"
23 #include "fw.h"
24 #include "main.h"
25 #include "wmm.h"
28 * This function fills the TxPD for tx packets.
30 * The Tx buffer received by this function should already have the
31 * header space allocated for TxPD.
33 * This function inserts the TxPD in between interface header and actual
34 * data and adjusts the buffer pointers accordingly.
36 * The following TxPD fields are set by this function, as required -
37 * - BSS number
38 * - Tx packet length and offset
39 * - Priority
40 * - Packet delay
41 * - Priority specific Tx control
42 * - Flags
44 void *mwifiex_process_sta_txpd(struct mwifiex_private *priv,
45 struct sk_buff *skb)
47 struct mwifiex_adapter *adapter = priv->adapter;
48 struct txpd *local_tx_pd;
49 struct mwifiex_txinfo *tx_info = MWIFIEX_SKB_TXCB(skb);
50 u8 pad;
52 if (!skb->len) {
53 dev_err(adapter->dev, "Tx: bad packet length: %d\n",
54 skb->len);
55 tx_info->status_code = -1;
56 return skb->data;
59 /* If skb->data is not aligned; add padding */
60 pad = (4 - (((void *)skb->data - NULL) & 0x3)) % 4;
62 BUG_ON(skb_headroom(skb) < (sizeof(*local_tx_pd) + INTF_HEADER_LEN
63 + pad));
64 skb_push(skb, sizeof(*local_tx_pd) + pad);
66 local_tx_pd = (struct txpd *) skb->data;
67 memset(local_tx_pd, 0, sizeof(struct txpd));
68 local_tx_pd->bss_num = priv->bss_num;
69 local_tx_pd->bss_type = priv->bss_type;
70 local_tx_pd->tx_pkt_length = cpu_to_le16((u16) (skb->len -
71 (sizeof(struct txpd) + pad)));
73 local_tx_pd->priority = (u8) skb->priority;
74 local_tx_pd->pkt_delay_2ms =
75 mwifiex_wmm_compute_drv_pkt_delay(priv, skb);
77 if (local_tx_pd->priority <
78 ARRAY_SIZE(priv->wmm.user_pri_pkt_tx_ctrl))
80 * Set the priority specific tx_control field, setting of 0 will
81 * cause the default value to be used later in this function
83 local_tx_pd->tx_control =
84 cpu_to_le32(priv->wmm.user_pri_pkt_tx_ctrl[local_tx_pd->
85 priority]);
87 if (adapter->pps_uapsd_mode) {
88 if (mwifiex_check_last_packet_indication(priv)) {
89 adapter->tx_lock_flag = true;
90 local_tx_pd->flags =
91 MWIFIEX_TxPD_POWER_MGMT_LAST_PACKET;
95 /* Offset of actual data */
96 local_tx_pd->tx_pkt_offset = cpu_to_le16(sizeof(struct txpd) + pad);
98 /* make space for INTF_HEADER_LEN */
99 skb_push(skb, INTF_HEADER_LEN);
101 if (!local_tx_pd->tx_control)
102 /* TxCtrl set by user or default */
103 local_tx_pd->tx_control = cpu_to_le32(priv->pkt_tx_ctrl);
105 return skb->data;
109 * This function tells firmware to send a NULL data packet.
111 * The function creates a NULL data packet with TxPD and sends to the
112 * firmware for transmission, with highest priority setting.
114 int mwifiex_send_null_packet(struct mwifiex_private *priv, u8 flags)
116 struct mwifiex_adapter *adapter = priv->adapter;
117 struct txpd *local_tx_pd;
118 /* sizeof(struct txpd) + Interface specific header */
119 #define NULL_PACKET_HDR 64
120 u32 data_len = NULL_PACKET_HDR;
121 struct sk_buff *skb;
122 int ret;
123 struct mwifiex_txinfo *tx_info = NULL;
125 if (adapter->surprise_removed)
126 return -1;
128 if (!priv->media_connected)
129 return -1;
131 if (adapter->data_sent)
132 return -1;
134 skb = dev_alloc_skb(data_len);
135 if (!skb)
136 return -1;
138 tx_info = MWIFIEX_SKB_TXCB(skb);
139 tx_info->bss_index = priv->bss_index;
140 skb_reserve(skb, sizeof(struct txpd) + INTF_HEADER_LEN);
141 skb_push(skb, sizeof(struct txpd));
143 local_tx_pd = (struct txpd *) skb->data;
144 local_tx_pd->tx_control = cpu_to_le32(priv->pkt_tx_ctrl);
145 local_tx_pd->flags = flags;
146 local_tx_pd->priority = WMM_HIGHEST_PRIORITY;
147 local_tx_pd->tx_pkt_offset = cpu_to_le16(sizeof(struct txpd));
148 local_tx_pd->bss_num = priv->bss_num;
149 local_tx_pd->bss_type = priv->bss_type;
151 skb_push(skb, INTF_HEADER_LEN);
153 ret = adapter->if_ops.host_to_card(adapter, MWIFIEX_TYPE_DATA,
154 skb->data, skb->len, NULL);
155 switch (ret) {
156 case -EBUSY:
157 adapter->data_sent = true;
158 /* Fall through FAILURE handling */
159 case -1:
160 dev_kfree_skb_any(skb);
161 dev_err(adapter->dev, "%s: host_to_card failed: ret=%d\n",
162 __func__, ret);
163 adapter->dbg.num_tx_host_to_card_failure++;
164 break;
165 case 0:
166 dev_kfree_skb_any(skb);
167 dev_dbg(adapter->dev, "data: %s: host_to_card succeeded\n",
168 __func__);
169 adapter->tx_lock_flag = true;
170 break;
171 case -EINPROGRESS:
172 break;
173 default:
174 break;
177 return ret;
181 * This function checks if we need to send last packet indication.
184 mwifiex_check_last_packet_indication(struct mwifiex_private *priv)
186 struct mwifiex_adapter *adapter = priv->adapter;
187 u8 ret = false;
189 if (!adapter->sleep_period.period)
190 return ret;
191 if (mwifiex_wmm_lists_empty(adapter))
192 ret = true;
194 if (ret && !adapter->cmd_sent && !adapter->curr_cmd
195 && !is_command_pending(adapter)) {
196 adapter->delay_null_pkt = false;
197 ret = true;
198 } else {
199 ret = false;
200 adapter->delay_null_pkt = true;
202 return ret;