event.h 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. /*
  2. * This file is part of wl18xx
  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. #ifndef __WL18XX_EVENT_H__
  22. #define __WL18XX_EVENT_H__
  23. #include "../wlcore/wlcore.h"
  24. enum {
  25. SCAN_COMPLETE_EVENT_ID = BIT(8),
  26. RADAR_DETECTED_EVENT_ID = BIT(9),
  27. CHANNEL_SWITCH_COMPLETE_EVENT_ID = BIT(10),
  28. BSS_LOSS_EVENT_ID = BIT(11),
  29. MAX_TX_FAILURE_EVENT_ID = BIT(12),
  30. DUMMY_PACKET_EVENT_ID = BIT(13),
  31. INACTIVE_STA_EVENT_ID = BIT(14),
  32. PEER_REMOVE_COMPLETE_EVENT_ID = BIT(15),
  33. PERIODIC_SCAN_COMPLETE_EVENT_ID = BIT(16),
  34. BA_SESSION_RX_CONSTRAINT_EVENT_ID = BIT(17),
  35. REMAIN_ON_CHANNEL_COMPLETE_EVENT_ID = BIT(18),
  36. DFS_CHANNELS_CONFIG_COMPLETE_EVENT = BIT(19),
  37. PERIODIC_SCAN_REPORT_EVENT_ID = BIT(20),
  38. };
  39. struct wl18xx_event_mailbox {
  40. __le32 events_vector;
  41. u8 number_of_scan_results;
  42. u8 number_of_sched_scan_results;
  43. __le16 channel_switch_role_id_bitmap;
  44. s8 rssi_snr_trigger_metric[NUM_OF_RSSI_SNR_TRIGGERS];
  45. /* bitmap of removed links */
  46. __le32 hlid_removed_bitmap;
  47. /* rx ba constraint */
  48. __le16 rx_ba_role_id_bitmap; /* 0xfff means any role. */
  49. __le16 rx_ba_allowed_bitmap;
  50. /* bitmap of roc completed (by role id) */
  51. __le16 roc_completed_bitmap;
  52. /* bitmap of stations (by role id) with bss loss */
  53. __le16 bss_loss_bitmap;
  54. /* bitmap of stations (by HLID) which exceeded max tx retries */
  55. __le32 tx_retry_exceeded_bitmap;
  56. /* bitmap of inactive stations (by HLID) */
  57. __le32 inactive_sta_bitmap;
  58. } __packed;
  59. int wl18xx_wait_for_event(struct wl1271 *wl, enum wlcore_wait_event event,
  60. bool *timeout);
  61. int wl18xx_process_mailbox_events(struct wl1271 *wl);
  62. #endif