Eliad Peller | c50a282 | 2012-11-22 18:06:19 +0200 | [diff] [blame^] | 1 | /* |
| 2 | * This file is part of wl12xx |
| 3 | * |
| 4 | * Copyright (C) 2012 Texas Instruments. All rights reserved. |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or |
| 7 | * modify it under the terms of the GNU General Public License |
| 8 | * version 2 as published by the Free Software Foundation. |
| 9 | * |
| 10 | * This program is distributed in the hope that it will be useful, but |
| 11 | * WITHOUT ANY WARRANTY; without even the implied warranty of |
| 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 13 | * General Public License for more details. |
| 14 | * |
| 15 | * You should have received a copy of the GNU General Public License |
| 16 | * along with this program; if not, write to the Free Software |
| 17 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA |
| 18 | * 02110-1301 USA |
| 19 | * |
| 20 | */ |
| 21 | |
| 22 | #include "event.h" |
| 23 | #include "scan.h" |
| 24 | #include "../wlcore/cmd.h" |
| 25 | #include "../wlcore/debug.h" |
| 26 | |
| 27 | int wl18xx_wait_for_event(struct wl1271 *wl, enum wlcore_wait_event event, |
| 28 | bool *timeout) |
| 29 | { |
| 30 | u32 local_event; |
| 31 | |
| 32 | switch (event) { |
| 33 | case WLCORE_EVENT_PEER_REMOVE_COMPLETE: |
| 34 | local_event = PEER_REMOVE_COMPLETE_EVENT_ID; |
| 35 | break; |
| 36 | |
| 37 | default: |
| 38 | /* event not implemented */ |
| 39 | return 0; |
| 40 | } |
| 41 | return wlcore_cmd_wait_for_event_or_timeout(wl, local_event, timeout); |
| 42 | } |
| 43 | |
| 44 | int wl18xx_process_mailbox_events(struct wl1271 *wl) |
| 45 | { |
| 46 | struct wl18xx_event_mailbox *mbox = wl->mbox; |
| 47 | u32 vector; |
| 48 | |
| 49 | vector = le32_to_cpu(mbox->events_vector); |
| 50 | wl1271_debug(DEBUG_EVENT, "MBOX vector: 0x%x", vector); |
| 51 | |
| 52 | if (vector & SCAN_COMPLETE_EVENT_ID) { |
| 53 | wl1271_debug(DEBUG_EVENT, "scan results: %d", |
| 54 | mbox->number_of_scan_results); |
| 55 | |
| 56 | if (wl->scan_wlvif) |
| 57 | wl18xx_scan_completed(wl, wl->scan_wlvif); |
| 58 | } |
| 59 | |
| 60 | if (vector & PERIODIC_SCAN_COMPLETE_EVENT_ID) |
| 61 | wlcore_event_sched_scan_completed(wl, 1); |
| 62 | |
| 63 | if (vector & RSSI_SNR_TRIGGER_0_EVENT_ID) |
| 64 | wlcore_event_rssi_trigger(wl, mbox->rssi_snr_trigger_metric); |
| 65 | |
| 66 | if (vector & BA_SESSION_RX_CONSTRAINT_EVENT_ID) |
| 67 | wlcore_event_ba_rx_constraint(wl, |
| 68 | le16_to_cpu(mbox->rx_ba_role_id_bitmap), |
| 69 | le16_to_cpu(mbox->rx_ba_allowed_bitmap)); |
| 70 | |
| 71 | if (vector & BSS_LOSS_EVENT_ID) |
| 72 | wlcore_event_beacon_loss(wl, |
| 73 | le16_to_cpu(mbox->bss_loss_bitmap)); |
| 74 | |
| 75 | if (vector & CHANNEL_SWITCH_COMPLETE_EVENT_ID) |
| 76 | wlcore_event_channel_switch(wl, |
| 77 | le16_to_cpu(mbox->channel_switch_role_id_bitmap), |
| 78 | true); |
| 79 | |
| 80 | if (vector & DUMMY_PACKET_EVENT_ID) |
| 81 | wlcore_event_dummy_packet(wl); |
| 82 | |
| 83 | /* |
| 84 | * "TX retries exceeded" has a different meaning according to mode. |
| 85 | * In AP mode the offending station is disconnected. |
| 86 | */ |
| 87 | if (vector & MAX_TX_FAILURE_EVENT_ID) |
| 88 | wlcore_event_max_tx_failure(wl, |
| 89 | le32_to_cpu(mbox->tx_retry_exceeded_bitmap)); |
| 90 | |
| 91 | if (vector & INACTIVE_STA_EVENT_ID) |
| 92 | wlcore_event_inactive_sta(wl, |
| 93 | le32_to_cpu(mbox->inactive_sta_bitmap)); |
| 94 | |
| 95 | if (vector & REMAIN_ON_CHANNEL_COMPLETE_EVENT_ID) |
| 96 | wlcore_event_roc_complete(wl); |
| 97 | |
| 98 | return 0; |
| 99 | } |