2009-08-06 13:25:28 +00:00
|
|
|
/*
|
|
|
|
* 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
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "wl1271.h"
|
|
|
|
#include "wl1271_reg.h"
|
2010-02-18 11:25:55 +00:00
|
|
|
#include "wl1271_io.h"
|
2009-08-06 13:25:28 +00:00
|
|
|
#include "wl1271_event.h"
|
|
|
|
#include "wl1271_ps.h"
|
2009-10-08 18:56:30 +00:00
|
|
|
#include "wl12xx_80211.h"
|
2009-08-06 13:25:28 +00:00
|
|
|
|
|
|
|
static int wl1271_event_scan_complete(struct wl1271 *wl,
|
|
|
|
struct event_mailbox *mbox)
|
|
|
|
{
|
2009-10-13 09:47:50 +00:00
|
|
|
int size = sizeof(struct wl12xx_probe_req_template);
|
2009-08-06 13:25:28 +00:00
|
|
|
wl1271_debug(DEBUG_EVENT, "status: 0x%x",
|
|
|
|
mbox->scheduled_scan_status);
|
|
|
|
|
2009-12-11 13:41:07 +00:00
|
|
|
if (test_bit(WL1271_FLAG_SCANNING, &wl->flags)) {
|
2009-10-13 09:47:50 +00:00
|
|
|
if (wl->scan.state == WL1271_SCAN_BAND_DUAL) {
|
|
|
|
wl1271_cmd_template_set(wl, CMD_TEMPL_CFG_PROBE_REQ_2_4,
|
|
|
|
NULL, size);
|
|
|
|
/* 2.4 GHz band scanned, scan 5 GHz band, pretend
|
|
|
|
* to the wl1271_cmd_scan function that we are not
|
|
|
|
* scanning as it checks that.
|
|
|
|
*/
|
2009-12-11 13:41:07 +00:00
|
|
|
clear_bit(WL1271_FLAG_SCANNING, &wl->flags);
|
2010-03-18 10:26:35 +00:00
|
|
|
/* FIXME: ie missing! */
|
2009-10-13 09:47:50 +00:00
|
|
|
wl1271_cmd_scan(wl, wl->scan.ssid, wl->scan.ssid_len,
|
2010-03-18 10:26:35 +00:00
|
|
|
NULL, 0,
|
2009-10-13 09:47:50 +00:00
|
|
|
wl->scan.active,
|
|
|
|
wl->scan.high_prio,
|
|
|
|
WL1271_SCAN_BAND_5_GHZ,
|
|
|
|
wl->scan.probe_requests);
|
|
|
|
} else {
|
|
|
|
if (wl->scan.state == WL1271_SCAN_BAND_2_4_GHZ)
|
|
|
|
wl1271_cmd_template_set(wl,
|
|
|
|
CMD_TEMPL_CFG_PROBE_REQ_2_4,
|
|
|
|
NULL, size);
|
|
|
|
else
|
|
|
|
wl1271_cmd_template_set(wl,
|
|
|
|
CMD_TEMPL_CFG_PROBE_REQ_5,
|
|
|
|
NULL, size);
|
2009-08-06 13:25:28 +00:00
|
|
|
|
2009-10-13 09:47:50 +00:00
|
|
|
mutex_unlock(&wl->mutex);
|
|
|
|
ieee80211_scan_completed(wl->hw, false);
|
|
|
|
mutex_lock(&wl->mutex);
|
2009-12-11 13:41:07 +00:00
|
|
|
clear_bit(WL1271_FLAG_SCANNING, &wl->flags);
|
2009-10-13 09:47:50 +00:00
|
|
|
}
|
|
|
|
}
|
2009-08-06 13:25:28 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-11-02 18:22:11 +00:00
|
|
|
static int wl1271_event_ps_report(struct wl1271 *wl,
|
|
|
|
struct event_mailbox *mbox,
|
|
|
|
bool *beacon_loss)
|
|
|
|
{
|
|
|
|
int ret = 0;
|
|
|
|
|
|
|
|
wl1271_debug(DEBUG_EVENT, "ps_status: 0x%x", mbox->ps_status);
|
|
|
|
|
|
|
|
switch (mbox->ps_status) {
|
|
|
|
case EVENT_ENTER_POWER_SAVE_FAIL:
|
2010-02-18 11:25:36 +00:00
|
|
|
wl1271_debug(DEBUG_PSM, "PSM entry failed");
|
|
|
|
|
2009-12-11 13:41:07 +00:00
|
|
|
if (!test_bit(WL1271_FLAG_PSM, &wl->flags)) {
|
2010-02-18 11:25:36 +00:00
|
|
|
/* remain in active mode */
|
2009-11-23 21:22:13 +00:00
|
|
|
wl->psm_entry_retry = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2009-11-02 18:22:11 +00:00
|
|
|
if (wl->psm_entry_retry < wl->conf.conn.psm_entry_retries) {
|
|
|
|
wl->psm_entry_retry++;
|
2010-02-18 11:25:36 +00:00
|
|
|
ret = wl1271_ps_set_mode(wl, STATION_POWER_SAVE_MODE,
|
|
|
|
true);
|
2009-11-02 18:22:11 +00:00
|
|
|
} else {
|
2009-11-23 21:22:13 +00:00
|
|
|
wl1271_error("PSM entry failed, giving up.\n");
|
2010-02-18 11:25:38 +00:00
|
|
|
/* FIXME: this may need to be reconsidered. for now it
|
|
|
|
is not possible to indicate to the mac80211
|
|
|
|
afterwards that PSM entry failed. To maximize
|
|
|
|
functionality (receiving data and remaining
|
|
|
|
associated) make sure that we are in sync with the
|
|
|
|
AP in regard of PSM mode. */
|
2010-02-18 11:25:36 +00:00
|
|
|
ret = wl1271_ps_set_mode(wl, STATION_ACTIVE_MODE,
|
|
|
|
false);
|
2009-11-02 18:22:11 +00:00
|
|
|
wl->psm_entry_retry = 0;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case EVENT_ENTER_POWER_SAVE_SUCCESS:
|
|
|
|
wl->psm_entry_retry = 0;
|
2010-02-18 11:25:36 +00:00
|
|
|
|
|
|
|
/* enable beacon filtering */
|
|
|
|
ret = wl1271_acx_beacon_filter_opt(wl, true);
|
|
|
|
if (ret < 0)
|
|
|
|
break;
|
|
|
|
|
|
|
|
/* enable beacon early termination */
|
|
|
|
ret = wl1271_acx_bet_enable(wl, true);
|
|
|
|
if (ret < 0)
|
|
|
|
break;
|
|
|
|
|
|
|
|
/* go to extremely low power mode */
|
|
|
|
wl1271_ps_elp_sleep(wl);
|
|
|
|
if (ret < 0)
|
|
|
|
break;
|
2009-11-02 18:22:11 +00:00
|
|
|
break;
|
|
|
|
case EVENT_EXIT_POWER_SAVE_FAIL:
|
2010-02-18 11:25:36 +00:00
|
|
|
wl1271_debug(DEBUG_PSM, "PSM exit failed");
|
|
|
|
|
|
|
|
if (test_bit(WL1271_FLAG_PSM, &wl->flags)) {
|
|
|
|
wl->psm_entry_retry = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2010-02-18 11:25:38 +00:00
|
|
|
/* make sure the firmware goes to active mode - the frame to
|
|
|
|
be sent next will indicate to the AP, that we are active. */
|
2010-02-18 11:25:36 +00:00
|
|
|
ret = wl1271_ps_set_mode(wl, STATION_ACTIVE_MODE,
|
|
|
|
false);
|
2009-11-02 18:22:11 +00:00
|
|
|
break;
|
|
|
|
case EVENT_EXIT_POWER_SAVE_SUCCESS:
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2009-08-06 13:25:28 +00:00
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int wl1271_event_process(struct wl1271 *wl, struct event_mailbox *mbox)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
u32 vector;
|
2009-11-02 18:22:11 +00:00
|
|
|
bool beacon_loss = false;
|
2009-08-06 13:25:28 +00:00
|
|
|
|
|
|
|
wl1271_event_mbox_dump(mbox);
|
|
|
|
|
2009-10-15 07:33:29 +00:00
|
|
|
vector = le32_to_cpu(mbox->events_vector);
|
|
|
|
vector &= ~(le32_to_cpu(mbox->events_mask));
|
2009-08-06 13:25:28 +00:00
|
|
|
wl1271_debug(DEBUG_EVENT, "vector: 0x%x", vector);
|
|
|
|
|
|
|
|
if (vector & SCAN_COMPLETE_EVENT_ID) {
|
|
|
|
ret = wl1271_event_scan_complete(wl, mbox);
|
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2009-10-08 18:56:34 +00:00
|
|
|
/*
|
|
|
|
* The BSS_LOSE_EVENT_ID is only needed while psm (and hence beacon
|
|
|
|
* filtering) is enabled. Without PSM, the stack will receive all
|
|
|
|
* beacons and can detect beacon loss by itself.
|
|
|
|
*/
|
2009-12-11 13:41:07 +00:00
|
|
|
if (vector & BSS_LOSE_EVENT_ID &&
|
|
|
|
test_bit(WL1271_FLAG_PSM, &wl->flags)) {
|
2009-08-06 13:25:28 +00:00
|
|
|
wl1271_debug(DEBUG_EVENT, "BSS_LOSE_EVENT");
|
|
|
|
|
2009-10-08 18:56:34 +00:00
|
|
|
/* indicate to the stack, that beacons have been lost */
|
2009-11-02 18:22:11 +00:00
|
|
|
beacon_loss = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (vector & PS_REPORT_EVENT_ID) {
|
|
|
|
wl1271_debug(DEBUG_EVENT, "PS_REPORT_EVENT");
|
|
|
|
ret = wl1271_event_ps_report(wl, mbox, &beacon_loss);
|
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2009-12-11 13:41:09 +00:00
|
|
|
if (wl->vif && beacon_loss) {
|
2009-11-02 18:22:11 +00:00
|
|
|
/* Obviously, it's dangerous to release the mutex while
|
|
|
|
we are holding many of the variables in the wl struct.
|
|
|
|
That's why it's done last in the function, and care must
|
|
|
|
be taken that nothing more is done after this function
|
|
|
|
returns. */
|
|
|
|
mutex_unlock(&wl->mutex);
|
2009-10-08 18:56:34 +00:00
|
|
|
ieee80211_beacon_loss(wl->vif);
|
2009-11-02 18:22:11 +00:00
|
|
|
mutex_lock(&wl->mutex);
|
2009-08-06 13:25:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
void wl1271_event_mbox_config(struct wl1271 *wl)
|
|
|
|
{
|
2010-02-18 11:25:55 +00:00
|
|
|
wl->mbox_ptr[0] = wl1271_read32(wl, REG_EVENT_MAILBOX_PTR);
|
2009-08-06 13:25:28 +00:00
|
|
|
wl->mbox_ptr[1] = wl->mbox_ptr[0] + sizeof(struct event_mailbox);
|
|
|
|
|
|
|
|
wl1271_debug(DEBUG_EVENT, "MBOX ptrs: 0x%x 0x%x",
|
|
|
|
wl->mbox_ptr[0], wl->mbox_ptr[1]);
|
|
|
|
}
|
|
|
|
|
2009-12-11 13:40:59 +00:00
|
|
|
int wl1271_event_handle(struct wl1271 *wl, u8 mbox_num)
|
2009-08-06 13:25:28 +00:00
|
|
|
{
|
|
|
|
struct event_mailbox mbox;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
wl1271_debug(DEBUG_EVENT, "EVENT on mbox %d", mbox_num);
|
|
|
|
|
|
|
|
if (mbox_num > 1)
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
/* first we read the mbox descriptor */
|
2010-02-18 11:25:55 +00:00
|
|
|
wl1271_read(wl, wl->mbox_ptr[mbox_num], &mbox,
|
|
|
|
sizeof(struct event_mailbox), false);
|
2009-08-06 13:25:28 +00:00
|
|
|
|
|
|
|
/* process the descriptor */
|
|
|
|
ret = wl1271_event_process(wl, &mbox);
|
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
/* then we let the firmware know it can go on...*/
|
2010-02-18 11:25:55 +00:00
|
|
|
wl1271_write32(wl, ACX_REG_INTERRUPT_TRIG, INTR_TRIG_EVENT_ACK);
|
2009-08-06 13:25:28 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|