blob: 8c31274228ead2dddf9e0d11a2d7c2c2e9ae072f [file] [log] [blame]
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001/*
2 * This file is part of wl1271
3 *
4 * Copyright (C) 2008-2009 Nokia Corporation
5 *
6 * Contact: Luciano Coelho <luciano.coelho@nokia.com>
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * version 2 as published by the Free Software Foundation.
11 *
12 * This program is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
20 * 02110-1301 USA
21 *
22 */
23
Shahar Levi00d20102010-11-08 11:20:10 +000024#include "wl12xx.h"
25#include "reg.h"
26#include "io.h"
27#include "event.h"
28#include "ps.h"
29#include "scan.h"
Juuso Oikarinen66497dc2009-10-08 21:56:30 +030030#include "wl12xx_80211.h"
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030031
Juuso Oikarinen90494a92010-07-08 17:50:00 +030032void wl1271_pspoll_work(struct work_struct *work)
33{
Eliad Pellerd2d66c52011-10-05 11:55:43 +020034 struct ieee80211_vif *vif;
35 struct wl12xx_vif *wlvif;
Juuso Oikarinen90494a92010-07-08 17:50:00 +030036 struct delayed_work *dwork;
37 struct wl1271 *wl;
Eliad Pellerc1b193e2011-03-23 22:22:15 +020038 int ret;
Juuso Oikarinen90494a92010-07-08 17:50:00 +030039
40 dwork = container_of(work, struct delayed_work, work);
Eliad Peller252efa42011-10-05 11:56:00 +020041 wlvif = container_of(dwork, struct wl12xx_vif, pspoll_work);
42 vif = container_of((void *)wlvif, struct ieee80211_vif, drv_priv);
43 wl = wlvif->wl;
Juuso Oikarinen90494a92010-07-08 17:50:00 +030044
45 wl1271_debug(DEBUG_EVENT, "pspoll work");
46
47 mutex_lock(&wl->mutex);
48
Juuso Oikarinen8c7f4f32010-09-21 06:23:29 +020049 if (unlikely(wl->state == WL1271_STATE_OFF))
50 goto out;
51
Juuso Oikarinen90494a92010-07-08 17:50:00 +030052 if (!test_and_clear_bit(WL1271_FLAG_PSPOLL_FAILURE, &wl->flags))
53 goto out;
54
55 if (!test_bit(WL1271_FLAG_STA_ASSOCIATED, &wl->flags))
56 goto out;
57
58 /*
59 * if we end up here, then we were in powersave when the pspoll
60 * delivery failure occurred, and no-one changed state since, so
61 * we should go back to powersave.
62 */
Eliad Pellerc1b193e2011-03-23 22:22:15 +020063 ret = wl1271_ps_elp_wakeup(wl);
64 if (ret < 0)
65 goto out;
66
Eliad Peller0603d892011-10-05 11:55:51 +020067 wl1271_ps_set_mode(wl, wlvif, STATION_POWER_SAVE_MODE,
68 wlvif->basic_rate, true);
Juuso Oikarinen90494a92010-07-08 17:50:00 +030069
Eliad Pellerc1b193e2011-03-23 22:22:15 +020070 wl1271_ps_elp_sleep(wl);
Juuso Oikarinen90494a92010-07-08 17:50:00 +030071out:
72 mutex_unlock(&wl->mutex);
73};
74
Eliad Pellerd2d66c52011-10-05 11:55:43 +020075static void wl1271_event_pspoll_delivery_fail(struct wl1271 *wl,
76 struct wl12xx_vif *wlvif)
Juuso Oikarinen90494a92010-07-08 17:50:00 +030077{
78 int delay = wl->conf.conn.ps_poll_recovery_period;
79 int ret;
80
Eliad Peller74ec8392011-10-05 11:56:02 +020081 wlvif->ps_poll_failures++;
82 if (wlvif->ps_poll_failures == 1)
Juuso Oikarinen90494a92010-07-08 17:50:00 +030083 wl1271_info("AP with dysfunctional ps-poll, "
84 "trying to work around it.");
85
86 /* force active mode receive data from the AP */
87 if (test_bit(WL1271_FLAG_PSM, &wl->flags)) {
Eliad Peller0603d892011-10-05 11:55:51 +020088 ret = wl1271_ps_set_mode(wl, wlvif, STATION_ACTIVE_MODE,
Eliad Pellerd2d66c52011-10-05 11:55:43 +020089 wlvif->basic_rate, true);
Juuso Oikarinen90494a92010-07-08 17:50:00 +030090 if (ret < 0)
91 return;
92 set_bit(WL1271_FLAG_PSPOLL_FAILURE, &wl->flags);
Eliad Peller252efa42011-10-05 11:56:00 +020093 ieee80211_queue_delayed_work(wl->hw, &wlvif->pspoll_work,
Juuso Oikarinen90494a92010-07-08 17:50:00 +030094 msecs_to_jiffies(delay));
95 }
96
97 /*
98 * If already in active mode, lets we should be getting data from
99 * the AP right away. If we enter PSM too fast after this, and data
100 * remains on the AP, we will get another event like this, and we'll
101 * go into active once more.
102 */
103}
104
Juuso Oikarinen19ad0712009-11-02 20:22:11 +0200105static int wl1271_event_ps_report(struct wl1271 *wl,
Eliad Pellerd2d66c52011-10-05 11:55:43 +0200106 struct wl12xx_vif *wlvif,
Juuso Oikarinen19ad0712009-11-02 20:22:11 +0200107 struct event_mailbox *mbox,
108 bool *beacon_loss)
109{
110 int ret = 0;
Juuso Oikarinen65cddbf2010-08-24 06:28:03 +0300111 u32 total_retries = wl->conf.conn.psm_entry_retries;
Juuso Oikarinen19ad0712009-11-02 20:22:11 +0200112
113 wl1271_debug(DEBUG_EVENT, "ps_status: 0x%x", mbox->ps_status);
114
115 switch (mbox->ps_status) {
116 case EVENT_ENTER_POWER_SAVE_FAIL:
Juuso Oikarinend8c42c02010-02-18 13:25:36 +0200117 wl1271_debug(DEBUG_PSM, "PSM entry failed");
118
Juuso Oikarinen71449f82009-12-11 15:41:07 +0200119 if (!test_bit(WL1271_FLAG_PSM, &wl->flags)) {
Juuso Oikarinend8c42c02010-02-18 13:25:36 +0200120 /* remain in active mode */
Eliad Peller74ec8392011-10-05 11:56:02 +0200121 wlvif->psm_entry_retry = 0;
Juuso Oikarinen461fa132009-11-23 23:22:13 +0200122 break;
123 }
124
Eliad Peller74ec8392011-10-05 11:56:02 +0200125 if (wlvif->psm_entry_retry < total_retries) {
126 wlvif->psm_entry_retry++;
Eliad Peller0603d892011-10-05 11:55:51 +0200127 ret = wl1271_ps_set_mode(wl, wlvif,
128 STATION_POWER_SAVE_MODE,
Eliad Pellerd2d66c52011-10-05 11:55:43 +0200129 wlvif->basic_rate, true);
Juuso Oikarinen19ad0712009-11-02 20:22:11 +0200130 } else {
Juuso Oikarinen1a186a52010-04-01 11:38:23 +0300131 wl1271_info("No ack to nullfunc from AP.");
Eliad Peller74ec8392011-10-05 11:56:02 +0200132 wlvif->psm_entry_retry = 0;
Juuso Oikarinend60772f2010-03-26 12:53:29 +0200133 *beacon_loss = true;
Juuso Oikarinen19ad0712009-11-02 20:22:11 +0200134 }
135 break;
136 case EVENT_ENTER_POWER_SAVE_SUCCESS:
Eliad Peller74ec8392011-10-05 11:56:02 +0200137 wlvif->psm_entry_retry = 0;
Juuso Oikarinend8c42c02010-02-18 13:25:36 +0200138
139 /* enable beacon filtering */
Eliad Peller0603d892011-10-05 11:55:51 +0200140 ret = wl1271_acx_beacon_filter_opt(wl, wlvif, true);
Juuso Oikarinend8c42c02010-02-18 13:25:36 +0200141 if (ret < 0)
142 break;
143
Shahar Levi0e44eb22011-05-16 15:35:30 +0300144 /*
145 * BET has only a minor effect in 5GHz and masks
146 * channel switch IEs, so we only enable BET on 2.4GHz
147 */
148 if (wl->band == IEEE80211_BAND_2GHZ)
149 /* enable beacon early termination */
Eliad Peller0603d892011-10-05 11:55:51 +0200150 ret = wl1271_acx_bet_enable(wl, wlvif, true);
Eliad Peller94390642011-05-13 11:57:13 +0300151
Eliad Peller6ec45dc2011-10-05 11:56:01 +0200152 if (wlvif->ps_compl) {
153 complete(wlvif->ps_compl);
154 wlvif->ps_compl = NULL;
Eliad Peller94390642011-05-13 11:57:13 +0300155 }
Juuso Oikarinen19ad0712009-11-02 20:22:11 +0200156 break;
Juuso Oikarinen19ad0712009-11-02 20:22:11 +0200157 default:
158 break;
159 }
160
161 return ret;
162}
163
Juuso Oikarinen00236aed2010-04-09 11:07:30 +0300164static void wl1271_event_rssi_trigger(struct wl1271 *wl,
Eliad Peller04324d92011-10-05 11:56:03 +0200165 struct ieee80211_vif *vif,
Juuso Oikarinen00236aed2010-04-09 11:07:30 +0300166 struct event_mailbox *mbox)
167{
Eliad Peller04324d92011-10-05 11:56:03 +0200168 struct wl12xx_vif *wlvif = wl12xx_vif_to_data(vif);
Juuso Oikarinen00236aed2010-04-09 11:07:30 +0300169 enum nl80211_cqm_rssi_threshold_event event;
170 s8 metric = mbox->rssi_snr_trigger_metric[0];
171
172 wl1271_debug(DEBUG_EVENT, "RSSI trigger metric: %d", metric);
173
Eliad Peller04324d92011-10-05 11:56:03 +0200174 if (metric <= wlvif->rssi_thold)
Juuso Oikarinen00236aed2010-04-09 11:07:30 +0300175 event = NL80211_CQM_RSSI_THRESHOLD_EVENT_LOW;
176 else
177 event = NL80211_CQM_RSSI_THRESHOLD_EVENT_HIGH;
178
Eliad Peller04324d92011-10-05 11:56:03 +0200179 if (event != wlvif->last_rssi_event)
180 ieee80211_cqm_rssi_notify(vif, event, GFP_KERNEL);
181 wlvif->last_rssi_event = event;
Juuso Oikarinen00236aed2010-04-09 11:07:30 +0300182}
183
Eliad Peller536129c82011-10-05 11:55:45 +0200184static void wl1271_stop_ba_event(struct wl1271 *wl, struct wl12xx_vif *wlvif)
Shahar Levi70559a02011-05-22 16:10:22 +0300185{
Eliad Peller536129c82011-10-05 11:55:45 +0200186 if (wlvif->bss_type != BSS_TYPE_AP_BSS) {
Eliad Pellerd0802ab2011-10-05 11:56:04 +0200187 if (!wlvif->sta.ba_rx_bitmap)
Arik Nemtsovf4d3b6a2011-08-25 12:43:16 +0300188 return;
Eliad Pellerd0802ab2011-10-05 11:56:04 +0200189 ieee80211_stop_rx_ba_session(wl->vif, wlvif->sta.ba_rx_bitmap,
Eliad Pellercdf09492011-10-05 11:55:44 +0200190 wl->vif->bss_conf.bssid);
Arik Nemtsovf4d3b6a2011-08-25 12:43:16 +0300191 } else {
192 int i;
193 struct wl1271_link *lnk;
Arik Nemtsov6b661892011-09-22 09:52:06 +0300194 for (i = WL1271_AP_STA_HLID_START; i < AP_MAX_LINKS; i++) {
Arik Nemtsovf4d3b6a2011-08-25 12:43:16 +0300195 lnk = &wl->links[i];
196 if (!wl1271_is_active_sta(wl, i) || !lnk->ba_bitmap)
197 continue;
Shahar Levi70559a02011-05-22 16:10:22 +0300198
Arik Nemtsovf4d3b6a2011-08-25 12:43:16 +0300199 ieee80211_stop_rx_ba_session(wl->vif,
200 lnk->ba_bitmap,
201 lnk->addr);
202 }
203 }
Shahar Levi70559a02011-05-22 16:10:22 +0300204}
205
Eliad Peller77ddaa12011-05-15 11:10:29 +0300206static void wl12xx_event_soft_gemini_sense(struct wl1271 *wl,
207 u8 enable)
208{
209 if (enable) {
210 /* disable dynamic PS when requested by the firmware */
211 ieee80211_disable_dyn_ps(wl->vif);
212 set_bit(WL1271_FLAG_SOFT_GEMINI, &wl->flags);
213 } else {
214 ieee80211_enable_dyn_ps(wl->vif);
215 clear_bit(WL1271_FLAG_SOFT_GEMINI, &wl->flags);
216 wl1271_recalc_rx_streaming(wl);
217 }
218
219}
220
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300221static void wl1271_event_mbox_dump(struct event_mailbox *mbox)
222{
223 wl1271_debug(DEBUG_EVENT, "MBOX DUMP:");
224 wl1271_debug(DEBUG_EVENT, "\tvector: 0x%x", mbox->events_vector);
225 wl1271_debug(DEBUG_EVENT, "\tmask: 0x%x", mbox->events_mask);
226}
227
228static int wl1271_event_process(struct wl1271 *wl, struct event_mailbox *mbox)
229{
Eliad Pellerd2d66c52011-10-05 11:55:43 +0200230 struct ieee80211_vif *vif = wl->vif; /* TODO: get as param */
231 struct wl12xx_vif *wlvif = wl12xx_vif_to_data(vif);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300232 int ret;
233 u32 vector;
Juuso Oikarinen19ad0712009-11-02 20:22:11 +0200234 bool beacon_loss = false;
Eliad Peller536129c82011-10-05 11:55:45 +0200235 bool is_ap = (wlvif->bss_type == BSS_TYPE_AP_BSS);
Arik Nemtsov3618f302011-06-26 10:36:03 +0300236 bool disconnect_sta = false;
237 unsigned long sta_bitmap = 0;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300238
239 wl1271_event_mbox_dump(mbox);
240
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300241 vector = le32_to_cpu(mbox->events_vector);
242 vector &= ~(le32_to_cpu(mbox->events_mask));
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300243 wl1271_debug(DEBUG_EVENT, "vector: 0x%x", vector);
244
245 if (vector & SCAN_COMPLETE_EVENT_ID) {
Luciano Coelho34dd2aa2010-07-08 17:50:06 +0300246 wl1271_debug(DEBUG_EVENT, "status: 0x%x",
247 mbox->scheduled_scan_status);
248
Eliad Peller784f6942011-10-05 11:55:39 +0200249 wl1271_scan_stm(wl, wl->scan_vif);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300250 }
251
Luciano Coelho6394c012011-05-10 14:28:27 +0300252 if (vector & PERIODIC_SCAN_REPORT_EVENT_ID) {
253 wl1271_debug(DEBUG_EVENT, "PERIODIC_SCAN_REPORT_EVENT "
254 "(status 0x%0x)", mbox->scheduled_scan_status);
Luciano Coelho33c2c062011-05-10 14:46:02 +0300255
256 wl1271_scan_sched_scan_results(wl);
Luciano Coelho6394c012011-05-10 14:28:27 +0300257 }
258
259 if (vector & PERIODIC_SCAN_COMPLETE_EVENT_ID) {
260 wl1271_debug(DEBUG_EVENT, "PERIODIC_SCAN_COMPLETE_EVENT "
261 "(status 0x%0x)", mbox->scheduled_scan_status);
Luciano Coelho33c2c062011-05-10 14:46:02 +0300262 if (wl->sched_scanning) {
263 wl1271_scan_sched_scan_stop(wl);
264 ieee80211_sched_scan_stopped(wl->hw);
265 }
Luciano Coelho6394c012011-05-10 14:28:27 +0300266 }
267
Juuso Oikarinen8d2ef7b2010-07-08 17:50:03 +0300268 if (vector & SOFT_GEMINI_SENSE_EVENT_ID &&
Eliad Peller536129c82011-10-05 11:55:45 +0200269 wlvif->bss_type == BSS_TYPE_STA_BSS)
Eliad Peller77ddaa12011-05-15 11:10:29 +0300270 wl12xx_event_soft_gemini_sense(wl,
271 mbox->soft_gemini_sense_info);
Juuso Oikarinen8d2ef7b2010-07-08 17:50:03 +0300272
Juuso Oikarinenb771eee2009-10-08 21:56:34 +0300273 /*
274 * The BSS_LOSE_EVENT_ID is only needed while psm (and hence beacon
275 * filtering) is enabled. Without PSM, the stack will receive all
276 * beacons and can detect beacon loss by itself.
Teemu Paasikivi64e29e442010-03-26 12:53:26 +0200277 *
278 * As there's possibility that the driver disables PSM before receiving
279 * BSS_LOSE_EVENT, beacon loss has to be reported to the stack.
280 *
Juuso Oikarinenb771eee2009-10-08 21:56:34 +0300281 */
Arik Nemtsov203c9032010-10-25 11:17:44 +0200282 if ((vector & BSS_LOSE_EVENT_ID) && !is_ap) {
Juuso Oikarinen1a186a52010-04-01 11:38:23 +0300283 wl1271_info("Beacon loss detected.");
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300284
Juuso Oikarinenb771eee2009-10-08 21:56:34 +0300285 /* indicate to the stack, that beacons have been lost */
Juuso Oikarinen19ad0712009-11-02 20:22:11 +0200286 beacon_loss = true;
287 }
288
Arik Nemtsov203c9032010-10-25 11:17:44 +0200289 if ((vector & PS_REPORT_EVENT_ID) && !is_ap) {
Juuso Oikarinen19ad0712009-11-02 20:22:11 +0200290 wl1271_debug(DEBUG_EVENT, "PS_REPORT_EVENT");
Eliad Pellerd2d66c52011-10-05 11:55:43 +0200291 ret = wl1271_event_ps_report(wl, wlvif, mbox, &beacon_loss);
Juuso Oikarinen19ad0712009-11-02 20:22:11 +0200292 if (ret < 0)
293 return ret;
294 }
295
Arik Nemtsov203c9032010-10-25 11:17:44 +0200296 if ((vector & PSPOLL_DELIVERY_FAILURE_EVENT_ID) && !is_ap)
Eliad Pellerd2d66c52011-10-05 11:55:43 +0200297 wl1271_event_pspoll_delivery_fail(wl, wlvif);
Juuso Oikarinen90494a92010-07-08 17:50:00 +0300298
Juuso Oikarinen00236aed2010-04-09 11:07:30 +0300299 if (vector & RSSI_SNR_TRIGGER_0_EVENT_ID) {
300 wl1271_debug(DEBUG_EVENT, "RSSI_SNR_TRIGGER_0_EVENT");
301 if (wl->vif)
Eliad Peller04324d92011-10-05 11:56:03 +0200302 wl1271_event_rssi_trigger(wl, vif, mbox);
Juuso Oikarinen00236aed2010-04-09 11:07:30 +0300303 }
304
Arik Nemtsovf4d3b6a2011-08-25 12:43:16 +0300305 if ((vector & BA_SESSION_RX_CONSTRAINT_EVENT_ID)) {
Shahar Levi70559a02011-05-22 16:10:22 +0300306 wl1271_debug(DEBUG_EVENT, "BA_SESSION_RX_CONSTRAINT_EVENT_ID. "
Eliad Pellerc690ec82011-08-14 13:17:07 +0300307 "ba_allowed = 0x%x", mbox->rx_ba_allowed);
Shahar Levi70559a02011-05-22 16:10:22 +0300308
Eliad Pellerd0802ab2011-10-05 11:56:04 +0200309 wlvif->ba_allowed = !!mbox->rx_ba_allowed;
Arik Nemtsovf4d3b6a2011-08-25 12:43:16 +0300310
Eliad Pellerd0802ab2011-10-05 11:56:04 +0200311 if (wl->vif && !wlvif->ba_allowed)
Eliad Peller536129c82011-10-05 11:55:45 +0200312 wl1271_stop_ba_event(wl, wlvif);
Shahar Levi70559a02011-05-22 16:10:22 +0300313 }
314
Shahar Levi6d158ff2011-09-08 13:01:33 +0300315 if ((vector & CHANNEL_SWITCH_COMPLETE_EVENT_ID) && !is_ap) {
316 wl1271_debug(DEBUG_EVENT, "CHANNEL_SWITCH_COMPLETE_EVENT_ID. "
317 "status = 0x%x",
318 mbox->channel_switch_status);
319 /*
320 * That event uses for two cases:
321 * 1) channel switch complete with status=0
322 * 2) channel switch failed status=1
323 */
324 if (test_and_clear_bit(WL1271_FLAG_CS_PROGRESS, &wl->flags) &&
325 (wl->vif))
326 ieee80211_chswitch_done(wl->vif,
327 mbox->channel_switch_status ? false : true);
328 }
329
Arik Nemtsov79ebec72011-08-14 13:17:18 +0300330 if ((vector & DUMMY_PACKET_EVENT_ID)) {
Shahar Leviae47c452011-03-06 16:32:14 +0200331 wl1271_debug(DEBUG_EVENT, "DUMMY_PACKET_ID_EVENT_ID");
332 if (wl->vif)
333 wl1271_tx_dummy_packet(wl);
334 }
335
Arik Nemtsov3618f302011-06-26 10:36:03 +0300336 /*
337 * "TX retries exceeded" has a different meaning according to mode.
338 * In AP mode the offending station is disconnected.
339 */
340 if ((vector & MAX_TX_RETRY_EVENT_ID) && is_ap) {
341 wl1271_debug(DEBUG_EVENT, "MAX_TX_RETRY_EVENT_ID");
342 sta_bitmap |= le16_to_cpu(mbox->sta_tx_retry_exceeded);
343 disconnect_sta = true;
344 }
345
346 if ((vector & INACTIVE_STA_EVENT_ID) && is_ap) {
347 wl1271_debug(DEBUG_EVENT, "INACTIVE_STA_EVENT_ID");
348 sta_bitmap |= le16_to_cpu(mbox->sta_aging_status);
349 disconnect_sta = true;
350 }
351
352 if (is_ap && disconnect_sta) {
353 u32 num_packets = wl->conf.tx.max_tx_retries;
354 struct ieee80211_sta *sta;
355 const u8 *addr;
356 int h;
357
358 for (h = find_first_bit(&sta_bitmap, AP_MAX_LINKS);
359 h < AP_MAX_LINKS;
360 h = find_next_bit(&sta_bitmap, AP_MAX_LINKS, h+1)) {
361 if (!wl1271_is_active_sta(wl, h))
362 continue;
363
364 addr = wl->links[h].addr;
365
366 rcu_read_lock();
367 sta = ieee80211_find_sta(wl->vif, addr);
368 if (sta) {
369 wl1271_debug(DEBUG_EVENT, "remove sta %d", h);
370 ieee80211_report_low_ack(sta, num_packets);
371 }
372 rcu_read_unlock();
373 }
374 }
375
Juuso Oikarinend60772f2010-03-26 12:53:29 +0200376 if (wl->vif && beacon_loss)
377 ieee80211_connection_loss(wl->vif);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300378
379 return 0;
380}
381
382int wl1271_event_unmask(struct wl1271 *wl)
383{
384 int ret;
385
386 ret = wl1271_acx_event_mbox_mask(wl, ~(wl->event_mask));
387 if (ret < 0)
388 return ret;
389
390 return 0;
391}
392
393void wl1271_event_mbox_config(struct wl1271 *wl)
394{
Teemu Paasikivi7b048c52010-02-18 13:25:55 +0200395 wl->mbox_ptr[0] = wl1271_read32(wl, REG_EVENT_MAILBOX_PTR);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300396 wl->mbox_ptr[1] = wl->mbox_ptr[0] + sizeof(struct event_mailbox);
397
398 wl1271_debug(DEBUG_EVENT, "MBOX ptrs: 0x%x 0x%x",
399 wl->mbox_ptr[0], wl->mbox_ptr[1]);
400}
401
Juuso Oikarinen13f2dc52009-12-11 15:40:59 +0200402int wl1271_event_handle(struct wl1271 *wl, u8 mbox_num)
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300403{
404 struct event_mailbox mbox;
405 int ret;
406
407 wl1271_debug(DEBUG_EVENT, "EVENT on mbox %d", mbox_num);
408
409 if (mbox_num > 1)
410 return -EINVAL;
411
412 /* first we read the mbox descriptor */
Teemu Paasikivi7b048c52010-02-18 13:25:55 +0200413 wl1271_read(wl, wl->mbox_ptr[mbox_num], &mbox,
414 sizeof(struct event_mailbox), false);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300415
416 /* process the descriptor */
417 ret = wl1271_event_process(wl, &mbox);
418 if (ret < 0)
419 return ret;
420
421 /* then we let the firmware know it can go on...*/
Teemu Paasikivi7b048c52010-02-18 13:25:55 +0200422 wl1271_write32(wl, ACX_REG_INTERRUPT_TRIG, INTR_TRIG_EVENT_ACK);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300423
424 return 0;
425}