2 * Marvell Wireless LAN device driver: AP event handling
4 * Copyright (C) 2012-2014, 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.
28 * This function handles AP interface specific events generated by firmware.
30 * Event specific routines are called by this function based
31 * upon the generated event cause.
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:
42 int mwifiex_process_uap_event(struct mwifiex_private
*priv
)
44 struct mwifiex_adapter
*adapter
= priv
->adapter
;
46 u32 eventcause
= adapter
->event_cause
;
47 struct station_info sinfo
;
48 struct mwifiex_assoc_event
*event
;
49 struct mwifiex_sta_node
*node
;
51 struct host_cmd_ds_11n_batimeout
*ba_timeout
;
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
) {
62 if (ieee80211_is_assoc_req(event
->frame_control
))
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.
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
;
79 cfg80211_new_sta(priv
->netdev
, event
->sta_addr
, &sinfo
,
82 node
= mwifiex_add_sta_entry(priv
, event
->sta_addr
);
84 dev_warn(adapter
->dev
,
85 "could not create station entry!\n");
89 if (!priv
->ap_11n_enabled
)
92 mwifiex_set_sta_ht_cap(priv
, sinfo
.assoc_req_ies
,
93 sinfo
.assoc_req_ies_len
, node
);
95 for (i
= 0; i
< MAX_NUM_TID
; i
++) {
96 if (node
->is_11n_enabled
)
98 priv
->aggr_prio_tbl
[i
].ampdu_user
;
100 node
->ampdu_sta
[i
] = BA_STREAM_NOT_ALLOWED
;
102 memset(node
->rx_seq
, 0xff, sizeof(node
->rx_seq
));
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
);
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
);
113 mwifiex_wmm_del_peer_ra_list(priv
, deauth_mac
);
114 mwifiex_del_sta_entry(priv
, deauth_mac
);
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
);
122 mwifiex_clean_txrx(priv
);
123 mwifiex_del_all_sta_list(priv
);
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
);
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,
136 case EVENT_UAP_MIC_COUNTERMEASURES
:
137 /* For future development */
138 dev_dbg(adapter
->dev
, "AP EVENT: event id: %#x\n", eventcause
);
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
);
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
);
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);
159 dev_dbg(adapter
->dev
, "event: DELBA Request\n");
160 if (priv
->media_connected
)
161 mwifiex_11n_delete_ba_stream(priv
, adapter
->event_body
);
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
);
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
);
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
);
181 dev_dbg(adapter
->dev
, "event: unknown event id: %#x\n",
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.
193 void mwifiex_uap_del_sta_data(struct mwifiex_private
*priv
,
194 struct mwifiex_sta_node
*node
)
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
);
200 mwifiex_del_sta_entry(priv
, node
->mac_addr
);