blob: 6f0cc8ffec3855d4c9e947a789c94373b7346dfc [file] [log] [blame]
Unnati Gandhie4bed302015-06-03 12:03:24 +05301/* Copyright (c) 2012-2015, The Linux Foundation. All rights reserved.
Deepa Dinamani0a976552012-11-28 17:01:27 -08002 *
3 * Redistribution and use in source and binary forms, with or without
4 * modification, are permitted provided that the following conditions are
5 * met:
6 * * Redistributions of source code must retain the above copyright
7 * notice, this list of conditions and the following disclaimer.
8 * * Redistributions in binary form must reproduce the above
9 * copyright notice, this list of conditions and the following
10 * disclaimer in the documentation and/or other materials provided
11 * with the distribution.
12 * * Neither the name of The Linux Foundation nor the names of its
13 * contributors may be used to endorse or promote products derived
14 * from this software without specific prior written permission.
15 *
16 * THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED
17 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
18 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT
19 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
20 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
21 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
22 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
23 * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
24 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
25 * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
26 * IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
29#include <reg.h>
30#include <debug.h>
31#include <endian.h>
32#include <stdlib.h>
33#include <arch/ops.h>
34#include <platform.h>
35#include <platform/iomap.h>
36#include <clock.h>
37#include <platform/clock.h>
38#include <crypto5_eng.h>
39
40#define CLEAR_STATUS(dev) crypto_write_reg(&dev->bam, CRYPTO_STATUS(dev->base), 0, BAM_DESC_UNLOCK_FLAG)
41#define CONFIG_WRITE(dev, val) crypto_write_reg(&dev->bam, CRYPTO_CONFIG(dev->base), val, BAM_DESC_LOCK_FLAG)
42#define REG_WRITE(dev, addr, val) crypto_write_reg(&dev->bam, addr, val, 0)
43
Deepa Dinamanibcc62d22013-05-10 14:10:05 -070044#ifndef CRYPTO_REG_ACCESS
45#define CE_INIT(dev) dev->ce_array_index = 0; dev->cd_start = 0
Deepa Dinamani0a976552012-11-28 17:01:27 -080046#define ADD_WRITE_CE(dev, addr, val) crypto_add_cmd_element(dev, addr, val)
Deepa Dinamani0a976552012-11-28 17:01:27 -080047#define ADD_CMD_DESC(dev, flags) crypto_add_cmd_desc(dev, flags)
Deepa Dinamanibcc62d22013-05-10 14:10:05 -070048#define CMD_EXEC(bam, num_desc, pipe) crypto_wait_for_cmd_exec(bam, num_desc, pipe)
49
50#define REG_WRITE_QUEUE_INIT(dev) CE_INIT(dev)
51#define REG_WRITE_QUEUE(dev, addr, val) ADD_WRITE_CE(dev, addr, val)
52#define REG_WRITE_QUEUE_DONE(dev, flags) ADD_CMD_DESC(dev, flags)
53#define REG_WRITE_EXEC(bam, num_desc, pipe) CMD_EXEC(bam, num_desc, pipe)
54#else
55#define REG_WRITE_QUEUE_INIT(dev) /* nop */
56#define REG_WRITE_QUEUE(dev, addr, val) writel(val, addr)
57#define REG_WRITE_QUEUE_DONE(dev, flags) /* nop */
58#define REG_WRITE_EXEC(bam, num_desc, pipe) /* nop */
59#endif
60
Deepa Dinamani0a976552012-11-28 17:01:27 -080061#define ADD_READ_DESC(bam, buf_addr, buf_size, flags) bam_add_desc(bam, CRYPTO_READ_PIPE_INDEX, buf_addr, buf_size, flags)
62#define ADD_WRITE_DESC(bam, buf_addr, buf_size, flags) bam_add_desc(bam, CRYPTO_WRITE_PIPE_INDEX, buf_addr, buf_size, flags)
63
Deepa Dinamani0a976552012-11-28 17:01:27 -080064
65static struct bam_desc *crypto_allocate_fifo(uint32_t size)
66{
67 struct bam_desc *ptr;
68
69 ptr = (struct bam_desc *) memalign(lcm(CACHE_LINE, BAM_DESC_SIZE),
70 ROUNDUP(size * BAM_DESC_SIZE, CACHE_LINE));
71
72 if (ptr == NULL)
73 dprintf(CRITICAL, "Could not allocate fifo buffer\n");
74
75 return ptr;
76}
77
78static struct output_dump *crypto_allocate_dump_buffer(void)
79{
80 struct output_dump *ptr;
81
82 ptr = (struct output_dump *) memalign(lcm(CACHE_LINE, CRYPTO_BURST_LEN),
83 ROUNDUP(sizeof(struct output_dump), CACHE_LINE));
84
85 if (ptr == NULL)
86 dprintf(CRITICAL, "Could not allocate output dump buffer\n");
87
88 return ptr;
89}
90
91static struct cmd_element *crypto_allocate_ce_array(uint32_t size)
92{
Deepa Dinamanibcc62d22013-05-10 14:10:05 -070093 struct cmd_element *ptr = NULL;
Deepa Dinamani0a976552012-11-28 17:01:27 -080094
Deepa Dinamanibcc62d22013-05-10 14:10:05 -070095#ifndef CRYPTO_REG_ACCESS
Deepa Dinamani0a976552012-11-28 17:01:27 -080096 ptr = (struct cmd_element*) memalign(CACHE_LINE,
97 ROUNDUP(size * sizeof(struct cmd_element), CACHE_LINE));
98
99 if (ptr == NULL)
100 dprintf(CRITICAL, "Could not allocate ce array buffer\n");
Deepa Dinamanibcc62d22013-05-10 14:10:05 -0700101#endif
Deepa Dinamani0a976552012-11-28 17:01:27 -0800102
103 return ptr;
104}
105
106static void crypto_wait_for_cmd_exec(struct bam_instance *bam_core,
107 uint32_t num_desc,
108 uint8_t pipe)
109{
110 /* Create a read/write event to notify the periperal of the added desc. */
111 bam_sys_gen_event(bam_core, pipe, num_desc);
112
113 /* Wait for the descriptors to be processed */
114 bam_wait_for_interrupt(bam_core, pipe, P_PRCSD_DESC_EN_MASK);
115
116 /* Read offset update for the circular FIFO */
117 bam_read_offset_update(bam_core, pipe);
118}
119
120static void crypto_wait_for_data(struct bam_instance *bam, uint32_t pipe_num)
121{
122 /* Wait for the descriptors to be processed */
123 bam_wait_for_interrupt(bam, pipe_num, P_PRCSD_DESC_EN_MASK);
124
125 /* Read offset update for the circular FIFO */
126 bam_read_offset_update(bam, pipe_num);
127}
128
129static uint32_t crypto_write_reg(struct bam_instance *bam_core,
130 uint32_t reg_addr,
131 uint32_t val,
132 uint8_t flags)
133{
134 uint32_t ret = 0;
135 struct cmd_element cmd_list_ptr;
136
Deepa Dinamanibcc62d22013-05-10 14:10:05 -0700137#ifdef CRYPTO_REG_ACCESS
138 writel(val, reg_addr);
139#else
Deepa Dinamani0a976552012-11-28 17:01:27 -0800140 ret = (uint32_t)bam_add_cmd_element(&cmd_list_ptr, reg_addr, val, CE_WRITE_TYPE);
141
Channagoud Kadabie2dd5a72015-02-13 20:10:47 -0800142 arch_clean_invalidate_cache_range((addr_t)&cmd_list_ptr, sizeof(struct cmd_element));
143
Deepa Dinamani0a976552012-11-28 17:01:27 -0800144 /* Enqueue the desc for the above command */
145 ret = bam_add_one_desc(bam_core,
146 CRYPTO_WRITE_PIPE_INDEX,
147 (unsigned char*)PA((addr_t)&cmd_list_ptr),
148 BAM_CE_SIZE,
149 BAM_DESC_CMD_FLAG | BAM_DESC_INT_FLAG | flags);
150
151 if (ret)
152 {
153 dprintf(CRITICAL,
154 "CRYPTO_WRITE_REG: Reg write failed. reg addr = %x\n",
155 reg_addr);
156 goto crypto_read_reg_err;
157 }
158
159 crypto_wait_for_cmd_exec(bam_core, 1, CRYPTO_WRITE_PIPE_INDEX);
Deepa Dinamanibcc62d22013-05-10 14:10:05 -0700160#endif
Deepa Dinamani0a976552012-11-28 17:01:27 -0800161
162crypto_read_reg_err:
Deepa Dinamanibcc62d22013-05-10 14:10:05 -0700163 return ret;
Deepa Dinamani0a976552012-11-28 17:01:27 -0800164}
165
166static void crypto_add_cmd_element(struct crypto_dev *dev,
167 uint32_t addr,
168 uint32_t val)
169{
170 struct cmd_element *ptr = dev->ce_array;
171
172 bam_add_cmd_element(&(ptr[dev->ce_array_index]), addr, val, CE_WRITE_TYPE);
173
174 arch_clean_invalidate_cache_range((addr_t) &(ptr[dev->ce_array_index]), sizeof(struct cmd_element));
175
176 dev->ce_array_index++;
177}
178
179static void crypto_add_cmd_desc(struct crypto_dev *dev, uint8_t flags)
180{
181 uint32_t ce_size;
182 uint32_t start = (uint32_t)&(dev->ce_array[dev->cd_start]);
183 uint32_t ret;
184
185 ce_size = (uint32_t)&(dev->ce_array[dev->ce_array_index]) - start;
186
187 ret = bam_add_one_desc(&dev->bam,
188 CRYPTO_WRITE_PIPE_INDEX,
189 (unsigned char*)start,
190 ce_size,
191 BAM_DESC_CMD_FLAG | flags);
192
193 if (ret)
194 {
195 dprintf(CRITICAL, "CRYPTO_ADD_DESC: Adding desc failed\n");
196 }
197
198 /* Update the CD ptr. */
199 dev->cd_start = dev->ce_array_index;
200}
201
202static int crypto_bam_init(struct crypto_dev *dev)
203{
204 uint32_t bam_ret;
205
Deepa Dinamanibcc62d22013-05-10 14:10:05 -0700206 /* Do BAM Init only if required. */
207 if (dev->do_bam_init)
208 bam_init(&dev->bam);
Deepa Dinamani0a976552012-11-28 17:01:27 -0800209
210 /* Initialize BAM CRYPTO read pipe */
211 bam_sys_pipe_init(&dev->bam, CRYPTO_READ_PIPE_INDEX);
212
213 /* Init read fifo */
214 bam_ret = bam_pipe_fifo_init(&dev->bam, CRYPTO_READ_PIPE_INDEX);
215
216 if (bam_ret)
217 {
218 dprintf(CRITICAL, "CRYPTO: BAM Read FIFO init error\n");
219 bam_ret = CRYPTO_ERR_FAIL;
220 goto crypto_bam_init_err;
221 }
222
223 /* Initialize BAM CRYPTO write pipe */
224 bam_sys_pipe_init(&dev->bam, CRYPTO_WRITE_PIPE_INDEX);
225
226 /* Init write fifo. Use the same fifo as read fifo. */
227 bam_ret = bam_pipe_fifo_init(&dev->bam, CRYPTO_WRITE_PIPE_INDEX);
228
229 if (bam_ret)
230 {
231 dprintf(CRITICAL, "CRYPTO: BAM Write FIFO init error\n");
232 bam_ret = CRYPTO_ERR_FAIL;
233 goto crypto_bam_init_err;
234 }
235
236 bam_ret = CRYPTO_ERR_NONE;
237
238crypto_bam_init_err:
239 return bam_ret;
240}
241
242static void crypto_reset(struct crypto_dev *dev)
243{
244 clock_config_ce(dev->instance);
245}
246
247void crypto5_init_params(struct crypto_dev *dev, struct crypto_init_params *params)
248{
249 dev->base = params->crypto_base;
250 dev->instance = params->crypto_instance;
251
Deepa Dinamanibcc62d22013-05-10 14:10:05 -0700252 dev->bam.base = params->bam_base;
253 dev->do_bam_init = params->do_bam_init;
Deepa Dinamani0a976552012-11-28 17:01:27 -0800254
255 /* Set Read pipe params. */
256 dev->bam.pipe[CRYPTO_READ_PIPE_INDEX].pipe_num = params->pipes.read_pipe;
257 /* System consumer */
258 dev->bam.pipe[CRYPTO_READ_PIPE_INDEX].trans_type = BAM2SYS;
259 dev->bam.pipe[CRYPTO_READ_PIPE_INDEX].fifo.size = params->read_fifo_size;
260 dev->bam.pipe[CRYPTO_READ_PIPE_INDEX].fifo.head = crypto_allocate_fifo(params->read_fifo_size);
Deepa Dinamani48637cd2013-07-09 14:04:21 -0700261 dev->bam.pipe[CRYPTO_READ_PIPE_INDEX].lock_grp = params->pipes.read_pipe_grp;
Deepa Dinamani0a976552012-11-28 17:01:27 -0800262
263 /* Set Write pipe params. */
264 dev->bam.pipe[CRYPTO_WRITE_PIPE_INDEX].pipe_num = params->pipes.write_pipe;
265 /* System producer */
266 dev->bam.pipe[CRYPTO_WRITE_PIPE_INDEX].trans_type = SYS2BAM;
267 dev->bam.pipe[CRYPTO_WRITE_PIPE_INDEX].fifo.size = params->write_fifo_size;
268 dev->bam.pipe[CRYPTO_WRITE_PIPE_INDEX].fifo.head = crypto_allocate_fifo(params->write_fifo_size);
Deepa Dinamani48637cd2013-07-09 14:04:21 -0700269 dev->bam.pipe[CRYPTO_WRITE_PIPE_INDEX].lock_grp = params->pipes.write_pipe_grp;
Deepa Dinamani0a976552012-11-28 17:01:27 -0800270
271 dev->bam.threshold = CRYPTO_MAX_THRESHOLD;
272
273 dev->bam.ee = params->bam_ee;
274
275 /* A H/W bug on Crypto 5.0.0 enforces a rule that the desc lengths must be burst aligned. */
276 dev->bam.max_desc_len = ROUNDDOWN(BAM_NDP_MAX_DESC_DATA_LEN, CRYPTO_BURST_LEN);
277
278 dev->dump = crypto_allocate_dump_buffer();
279 dev->ce_array = crypto_allocate_ce_array(params->num_ce);
280 dev->ce_array_index = 0;
281 dev->cd_start = 0;
282}
283
284void crypto5_init(struct crypto_dev *dev)
285{
286 uint32_t config = CRYPTO_RESET_CONFIG
287 | (dev->bam.pipe[CRYPTO_READ_PIPE_INDEX].pipe_num >> 1) << PIPE_SET_SELECT_SHIFT;
288
289 /* Configure CE clocks. */
290 clock_config_ce(dev->instance);
291
292 /* Setup BAM */
293 if (crypto_bam_init(dev) != CRYPTO_ERR_NONE)
294 {
295 dprintf(CRITICAL, "CRYPTO: BAM init error\n");
296 goto crypto_init_err;
297 }
298
299 /* Write basic config to CE.
300 * Note: This setting will be changed to be set from TZ.
301 */
302 writel(config, CRYPTO_CONFIG(dev->base));
303
304 config = 0;
305
306 /* Setup config reg. */
307 /* Mask all irqs. */
308 config |= MASK_ERR_INTR | MASK_OP_DONE_INTR |
309 MASK_DIN_INTR | MASK_DOUT_INTR;
310 /* Program BAM specific crypto settings. */
311 config |= HIGH_SPD_IN_EN_N
312 | ((dev->bam.pipe[CRYPTO_WRITE_PIPE_INDEX].pipe_num >> 1) << PIPE_SET_SELECT_SHIFT)
313 | MAX_QUEUED_REQS
314 | REQ_SIZE;
315 /* Use a few registers in little endian mode. */
316 config |= LITTLE_ENDIAN_MODE;
317
318 CONFIG_WRITE(dev, config);
319
320crypto_init_err:
321 return;
322}
323
324static uint32_t crypto5_get_sha_cfg(void *ctx_ptr, crypto_auth_alg_type auth_alg)
325{
Sundarajan Srinivasan6a2bad22013-11-11 18:48:27 -0800326 crypto_SHA256_ctx *sha256_ctx = (crypto_SHA256_ctx *) ctx_ptr;
327 crypto_SHA1_ctx *sha1_ctx = (crypto_SHA1_ctx *) ctx_ptr;
328 uint32_t seg_cfg_val;
Deepa Dinamani0a976552012-11-28 17:01:27 -0800329
Sundarajan Srinivasan6a2bad22013-11-11 18:48:27 -0800330 seg_cfg_val = SEG_CFG_AUTH_ALG_SHA;
Deepa Dinamani0a976552012-11-28 17:01:27 -0800331
Sundarajan Srinivasan6a2bad22013-11-11 18:48:27 -0800332 if (auth_alg == CRYPTO_AUTH_ALG_SHA1)
333 {
334 seg_cfg_val |= SEG_CFG_AUTH_SIZE_SHA1;
335
336 if (sha1_ctx->flags & CRYPTO_LAST_CHUNK)
337 {
338 seg_cfg_val |= SEG_CFG_LAST;
339 }
340 }
341 else if (auth_alg == CRYPTO_AUTH_ALG_SHA256)
Deepa Dinamani0a976552012-11-28 17:01:27 -0800342 {
343 seg_cfg_val |= SEG_CFG_AUTH_SIZE_SHA256;
344
345 if (sha256_ctx->flags & CRYPTO_LAST_CHUNK)
346 {
347 seg_cfg_val |= SEG_CFG_LAST;
348 }
349 }
350 else
351 {
352 dprintf(CRITICAL, "crypto_set_sha_ctx invalid auth algorithm\n");
353 return 0;
354 }
355
356 return seg_cfg_val;
357}
358
359void crypto5_set_ctx(struct crypto_dev *dev,
360 void *ctx_ptr,
361 crypto_auth_alg_type auth_alg)
362{
Sundarajan Srinivasan6a2bad22013-11-11 18:48:27 -0800363 crypto_SHA256_ctx *sha256_ctx = (crypto_SHA256_ctx *) ctx_ptr;
364 crypto_SHA1_ctx *sha1_ctx = (crypto_SHA1_ctx *) ctx_ptr;
365 uint32_t i = 0;
366 uint32_t iv_len = 0;
367 uint32_t *auth_iv = sha1_ctx->auth_iv;
368 uint32_t seg_cfg_val;
Deepa Dinamani0a976552012-11-28 17:01:27 -0800369
Sundarajan Srinivasan6a2bad22013-11-11 18:48:27 -0800370 if(auth_alg == CRYPTO_AUTH_ALG_SHA1)
371 {
372 iv_len = SHA1_INIT_VECTOR_SIZE;
373 }
374 else if(auth_alg == CRYPTO_AUTH_ALG_SHA256)
375 {
376 iv_len = SHA256_INIT_VECTOR_SIZE;
377 }
Deepa Dinamani0a976552012-11-28 17:01:27 -0800378
Sundarajan Srinivasan6a2bad22013-11-11 18:48:27 -0800379 seg_cfg_val = crypto5_get_sha_cfg(ctx_ptr, auth_alg);
380
381 if (!seg_cfg_val)
382 {
Deepa Dinamani0a976552012-11-28 17:01:27 -0800383 dprintf(CRITICAL, "Authentication alg config failed.\n");
384 return;
Sundarajan Srinivasan6a2bad22013-11-11 18:48:27 -0800385 }
Deepa Dinamani0a976552012-11-28 17:01:27 -0800386
387 /* Initialize CE pointers. */
Deepa Dinamanibcc62d22013-05-10 14:10:05 -0700388 REG_WRITE_QUEUE_INIT(dev);
Deepa Dinamani0a976552012-11-28 17:01:27 -0800389
Sundarajan Srinivasan28616772014-01-08 14:08:04 -0800390 /* For authentication operation set the encryption cfg reg to 0 as per HPG */
391 REG_WRITE_QUEUE(dev, CRYPTO_ENCR_SEG_CFG(dev->base), 0);
Sundarajan Srinivasan6a2bad22013-11-11 18:48:27 -0800392 REG_WRITE_QUEUE(dev, CRYPTO_AUTH_SEG_CFG(dev->base), seg_cfg_val);
Deepa Dinamani0a976552012-11-28 17:01:27 -0800393
Sundarajan Srinivasan6a2bad22013-11-11 18:48:27 -0800394 for (i = 0; i < iv_len; i++)
395 {
Deepa Dinamani0a976552012-11-28 17:01:27 -0800396 if (sha256_ctx->flags & CRYPTO_FIRST_CHUNK)
Deepa Dinamanibcc62d22013-05-10 14:10:05 -0700397 REG_WRITE_QUEUE(dev, CRYPTO_AUTH_IVn(dev->base, i), BE32(*(auth_iv + i)));
Deepa Dinamani0a976552012-11-28 17:01:27 -0800398 else
Deepa Dinamanibcc62d22013-05-10 14:10:05 -0700399 REG_WRITE_QUEUE(dev, CRYPTO_AUTH_IVn(dev->base, i), (*(auth_iv + i)));
Sundarajan Srinivasan6a2bad22013-11-11 18:48:27 -0800400 }
Deepa Dinamani0a976552012-11-28 17:01:27 -0800401
Deepa Dinamani0a976552012-11-28 17:01:27 -0800402 /* Typecast with crypto_SHA1_ctx because offset of auth_bytecnt
403 * in both crypto_SHA1_ctx and crypto_SHA256_ctx are same.
404 */
Sundarajan Srinivasan6a2bad22013-11-11 18:48:27 -0800405 REG_WRITE_QUEUE(dev, CRYPTO_AUTH_BYTECNTn(dev->base, 0), ((crypto_SHA1_ctx *) ctx_ptr)->auth_bytecnt[0]);
406 REG_WRITE_QUEUE(dev, CRYPTO_AUTH_BYTECNTn(dev->base, 1), ((crypto_SHA1_ctx *) ctx_ptr)->auth_bytecnt[1]);
Sundarajan Srinivasan28616772014-01-08 14:08:04 -0800407}
Deepa Dinamani0a976552012-11-28 17:01:27 -0800408
Sundarajan Srinivasan28616772014-01-08 14:08:04 -0800409/* Function: crypto5_set_auth_cfg
410 * Arg : dev, ptr to data buffer, buffer_size, burst_mask for alignment
411 * Return : aligned buffer incase of unaligned data_ptr and total no. of bytes
412 * passed to crypto HW(includes header and trailer size).
413 * Flow : If data buffer is aligned, we just configure the crypto auth
414 * registers for start, size of data etc. If buffer is unaligned
415 * we align it to burst(64-byte) boundary and also make the no. of
416 * bytes a multiple of 64 for bam and then configure the registers
417 * for header/trailer settings.
418 */
Deepa Dinamani0a976552012-11-28 17:01:27 -0800419
Sundarajan Srinivasan28616772014-01-08 14:08:04 -0800420static void crypto5_set_auth_cfg(struct crypto_dev *dev, uint8_t **buffer,
421 uint8_t *data_ptr,
422 uint32_t burst_mask,
423 uint32_t bytes_to_write,
424 uint32_t *total_bytes_to_write)
425{
426 uint32_t minor_ver = 0;
427 uint32_t auth_seg_start = 0;
428
429 /* Bits 23:16 - minor version */
430 minor_ver = (readl(CRYPTO_VERSION(dev->base)) & 0x00FF0000) >> 16;
431
432 /* A H/W bug on Crypto 5.0.0 enforces a rule that the desc lengths must
433 * be burst aligned. Here we use the header/trailer crypto register settings.
434 * buffer : The previous 64 byte aligned address for data_ptr.
435 * CRYPTO_AUTH_SEG_START : Number of bytes to skip to reach the address data_ptr.
436 * CRYPTO_AUTH_SEG_SIZE : Number of bytes to be sent to crypto HW.
437 * CRYPTO_SEG_SIZE : CRYPTO_AUTH_SEG_START + CRYPTO_AUTH_SEG_SIZE.
438 * Function: We pick a previous 64 byte aligned address buffer, and tell crypto to
439 * skip (data_ptr - buffer) number of bytes.
440 * This bug is fixed in 5.1.0 onwards.*/
441
442 if(minor_ver == 0)
443 {
444 if ((uint32_t) data_ptr & (CRYPTO_BURST_LEN - 1))
445 {
446 dprintf(CRITICAL, "Data start not aligned at burst length.\n");
447
448 *buffer = (uint8_t *)ROUNDDOWN((uint32_t)data_ptr, CRYPTO_BURST_LEN);
449
450 /* Header & Trailer */
451 *total_bytes_to_write = ((bytes_to_write +(data_ptr - *buffer) + burst_mask) & (~burst_mask));
452
453 auth_seg_start = (data_ptr - *buffer);
454 }
455 else
456 {
457 /* No header */
458 /* Add trailer to make it a burst multiple as 5.0.x HW mandates data to be a multiple of 64. */
459 *total_bytes_to_write = (bytes_to_write + burst_mask) & (~burst_mask);
460 }
461 }
462 else
463 {
464 /* No header. 5.1 crypto HW doesnt require alignment as partial reads and writes are possible*/
465 *total_bytes_to_write = bytes_to_write;
466 }
467
468 REG_WRITE_QUEUE(dev, CRYPTO_AUTH_SEG_START(dev->base), auth_seg_start);
Sundarajan Srinivasan6a2bad22013-11-11 18:48:27 -0800469 REG_WRITE_QUEUE(dev, CRYPTO_AUTH_SEG_SIZE(dev->base), bytes_to_write);
Sundarajan Srinivasan28616772014-01-08 14:08:04 -0800470 REG_WRITE_QUEUE(dev, CRYPTO_SEG_SIZE(dev->base), *total_bytes_to_write);
Sundarajan Srinivasan6a2bad22013-11-11 18:48:27 -0800471 REG_WRITE_QUEUE(dev, CRYPTO_GOPROC(dev->base), GOPROC_GO);
Deepa Dinamanibcc62d22013-05-10 14:10:05 -0700472 REG_WRITE_QUEUE_DONE(dev, BAM_DESC_LOCK_FLAG | BAM_DESC_INT_FLAG);
Deepa Dinamanibcc62d22013-05-10 14:10:05 -0700473 REG_WRITE_EXEC(&dev->bam, 1, CRYPTO_WRITE_PIPE_INDEX);
Deepa Dinamani0a976552012-11-28 17:01:27 -0800474}
475
476uint32_t crypto5_send_data(struct crypto_dev *dev,
477 void *ctx_ptr,
478 uint8_t *data_ptr)
479{
480 uint32_t bam_status;
481 crypto_SHA256_ctx *sha256_ctx = (crypto_SHA256_ctx *) ctx_ptr;
482 uint32_t wr_flags = BAM_DESC_NWD_FLAG | BAM_DESC_INT_FLAG | BAM_DESC_EOT_FLAG;
483 uint32_t ret_status;
Sundarajan Srinivasan6cb32d32014-01-02 17:26:03 -0800484 uint8_t *buffer = NULL;
Sundarajan Srinivasan28616772014-01-08 14:08:04 -0800485 uint32_t total_bytes_to_write = 0;
Deepa Dinamani0a976552012-11-28 17:01:27 -0800486
Sundarajan Srinivasan28616772014-01-08 14:08:04 -0800487 crypto5_set_auth_cfg(dev, &buffer, data_ptr, CRYPTO_BURST_LEN - 1, sha256_ctx->bytes_to_write,
488 &total_bytes_to_write);
Deepa Dinamani0a976552012-11-28 17:01:27 -0800489
Sundarajan Srinivasan6cb32d32014-01-02 17:26:03 -0800490 if(buffer)
491 {
Sundarajan Srinivasan28616772014-01-08 14:08:04 -0800492 arch_clean_invalidate_cache_range((addr_t) buffer, total_bytes_to_write);
Deepa Dinamani0a976552012-11-28 17:01:27 -0800493
Sundarajan Srinivasan28616772014-01-08 14:08:04 -0800494 bam_status = ADD_WRITE_DESC(&dev->bam, buffer, total_bytes_to_write, wr_flags);
Sundarajan Srinivasan6cb32d32014-01-02 17:26:03 -0800495 }
496 else
497 {
Sundarajan Srinivasan28616772014-01-08 14:08:04 -0800498 arch_clean_invalidate_cache_range((addr_t) data_ptr, total_bytes_to_write);
499 bam_status = ADD_WRITE_DESC(&dev->bam, data_ptr, total_bytes_to_write, wr_flags);
Sundarajan Srinivasan6cb32d32014-01-02 17:26:03 -0800500 }
Deepa Dinamani0a976552012-11-28 17:01:27 -0800501
502 if (bam_status)
503 {
504 dprintf(CRITICAL, "Crypto send data failed\n");
505 ret_status = CRYPTO_ERR_FAIL;
506 goto CRYPTO_SEND_DATA_ERR;
507 }
508
509 arch_clean_invalidate_cache_range((addr_t) (dev->dump), sizeof(struct output_dump));
510
511 bam_status = ADD_READ_DESC(&dev->bam,
512 (unsigned char *)PA((addr_t)(dev->dump)),
513 sizeof(struct output_dump),
514 BAM_DESC_INT_FLAG);
515
516 if (bam_status)
517 {
518 dprintf(CRITICAL, "Crypto send data failed\n");
519 ret_status = CRYPTO_ERR_FAIL;
520 goto CRYPTO_SEND_DATA_ERR;
521 }
522
523 crypto_wait_for_data(&dev->bam, CRYPTO_WRITE_PIPE_INDEX);
524
525 crypto_wait_for_data(&dev->bam, CRYPTO_READ_PIPE_INDEX);
526
527 arch_clean_invalidate_cache_range((addr_t) (dev->dump), sizeof(struct output_dump));
528
529 ret_status = CRYPTO_ERR_NONE;
530
531CRYPTO_SEND_DATA_ERR:
532
Unnati Gandhie4bed302015-06-03 12:03:24 +0530533 crypto5_unlock_pipes(dev);
534
Deepa Dinamani0a976552012-11-28 17:01:27 -0800535 return ret_status;
536}
537
Unnati Gandhie4bed302015-06-03 12:03:24 +0530538void crypto5_unlock_pipes(struct crypto_dev *dev)
539{
540 CLEAR_STATUS(dev);
541}
542
Deepa Dinamani0a976552012-11-28 17:01:27 -0800543void crypto5_cleanup(struct crypto_dev *dev)
544{
545 CLEAR_STATUS(dev);
546
Deepa Dinamania74fc8d2013-07-29 13:10:01 -0700547 /* reset the pipes. */
548 bam_pipe_reset(&(dev->bam), CRYPTO_READ_PIPE_INDEX);
549 bam_pipe_reset(&(dev->bam), CRYPTO_WRITE_PIPE_INDEX);
550
Deepa Dinamani0a976552012-11-28 17:01:27 -0800551 /* Free all related memory. */
552 free(dev->dump);
553 free(dev->ce_array);
554 free(dev->bam.pipe[CRYPTO_READ_PIPE_INDEX].fifo.head);
555 free(dev->bam.pipe[CRYPTO_WRITE_PIPE_INDEX].fifo.head);
556}
557
558uint32_t crypto5_get_digest(struct crypto_dev *dev,
559 uint8_t *digest_ptr,
560 crypto_auth_alg_type auth_alg)
561{
562 uint32_t ce_status = 0;
563 uint32_t ce_status2 = 0;
564 uint32_t ce_err_bmsk = 0;
565 uint32_t i = 0;
566 uint32_t digest_len = 0;
567 uint32_t auth_iv;
568
569 /* Check status register for errors. */
570 ce_err_bmsk = (AXI_ERR | SW_ERR | HSD_ERR);
571 ce_status = BE32(dev->dump->status);
572
573 /* Check status register for errors. */
574 ce_status2 = BE32(dev->dump->status2);
575
576 if ((ce_status & ce_err_bmsk) || (ce_status2 & AXI_EXTRA))
577 {
578 crypto_reset(dev);
579 dprintf(CRITICAL, "crypto_get_digest status error");
580 dprintf(CRITICAL, "status = %x status2 = %x\n", ce_status, ce_status2);
581 return CRYPTO_ERR_FAIL;
582 }
583
584 /* Digest length depends on auth_alg */
585 if (auth_alg == CRYPTO_AUTH_ALG_SHA1)
586 {
587 digest_len = SHA1_INIT_VECTOR_SIZE;
588 }
589 else if (auth_alg == CRYPTO_AUTH_ALG_SHA256)
590 {
591 digest_len = SHA256_INIT_VECTOR_SIZE;
592 }
593
594 /* Retrieve digest from CRYPTO */
595 for (i = 0; i < digest_len; i++)
596 {
597 auth_iv = (dev->dump->auth_iv[i]);
598
599 *((unsigned int *)digest_ptr + i) = auth_iv;
600 }
601
602 return CRYPTO_ERR_NONE;
603}
604
605void crypto5_get_ctx(struct crypto_dev *dev, void *ctx_ptr)
606{
607 ((crypto_SHA1_ctx *) ctx_ptr)->auth_bytecnt[0] = BE32(dev->dump->auth_bytcnt[0]);
608 ((crypto_SHA1_ctx *) ctx_ptr)->auth_bytecnt[1] = BE32(dev->dump->auth_bytcnt[1]);
609}
610
611uint32_t crypto5_get_max_auth_blk_size(struct crypto_dev *dev)
612{
613 return (dev->bam.max_desc_len * (dev->bam.pipe[CRYPTO_WRITE_PIPE_INDEX].fifo.size - 2));
614}