ieee802154.h 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. /*
  2. * Copyright (c) 2016 Intel Corporation.
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file
  8. * @brief IEEE 802.15.4 L2 stack public header
  9. */
  10. #ifndef ZEPHYR_INCLUDE_NET_IEEE802154_H_
  11. #define ZEPHYR_INCLUDE_NET_IEEE802154_H_
  12. #include <limits.h>
  13. #include <net/net_mgmt.h>
  14. #include <crypto/cipher_structs.h>
  15. #ifdef __cplusplus
  16. extern "C" {
  17. #endif
  18. /**
  19. * @brief IEEE 802.15.4 library
  20. * @defgroup ieee802154 IEEE 802.15.4 Library
  21. * @ingroup networking
  22. * @{
  23. */
  24. #define IEEE802154_MAX_ADDR_LENGTH 8
  25. #define IEEE802154_NO_CHANNEL USHRT_MAX
  26. struct ieee802154_security_ctx {
  27. uint32_t frame_counter;
  28. struct cipher_ctx enc;
  29. struct cipher_ctx dec;
  30. uint8_t key[16];
  31. uint8_t key_len;
  32. uint8_t level : 3;
  33. uint8_t key_mode : 2;
  34. uint8_t _unused : 3;
  35. };
  36. /* This not meant to be used by any code but 802.15.4 L2 stack */
  37. struct ieee802154_context {
  38. enum net_l2_flags flags;
  39. uint16_t pan_id;
  40. uint16_t channel;
  41. struct k_sem ack_lock;
  42. uint16_t short_addr;
  43. uint8_t ext_addr[IEEE802154_MAX_ADDR_LENGTH];
  44. #ifdef CONFIG_NET_L2_IEEE802154_MGMT
  45. struct ieee802154_req_params *scan_ctx;
  46. union {
  47. struct k_sem res_lock;
  48. struct k_sem req_lock;
  49. };
  50. union {
  51. uint8_t ext_addr[IEEE802154_MAX_ADDR_LENGTH];
  52. uint16_t short_addr;
  53. } coord;
  54. uint8_t coord_addr_len;
  55. #endif
  56. #ifdef CONFIG_NET_L2_IEEE802154_SECURITY
  57. struct ieee802154_security_ctx sec_ctx;
  58. #endif
  59. int16_t tx_power;
  60. uint8_t sequence;
  61. uint8_t ack_seq;
  62. uint8_t ack_received : 1;
  63. uint8_t ack_requested : 1;
  64. uint8_t associated : 1;
  65. uint8_t _unused : 5;
  66. };
  67. #define IEEE802154_L2_CTX_TYPE struct ieee802154_context
  68. #ifdef __cplusplus
  69. }
  70. #endif
  71. /**
  72. * @}
  73. */
  74. #endif /* ZEPHYR_INCLUDE_NET_IEEE802154_H_ */