event.c 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  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. #include "event.h"
  22. #include "scan.h"
  23. #include "../wlcore/cmd.h"
  24. #include "../wlcore/debug.h"
  25. int wl12xx_wait_for_event(struct wl1271 *wl, enum wlcore_wait_event event,
  26. bool *timeout)
  27. {
  28. u32 local_event;
  29. switch (event) {
  30. case WLCORE_EVENT_ROLE_STOP_COMPLETE:
  31. local_event = ROLE_STOP_COMPLETE_EVENT_ID;
  32. break;
  33. case WLCORE_EVENT_PEER_REMOVE_COMPLETE:
  34. local_event = PEER_REMOVE_COMPLETE_EVENT_ID;
  35. break;
  36. default:
  37. /* event not implemented */
  38. return 0;
  39. }
  40. return wlcore_cmd_wait_for_event_or_timeout(wl, local_event, timeout);
  41. }
  42. int wl12xx_process_mailbox_events(struct wl1271 *wl)
  43. {
  44. struct wl12xx_event_mailbox *mbox = wl->mbox;
  45. u32 vector;
  46. vector = le32_to_cpu(mbox->events_vector);
  47. vector &= ~(le32_to_cpu(mbox->events_mask));
  48. wl1271_debug(DEBUG_EVENT, "MBOX vector: 0x%x", vector);
  49. if (vector & SCAN_COMPLETE_EVENT_ID) {
  50. wl1271_debug(DEBUG_EVENT, "status: 0x%x",
  51. mbox->scheduled_scan_status);
  52. if (wl->scan_wlvif)
  53. wl12xx_scan_completed(wl, wl->scan_wlvif);
  54. }
  55. if (vector & PERIODIC_SCAN_REPORT_EVENT_ID) {
  56. wl1271_debug(DEBUG_EVENT,
  57. "PERIODIC_SCAN_REPORT_EVENT (status 0x%0x)",
  58. mbox->scheduled_scan_status);
  59. wlcore_scan_sched_scan_results(wl);
  60. }
  61. if (vector & PERIODIC_SCAN_COMPLETE_EVENT_ID)
  62. wlcore_event_sched_scan_completed(wl,
  63. mbox->scheduled_scan_status);
  64. if (vector & SOFT_GEMINI_SENSE_EVENT_ID)
  65. wlcore_event_soft_gemini_sense(wl,
  66. mbox->soft_gemini_sense_info);
  67. if (vector & BSS_LOSE_EVENT_ID)
  68. wlcore_event_beacon_loss(wl, 0xff);
  69. if (vector & RSSI_SNR_TRIGGER_0_EVENT_ID)
  70. wlcore_event_rssi_trigger(wl, mbox->rssi_snr_trigger_metric);
  71. if (vector & BA_SESSION_RX_CONSTRAINT_EVENT_ID)
  72. wlcore_event_ba_rx_constraint(wl,
  73. BIT(mbox->role_id),
  74. mbox->rx_ba_allowed);
  75. if (vector & CHANNEL_SWITCH_COMPLETE_EVENT_ID)
  76. wlcore_event_channel_switch(wl, 0xff,
  77. mbox->channel_switch_status);
  78. if (vector & DUMMY_PACKET_EVENT_ID)
  79. wlcore_event_dummy_packet(wl);
  80. /*
  81. * "TX retries exceeded" has a different meaning according to mode.
  82. * In AP mode the offending station is disconnected.
  83. */
  84. if (vector & MAX_TX_RETRY_EVENT_ID)
  85. wlcore_event_max_tx_failure(wl,
  86. le16_to_cpu(mbox->sta_tx_retry_exceeded));
  87. if (vector & INACTIVE_STA_EVENT_ID)
  88. wlcore_event_inactive_sta(wl,
  89. le16_to_cpu(mbox->sta_aging_status));
  90. if (vector & REMAIN_ON_CHANNEL_COMPLETE_EVENT_ID)
  91. wlcore_event_roc_complete(wl);
  92. return 0;
  93. }