event.c 7.9 KB
Newer Older
L
Luciano Coelho 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
/*
 * This file is part of wl1271
 *
 * Copyright (C) 2008-2009 Nokia Corporation
 *
 * Contact: Luciano Coelho <luciano.coelho@nokia.com>
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * version 2 as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
 * 02110-1301 USA
 *
 */

24
#include "wlcore.h"
25
#include "debug.h"
S
Shahar Levi 已提交
26 27 28 29
#include "io.h"
#include "event.h"
#include "ps.h"
#include "scan.h"
30
#include "wl12xx_80211.h"
L
Luciano Coelho 已提交
31

32
static void wl1271_event_rssi_trigger(struct wl1271 *wl,
33
				      struct wl12xx_vif *wlvif,
34 35
				      struct event_mailbox *mbox)
{
36
	struct ieee80211_vif *vif = wl12xx_wlvif_to_vif(wlvif);
37 38 39 40 41
	enum nl80211_cqm_rssi_threshold_event event;
	s8 metric = mbox->rssi_snr_trigger_metric[0];

	wl1271_debug(DEBUG_EVENT, "RSSI trigger metric: %d", metric);

42
	if (metric <= wlvif->rssi_thold)
43 44 45 46
		event = NL80211_CQM_RSSI_THRESHOLD_EVENT_LOW;
	else
		event = NL80211_CQM_RSSI_THRESHOLD_EVENT_HIGH;

47 48 49
	if (event != wlvif->last_rssi_event)
		ieee80211_cqm_rssi_notify(vif, event, GFP_KERNEL);
	wlvif->last_rssi_event = event;
50 51
}

E
Eliad Peller 已提交
52
static void wl1271_stop_ba_event(struct wl1271 *wl, struct wl12xx_vif *wlvif)
53
{
54 55
	struct ieee80211_vif *vif = wl12xx_wlvif_to_vif(wlvif);

E
Eliad Peller 已提交
56
	if (wlvif->bss_type != BSS_TYPE_AP_BSS) {
E
Eliad Peller 已提交
57
		if (!wlvif->sta.ba_rx_bitmap)
58
			return;
59 60
		ieee80211_stop_rx_ba_session(vif, wlvif->sta.ba_rx_bitmap,
					     vif->bss_conf.bssid);
61
	} else {
62
		u8 hlid;
63
		struct wl1271_link *lnk;
64 65 66 67
		for_each_set_bit(hlid, wlvif->ap.sta_hlid_map,
				 WL12XX_MAX_LINKS) {
			lnk = &wl->links[hlid];
			if (!lnk->ba_bitmap)
68 69
				continue;

70
			ieee80211_stop_rx_ba_session(vif,
71 72 73 74
						     lnk->ba_bitmap,
						     lnk->addr);
		}
	}
75 76
}

77 78 79
static void wl12xx_event_soft_gemini_sense(struct wl1271 *wl,
					       u8 enable)
{
80 81
	struct wl12xx_vif *wlvif;

82 83 84
	if (enable) {
		set_bit(WL1271_FLAG_SOFT_GEMINI, &wl->flags);
	} else {
E
Eliad Peller 已提交
85
		clear_bit(WL1271_FLAG_SOFT_GEMINI, &wl->flags);
86
		wl12xx_for_each_wlvif_sta(wl, wlvif) {
E
Eliad Peller 已提交
87
			wl1271_recalc_rx_streaming(wl, wlvif);
88
		}
89 90 91 92
	}

}

L
Luciano Coelho 已提交
93 94 95 96 97 98 99
static void wl1271_event_mbox_dump(struct event_mailbox *mbox)
{
	wl1271_debug(DEBUG_EVENT, "MBOX DUMP:");
	wl1271_debug(DEBUG_EVENT, "\tvector: 0x%x", mbox->events_vector);
	wl1271_debug(DEBUG_EVENT, "\tmask: 0x%x", mbox->events_mask);
}

100
static int wl1271_event_process(struct wl1271 *wl)
L
Luciano Coelho 已提交
101
{
102
	struct event_mailbox *mbox = wl->mbox;
103 104
	struct ieee80211_vif *vif;
	struct wl12xx_vif *wlvif;
L
Luciano Coelho 已提交
105
	u32 vector;
106 107
	bool disconnect_sta = false;
	unsigned long sta_bitmap = 0;
L
Luciano Coelho 已提交
108 109 110

	wl1271_event_mbox_dump(mbox);

L
Luciano Coelho 已提交
111 112
	vector = le32_to_cpu(mbox->events_vector);
	vector &= ~(le32_to_cpu(mbox->events_mask));
L
Luciano Coelho 已提交
113 114 115
	wl1271_debug(DEBUG_EVENT, "vector: 0x%x", vector);

	if (vector & SCAN_COMPLETE_EVENT_ID) {
116 117 118
		wl1271_debug(DEBUG_EVENT, "status: 0x%x",
			     mbox->scheduled_scan_status);

119
		wl1271_scan_stm(wl, wl->scan_vif);
L
Luciano Coelho 已提交
120 121
	}

122 123 124
	if (vector & PERIODIC_SCAN_REPORT_EVENT_ID) {
		wl1271_debug(DEBUG_EVENT, "PERIODIC_SCAN_REPORT_EVENT "
			     "(status 0x%0x)", mbox->scheduled_scan_status);
125 126

		wl1271_scan_sched_scan_results(wl);
127 128 129 130 131
	}

	if (vector & PERIODIC_SCAN_COMPLETE_EVENT_ID) {
		wl1271_debug(DEBUG_EVENT, "PERIODIC_SCAN_COMPLETE_EVENT "
			     "(status 0x%0x)", mbox->scheduled_scan_status);
132 133
		if (wl->sched_scanning) {
			ieee80211_sched_scan_stopped(wl->hw);
134
			wl->sched_scanning = false;
135
		}
136 137
	}

138
	if (vector & SOFT_GEMINI_SENSE_EVENT_ID)
139 140
		wl12xx_event_soft_gemini_sense(wl,
					       mbox->soft_gemini_sense_info);
141

142
	/*
143 144
	 * We are HW_MONITOR device. On beacon loss - queue
	 * connection loss work. Cancel it on REGAINED event.
145
	 */
146 147
	if (vector & BSS_LOSE_EVENT_ID) {
		/* TODO: check for multi-role */
148 149
		int delay = wl->conf.conn.synch_fail_thold *
					wl->conf.conn.bss_lose_timeout;
150
		wl1271_info("Beacon loss detected.");
151 152 153 154 155 156

		/*
		 * if the work is already queued, it should take place. We
		 * don't want to delay the connection loss indication
		 * any more.
		 */
157
		ieee80211_queue_delayed_work(wl->hw, &wl->connection_loss_work,
158
					     msecs_to_jiffies(delay));
159
	}
L
Luciano Coelho 已提交
160

161 162 163
	if (vector & REGAINED_BSS_EVENT_ID) {
		/* TODO: check for multi-role */
		wl1271_info("Beacon regained.");
164 165 166 167 168
		cancel_delayed_work(&wl->connection_loss_work);

		/* sanity check - we can't lose and gain the beacon together */
		WARN(vector & BSS_LOSE_EVENT_ID,
		     "Concurrent beacon loss and gain from FW");
169 170
	}

171
	if (vector & RSSI_SNR_TRIGGER_0_EVENT_ID) {
172
		/* TODO: check actual multi-role support */
173
		wl1271_debug(DEBUG_EVENT, "RSSI_SNR_TRIGGER_0_EVENT");
174 175 176
		wl12xx_for_each_wlvif_sta(wl, wlvif) {
			wl1271_event_rssi_trigger(wl, wlvif, mbox);
		}
177 178
	}

179 180
	if (vector & BA_SESSION_RX_CONSTRAINT_EVENT_ID) {
		u8 role_id = mbox->role_id;
181
		wl1271_debug(DEBUG_EVENT, "BA_SESSION_RX_CONSTRAINT_EVENT_ID. "
182 183
			     "ba_allowed = 0x%x, role_id=%d",
			     mbox->rx_ba_allowed, role_id);
184

185 186 187
		wl12xx_for_each_wlvif(wl, wlvif) {
			if (role_id != 0xff && role_id != wlvif->role_id)
				continue;
188

189 190 191 192
			wlvif->ba_allowed = !!mbox->rx_ba_allowed;
			if (!wlvif->ba_allowed)
				wl1271_stop_ba_event(wl, wlvif);
		}
193 194
	}

195
	if (vector & CHANNEL_SWITCH_COMPLETE_EVENT_ID) {
196 197 198 199 200 201 202 203
		wl1271_debug(DEBUG_EVENT, "CHANNEL_SWITCH_COMPLETE_EVENT_ID. "
					  "status = 0x%x",
					  mbox->channel_switch_status);
		/*
		 * That event uses for two cases:
		 * 1) channel switch complete with status=0
		 * 2) channel switch failed status=1
		 */
204 205 206 207 208 209

		/* TODO: configure only the relevant vif */
		wl12xx_for_each_wlvif_sta(wl, wlvif) {
			bool success;

			if (!test_and_clear_bit(WLVIF_FLAG_CS_PROGRESS,
210
						&wlvif->flags))
211 212 213
				continue;

			success = mbox->channel_switch_status ? false : true;
214 215
			vif = wl12xx_wlvif_to_vif(wlvif);

216
			ieee80211_chswitch_done(vif, success);
217
		}
218 219
	}

220
	if ((vector & DUMMY_PACKET_EVENT_ID)) {
221
		wl1271_debug(DEBUG_EVENT, "DUMMY_PACKET_ID_EVENT_ID");
222
		wl1271_tx_dummy_packet(wl);
223 224
	}

225 226 227 228
	/*
	 * "TX retries exceeded" has a different meaning according to mode.
	 * In AP mode the offending station is disconnected.
	 */
229
	if (vector & MAX_TX_RETRY_EVENT_ID) {
230 231 232 233 234
		wl1271_debug(DEBUG_EVENT, "MAX_TX_RETRY_EVENT_ID");
		sta_bitmap |= le16_to_cpu(mbox->sta_tx_retry_exceeded);
		disconnect_sta = true;
	}

235
	if (vector & INACTIVE_STA_EVENT_ID) {
236 237 238 239 240
		wl1271_debug(DEBUG_EVENT, "INACTIVE_STA_EVENT_ID");
		sta_bitmap |= le16_to_cpu(mbox->sta_aging_status);
		disconnect_sta = true;
	}

241
	if (disconnect_sta) {
242 243 244 245 246
		u32 num_packets = wl->conf.tx.max_tx_retries;
		struct ieee80211_sta *sta;
		const u8 *addr;
		int h;

247
		for_each_set_bit(h, &sta_bitmap, WL12XX_MAX_LINKS) {
248 249 250 251 252 253 254 255 256
			bool found = false;
			/* find the ap vif connected to this sta */
			wl12xx_for_each_wlvif_ap(wl, wlvif) {
				if (!test_bit(h, wlvif->ap.sta_hlid_map))
					continue;
				found = true;
				break;
			}
			if (!found)
257 258
				continue;

259
			vif = wl12xx_wlvif_to_vif(wlvif);
260 261 262
			addr = wl->links[h].addr;

			rcu_read_lock();
263
			sta = ieee80211_find_sta(vif, addr);
264 265 266 267 268 269 270
			if (sta) {
				wl1271_debug(DEBUG_EVENT, "remove sta %d", h);
				ieee80211_report_low_ack(sta, num_packets);
			}
			rcu_read_unlock();
		}
	}
L
Luciano Coelho 已提交
271 272 273 274 275 276 277 278 279 280 281 282 283 284
	return 0;
}

int wl1271_event_unmask(struct wl1271 *wl)
{
	int ret;

	ret = wl1271_acx_event_mbox_mask(wl, ~(wl->event_mask));
	if (ret < 0)
		return ret;

	return 0;
}

285
int wl1271_event_handle(struct wl1271 *wl, u8 mbox_num)
L
Luciano Coelho 已提交
286 287 288 289 290 291 292 293 294
{
	int ret;

	wl1271_debug(DEBUG_EVENT, "EVENT on mbox %d", mbox_num);

	if (mbox_num > 1)
		return -EINVAL;

	/* first we read the mbox descriptor */
295 296
	wl1271_read(wl, wl->mbox_ptr[mbox_num], wl->mbox,
		    sizeof(*wl->mbox), false);
L
Luciano Coelho 已提交
297 298

	/* process the descriptor */
299
	ret = wl1271_event_process(wl);
L
Luciano Coelho 已提交
300 301 302
	if (ret < 0)
		return ret;

303 304 305 306 307
	/*
	 * TODO: we just need this because one bit is in a different
	 * place.  Is there any better way?
	 */
	wl->ops->ack_event(wl);
L
Luciano Coelho 已提交
308 309 310

	return 0;
}