blob: 712372e50a8794ae550f91709a31589d83e4b90a [file] [log] [blame]
Kalle Valo2f01a1f2009-04-29 23:33:31 +03001/*
Kalle Valo80301cd2009-06-12 14:17:39 +03002 * This file is part of wl1251
Kalle Valo2f01a1f2009-04-29 23:33:31 +03003 *
4 * Copyright (c) 1998-2007 Texas Instruments Incorporated
5 * Copyright (C) 2008 Nokia Corporation
6 *
Kalle Valo2f01a1f2009-04-29 23:33:31 +03007 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * version 2 as published by the Free Software Foundation.
10 *
11 * This program is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
19 * 02110-1301 USA
20 *
21 */
22
Kalle Valo13674112009-06-12 14:17:25 +030023#include "wl1251.h"
Kalle Valo9bc67722010-10-10 11:28:32 +030024#include "reg.h"
25#include "io.h"
26#include "event.h"
27#include "ps.h"
Kalle Valo2f01a1f2009-04-29 23:33:31 +030028
Kalle Valo80301cd2009-06-12 14:17:39 +030029static int wl1251_event_scan_complete(struct wl1251 *wl,
Kalle Valo2f01a1f2009-04-29 23:33:31 +030030 struct event_mailbox *mbox)
31{
Kalle Valo80301cd2009-06-12 14:17:39 +030032 wl1251_debug(DEBUG_EVENT, "status: 0x%x, channels: %d",
Kalle Valo2f01a1f2009-04-29 23:33:31 +030033 mbox->scheduled_scan_status,
34 mbox->scheduled_scan_channels);
35
36 if (wl->scanning) {
Kalle Valo2f01a1f2009-04-29 23:33:31 +030037 ieee80211_scan_completed(wl->hw, false);
Kalle Valo2789da92009-08-07 13:35:26 +030038 wl1251_debug(DEBUG_MAC80211, "mac80211 hw scan completed");
Kalle Valo2f01a1f2009-04-29 23:33:31 +030039 wl->scanning = false;
40 }
41
42 return 0;
43}
44
Kalle Valo80301cd2009-06-12 14:17:39 +030045static void wl1251_event_mbox_dump(struct event_mailbox *mbox)
Kalle Valo2f01a1f2009-04-29 23:33:31 +030046{
Kalle Valo80301cd2009-06-12 14:17:39 +030047 wl1251_debug(DEBUG_EVENT, "MBOX DUMP:");
48 wl1251_debug(DEBUG_EVENT, "\tvector: 0x%x", mbox->events_vector);
49 wl1251_debug(DEBUG_EVENT, "\tmask: 0x%x", mbox->events_mask);
Kalle Valo2f01a1f2009-04-29 23:33:31 +030050}
51
Kalle Valo80301cd2009-06-12 14:17:39 +030052static int wl1251_event_process(struct wl1251 *wl, struct event_mailbox *mbox)
Kalle Valo2f01a1f2009-04-29 23:33:31 +030053{
54 int ret;
55 u32 vector;
56
Kalle Valo80301cd2009-06-12 14:17:39 +030057 wl1251_event_mbox_dump(mbox);
Kalle Valo2f01a1f2009-04-29 23:33:31 +030058
59 vector = mbox->events_vector & ~(mbox->events_mask);
Kalle Valo80301cd2009-06-12 14:17:39 +030060 wl1251_debug(DEBUG_EVENT, "vector: 0x%x", vector);
Kalle Valo2f01a1f2009-04-29 23:33:31 +030061
62 if (vector & SCAN_COMPLETE_EVENT_ID) {
Kalle Valo80301cd2009-06-12 14:17:39 +030063 ret = wl1251_event_scan_complete(wl, mbox);
Kalle Valo2f01a1f2009-04-29 23:33:31 +030064 if (ret < 0)
65 return ret;
66 }
67
68 if (vector & BSS_LOSE_EVENT_ID) {
Kalle Valo80301cd2009-06-12 14:17:39 +030069 wl1251_debug(DEBUG_EVENT, "BSS_LOSE_EVENT");
Kalle Valo2f01a1f2009-04-29 23:33:31 +030070
71 if (wl->psm_requested && wl->psm) {
Kalle Valo80301cd2009-06-12 14:17:39 +030072 ret = wl1251_ps_set_mode(wl, STATION_ACTIVE_MODE);
Kalle Valo2f01a1f2009-04-29 23:33:31 +030073 if (ret < 0)
74 return ret;
75 }
76 }
77
Juuso Oikarinen287f6f92009-11-17 18:48:23 +020078 if (vector & SYNCHRONIZATION_TIMEOUT_EVENT_ID && wl->psm) {
79 wl1251_debug(DEBUG_EVENT, "SYNCHRONIZATION_TIMEOUT_EVENT");
80
81 /* indicate to the stack, that beacons have been lost */
82 ieee80211_beacon_loss(wl->vif);
83 }
84
Vidhya Govindan33d51fa2009-11-17 18:49:23 +020085 if (vector & REGAINED_BSS_EVENT_ID) {
86 if (wl->psm_requested) {
87 ret = wl1251_ps_set_mode(wl, STATION_POWER_SAVE_MODE);
88 if (ret < 0)
89 return ret;
90 }
91 }
92
Kalle Valo2f01a1f2009-04-29 23:33:31 +030093 return 0;
94}
95
Grazvydas Ignotas7273b972010-08-17 22:46:55 +030096/*
97 * Poll the mailbox event field until any of the bits in the mask is set or a
98 * timeout occurs (WL1251_EVENT_TIMEOUT in msecs)
99 */
100int wl1251_event_wait(struct wl1251 *wl, u32 mask, int timeout_ms)
101{
102 u32 events_vector, event;
103 unsigned long timeout;
104
105 timeout = jiffies + msecs_to_jiffies(timeout_ms);
106
107 do {
108 if (time_after(jiffies, timeout))
109 return -ETIMEDOUT;
110
111 msleep(1);
112
113 /* read from both event fields */
114 wl1251_mem_read(wl, wl->mbox_ptr[0], &events_vector,
115 sizeof(events_vector));
116 event = events_vector & mask;
117 wl1251_mem_read(wl, wl->mbox_ptr[1], &events_vector,
118 sizeof(events_vector));
119 event |= events_vector & mask;
120 } while (!event);
121
122 return 0;
123}
124
Kalle Valo80301cd2009-06-12 14:17:39 +0300125int wl1251_event_unmask(struct wl1251 *wl)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300126{
127 int ret;
128
Kalle Valo80301cd2009-06-12 14:17:39 +0300129 ret = wl1251_acx_event_mbox_mask(wl, ~(wl->event_mask));
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300130 if (ret < 0)
131 return ret;
132
133 return 0;
134}
135
Kalle Valo80301cd2009-06-12 14:17:39 +0300136void wl1251_event_mbox_config(struct wl1251 *wl)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300137{
Kalle Valo80301cd2009-06-12 14:17:39 +0300138 wl->mbox_ptr[0] = wl1251_reg_read32(wl, REG_EVENT_MAILBOX_PTR);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300139 wl->mbox_ptr[1] = wl->mbox_ptr[0] + sizeof(struct event_mailbox);
140
Kalle Valo80301cd2009-06-12 14:17:39 +0300141 wl1251_debug(DEBUG_EVENT, "MBOX ptrs: 0x%x 0x%x",
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300142 wl->mbox_ptr[0], wl->mbox_ptr[1]);
143}
144
Kalle Valo80301cd2009-06-12 14:17:39 +0300145int wl1251_event_handle(struct wl1251 *wl, u8 mbox_num)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300146{
147 struct event_mailbox mbox;
148 int ret;
149
Kalle Valo80301cd2009-06-12 14:17:39 +0300150 wl1251_debug(DEBUG_EVENT, "EVENT on mbox %d", mbox_num);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300151
152 if (mbox_num > 1)
153 return -EINVAL;
154
155 /* first we read the mbox descriptor */
Bob Copeland0764de62009-08-07 13:32:56 +0300156 wl1251_mem_read(wl, wl->mbox_ptr[mbox_num], &mbox,
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300157 sizeof(struct event_mailbox));
158
159 /* process the descriptor */
Kalle Valo80301cd2009-06-12 14:17:39 +0300160 ret = wl1251_event_process(wl, &mbox);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300161 if (ret < 0)
162 return ret;
163
164 /* then we let the firmware know it can go on...*/
Kalle Valo80301cd2009-06-12 14:17:39 +0300165 wl1251_reg_write32(wl, ACX_REG_INTERRUPT_TRIG, INTR_TRIG_EVENT_ACK);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300166
167 return 0;
168}