2 * Copyright (c) 2004-2011 Atheros Communications 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.
20 static u8 ath6kl_ibss_map_epid(struct sk_buff *skb, struct net_device *dev,
23 struct ath6kl *ar = ath6kl_priv(dev);
24 struct ethhdr *eth_hdr;
30 eth_hdr = (struct ethhdr *) (datap + sizeof(struct wmi_data_hdr));
32 if (is_multicast_ether_addr(eth_hdr->h_dest))
35 for (i = 0; i < ar->node_num; i++) {
36 if (memcmp(eth_hdr->h_dest, ar->node_map[i].mac_addr,
39 ar->node_map[i].tx_pend++;
40 return ar->node_map[i].ep_id;
43 if ((ep_map == -1) && !ar->node_map[i].tx_pend)
48 ep_map = ar->node_num;
50 if (ar->node_num > MAX_NODE_NUM)
51 return ENDPOINT_UNUSED;
54 memcpy(ar->node_map[ep_map].mac_addr, eth_hdr->h_dest, ETH_ALEN);
56 for (i = ENDPOINT_2; i <= ENDPOINT_5; i++) {
57 if (!ar->tx_pending[i]) {
58 ar->node_map[ep_map].ep_id = i;
63 * No free endpoint is available, start redistribution on
64 * the inuse endpoints.
66 if (i == ENDPOINT_5) {
67 ar->node_map[ep_map].ep_id = ar->next_ep_id;
69 if (ar->next_ep_id > ENDPOINT_5)
70 ar->next_ep_id = ENDPOINT_2;
75 ar->node_map[ep_map].tx_pend++;
77 return ar->node_map[ep_map].ep_id;
80 static bool ath6kl_powersave_ap(struct ath6kl_vif *vif, struct sk_buff *skb,
83 struct ethhdr *datap = (struct ethhdr *) skb->data;
84 struct ath6kl_sta *conn = NULL;
85 bool ps_queued = false, is_psq_empty = false;
86 struct ath6kl *ar = vif->ar;
88 if (is_multicast_ether_addr(datap->h_dest)) {
92 for (ctr = 0; ctr < AP_MAX_NUM_STA; ctr++) {
93 if (ar->sta_list[ctr].sta_flags & STA_PS_SLEEP) {
101 * If this transmit is not because of a Dtim Expiry
104 if (!test_bit(DTIM_EXPIRED, &vif->flags)) {
105 bool is_mcastq_empty = false;
107 spin_lock_bh(&ar->mcastpsq_lock);
109 skb_queue_empty(&ar->mcastpsq);
110 skb_queue_tail(&ar->mcastpsq, skb);
111 spin_unlock_bh(&ar->mcastpsq_lock);
114 * If this is the first Mcast pkt getting
115 * queued indicate to the target to set the
116 * BitmapControl LSB of the TIM IE.
119 ath6kl_wmi_set_pvb_cmd(ar->wmi,
126 * This transmit is because of Dtim expiry.
127 * Determine if MoreData bit has to be set.
129 spin_lock_bh(&ar->mcastpsq_lock);
130 if (!skb_queue_empty(&ar->mcastpsq))
132 spin_unlock_bh(&ar->mcastpsq_lock);
136 conn = ath6kl_find_sta(vif, datap->h_dest);
140 /* Inform the caller that the skb is consumed */
144 if (conn->sta_flags & STA_PS_SLEEP) {
145 if (!(conn->sta_flags & STA_PS_POLLED)) {
146 /* Queue the frames if the STA is sleeping */
147 spin_lock_bh(&conn->psq_lock);
148 is_psq_empty = skb_queue_empty(&conn->psq);
149 skb_queue_tail(&conn->psq, skb);
150 spin_unlock_bh(&conn->psq_lock);
153 * If this is the first pkt getting queued
154 * for this STA, update the PVB for this
158 ath6kl_wmi_set_pvb_cmd(ar->wmi,
165 * This tx is because of a PsPoll.
166 * Determine if MoreData bit has to be set.
168 spin_lock_bh(&conn->psq_lock);
169 if (!skb_queue_empty(&conn->psq))
171 spin_unlock_bh(&conn->psq_lock);
181 int ath6kl_control_tx(void *devt, struct sk_buff *skb,
182 enum htc_endpoint_id eid)
184 struct ath6kl *ar = devt;
186 struct ath6kl_cookie *cookie = NULL;
188 spin_lock_bh(&ar->lock);
190 ath6kl_dbg(ATH6KL_DBG_WLAN_TX,
191 "%s: skb=0x%p, len=0x%x eid =%d\n", __func__,
194 if (test_bit(WMI_CTRL_EP_FULL, &ar->flag) && (eid == ar->ctrl_ep)) {
196 * Control endpoint is full, don't allocate resources, we
197 * are just going to drop this packet.
200 ath6kl_err("wmi ctrl ep full, dropping pkt : 0x%p, len:%d\n",
203 cookie = ath6kl_alloc_cookie(ar);
205 if (cookie == NULL) {
206 spin_unlock_bh(&ar->lock);
211 ar->tx_pending[eid]++;
213 if (eid != ar->ctrl_ep)
214 ar->total_tx_data_pend++;
216 spin_unlock_bh(&ar->lock);
220 set_htc_pkt_info(&cookie->htc_pkt, cookie, skb->data, skb->len,
221 eid, ATH6KL_CONTROL_PKT_TAG);
224 * This interface is asynchronous, if there is an error, cleanup
225 * will happen in the TX completion callback.
227 ath6kl_htc_tx(ar->htc_target, &cookie->htc_pkt);
236 int ath6kl_data_tx(struct sk_buff *skb, struct net_device *dev)
238 struct ath6kl *ar = ath6kl_priv(dev);
239 struct ath6kl_cookie *cookie = NULL;
240 enum htc_endpoint_id eid = ENDPOINT_UNUSED;
241 struct ath6kl_vif *vif = netdev_priv(dev);
243 u16 htc_tag = ATH6KL_DATA_PKT_TAG;
244 u8 ac = 99 ; /* initialize to unmapped ac */
245 bool chk_adhoc_ps_mapping = false, more_data = false;
248 ath6kl_dbg(ATH6KL_DBG_WLAN_TX,
249 "%s: skb=0x%p, data=0x%p, len=0x%x\n", __func__,
250 skb, skb->data, skb->len);
252 /* If target is not associated */
253 if (!test_bit(CONNECTED, &vif->flags)) {
258 if (!test_bit(WMI_READY, &ar->flag))
261 /* AP mode Power saving processing */
262 if (vif->nw_type == AP_NETWORK) {
263 if (ath6kl_powersave_ap(vif, skb, &more_data))
267 if (test_bit(WMI_ENABLED, &ar->flag)) {
268 if (skb_headroom(skb) < dev->needed_headroom) {
269 struct sk_buff *tmp_skb = skb;
271 skb = skb_realloc_headroom(skb, dev->needed_headroom);
274 vif->net_stats.tx_dropped++;
279 if (ath6kl_wmi_dix_2_dot3(ar->wmi, skb)) {
280 ath6kl_err("ath6kl_wmi_dix_2_dot3 failed\n");
284 if (ath6kl_wmi_data_hdr_add(ar->wmi, skb, DATA_MSGTYPE,
285 more_data, 0, 0, NULL,
287 ath6kl_err("wmi_data_hdr_add failed\n");
291 if ((vif->nw_type == ADHOC_NETWORK) &&
292 ar->ibss_ps_enable && test_bit(CONNECTED, &vif->flags))
293 chk_adhoc_ps_mapping = true;
295 /* get the stream mapping */
296 ret = ath6kl_wmi_implicit_create_pstream(ar->wmi,
297 vif->fw_vif_idx, skb,
298 0, test_bit(WMM_ENABLED, &vif->flags), &ac);
305 spin_lock_bh(&ar->lock);
307 if (chk_adhoc_ps_mapping)
308 eid = ath6kl_ibss_map_epid(skb, dev, &map_no);
310 eid = ar->ac2ep_map[ac];
312 if (eid == 0 || eid == ENDPOINT_UNUSED) {
313 ath6kl_err("eid %d is not mapped!\n", eid);
314 spin_unlock_bh(&ar->lock);
318 /* allocate resource for this packet */
319 cookie = ath6kl_alloc_cookie(ar);
322 spin_unlock_bh(&ar->lock);
326 /* update counts while the lock is held */
327 ar->tx_pending[eid]++;
328 ar->total_tx_data_pend++;
330 spin_unlock_bh(&ar->lock);
332 if (!IS_ALIGNED((unsigned long) skb->data - HTC_HDR_LENGTH, 4) &&
335 * We will touch (move the buffer data to align it. Since the
336 * skb buffer is cloned and not only the header is changed, we
337 * have to copy it to allow the changes. Since we are copying
338 * the data here, we may as well align it by reserving suitable
339 * headroom to avoid the memmove in ath6kl_htc_tx_buf_align().
341 struct sk_buff *nskb;
343 nskb = skb_copy_expand(skb, HTC_HDR_LENGTH, 0, GFP_ATOMIC);
351 cookie->map_no = map_no;
352 set_htc_pkt_info(&cookie->htc_pkt, cookie, skb->data, skb->len,
355 ath6kl_dbg_dump(ATH6KL_DBG_RAW_BYTES, __func__, "tx ",
356 skb->data, skb->len);
359 * HTC interface is asynchronous, if this fails, cleanup will
360 * happen in the ath6kl_tx_complete callback.
362 ath6kl_htc_tx(ar->htc_target, &cookie->htc_pkt);
369 vif->net_stats.tx_dropped++;
370 vif->net_stats.tx_aborted_errors++;
375 /* indicate tx activity or inactivity on a WMI stream */
376 void ath6kl_indicate_tx_activity(void *devt, u8 traffic_class, bool active)
378 struct ath6kl *ar = devt;
379 enum htc_endpoint_id eid;
382 eid = ar->ac2ep_map[traffic_class];
384 if (!test_bit(WMI_ENABLED, &ar->flag))
387 spin_lock_bh(&ar->lock);
389 ar->ac_stream_active[traffic_class] = active;
393 * Keep track of the active stream with the highest
396 if (ar->ac_stream_pri_map[traffic_class] >
397 ar->hiac_stream_active_pri)
398 /* set the new highest active priority */
399 ar->hiac_stream_active_pri =
400 ar->ac_stream_pri_map[traffic_class];
404 * We may have to search for the next active stream
405 * that is the highest priority.
407 if (ar->hiac_stream_active_pri ==
408 ar->ac_stream_pri_map[traffic_class]) {
410 * The highest priority stream just went inactive
411 * reset and search for the "next" highest "active"
414 ar->hiac_stream_active_pri = 0;
416 for (i = 0; i < WMM_NUM_AC; i++) {
417 if (ar->ac_stream_active[i] &&
418 (ar->ac_stream_pri_map[i] >
419 ar->hiac_stream_active_pri))
421 * Set the new highest active
424 ar->hiac_stream_active_pri =
425 ar->ac_stream_pri_map[i];
430 spin_unlock_bh(&ar->lock);
433 /* notify HTC, this may cause credit distribution changes */
434 ath6kl_htc_indicate_activity_change(ar->htc_target, eid, active);
437 enum htc_send_full_action ath6kl_tx_queue_full(struct htc_target *target,
438 struct htc_packet *packet)
440 struct ath6kl *ar = target->dev->ar;
441 struct ath6kl_vif *vif;
442 enum htc_endpoint_id endpoint = packet->endpoint;
443 enum htc_send_full_action action = HTC_SEND_FULL_KEEP;
445 if (endpoint == ar->ctrl_ep) {
447 * Under normal WMI if this is getting full, then something
448 * is running rampant the host should not be exhausting the
449 * WMI queue with too many commands the only exception to
450 * this is during testing using endpointping.
452 spin_lock_bh(&ar->lock);
453 set_bit(WMI_CTRL_EP_FULL, &ar->flag);
454 spin_unlock_bh(&ar->lock);
455 ath6kl_err("wmi ctrl ep is full\n");
459 if (packet->info.tx.tag == ATH6KL_CONTROL_PKT_TAG)
463 * The last MAX_HI_COOKIE_NUM "batch" of cookies are reserved for
464 * the highest active stream.
466 if (ar->ac_stream_pri_map[ar->ep2ac_map[endpoint]] <
467 ar->hiac_stream_active_pri &&
468 ar->cookie_count <= MAX_HI_COOKIE_NUM)
470 * Give preference to the highest priority stream by
471 * dropping the packets which overflowed.
473 action = HTC_SEND_FULL_DROP;
476 spin_lock_bh(&ar->list_lock);
477 list_for_each_entry(vif, &ar->vif_list, list) {
478 if (vif->nw_type == ADHOC_NETWORK ||
479 action != HTC_SEND_FULL_DROP) {
480 spin_unlock_bh(&ar->list_lock);
482 spin_lock_bh(&vif->if_lock);
483 set_bit(NETQ_STOPPED, &vif->flags);
484 spin_unlock_bh(&vif->if_lock);
485 netif_stop_queue(vif->ndev);
490 spin_unlock_bh(&ar->list_lock);
495 /* TODO this needs to be looked at */
496 static void ath6kl_tx_clear_node_map(struct ath6kl_vif *vif,
497 enum htc_endpoint_id eid, u32 map_no)
499 struct ath6kl *ar = vif->ar;
502 if (vif->nw_type != ADHOC_NETWORK)
505 if (!ar->ibss_ps_enable)
508 if (eid == ar->ctrl_ep)
515 ar->node_map[map_no].tx_pend--;
517 if (ar->node_map[map_no].tx_pend)
520 if (map_no != (ar->node_num - 1))
523 for (i = ar->node_num; i > 0; i--) {
524 if (ar->node_map[i - 1].tx_pend)
527 memset(&ar->node_map[i - 1], 0,
528 sizeof(struct ath6kl_node_mapping));
533 void ath6kl_tx_complete(void *context, struct list_head *packet_queue)
535 struct ath6kl *ar = context;
536 struct sk_buff_head skb_queue;
537 struct htc_packet *packet;
539 struct ath6kl_cookie *ath6kl_cookie;
542 enum htc_endpoint_id eid;
543 bool wake_event = false;
544 bool flushing[ATH6KL_VIF_MAX] = {false};
546 struct ath6kl_vif *vif;
548 skb_queue_head_init(&skb_queue);
550 /* lock the driver as we update internal state */
551 spin_lock_bh(&ar->lock);
553 /* reap completed packets */
554 while (!list_empty(packet_queue)) {
556 packet = list_first_entry(packet_queue, struct htc_packet,
558 list_del(&packet->list);
560 ath6kl_cookie = (struct ath6kl_cookie *)packet->pkt_cntxt;
564 status = packet->status;
565 skb = ath6kl_cookie->skb;
566 eid = packet->endpoint;
567 map_no = ath6kl_cookie->map_no;
569 if (!skb || !skb->data)
572 __skb_queue_tail(&skb_queue, skb);
574 if (!status && (packet->act_len != skb->len))
577 ar->tx_pending[eid]--;
579 if (eid != ar->ctrl_ep)
580 ar->total_tx_data_pend--;
582 if (eid == ar->ctrl_ep) {
583 if (test_bit(WMI_CTRL_EP_FULL, &ar->flag))
584 clear_bit(WMI_CTRL_EP_FULL, &ar->flag);
586 if (ar->tx_pending[eid] == 0)
590 if (eid == ar->ctrl_ep) {
591 if_idx = wmi_cmd_hdr_get_if_idx(
592 (struct wmi_cmd_hdr *) packet->buf);
594 if_idx = wmi_data_hdr_get_if_idx(
595 (struct wmi_data_hdr *) packet->buf);
598 vif = ath6kl_get_vif_by_index(ar, if_idx);
600 ath6kl_free_cookie(ar, ath6kl_cookie);
605 if (status == -ECANCELED)
606 /* a packet was flushed */
607 flushing[if_idx] = true;
609 vif->net_stats.tx_errors++;
611 if (status != -ENOSPC && status != -ECANCELED)
612 ath6kl_warn("tx complete error: %d\n", status);
614 ath6kl_dbg(ATH6KL_DBG_WLAN_TX,
615 "%s: skb=0x%p data=0x%p len=0x%x eid=%d %s\n",
616 __func__, skb, packet->buf, packet->act_len,
619 ath6kl_dbg(ATH6KL_DBG_WLAN_TX,
620 "%s: skb=0x%p data=0x%p len=0x%x eid=%d %s\n",
621 __func__, skb, packet->buf, packet->act_len,
624 flushing[if_idx] = false;
625 vif->net_stats.tx_packets++;
626 vif->net_stats.tx_bytes += skb->len;
629 ath6kl_tx_clear_node_map(vif, eid, map_no);
631 ath6kl_free_cookie(ar, ath6kl_cookie);
633 if (test_bit(NETQ_STOPPED, &vif->flags))
634 clear_bit(NETQ_STOPPED, &vif->flags);
637 spin_unlock_bh(&ar->lock);
639 __skb_queue_purge(&skb_queue);
642 spin_lock_bh(&ar->list_lock);
643 list_for_each_entry(vif, &ar->vif_list, list) {
644 if (test_bit(CONNECTED, &vif->flags) &&
645 !flushing[vif->fw_vif_idx]) {
646 spin_unlock_bh(&ar->list_lock);
647 netif_wake_queue(vif->ndev);
648 spin_lock_bh(&ar->list_lock);
651 spin_unlock_bh(&ar->list_lock);
654 wake_up(&ar->event_wq);
660 spin_unlock_bh(&ar->lock);
664 void ath6kl_tx_data_cleanup(struct ath6kl *ar)
668 /* flush all the data (non-control) streams */
669 for (i = 0; i < WMM_NUM_AC; i++)
670 ath6kl_htc_flush_txep(ar->htc_target, ar->ac2ep_map[i],
671 ATH6KL_DATA_PKT_TAG);
676 static void ath6kl_deliver_frames_to_nw_stack(struct net_device *dev,
684 if (!(skb->dev->flags & IFF_UP)) {
689 skb->protocol = eth_type_trans(skb, skb->dev);
694 static void ath6kl_alloc_netbufs(struct sk_buff_head *q, u16 num)
699 skb = ath6kl_buf_alloc(ATH6KL_BUFFER_SIZE);
701 ath6kl_err("netbuf allocation failed\n");
704 skb_queue_tail(q, skb);
709 static struct sk_buff *aggr_get_free_skb(struct aggr_info *p_aggr)
711 struct sk_buff *skb = NULL;
713 if (skb_queue_len(&p_aggr->free_q) < (AGGR_NUM_OF_FREE_NETBUFS >> 2))
714 ath6kl_alloc_netbufs(&p_aggr->free_q, AGGR_NUM_OF_FREE_NETBUFS);
716 skb = skb_dequeue(&p_aggr->free_q);
721 void ath6kl_rx_refill(struct htc_target *target, enum htc_endpoint_id endpoint)
723 struct ath6kl *ar = target->dev->ar;
727 struct htc_packet *packet;
728 struct list_head queue;
730 n_buf_refill = ATH6KL_MAX_RX_BUFFERS -
731 ath6kl_htc_get_rxbuf_num(ar->htc_target, endpoint);
733 if (n_buf_refill <= 0)
736 INIT_LIST_HEAD(&queue);
738 ath6kl_dbg(ATH6KL_DBG_WLAN_RX,
739 "%s: providing htc with %d buffers at eid=%d\n",
740 __func__, n_buf_refill, endpoint);
742 for (rx_buf = 0; rx_buf < n_buf_refill; rx_buf++) {
743 skb = ath6kl_buf_alloc(ATH6KL_BUFFER_SIZE);
747 packet = (struct htc_packet *) skb->head;
748 if (!IS_ALIGNED((unsigned long) skb->data, 4))
749 skb->data = PTR_ALIGN(skb->data - 4, 4);
750 set_htc_rxpkt_info(packet, skb, skb->data,
751 ATH6KL_BUFFER_SIZE, endpoint);
752 list_add_tail(&packet->list, &queue);
755 if (!list_empty(&queue))
756 ath6kl_htc_add_rxbuf_multiple(ar->htc_target, &queue);
759 void ath6kl_refill_amsdu_rxbufs(struct ath6kl *ar, int count)
761 struct htc_packet *packet;
765 skb = ath6kl_buf_alloc(ATH6KL_AMSDU_BUFFER_SIZE);
769 packet = (struct htc_packet *) skb->head;
770 if (!IS_ALIGNED((unsigned long) skb->data, 4))
771 skb->data = PTR_ALIGN(skb->data - 4, 4);
772 set_htc_rxpkt_info(packet, skb, skb->data,
773 ATH6KL_AMSDU_BUFFER_SIZE, 0);
774 spin_lock_bh(&ar->lock);
775 list_add_tail(&packet->list, &ar->amsdu_rx_buffer_queue);
776 spin_unlock_bh(&ar->lock);
782 * Callback to allocate a receive buffer for a pending packet. We use a
783 * pre-allocated list of buffers of maximum AMSDU size (4K).
785 struct htc_packet *ath6kl_alloc_amsdu_rxbuf(struct htc_target *target,
786 enum htc_endpoint_id endpoint,
789 struct ath6kl *ar = target->dev->ar;
790 struct htc_packet *packet = NULL;
791 struct list_head *pkt_pos;
792 int refill_cnt = 0, depth = 0;
794 ath6kl_dbg(ATH6KL_DBG_WLAN_RX, "%s: eid=%d, len:%d\n",
795 __func__, endpoint, len);
797 if ((len <= ATH6KL_BUFFER_SIZE) ||
798 (len > ATH6KL_AMSDU_BUFFER_SIZE))
801 spin_lock_bh(&ar->lock);
803 if (list_empty(&ar->amsdu_rx_buffer_queue)) {
804 spin_unlock_bh(&ar->lock);
805 refill_cnt = ATH6KL_MAX_AMSDU_RX_BUFFERS;
809 packet = list_first_entry(&ar->amsdu_rx_buffer_queue,
810 struct htc_packet, list);
811 list_del(&packet->list);
812 list_for_each(pkt_pos, &ar->amsdu_rx_buffer_queue)
815 refill_cnt = ATH6KL_MAX_AMSDU_RX_BUFFERS - depth;
816 spin_unlock_bh(&ar->lock);
818 /* set actual endpoint ID */
819 packet->endpoint = endpoint;
822 if (refill_cnt >= ATH6KL_AMSDU_REFILL_THRESHOLD)
823 ath6kl_refill_amsdu_rxbufs(ar, refill_cnt);
828 static void aggr_slice_amsdu(struct aggr_info *p_aggr,
829 struct rxtid *rxtid, struct sk_buff *skb)
831 struct sk_buff *new_skb;
833 u16 frame_8023_len, payload_8023_len, mac_hdr_len, amsdu_len;
836 mac_hdr_len = sizeof(struct ethhdr);
837 framep = skb->data + mac_hdr_len;
838 amsdu_len = skb->len - mac_hdr_len;
840 while (amsdu_len > mac_hdr_len) {
841 hdr = (struct ethhdr *) framep;
842 payload_8023_len = ntohs(hdr->h_proto);
844 if (payload_8023_len < MIN_MSDU_SUBFRAME_PAYLOAD_LEN ||
845 payload_8023_len > MAX_MSDU_SUBFRAME_PAYLOAD_LEN) {
846 ath6kl_err("802.3 AMSDU frame bound check failed. len %d\n",
851 frame_8023_len = payload_8023_len + mac_hdr_len;
852 new_skb = aggr_get_free_skb(p_aggr);
854 ath6kl_err("no buffer available\n");
858 memcpy(new_skb->data, framep, frame_8023_len);
859 skb_put(new_skb, frame_8023_len);
860 if (ath6kl_wmi_dot3_2_dix(new_skb)) {
861 ath6kl_err("dot3_2_dix error\n");
862 dev_kfree_skb(new_skb);
866 skb_queue_tail(&rxtid->q, new_skb);
868 /* Is this the last subframe within this aggregate ? */
869 if ((amsdu_len - frame_8023_len) == 0)
872 /* Add the length of A-MSDU subframe padding bytes -
873 * Round to nearest word.
875 frame_8023_len = ALIGN(frame_8023_len, 4);
877 framep += frame_8023_len;
878 amsdu_len -= frame_8023_len;
884 static void aggr_deque_frms(struct aggr_info *p_aggr, u8 tid,
885 u16 seq_no, u8 order)
889 struct skb_hold_q *node;
890 u16 idx, idx_end, seq_end;
891 struct rxtid_stats *stats;
896 rxtid = &p_aggr->rx_tid[tid];
897 stats = &p_aggr->stat[tid];
899 idx = AGGR_WIN_IDX(rxtid->seq_next, rxtid->hold_q_sz);
902 * idx_end is typically the last possible frame in the window,
903 * but changes to 'the' seq_no, when BAR comes. If seq_no
904 * is non-zero, we will go up to that and stop.
905 * Note: last seq no in current window will occupy the same
906 * index position as index that is just previous to start.
907 * An imp point : if win_sz is 7, for seq_no space of 4095,
908 * then, there would be holes when sequence wrap around occurs.
909 * Target should judiciously choose the win_sz, based on
910 * this condition. For 4095, (TID_WINDOW_SZ = 2 x win_sz
911 * 2, 4, 8, 16 win_sz works fine).
912 * We must deque from "idx" to "idx_end", including both.
914 seq_end = seq_no ? seq_no : rxtid->seq_next;
915 idx_end = AGGR_WIN_IDX(seq_end, rxtid->hold_q_sz);
917 spin_lock_bh(&rxtid->lock);
920 node = &rxtid->hold_q[idx];
921 if ((order == 1) && (!node->skb))
926 aggr_slice_amsdu(p_aggr, rxtid, node->skb);
928 skb_queue_tail(&rxtid->q, node->skb);
933 rxtid->seq_next = ATH6KL_NEXT_SEQ_NO(rxtid->seq_next);
934 idx = AGGR_WIN_IDX(rxtid->seq_next, rxtid->hold_q_sz);
935 } while (idx != idx_end);
937 spin_unlock_bh(&rxtid->lock);
939 stats->num_delivered += skb_queue_len(&rxtid->q);
941 while ((skb = skb_dequeue(&rxtid->q)))
942 ath6kl_deliver_frames_to_nw_stack(p_aggr->dev, skb);
945 static bool aggr_process_recv_frm(struct aggr_info *agg_info, u8 tid,
947 bool is_amsdu, struct sk_buff *frame)
950 struct rxtid_stats *stats;
952 struct skb_hold_q *node;
953 u16 idx, st, cur, end;
954 bool is_queued = false;
957 rxtid = &agg_info->rx_tid[tid];
958 stats = &agg_info->stat[tid];
960 stats->num_into_aggr++;
964 aggr_slice_amsdu(agg_info, rxtid, frame);
967 while ((skb = skb_dequeue(&rxtid->q)))
968 ath6kl_deliver_frames_to_nw_stack(agg_info->dev,
974 /* Check the incoming sequence no, if it's in the window */
975 st = rxtid->seq_next;
977 end = (st + rxtid->hold_q_sz-1) & ATH6KL_MAX_SEQ_NO;
979 if (((st < end) && (cur < st || cur > end)) ||
980 ((st > end) && (cur > end) && (cur < st))) {
981 extended_end = (end + rxtid->hold_q_sz - 1) &
984 if (((end < extended_end) &&
985 (cur < end || cur > extended_end)) ||
986 ((end > extended_end) && (cur > extended_end) &&
988 aggr_deque_frms(agg_info, tid, 0, 0);
989 if (cur >= rxtid->hold_q_sz - 1)
990 rxtid->seq_next = cur - (rxtid->hold_q_sz - 1);
992 rxtid->seq_next = ATH6KL_MAX_SEQ_NO -
993 (rxtid->hold_q_sz - 2 - cur);
996 * Dequeue only those frames that are outside the
997 * new shifted window.
999 if (cur >= rxtid->hold_q_sz - 1)
1000 st = cur - (rxtid->hold_q_sz - 1);
1002 st = ATH6KL_MAX_SEQ_NO -
1003 (rxtid->hold_q_sz - 2 - cur);
1005 aggr_deque_frms(agg_info, tid, st, 0);
1011 idx = AGGR_WIN_IDX(seq_no, rxtid->hold_q_sz);
1013 node = &rxtid->hold_q[idx];
1015 spin_lock_bh(&rxtid->lock);
1018 * Is the cur frame duplicate or something beyond our window(hold_q
1019 * -> which is 2x, already)?
1021 * 1. Duplicate is easy - drop incoming frame.
1022 * 2. Not falling in current sliding window.
1023 * 2a. is the frame_seq_no preceding current tid_seq_no?
1024 * -> drop the frame. perhaps sender did not get our ACK.
1025 * this is taken care of above.
1026 * 2b. is the frame_seq_no beyond window(st, TID_WINDOW_SZ);
1027 * -> Taken care of it above, by moving window forward.
1029 dev_kfree_skb(node->skb);
1034 node->is_amsdu = is_amsdu;
1035 node->seq_no = seq_no;
1042 spin_unlock_bh(&rxtid->lock);
1044 aggr_deque_frms(agg_info, tid, 0, 1);
1046 if (agg_info->timer_scheduled)
1047 rxtid->progress = true;
1049 for (idx = 0 ; idx < rxtid->hold_q_sz; idx++) {
1050 if (rxtid->hold_q[idx].skb) {
1052 * There is a frame in the queue and no
1053 * timer so start a timer to ensure that
1054 * the frame doesn't remain stuck
1057 agg_info->timer_scheduled = true;
1058 mod_timer(&agg_info->timer,
1060 HZ * (AGGR_RX_TIMEOUT) / 1000));
1061 rxtid->progress = false;
1062 rxtid->timer_mon = true;
1070 void ath6kl_rx(struct htc_target *target, struct htc_packet *packet)
1072 struct ath6kl *ar = target->dev->ar;
1073 struct sk_buff *skb = packet->pkt_cntxt;
1074 struct wmi_rx_meta_v2 *meta;
1075 struct wmi_data_hdr *dhdr;
1077 u8 meta_type, dot11_hdr = 0;
1078 int status = packet->status;
1079 enum htc_endpoint_id ept = packet->endpoint;
1080 bool is_amsdu, prev_ps, ps_state = false;
1081 struct ath6kl_sta *conn = NULL;
1082 struct sk_buff *skb1 = NULL;
1083 struct ethhdr *datap = NULL;
1084 struct ath6kl_vif *vif;
1088 ath6kl_dbg(ATH6KL_DBG_WLAN_RX,
1089 "%s: ar=0x%p eid=%d, skb=0x%p, data=0x%p, len=0x%x status:%d",
1090 __func__, ar, ept, skb, packet->buf,
1091 packet->act_len, status);
1093 if (status || !(skb->data + HTC_HDR_LENGTH)) {
1098 skb_put(skb, packet->act_len + HTC_HDR_LENGTH);
1099 skb_pull(skb, HTC_HDR_LENGTH);
1101 if (ept == ar->ctrl_ep) {
1103 wmi_cmd_hdr_get_if_idx((struct wmi_cmd_hdr *) skb->data);
1106 wmi_data_hdr_get_if_idx((struct wmi_data_hdr *) skb->data);
1109 vif = ath6kl_get_vif_by_index(ar, if_idx);
1116 * Take lock to protect buffer counts and adaptive power throughput
1119 spin_lock_bh(&vif->if_lock);
1121 vif->net_stats.rx_packets++;
1122 vif->net_stats.rx_bytes += packet->act_len;
1124 spin_unlock_bh(&vif->if_lock);
1127 ath6kl_dbg_dump(ATH6KL_DBG_RAW_BYTES, __func__, "rx ",
1128 skb->data, skb->len);
1130 skb->dev = vif->ndev;
1132 if (!test_bit(WMI_ENABLED, &ar->flag)) {
1133 if (EPPING_ALIGNMENT_PAD > 0)
1134 skb_pull(skb, EPPING_ALIGNMENT_PAD);
1135 ath6kl_deliver_frames_to_nw_stack(vif->ndev, skb);
1139 ath6kl_check_wow_status(ar);
1141 if (ept == ar->ctrl_ep) {
1142 ath6kl_wmi_control_rx(ar->wmi, skb);
1146 min_hdr_len = sizeof(struct ethhdr) + sizeof(struct wmi_data_hdr) +
1147 sizeof(struct ath6kl_llc_snap_hdr);
1149 dhdr = (struct wmi_data_hdr *) skb->data;
1152 * In the case of AP mode we may receive NULL data frames
1153 * that do not have LLC hdr. They are 16 bytes in size.
1154 * Allow these frames in the AP mode.
1156 if (vif->nw_type != AP_NETWORK &&
1157 ((packet->act_len < min_hdr_len) ||
1158 (packet->act_len > WMI_MAX_AMSDU_RX_DATA_FRAME_LENGTH))) {
1159 ath6kl_info("frame len is too short or too long\n");
1160 vif->net_stats.rx_errors++;
1161 vif->net_stats.rx_length_errors++;
1166 /* Get the Power save state of the STA */
1167 if (vif->nw_type == AP_NETWORK) {
1168 meta_type = wmi_data_hdr_get_meta(dhdr);
1170 ps_state = !!((dhdr->info >> WMI_DATA_HDR_PS_SHIFT) &
1171 WMI_DATA_HDR_PS_MASK);
1173 offset = sizeof(struct wmi_data_hdr);
1175 switch (meta_type) {
1178 case WMI_META_VERSION_1:
1179 offset += sizeof(struct wmi_rx_meta_v1);
1181 case WMI_META_VERSION_2:
1182 offset += sizeof(struct wmi_rx_meta_v2);
1188 datap = (struct ethhdr *) (skb->data + offset);
1189 conn = ath6kl_find_sta(vif, datap->h_source);
1197 * If there is a change in PS state of the STA,
1198 * take appropriate steps:
1200 * 1. If Sleep-->Awake, flush the psq for the STA
1201 * Clear the PVB for the STA.
1202 * 2. If Awake-->Sleep, Starting queueing frames
1205 prev_ps = !!(conn->sta_flags & STA_PS_SLEEP);
1208 conn->sta_flags |= STA_PS_SLEEP;
1210 conn->sta_flags &= ~STA_PS_SLEEP;
1212 if (prev_ps ^ !!(conn->sta_flags & STA_PS_SLEEP)) {
1213 if (!(conn->sta_flags & STA_PS_SLEEP)) {
1214 struct sk_buff *skbuff = NULL;
1216 spin_lock_bh(&conn->psq_lock);
1217 while ((skbuff = skb_dequeue(&conn->psq))
1219 spin_unlock_bh(&conn->psq_lock);
1220 ath6kl_data_tx(skbuff, vif->ndev);
1221 spin_lock_bh(&conn->psq_lock);
1223 spin_unlock_bh(&conn->psq_lock);
1224 /* Clear the PVB for this STA */
1225 ath6kl_wmi_set_pvb_cmd(ar->wmi, vif->fw_vif_idx,
1230 /* drop NULL data frames here */
1231 if ((packet->act_len < min_hdr_len) ||
1233 WMI_MAX_AMSDU_RX_DATA_FRAME_LENGTH)) {
1239 is_amsdu = wmi_data_hdr_is_amsdu(dhdr) ? true : false;
1240 tid = wmi_data_hdr_get_up(dhdr);
1241 seq_no = wmi_data_hdr_get_seqno(dhdr);
1242 meta_type = wmi_data_hdr_get_meta(dhdr);
1243 dot11_hdr = wmi_data_hdr_get_dot11(dhdr);
1244 skb_pull(skb, sizeof(struct wmi_data_hdr));
1246 switch (meta_type) {
1247 case WMI_META_VERSION_1:
1248 skb_pull(skb, sizeof(struct wmi_rx_meta_v1));
1250 case WMI_META_VERSION_2:
1251 meta = (struct wmi_rx_meta_v2 *) skb->data;
1252 if (meta->csum_flags & 0x1) {
1253 skb->ip_summed = CHECKSUM_COMPLETE;
1254 skb->csum = (__force __wsum) meta->csum;
1256 skb_pull(skb, sizeof(struct wmi_rx_meta_v2));
1263 status = ath6kl_wmi_dot11_hdr_remove(ar->wmi, skb);
1265 status = ath6kl_wmi_dot3_2_dix(skb);
1269 * Drop frames that could not be processed (lack of
1276 if (!(vif->ndev->flags & IFF_UP)) {
1281 if (vif->nw_type == AP_NETWORK) {
1282 datap = (struct ethhdr *) skb->data;
1283 if (is_multicast_ether_addr(datap->h_dest))
1285 * Bcast/Mcast frames should be sent to the
1286 * OS stack as well as on the air.
1288 skb1 = skb_copy(skb, GFP_ATOMIC);
1291 * Search for a connected STA with dstMac
1292 * as the Mac address. If found send the
1293 * frame to it on the air else send the
1294 * frame up the stack.
1296 conn = ath6kl_find_sta(vif, datap->h_dest);
1298 if (conn && ar->intra_bss) {
1301 } else if (conn && !ar->intra_bss) {
1307 ath6kl_data_tx(skb1, vif->ndev);
1310 /* nothing to deliver up the stack */
1315 datap = (struct ethhdr *) skb->data;
1317 if (is_unicast_ether_addr(datap->h_dest) &&
1318 aggr_process_recv_frm(vif->aggr_cntxt, tid, seq_no,
1320 /* aggregation code will handle the skb */
1323 ath6kl_deliver_frames_to_nw_stack(vif->ndev, skb);
1326 static void aggr_timeout(unsigned long arg)
1329 struct aggr_info *p_aggr = (struct aggr_info *) arg;
1330 struct rxtid *rxtid;
1331 struct rxtid_stats *stats;
1333 for (i = 0; i < NUM_OF_TIDS; i++) {
1334 rxtid = &p_aggr->rx_tid[i];
1335 stats = &p_aggr->stat[i];
1337 if (!rxtid->aggr || !rxtid->timer_mon || rxtid->progress)
1340 stats->num_timeouts++;
1341 ath6kl_dbg(ATH6KL_DBG_AGGR,
1342 "aggr timeout (st %d end %d)\n",
1344 ((rxtid->seq_next + rxtid->hold_q_sz-1) &
1345 ATH6KL_MAX_SEQ_NO));
1346 aggr_deque_frms(p_aggr, i, 0, 0);
1349 p_aggr->timer_scheduled = false;
1351 for (i = 0; i < NUM_OF_TIDS; i++) {
1352 rxtid = &p_aggr->rx_tid[i];
1354 if (rxtid->aggr && rxtid->hold_q) {
1355 for (j = 0; j < rxtid->hold_q_sz; j++) {
1356 if (rxtid->hold_q[j].skb) {
1357 p_aggr->timer_scheduled = true;
1358 rxtid->timer_mon = true;
1359 rxtid->progress = false;
1364 if (j >= rxtid->hold_q_sz)
1365 rxtid->timer_mon = false;
1369 if (p_aggr->timer_scheduled)
1370 mod_timer(&p_aggr->timer,
1371 jiffies + msecs_to_jiffies(AGGR_RX_TIMEOUT));
1374 static void aggr_delete_tid_state(struct aggr_info *p_aggr, u8 tid)
1376 struct rxtid *rxtid;
1377 struct rxtid_stats *stats;
1379 if (!p_aggr || tid >= NUM_OF_TIDS)
1382 rxtid = &p_aggr->rx_tid[tid];
1383 stats = &p_aggr->stat[tid];
1386 aggr_deque_frms(p_aggr, tid, 0, 0);
1388 rxtid->aggr = false;
1389 rxtid->progress = false;
1390 rxtid->timer_mon = false;
1392 rxtid->seq_next = 0;
1393 rxtid->hold_q_sz = 0;
1395 kfree(rxtid->hold_q);
1396 rxtid->hold_q = NULL;
1398 memset(stats, 0, sizeof(struct rxtid_stats));
1401 void aggr_recv_addba_req_evt(struct ath6kl_vif *vif, u8 tid, u16 seq_no,
1404 struct aggr_info *p_aggr = vif->aggr_cntxt;
1405 struct rxtid *rxtid;
1406 struct rxtid_stats *stats;
1412 rxtid = &p_aggr->rx_tid[tid];
1413 stats = &p_aggr->stat[tid];
1415 if (win_sz < AGGR_WIN_SZ_MIN || win_sz > AGGR_WIN_SZ_MAX)
1416 ath6kl_dbg(ATH6KL_DBG_WLAN_RX, "%s: win_sz %d, tid %d\n",
1417 __func__, win_sz, tid);
1420 aggr_delete_tid_state(p_aggr, tid);
1422 rxtid->seq_next = seq_no;
1423 hold_q_size = TID_WINDOW_SZ(win_sz) * sizeof(struct skb_hold_q);
1424 rxtid->hold_q = kzalloc(hold_q_size, GFP_KERNEL);
1428 rxtid->win_sz = win_sz;
1429 rxtid->hold_q_sz = TID_WINDOW_SZ(win_sz);
1430 if (!skb_queue_empty(&rxtid->q))
1436 struct aggr_info *aggr_init(struct net_device *dev)
1438 struct aggr_info *p_aggr = NULL;
1439 struct rxtid *rxtid;
1442 p_aggr = kzalloc(sizeof(struct aggr_info), GFP_KERNEL);
1444 ath6kl_err("failed to alloc memory for aggr_node\n");
1448 p_aggr->aggr_sz = AGGR_SZ_DEFAULT;
1450 init_timer(&p_aggr->timer);
1451 p_aggr->timer.function = aggr_timeout;
1452 p_aggr->timer.data = (unsigned long) p_aggr;
1454 p_aggr->timer_scheduled = false;
1455 skb_queue_head_init(&p_aggr->free_q);
1457 ath6kl_alloc_netbufs(&p_aggr->free_q, AGGR_NUM_OF_FREE_NETBUFS);
1459 for (i = 0; i < NUM_OF_TIDS; i++) {
1460 rxtid = &p_aggr->rx_tid[i];
1461 rxtid->aggr = false;
1462 rxtid->progress = false;
1463 rxtid->timer_mon = false;
1464 skb_queue_head_init(&rxtid->q);
1465 spin_lock_init(&rxtid->lock);
1471 void aggr_recv_delba_req_evt(struct ath6kl_vif *vif, u8 tid)
1473 struct aggr_info *p_aggr = vif->aggr_cntxt;
1474 struct rxtid *rxtid;
1479 rxtid = &p_aggr->rx_tid[tid];
1482 aggr_delete_tid_state(p_aggr, tid);
1485 void aggr_reset_state(struct aggr_info *aggr_info)
1489 for (tid = 0; tid < NUM_OF_TIDS; tid++)
1490 aggr_delete_tid_state(aggr_info, tid);
1493 /* clean up our amsdu buffer list */
1494 void ath6kl_cleanup_amsdu_rxbufs(struct ath6kl *ar)
1496 struct htc_packet *packet, *tmp_pkt;
1498 spin_lock_bh(&ar->lock);
1499 if (list_empty(&ar->amsdu_rx_buffer_queue)) {
1500 spin_unlock_bh(&ar->lock);
1504 list_for_each_entry_safe(packet, tmp_pkt, &ar->amsdu_rx_buffer_queue,
1506 list_del(&packet->list);
1507 spin_unlock_bh(&ar->lock);
1508 dev_kfree_skb(packet->pkt_cntxt);
1509 spin_lock_bh(&ar->lock);
1512 spin_unlock_bh(&ar->lock);
1515 void aggr_module_destroy(struct aggr_info *aggr_info)
1517 struct rxtid *rxtid;
1523 if (aggr_info->timer_scheduled) {
1524 del_timer(&aggr_info->timer);
1525 aggr_info->timer_scheduled = false;
1528 for (i = 0; i < NUM_OF_TIDS; i++) {
1529 rxtid = &aggr_info->rx_tid[i];
1530 if (rxtid->hold_q) {
1531 for (k = 0; k < rxtid->hold_q_sz; k++)
1532 dev_kfree_skb(rxtid->hold_q[k].skb);
1533 kfree(rxtid->hold_q);
1536 skb_queue_purge(&rxtid->q);
1539 skb_queue_purge(&aggr_info->free_q);