blob: 87055f7996bcc3b3014fa62524b596a9d27b628e [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
24#include "wl1271.h"
25#include "wl1271_reg.h"
26#include "wl1271_spi.h"
27#include "wl1271_event.h"
28#include "wl1271_ps.h"
Juuso Oikarinen66497dc2009-10-08 21:56:30 +030029#include "wl12xx_80211.h"
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030030
31static int wl1271_event_scan_complete(struct wl1271 *wl,
32 struct event_mailbox *mbox)
33{
34 wl1271_debug(DEBUG_EVENT, "status: 0x%x",
35 mbox->scheduled_scan_status);
36
37 if (wl->scanning) {
Juuso Oikarinen66497dc2009-10-08 21:56:30 +030038 int size = sizeof(struct wl12xx_probe_req_template);
39 wl1271_cmd_template_set(wl, CMD_TEMPL_CFG_PROBE_REQ_2_4, NULL,
40 size);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030041 mutex_unlock(&wl->mutex);
42 ieee80211_scan_completed(wl->hw, false);
43 mutex_lock(&wl->mutex);
44 wl->scanning = false;
45 }
46
47 return 0;
48}
49
50static void wl1271_event_mbox_dump(struct event_mailbox *mbox)
51{
52 wl1271_debug(DEBUG_EVENT, "MBOX DUMP:");
53 wl1271_debug(DEBUG_EVENT, "\tvector: 0x%x", mbox->events_vector);
54 wl1271_debug(DEBUG_EVENT, "\tmask: 0x%x", mbox->events_mask);
55}
56
57static int wl1271_event_process(struct wl1271 *wl, struct event_mailbox *mbox)
58{
59 int ret;
60 u32 vector;
61
62 wl1271_event_mbox_dump(mbox);
63
64 vector = mbox->events_vector & ~(mbox->events_mask);
65 wl1271_debug(DEBUG_EVENT, "vector: 0x%x", vector);
66
67 if (vector & SCAN_COMPLETE_EVENT_ID) {
68 ret = wl1271_event_scan_complete(wl, mbox);
69 if (ret < 0)
70 return ret;
71 }
72
73 if (vector & BSS_LOSE_EVENT_ID) {
74 wl1271_debug(DEBUG_EVENT, "BSS_LOSE_EVENT");
75
76 if (wl->psm_requested && wl->psm) {
77 ret = wl1271_ps_set_mode(wl, STATION_ACTIVE_MODE);
78 if (ret < 0)
79 return ret;
80 }
81 }
82
83 return 0;
84}
85
86int wl1271_event_unmask(struct wl1271 *wl)
87{
88 int ret;
89
90 ret = wl1271_acx_event_mbox_mask(wl, ~(wl->event_mask));
91 if (ret < 0)
92 return ret;
93
94 return 0;
95}
96
97void wl1271_event_mbox_config(struct wl1271 *wl)
98{
99 wl->mbox_ptr[0] = wl1271_reg_read32(wl, REG_EVENT_MAILBOX_PTR);
100 wl->mbox_ptr[1] = wl->mbox_ptr[0] + sizeof(struct event_mailbox);
101
102 wl1271_debug(DEBUG_EVENT, "MBOX ptrs: 0x%x 0x%x",
103 wl->mbox_ptr[0], wl->mbox_ptr[1]);
104}
105
106int wl1271_event_handle(struct wl1271 *wl, u8 mbox_num)
107{
108 struct event_mailbox mbox;
109 int ret;
110
111 wl1271_debug(DEBUG_EVENT, "EVENT on mbox %d", mbox_num);
112
113 if (mbox_num > 1)
114 return -EINVAL;
115
116 /* first we read the mbox descriptor */
117 wl1271_spi_mem_read(wl, wl->mbox_ptr[mbox_num], &mbox,
118 sizeof(struct event_mailbox));
119
120 /* process the descriptor */
121 ret = wl1271_event_process(wl, &mbox);
122 if (ret < 0)
123 return ret;
124
125 /* then we let the firmware know it can go on...*/
126 wl1271_reg_write32(wl, ACX_REG_INTERRUPT_TRIG, INTR_TRIG_EVENT_ACK);
127
128 return 0;
129}