event.c 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236
  1. /*
  2. * This file is part of wl1251
  3. *
  4. * Copyright (c) 1998-2007 Texas Instruments Incorporated
  5. * Copyright (C) 2008 Nokia Corporation
  6. *
  7. * This program is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU General Public License
  9. * version 2 as published by the Free Software Foundation.
  10. *
  11. * This program is distributed in the hope that it will be useful, but
  12. * WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program; if not, write to the Free Software
  18. * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
  19. * 02110-1301 USA
  20. *
  21. */
  22. #include "wl1251.h"
  23. #include "reg.h"
  24. #include "io.h"
  25. #include "event.h"
  26. #include "ps.h"
  27. static int wl1251_event_scan_complete(struct wl1251 *wl,
  28. struct event_mailbox *mbox)
  29. {
  30. int ret = 0;
  31. wl1251_debug(DEBUG_EVENT, "status: 0x%x, channels: %d",
  32. mbox->scheduled_scan_status,
  33. mbox->scheduled_scan_channels);
  34. if (wl->scanning) {
  35. ieee80211_scan_completed(wl->hw, false);
  36. wl1251_debug(DEBUG_MAC80211, "mac80211 hw scan completed");
  37. wl->scanning = false;
  38. if (wl->hw->conf.flags & IEEE80211_CONF_IDLE)
  39. ret = wl1251_ps_set_mode(wl, STATION_IDLE);
  40. }
  41. return ret;
  42. }
  43. #define WL1251_PSM_ENTRY_RETRIES 3
  44. static int wl1251_event_ps_report(struct wl1251 *wl,
  45. struct event_mailbox *mbox)
  46. {
  47. int ret = 0;
  48. wl1251_debug(DEBUG_EVENT, "ps status: %x", mbox->ps_status);
  49. switch (mbox->ps_status) {
  50. case EVENT_ENTER_POWER_SAVE_FAIL:
  51. wl1251_debug(DEBUG_PSM, "PSM entry failed");
  52. if (wl->station_mode != STATION_POWER_SAVE_MODE) {
  53. /* remain in active mode */
  54. wl->psm_entry_retry = 0;
  55. break;
  56. }
  57. if (wl->psm_entry_retry < WL1251_PSM_ENTRY_RETRIES) {
  58. wl->psm_entry_retry++;
  59. ret = wl1251_ps_set_mode(wl, STATION_POWER_SAVE_MODE);
  60. } else {
  61. wl1251_error("Power save entry failed, giving up");
  62. wl->psm_entry_retry = 0;
  63. }
  64. break;
  65. case EVENT_ENTER_POWER_SAVE_SUCCESS:
  66. case EVENT_EXIT_POWER_SAVE_FAIL:
  67. case EVENT_EXIT_POWER_SAVE_SUCCESS:
  68. default:
  69. wl->psm_entry_retry = 0;
  70. break;
  71. }
  72. return 0;
  73. }
  74. static void wl1251_event_mbox_dump(struct event_mailbox *mbox)
  75. {
  76. wl1251_debug(DEBUG_EVENT, "MBOX DUMP:");
  77. wl1251_debug(DEBUG_EVENT, "\tvector: 0x%x", mbox->events_vector);
  78. wl1251_debug(DEBUG_EVENT, "\tmask: 0x%x", mbox->events_mask);
  79. }
  80. static int wl1251_event_process(struct wl1251 *wl, struct event_mailbox *mbox)
  81. {
  82. int ret;
  83. u32 vector;
  84. wl1251_event_mbox_dump(mbox);
  85. vector = mbox->events_vector & ~(mbox->events_mask);
  86. wl1251_debug(DEBUG_EVENT, "vector: 0x%x", vector);
  87. if (vector & SCAN_COMPLETE_EVENT_ID) {
  88. ret = wl1251_event_scan_complete(wl, mbox);
  89. if (ret < 0)
  90. return ret;
  91. }
  92. if (vector & BSS_LOSE_EVENT_ID) {
  93. wl1251_debug(DEBUG_EVENT, "BSS_LOSE_EVENT");
  94. if (wl->psm_requested &&
  95. wl->station_mode != STATION_ACTIVE_MODE) {
  96. ret = wl1251_ps_set_mode(wl, STATION_ACTIVE_MODE);
  97. if (ret < 0)
  98. return ret;
  99. }
  100. }
  101. if (vector & PS_REPORT_EVENT_ID) {
  102. wl1251_debug(DEBUG_EVENT, "PS_REPORT_EVENT");
  103. ret = wl1251_event_ps_report(wl, mbox);
  104. if (ret < 0)
  105. return ret;
  106. }
  107. if (vector & SYNCHRONIZATION_TIMEOUT_EVENT_ID) {
  108. wl1251_debug(DEBUG_EVENT, "SYNCHRONIZATION_TIMEOUT_EVENT");
  109. /* indicate to the stack, that beacons have been lost */
  110. if (wl->vif && wl->vif->type == NL80211_IFTYPE_STATION)
  111. ieee80211_beacon_loss(wl->vif);
  112. }
  113. if (vector & REGAINED_BSS_EVENT_ID) {
  114. if (wl->psm_requested) {
  115. ret = wl1251_ps_set_mode(wl, STATION_POWER_SAVE_MODE);
  116. if (ret < 0)
  117. return ret;
  118. }
  119. }
  120. if (wl->vif && wl->rssi_thold) {
  121. if (vector & ROAMING_TRIGGER_LOW_RSSI_EVENT_ID) {
  122. wl1251_debug(DEBUG_EVENT,
  123. "ROAMING_TRIGGER_LOW_RSSI_EVENT");
  124. ieee80211_cqm_rssi_notify(wl->vif,
  125. NL80211_CQM_RSSI_THRESHOLD_EVENT_LOW,
  126. GFP_KERNEL);
  127. }
  128. if (vector & ROAMING_TRIGGER_REGAINED_RSSI_EVENT_ID) {
  129. wl1251_debug(DEBUG_EVENT,
  130. "ROAMING_TRIGGER_REGAINED_RSSI_EVENT");
  131. ieee80211_cqm_rssi_notify(wl->vif,
  132. NL80211_CQM_RSSI_THRESHOLD_EVENT_HIGH,
  133. GFP_KERNEL);
  134. }
  135. }
  136. return 0;
  137. }
  138. /*
  139. * Poll the mailbox event field until any of the bits in the mask is set or a
  140. * timeout occurs (WL1251_EVENT_TIMEOUT in msecs)
  141. */
  142. int wl1251_event_wait(struct wl1251 *wl, u32 mask, int timeout_ms)
  143. {
  144. u32 events_vector, event;
  145. unsigned long timeout;
  146. timeout = jiffies + msecs_to_jiffies(timeout_ms);
  147. do {
  148. if (time_after(jiffies, timeout))
  149. return -ETIMEDOUT;
  150. msleep(1);
  151. /* read from both event fields */
  152. wl1251_mem_read(wl, wl->mbox_ptr[0], &events_vector,
  153. sizeof(events_vector));
  154. event = events_vector & mask;
  155. wl1251_mem_read(wl, wl->mbox_ptr[1], &events_vector,
  156. sizeof(events_vector));
  157. event |= events_vector & mask;
  158. } while (!event);
  159. return 0;
  160. }
  161. int wl1251_event_unmask(struct wl1251 *wl)
  162. {
  163. int ret;
  164. ret = wl1251_acx_event_mbox_mask(wl, ~(wl->event_mask));
  165. if (ret < 0)
  166. return ret;
  167. return 0;
  168. }
  169. void wl1251_event_mbox_config(struct wl1251 *wl)
  170. {
  171. wl->mbox_ptr[0] = wl1251_reg_read32(wl, REG_EVENT_MAILBOX_PTR);
  172. wl->mbox_ptr[1] = wl->mbox_ptr[0] + sizeof(struct event_mailbox);
  173. wl1251_debug(DEBUG_EVENT, "MBOX ptrs: 0x%x 0x%x",
  174. wl->mbox_ptr[0], wl->mbox_ptr[1]);
  175. }
  176. int wl1251_event_handle(struct wl1251 *wl, u8 mbox_num)
  177. {
  178. struct event_mailbox mbox;
  179. int ret;
  180. wl1251_debug(DEBUG_EVENT, "EVENT on mbox %d", mbox_num);
  181. if (mbox_num > 1)
  182. return -EINVAL;
  183. /* first we read the mbox descriptor */
  184. wl1251_mem_read(wl, wl->mbox_ptr[mbox_num], &mbox,
  185. sizeof(struct event_mailbox));
  186. /* process the descriptor */
  187. ret = wl1251_event_process(wl, &mbox);
  188. if (ret < 0)
  189. return ret;
  190. /* then we let the firmware know it can go on...*/
  191. wl1251_reg_write32(wl, ACX_REG_INTERRUPT_TRIG, INTR_TRIG_EVENT_ACK);
  192. return 0;
  193. }