Merge tag 'iwlwifi-next-for-kalle-2014-12-30' of https://git.kernel.org/pub/scm/linux...
[cascardo/linux.git] / drivers / net / wireless / mwifiex / uap_event.c
1 /*
2  * Marvell Wireless LAN device driver: AP event handling
3  *
4  * Copyright (C) 2012-2014, Marvell International Ltd.
5  *
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.
13  *
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.
18  */
19
20 #include "decl.h"
21 #include "main.h"
22 #include "11n.h"
23
24
25
26
27 /*
28  * This function handles AP interface specific events generated by firmware.
29  *
30  * Event specific routines are called by this function based
31  * upon the generated event cause.
32  *
33  *
34  * Events supported for AP -
35  *      - EVENT_UAP_STA_ASSOC
36  *      - EVENT_UAP_STA_DEAUTH
37  *      - EVENT_UAP_BSS_ACTIVE
38  *      - EVENT_UAP_BSS_START
39  *      - EVENT_UAP_BSS_IDLE
40  *      - EVENT_UAP_MIC_COUNTERMEASURES:
41  */
42 int mwifiex_process_uap_event(struct mwifiex_private *priv)
43 {
44         struct mwifiex_adapter *adapter = priv->adapter;
45         int len, i;
46         u32 eventcause = adapter->event_cause;
47         struct station_info sinfo;
48         struct mwifiex_assoc_event *event;
49         struct mwifiex_sta_node *node;
50         u8 *deauth_mac;
51         struct host_cmd_ds_11n_batimeout *ba_timeout;
52         u16 ctrl;
53
54         switch (eventcause) {
55         case EVENT_UAP_STA_ASSOC:
56                 memset(&sinfo, 0, sizeof(sinfo));
57                 event = (struct mwifiex_assoc_event *)
58                         (adapter->event_body + MWIFIEX_UAP_EVENT_EXTRA_HEADER);
59                 if (le16_to_cpu(event->type) == TLV_TYPE_UAP_MGMT_FRAME) {
60                         len = -1;
61
62                         if (ieee80211_is_assoc_req(event->frame_control))
63                                 len = 0;
64                         else if (ieee80211_is_reassoc_req(event->frame_control))
65                                 /* There will be ETH_ALEN bytes of
66                                  * current_ap_addr before the re-assoc ies.
67                                  */
68                                 len = ETH_ALEN;
69
70                         if (len != -1) {
71                                 sinfo.filled = STATION_INFO_ASSOC_REQ_IES;
72                                 sinfo.assoc_req_ies = &event->data[len];
73                                 len = (u8 *)sinfo.assoc_req_ies -
74                                       (u8 *)&event->frame_control;
75                                 sinfo.assoc_req_ies_len =
76                                         le16_to_cpu(event->len) - (u16)len;
77                         }
78                 }
79                 cfg80211_new_sta(priv->netdev, event->sta_addr, &sinfo,
80                                  GFP_KERNEL);
81
82                 node = mwifiex_add_sta_entry(priv, event->sta_addr);
83                 if (!node) {
84                         dev_warn(adapter->dev,
85                                  "could not create station entry!\n");
86                         return -1;
87                 }
88
89                 if (!priv->ap_11n_enabled)
90                         break;
91
92                 mwifiex_set_sta_ht_cap(priv, sinfo.assoc_req_ies,
93                                        sinfo.assoc_req_ies_len, node);
94
95                 for (i = 0; i < MAX_NUM_TID; i++) {
96                         if (node->is_11n_enabled)
97                                 node->ampdu_sta[i] =
98                                               priv->aggr_prio_tbl[i].ampdu_user;
99                         else
100                                 node->ampdu_sta[i] = BA_STREAM_NOT_ALLOWED;
101                 }
102                 memset(node->rx_seq, 0xff, sizeof(node->rx_seq));
103                 break;
104         case EVENT_UAP_STA_DEAUTH:
105                 deauth_mac = adapter->event_body +
106                              MWIFIEX_UAP_EVENT_EXTRA_HEADER;
107                 cfg80211_del_sta(priv->netdev, deauth_mac, GFP_KERNEL);
108
109                 if (priv->ap_11n_enabled) {
110                         mwifiex_11n_del_rx_reorder_tbl_by_ta(priv, deauth_mac);
111                         mwifiex_del_tx_ba_stream_tbl_by_ra(priv, deauth_mac);
112                 }
113                 mwifiex_wmm_del_peer_ra_list(priv, deauth_mac);
114                 mwifiex_del_sta_entry(priv, deauth_mac);
115                 break;
116         case EVENT_UAP_BSS_IDLE:
117                 priv->media_connected = false;
118                 if (netif_carrier_ok(priv->netdev))
119                         netif_carrier_off(priv->netdev);
120                 mwifiex_stop_net_dev_queue(priv->netdev, adapter);
121
122                 mwifiex_clean_txrx(priv);
123                 mwifiex_del_all_sta_list(priv);
124                 break;
125         case EVENT_UAP_BSS_ACTIVE:
126                 priv->media_connected = true;
127                 if (!netif_carrier_ok(priv->netdev))
128                         netif_carrier_on(priv->netdev);
129                 mwifiex_wake_up_net_dev_queue(priv->netdev, adapter);
130                 break;
131         case EVENT_UAP_BSS_START:
132                 dev_dbg(adapter->dev, "AP EVENT: event id: %#x\n", eventcause);
133                 memcpy(priv->netdev->dev_addr, adapter->event_body + 2,
134                        ETH_ALEN);
135                 break;
136         case EVENT_UAP_MIC_COUNTERMEASURES:
137                 /* For future development */
138                 dev_dbg(adapter->dev, "AP EVENT: event id: %#x\n", eventcause);
139                 break;
140         case EVENT_AMSDU_AGGR_CTRL:
141                 ctrl = le16_to_cpu(*(__le16 *)adapter->event_body);
142                 dev_dbg(adapter->dev, "event: AMSDU_AGGR_CTRL %d\n", ctrl);
143
144                 if (priv->media_connected) {
145                         adapter->tx_buf_size =
146                                 min_t(u16, adapter->curr_tx_buf_size, ctrl);
147                         dev_dbg(adapter->dev, "event: tx_buf_size %d\n",
148                                 adapter->tx_buf_size);
149                 }
150                 break;
151         case EVENT_ADDBA:
152                 dev_dbg(adapter->dev, "event: ADDBA Request\n");
153                 if (priv->media_connected)
154                         mwifiex_send_cmd(priv, HostCmd_CMD_11N_ADDBA_RSP,
155                                          HostCmd_ACT_GEN_SET, 0,
156                                          adapter->event_body, false);
157                 break;
158         case EVENT_DELBA:
159                 dev_dbg(adapter->dev, "event: DELBA Request\n");
160                 if (priv->media_connected)
161                         mwifiex_11n_delete_ba_stream(priv, adapter->event_body);
162                 break;
163         case EVENT_BA_STREAM_TIEMOUT:
164                 dev_dbg(adapter->dev, "event:  BA Stream timeout\n");
165                 if (priv->media_connected) {
166                         ba_timeout = (void *)adapter->event_body;
167                         mwifiex_11n_ba_stream_timeout(priv, ba_timeout);
168                 }
169                 break;
170         case EVENT_EXT_SCAN_REPORT:
171                 dev_dbg(adapter->dev, "event: EXT_SCAN Report\n");
172                 if (adapter->ext_scan)
173                         return mwifiex_handle_event_ext_scan_report(priv,
174                                                 adapter->event_skb->data);
175                 break;
176         case EVENT_TX_STATUS_REPORT:
177                 dev_dbg(adapter->dev, "event: TX_STATUS Report\n");
178                 mwifiex_parse_tx_status_event(priv, adapter->event_body);
179                 break;
180         default:
181                 dev_dbg(adapter->dev, "event: unknown event id: %#x\n",
182                         eventcause);
183                 break;
184         }
185
186         return 0;
187 }
188
189 /* This function deletes station entry from associated station list.
190  * Also if both AP and STA are 11n enabled, RxReorder tables and TxBA stream
191  * tables created for this station are deleted.
192  */
193 void mwifiex_uap_del_sta_data(struct mwifiex_private *priv,
194                               struct mwifiex_sta_node *node)
195 {
196         if (priv->ap_11n_enabled && node->is_11n_enabled) {
197                 mwifiex_11n_del_rx_reorder_tbl_by_ta(priv, node->mac_addr);
198                 mwifiex_del_tx_ba_stream_tbl_by_ra(priv, node->mac_addr);
199         }
200         mwifiex_del_sta_entry(priv, node->mac_addr);
201
202         return;
203 }