blob: 7b6e3e2c20d7d6e1e6d5c78c7deccba2b236c798 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Ruchika Guptae24fde92014-09-09 11:50:30 +05302/*
3 * Common internal memory map for some Freescale SoCs
4 *
5 * Copyright 2014 Freescale Semiconductor, Inc.
Gaurav Jaindb4dd6a2022-03-24 11:50:33 +05306 * Copyright 2018, 2021 NXP
Ruchika Guptae24fde92014-09-09 11:50:30 +05307 */
8
9#ifndef __FSL_SEC_H
10#define __FSL_SEC_H
11
12#include <common.h>
13#include <asm/io.h>
14
Ruchika Guptabb7143b2014-09-09 11:50:31 +053015#ifdef CONFIG_SYS_FSL_SEC_LE
Aymen Sghaier1536fd82021-03-25 17:30:26 +080016#define sec_in32(a) in_le32((ulong *)(ulong)a)
17#define sec_out32(a, v) out_le32((ulong *)(ulong)a, v)
Ruchika Guptabb7143b2014-09-09 11:50:31 +053018#define sec_in16(a) in_le16(a)
19#define sec_clrbits32 clrbits_le32
20#define sec_setbits32 setbits_le32
21#elif defined(CONFIG_SYS_FSL_SEC_BE)
22#define sec_in32(a) in_be32(a)
23#define sec_out32(a, v) out_be32(a, v)
24#define sec_in16(a) in_be16(a)
25#define sec_clrbits32 clrbits_be32
26#define sec_setbits32 setbits_be32
York Sunfa4199422016-12-28 08:43:31 -080027#elif defined(CONFIG_SYS_FSL_HAS_SEC)
Ruchika Guptabb7143b2014-09-09 11:50:31 +053028#error Neither CONFIG_SYS_FSL_SEC_LE nor CONFIG_SYS_FSL_SEC_BE is defined
29#endif
30
Clement Faurea93b0d92021-03-25 17:30:33 +080031#define BLOB_SIZE(x) ((x) + 32 + 16) /* Blob buffer size */
32
Ruchika Guptae24fde92014-09-09 11:50:30 +053033/* Security Engine Block (MS = Most Sig., LS = Least Sig.) */
34#if CONFIG_SYS_FSL_SEC_COMPAT >= 4
Ruchika Gupta4345a572014-10-07 15:46:20 +053035/* RNG4 TRNG test registers */
36struct rng4tst {
37#define RTMCTL_PRGM 0x00010000 /* 1 -> program mode, 0 -> run mode */
Alex Porosanubefb5cb2015-05-05 16:48:35 +030038#define RTMCTL_SAMP_MODE_VON_NEUMANN_ES_SC 0 /* use von Neumann data in
39 both entropy shifter and
40 statistical checker */
41#define RTMCTL_SAMP_MODE_RAW_ES_SC 1 /* use raw data in both
42 entropy shifter and
43 statistical checker */
44#define RTMCTL_SAMP_MODE_VON_NEUMANN_ES_RAW_SC 2 /* use von Neumann data in
45 entropy shifter, raw data
46 in statistical checker */
47#define RTMCTL_SAMP_MODE_INVALID 3 /* invalid combination */
Ruchika Gupta4345a572014-10-07 15:46:20 +053048 u32 rtmctl; /* misc. control register */
49 u32 rtscmisc; /* statistical check misc. register */
50 u32 rtpkrrng; /* poker range register */
Alex Porosanu5a0d7632015-05-05 16:48:34 +030051#define RTSDCTL_ENT_DLY_MIN 3200
Ruchika Gupta4345a572014-10-07 15:46:20 +053052#define RTSDCTL_ENT_DLY_MAX 12800
53 union {
54 u32 rtpkrmax; /* PRGM=1: poker max. limit register */
55 u32 rtpkrsq; /* PRGM=0: poker square calc. result register */
56 };
57#define RTSDCTL_ENT_DLY_SHIFT 16
58#define RTSDCTL_ENT_DLY_MASK (0xffff << RTSDCTL_ENT_DLY_SHIFT)
59 u32 rtsdctl; /* seed control register */
60 union {
61 u32 rtsblim; /* PRGM=1: sparse bit limit register */
62 u32 rttotsam; /* PRGM=0: total samples register */
63 };
64 u32 rtfreqmin; /* frequency count min. limit register */
Alex Porosanuf8d6a7f2015-05-05 16:48:33 +030065#define RTFRQMAX_DISABLE (1 << 20)
Ruchika Gupta4345a572014-10-07 15:46:20 +053066 union {
67 u32 rtfreqmax; /* PRGM=1: freq. count max. limit register */
68 u32 rtfreqcnt; /* PRGM=0: freq. count register */
69 };
70 u32 rsvd1[40];
Michael Wallee692a002020-06-27 22:58:52 +020071#define RDSTA_IF(idx) (0x00000001 << (idx))
72#define RDSTA_PR(idx) (0x00000010 << (idx))
73#define RDSTA_MASK (RDSTA_PR(1) | RDSTA_PR(0) | RDSTA_IF(1) | RDSTA_IF(0))
Michael Walle602cc8d2020-06-27 22:58:51 +020074#define RDSTA_SKVN 0x40000000
Ruchika Gupta4345a572014-10-07 15:46:20 +053075 u32 rdsta; /*RNG DRNG Status Register*/
76 u32 rsvd2[15];
77};
78
Michael Wallea83fa182020-06-27 22:58:50 +020079/* Version registers (Era 10+) */
80struct version_regs {
81 u32 crca; /* CRCA_VERSION */
82 u32 afha; /* AFHA_VERSION */
83 u32 kfha; /* KFHA_VERSION */
84 u32 pkha; /* PKHA_VERSION */
85 u32 aesa; /* AESA_VERSION */
86 u32 mdha; /* MDHA_VERSION */
87 u32 desa; /* DESA_VERSION */
88 u32 snw8a; /* SNW8A_VERSION */
89 u32 snw9a; /* SNW9A_VERSION */
90 u32 zuce; /* ZUCE_VERSION */
91 u32 zuca; /* ZUCA_VERSION */
92 u32 ccha; /* CCHA_VERSION */
93 u32 ptha; /* PTHA_VERSION */
94 u32 rng; /* RNG_VERSION */
95 u32 trng; /* TRNG_VERSION */
96 u32 aaha; /* AAHA_VERSION */
97 u32 rsvd[10];
98 u32 sr; /* SR_VERSION */
99 u32 dma; /* DMA_VERSION */
100 u32 ai; /* AI_VERSION */
101 u32 qi; /* QI_VERSION */
102 u32 jr; /* JR_VERSION */
103 u32 deco; /* DECO_VERSION */
104};
105
106#define CHA_VER_NUM_MASK 0x000000ff
107#define CHA_VER_MISC_SHIFT 8
108#define CHA_VER_MISC_MASK 0x0000ff00
109#define CHA_VER_REV_SHIFT 16
110#define CHA_VER_REV_MASK 0x00ff0000
111#define CHA_VER_VID_SHIFT 24
112#define CHA_VER_VID_MASK 0xff000000
113
Ruchika Guptae24fde92014-09-09 11:50:30 +0530114typedef struct ccsr_sec {
115 u32 res0;
116 u32 mcfgr; /* Master CFG Register */
117 u8 res1[0x4];
118 u32 scfgr;
119 struct {
120 u32 ms; /* Job Ring LIODN Register, MS */
121 u32 ls; /* Job Ring LIODN Register, LS */
122 } jrliodnr[4];
123 u8 res2[0x2c];
124 u32 jrstartr; /* Job Ring Start Register */
125 struct {
126 u32 ms; /* RTIC LIODN Register, MS */
127 u32 ls; /* RTIC LIODN Register, LS */
128 } rticliodnr[4];
129 u8 res3[0x1c];
130 u32 decorr; /* DECO Request Register */
131 struct {
132 u32 ms; /* DECO LIODN Register, MS */
133 u32 ls; /* DECO LIODN Register, LS */
Laurentiu Tudor7085d072019-10-18 09:01:55 +0000134 } decoliodnr[16];
Ruchika Guptae24fde92014-09-09 11:50:30 +0530135 u32 dar; /* DECO Avail Register */
136 u32 drr; /* DECO Reset Register */
Ruchika Gupta4345a572014-10-07 15:46:20 +0530137 u8 res5[0x4d8];
138 struct rng4tst rng; /* RNG Registers */
Michael Wallea83fa182020-06-27 22:58:50 +0200139 u8 res6[0x780];
140 struct version_regs vreg; /* version registers since era 10 */
141 u8 res7[0xa0];
Ruchika Guptae24fde92014-09-09 11:50:30 +0530142 u32 crnr_ms; /* CHA Revision Number Register, MS */
143 u32 crnr_ls; /* CHA Revision Number Register, LS */
144 u32 ctpr_ms; /* Compile Time Parameters Register, MS */
145 u32 ctpr_ls; /* Compile Time Parameters Register, LS */
Michael Wallea83fa182020-06-27 22:58:50 +0200146 u8 res8[0x10];
Ruchika Guptae24fde92014-09-09 11:50:30 +0530147 u32 far_ms; /* Fault Address Register, MS */
148 u32 far_ls; /* Fault Address Register, LS */
149 u32 falr; /* Fault Address LIODN Register */
150 u32 fadr; /* Fault Address Detail Register */
Michael Wallea83fa182020-06-27 22:58:50 +0200151 u8 res9[0x4];
Ruchika Guptae24fde92014-09-09 11:50:30 +0530152 u32 csta; /* CAAM Status Register */
Ulises Cardenas2f736a92016-02-02 04:39:39 -0600153 u32 smpart; /* Secure Memory Partition Parameters */
154 u32 smvid; /* Secure Memory Version ID */
Ruchika Guptae24fde92014-09-09 11:50:30 +0530155 u32 rvid; /* Run Time Integrity Checking Version ID Reg.*/
156 u32 ccbvid; /* CHA Cluster Block Version ID Register */
157 u32 chavid_ms; /* CHA Version ID Register, MS */
158 u32 chavid_ls; /* CHA Version ID Register, LS */
159 u32 chanum_ms; /* CHA Number Register, MS */
160 u32 chanum_ls; /* CHA Number Register, LS */
161 u32 secvid_ms; /* SEC Version ID Register, MS */
162 u32 secvid_ls; /* SEC Version ID Register, LS */
Laurentiu Tudor5a6a0f72019-02-26 13:18:32 +0200163#if defined(CONFIG_FSL_LSCH2) || defined(CONFIG_FSL_LSCH3)
Michael Wallea83fa182020-06-27 22:58:50 +0200164 u8 res10[0x6f020];
Laurentiu Tudor5a6a0f72019-02-26 13:18:32 +0200165#else
Michael Wallea83fa182020-06-27 22:58:50 +0200166 u8 res10[0x6020];
Laurentiu Tudor5a6a0f72019-02-26 13:18:32 +0200167#endif
Ruchika Guptae24fde92014-09-09 11:50:30 +0530168 u32 qilcr_ms; /* Queue Interface LIODN CFG Register, MS */
169 u32 qilcr_ls; /* Queue Interface LIODN CFG Register, LS */
Laurentiu Tudor5a6a0f72019-02-26 13:18:32 +0200170#if defined(CONFIG_FSL_LSCH2) || defined(CONFIG_FSL_LSCH3)
Michael Wallea83fa182020-06-27 22:58:50 +0200171 u8 res11[0x8ffd8];
Laurentiu Tudor5a6a0f72019-02-26 13:18:32 +0200172#else
Michael Wallea83fa182020-06-27 22:58:50 +0200173 u8 res11[0x8fd8];
Laurentiu Tudor5a6a0f72019-02-26 13:18:32 +0200174#endif
Ruchika Guptae24fde92014-09-09 11:50:30 +0530175} ccsr_sec_t;
176
177#define SEC_CTPR_MS_AXI_LIODN 0x08000000
178#define SEC_CTPR_MS_QI 0x02000000
179#define SEC_CTPR_MS_VIRT_EN_INCL 0x00000001
180#define SEC_CTPR_MS_VIRT_EN_POR 0x00000002
181#define SEC_RVID_MA 0x0f000000
182#define SEC_CHANUM_MS_JRNUM_MASK 0xf0000000
183#define SEC_CHANUM_MS_JRNUM_SHIFT 28
184#define SEC_CHANUM_MS_DECONUM_MASK 0x0f000000
185#define SEC_CHANUM_MS_DECONUM_SHIFT 24
186#define SEC_SECVID_MS_IPID_MASK 0xffff0000
187#define SEC_SECVID_MS_IPID_SHIFT 16
188#define SEC_SECVID_MS_MAJ_REV_MASK 0x0000ff00
189#define SEC_SECVID_MS_MAJ_REV_SHIFT 8
190#define SEC_CCBVID_ERA_MASK 0xff000000
191#define SEC_CCBVID_ERA_SHIFT 24
192#define SEC_SCFGR_RDBENABLE 0x00000400
193#define SEC_SCFGR_VIRT_EN 0x00008000
194#define SEC_CHAVID_LS_RNG_SHIFT 16
195#define SEC_CHAVID_RNG_LS_MASK 0x000f0000
Ruchika Guptaac1b2692014-10-15 11:35:30 +0530196
Ruchika Guptaac1b2692014-10-15 11:35:30 +0530197struct jr_regs {
Ulises Cardenas2f736a92016-02-02 04:39:39 -0600198#if defined(CONFIG_SYS_FSL_SEC_LE) && \
Aymen Sghaier4da25692021-03-25 17:30:25 +0800199 !(defined(CONFIG_MX6) || defined(CONFIG_MX7) || \
Gaurav Jaindb4dd6a2022-03-24 11:50:33 +0530200 defined(CONFIG_MX7ULP) || defined(CONFIG_IMX8M) || defined(CONFIG_IMX8))
Ruchika Guptaac1b2692014-10-15 11:35:30 +0530201 u32 irba_l;
202 u32 irba_h;
203#else
204 u32 irba_h;
205 u32 irba_l;
206#endif
207 u32 rsvd1;
208 u32 irs;
209 u32 rsvd2;
210 u32 irsa;
211 u32 rsvd3;
212 u32 irja;
Ulises Cardenas2f736a92016-02-02 04:39:39 -0600213#if defined(CONFIG_SYS_FSL_SEC_LE) && \
Aymen Sghaier4da25692021-03-25 17:30:25 +0800214 !(defined(CONFIG_MX6) || defined(CONFIG_MX7) || \
Gaurav Jaindb4dd6a2022-03-24 11:50:33 +0530215 defined(CONFIG_MX7ULP) || defined(CONFIG_IMX8M) || defined(CONFIG_IMX8))
Ruchika Guptaac1b2692014-10-15 11:35:30 +0530216 u32 orba_l;
217 u32 orba_h;
218#else
219 u32 orba_h;
220 u32 orba_l;
221#endif
222 u32 rsvd4;
223 u32 ors;
224 u32 rsvd5;
225 u32 orjr;
226 u32 rsvd6;
227 u32 orsf;
228 u32 rsvd7;
229 u32 jrsta;
230 u32 rsvd8;
231 u32 jrint;
232 u32 jrcfg0;
233 u32 jrcfg1;
234 u32 rsvd9;
235 u32 irri;
236 u32 rsvd10;
237 u32 orwi;
238 u32 rsvd11;
239 u32 jrcr;
240};
241
gaurav ranaef201592015-02-20 12:51:46 +0530242/*
243 * Scatter Gather Entry - Specifies the the Scatter Gather Format
244 * related information
245 */
246struct sg_entry {
Ulises Cardenas2f736a92016-02-02 04:39:39 -0600247#if defined(CONFIG_SYS_FSL_SEC_LE) && \
Aymen Sghaier4da25692021-03-25 17:30:25 +0800248 !(defined(CONFIG_MX6) || defined(CONFIG_MX7) || \
Gaurav Jaindb4dd6a2022-03-24 11:50:33 +0530249 defined(CONFIG_MX7ULP) || defined(CONFIG_IMX8M) || defined(CONFIG_IMX8))
gaurav ranaef201592015-02-20 12:51:46 +0530250 uint32_t addr_lo; /* Memory Address - lo */
Aneesh Bansal43421822015-10-29 22:58:03 +0530251 uint32_t addr_hi; /* Memory Address of start of buffer - hi */
gaurav ranaef201592015-02-20 12:51:46 +0530252#else
Aneesh Bansal43421822015-10-29 22:58:03 +0530253 uint32_t addr_hi; /* Memory Address of start of buffer - hi */
gaurav ranaef201592015-02-20 12:51:46 +0530254 uint32_t addr_lo; /* Memory Address - lo */
255#endif
256
257 uint32_t len_flag; /* Length of the data in the frame */
258#define SG_ENTRY_LENGTH_MASK 0x3FFFFFFF
259#define SG_ENTRY_EXTENSION_BIT 0x80000000
260#define SG_ENTRY_FINAL_BIT 0x40000000
261 uint32_t bpid_offset;
262#define SG_ENTRY_BPID_MASK 0x00FF0000
263#define SG_ENTRY_BPID_SHIFT 16
264#define SG_ENTRY_OFFSET_MASK 0x00001FFF
265#define SG_ENTRY_OFFSET_SHIFT 0
266};
267
Aymen Sghaier4da25692021-03-25 17:30:25 +0800268#if defined(CONFIG_MX6) || defined(CONFIG_MX7) || \
Gaurav Jaindb4dd6a2022-03-24 11:50:33 +0530269 defined(CONFIG_MX7ULP) || defined(CONFIG_IMX8M) || defined(CONFIG_IMX8)
Ulises Cardenas2f736a92016-02-02 04:39:39 -0600270/* Job Ring Base Address */
271#define JR_BASE_ADDR(x) (CONFIG_SYS_FSL_SEC_ADDR + 0x1000 * (x + 1))
272/* Secure Memory Offset varies accross versions */
273#define SM_V1_OFFSET 0x0f4
274#define SM_V2_OFFSET 0xa00
275/*Secure Memory Versioning */
276#define SMVID_V2 0x20105
Aymen Sghaier4d26a2a2021-03-25 17:30:29 +0800277#define SM_VERSION(x) ({typeof(x) _x = x; \
278 _x < SMVID_V2 ? 1 : (_x < 0x20300 ? 2 : 3); })
Ulises Cardenas2f736a92016-02-02 04:39:39 -0600279#define SM_OFFSET(x) (x == 1 ? SM_V1_OFFSET : SM_V2_OFFSET)
Raul Cardenasb5a36d82015-02-27 11:22:06 -0600280/* CAAM Job Ring 0 Registers */
281/* Secure Memory Partition Owner register */
282#define SMCSJR_PO (3 << 6)
283/* JR Allocation Error */
284#define SMCSJR_AERR (3 << 12)
285/* Secure memory partition 0 page 0 owner register */
Ulises Cardenas2f736a92016-02-02 04:39:39 -0600286#define CAAM_SMPO_0 (CONFIG_SYS_FSL_SEC_ADDR + 0x1FBC)
Raul Cardenasb5a36d82015-02-27 11:22:06 -0600287/* Secure memory command register */
Ulises Cardenas2f736a92016-02-02 04:39:39 -0600288#define CAAM_SMCJR(v, jr) (JR_BASE_ADDR(jr) + SM_OFFSET(v) + SM_CMD(v))
Raul Cardenasb5a36d82015-02-27 11:22:06 -0600289/* Secure memory command status register */
Ulises Cardenas2f736a92016-02-02 04:39:39 -0600290#define CAAM_SMCSJR(v, jr) (JR_BASE_ADDR(jr) + SM_OFFSET(v) + SM_STATUS(v))
Raul Cardenasb5a36d82015-02-27 11:22:06 -0600291/* Secure memory access permissions register */
Ulises Cardenas2f736a92016-02-02 04:39:39 -0600292#define CAAM_SMAPJR(v, jr, y) \
293 (JR_BASE_ADDR(jr) + SM_OFFSET(v) + SM_PERM(v) + y * 16)
Raul Cardenasb5a36d82015-02-27 11:22:06 -0600294/* Secure memory access group 2 register */
Ulises Cardenas2f736a92016-02-02 04:39:39 -0600295#define CAAM_SMAG2JR(v, jr, y) \
296 (JR_BASE_ADDR(jr) + SM_OFFSET(v) + SM_GROUP2(v) + y * 16)
Raul Cardenasb5a36d82015-02-27 11:22:06 -0600297/* Secure memory access group 1 register */
Ulises Cardenas2f736a92016-02-02 04:39:39 -0600298#define CAAM_SMAG1JR(v, jr, y) \
299 (JR_BASE_ADDR(jr) + SM_OFFSET(v) + SM_GROUP1(v) + y * 16)
Raul Cardenasb5a36d82015-02-27 11:22:06 -0600300
301/* Commands and macros for secure memory */
Ulises Cardenas2f736a92016-02-02 04:39:39 -0600302#define SM_CMD(v) (v == 1 ? 0x0 : 0x1E4)
303#define SM_STATUS(v) (v == 1 ? 0x8 : 0x1EC)
304#define SM_PERM(v) (v == 1 ? 0x10 : 0x4)
Aymen Sghaier4d26a2a2021-03-25 17:30:29 +0800305#define SM_GROUP2(v) ({typeof(v) _v = v; \
306 _v == 1 ? 0x14 : (_v == 2 ? 0x8 : 0xC); })
307#define SM_GROUP1(v) ({typeof(v) _v = v; \
308 _v == 1 ? 0x18 : (_v == 2 ? 0xC : 0x8); })
Raul Cardenasb5a36d82015-02-27 11:22:06 -0600309#define CMD_PAGE_ALLOC 0x1
310#define CMD_PAGE_DEALLOC 0x2
311#define CMD_PART_DEALLOC 0x3
312#define CMD_INQUIRY 0x5
313#define CMD_COMPLETE (3 << 14)
314#define PAGE_AVAILABLE 0
315#define PAGE_OWNED (3 << 6)
316#define PAGE(x) (x << 16)
317#define PARTITION(x) (x << 8)
318#define PARTITION_OWNER(x) (0x3 << (x*2))
319
320/* Address of secure 4kbyte pages */
321#define SEC_MEM_PAGE0 CAAM_ARB_BASE_ADDR
322#define SEC_MEM_PAGE1 (CAAM_ARB_BASE_ADDR + 0x1000)
323#define SEC_MEM_PAGE2 (CAAM_ARB_BASE_ADDR + 0x2000)
324#define SEC_MEM_PAGE3 (CAAM_ARB_BASE_ADDR + 0x3000)
325
Aymen Sghaier4d26a2a2021-03-25 17:30:29 +0800326#ifdef CONFIG_IMX8M
327#define JR_MID (1) /* Matches ATF configuration */
328#define KS_G1 (0x10000 << JR_MID) /* CAAM only */
329#define PERM (0xB080) /* CSP, SMAP_LCK, SMAG_LCK, G1_BLOB */
330#else
331#define JR_MID (2) /* Matches ROM configuration */
332#define KS_G1 BIT(JR_MID) /* CAAM only */
333#define PERM (0xB008) /* CSP, SMAP_LCK, SMAG_LCK, G1_BLOB */
334#endif /* CONFIG_IMX8M */
Raul Cardenasb5a36d82015-02-27 11:22:06 -0600335
Raul Cardenasb5a36d82015-02-27 11:22:06 -0600336/* HAB WRAPPED KEY header */
337#define WRP_HDR_SIZE 0x08
338#define HDR_TAG 0x81
339#define HDR_PAR 0x41
340/* HAB WRAPPED KEY Data */
341#define HAB_MOD 0x66
342#define HAB_ALG 0x55
343#define HAB_FLG 0x00
344
345/* Partition and Page IDs */
346#define PARTITION_1 1
347#define PAGE_1 1
348
349#define ERROR_IN_PAGE_ALLOC 1
350#define ECONSTRJDESC -1
351
352#endif
353
Breno Limac89287e2021-03-25 17:30:02 +0800354#define FSL_CAAM_MP_PUBK_BYTES 64
355#define FSL_CAAM_MP_PRVK_BYTES 32
356#define FSL_CAAM_MP_MES_DGST_BYTES 32
357
Breno Limac1957d42021-03-25 17:30:21 +0800358#define FSL_CAAM_ORSR_JRa_OFFSET 0x102c
359#define FSL_CAAM_MAX_JR_SIZE 4
360
Raul Cardenasb5a36d82015-02-27 11:22:06 -0600361/* blob_dek:
362 * Encapsulates the src in a secure blob and stores it dst
363 * @src: reference to the plaintext
364 * @dst: reference to the output adrress
365 * @len: size in bytes of src
366 * @return: 0 on success, error otherwise
367 */
368int blob_dek(const u8 *src, u8 *dst, u8 len);
369
Breno Limac89287e2021-03-25 17:30:02 +0800370int gen_mppubk(u8 *dst);
371
372int sign_mppubk(const u8 *m, int data_size, u8 *dgst, u8 *c, u8 *d);
373
York Sun4119aee2016-11-15 18:44:22 -0800374#if defined(CONFIG_ARCH_C29X)
Alex Porosanu7703d1e2016-04-29 15:18:00 +0300375int sec_init_idx(uint8_t);
376#endif
377int sec_init(void);
Michael Walle823674c2020-06-27 22:58:49 +0200378
379u8 caam_get_era(void);
Ruchika Guptae24fde92014-09-09 11:50:30 +0530380#endif
381
382#endif /* __FSL_SEC_H */