openthread.h 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  1. /*
  2. * Copyright (c) 2017 Nordic Semiconductor ASA
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /** @file
  7. * @brief OpenThread l2 stack public header
  8. */
  9. #ifndef ZEPHYR_INCLUDE_NET_OPENTHREAD_H_
  10. #define ZEPHYR_INCLUDE_NET_OPENTHREAD_H_
  11. /**
  12. * @brief OpenThread l2 stack api
  13. * @defgroup OpenThread l2 layer
  14. * @ingroup networking
  15. * @{
  16. */
  17. #include <kernel.h>
  18. #include <net/net_if.h>
  19. #include <openthread/instance.h>
  20. #ifdef __cplusplus
  21. extern "C" {
  22. #endif
  23. /**
  24. * @cond INTERNAL_HIDDEN
  25. */
  26. /**
  27. * @brief Type of pkt_list
  28. */
  29. struct pkt_list_elem {
  30. struct net_pkt *pkt;
  31. };
  32. /**
  33. * @brief OpenThread l2 private data.
  34. */
  35. struct openthread_context {
  36. /** Pointer to OpenThread stack instance */
  37. otInstance *instance;
  38. /** Pointer to OpenThread network interface */
  39. struct net_if *iface;
  40. /** Index indicates the head of pkt_list ring buffer */
  41. uint16_t pkt_list_in_idx;
  42. /** Index indicates the tail of pkt_list ring buffer */
  43. uint16_t pkt_list_out_idx;
  44. /** Flag indicates that pkt_list is full */
  45. uint8_t pkt_list_full;
  46. /** Array for storing net_pkt for OpenThread internal usage */
  47. struct pkt_list_elem pkt_list[CONFIG_OPENTHREAD_PKT_LIST_SIZE];
  48. /** A mutex to protect API calls from being preempted. */
  49. struct k_mutex api_lock;
  50. /** A work queue for all OpenThread activity */
  51. struct k_work_q work_q;
  52. /** Work object for OpenThread internal usage */
  53. struct k_work api_work;
  54. };
  55. /**
  56. * INTERNAL_HIDDEN @endcond
  57. */
  58. /**
  59. * @brief Sets function which will be called when certain configuration or state
  60. * changes within OpenThread.
  61. *
  62. * @param cb function to call in callback procedure.
  63. */
  64. void openthread_set_state_changed_cb(otStateChangedCallback cb);
  65. /**
  66. * @brief Get OpenThread thread identification.
  67. */
  68. k_tid_t openthread_thread_id_get(void);
  69. /**
  70. * @brief Get pointer to default OpenThread context.
  71. *
  72. * @retval !NULL On success.
  73. * @retval NULL On failure.
  74. */
  75. struct openthread_context *openthread_get_default_context(void);
  76. /**
  77. * @brief Get pointer to default OpenThread instance.
  78. *
  79. * @retval !NULL On success.
  80. * @retval NULL On failure.
  81. */
  82. struct otInstance *openthread_get_default_instance(void);
  83. /**
  84. * @brief Starts the OpenThread network.
  85. *
  86. * @details Depends on active settings: it uses stored network configuration,
  87. * start joining procedure or uses default network configuration. Additionally
  88. * when the device is MTD, it sets the SED mode to properly attach the network.
  89. *
  90. * @param ot_context
  91. */
  92. int openthread_start(struct openthread_context *ot_context);
  93. /**
  94. * @brief Lock internal mutex before accessing OT API.
  95. *
  96. * @details OpenThread API is not thread-safe, therefore before accessing any
  97. * API function, it's needed to lock the internal mutex, to prevent the
  98. * OpenThread thread from prempting the API call.
  99. *
  100. * @param ot_context Context to lock.
  101. */
  102. void openthread_api_mutex_lock(struct openthread_context *ot_context);
  103. /**
  104. * @brief Try to lock internal mutex before accessing OT API.
  105. *
  106. * @details This function behaves like openthread_api_mutex_lock() provided that
  107. * the internal mutex is unlocked. Otherwise, it exists immediately and returns
  108. * a negative value.
  109. *
  110. * @param ot_context Context to lock.
  111. * @retval 0 On success.
  112. * @retval <0 On failure.
  113. */
  114. int openthread_api_mutex_try_lock(struct openthread_context *ot_context);
  115. /**
  116. * @brief Unlock internal mutex after accessing OT API.
  117. *
  118. * @param ot_context Context to unlock.
  119. */
  120. void openthread_api_mutex_unlock(struct openthread_context *ot_context);
  121. #define OPENTHREAD_L2_CTX_TYPE struct openthread_context
  122. #ifdef __cplusplus
  123. }
  124. #endif
  125. /**
  126. * @}
  127. */
  128. #endif /* ZEPHYR_INCLUDE_NET_OPENTHREAD_H_ */