AM273x MCU+ SDK  09.02.00
hsmclient_msg.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2022-24 Texas Instruments Incorporated
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions
6  * are met:
7  *
8  * Redistributions of source code must retain the above copyright
9  * notice, this list of conditions and the following disclaimer.
10  *
11  * Redistributions in binary form must reproduce the above copyright
12  * notice, this list of conditions and the following disclaimer in the
13  * documentation and/or other materials provided with the
14  * 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
21  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
23  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
24  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
25  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
26  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
30  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31  */
32 
33 #ifndef HSM_CLIENT_MSG_H_
34 #define HSM_CLIENT_MSG_H_
35 
36 #ifdef __cplusplus
37 extern "C"
38 {
39 #endif
40 
41 #include <stdlib.h>
42 
53 #define HSM_MSG_GET_VERSION (0x0002)
54 
55 #define HSM_MSG_BOOT_NOTIFY (0x000A)
56 
57 #define HSM_MSG_GET_UID (0x9021)
58 
59 #define HSM_MSG_OPEN_DBG_FIREWALLS (0x900C)
60 
61 #define HSM_MSG_READ_OTP_ROW (0x9022)
62 
63 #define HSM_MSG_WRITE_OTP_ROW (0x9023)
64 
65 #define HSM_MSG_PROT_OTP_ROW (0x9024)
66 
67 #define HSM_MSG_GET_OTP_ROW_PROT (0x9026)
68 
69 #define HSM_MSG_GET_OTP_ROW_COUNT (0x9027)
70 
71 #define HSM_MSG_PROC_AUTH_BOOT (0xC120)
72 
73 #define HSM_MSG_SET_FIREWALL (0x9000U)
74 
75 #define HSM_MSG_SET_FIREWALL_INTR (0x9002)
76 
77 #define HSM_KEYWRITER_SEND_CUST_KEY_CERT (0x9028)
78 
79 #define HSM_MSG_READ_SWREV (0x9033)
80 
81 #define HSM_MSG_WRITE_SWREV (0x9032)
82 
83 #define HSM_MSG_GET_DKEK (0x9029)
84 
85 #define HSM_MSG_GET_RAND (0x9001)
86 
87 #define HSM_MSG_KEYRING_IMPORT (0x9039)
88 /* message flags */
94 #define HSM_FLAG_AOP (0x11)
95 
96 
103 #define HSM_FLAG_NAOP (0x22)
104 
111 #define HSM_FLAG_ACK (0xAA)
112 
117 #define HSM_FLAG_NACK (0x55)
118 
120 #define HSM_CLIENT_ID (0x01)
121 
127 #define HSM_UID_SIZE (64U)
128 
134 #define HSM_DBG_CERT_SIZE (4096U)
135 
141 #define HSM_KEYRING_CERT_SIZE (10280U)
142 
148 typedef struct HsmMsg_t_
149 {
150  uint8_t destClientId; /*< destination client Id */
151  uint8_t srcClientId; /*< current task client Id */
152  uint8_t flags; /*< flags */
153  uint16_t serType ; /*< service type */
154  void* args ; /*< pointer to args */
155  uint16_t crcArgs; /*< args integirty check */
156  uint16_t crcMsg ; /*< message integrity check */
157 } __attribute__((packed)) HsmMsg_t;
158 
159 typedef enum HSM_ClientIds_
160 {
166 } HSM_ClientIds_t ;
167 
170 #ifdef __cplusplus
171 }
172 #endif
173 
174 #endif /* HSM_CLIENT_MSG_H_ */
HSM_CLIENT_ID_2
@ HSM_CLIENT_ID_2
Definition: hsmclient_msg.h:163
HSM_ClientIds_t
HSM_ClientIds_t
Definition: hsmclient_msg.h:160
HsmMsg_t_::crcMsg
uint16_t crcMsg
Definition: hsmclient_msg.h:156
HsmMsg_t_::serType
uint16_t serType
Definition: hsmclient_msg.h:153
HsmMsg_t_
HSM client / server message format struct.
Definition: hsmclient_msg.h:149
HSM_CLIENT_ID_1
@ HSM_CLIENT_ID_1
Definition: hsmclient_msg.h:162
HSM_CLIENT_ID_4
@ HSM_CLIENT_ID_4
Definition: hsmclient_msg.h:165
HsmMsg_t_::flags
uint8_t flags
Definition: hsmclient_msg.h:152
HsmMsg_t_::crcArgs
uint16_t crcArgs
Definition: hsmclient_msg.h:155
HsmMsg_t_::destClientId
uint8_t destClientId
Definition: hsmclient_msg.h:150
__attribute__
struct sockaddr __attribute__
HSM client / server message format struct.
HsmMsg_t_::srcClientId
uint8_t srcClientId
Definition: hsmclient_msg.h:151
HSM_BOOT_NOTIFY_CLIENT_ID
@ HSM_BOOT_NOTIFY_CLIENT_ID
Definition: hsmclient_msg.h:161
HSM_CLIENT_ID_3
@ HSM_CLIENT_ID_3
Definition: hsmclient_msg.h:164
HsmMsg_t_::args
void * args
Definition: hsmclient_msg.h:154