2 * This file is part of wl12xx
4 * Copyright (C) 2012 Texas Instruments. All rights reserved.
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * version 2 as published by the Free Software Foundation.
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
22 #include <net/genetlink.h>
26 #include "../wlcore/cmd.h"
27 #include "../wlcore/debug.h"
28 #include "../wlcore/vendor_cmd.h"
30 int wl18xx_wait_for_event(struct wl1271
*wl
, enum wlcore_wait_event event
,
36 case WLCORE_EVENT_PEER_REMOVE_COMPLETE
:
37 local_event
= PEER_REMOVE_COMPLETE_EVENT_ID
;
40 case WLCORE_EVENT_DFS_CONFIG_COMPLETE
:
41 local_event
= DFS_CHANNELS_CONFIG_COMPLETE_EVENT
;
45 /* event not implemented */
48 return wlcore_cmd_wait_for_event_or_timeout(wl
, local_event
, timeout
);
51 static const char *wl18xx_radar_type_decode(u8 radar_type
)
54 case RADAR_TYPE_REGULAR
:
56 case RADAR_TYPE_CHIRP
:
64 static int wlcore_smart_config_sync_event(struct wl1271
*wl
, u8 sync_channel
,
68 enum nl80211_band band
;
71 if (sync_band
== WLCORE_BAND_5GHZ
)
72 band
= NL80211_BAND_5GHZ
;
74 band
= NL80211_BAND_2GHZ
;
76 freq
= ieee80211_channel_to_frequency(sync_channel
, band
);
78 wl1271_debug(DEBUG_EVENT
,
79 "SMART_CONFIG_SYNC_EVENT_ID, freq: %d (chan: %d band %d)",
80 freq
, sync_channel
, sync_band
);
81 skb
= cfg80211_vendor_event_alloc(wl
->hw
->wiphy
, NULL
, 20,
82 WLCORE_VENDOR_EVENT_SC_SYNC
,
85 if (nla_put_u32(skb
, WLCORE_VENDOR_ATTR_FREQ
, freq
)) {
89 cfg80211_vendor_event(skb
, GFP_KERNEL
);
93 static int wlcore_smart_config_decode_event(struct wl1271
*wl
,
94 u8 ssid_len
, u8
*ssid
,
99 wl1271_debug(DEBUG_EVENT
, "SMART_CONFIG_DECODE_EVENT_ID");
100 wl1271_dump_ascii(DEBUG_EVENT
, "SSID:", ssid
, ssid_len
);
102 skb
= cfg80211_vendor_event_alloc(wl
->hw
->wiphy
, NULL
,
103 ssid_len
+ pwd_len
+ 20,
104 WLCORE_VENDOR_EVENT_SC_DECODE
,
107 if (nla_put(skb
, WLCORE_VENDOR_ATTR_SSID
, ssid_len
, ssid
) ||
108 nla_put(skb
, WLCORE_VENDOR_ATTR_PSK
, pwd_len
, pwd
)) {
112 cfg80211_vendor_event(skb
, GFP_KERNEL
);
116 static void wlcore_event_time_sync(struct wl1271
*wl
,
117 u16 tsf_high_msb
, u16 tsf_high_lsb
,
118 u16 tsf_low_msb
, u16 tsf_low_lsb
)
123 clock_high
= (tsf_high_msb
<< 16) | tsf_high_lsb
;
124 clock_low
= (tsf_low_msb
<< 16) | tsf_low_lsb
;
126 wl1271_info("TIME_SYNC_EVENT_ID: clock_high %u, clock low %u",
127 clock_high
, clock_low
);
130 int wl18xx_process_mailbox_events(struct wl1271
*wl
)
132 struct wl18xx_event_mailbox
*mbox
= wl
->mbox
;
135 vector
= le32_to_cpu(mbox
->events_vector
);
136 wl1271_debug(DEBUG_EVENT
, "MBOX vector: 0x%x", vector
);
138 if (vector
& SCAN_COMPLETE_EVENT_ID
) {
139 wl1271_debug(DEBUG_EVENT
, "scan results: %d",
140 mbox
->number_of_scan_results
);
143 wl18xx_scan_completed(wl
, wl
->scan_wlvif
);
146 if (vector
& TIME_SYNC_EVENT_ID
)
147 wlcore_event_time_sync(wl
,
148 mbox
->time_sync_tsf_high_msb
,
149 mbox
->time_sync_tsf_high_lsb
,
150 mbox
->time_sync_tsf_low_msb
,
151 mbox
->time_sync_tsf_low_lsb
);
153 if (vector
& RADAR_DETECTED_EVENT_ID
) {
154 wl1271_info("radar event: channel %d type %s",
156 wl18xx_radar_type_decode(mbox
->radar_type
));
158 if (!wl
->radar_debug_mode
)
159 ieee80211_radar_detected(wl
->hw
);
162 if (vector
& PERIODIC_SCAN_REPORT_EVENT_ID
) {
163 wl1271_debug(DEBUG_EVENT
,
164 "PERIODIC_SCAN_REPORT_EVENT (results %d)",
165 mbox
->number_of_sched_scan_results
);
167 wlcore_scan_sched_scan_results(wl
);
170 if (vector
& PERIODIC_SCAN_COMPLETE_EVENT_ID
)
171 wlcore_event_sched_scan_completed(wl
, 1);
173 if (vector
& RSSI_SNR_TRIGGER_0_EVENT_ID
)
174 wlcore_event_rssi_trigger(wl
, mbox
->rssi_snr_trigger_metric
);
176 if (vector
& BA_SESSION_RX_CONSTRAINT_EVENT_ID
)
177 wlcore_event_ba_rx_constraint(wl
,
178 le16_to_cpu(mbox
->rx_ba_role_id_bitmap
),
179 le16_to_cpu(mbox
->rx_ba_allowed_bitmap
));
181 if (vector
& BSS_LOSS_EVENT_ID
)
182 wlcore_event_beacon_loss(wl
,
183 le16_to_cpu(mbox
->bss_loss_bitmap
));
185 if (vector
& CHANNEL_SWITCH_COMPLETE_EVENT_ID
)
186 wlcore_event_channel_switch(wl
,
187 le16_to_cpu(mbox
->channel_switch_role_id_bitmap
),
190 if (vector
& DUMMY_PACKET_EVENT_ID
)
191 wlcore_event_dummy_packet(wl
);
194 * "TX retries exceeded" has a different meaning according to mode.
195 * In AP mode the offending station is disconnected.
197 if (vector
& MAX_TX_FAILURE_EVENT_ID
)
198 wlcore_event_max_tx_failure(wl
,
199 le16_to_cpu(mbox
->tx_retry_exceeded_bitmap
));
201 if (vector
& INACTIVE_STA_EVENT_ID
)
202 wlcore_event_inactive_sta(wl
,
203 le16_to_cpu(mbox
->inactive_sta_bitmap
));
205 if (vector
& REMAIN_ON_CHANNEL_COMPLETE_EVENT_ID
)
206 wlcore_event_roc_complete(wl
);
208 if (vector
& SMART_CONFIG_SYNC_EVENT_ID
)
209 wlcore_smart_config_sync_event(wl
, mbox
->sc_sync_channel
,
212 if (vector
& SMART_CONFIG_DECODE_EVENT_ID
)
213 wlcore_smart_config_decode_event(wl
,
218 if (vector
& FW_LOGGER_INDICATION
)
219 wlcore_event_fw_logger(wl
);
221 if (vector
& RX_BA_WIN_SIZE_CHANGE_EVENT_ID
) {
222 struct wl12xx_vif
*wlvif
;
223 struct ieee80211_vif
*vif
;
224 struct ieee80211_sta
*sta
;
225 u8 link_id
= mbox
->rx_ba_link_id
;
226 u8 win_size
= mbox
->rx_ba_win_size
;
229 wlvif
= wl
->links
[link_id
].wlvif
;
230 vif
= wl12xx_wlvif_to_vif(wlvif
);
232 /* Update RX aggregation window size and call
233 * MAC routine to stop active RX aggregations for this link
235 if (wlvif
->bss_type
!= BSS_TYPE_AP_BSS
)
236 addr
= vif
->bss_conf
.bssid
;
238 addr
= wl
->links
[link_id
].addr
;
240 sta
= ieee80211_find_sta(vif
, addr
);
242 sta
->max_rx_aggregation_subframes
= win_size
;
243 ieee80211_stop_rx_ba_session(vif
,
244 wl
->links
[link_id
].ba_bitmap
,