blob: 62218818f91a2e047488f417fd1d2e9e9f61ad33 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Stefano Babic83fd8582013-06-28 00:20:21 +02002/*
Ulises Cardenas8df2acd2015-07-02 21:26:30 -05003 * Copyright (C) 2012-2015 Freescale Semiconductor, Inc. All Rights Reserved.
Stefano Babic83fd8582013-06-28 00:20:21 +02004 *
Stefano Babic83fd8582013-06-28 00:20:21 +02005*/
6
7#ifndef __SECURE_MX6Q_H__
8#define __SECURE_MX6Q_H__
9
10#include <linux/types.h>
Bryan O'Donoghue316a0872018-03-09 13:07:19 +000011#include <linux/compiler.h>
Stefano Babic83fd8582013-06-28 00:20:21 +020012
Bryan O'Donoghuea6a54542018-01-12 12:40:02 +000013/*
14 * IVT header definitions
15 * Security Reference Manual for i.MX 7Dual and 7Solo Applications Processors,
16 * Rev. 0, 03/2017
17 * Section : 6.7.1.1
18 */
19#define IVT_HEADER_MAGIC 0xD1
20#define IVT_TOTAL_LENGTH 0x20
Bryan O'Donoghuea6a54542018-01-12 12:40:02 +000021
Bryan O'Donoghue0c7504e2018-03-09 13:07:20 +000022struct __packed ivt_header {
Bryan O'Donoghuea6a54542018-01-12 12:40:02 +000023 uint8_t magic;
24 uint16_t length;
25 uint8_t version;
Bryan O'Donoghue0c7504e2018-03-09 13:07:20 +000026};
Bryan O'Donoghuea6a54542018-01-12 12:40:02 +000027
28struct ivt {
29 struct ivt_header hdr; /* IVT header above */
30 uint32_t entry; /* Absolute address of first instruction */
31 uint32_t reserved1; /* Reserved should be zero */
32 uint32_t dcd; /* Absolute address of the image DCD */
33 uint32_t boot; /* Absolute address of the boot data */
34 uint32_t self; /* Absolute address of the IVT */
35 uint32_t csf; /* Absolute address of the CSF */
36 uint32_t reserved2; /* Reserved should be zero */
37};
38
Utkarsh Gupta2b1f4142018-02-20 01:19:24 +000039struct __packed hab_hdr {
40 u8 tag; /* Tag field */
41 u8 len[2]; /* Length field in bytes (big-endian) */
42 u8 par; /* Parameters field */
43};
44
Stefano Babic83fd8582013-06-28 00:20:21 +020045/* -------- start of HAB API updates ------------*/
46/* The following are taken from HAB4 SIS */
47
48/* Status definitions */
49enum hab_status {
50 HAB_STS_ANY = 0x00,
51 HAB_FAILURE = 0x33,
52 HAB_WARNING = 0x69,
53 HAB_SUCCESS = 0xf0
54};
55
56/* Security Configuration definitions */
57enum hab_config {
Ulises Cardenas8df2acd2015-07-02 21:26:30 -050058 HAB_CFG_RETURN = 0x33, /* < Field Return IC */
59 HAB_CFG_OPEN = 0xf0, /* < Non-secure IC */
60 HAB_CFG_CLOSED = 0xcc /* < Secure IC */
Stefano Babic83fd8582013-06-28 00:20:21 +020061};
62
63/* State definitions */
64enum hab_state {
Ulises Cardenas8df2acd2015-07-02 21:26:30 -050065 HAB_STATE_INITIAL = 0x33, /* Initialising state (transitory) */
66 HAB_STATE_CHECK = 0x55, /* Check state (non-secure) */
67 HAB_STATE_NONSECURE = 0x66, /* Non-secure state */
68 HAB_STATE_TRUSTED = 0x99, /* Trusted state */
69 HAB_STATE_SECURE = 0xaa, /* Secure state */
70 HAB_STATE_FAIL_SOFT = 0xcc, /* Soft fail state */
71 HAB_STATE_FAIL_HARD = 0xff, /* Hard fail state (terminal) */
72 HAB_STATE_NONE = 0xf0, /* No security state machine */
Stefano Babic83fd8582013-06-28 00:20:21 +020073 HAB_STATE_MAX
74};
75
Ulises Cardenas8df2acd2015-07-02 21:26:30 -050076enum hab_reason {
77 HAB_RSN_ANY = 0x00, /* Match any reason */
78 HAB_ENG_FAIL = 0x30, /* Engine failure */
79 HAB_INV_ADDRESS = 0x22, /* Invalid address: access denied */
80 HAB_INV_ASSERTION = 0x0c, /* Invalid assertion */
81 HAB_INV_CALL = 0x28, /* Function called out of sequence */
82 HAB_INV_CERTIFICATE = 0x21, /* Invalid certificate */
83 HAB_INV_COMMAND = 0x06, /* Invalid command: command malformed */
84 HAB_INV_CSF = 0x11, /* Invalid csf */
85 HAB_INV_DCD = 0x27, /* Invalid dcd */
86 HAB_INV_INDEX = 0x0f, /* Invalid index: access denied */
87 HAB_INV_IVT = 0x05, /* Invalid ivt */
88 HAB_INV_KEY = 0x1d, /* Invalid key */
89 HAB_INV_RETURN = 0x1e, /* Failed callback function */
90 HAB_INV_SIGNATURE = 0x18, /* Invalid signature */
91 HAB_INV_SIZE = 0x17, /* Invalid data size */
92 HAB_MEM_FAIL = 0x2e, /* Memory failure */
93 HAB_OVR_COUNT = 0x2b, /* Expired poll count */
94 HAB_OVR_STORAGE = 0x2d, /* Exhausted storage region */
95 HAB_UNS_ALGORITHM = 0x12, /* Unsupported algorithm */
96 HAB_UNS_COMMAND = 0x03, /* Unsupported command */
97 HAB_UNS_ENGINE = 0x0a, /* Unsupported engine */
98 HAB_UNS_ITEM = 0x24, /* Unsupported configuration item */
99 HAB_UNS_KEY = 0x1b, /* Unsupported key type/parameters */
100 HAB_UNS_PROTOCOL = 0x14, /* Unsupported protocol */
101 HAB_UNS_STATE = 0x09, /* Unsuitable state */
102 HAB_RSN_MAX
103};
104
105enum hab_context {
106 HAB_CTX_ANY = 0x00, /* Match any context */
107 HAB_CTX_FAB = 0xff, /* Event logged in hab_fab_test() */
108 HAB_CTX_ENTRY = 0xe1, /* Event logged in hab_rvt.entry() */
109 HAB_CTX_TARGET = 0x33, /* Event logged in hab_rvt.check_target() */
110 HAB_CTX_AUTHENTICATE = 0x0a,/* Logged in hab_rvt.authenticate_image() */
111 HAB_CTX_DCD = 0xdd, /* Event logged in hab_rvt.run_dcd() */
112 HAB_CTX_CSF = 0xcf, /* Event logged in hab_rvt.run_csf() */
113 HAB_CTX_COMMAND = 0xc0, /* Event logged executing csf/dcd command */
114 HAB_CTX_AUT_DAT = 0xdb, /* Authenticated data block */
115 HAB_CTX_ASSERT = 0xa0, /* Event logged in hab_rvt.assert() */
116 HAB_CTX_EXIT = 0xee, /* Event logged in hab_rvt.exit() */
117 HAB_CTX_MAX
118};
119
Bryan O'Donoghued03dcea2018-01-12 12:40:08 +0000120enum hab_target {
121 HAB_TGT_MEMORY = 0x0f,
122 HAB_TGT_PERIPHERAL = 0xf0,
123 HAB_TGT_ANY = 0x55,
124};
125
Adrian Alonsoae1e8532015-10-12 13:48:11 -0500126struct imx_sec_config_fuse_t {
127 int bank;
128 int word;
129};
130
Stefano Babicf8b509b2019-09-20 08:47:53 +0200131#if defined(CONFIG_IMX_HAB)
Adrian Alonsoae1e8532015-10-12 13:48:11 -0500132extern struct imx_sec_config_fuse_t const imx_sec_config_fuse;
133#endif
134
Stefano Babic83fd8582013-06-28 00:20:21 +0200135/*Function prototype description*/
136typedef enum hab_status hab_rvt_report_event_t(enum hab_status, uint32_t,
137 uint8_t* , size_t*);
138typedef enum hab_status hab_rvt_report_status_t(enum hab_config *,
139 enum hab_state *);
140typedef enum hab_status hab_loader_callback_f_t(void**, size_t*, const void*);
141typedef enum hab_status hab_rvt_entry_t(void);
142typedef enum hab_status hab_rvt_exit_t(void);
143typedef void *hab_rvt_authenticate_image_t(uint8_t, ptrdiff_t,
144 void **, size_t *, hab_loader_callback_f_t);
Bryan O'Donoghued03dcea2018-01-12 12:40:08 +0000145typedef enum hab_status hab_rvt_check_target_t(enum hab_target, const void *,
146 size_t);
Bryan O'Donoghue529fd572018-01-12 12:40:17 +0000147typedef void hab_rvt_failsafe_t(void);
Stefano Babic83fd8582013-06-28 00:20:21 +0200148typedef void hapi_clock_init_t(void);
149
Ulises Cardenas8df2acd2015-07-02 21:26:30 -0500150#define HAB_ENG_ANY 0x00 /* Select first compatible engine */
151#define HAB_ENG_SCC 0x03 /* Security controller */
152#define HAB_ENG_RTIC 0x05 /* Run-time integrity checker */
153#define HAB_ENG_SAHARA 0x06 /* Crypto accelerator */
154#define HAB_ENG_CSU 0x0a /* Central Security Unit */
155#define HAB_ENG_SRTC 0x0c /* Secure clock */
156#define HAB_ENG_DCP 0x1b /* Data Co-Processor */
157#define HAB_ENG_CAAM 0x1d /* CAAM */
158#define HAB_ENG_SNVS 0x1e /* Secure Non-Volatile Storage */
159#define HAB_ENG_OCOTP 0x21 /* Fuse controller */
160#define HAB_ENG_DTCP 0x22 /* DTCP co-processor */
161#define HAB_ENG_ROM 0x36 /* Protected ROM area */
162#define HAB_ENG_HDCP 0x24 /* HDCP co-processor */
163#define HAB_ENG_RTL 0x77 /* RTL simulation engine */
164#define HAB_ENG_SW 0xff /* Software engine */
165
Peng Fan4f3cf8f2021-03-25 17:30:07 +0800166#ifdef CONFIG_ARM64
167#define HAB_RVT_BASE 0x00000880
168
169#define HAB_RVT_ENTRY (*(ulong *)(HAB_RVT_BASE + 0x08))
170#define HAB_RVT_EXIT (*(ulong *)(HAB_RVT_BASE + 0x10))
171#define HAB_RVT_CHECK_TARGET (*(ulong *)(HAB_RVT_BASE + 0x18))
172#define HAB_RVT_AUTHENTICATE_IMAGE (*(ulong *)(HAB_RVT_BASE + 0x20))
173#define HAB_RVT_REPORT_EVENT (*(ulong *)(HAB_RVT_BASE + 0x40))
174#define HAB_RVT_REPORT_STATUS (*(ulong *)(HAB_RVT_BASE + 0x48))
175#define HAB_RVT_FAILSAFE (*(ulong *)(HAB_RVT_BASE + 0x50))
176#else
177
Adrian Alonso994d9cf2015-10-12 13:48:09 -0500178#ifdef CONFIG_ROM_UNIFIED_SECTIONS
Nitin Garg416d53f2014-09-30 11:39:29 -0500179#define HAB_RVT_BASE 0x00000100
180#else
Breno Limaf4a72242018-02-20 01:19:26 +0000181#define HAB_RVT_BASE_NEW 0x00000098
182#define HAB_RVT_BASE_OLD 0x00000094
183#define HAB_RVT_BASE ((is_mx6dqp()) ? \
184 HAB_RVT_BASE_NEW : \
185 (is_mx6dq() && (soc_rev() >= CHIP_REV_1_5)) ? \
186 HAB_RVT_BASE_NEW : \
187 (is_mx6sdl() && (soc_rev() >= CHIP_REV_1_2)) ? \
188 HAB_RVT_BASE_NEW : HAB_RVT_BASE_OLD)
Nitin Garg416d53f2014-09-30 11:39:29 -0500189#endif
190
191#define HAB_RVT_ENTRY (*(uint32_t *)(HAB_RVT_BASE + 0x04))
192#define HAB_RVT_EXIT (*(uint32_t *)(HAB_RVT_BASE + 0x08))
Bryan O'Donoghued03dcea2018-01-12 12:40:08 +0000193#define HAB_RVT_CHECK_TARGET (*(uint32_t *)(HAB_RVT_BASE + 0x0C))
Nitin Garg416d53f2014-09-30 11:39:29 -0500194#define HAB_RVT_AUTHENTICATE_IMAGE (*(uint32_t *)(HAB_RVT_BASE + 0x10))
195#define HAB_RVT_REPORT_EVENT (*(uint32_t *)(HAB_RVT_BASE + 0x20))
196#define HAB_RVT_REPORT_STATUS (*(uint32_t *)(HAB_RVT_BASE + 0x24))
Bryan O'Donoghue529fd572018-01-12 12:40:17 +0000197#define HAB_RVT_FAILSAFE (*(uint32_t *)(HAB_RVT_BASE + 0x28))
Stefano Babic14404422014-06-10 10:26:22 +0200198
Peng Fan4f3cf8f2021-03-25 17:30:07 +0800199#endif /*CONFIG_ARM64*/
200
Stefano Babic83fd8582013-06-28 00:20:21 +0200201#define HAB_CID_ROM 0 /**< ROM Caller ID */
202#define HAB_CID_UBOOT 1 /**< UBOOT Caller ID*/
Ulises Cardenas8df2acd2015-07-02 21:26:30 -0500203
Sjoerd Simons27f3fae2019-06-18 23:08:59 +0200204#define HAB_TAG_RVT 0xDD /* ROM Vector Table */
Utkarsh Gupta2b1f4142018-02-20 01:19:24 +0000205#define HAB_CMD_HDR 0xD4 /* CSF Header */
Utkarsh Gupta09af35c2018-02-20 01:19:25 +0000206#define HAB_CMD_WRT_DAT 0xCC /* Write Data command tag */
207#define HAB_CMD_CHK_DAT 0xCF /* Check Data command tag */
208#define HAB_CMD_SET 0xB1 /* Set command tag */
209#define HAB_PAR_MID 0x01 /* MID parameter value */
Utkarsh Gupta2b1f4142018-02-20 01:19:24 +0000210
Bryan O'Donoghuef6bbd372018-01-12 12:39:59 +0000211#define IVT_SIZE 0x20
Bryan O'Donoghue73f9a722018-01-12 12:40:00 +0000212#define CSF_PAD_SIZE 0x2000
Bryan O'Donoghuef6bbd372018-01-12 12:39:59 +0000213
Stefano Babic83fd8582013-06-28 00:20:21 +0200214/* ----------- end of HAB API updates ------------*/
215
Bryan O'Donoghue1efba6a2018-01-12 12:40:13 +0000216int imx_hab_authenticate_image(uint32_t ddr_start, uint32_t image_size,
217 uint32_t ivt_offset);
Bryan O'Donoghue47b3f342018-01-12 12:40:16 +0000218bool imx_hab_is_enabled(void);
Sven Ebenfeldeba5e332016-11-06 16:37:55 +0100219
Stefano Babic83fd8582013-06-28 00:20:21 +0200220#endif