wl1271_event.c 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212
  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. #include "wl1271.h"
  24. #include "wl1271_reg.h"
  25. #include "wl1271_spi.h"
  26. #include "wl1271_event.h"
  27. #include "wl1271_ps.h"
  28. #include "wl12xx_80211.h"
  29. static int wl1271_event_scan_complete(struct wl1271 *wl,
  30. struct event_mailbox *mbox)
  31. {
  32. int size = sizeof(struct wl12xx_probe_req_template);
  33. wl1271_debug(DEBUG_EVENT, "status: 0x%x",
  34. mbox->scheduled_scan_status);
  35. if (wl->scanning) {
  36. if (wl->scan.state == WL1271_SCAN_BAND_DUAL) {
  37. wl1271_cmd_template_set(wl, CMD_TEMPL_CFG_PROBE_REQ_2_4,
  38. NULL, size);
  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. */
  43. wl->scanning = false;
  44. wl1271_cmd_scan(wl, wl->scan.ssid, wl->scan.ssid_len,
  45. wl->scan.active,
  46. wl->scan.high_prio,
  47. WL1271_SCAN_BAND_5_GHZ,
  48. wl->scan.probe_requests);
  49. } else {
  50. if (wl->scan.state == WL1271_SCAN_BAND_2_4_GHZ)
  51. wl1271_cmd_template_set(wl,
  52. CMD_TEMPL_CFG_PROBE_REQ_2_4,
  53. NULL, size);
  54. else
  55. wl1271_cmd_template_set(wl,
  56. CMD_TEMPL_CFG_PROBE_REQ_5,
  57. NULL, size);
  58. mutex_unlock(&wl->mutex);
  59. ieee80211_scan_completed(wl->hw, false);
  60. mutex_lock(&wl->mutex);
  61. wl->scanning = false;
  62. }
  63. }
  64. return 0;
  65. }
  66. static int wl1271_event_ps_report(struct wl1271 *wl,
  67. struct event_mailbox *mbox,
  68. bool *beacon_loss)
  69. {
  70. int ret = 0;
  71. wl1271_debug(DEBUG_EVENT, "ps_status: 0x%x", mbox->ps_status);
  72. switch (mbox->ps_status) {
  73. case EVENT_ENTER_POWER_SAVE_FAIL:
  74. if (!wl->psm) {
  75. wl->psm_entry_retry = 0;
  76. break;
  77. }
  78. if (wl->psm_entry_retry < wl->conf.conn.psm_entry_retries) {
  79. wl->psm_entry_retry++;
  80. ret = wl1271_ps_set_mode(wl, STATION_POWER_SAVE_MODE);
  81. } else {
  82. wl1271_error("PSM entry failed, giving up.\n");
  83. wl->psm_entry_retry = 0;
  84. *beacon_loss = true;
  85. }
  86. break;
  87. case EVENT_ENTER_POWER_SAVE_SUCCESS:
  88. wl->psm_entry_retry = 0;
  89. break;
  90. case EVENT_EXIT_POWER_SAVE_FAIL:
  91. wl1271_info("PSM exit failed");
  92. break;
  93. case EVENT_EXIT_POWER_SAVE_SUCCESS:
  94. default:
  95. break;
  96. }
  97. return ret;
  98. }
  99. static void wl1271_event_mbox_dump(struct event_mailbox *mbox)
  100. {
  101. wl1271_debug(DEBUG_EVENT, "MBOX DUMP:");
  102. wl1271_debug(DEBUG_EVENT, "\tvector: 0x%x", mbox->events_vector);
  103. wl1271_debug(DEBUG_EVENT, "\tmask: 0x%x", mbox->events_mask);
  104. }
  105. static int wl1271_event_process(struct wl1271 *wl, struct event_mailbox *mbox)
  106. {
  107. int ret;
  108. u32 vector;
  109. bool beacon_loss = false;
  110. wl1271_event_mbox_dump(mbox);
  111. vector = le32_to_cpu(mbox->events_vector);
  112. vector &= ~(le32_to_cpu(mbox->events_mask));
  113. wl1271_debug(DEBUG_EVENT, "vector: 0x%x", vector);
  114. if (vector & SCAN_COMPLETE_EVENT_ID) {
  115. ret = wl1271_event_scan_complete(wl, mbox);
  116. if (ret < 0)
  117. return ret;
  118. }
  119. /*
  120. * The BSS_LOSE_EVENT_ID is only needed while psm (and hence beacon
  121. * filtering) is enabled. Without PSM, the stack will receive all
  122. * beacons and can detect beacon loss by itself.
  123. */
  124. if (vector & BSS_LOSE_EVENT_ID && wl->psm) {
  125. wl1271_debug(DEBUG_EVENT, "BSS_LOSE_EVENT");
  126. /* indicate to the stack, that beacons have been lost */
  127. beacon_loss = true;
  128. }
  129. if (vector & PS_REPORT_EVENT_ID) {
  130. wl1271_debug(DEBUG_EVENT, "PS_REPORT_EVENT");
  131. ret = wl1271_event_ps_report(wl, mbox, &beacon_loss);
  132. if (ret < 0)
  133. return ret;
  134. }
  135. if (beacon_loss) {
  136. /* Obviously, it's dangerous to release the mutex while
  137. we are holding many of the variables in the wl struct.
  138. That's why it's done last in the function, and care must
  139. be taken that nothing more is done after this function
  140. returns. */
  141. mutex_unlock(&wl->mutex);
  142. ieee80211_beacon_loss(wl->vif);
  143. mutex_lock(&wl->mutex);
  144. }
  145. return 0;
  146. }
  147. int wl1271_event_unmask(struct wl1271 *wl)
  148. {
  149. int ret;
  150. ret = wl1271_acx_event_mbox_mask(wl, ~(wl->event_mask));
  151. if (ret < 0)
  152. return ret;
  153. return 0;
  154. }
  155. void wl1271_event_mbox_config(struct wl1271 *wl)
  156. {
  157. wl->mbox_ptr[0] = wl1271_spi_read32(wl, REG_EVENT_MAILBOX_PTR);
  158. wl->mbox_ptr[1] = wl->mbox_ptr[0] + sizeof(struct event_mailbox);
  159. wl1271_debug(DEBUG_EVENT, "MBOX ptrs: 0x%x 0x%x",
  160. wl->mbox_ptr[0], wl->mbox_ptr[1]);
  161. }
  162. int wl1271_event_handle(struct wl1271 *wl, u8 mbox_num, bool do_ack)
  163. {
  164. struct event_mailbox mbox;
  165. int ret;
  166. wl1271_debug(DEBUG_EVENT, "EVENT on mbox %d", mbox_num);
  167. if (mbox_num > 1)
  168. return -EINVAL;
  169. /* first we read the mbox descriptor */
  170. wl1271_spi_read(wl, wl->mbox_ptr[mbox_num], &mbox,
  171. sizeof(struct event_mailbox), false);
  172. /* process the descriptor */
  173. ret = wl1271_event_process(wl, &mbox);
  174. if (ret < 0)
  175. return ret;
  176. /* then we let the firmware know it can go on...*/
  177. if (do_ack)
  178. wl1271_spi_write32(wl, ACX_REG_INTERRUPT_TRIG,
  179. INTR_TRIG_EVENT_ACK);
  180. return 0;
  181. }