1 /* SPDX-License-Identifier: GPL-2.0 */
2 /* Copyright (C) 2012-2019 ARM Limited (or its affiliates). */
3
4 /* \file cc_driver.h
5 * ARM CryptoCell Linux Crypto Driver
6 */
7
8 #ifndef __CC_DRIVER_H__
9 #define __CC_DRIVER_H__
10
11 #ifdef COMP_IN_WQ
12 #include <linux/workqueue.h>
13 #else
14 #include <linux/interrupt.h>
15 #endif
16 #include <linux/dma-mapping.h>
17 #include <crypto/algapi.h>
18 #include <crypto/internal/skcipher.h>
19 #include <crypto/aes.h>
20 #include <crypto/sha.h>
21 #include <crypto/aead.h>
22 #include <crypto/authenc.h>
23 #include <crypto/hash.h>
24 #include <crypto/skcipher.h>
25 #include <linux/version.h>
26 #include <linux/clk.h>
27 #include <linux/platform_device.h>
28
29 /* Registers definitions from shared/hw/ree_include */
30 #include "cc_host_regs.h"
31 #define CC_DEV_SHA_MAX 512
32 #include "cc_crypto_ctx.h"
33 #include "cc_hw_queue_defs.h"
34 #include "cc_sram_mgr.h"
35
36 extern bool cc_dump_desc;
37 extern bool cc_dump_bytes;
38
39 #define DRV_MODULE_VERSION "5.0"
40
41 enum cc_hw_rev {
42 CC_HW_REV_630 = 630,
43 CC_HW_REV_710 = 710,
44 CC_HW_REV_712 = 712,
45 CC_HW_REV_713 = 713
46 };
47
48 enum cc_std_body {
49 CC_STD_NIST = 0x1,
50 CC_STD_OSCCA = 0x2,
51 CC_STD_ALL = 0x3
52 };
53
54 #define CC_COHERENT_CACHE_PARAMS 0xEEE
55
56 #define CC_PINS_FULL 0x0
57 #define CC_PINS_SLIM 0x9F
58
59 /* Maximum DMA mask supported by IP */
60 #define DMA_BIT_MASK_LEN 48
61
62 #define CC_AXI_IRQ_MASK ((1 << CC_AXIM_CFG_BRESPMASK_BIT_SHIFT) | \
63 (1 << CC_AXIM_CFG_RRESPMASK_BIT_SHIFT) | \
64 (1 << CC_AXIM_CFG_INFLTMASK_BIT_SHIFT) | \
65 (1 << CC_AXIM_CFG_COMPMASK_BIT_SHIFT))
66
67 #define CC_AXI_ERR_IRQ_MASK BIT(CC_HOST_IRR_AXI_ERR_INT_BIT_SHIFT)
68
69 #define CC_COMP_IRQ_MASK BIT(CC_HOST_IRR_AXIM_COMP_INT_BIT_SHIFT)
70
71 #define CC_SECURITY_DISABLED_MASK BIT(CC_SECURITY_DISABLED_VALUE_BIT_SHIFT)
72
73 #define CC_NVM_IS_IDLE_MASK BIT(CC_NVM_IS_IDLE_VALUE_BIT_SHIFT)
74
75 #define AXIM_MON_COMP_VALUE GENMASK(CC_AXIM_MON_COMP_VALUE_BIT_SIZE + \
76 CC_AXIM_MON_COMP_VALUE_BIT_SHIFT, \
77 CC_AXIM_MON_COMP_VALUE_BIT_SHIFT)
78
79 #define CC_CPP_AES_ABORT_MASK ( \
80 BIT(CC_HOST_IMR_REE_OP_ABORTED_AES_0_MASK_BIT_SHIFT) | \
81 BIT(CC_HOST_IMR_REE_OP_ABORTED_AES_1_MASK_BIT_SHIFT) | \
82 BIT(CC_HOST_IMR_REE_OP_ABORTED_AES_2_MASK_BIT_SHIFT) | \
83 BIT(CC_HOST_IMR_REE_OP_ABORTED_AES_3_MASK_BIT_SHIFT) | \
84 BIT(CC_HOST_IMR_REE_OP_ABORTED_AES_4_MASK_BIT_SHIFT) | \
85 BIT(CC_HOST_IMR_REE_OP_ABORTED_AES_5_MASK_BIT_SHIFT) | \
86 BIT(CC_HOST_IMR_REE_OP_ABORTED_AES_6_MASK_BIT_SHIFT) | \
87 BIT(CC_HOST_IMR_REE_OP_ABORTED_AES_7_MASK_BIT_SHIFT))
88
89 #define CC_CPP_SM4_ABORT_MASK ( \
90 BIT(CC_HOST_IMR_REE_OP_ABORTED_SM_0_MASK_BIT_SHIFT) | \
91 BIT(CC_HOST_IMR_REE_OP_ABORTED_SM_1_MASK_BIT_SHIFT) | \
92 BIT(CC_HOST_IMR_REE_OP_ABORTED_SM_2_MASK_BIT_SHIFT) | \
93 BIT(CC_HOST_IMR_REE_OP_ABORTED_SM_3_MASK_BIT_SHIFT) | \
94 BIT(CC_HOST_IMR_REE_OP_ABORTED_SM_4_MASK_BIT_SHIFT) | \
95 BIT(CC_HOST_IMR_REE_OP_ABORTED_SM_5_MASK_BIT_SHIFT) | \
96 BIT(CC_HOST_IMR_REE_OP_ABORTED_SM_6_MASK_BIT_SHIFT) | \
97 BIT(CC_HOST_IMR_REE_OP_ABORTED_SM_7_MASK_BIT_SHIFT))
98
99 /* Register name mangling macro */
100 #define CC_REG(reg_name) CC_ ## reg_name ## _REG_OFFSET
101
102 /* TEE FIPS status interrupt */
103 #define CC_GPR0_IRQ_MASK BIT(CC_HOST_IRR_GPR0_BIT_SHIFT)
104
105 #define CC_CRA_PRIO 400
106
107 #define MIN_HW_QUEUE_SIZE 50 /* Minimum size required for proper function */
108
109 #define MAX_REQUEST_QUEUE_SIZE 4096
110 #define MAX_MLLI_BUFF_SIZE 2080
111
112 /* Definitions for HW descriptors DIN/DOUT fields */
113 #define NS_BIT 1
114 #define AXI_ID 0
115 /* AXI_ID is not actually the AXI ID of the transaction but the value of AXI_ID
116 * field in the HW descriptor. The DMA engine +8 that value.
117 */
118
119 struct cc_cpp_req {
120 bool is_cpp;
121 enum cc_cpp_alg alg;
122 u8 slot;
123 };
124
125 #define CC_MAX_IVGEN_DMA_ADDRESSES 3
126 struct cc_crypto_req {
127 void (*user_cb)(struct device *dev, void *req, int err);
128 void *user_arg;
129 struct completion seq_compl; /* request completion */
130 struct cc_cpp_req cpp;
131 };
132
133 /**
134 * struct cc_drvdata - driver private data context
135 * @cc_base: virt address of the CC registers
136 * @irq: device IRQ number
137 * @irq_mask: Interrupt mask shadow (1 for masked interrupts)
138 */
139 struct cc_drvdata {
140 void __iomem *cc_base;
141 int irq;
142 u32 irq_mask;
143 struct completion hw_queue_avail; /* wait for HW queue availability */
144 struct platform_device *plat_dev;
145 cc_sram_addr_t mlli_sram_addr;
146 void *buff_mgr_handle;
147 void *cipher_handle;
148 void *hash_handle;
149 void *aead_handle;
150 void *request_mgr_handle;
151 void *fips_handle;
152 void *sram_mgr_handle;
153 void *debugfs;
154 struct clk *clk;
155 bool coherent;
156 char *hw_rev_name;
157 enum cc_hw_rev hw_rev;
158 u32 axim_mon_offset;
159 u32 sig_offset;
160 u32 ver_offset;
161 int std_bodies;
162 bool sec_disabled;
163 u32 comp_mask;
164 };
165
166 struct cc_crypto_alg {
167 struct list_head entry;
168 int cipher_mode;
169 int flow_mode; /* Note: currently, refers to the cipher mode only. */
170 int auth_mode;
171 unsigned int data_unit;
172 struct cc_drvdata *drvdata;
173 struct skcipher_alg skcipher_alg;
174 struct aead_alg aead_alg;
175 };
176
177 struct cc_alg_template {
178 char name[CRYPTO_MAX_ALG_NAME];
179 char driver_name[CRYPTO_MAX_ALG_NAME];
180 unsigned int blocksize;
181 union {
182 struct skcipher_alg skcipher;
183 struct aead_alg aead;
184 } template_u;
185 int cipher_mode;
186 int flow_mode; /* Note: currently, refers to the cipher mode only. */
187 int auth_mode;
188 u32 min_hw_rev;
189 enum cc_std_body std_body;
190 bool sec_func;
191 unsigned int data_unit;
192 struct cc_drvdata *drvdata;
193 };
194
195 struct async_gen_req_ctx {
196 dma_addr_t iv_dma_addr;
197 u8 *iv;
198 enum drv_crypto_direction op_type;
199 };
200
drvdata_to_dev(struct cc_drvdata * drvdata)201 static inline struct device *drvdata_to_dev(struct cc_drvdata *drvdata)
202 {
203 return &drvdata->plat_dev->dev;
204 }
205
206 void __dump_byte_array(const char *name, const u8 *buf, size_t len);
dump_byte_array(const char * name,const u8 * the_array,size_t size)207 static inline void dump_byte_array(const char *name, const u8 *the_array,
208 size_t size)
209 {
210 if (cc_dump_bytes)
211 __dump_byte_array(name, the_array, size);
212 }
213
214 bool cc_wait_for_reset_completion(struct cc_drvdata *drvdata);
215 int init_cc_regs(struct cc_drvdata *drvdata, bool is_probe);
216 void fini_cc_regs(struct cc_drvdata *drvdata);
217 int cc_clk_on(struct cc_drvdata *drvdata);
218 void cc_clk_off(struct cc_drvdata *drvdata);
219 unsigned int cc_get_default_hash_len(struct cc_drvdata *drvdata);
220
cc_iowrite(struct cc_drvdata * drvdata,u32 reg,u32 val)221 static inline void cc_iowrite(struct cc_drvdata *drvdata, u32 reg, u32 val)
222 {
223 iowrite32(val, (drvdata->cc_base + reg));
224 }
225
cc_ioread(struct cc_drvdata * drvdata,u32 reg)226 static inline u32 cc_ioread(struct cc_drvdata *drvdata, u32 reg)
227 {
228 return ioread32(drvdata->cc_base + reg);
229 }
230
cc_gfp_flags(struct crypto_async_request * req)231 static inline gfp_t cc_gfp_flags(struct crypto_async_request *req)
232 {
233 return (req->flags & CRYPTO_TFM_REQ_MAY_SLEEP) ?
234 GFP_KERNEL : GFP_ATOMIC;
235 }
236
set_queue_last_ind(struct cc_drvdata * drvdata,struct cc_hw_desc * pdesc)237 static inline void set_queue_last_ind(struct cc_drvdata *drvdata,
238 struct cc_hw_desc *pdesc)
239 {
240 if (drvdata->hw_rev >= CC_HW_REV_712)
241 set_queue_last_ind_bit(pdesc);
242 }
243
244 #endif /*__CC_DRIVER_H__*/
245