2 * Copyright (c) 2014 Redpine Signals Inc.
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.
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.
18 #include "rsi_common.h"
21 * rsi_determine_min_weight_queue() - This function determines the queue with
23 * @common: Pointer to the driver private structure.
25 * Return: q_num: Corresponding queue number.
27 static u8
rsi_determine_min_weight_queue(struct rsi_common
*common
)
29 struct wmm_qinfo
*tx_qinfo
= common
->tx_qinfo
;
33 for (ii
= 0; ii
< NUM_EDCA_QUEUES
; ii
++) {
34 q_len
= skb_queue_len(&common
->tx_queue
[ii
]);
35 if ((tx_qinfo
[ii
].pkt_contended
) && q_len
) {
36 common
->min_weight
= tx_qinfo
[ii
].weight
;
44 * rsi_recalculate_weights() - This function recalculates the weights
45 * corresponding to each queue.
46 * @common: Pointer to the driver private structure.
48 * Return: recontend_queue bool variable
50 static bool rsi_recalculate_weights(struct rsi_common
*common
)
52 struct wmm_qinfo
*tx_qinfo
= common
->tx_qinfo
;
53 bool recontend_queue
= false;
57 for (ii
= 0; ii
< NUM_EDCA_QUEUES
; ii
++) {
58 q_len
= skb_queue_len(&common
->tx_queue
[ii
]);
59 /* Check for the need of contention */
61 if (tx_qinfo
[ii
].pkt_contended
) {
63 ((tx_qinfo
[ii
].weight
> common
->min_weight
) ?
64 tx_qinfo
[ii
].weight
- common
->min_weight
: 0);
66 tx_qinfo
[ii
].pkt_contended
= 1;
67 tx_qinfo
[ii
].weight
= tx_qinfo
[ii
].wme_params
;
68 recontend_queue
= true;
70 } else { /* No packets so no contention */
71 tx_qinfo
[ii
].weight
= 0;
72 tx_qinfo
[ii
].pkt_contended
= 0;
76 return recontend_queue
;
80 * rsi_core_determine_hal_queue() - This function determines the queue from
81 * which packet has to be dequeued.
82 * @common: Pointer to the driver private structure.
84 * Return: q_num: Corresponding queue number on success.
86 static u8
rsi_core_determine_hal_queue(struct rsi_common
*common
)
88 bool recontend_queue
= false;
90 u8 q_num
= INVALID_QUEUE
;
93 if (skb_queue_len(&common
->tx_queue
[MGMT_SOFT_Q
])) {
94 if (!common
->mgmt_q_block
)
99 if (common
->pkt_cnt
!= 0) {
101 return common
->selected_qnum
;
106 recontend_queue
= false;
108 q_num
= rsi_determine_min_weight_queue(common
);
109 q_len
= skb_queue_len(&common
->tx_queue
[ii
]);
112 /* Selecting the queue with least back off */
113 for (; ii
< NUM_EDCA_QUEUES
; ii
++) {
114 if (((common
->tx_qinfo
[ii
].pkt_contended
) &&
115 (common
->tx_qinfo
[ii
].weight
< min
)) && q_len
) {
116 min
= common
->tx_qinfo
[ii
].weight
;
121 common
->tx_qinfo
[q_num
].pkt_contended
= 0;
122 /* Adjust the back off values for all queues again */
123 recontend_queue
= rsi_recalculate_weights(common
);
125 q_len
= skb_queue_len(&common
->tx_queue
[q_num
]);
127 /* If any queues are freshly contended and the selected queue
128 * doesn't have any packets
129 * then get the queue number again with fresh values
134 q_num
= INVALID_QUEUE
;
138 common
->selected_qnum
= q_num
;
139 q_len
= skb_queue_len(&common
->tx_queue
[q_num
]);
141 switch (common
->selected_qnum
) {
143 if (q_len
> MAX_CONTINUOUS_VO_PKTS
)
144 common
->pkt_cnt
= (MAX_CONTINUOUS_VO_PKTS
- 1);
146 common
->pkt_cnt
= --q_len
;
150 if (q_len
> MAX_CONTINUOUS_VI_PKTS
)
151 common
->pkt_cnt
= (MAX_CONTINUOUS_VI_PKTS
- 1);
153 common
->pkt_cnt
= --q_len
;
166 * rsi_core_queue_pkt() - This functions enqueues the packet to the queue
167 * specified by the queue number.
168 * @common: Pointer to the driver private structure.
169 * @skb: Pointer to the socket buffer structure.
173 static void rsi_core_queue_pkt(struct rsi_common
*common
,
176 u8 q_num
= skb
->priority
;
177 if (q_num
>= NUM_SOFT_QUEUES
) {
178 rsi_dbg(ERR_ZONE
, "%s: Invalid Queue Number: q_num = %d\n",
184 skb_queue_tail(&common
->tx_queue
[q_num
], skb
);
188 * rsi_core_dequeue_pkt() - This functions dequeues the packet from the queue
189 * specified by the queue number.
190 * @common: Pointer to the driver private structure.
191 * @q_num: Queue number.
193 * Return: Pointer to sk_buff structure.
195 static struct sk_buff
*rsi_core_dequeue_pkt(struct rsi_common
*common
,
198 if (q_num
>= NUM_SOFT_QUEUES
) {
199 rsi_dbg(ERR_ZONE
, "%s: Invalid Queue Number: q_num = %d\n",
204 return skb_dequeue(&common
->tx_queue
[q_num
]);
208 * rsi_core_qos_processor() - This function is used to determine the wmm queue
209 * based on the backoff procedure. Data packets are
210 * dequeued from the selected hal queue and sent to
212 * @common: Pointer to the driver private structure.
216 void rsi_core_qos_processor(struct rsi_common
*common
)
218 struct rsi_hw
*adapter
= common
->priv
;
220 unsigned long tstamp_1
, tstamp_2
;
226 q_num
= rsi_core_determine_hal_queue(common
);
227 rsi_dbg(DATA_TX_ZONE
,
228 "%s: Queue number = %d\n", __func__
, q_num
);
230 if (q_num
== INVALID_QUEUE
) {
231 rsi_dbg(DATA_TX_ZONE
, "%s: No More Pkt\n", __func__
);
235 mutex_lock(&common
->tx_rxlock
);
237 status
= adapter
->check_hw_queue_status(adapter
, q_num
);
239 mutex_unlock(&common
->tx_rxlock
);
243 if ((q_num
< MGMT_SOFT_Q
) &&
244 ((skb_queue_len(&common
->tx_queue
[q_num
])) <=
245 MIN_DATA_QUEUE_WATER_MARK
)) {
246 if (ieee80211_queue_stopped(adapter
->hw
, WME_AC(q_num
)))
247 ieee80211_wake_queue(adapter
->hw
,
251 skb
= rsi_core_dequeue_pkt(common
, q_num
);
253 mutex_unlock(&common
->tx_rxlock
);
257 if (q_num
== MGMT_SOFT_Q
)
258 status
= rsi_send_mgmt_pkt(common
, skb
);
260 status
= rsi_send_data_pkt(common
, skb
);
263 mutex_unlock(&common
->tx_rxlock
);
267 common
->tx_stats
.total_tx_pkt_send
[q_num
]++;
270 mutex_unlock(&common
->tx_rxlock
);
272 if (tstamp_2
> tstamp_1
+ (300 * HZ
/ 1000))
278 * rsi_core_xmit() - This function transmits the packets received from mac80211
279 * @common: Pointer to the driver private structure.
280 * @skb: Pointer to the socket buffer structure.
284 void rsi_core_xmit(struct rsi_common
*common
, struct sk_buff
*skb
)
286 struct rsi_hw
*adapter
= common
->priv
;
287 struct ieee80211_tx_info
*info
;
288 struct skb_info
*tx_params
;
289 struct ieee80211_hdr
*tmp_hdr
= NULL
;
292 if ((!skb
) || (!skb
->len
)) {
293 rsi_dbg(ERR_ZONE
, "%s: Null skb/zero Length packet\n",
297 info
= IEEE80211_SKB_CB(skb
);
298 tx_params
= (struct skb_info
*)info
->driver_data
;
299 tmp_hdr
= (struct ieee80211_hdr
*)&skb
->data
[0];
301 if (common
->fsm_state
!= FSM_MAC_INIT_DONE
) {
302 rsi_dbg(ERR_ZONE
, "%s: FSM state not open\n", __func__
);
306 if ((ieee80211_is_mgmt(tmp_hdr
->frame_control
)) ||
307 (ieee80211_is_ctl(tmp_hdr
->frame_control
))) {
309 skb
->priority
= q_num
;
311 if (ieee80211_is_data_qos(tmp_hdr
->frame_control
)) {
312 tid
= (skb
->data
[24] & IEEE80211_QOS_TID
);
313 skb
->priority
= TID_TO_WME_AC(tid
);
315 tid
= IEEE80211_NONQOS_TID
;
316 skb
->priority
= BE_Q
;
318 q_num
= skb
->priority
;
319 tx_params
->tid
= tid
;
320 tx_params
->sta_id
= 0;
323 if ((q_num
!= MGMT_SOFT_Q
) &&
324 ((skb_queue_len(&common
->tx_queue
[q_num
]) + 1) >=
325 DATA_QUEUE_WATER_MARK
)) {
326 if (!ieee80211_queue_stopped(adapter
->hw
, WME_AC(q_num
)))
327 ieee80211_stop_queue(adapter
->hw
, WME_AC(q_num
));
328 rsi_set_event(&common
->tx_thread
.event
);
332 rsi_core_queue_pkt(common
, skb
);
333 rsi_dbg(DATA_TX_ZONE
, "%s: ===> Scheduling TX thead <===\n", __func__
);
334 rsi_set_event(&common
->tx_thread
.event
);
339 rsi_dbg(ERR_ZONE
, "%s: Failed to queue packet\n", __func__
);
340 /* Dropping pkt here */
341 ieee80211_free_txskb(common
->priv
->hw
, skb
);