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" |
Teemu Paasikivi | 7b048c5 | 2010-02-18 13:25:55 +0200 | [diff] [blame] | 26 | #include "wl1271_io.h" |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 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 | { |
| 34 | wl1271_debug(DEBUG_EVENT, "status: 0x%x", |
| 35 | mbox->scheduled_scan_status); |
| 36 | |
Juuso Oikarinen | 71449f8 | 2009-12-11 15:41:07 +0200 | [diff] [blame] | 37 | if (test_bit(WL1271_FLAG_SCANNING, &wl->flags)) { |
Teemu Paasikivi | abb0b3b | 2009-10-13 12:47:50 +0300 | [diff] [blame] | 38 | if (wl->scan.state == WL1271_SCAN_BAND_DUAL) { |
Teemu Paasikivi | abb0b3b | 2009-10-13 12:47:50 +0300 | [diff] [blame] | 39 | /* 2.4 GHz band scanned, scan 5 GHz band, pretend |
| 40 | * to the wl1271_cmd_scan function that we are not |
| 41 | * scanning as it checks that. |
| 42 | */ |
Juuso Oikarinen | 71449f8 | 2009-12-11 15:41:07 +0200 | [diff] [blame] | 43 | clear_bit(WL1271_FLAG_SCANNING, &wl->flags); |
Kalle Valo | 818e306 | 2010-03-18 12:26:35 +0200 | [diff] [blame] | 44 | /* FIXME: ie missing! */ |
Teemu Paasikivi | abb0b3b | 2009-10-13 12:47:50 +0300 | [diff] [blame] | 45 | wl1271_cmd_scan(wl, wl->scan.ssid, wl->scan.ssid_len, |
Kalle Valo | 818e306 | 2010-03-18 12:26:35 +0200 | [diff] [blame] | 46 | NULL, 0, |
Teemu Paasikivi | abb0b3b | 2009-10-13 12:47:50 +0300 | [diff] [blame] | 47 | wl->scan.active, |
| 48 | wl->scan.high_prio, |
| 49 | WL1271_SCAN_BAND_5_GHZ, |
| 50 | wl->scan.probe_requests); |
| 51 | } else { |
Teemu Paasikivi | abb0b3b | 2009-10-13 12:47:50 +0300 | [diff] [blame] | 52 | mutex_unlock(&wl->mutex); |
| 53 | ieee80211_scan_completed(wl->hw, false); |
| 54 | mutex_lock(&wl->mutex); |
Juuso Oikarinen | 71449f8 | 2009-12-11 15:41:07 +0200 | [diff] [blame] | 55 | clear_bit(WL1271_FLAG_SCANNING, &wl->flags); |
Teemu Paasikivi | abb0b3b | 2009-10-13 12:47:50 +0300 | [diff] [blame] | 56 | } |
| 57 | } |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 58 | return 0; |
| 59 | } |
| 60 | |
Juuso Oikarinen | 19ad071 | 2009-11-02 20:22:11 +0200 | [diff] [blame] | 61 | static int wl1271_event_ps_report(struct wl1271 *wl, |
| 62 | struct event_mailbox *mbox, |
| 63 | bool *beacon_loss) |
| 64 | { |
| 65 | int ret = 0; |
| 66 | |
| 67 | wl1271_debug(DEBUG_EVENT, "ps_status: 0x%x", mbox->ps_status); |
| 68 | |
| 69 | switch (mbox->ps_status) { |
| 70 | case EVENT_ENTER_POWER_SAVE_FAIL: |
Juuso Oikarinen | d8c42c0 | 2010-02-18 13:25:36 +0200 | [diff] [blame] | 71 | wl1271_debug(DEBUG_PSM, "PSM entry failed"); |
| 72 | |
Juuso Oikarinen | 71449f8 | 2009-12-11 15:41:07 +0200 | [diff] [blame] | 73 | if (!test_bit(WL1271_FLAG_PSM, &wl->flags)) { |
Juuso Oikarinen | d8c42c0 | 2010-02-18 13:25:36 +0200 | [diff] [blame] | 74 | /* remain in active mode */ |
Juuso Oikarinen | 461fa13 | 2009-11-23 23:22:13 +0200 | [diff] [blame] | 75 | wl->psm_entry_retry = 0; |
| 76 | break; |
| 77 | } |
| 78 | |
Juuso Oikarinen | 19ad071 | 2009-11-02 20:22:11 +0200 | [diff] [blame] | 79 | if (wl->psm_entry_retry < wl->conf.conn.psm_entry_retries) { |
| 80 | wl->psm_entry_retry++; |
Juuso Oikarinen | d8c42c0 | 2010-02-18 13:25:36 +0200 | [diff] [blame] | 81 | ret = wl1271_ps_set_mode(wl, STATION_POWER_SAVE_MODE, |
| 82 | true); |
Juuso Oikarinen | 19ad071 | 2009-11-02 20:22:11 +0200 | [diff] [blame] | 83 | } else { |
Juuso Oikarinen | 1a186a5 | 2010-04-01 11:38:23 +0300 | [diff] [blame^] | 84 | wl1271_info("No ack to nullfunc from AP."); |
Juuso Oikarinen | 19ad071 | 2009-11-02 20:22:11 +0200 | [diff] [blame] | 85 | wl->psm_entry_retry = 0; |
Juuso Oikarinen | d60772f | 2010-03-26 12:53:29 +0200 | [diff] [blame] | 86 | *beacon_loss = true; |
Juuso Oikarinen | 19ad071 | 2009-11-02 20:22:11 +0200 | [diff] [blame] | 87 | } |
| 88 | break; |
| 89 | case EVENT_ENTER_POWER_SAVE_SUCCESS: |
| 90 | wl->psm_entry_retry = 0; |
Juuso Oikarinen | d8c42c0 | 2010-02-18 13:25:36 +0200 | [diff] [blame] | 91 | |
| 92 | /* enable beacon filtering */ |
| 93 | ret = wl1271_acx_beacon_filter_opt(wl, true); |
| 94 | if (ret < 0) |
| 95 | break; |
| 96 | |
| 97 | /* enable beacon early termination */ |
| 98 | ret = wl1271_acx_bet_enable(wl, true); |
| 99 | if (ret < 0) |
| 100 | break; |
| 101 | |
| 102 | /* go to extremely low power mode */ |
| 103 | wl1271_ps_elp_sleep(wl); |
| 104 | if (ret < 0) |
| 105 | break; |
Juuso Oikarinen | 19ad071 | 2009-11-02 20:22:11 +0200 | [diff] [blame] | 106 | break; |
| 107 | case EVENT_EXIT_POWER_SAVE_FAIL: |
Juuso Oikarinen | d8c42c0 | 2010-02-18 13:25:36 +0200 | [diff] [blame] | 108 | wl1271_debug(DEBUG_PSM, "PSM exit failed"); |
| 109 | |
| 110 | if (test_bit(WL1271_FLAG_PSM, &wl->flags)) { |
| 111 | wl->psm_entry_retry = 0; |
| 112 | break; |
| 113 | } |
| 114 | |
Juuso Oikarinen | 30240fc | 2010-02-18 13:25:38 +0200 | [diff] [blame] | 115 | /* make sure the firmware goes to active mode - the frame to |
| 116 | be sent next will indicate to the AP, that we are active. */ |
Juuso Oikarinen | d8c42c0 | 2010-02-18 13:25:36 +0200 | [diff] [blame] | 117 | ret = wl1271_ps_set_mode(wl, STATION_ACTIVE_MODE, |
| 118 | false); |
Juuso Oikarinen | 19ad071 | 2009-11-02 20:22:11 +0200 | [diff] [blame] | 119 | break; |
| 120 | case EVENT_EXIT_POWER_SAVE_SUCCESS: |
| 121 | default: |
| 122 | break; |
| 123 | } |
| 124 | |
| 125 | return ret; |
| 126 | } |
| 127 | |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 128 | static void wl1271_event_mbox_dump(struct event_mailbox *mbox) |
| 129 | { |
| 130 | wl1271_debug(DEBUG_EVENT, "MBOX DUMP:"); |
| 131 | wl1271_debug(DEBUG_EVENT, "\tvector: 0x%x", mbox->events_vector); |
| 132 | wl1271_debug(DEBUG_EVENT, "\tmask: 0x%x", mbox->events_mask); |
| 133 | } |
| 134 | |
| 135 | static int wl1271_event_process(struct wl1271 *wl, struct event_mailbox *mbox) |
| 136 | { |
| 137 | int ret; |
| 138 | u32 vector; |
Juuso Oikarinen | 19ad071 | 2009-11-02 20:22:11 +0200 | [diff] [blame] | 139 | bool beacon_loss = false; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 140 | |
| 141 | wl1271_event_mbox_dump(mbox); |
| 142 | |
Luciano Coelho | d0f63b2 | 2009-10-15 10:33:29 +0300 | [diff] [blame] | 143 | vector = le32_to_cpu(mbox->events_vector); |
| 144 | vector &= ~(le32_to_cpu(mbox->events_mask)); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 145 | wl1271_debug(DEBUG_EVENT, "vector: 0x%x", vector); |
| 146 | |
| 147 | if (vector & SCAN_COMPLETE_EVENT_ID) { |
| 148 | ret = wl1271_event_scan_complete(wl, mbox); |
| 149 | if (ret < 0) |
| 150 | return ret; |
| 151 | } |
| 152 | |
Juuso Oikarinen | b771eee | 2009-10-08 21:56:34 +0300 | [diff] [blame] | 153 | /* |
| 154 | * The BSS_LOSE_EVENT_ID is only needed while psm (and hence beacon |
| 155 | * filtering) is enabled. Without PSM, the stack will receive all |
| 156 | * beacons and can detect beacon loss by itself. |
Teemu Paasikivi | 64e29e44 | 2010-03-26 12:53:26 +0200 | [diff] [blame] | 157 | * |
| 158 | * As there's possibility that the driver disables PSM before receiving |
| 159 | * BSS_LOSE_EVENT, beacon loss has to be reported to the stack. |
| 160 | * |
Juuso Oikarinen | b771eee | 2009-10-08 21:56:34 +0300 | [diff] [blame] | 161 | */ |
Teemu Paasikivi | 64e29e44 | 2010-03-26 12:53:26 +0200 | [diff] [blame] | 162 | if (vector & BSS_LOSE_EVENT_ID) { |
Juuso Oikarinen | 1a186a5 | 2010-04-01 11:38:23 +0300 | [diff] [blame^] | 163 | wl1271_info("Beacon loss detected."); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 164 | |
Juuso Oikarinen | b771eee | 2009-10-08 21:56:34 +0300 | [diff] [blame] | 165 | /* indicate to the stack, that beacons have been lost */ |
Juuso Oikarinen | 19ad071 | 2009-11-02 20:22:11 +0200 | [diff] [blame] | 166 | beacon_loss = true; |
| 167 | } |
| 168 | |
| 169 | if (vector & PS_REPORT_EVENT_ID) { |
| 170 | wl1271_debug(DEBUG_EVENT, "PS_REPORT_EVENT"); |
| 171 | ret = wl1271_event_ps_report(wl, mbox, &beacon_loss); |
| 172 | if (ret < 0) |
| 173 | return ret; |
| 174 | } |
| 175 | |
Juuso Oikarinen | d60772f | 2010-03-26 12:53:29 +0200 | [diff] [blame] | 176 | if (wl->vif && beacon_loss) |
| 177 | ieee80211_connection_loss(wl->vif); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 178 | |
| 179 | return 0; |
| 180 | } |
| 181 | |
| 182 | int wl1271_event_unmask(struct wl1271 *wl) |
| 183 | { |
| 184 | int ret; |
| 185 | |
| 186 | ret = wl1271_acx_event_mbox_mask(wl, ~(wl->event_mask)); |
| 187 | if (ret < 0) |
| 188 | return ret; |
| 189 | |
| 190 | return 0; |
| 191 | } |
| 192 | |
| 193 | void wl1271_event_mbox_config(struct wl1271 *wl) |
| 194 | { |
Teemu Paasikivi | 7b048c5 | 2010-02-18 13:25:55 +0200 | [diff] [blame] | 195 | wl->mbox_ptr[0] = wl1271_read32(wl, REG_EVENT_MAILBOX_PTR); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 196 | wl->mbox_ptr[1] = wl->mbox_ptr[0] + sizeof(struct event_mailbox); |
| 197 | |
| 198 | wl1271_debug(DEBUG_EVENT, "MBOX ptrs: 0x%x 0x%x", |
| 199 | wl->mbox_ptr[0], wl->mbox_ptr[1]); |
| 200 | } |
| 201 | |
Juuso Oikarinen | 13f2dc5 | 2009-12-11 15:40:59 +0200 | [diff] [blame] | 202 | int wl1271_event_handle(struct wl1271 *wl, u8 mbox_num) |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 203 | { |
| 204 | struct event_mailbox mbox; |
| 205 | int ret; |
| 206 | |
| 207 | wl1271_debug(DEBUG_EVENT, "EVENT on mbox %d", mbox_num); |
| 208 | |
| 209 | if (mbox_num > 1) |
| 210 | return -EINVAL; |
| 211 | |
| 212 | /* first we read the mbox descriptor */ |
Teemu Paasikivi | 7b048c5 | 2010-02-18 13:25:55 +0200 | [diff] [blame] | 213 | wl1271_read(wl, wl->mbox_ptr[mbox_num], &mbox, |
| 214 | sizeof(struct event_mailbox), false); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 215 | |
| 216 | /* process the descriptor */ |
| 217 | ret = wl1271_event_process(wl, &mbox); |
| 218 | if (ret < 0) |
| 219 | return ret; |
| 220 | |
| 221 | /* then we let the firmware know it can go on...*/ |
Teemu Paasikivi | 7b048c5 | 2010-02-18 13:25:55 +0200 | [diff] [blame] | 222 | wl1271_write32(wl, ACX_REG_INTERRUPT_TRIG, INTR_TRIG_EVENT_ACK); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 223 | |
| 224 | return 0; |
| 225 | } |