ieee802154.h 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195
  1. /*
  2. * IEEE802.15.4-2003 specification
  3. *
  4. * Copyright (C) 2007, 2008 Siemens AG
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License version 2
  8. * as published by the Free Software Foundation.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License along
  16. * with this program; if not, write to the Free Software Foundation, Inc.,
  17. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
  18. *
  19. * Written by:
  20. * Pavel Smolenskiy <pavel.smolenskiy@gmail.com>
  21. * Maxim Gorbachyov <maxim.gorbachev@siemens.com>
  22. * Maxim Osipov <maxim.osipov@siemens.com>
  23. * Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
  24. * Alexander Smirnov <alex.bluesman.smirnov@gmail.com>
  25. */
  26. #ifndef NET_IEEE802154_H
  27. #define NET_IEEE802154_H
  28. #define IEEE802154_MTU 127
  29. #define IEEE802154_FC_TYPE_BEACON 0x0 /* Frame is beacon */
  30. #define IEEE802154_FC_TYPE_DATA 0x1 /* Frame is data */
  31. #define IEEE802154_FC_TYPE_ACK 0x2 /* Frame is acknowledgment */
  32. #define IEEE802154_FC_TYPE_MAC_CMD 0x3 /* Frame is MAC command */
  33. #define IEEE802154_FC_TYPE_SHIFT 0
  34. #define IEEE802154_FC_TYPE_MASK ((1 << 3) - 1)
  35. #define IEEE802154_FC_TYPE(x) ((x & IEEE802154_FC_TYPE_MASK) >> IEEE802154_FC_TYPE_SHIFT)
  36. #define IEEE802154_FC_SET_TYPE(v, x) do { \
  37. v = (((v) & ~IEEE802154_FC_TYPE_MASK) | \
  38. (((x) << IEEE802154_FC_TYPE_SHIFT) & IEEE802154_FC_TYPE_MASK)); \
  39. } while (0)
  40. #define IEEE802154_FC_SECEN_SHIFT 3
  41. #define IEEE802154_FC_SECEN (1 << IEEE802154_FC_SECEN_SHIFT)
  42. #define IEEE802154_FC_FRPEND_SHIFT 4
  43. #define IEEE802154_FC_FRPEND (1 << IEEE802154_FC_FRPEND_SHIFT)
  44. #define IEEE802154_FC_ACK_REQ_SHIFT 5
  45. #define IEEE802154_FC_ACK_REQ (1 << IEEE802154_FC_ACK_REQ_SHIFT)
  46. #define IEEE802154_FC_INTRA_PAN_SHIFT 6
  47. #define IEEE802154_FC_INTRA_PAN (1 << IEEE802154_FC_INTRA_PAN_SHIFT)
  48. #define IEEE802154_FC_SAMODE_SHIFT 14
  49. #define IEEE802154_FC_SAMODE_MASK (3 << IEEE802154_FC_SAMODE_SHIFT)
  50. #define IEEE802154_FC_DAMODE_SHIFT 10
  51. #define IEEE802154_FC_DAMODE_MASK (3 << IEEE802154_FC_DAMODE_SHIFT)
  52. #define IEEE802154_FC_VERSION_SHIFT 12
  53. #define IEEE802154_FC_VERSION_MASK (3 << IEEE802154_FC_VERSION_SHIFT)
  54. #define IEEE802154_FC_VERSION(x) ((x & IEEE802154_FC_VERSION_MASK) >> IEEE802154_FC_VERSION_SHIFT)
  55. #define IEEE802154_FC_SAMODE(x) \
  56. (((x) & IEEE802154_FC_SAMODE_MASK) >> IEEE802154_FC_SAMODE_SHIFT)
  57. #define IEEE802154_FC_DAMODE(x) \
  58. (((x) & IEEE802154_FC_DAMODE_MASK) >> IEEE802154_FC_DAMODE_SHIFT)
  59. #define IEEE802154_SCF_SECLEVEL_MASK 7
  60. #define IEEE802154_SCF_SECLEVEL_SHIFT 0
  61. #define IEEE802154_SCF_SECLEVEL(x) (x & IEEE802154_SCF_SECLEVEL_MASK)
  62. #define IEEE802154_SCF_KEY_ID_MODE_SHIFT 3
  63. #define IEEE802154_SCF_KEY_ID_MODE_MASK (3 << IEEE802154_SCF_KEY_ID_MODE_SHIFT)
  64. #define IEEE802154_SCF_KEY_ID_MODE(x) \
  65. ((x & IEEE802154_SCF_KEY_ID_MODE_MASK) >> IEEE802154_SCF_KEY_ID_MODE_SHIFT)
  66. #define IEEE802154_SCF_KEY_IMPLICIT 0
  67. #define IEEE802154_SCF_KEY_INDEX 1
  68. #define IEEE802154_SCF_KEY_SHORT_INDEX 2
  69. #define IEEE802154_SCF_KEY_HW_INDEX 3
  70. #define IEEE802154_SCF_SECLEVEL_NONE 0
  71. #define IEEE802154_SCF_SECLEVEL_MIC32 1
  72. #define IEEE802154_SCF_SECLEVEL_MIC64 2
  73. #define IEEE802154_SCF_SECLEVEL_MIC128 3
  74. #define IEEE802154_SCF_SECLEVEL_ENC 4
  75. #define IEEE802154_SCF_SECLEVEL_ENC_MIC32 5
  76. #define IEEE802154_SCF_SECLEVEL_ENC_MIC64 6
  77. #define IEEE802154_SCF_SECLEVEL_ENC_MIC128 7
  78. /* MAC footer size */
  79. #define IEEE802154_MFR_SIZE 2 /* 2 octets */
  80. /* MAC's Command Frames Identifiers */
  81. #define IEEE802154_CMD_ASSOCIATION_REQ 0x01
  82. #define IEEE802154_CMD_ASSOCIATION_RESP 0x02
  83. #define IEEE802154_CMD_DISASSOCIATION_NOTIFY 0x03
  84. #define IEEE802154_CMD_DATA_REQ 0x04
  85. #define IEEE802154_CMD_PANID_CONFLICT_NOTIFY 0x05
  86. #define IEEE802154_CMD_ORPHAN_NOTIFY 0x06
  87. #define IEEE802154_CMD_BEACON_REQ 0x07
  88. #define IEEE802154_CMD_COORD_REALIGN_NOTIFY 0x08
  89. #define IEEE802154_CMD_GTS_REQ 0x09
  90. /*
  91. * The return values of MAC operations
  92. */
  93. enum {
  94. /*
  95. * The requested operation was completed successfully.
  96. * For a transmission request, this value indicates
  97. * a successful transmission.
  98. */
  99. IEEE802154_SUCCESS = 0x0,
  100. /* The beacon was lost following a synchronization request. */
  101. IEEE802154_BEACON_LOSS = 0xe0,
  102. /*
  103. * A transmission could not take place due to activity on the
  104. * channel, i.e., the CSMA-CA mechanism has failed.
  105. */
  106. IEEE802154_CHNL_ACCESS_FAIL = 0xe1,
  107. /* The GTS request has been denied by the PAN coordinator. */
  108. IEEE802154_DENINED = 0xe2,
  109. /* The attempt to disable the transceiver has failed. */
  110. IEEE802154_DISABLE_TRX_FAIL = 0xe3,
  111. /*
  112. * The received frame induces a failed security check according to
  113. * the security suite.
  114. */
  115. IEEE802154_FAILED_SECURITY_CHECK = 0xe4,
  116. /*
  117. * The frame resulting from secure processing has a length that is
  118. * greater than aMACMaxFrameSize.
  119. */
  120. IEEE802154_FRAME_TOO_LONG = 0xe5,
  121. /*
  122. * The requested GTS transmission failed because the specified GTS
  123. * either did not have a transmit GTS direction or was not defined.
  124. */
  125. IEEE802154_INVALID_GTS = 0xe6,
  126. /*
  127. * A request to purge an MSDU from the transaction queue was made using
  128. * an MSDU handle that was not found in the transaction table.
  129. */
  130. IEEE802154_INVALID_HANDLE = 0xe7,
  131. /* A parameter in the primitive is out of the valid range.*/
  132. IEEE802154_INVALID_PARAMETER = 0xe8,
  133. /* No acknowledgment was received after aMaxFrameRetries. */
  134. IEEE802154_NO_ACK = 0xe9,
  135. /* A scan operation failed to find any network beacons.*/
  136. IEEE802154_NO_BEACON = 0xea,
  137. /* No response data were available following a request. */
  138. IEEE802154_NO_DATA = 0xeb,
  139. /* The operation failed because a short address was not allocated. */
  140. IEEE802154_NO_SHORT_ADDRESS = 0xec,
  141. /*
  142. * A receiver enable request was unsuccessful because it could not be
  143. * completed within the CAP.
  144. */
  145. IEEE802154_OUT_OF_CAP = 0xed,
  146. /*
  147. * A PAN identifier conflict has been detected and communicated to the
  148. * PAN coordinator.
  149. */
  150. IEEE802154_PANID_CONFLICT = 0xee,
  151. /* A coordinator realignment command has been received. */
  152. IEEE802154_REALIGMENT = 0xef,
  153. /* The transaction has expired and its information discarded. */
  154. IEEE802154_TRANSACTION_EXPIRED = 0xf0,
  155. /* There is no capacity to store the transaction. */
  156. IEEE802154_TRANSACTION_OVERFLOW = 0xf1,
  157. /*
  158. * The transceiver was in the transmitter enabled state when the
  159. * receiver was requested to be enabled.
  160. */
  161. IEEE802154_TX_ACTIVE = 0xf2,
  162. /* The appropriate key is not available in the ACL. */
  163. IEEE802154_UNAVAILABLE_KEY = 0xf3,
  164. /*
  165. * A SET/GET request was issued with the identifier of a PIB attribute
  166. * that is not supported.
  167. */
  168. IEEE802154_UNSUPPORTED_ATTR = 0xf4,
  169. /*
  170. * A request to perform a scan operation failed because the MLME was
  171. * in the process of performing a previously initiated scan operation.
  172. */
  173. IEEE802154_SCAN_IN_PROGRESS = 0xfc,
  174. };
  175. #endif