1 /******************************************************************************
4 * Copyright(c) 2007 - 2010 Realtek Corporation. All rights reserved.
5 * Linux device driver for RTL8192SU
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms of version 2 of the GNU General Public License as
9 * published by the Free Software Foundation.
11 * This program is distributed in the hope that it will be useful, but WITHOUT
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
16 * You should have received a copy of the GNU General Public License along with
17 * this program; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
20 * Modifications for inclusion into the Linux staging tree are
21 * Copyright(c) 2010 Larry Finger. All rights reserved.
23 * Contact information:
27 ******************************************************************************/
29 #define _RECV_OSDEP_C_
31 #include <linux/usb.h>
33 #include "osdep_service.h"
34 #include "drv_types.h"
36 #include "recv_osdep.h"
37 #include "osdep_intf.h"
39 #include <linux/if_arp.h>
42 /*init os related resource in struct recv_priv*/
43 /*alloc os related resource in union recv_frame*/
44 int r8712_os_recv_resource_alloc(struct _adapter *padapter,
45 union recv_frame *precvframe)
47 precvframe->u.hdr.pkt_newalloc = NULL;
48 precvframe->u.hdr.pkt = NULL;
52 /*alloc os related resource in struct recv_buf*/
53 int r8712_os_recvbuf_resource_alloc(struct _adapter *padapter,
54 struct recv_buf *precvbuf)
58 precvbuf->irp_pending = false;
59 precvbuf->purb = usb_alloc_urb(0, GFP_KERNEL);
62 precvbuf->pskb = NULL;
63 precvbuf->reuse = false;
64 precvbuf->pallocated_buf = NULL;
65 precvbuf->pbuf = NULL;
66 precvbuf->pdata = NULL;
67 precvbuf->phead = NULL;
68 precvbuf->ptail = NULL;
69 precvbuf->pend = NULL;
70 precvbuf->transfer_len = 0;
75 /*free os related resource in struct recv_buf*/
76 int r8712_os_recvbuf_resource_free(struct _adapter *padapter,
77 struct recv_buf *precvbuf)
80 dev_kfree_skb_any(precvbuf->pskb);
82 usb_kill_urb(precvbuf->purb);
83 usb_free_urb(precvbuf->purb);
88 void r8712_handle_tkip_mic_err(struct _adapter *padapter, u8 bgroup)
90 union iwreq_data wrqu;
91 struct iw_michaelmicfailure ev;
92 struct mlme_priv *pmlmepriv = &padapter->mlmepriv;
94 memset(&ev, 0x00, sizeof(ev));
96 ev.flags |= IW_MICFAILURE_GROUP;
98 ev.flags |= IW_MICFAILURE_PAIRWISE;
99 ev.src_addr.sa_family = ARPHRD_ETHER;
100 ether_addr_copy(ev.src_addr.sa_data, &pmlmepriv->assoc_bssid[0]);
101 memset(&wrqu, 0x00, sizeof(wrqu));
102 wrqu.data.length = sizeof(ev);
103 wireless_send_event(padapter->pnetdev, IWEVMICHAELMICFAILURE, &wrqu,
107 void r8712_recv_indicatepkt(struct _adapter *padapter,
108 union recv_frame *precv_frame)
110 struct recv_priv *precvpriv;
111 struct __queue *pfree_recv_queue;
113 struct rx_pkt_attrib *pattrib = &precv_frame->u.hdr.attrib;
115 precvpriv = &(padapter->recvpriv);
116 pfree_recv_queue = &(precvpriv->free_recv_queue);
117 skb = precv_frame->u.hdr.pkt;
119 goto _recv_indicatepkt_drop;
120 skb->data = precv_frame->u.hdr.rx_data;
121 skb->len = precv_frame->u.hdr.len;
122 skb_set_tail_pointer(skb, skb->len);
123 if ((pattrib->tcpchk_valid == 1) && (pattrib->tcp_chkrpt == 1))
124 skb->ip_summed = CHECKSUM_UNNECESSARY;
126 skb->ip_summed = CHECKSUM_NONE;
127 skb->dev = padapter->pnetdev;
128 skb->protocol = eth_type_trans(skb, padapter->pnetdev);
130 precv_frame->u.hdr.pkt = NULL; /* pointers to NULL before
131 * r8712_free_recvframe()
133 r8712_free_recvframe(precv_frame, pfree_recv_queue);
135 _recv_indicatepkt_drop:
136 /*enqueue back to free_recv_queue*/
138 r8712_free_recvframe(precv_frame, pfree_recv_queue);
139 precvpriv->rx_drop++;
142 static void _r8712_reordering_ctrl_timeout_handler (unsigned long data)
144 struct recv_reorder_ctrl *preorder_ctrl =
145 (struct recv_reorder_ctrl *)data;
147 r8712_reordering_ctrl_timeout_handler(preorder_ctrl);
150 void r8712_init_recv_timer(struct recv_reorder_ctrl *preorder_ctrl)
152 setup_timer(&preorder_ctrl->reordering_ctrl_timer,
153 _r8712_reordering_ctrl_timeout_handler,
154 (unsigned long)preorder_ctrl);