dhd_linux_wq.h 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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-2015, 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 605803 2015-12-11 14:44:32Z $
  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_WQ_WORK_DHD_LOG_DUMP,
  40. DHD_MAX_WQ_EVENTS
  41. };
  42. /*
  43. * Work event priority
  44. */
  45. #define DHD_WORK_PRIORITY_LOW 0
  46. #define DHD_WORK_PRIORITY_HIGH 1
  47. /*
  48. * Error definitions
  49. */
  50. #define DHD_WQ_STS_OK 0
  51. #define DHD_WQ_STS_FAILED -1 /* General failure */
  52. #define DHD_WQ_STS_UNINITIALIZED -2
  53. #define DHD_WQ_STS_SCHED_FAILED -3
  54. #define DHD_WQ_STS_UNKNOWN_EVENT -4
  55. typedef void (*event_handler_t)(void *handle, void *event_data, u8 event);
  56. void *dhd_deferred_work_init(void *dhd);
  57. void dhd_deferred_work_deinit(void *work);
  58. int dhd_deferred_schedule_work(void *event_data, u8 event,
  59. event_handler_t evt_handler, u8 priority);
  60. #endif /* _dhd_linux_wq_h_ */