Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 1 | /* |
| 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 Oikarinen | 66497dc | 2009-10-08 21:56:30 +0300 | [diff] [blame] | 29 | #include "wl12xx_80211.h" |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 30 | |
| 31 | static int wl1271_event_scan_complete(struct wl1271 *wl, |
| 32 | struct event_mailbox *mbox) |
| 33 | { |
Teemu Paasikivi | abb0b3b | 2009-10-13 12:47:50 +0300 | [diff] [blame] | 34 | int size = sizeof(struct wl12xx_probe_req_template); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 35 | wl1271_debug(DEBUG_EVENT, "status: 0x%x", |
| 36 | mbox->scheduled_scan_status); |
| 37 | |
| 38 | if (wl->scanning) { |
Teemu Paasikivi | abb0b3b | 2009-10-13 12:47:50 +0300 | [diff] [blame] | 39 | if (wl->scan.state == WL1271_SCAN_BAND_DUAL) { |
| 40 | wl1271_cmd_template_set(wl, CMD_TEMPL_CFG_PROBE_REQ_2_4, |
| 41 | NULL, size); |
| 42 | /* 2.4 GHz band scanned, scan 5 GHz band, pretend |
| 43 | * to the wl1271_cmd_scan function that we are not |
| 44 | * scanning as it checks that. |
| 45 | */ |
| 46 | wl->scanning = false; |
| 47 | wl1271_cmd_scan(wl, wl->scan.ssid, wl->scan.ssid_len, |
| 48 | wl->scan.active, |
| 49 | wl->scan.high_prio, |
| 50 | WL1271_SCAN_BAND_5_GHZ, |
| 51 | wl->scan.probe_requests); |
| 52 | } else { |
| 53 | if (wl->scan.state == WL1271_SCAN_BAND_2_4_GHZ) |
| 54 | wl1271_cmd_template_set(wl, |
| 55 | CMD_TEMPL_CFG_PROBE_REQ_2_4, |
| 56 | NULL, size); |
| 57 | else |
| 58 | wl1271_cmd_template_set(wl, |
| 59 | CMD_TEMPL_CFG_PROBE_REQ_5, |
| 60 | NULL, size); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 61 | |
Teemu Paasikivi | abb0b3b | 2009-10-13 12:47:50 +0300 | [diff] [blame] | 62 | mutex_unlock(&wl->mutex); |
| 63 | ieee80211_scan_completed(wl->hw, false); |
| 64 | mutex_lock(&wl->mutex); |
| 65 | wl->scanning = false; |
| 66 | } |
| 67 | } |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 68 | return 0; |
| 69 | } |
| 70 | |
| 71 | static void wl1271_event_mbox_dump(struct event_mailbox *mbox) |
| 72 | { |
| 73 | wl1271_debug(DEBUG_EVENT, "MBOX DUMP:"); |
| 74 | wl1271_debug(DEBUG_EVENT, "\tvector: 0x%x", mbox->events_vector); |
| 75 | wl1271_debug(DEBUG_EVENT, "\tmask: 0x%x", mbox->events_mask); |
| 76 | } |
| 77 | |
| 78 | static int wl1271_event_process(struct wl1271 *wl, struct event_mailbox *mbox) |
| 79 | { |
| 80 | int ret; |
| 81 | u32 vector; |
| 82 | |
| 83 | wl1271_event_mbox_dump(mbox); |
| 84 | |
| 85 | vector = mbox->events_vector & ~(mbox->events_mask); |
| 86 | wl1271_debug(DEBUG_EVENT, "vector: 0x%x", vector); |
| 87 | |
| 88 | if (vector & SCAN_COMPLETE_EVENT_ID) { |
| 89 | ret = wl1271_event_scan_complete(wl, mbox); |
| 90 | if (ret < 0) |
| 91 | return ret; |
| 92 | } |
| 93 | |
Juuso Oikarinen | b771eee | 2009-10-08 21:56:34 +0300 | [diff] [blame] | 94 | /* |
| 95 | * The BSS_LOSE_EVENT_ID is only needed while psm (and hence beacon |
| 96 | * filtering) is enabled. Without PSM, the stack will receive all |
| 97 | * beacons and can detect beacon loss by itself. |
| 98 | */ |
| 99 | if (vector & BSS_LOSE_EVENT_ID && wl->psm) { |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 100 | wl1271_debug(DEBUG_EVENT, "BSS_LOSE_EVENT"); |
| 101 | |
Juuso Oikarinen | b771eee | 2009-10-08 21:56:34 +0300 | [diff] [blame] | 102 | /* indicate to the stack, that beacons have been lost */ |
| 103 | ieee80211_beacon_loss(wl->vif); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 104 | } |
| 105 | |
| 106 | return 0; |
| 107 | } |
| 108 | |
| 109 | int wl1271_event_unmask(struct wl1271 *wl) |
| 110 | { |
| 111 | int ret; |
| 112 | |
| 113 | ret = wl1271_acx_event_mbox_mask(wl, ~(wl->event_mask)); |
| 114 | if (ret < 0) |
| 115 | return ret; |
| 116 | |
| 117 | return 0; |
| 118 | } |
| 119 | |
| 120 | void wl1271_event_mbox_config(struct wl1271 *wl) |
| 121 | { |
Juuso Oikarinen | 7462141 | 2009-10-12 15:08:54 +0300 | [diff] [blame] | 122 | wl->mbox_ptr[0] = wl1271_spi_read32(wl, REG_EVENT_MAILBOX_PTR); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 123 | wl->mbox_ptr[1] = wl->mbox_ptr[0] + sizeof(struct event_mailbox); |
| 124 | |
| 125 | wl1271_debug(DEBUG_EVENT, "MBOX ptrs: 0x%x 0x%x", |
| 126 | wl->mbox_ptr[0], wl->mbox_ptr[1]); |
| 127 | } |
| 128 | |
Juuso Oikarinen | 1fd2794 | 2009-10-13 12:47:54 +0300 | [diff] [blame^] | 129 | int wl1271_event_handle(struct wl1271 *wl, u8 mbox_num, bool do_ack) |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 130 | { |
| 131 | struct event_mailbox mbox; |
| 132 | int ret; |
| 133 | |
| 134 | wl1271_debug(DEBUG_EVENT, "EVENT on mbox %d", mbox_num); |
| 135 | |
| 136 | if (mbox_num > 1) |
| 137 | return -EINVAL; |
| 138 | |
| 139 | /* first we read the mbox descriptor */ |
Juuso Oikarinen | 7462141 | 2009-10-12 15:08:54 +0300 | [diff] [blame] | 140 | wl1271_spi_read(wl, wl->mbox_ptr[mbox_num], &mbox, |
| 141 | sizeof(struct event_mailbox), false); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 142 | |
| 143 | /* process the descriptor */ |
| 144 | ret = wl1271_event_process(wl, &mbox); |
| 145 | if (ret < 0) |
| 146 | return ret; |
| 147 | |
| 148 | /* then we let the firmware know it can go on...*/ |
Juuso Oikarinen | 1fd2794 | 2009-10-13 12:47:54 +0300 | [diff] [blame^] | 149 | if (do_ack) |
| 150 | wl1271_spi_write32(wl, ACX_REG_INTERRUPT_TRIG, |
| 151 | INTR_TRIG_EVENT_ACK); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 152 | |
| 153 | return 0; |
| 154 | } |