blob: 83381a84aae17e9710e09e638ddcc28216ac7ed0 [file] [log] [blame]
Unnati Gandhid42c0212015-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 Kadabi40650962015-08-29 11:13:19 -0700142 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 Srinivasan5bba3de2013-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 Srinivasan5bba3de2013-11-11 18:48:27 -0800330 seg_cfg_val = SEG_CFG_AUTH_ALG_SHA;
Deepa Dinamani0a976552012-11-28 17:01:27 -0800331
Sundarajan Srinivasan5bba3de2013-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 Srinivasanb7e7e942014-01-08 14:08:04 -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;
369
370 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 Srinivasan5bba3de2013-11-11 18:48:27 -0800379 seg_cfg_val = crypto5_get_sha_cfg(ctx_ptr, auth_alg);
Deepa Dinamani0a976552012-11-28 17:01:27 -0800380
Sundarajan Srinivasan5bba3de2013-11-11 18:48:27 -0800381 if (!seg_cfg_val)
382 {
Deepa Dinamani0a976552012-11-28 17:01:27 -0800383 dprintf(CRITICAL, "Authentication alg config failed.\n");
384 return;
Sundarajan Srinivasan5bba3de2013-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 Srinivasanb7e7e942014-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);
392 REG_WRITE_QUEUE(dev, CRYPTO_AUTH_SEG_CFG(dev->base), seg_cfg_val);
Deepa Dinamani0a976552012-11-28 17:01:27 -0800393
Sundarajan Srinivasan5bba3de2013-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 Srinivasan5bba3de2013-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 Srinivasanb7e7e942014-01-08 14:08:04 -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]);
407}
Sundarajan Srinivasanb7e7e942014-01-08 14:08:04 -0800408/* Function: crypto5_set_auth_cfg
409 * Arg : dev, ptr to data buffer, buffer_size, burst_mask for alignment
410 * Return : aligned buffer incase of unaligned data_ptr and total no. of bytes
411 * passed to crypto HW(includes header and trailer size).
412 * Flow : If data buffer is aligned, we just configure the crypto auth
413 * registers for start, size of data etc. If buffer is unaligned
414 * we align it to burst(64-byte) boundary and also make the no. of
415 * bytes a multiple of 64 for bam and then configure the registers
416 * for header/trailer settings.
417 */
Deepa Dinamani0a976552012-11-28 17:01:27 -0800418
Sundarajan Srinivasanb7e7e942014-01-08 14:08:04 -0800419static void crypto5_set_auth_cfg(struct crypto_dev *dev, uint8_t **buffer,
420 uint8_t *data_ptr,
421 uint32_t burst_mask,
422 uint32_t bytes_to_write,
423 uint32_t *total_bytes_to_write)
424{
425 uint32_t minor_ver = 0;
426 uint32_t auth_seg_start = 0;
Deepa Dinamani0a976552012-11-28 17:01:27 -0800427
Sundarajan Srinivasanb7e7e942014-01-08 14:08:04 -0800428 /* Bits 23:16 - minor version */
429 minor_ver = (readl(CRYPTO_VERSION(dev->base)) & 0x00FF0000) >> 16;
430
431 /* A H/W bug on Crypto 5.0.0 enforces a rule that the desc lengths must
432 * be burst aligned. Here we use the header/trailer crypto register settings.
433 * buffer : The previous 64 byte aligned address for data_ptr.
434 * CRYPTO_AUTH_SEG_START : Number of bytes to skip to reach the address data_ptr.
435 * CRYPTO_AUTH_SEG_SIZE : Number of bytes to be sent to crypto HW.
436 * CRYPTO_SEG_SIZE : CRYPTO_AUTH_SEG_START + CRYPTO_AUTH_SEG_SIZE.
437 * Function: We pick a previous 64 byte aligned address buffer, and tell crypto to
438 * skip (data_ptr - buffer) number of bytes.
439 * This bug is fixed in 5.1.0 onwards.*/
440
441 if(minor_ver == 0)
442 {
443 if ((uint32_t) data_ptr & (CRYPTO_BURST_LEN - 1))
444 {
445 dprintf(CRITICAL, "Data start not aligned at burst length.\n");
446
447 *buffer = (uint8_t *)ROUNDDOWN((uint32_t)data_ptr, CRYPTO_BURST_LEN);
448
449 /* Header & Trailer */
450 *total_bytes_to_write = ((bytes_to_write +(data_ptr - *buffer) + burst_mask) & (~burst_mask));
451
452 auth_seg_start = (data_ptr - *buffer);
453 }
454 else
455 {
456 /* No header */
457 /* Add trailer to make it a burst multiple as 5.0.x HW mandates data to be a multiple of 64. */
458 *total_bytes_to_write = (bytes_to_write + burst_mask) & (~burst_mask);
459 }
460 }
461 else
462 {
463 /* No header. 5.1 crypto HW doesnt require alignment as partial reads and writes are possible*/
464 *total_bytes_to_write = bytes_to_write;
465 }
466
467 REG_WRITE_QUEUE(dev, CRYPTO_AUTH_SEG_START(dev->base), auth_seg_start);
468 REG_WRITE_QUEUE(dev, CRYPTO_AUTH_SEG_SIZE(dev->base), bytes_to_write);
469 REG_WRITE_QUEUE(dev, CRYPTO_SEG_SIZE(dev->base), *total_bytes_to_write);
470 REG_WRITE_QUEUE(dev, CRYPTO_GOPROC(dev->base), GOPROC_GO);
Deepa Dinamanibcc62d22013-05-10 14:10:05 -0700471 REG_WRITE_QUEUE_DONE(dev, BAM_DESC_LOCK_FLAG | BAM_DESC_INT_FLAG);
Deepa Dinamanibcc62d22013-05-10 14:10:05 -0700472 REG_WRITE_EXEC(&dev->bam, 1, CRYPTO_WRITE_PIPE_INDEX);
Deepa Dinamani0a976552012-11-28 17:01:27 -0800473}
474
475uint32_t crypto5_send_data(struct crypto_dev *dev,
476 void *ctx_ptr,
477 uint8_t *data_ptr)
478{
479 uint32_t bam_status;
480 crypto_SHA256_ctx *sha256_ctx = (crypto_SHA256_ctx *) ctx_ptr;
481 uint32_t wr_flags = BAM_DESC_NWD_FLAG | BAM_DESC_INT_FLAG | BAM_DESC_EOT_FLAG;
482 uint32_t ret_status;
Sundarajan Srinivasan61d046a2014-01-02 17:26:03 -0800483 uint8_t *buffer = NULL;
Sundarajan Srinivasanb7e7e942014-01-08 14:08:04 -0800484 uint32_t total_bytes_to_write = 0;
Deepa Dinamani0a976552012-11-28 17:01:27 -0800485
Sundarajan Srinivasanb7e7e942014-01-08 14:08:04 -0800486 crypto5_set_auth_cfg(dev, &buffer, data_ptr, CRYPTO_BURST_LEN - 1, sha256_ctx->bytes_to_write,
487 &total_bytes_to_write);
Deepa Dinamani0a976552012-11-28 17:01:27 -0800488
Sundarajan Srinivasan61d046a2014-01-02 17:26:03 -0800489 if(buffer)
490 {
Sundarajan Srinivasanb7e7e942014-01-08 14:08:04 -0800491 arch_clean_invalidate_cache_range((addr_t) buffer, total_bytes_to_write);
Deepa Dinamani0a976552012-11-28 17:01:27 -0800492
Sundarajan Srinivasanb7e7e942014-01-08 14:08:04 -0800493 bam_status = ADD_WRITE_DESC(&dev->bam, buffer, total_bytes_to_write, wr_flags);
Sundarajan Srinivasan61d046a2014-01-02 17:26:03 -0800494 }
495 else
496 {
Sundarajan Srinivasanb7e7e942014-01-08 14:08:04 -0800497 arch_clean_invalidate_cache_range((addr_t) data_ptr, total_bytes_to_write);
498 bam_status = ADD_WRITE_DESC(&dev->bam, data_ptr, total_bytes_to_write, wr_flags);
Sundarajan Srinivasan61d046a2014-01-02 17:26:03 -0800499 }
Deepa Dinamani0a976552012-11-28 17:01:27 -0800500
501 if (bam_status)
502 {
503 dprintf(CRITICAL, "Crypto send data failed\n");
504 ret_status = CRYPTO_ERR_FAIL;
505 goto CRYPTO_SEND_DATA_ERR;
506 }
507
508 arch_clean_invalidate_cache_range((addr_t) (dev->dump), sizeof(struct output_dump));
509
510 bam_status = ADD_READ_DESC(&dev->bam,
511 (unsigned char *)PA((addr_t)(dev->dump)),
512 sizeof(struct output_dump),
513 BAM_DESC_INT_FLAG);
514
515 if (bam_status)
516 {
517 dprintf(CRITICAL, "Crypto send data failed\n");
518 ret_status = CRYPTO_ERR_FAIL;
519 goto CRYPTO_SEND_DATA_ERR;
520 }
521
522 crypto_wait_for_data(&dev->bam, CRYPTO_WRITE_PIPE_INDEX);
523
524 crypto_wait_for_data(&dev->bam, CRYPTO_READ_PIPE_INDEX);
525
526 arch_clean_invalidate_cache_range((addr_t) (dev->dump), sizeof(struct output_dump));
527
528 ret_status = CRYPTO_ERR_NONE;
529
530CRYPTO_SEND_DATA_ERR:
531
Unnati Gandhid42c0212015-06-03 12:03:24 +0530532 crypto5_unlock_pipes(dev);
533
Deepa Dinamani0a976552012-11-28 17:01:27 -0800534 return ret_status;
535}
536
Unnati Gandhid42c0212015-06-03 12:03:24 +0530537void crypto5_unlock_pipes(struct crypto_dev *dev)
538{
539 CLEAR_STATUS(dev);
540}
541
Deepa Dinamani0a976552012-11-28 17:01:27 -0800542void crypto5_cleanup(struct crypto_dev *dev)
543{
544 CLEAR_STATUS(dev);
545
Deepa Dinamania74fc8d2013-07-29 13:10:01 -0700546 /* reset the pipes. */
547 bam_pipe_reset(&(dev->bam), CRYPTO_READ_PIPE_INDEX);
548 bam_pipe_reset(&(dev->bam), CRYPTO_WRITE_PIPE_INDEX);
549
Deepa Dinamani0a976552012-11-28 17:01:27 -0800550 /* Free all related memory. */
551 free(dev->dump);
552 free(dev->ce_array);
553 free(dev->bam.pipe[CRYPTO_READ_PIPE_INDEX].fifo.head);
554 free(dev->bam.pipe[CRYPTO_WRITE_PIPE_INDEX].fifo.head);
555}
556
557uint32_t crypto5_get_digest(struct crypto_dev *dev,
558 uint8_t *digest_ptr,
559 crypto_auth_alg_type auth_alg)
560{
561 uint32_t ce_status = 0;
562 uint32_t ce_status2 = 0;
563 uint32_t ce_err_bmsk = 0;
564 uint32_t i = 0;
565 uint32_t digest_len = 0;
566 uint32_t auth_iv;
567
568 /* Check status register for errors. */
569 ce_err_bmsk = (AXI_ERR | SW_ERR | HSD_ERR);
570 ce_status = BE32(dev->dump->status);
571
572 /* Check status register for errors. */
573 ce_status2 = BE32(dev->dump->status2);
574
575 if ((ce_status & ce_err_bmsk) || (ce_status2 & AXI_EXTRA))
576 {
577 crypto_reset(dev);
578 dprintf(CRITICAL, "crypto_get_digest status error");
579 dprintf(CRITICAL, "status = %x status2 = %x\n", ce_status, ce_status2);
580 return CRYPTO_ERR_FAIL;
581 }
582
583 /* Digest length depends on auth_alg */
584 if (auth_alg == CRYPTO_AUTH_ALG_SHA1)
585 {
586 digest_len = SHA1_INIT_VECTOR_SIZE;
587 }
588 else if (auth_alg == CRYPTO_AUTH_ALG_SHA256)
589 {
590 digest_len = SHA256_INIT_VECTOR_SIZE;
591 }
592
593 /* Retrieve digest from CRYPTO */
594 for (i = 0; i < digest_len; i++)
595 {
596 auth_iv = (dev->dump->auth_iv[i]);
597
598 *((unsigned int *)digest_ptr + i) = auth_iv;
599 }
600
601 return CRYPTO_ERR_NONE;
602}
603
604void crypto5_get_ctx(struct crypto_dev *dev, void *ctx_ptr)
605{
606 ((crypto_SHA1_ctx *) ctx_ptr)->auth_bytecnt[0] = BE32(dev->dump->auth_bytcnt[0]);
607 ((crypto_SHA1_ctx *) ctx_ptr)->auth_bytecnt[1] = BE32(dev->dump->auth_bytcnt[1]);
608}
609
610uint32_t crypto5_get_max_auth_blk_size(struct crypto_dev *dev)
611{
612 return (dev->bam.max_desc_len * (dev->bam.pipe[CRYPTO_WRITE_PIPE_INDEX].fifo.size - 2));
613}