AESCMACLPF3.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2021-2024, Texas Instruments Incorporated
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  *
9  * * Redistributions of source code must retain the above copyright
10  * notice, this list of conditions and the following disclaimer.
11  *
12  * * Redistributions in binary form must reproduce the above copyright
13  * notice, this list of conditions and the following disclaimer in the
14  * documentation and/or other materials provided with the distribution.
15  *
16  * * Neither the name of Texas Instruments Incorporated nor the names of
17  * its contributors may be used to endorse or promote products derived
18  * from this software without specific prior written permission.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
21  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
22  * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
23  * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
24  * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
25  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
26  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
27  * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
28  * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
29  * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
30  * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31  */
63 #ifndef ti_drivers_aescmac_AESCMACLPF3__include
64 #define ti_drivers_aescmac_AESCMACLPF3__include
65 
66 #include <stdbool.h>
67 #include <stdint.h>
68 
69 #include <ti/drivers/AESCMAC.h>
72 
73 #include <ti/devices/DeviceFamily.h>
74 #include DeviceFamily_constructPath(inc/hw_types.h)
75 #include DeviceFamily_constructPath(driverlib/aes.h)
76 
77 #ifdef __cplusplus
78 extern "C" {
79 #endif
80 
81 /*
82  * Default AES CMAC & CBC-MAC auto config:
83  * ECB SRC as TXTXBUF
84  * Trigger point for auto ECB as WRBUF3 (encryption starts by writing BUF3)
85  * BUSHALT enabled
86  */
87 #if DeviceFamily_PARENT == DeviceFamily_PARENT_CC23X0
88  #define AESCMACLPF3_DEFAULT_AUTOCFG \
89  ((uint32_t)AES_AUTOCFG_AESSRC_TXTXBUF | (uint32_t)AES_AUTOCFG_TRGAES_WRBUF3 | (uint32_t)AES_AUTOCFG_BUSHALT_EN)
90 #elif DeviceFamily_PARENT == DeviceFamily_PARENT_CC27XX
91  #define AESCMACLPF3_DEFAULT_AUTOCFG \
92  ((uint32_t)AES_AUTOCFG_ECBSRC_TXTXBUF | (uint32_t)AES_AUTOCFG_TRGECB_WRBUF3 | (uint32_t)AES_AUTOCFG_BUSHALT_EN)
93 #else
94  #error "Unsupported DeviceFamily_Parent for AESCMACLPF3!"
95 #endif
96 
97 /*
98  * AES CMAC DMA config:
99  * - ADRCHA = BUF0
100  * - TRGCHA = ECBSTART
101  */
102 #if DeviceFamily_PARENT == DeviceFamily_PARENT_CC23X0
103  #define AESCMACLPF3_DMA_CONFIG ((uint32_t)AES_DMA_ADRCHA_BUF0 | (uint32_t)AES_DMA_TRGCHA_AESSTART)
104 #elif DeviceFamily_PARENT == DeviceFamily_PARENT_CC27XX
105  #define AESCMACLPF3_DMA_CONFIG ((uint32_t)AES_DMA_ADRCHA_BUF0 | (uint32_t)AES_DMA_TRGCHA_ECBSTART)
106 #else
107  #error "Unsupported DeviceFamily_Parent for AESCMACLPF3!"
108 #endif
109 
110 #define AESCBCMACLPF3_DMA_CONFIG AESCMACLPF3_DMA_CONFIG
111 
119 
125 typedef struct
126 {
127  /* Common member first to allow struct to be cast to the common type */
129  volatile uint32_t intermediateTag[AES_TAG_LENGTH_BYTES / 4U];
130  uint32_t finalInputBlock[AES_BLOCK_SIZE_WORDS];
136 #if (DeviceFamily_PARENT == DeviceFamily_PARENT_CC27XX)
137  size_t inputLength;
143  int_fast16_t hsmStatus;
144  uint32_t tempAssetID;
145  uint32_t keyAssetID;
146  /* To indicate whether a segmented operation is in progress
147  */
149 #endif
151 
162 void AESCMACLPF3_processBlocks(const uint8_t *input, size_t transactionLength);
163 
171 void AESCMACLPF3_readTag(uint32_t tagOut[AES_TAG_LENGTH_BYTES / 4U]);
172 
189 __STATIC_INLINE bool AESCMAC_acquireLock(AESCMAC_Handle handle, uint32_t timeout)
190 {
191  return CryptoResourceLPF3_acquireLock(timeout);
192 }
203 __STATIC_INLINE void AESCMAC_releaseLock(AESCMAC_Handle handle)
204 {
206 }
217 __STATIC_INLINE void AESCMAC_enableThreadSafety(AESCMAC_Handle handle)
218 {
219  AESCMACLPF3_Object *object = handle->object;
220  object->threadSafe = true;
221 }
235 __STATIC_INLINE void AESCMAC_disableThreadSafety(AESCMAC_Handle handle)
236 {
237  AESCMACLPF3_Object *object = handle->object;
238  object->threadSafe = false;
239 }
242 #ifdef __cplusplus
243 }
244 #endif
245 
246 #endif /* ti_drivers_aescmac_AESCMACLPF3__include */
uint32_t tempAssetID
Definition: AESCMACLPF3.h:144
bool CryptoResourceLPF3_acquireLock(uint32_t timeout)
AES Global configuration.
Definition: AESCommon.h:154
AESCMACLPF3 Object.
Definition: AESCMACLPF3.h:125
AESCMAC_OperationType
Enum for the operation types supported by the driver.
Definition: AESCMAC.h:771
AESCommonLPF3_Object common
Definition: AESCMACLPF3.h:128
bool segmentedOperationInProgress
Definition: AESCMACLPF3.h:148
void(* AESCMAC_CallbackFxn)(AESCMAC_Handle handle, int_fast16_t returnValue, AESCMAC_Operation *operation, AESCMAC_OperationType operationType)
The definition of a callback function used by the AESCMAC driver when used in AESCMAC_RETURN_BEHAVIOR...
Definition: AESCMAC.h:795
AESCMAC_OperationType operationType
Definition: AESCMACLPF3.h:133
AESCMAC_Operation * operation
Definition: AESCMACLPF3.h:132
AESCMAC_OperationalMode
Defines the operation modes for the AESCMAC driver.
Definition: AESCMAC.h:708
size_t inputLength
Definition: AESCMACLPF3.h:137
uint32_t keyAssetID
Definition: AESCMACLPF3.h:145
AESCMAC_CallbackFxn callbackFxn
Definition: AESCMACLPF3.h:131
AESCommonLPF3 Hardware Attributes.
Definition: AESCommonLPF3.h:80
void CryptoResourceLPF3_releaseLock(void)
AESCommon driver implementation for the Low Power F3 family.
bool threadSafe
Definition: AESCMACLPF3.h:135
Shared resources to arbitrate access to the AES engine.
int_fast16_t hsmStatus
The staus of the HSM Boot up process if HSMLPF3_STATUS_SUCCESS, the HSM booted properly. if HSMLPF3_STATUS_ERROR, the HSM did not boot properly.
Definition: AESCMACLPF3.h:143
AESCommonLPF3_HWAttrs AESCMACLPF3_HWAttrs
AESCMACLPF3 Hardware Attributes.
Definition: AESCMACLPF3.h:118
AESCMAC (CMAC and CBC-MAC) driver header.
void * object
Definition: AESCommon.h:157
Struct containing the parameters required for signing or verifying a message.
Definition: AESCMAC.h:717
AESCMAC_OperationalMode operationalMode
Definition: AESCMACLPF3.h:134
AESCommonLPF3 Object.
Definition: AESCommonLPF3.h:102
© Copyright 1995-2024, Texas Instruments Incorporated. All rights reserved.
Trademarks | Privacy policy | Terms of use | Terms of sale