hif_napi.h 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  1. /*
  2. * Copyright (c) 2015-2016 The Linux Foundation. All rights reserved.
  3. *
  4. * Previously licensed under the ISC license by Qualcomm Atheros, Inc.
  5. *
  6. *
  7. * Permission to use, copy, modify, and/or distribute this software for
  8. * any purpose with or without fee is hereby granted, provided that the
  9. * above copyright notice and this permission notice appear in all
  10. * copies.
  11. *
  12. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
  13. * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
  14. * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
  15. * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
  16. * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
  17. * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  18. * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  19. * PERFORMANCE OF THIS SOFTWARE.
  20. */
  21. /*
  22. * This file was originally distributed by Qualcomm Atheros, Inc.
  23. * under proprietary terms before Copyright ownership was assigned
  24. * to the Linux Foundation.
  25. */
  26. #ifndef __HIF_NAPI_H__
  27. #define __HIF_NAPI_H__
  28. /**
  29. * DOC: hif_napi.h
  30. *
  31. * Interface to HIF implemented functions of NAPI.
  32. * These are used by hdd_napi.
  33. */
  34. /* CLD headers */
  35. #include <hif.h> /* struct hif_opaque_softc; */
  36. /**
  37. * common stuff
  38. * The declarations until #ifdef FEATURE_NAPI below
  39. * are valid whether or not FEATURE_NAPI has been
  40. * defined.
  41. */
  42. /* the following triggers napi_enable/disable as required */
  43. enum qca_napi_event {
  44. NAPI_EVT_INVALID,
  45. NAPI_EVT_INI_FILE,
  46. NAPI_EVT_CMD_STATE /* ioctl enable/disable commands */
  47. };
  48. /**
  49. * Macros to map ids -returned by ...create()- to pipes and vice versa
  50. */
  51. #define NAPI_ID2PIPE(i) ((i)-1)
  52. #define NAPI_PIPE2ID(p) ((p)+1)
  53. #ifdef FEATURE_NAPI
  54. /**
  55. * NAPI HIF API
  56. *
  57. * the declarations below only apply to the case
  58. * where FEATURE_NAPI is defined
  59. */
  60. int hif_napi_create(struct hif_opaque_softc *hif,
  61. uint8_t pipe_id,
  62. int (*poll)(struct napi_struct *, int),
  63. int budget,
  64. int scale);
  65. int hif_napi_destroy(struct hif_opaque_softc *hif,
  66. uint8_t id,
  67. int force);
  68. struct qca_napi_data *hif_napi_get_all(struct hif_opaque_softc *hif);
  69. int hif_napi_event(struct hif_opaque_softc *hif,
  70. enum qca_napi_event event,
  71. void *data);
  72. /* called from the ISR within hif, so, ce is known */
  73. int hif_napi_enabled(struct hif_opaque_softc *hif, int ce);
  74. /* called from hdd (napi_poll), using napi id as a selector */
  75. void hif_napi_enable_irq(struct hif_opaque_softc *hif, int id);
  76. /* called by ce_tasklet.c::ce_irq_handler */
  77. int hif_napi_schedule(struct hif_opaque_softc *scn, int ce_id);
  78. /* called by hdd_napi, which is called by kernel */
  79. int hif_napi_poll(struct hif_opaque_softc *hif_ctx,
  80. struct napi_struct *napi, int budget);
  81. #ifdef FEATURE_NAPI_DEBUG
  82. #define NAPI_DEBUG(fmt, ...) \
  83. qdf_print("wlan: NAPI: %s:%d "fmt, __func__, __LINE__, ##__VA_ARGS__);
  84. #else
  85. #define NAPI_DEBUG(fmt, ...) /* NO-OP */
  86. #endif /* FEATURE NAPI_DEBUG */
  87. #else /* ! defined(FEATURE_NAPI) */
  88. /**
  89. * Stub API
  90. *
  91. * The declarations in this section are valid only
  92. * when FEATURE_NAPI has *not* been defined.
  93. */
  94. #define NAPI_DEBUG(fmt, ...) /* NO-OP */
  95. static inline int hif_napi_create(struct hif_opaque_softc *hif,
  96. uint8_t pipe_id,
  97. int (*poll)(struct napi_struct *, int),
  98. int budget,
  99. int scale)
  100. { return -EPERM; }
  101. static inline int hif_napi_destroy(struct hif_opaque_softc *hif,
  102. uint8_t id,
  103. int force)
  104. { return -EPERM; }
  105. static inline struct qca_napi_data *hif_napi_get_all(
  106. struct hif_opaque_softc *hif)
  107. { return NULL; }
  108. static inline int hif_napi_event(struct hif_opaque_softc *hif,
  109. enum qca_napi_event event,
  110. void *data)
  111. { return -EPERM; }
  112. /* called from the ISR within hif, so, ce is known */
  113. static inline int hif_napi_enabled(struct hif_opaque_softc *hif, int ce)
  114. { return 0; }
  115. /* called from hdd (napi_poll), using napi id as a selector */
  116. static inline void hif_napi_enable_irq(struct hif_opaque_softc *hif, int id)
  117. { return; }
  118. static inline int hif_napi_schedule(struct hif_opaque_softc *hif, int ce_id)
  119. { return 0; }
  120. static inline int hif_napi_poll(struct napi_struct *napi, int budget)
  121. { return -EPERM; }
  122. #endif /* FEATURE_NAPI */
  123. #endif /* __HIF_NAPI_H__ */