/* * Copyright (c) 2017, Nordic Semiconductor ASA * All rights reserved. * * SPDX-License-Identifier: BSD-3-Clause * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright notice, this * list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * 3. Neither the name of Nordic Semiconductor ASA nor the names of its * contributors may be used to endorse or promote products derived from this * software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY, AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. * */ /** * @brief Module that contains definitions of constant values used by the nRF 802.15.4 driver. * */ #ifndef NRF_802154_CONST_H_ #define NRF_802154_CONST_H_ #define RAW_LENGTH_OFFSET 0 ///< Byte containing the frame length in a raw frame. #define RAW_PAYLOAD_OFFSET 1 ///< Offset of the frame payload in a raw frame #define ACK_HEADER_WITH_PENDING 0x12 ///< The first byte of an ACK frame containing a pending bit. #define ACK_HEADER_WITHOUT_PENDING 0x02 ///< The first byte of an ACK frame without a pending bit. #define ACK_REQUEST_OFFSET 1 ///< Byte containing the ACK request bit (+1 for the frame length byte). #define ACK_REQUEST_BIT (1 << 5) ///< ACK request bit. #define ASN_IN_NONCE_BIT 0x40 ///< Bit containing the ASN in Nonce field. #define DEST_ADDR_TYPE_OFFSET 2 ///< Byte containing the destination address type (+1 for the frame length byte). #define DEST_ADDR_TYPE_MASK 0x0c ///< Mask of bits containing the destination address type. #define DEST_ADDR_TYPE_EXTENDED 0x0c ///< Bits containing the extended destination address type. #define DEST_ADDR_TYPE_NONE 0x00 ///< Bits containing a not-present destination address type. #define DEST_ADDR_TYPE_SHORT 0x08 ///< Bits containing the short destination address type. #define DEST_ADDR_OFFSET 6 ///< Offset of the destination address in the Data frame (+1 for the frame length byte). #define DSN_OFFSET 3 ///< Byte containing the DSN value (+1 for the frame length byte). #define DSN_SUPPRESS_OFFSET 2 ///< Byte containing the DSN suppression field. #define DSN_SUPPRESS_BIT 0x01 ///< Bits containing the DSN suppression field. #define FRAME_COUNTER_SUPPRESS_BIT 0x20 ///< Bit containing the Frame Counter Suppression field. #define FRAME_PENDING_OFFSET 1 ///< Byte containing a pending bit (+1 for the frame length byte). #define FRAME_PENDING_BIT (1 << 4) ///< Pending bit. #define FRAME_TYPE_OFFSET 1 ///< Byte containing the frame type bits (+1 for the frame length byte). #define FRAME_TYPE_MASK 0x07 ///< Mask of bits containing the frame type. #define FRAME_TYPE_ACK 0x02 ///< Bits containing the ACK frame type. #define FRAME_TYPE_BEACON 0x00 ///< Bits containing the Beacon frame type. #define FRAME_TYPE_COMMAND 0x03 ///< Bits containing the Command frame type. #define FRAME_TYPE_DATA 0x01 ///< Bits containing the Data frame type. #define FRAME_TYPE_EXTENDED 0x07 ///< Bits containing the Extended frame type. #define FRAME_TYPE_FRAGMENT 0x06 ///< Bits containing the Fragment or the Frak frame type. #define FRAME_TYPE_MULTIPURPOSE 0x05 ///< Bits containing the Multipurpose frame type. #define FRAME_VERSION_OFFSET 2 ///< Byte containing the frame version bits (+1 for the frame length byte). #define FRAME_VERSION_MASK 0x30 ///< Mask of bits containing the frame version. #define FRAME_VERSION_0 0x00 ///< Bits containing the frame version 0b00. #define FRAME_VERSION_1 0x10 ///< Bits containing the frame version 0b01. #define FRAME_VERSION_2 0x20 ///< Bits containing the frame version 0b10. #define FRAME_VERSION_3 0x30 ///< Bits containing the frame version 0b11. #define IE_HEADER_LENGTH_MASK 0x3f ///< Mask of bits containing the length of an IE header content. #define IE_PRESENT_OFFSET 2 ///< Byte containing the IE Present bit. #define IE_PRESENT_BIT 0x02 ///< Bits containing the IE Present field. #define KEY_ID_MODE_0 0 ///< Value of the 0x00 Key Identifier Mode. #define KEY_ID_MODE_1 1 ///< Value of the 0x01 Key Identifier Mode. #define KEY_ID_MODE_2 2 ///< Value of the 0x10 Key Identifier Mode. #define KEY_ID_MODE_3 3 ///< Value of the 0x11 Key Identifier Mode. #define KEY_ID_MODE_MASK 0x18 ///< Mask of bits containing Key Identifier Mode in the Security Control field. #define KEY_ID_MODE_BIT_OFFSET 3 ///< Number of bits the Key Identifier Mode is offset in the Security Control field. #define KEY_ID_MODE_0_MASK 0 ///< Bits containing the 0x00 Key Identifier Mode. #define KEY_ID_MODE_1_MASK 0x08 ///< Bits containing the 0x01 Key Identifier Mode. #define KEY_ID_MODE_2_MASK 0x10 ///< Bits containing the 0x10 Key Identifier Mode. #define KEY_ID_MODE_3_MASK 0x18 ///< Bits containing the 0x11 Key Identifier Mode. #define KEY_SRC_KEY_ID_MODE_0_SIZE 0 ///< Size of the Key Source field when Key Identifier Mode equals 0. #define KEY_SRC_KEY_ID_MODE_1_SIZE 0 ///< Size of the Key Source field when Key Identifier Mode equals 1. #define KEY_SRC_KEY_ID_MODE_2_SIZE 4 ///< Size of the Key Source field when Key Identifier Mode equals 2. #define KEY_SRC_KEY_ID_MODE_3_SIZE 8 ///< Size of the Key Source field when Key Identifier Mode equals 3. #define KEY_IDX_SIZE 1 ///< Size of the Key Index field #define MAC_CMD_COMMAND_ID_SIZE 1 ///< Size of the MAC Command ID field. #define MAC_CMD_ASSOC_REQ 0x01 ///< Command frame identifier for MAC Association request. #define MAC_CMD_ASSOC_RESP 0x02 ///< Command frame identifier for MAC Association response. #define MAC_CMD_DISASSOC_NOTIFY 0x03 ///< Command frame identifier for MAC Disaccociation notification. #define MAC_CMD_DATA_REQ 0x04 ///< Command frame identifier for MAC Data Requests. #define MAC_CMD_PANID_CONFLICT 0x05 ///< Command frame identifier for MAC PAN ID conflict notification. #define MAC_CMD_ORPHAN_NOTIFY 0x06 ///< Command frame identifier for MAC Orphan notification. #define MAC_CMD_BEACON_REQ 0x07 ///< Command frame identifier for MAC Beacon. #define MAC_CMD_COORD_REALIGN 0x08 ///< Command frame identifier for MAC Coordinator realignment. #define MAC_CMD_GTS_REQUEST 0x09 ///< Command frame identifier for MAC GTS request. #define PAN_ID_COMPR_OFFSET 1 ///< Byte containing the PAN ID compression bit (+1 for the frame length byte). #define PAN_ID_COMPR_MASK 0x40 ///< PAN ID compression bit. #define PAN_ID_OFFSET 4 ///< Offset of PAN ID in the Data frame (+1 for the frame length byte). #define PHR_OFFSET 0 ///< Offset of the PHY header in a frame. #define PHR_LENGTH_MASK 0x7f ///< Mask of the PHR length field #define PSDU_OFFSET 1 ///< Offset of the PHY payload. #define SECURITY_ENABLED_OFFSET 1 ///< Byte containing the Security Enabled bit. #define SECURITY_ENABLED_BIT 0x08 ///< Bits containing the Security Enabled field. #define SECURITY_LEVEL_MASK 0x07 ///< Mask of bits containing the Security level field. #define SECURITY_LEVEL_NONE 0x00 ///< Bits indicating a frame with no security attributes (0b000). #define SECURITY_LEVEL_MIC_32 0x01 ///< Bits containing the 32-bit Message Integrity Code (0b001). #define SECURITY_LEVEL_MIC_64 0x02 ///< Bits containing the 64-bit Message Integrity Code (0b010). #define SECURITY_LEVEL_MIC_128 0x03 ///< Bits containing the 128-bit Message Integrity Code (0b011). #define SECURITY_LEVEL_ENC_MIC_32 0x05 ///< Bits containing the 32-bit Encrypted Message Integrity Code (0b101). #define SECURITY_LEVEL_ENC_MIC_64 0x06 ///< Bits containing the 64-bit Encrypted Message Integrity Code (0b110). #define SECURITY_LEVEL_ENC_MIC_128 0x07 ///< Bits containing the 128-bit Encrypted Message Integrity Code (0b111). #define SECURITY_LEVEL_MIC_LEVEL_MASK 0x03 ///< Mask of bits encoding the Message Integrity Code length. #define SRC_ADDR_TYPE_EXTENDED 0xc0 ///< Bits containing the extended source address type. #define SRC_ADDR_TYPE_NONE 0x00 ///< Bits containing a not-present source address type. #define SRC_ADDR_TYPE_MASK 0xc0 ///< Mask of bits containing the source address type. #define SRC_ADDR_TYPE_OFFSET 2 ///< Byte containing the source address type (+1 for the frame length byte). #define SRC_ADDR_TYPE_SHORT 0x80 ///< Bits containing the short source address type. #define SRC_ADDR_OFFSET_SHORT_DST 8 ///< Offset of the source address in the Data frame if the destination address is short. #define SRC_ADDR_OFFSET_EXTENDED_DST 14 ///< Offset of the source address in the Data frame if the destination address is extended. #define DSN_SIZE 1 ///< Size of the Sequence Number field. #define FCF_SIZE 2 ///< Size of the FCF field. #define FCS_SIZE 2 ///< Size of the FCS field. #define FRAME_COUNTER_SIZE 4 ///< Size of the Frame Counter field. #define IE_HEADER_SIZE 2 ///< Size of the obligatory IE Header field elements. #define IMM_ACK_LENGTH 5 ///< Length of the ACK frame. #define KEY_ID_MODE_1_SIZE 1 ///< Size of the 0x01 Key Identifier Mode field. #define KEY_ID_MODE_2_SIZE 5 ///< Size of the 0x10 Key Identifier Mode field. #define KEY_ID_MODE_3_SIZE 9 ///< Size of the 0x11 Key Identifier Mode field. #define MAX_PACKET_SIZE 127 ///< Maximum size of the radio packet. #define MIC_32_SIZE 4 ///< Size of MIC with the MIC-32 and ENC-MIC-32 security attributes. #define MIC_64_SIZE 8 ///< Size of MIC with the MIC-64 and ENC-MIC-64 security attributes. #define MIC_128_SIZE 16 ///< Size of MIC with the MIC-128 and ENC-MIC-128 security attributes. #define PAN_ID_SIZE 2 ///< Size of the PAN ID. #define PHR_SIZE 1 ///< Size of the PHR field. #define SECURITY_CONTROL_SIZE 1 ///< Size of the Security Control field. #define AES_CCM_KEY_SIZE 16 ///< Size of AES CCM Key. #define EXTENDED_ADDRESS_SIZE 8 ///< Size of the Extended Mac Address. #define SHORT_ADDRESS_SIZE 2 ///< Size of the Short Mac Address. #define TURNAROUND_TIME 192UL ///< RX-to-TX or TX-to-RX turnaround time (aTurnaroundTime), in microseconds (us). #define CCA_TIME 128UL ///< Time required to perform CCA detection (aCcaTime), in microseconds (us). #define ACK_IFS TURNAROUND_TIME ///< Ack Inter Frame Spacing [us] - delay between last symbol of received frame and first symbol of transmitted Ack #define UNIT_BACKOFF_PERIOD (TURNAROUND_TIME + CCA_TIME) ///< Number of symbols in the basic time period used by CSMA-CA algorithm (aUnitBackoffPeriod), in (us). #define PHY_US_PER_SYMBOL 16 ///< Duration of a single symbol in microseconds (us). #define PHY_SYMBOLS_PER_OCTET 2 ///< Number of symbols in a single byte (octet). #define PHY_SHR_SYMBOLS 10 ///< Number of symbols in the Synchronization Header (SHR). #define PHY_MIN_RECEIVER_SENSITIVITY -85 ///< Lowest receiver sensitivity level in dBm according to 802.15.4-2020 specification, chapter 12.3.4 #define ED_RESULT_MAX 0xff ///< Maximal ED result. #define BROADCAST_ADDRESS ((uint8_t[SHORT_ADDRESS_SIZE]) {0xff, 0xff}) ///< Broadcast short address. #define MIN_SIFS_PERIOD_US 192 ///< Minimum Short IFS period default value in us. #define MIN_LIFS_PERIOD_US 640 ///< Minimum Long IFS period default value in us. #define MAX_SIFS_FRAME_SIZE 18 ///< Maximum frame length which can be followed by the Short Interframe Space. #define NRF_802154_RESERVED_CSMACA_ID (UINT32_MAX - 2) ///< Delayed timeslot identifier reserved for CSMA/CA procedure. #define NRF_802154_RESERVED_DTX_ID (UINT32_MAX - 3) ///< Delayed timeslot identifier reserved for delayed transmissions. #define IE_VENDOR_ID 0x00 ///< Vendor-specific IE identifier #define IE_VENDOR_SIZE_MIN 3 ///< Vendor-specific IE minimum length #define IE_VENDOR_OUI_OFFSET 0 ///< Vendor-specific IE OUI offset #define IE_VENDOR_THREAD_SUBTYPE_OFFSET 3 ///< Thread Vendor-specific IE subtype offset #define IE_VENDOR_THREAD_DATA_OFFSET 4 ///< Thread Vendor-specific IE DATA offset #define IE_VENDOR_THREAD_OUI 0xeab89b ///< Thread Vendor-specific IE OUI #define IE_VENDOR_THREAD_SIZE_MIN 4 ///< Thread Vendor-specific IE minimum length #define IE_VENDOR_THREAD_ACK_PROBING_ID 0x00 ///< Thread Vendor-specific ACK Probing IE subtype ID #define IE_VENDOR_THREAD_ACK_SIZE_MIN 5 ///< Thread Vendor-specific ACK Probing IE minimum size #define IE_VENDOR_THREAD_ACK_SIZE_MAX 6 ///< Thread Vendor-specific ACK Probing IE maximum size #define IE_VENDOR_THREAD_RSSI_TOKEN 0x01 ///< Thread Vendor-specific ACK Probing IE RSSI value placeholder #define IE_VENDOR_THREAD_MARGIN_TOKEN 0x02 ///< Thread Vendor-specific ACK Probing IE Link margin value placeholder #define IE_VENDOR_THREAD_LQI_TOKEN 0x03 ///< Thread Vendor-specific ACK Probing IE LQI value placeholder #define IE_VENDOR_THREAD_RSSI_FLOOR -130 ///< Thread Vendor-specific ACK Probing RSSI floor value used for scaling #define IE_VENDOR_THREAD_MARGIN_FLOOR 0 ///< Thread Vendor-specific ACK Probing margin floor value used for scaling #define IE_VENDOR_THREAD_RSSI_CEIL 0 ///< Thread Vendor-specific ACK Probing RSSI ceil value used for scaling #define IE_VENDOR_THREAD_MARGIN_CEIL 130 ///< Thread Vendor-specific ACK Probing margin ceil value used for scaling #define IE_VENDOR_THREAD_CST_ID 0x02 ///< Thread Vendor-specific CST IE subtype ID #define IE_VENDOR_THREAD_CST_SIZE 8 ///< Thread Vendor-specific CST IE size #define IE_CSL_SYMBOLS_PER_UNIT 10 ///< Number of symbols per phase/period unit #define IE_CSL_PERIOD_MAX 0xffff ///< Maximum CSL IE phase/period value #define IE_CSL_SIZE_MIN 4 ///< Minimal size of the CSL IE #define IE_CSL_ID 0x1a ///< CSL IE identifier #define IE_HT1 0x7e ///< Information Element Header Termination type 1 #define IE_HT2 0x7f ///< Information Element Header Termination type 2 #define IE_LENGTH_MASK 0x7f ///< Information element length mask #define IE_LENGTH_OFFSET 0x00 ///< Information element length offset #define IE_ID_OFFSET_0 0x00 ///< Offset of the octet containing the first part of the IE identifier. #define IE_ID_OFFSET_1 0x01 ///< Offset of the octed containing the second part of the IE identifier. #define IE_DATA_OFFSET 0x02 ///< Information element data offset #define IE_HEADER_ELEMENT_ID_OFFSET 0x07 ///< Bit offset of Element ID field in a Header IE header. typedef enum { REQ_ORIG_HIGHER_LAYER, REQ_ORIG_CORE, REQ_ORIG_RSCH, REQ_ORIG_CSMA_CA, REQ_ORIG_ACK_TIMEOUT, REQ_ORIG_DELAYED_TRX, REQ_ORIG_IFS, } req_originator_t; #endif // NRF_802154_CONST_H_