wl1251_event.c 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  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 "wl1251_reg.h"
  24. #include "wl1251_io.h"
  25. #include "wl1251_event.h"
  26. #include "wl1251_ps.h"
  27. static int wl1251_event_scan_complete(struct wl1251 *wl,
  28. struct event_mailbox *mbox)
  29. {
  30. wl1251_debug(DEBUG_EVENT, "status: 0x%x, channels: %d",
  31. mbox->scheduled_scan_status,
  32. mbox->scheduled_scan_channels);
  33. if (wl->scanning) {
  34. mutex_unlock(&wl->mutex);
  35. ieee80211_scan_completed(wl->hw, false);
  36. mutex_lock(&wl->mutex);
  37. wl1251_debug(DEBUG_MAC80211, "mac80211 hw scan completed");
  38. wl->scanning = false;
  39. }
  40. return 0;
  41. }
  42. static void wl1251_event_mbox_dump(struct event_mailbox *mbox)
  43. {
  44. wl1251_debug(DEBUG_EVENT, "MBOX DUMP:");
  45. wl1251_debug(DEBUG_EVENT, "\tvector: 0x%x", mbox->events_vector);
  46. wl1251_debug(DEBUG_EVENT, "\tmask: 0x%x", mbox->events_mask);
  47. }
  48. static int wl1251_event_process(struct wl1251 *wl, struct event_mailbox *mbox)
  49. {
  50. int ret;
  51. u32 vector;
  52. wl1251_event_mbox_dump(mbox);
  53. vector = mbox->events_vector & ~(mbox->events_mask);
  54. wl1251_debug(DEBUG_EVENT, "vector: 0x%x", vector);
  55. if (vector & SCAN_COMPLETE_EVENT_ID) {
  56. ret = wl1251_event_scan_complete(wl, mbox);
  57. if (ret < 0)
  58. return ret;
  59. }
  60. if (vector & BSS_LOSE_EVENT_ID) {
  61. wl1251_debug(DEBUG_EVENT, "BSS_LOSE_EVENT");
  62. if (wl->psm_requested && wl->psm) {
  63. ret = wl1251_ps_set_mode(wl, STATION_ACTIVE_MODE);
  64. if (ret < 0)
  65. return ret;
  66. }
  67. }
  68. if (vector & SYNCHRONIZATION_TIMEOUT_EVENT_ID && wl->psm) {
  69. wl1251_debug(DEBUG_EVENT, "SYNCHRONIZATION_TIMEOUT_EVENT");
  70. /* indicate to the stack, that beacons have been lost */
  71. ieee80211_beacon_loss(wl->vif);
  72. }
  73. if (vector & REGAINED_BSS_EVENT_ID) {
  74. if (wl->psm_requested) {
  75. ret = wl1251_ps_set_mode(wl, STATION_POWER_SAVE_MODE);
  76. if (ret < 0)
  77. return ret;
  78. }
  79. }
  80. return 0;
  81. }
  82. /*
  83. * Poll the mailbox event field until any of the bits in the mask is set or a
  84. * timeout occurs (WL1251_EVENT_TIMEOUT in msecs)
  85. */
  86. int wl1251_event_wait(struct wl1251 *wl, u32 mask, int timeout_ms)
  87. {
  88. u32 events_vector, event;
  89. unsigned long timeout;
  90. timeout = jiffies + msecs_to_jiffies(timeout_ms);
  91. do {
  92. if (time_after(jiffies, timeout))
  93. return -ETIMEDOUT;
  94. msleep(1);
  95. /* read from both event fields */
  96. wl1251_mem_read(wl, wl->mbox_ptr[0], &events_vector,
  97. sizeof(events_vector));
  98. event = events_vector & mask;
  99. wl1251_mem_read(wl, wl->mbox_ptr[1], &events_vector,
  100. sizeof(events_vector));
  101. event |= events_vector & mask;
  102. } while (!event);
  103. return 0;
  104. }
  105. int wl1251_event_unmask(struct wl1251 *wl)
  106. {
  107. int ret;
  108. ret = wl1251_acx_event_mbox_mask(wl, ~(wl->event_mask));
  109. if (ret < 0)
  110. return ret;
  111. return 0;
  112. }
  113. void wl1251_event_mbox_config(struct wl1251 *wl)
  114. {
  115. wl->mbox_ptr[0] = wl1251_reg_read32(wl, REG_EVENT_MAILBOX_PTR);
  116. wl->mbox_ptr[1] = wl->mbox_ptr[0] + sizeof(struct event_mailbox);
  117. wl1251_debug(DEBUG_EVENT, "MBOX ptrs: 0x%x 0x%x",
  118. wl->mbox_ptr[0], wl->mbox_ptr[1]);
  119. }
  120. int wl1251_event_handle(struct wl1251 *wl, u8 mbox_num)
  121. {
  122. struct event_mailbox mbox;
  123. int ret;
  124. wl1251_debug(DEBUG_EVENT, "EVENT on mbox %d", mbox_num);
  125. if (mbox_num > 1)
  126. return -EINVAL;
  127. /* first we read the mbox descriptor */
  128. wl1251_mem_read(wl, wl->mbox_ptr[mbox_num], &mbox,
  129. sizeof(struct event_mailbox));
  130. /* process the descriptor */
  131. ret = wl1251_event_process(wl, &mbox);
  132. if (ret < 0)
  133. return ret;
  134. /* then we let the firmware know it can go on...*/
  135. wl1251_reg_write32(wl, ACX_REG_INTERRUPT_TRIG, INTR_TRIG_EVENT_ACK);
  136. return 0;
  137. }