wl1271_event.c 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  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. static int wl1271_event_scan_complete(struct wl1271 *wl,
  29. struct event_mailbox *mbox)
  30. {
  31. wl1271_debug(DEBUG_EVENT, "status: 0x%x",
  32. mbox->scheduled_scan_status);
  33. if (wl->scanning) {
  34. mutex_unlock(&wl->mutex);
  35. ieee80211_scan_completed(wl->hw, false);
  36. mutex_lock(&wl->mutex);
  37. wl->scanning = false;
  38. }
  39. return 0;
  40. }
  41. static void wl1271_event_mbox_dump(struct event_mailbox *mbox)
  42. {
  43. wl1271_debug(DEBUG_EVENT, "MBOX DUMP:");
  44. wl1271_debug(DEBUG_EVENT, "\tvector: 0x%x", mbox->events_vector);
  45. wl1271_debug(DEBUG_EVENT, "\tmask: 0x%x", mbox->events_mask);
  46. }
  47. static int wl1271_event_process(struct wl1271 *wl, struct event_mailbox *mbox)
  48. {
  49. int ret;
  50. u32 vector;
  51. wl1271_event_mbox_dump(mbox);
  52. vector = mbox->events_vector & ~(mbox->events_mask);
  53. wl1271_debug(DEBUG_EVENT, "vector: 0x%x", vector);
  54. if (vector & SCAN_COMPLETE_EVENT_ID) {
  55. ret = wl1271_event_scan_complete(wl, mbox);
  56. if (ret < 0)
  57. return ret;
  58. }
  59. if (vector & BSS_LOSE_EVENT_ID) {
  60. wl1271_debug(DEBUG_EVENT, "BSS_LOSE_EVENT");
  61. if (wl->psm_requested && wl->psm) {
  62. ret = wl1271_ps_set_mode(wl, STATION_ACTIVE_MODE);
  63. if (ret < 0)
  64. return ret;
  65. }
  66. }
  67. return 0;
  68. }
  69. int wl1271_event_unmask(struct wl1271 *wl)
  70. {
  71. int ret;
  72. ret = wl1271_acx_event_mbox_mask(wl, ~(wl->event_mask));
  73. if (ret < 0)
  74. return ret;
  75. return 0;
  76. }
  77. void wl1271_event_mbox_config(struct wl1271 *wl)
  78. {
  79. wl->mbox_ptr[0] = wl1271_reg_read32(wl, REG_EVENT_MAILBOX_PTR);
  80. wl->mbox_ptr[1] = wl->mbox_ptr[0] + sizeof(struct event_mailbox);
  81. wl1271_debug(DEBUG_EVENT, "MBOX ptrs: 0x%x 0x%x",
  82. wl->mbox_ptr[0], wl->mbox_ptr[1]);
  83. }
  84. int wl1271_event_handle(struct wl1271 *wl, u8 mbox_num)
  85. {
  86. struct event_mailbox mbox;
  87. int ret;
  88. wl1271_debug(DEBUG_EVENT, "EVENT on mbox %d", mbox_num);
  89. if (mbox_num > 1)
  90. return -EINVAL;
  91. /* first we read the mbox descriptor */
  92. wl1271_spi_mem_read(wl, wl->mbox_ptr[mbox_num], &mbox,
  93. sizeof(struct event_mailbox));
  94. /* process the descriptor */
  95. ret = wl1271_event_process(wl, &mbox);
  96. if (ret < 0)
  97. return ret;
  98. /* then we let the firmware know it can go on...*/
  99. wl1271_reg_write32(wl, ACX_REG_INTERRUPT_TRIG, INTR_TRIG_EVENT_ACK);
  100. return 0;
  101. }