dhd_linux_wq.h 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. /*
  2. * Broadcom Dongle Host Driver (DHD), Generic work queue framework
  3. * Generic interface to handle dhd deferred work events
  4. *
  5. * Copyright (C) 1999-2014, Broadcom Corporation
  6. *
  7. * Unless you and Broadcom execute a separate written software license
  8. * agreement governing use of this software, this software is licensed to you
  9. * under the terms of the GNU General Public License version 2 (the "GPL"),
  10. * available at http://www.broadcom.com/licenses/GPLv2.php, with the
  11. * following added to such license:
  12. *
  13. * As a special exception, the copyright holders of this software give you
  14. * permission to link this software with independent modules, and to copy and
  15. * distribute the resulting executable under terms of your choice, provided that
  16. * you also meet, for each linked independent module, the terms and conditions of
  17. * the license of that module. An independent module is a module which is not
  18. * derived from this software. The special exception does not apply to any
  19. * modifications of the software.
  20. *
  21. * Notwithstanding the above, under no circumstances may you combine this
  22. * software in any way with any other Broadcom software provided under a license
  23. * other than the GPL, without Broadcom's express prior written consent.
  24. *
  25. * $Id: dhd_linux_wq.h 408802 2013-06-20 19:08:47Z $
  26. */
  27. #ifndef _dhd_linux_wq_h_
  28. #define _dhd_linux_wq_h_
  29. /*
  30. * Work event definitions
  31. */
  32. enum _wq_event {
  33. DHD_WQ_WORK_IF_ADD = 1,
  34. DHD_WQ_WORK_IF_DEL,
  35. DHD_WQ_WORK_SET_MAC,
  36. DHD_WQ_WORK_SET_MCAST_LIST,
  37. DHD_WQ_WORK_IPV6_NDO,
  38. DHD_WQ_WORK_HANG_MSG,
  39. DHD_MAX_WQ_EVENTS
  40. };
  41. /*
  42. * Work event priority
  43. */
  44. #define DHD_WORK_PRIORITY_LOW 0
  45. #define DHD_WORK_PRIORITY_HIGH 1
  46. /*
  47. * Error definitions
  48. */
  49. #define DHD_WQ_STS_OK 0
  50. #define DHD_WQ_STS_FAILED -1 /* General failure */
  51. #define DHD_WQ_STS_UNINITIALIZED -2
  52. #define DHD_WQ_STS_SCHED_FAILED -3
  53. #define DHD_WQ_STS_UNKNOWN_EVENT -4
  54. typedef void (*event_handler_t)(void *handle, void *event_data, u8 event);
  55. void *dhd_deferred_work_init(void *dhd);
  56. void dhd_deferred_work_deinit(void *work);
  57. int dhd_deferred_schedule_work(void *event_data, u8 event,
  58. event_handler_t evt_handler, u8 priority);
  59. #endif /* _dhd_linux_wq_h_ */