Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 1 | /* |
| 2 | * caam - Freescale FSL CAAM support for ahash functions of crypto API |
| 3 | * |
| 4 | * Copyright 2011 Freescale Semiconductor, Inc. |
| 5 | * |
| 6 | * Based on caamalg.c crypto API driver. |
| 7 | * |
| 8 | * relationship of digest job descriptor or first job descriptor after init to |
| 9 | * shared descriptors: |
| 10 | * |
| 11 | * --------------- --------------- |
| 12 | * | JobDesc #1 |-------------------->| ShareDesc | |
| 13 | * | *(packet 1) | | (hashKey) | |
| 14 | * --------------- | (operation) | |
| 15 | * --------------- |
| 16 | * |
| 17 | * relationship of subsequent job descriptors to shared descriptors: |
| 18 | * |
| 19 | * --------------- --------------- |
| 20 | * | JobDesc #2 |-------------------->| ShareDesc | |
| 21 | * | *(packet 2) | |------------->| (hashKey) | |
| 22 | * --------------- | |-------->| (operation) | |
| 23 | * . | | | (load ctx2) | |
| 24 | * . | | --------------- |
| 25 | * --------------- | | |
| 26 | * | JobDesc #3 |------| | |
| 27 | * | *(packet 3) | | |
| 28 | * --------------- | |
| 29 | * . | |
| 30 | * . | |
| 31 | * --------------- | |
| 32 | * | JobDesc #4 |------------ |
| 33 | * | *(packet 4) | |
| 34 | * --------------- |
| 35 | * |
| 36 | * The SharedDesc never changes for a connection unless rekeyed, but |
| 37 | * each packet will likely be in a different place. So all we need |
| 38 | * to know to process the packet is where the input is, where the |
| 39 | * output goes, and what context we want to process with. Context is |
| 40 | * in the SharedDesc, packet references in the JobDesc. |
| 41 | * |
| 42 | * So, a job desc looks like: |
| 43 | * |
| 44 | * --------------------- |
| 45 | * | Header | |
| 46 | * | ShareDesc Pointer | |
| 47 | * | SEQ_OUT_PTR | |
| 48 | * | (output buffer) | |
| 49 | * | (output length) | |
| 50 | * | SEQ_IN_PTR | |
| 51 | * | (input buffer) | |
| 52 | * | (input length) | |
| 53 | * --------------------- |
| 54 | */ |
| 55 | |
| 56 | #include "compat.h" |
| 57 | |
| 58 | #include "regs.h" |
| 59 | #include "intern.h" |
| 60 | #include "desc_constr.h" |
| 61 | #include "jr.h" |
| 62 | #include "error.h" |
| 63 | #include "sg_sw_sec4.h" |
| 64 | #include "key_gen.h" |
| 65 | |
| 66 | #define CAAM_CRA_PRIORITY 3000 |
| 67 | |
| 68 | /* max hash key is max split key size */ |
| 69 | #define CAAM_MAX_HASH_KEY_SIZE (SHA512_DIGEST_SIZE * 2) |
| 70 | |
| 71 | #define CAAM_MAX_HASH_BLOCK_SIZE SHA512_BLOCK_SIZE |
| 72 | #define CAAM_MAX_HASH_DIGEST_SIZE SHA512_DIGEST_SIZE |
| 73 | |
| 74 | /* length of descriptors text */ |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 75 | #define DESC_AHASH_BASE (4 * CAAM_CMD_SZ) |
| 76 | #define DESC_AHASH_UPDATE_LEN (6 * CAAM_CMD_SZ) |
| 77 | #define DESC_AHASH_UPDATE_FIRST_LEN (DESC_AHASH_BASE + 4 * CAAM_CMD_SZ) |
| 78 | #define DESC_AHASH_FINAL_LEN (DESC_AHASH_BASE + 5 * CAAM_CMD_SZ) |
| 79 | #define DESC_AHASH_FINUP_LEN (DESC_AHASH_BASE + 5 * CAAM_CMD_SZ) |
| 80 | #define DESC_AHASH_DIGEST_LEN (DESC_AHASH_BASE + 4 * CAAM_CMD_SZ) |
| 81 | |
| 82 | #define DESC_HASH_MAX_USED_BYTES (DESC_AHASH_FINAL_LEN + \ |
| 83 | CAAM_MAX_HASH_KEY_SIZE) |
| 84 | #define DESC_HASH_MAX_USED_LEN (DESC_HASH_MAX_USED_BYTES / CAAM_CMD_SZ) |
| 85 | |
| 86 | /* caam context sizes for hashes: running digest + 8 */ |
| 87 | #define HASH_MSG_LEN 8 |
| 88 | #define MAX_CTX_LEN (HASH_MSG_LEN + SHA512_DIGEST_SIZE) |
| 89 | |
| 90 | #ifdef DEBUG |
| 91 | /* for print_hex_dumps with line references */ |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 92 | #define debug(format, arg...) printk(format, arg) |
| 93 | #else |
| 94 | #define debug(format, arg...) |
| 95 | #endif |
| 96 | |
Ruchika Gupta | cfc6f11 | 2013-10-25 12:01:03 +0530 | [diff] [blame] | 97 | |
| 98 | static struct list_head hash_list; |
| 99 | |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 100 | /* ahash per-session context */ |
| 101 | struct caam_hash_ctx { |
| 102 | struct device *jrdev; |
| 103 | u32 sh_desc_update[DESC_HASH_MAX_USED_LEN]; |
| 104 | u32 sh_desc_update_first[DESC_HASH_MAX_USED_LEN]; |
| 105 | u32 sh_desc_fin[DESC_HASH_MAX_USED_LEN]; |
| 106 | u32 sh_desc_digest[DESC_HASH_MAX_USED_LEN]; |
| 107 | u32 sh_desc_finup[DESC_HASH_MAX_USED_LEN]; |
| 108 | dma_addr_t sh_desc_update_dma; |
| 109 | dma_addr_t sh_desc_update_first_dma; |
| 110 | dma_addr_t sh_desc_fin_dma; |
| 111 | dma_addr_t sh_desc_digest_dma; |
| 112 | dma_addr_t sh_desc_finup_dma; |
| 113 | u32 alg_type; |
| 114 | u32 alg_op; |
| 115 | u8 key[CAAM_MAX_HASH_KEY_SIZE]; |
| 116 | dma_addr_t key_dma; |
| 117 | int ctx_len; |
| 118 | unsigned int split_key_len; |
| 119 | unsigned int split_key_pad_len; |
| 120 | }; |
| 121 | |
| 122 | /* ahash state */ |
| 123 | struct caam_hash_state { |
| 124 | dma_addr_t buf_dma; |
| 125 | dma_addr_t ctx_dma; |
| 126 | u8 buf_0[CAAM_MAX_HASH_BLOCK_SIZE] ____cacheline_aligned; |
| 127 | int buflen_0; |
| 128 | u8 buf_1[CAAM_MAX_HASH_BLOCK_SIZE] ____cacheline_aligned; |
| 129 | int buflen_1; |
Victoria Milhoan | e747242 | 2015-08-05 11:28:35 -0700 | [diff] [blame] | 130 | u8 caam_ctx[MAX_CTX_LEN] ____cacheline_aligned; |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 131 | int (*update)(struct ahash_request *req); |
| 132 | int (*final)(struct ahash_request *req); |
| 133 | int (*finup)(struct ahash_request *req); |
| 134 | int current_buf; |
| 135 | }; |
| 136 | |
Russell King | 5ec9083 | 2015-10-18 17:51:25 +0100 | [diff] [blame] | 137 | struct caam_export_state { |
| 138 | u8 buf[CAAM_MAX_HASH_BLOCK_SIZE]; |
| 139 | u8 caam_ctx[MAX_CTX_LEN]; |
| 140 | int buflen; |
| 141 | int (*update)(struct ahash_request *req); |
| 142 | int (*final)(struct ahash_request *req); |
| 143 | int (*finup)(struct ahash_request *req); |
| 144 | }; |
| 145 | |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 146 | /* Common job descriptor seq in/out ptr routines */ |
| 147 | |
| 148 | /* Map state->caam_ctx, and append seq_out_ptr command that points to it */ |
Horia Geanta | ce57208 | 2014-07-11 15:34:49 +0300 | [diff] [blame] | 149 | static inline int map_seq_out_ptr_ctx(u32 *desc, struct device *jrdev, |
| 150 | struct caam_hash_state *state, |
| 151 | int ctx_len) |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 152 | { |
| 153 | state->ctx_dma = dma_map_single(jrdev, state->caam_ctx, |
| 154 | ctx_len, DMA_FROM_DEVICE); |
Horia Geanta | ce57208 | 2014-07-11 15:34:49 +0300 | [diff] [blame] | 155 | if (dma_mapping_error(jrdev, state->ctx_dma)) { |
| 156 | dev_err(jrdev, "unable to map ctx\n"); |
| 157 | return -ENOMEM; |
| 158 | } |
| 159 | |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 160 | append_seq_out_ptr(desc, state->ctx_dma, ctx_len, 0); |
Horia Geanta | ce57208 | 2014-07-11 15:34:49 +0300 | [diff] [blame] | 161 | |
| 162 | return 0; |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 163 | } |
| 164 | |
| 165 | /* Map req->result, and append seq_out_ptr command that points to it */ |
| 166 | static inline dma_addr_t map_seq_out_ptr_result(u32 *desc, struct device *jrdev, |
| 167 | u8 *result, int digestsize) |
| 168 | { |
| 169 | dma_addr_t dst_dma; |
| 170 | |
| 171 | dst_dma = dma_map_single(jrdev, result, digestsize, DMA_FROM_DEVICE); |
| 172 | append_seq_out_ptr(desc, dst_dma, digestsize, 0); |
| 173 | |
| 174 | return dst_dma; |
| 175 | } |
| 176 | |
| 177 | /* Map current buffer in state and put it in link table */ |
| 178 | static inline dma_addr_t buf_map_to_sec4_sg(struct device *jrdev, |
| 179 | struct sec4_sg_entry *sec4_sg, |
| 180 | u8 *buf, int buflen) |
| 181 | { |
| 182 | dma_addr_t buf_dma; |
| 183 | |
| 184 | buf_dma = dma_map_single(jrdev, buf, buflen, DMA_TO_DEVICE); |
| 185 | dma_to_sec4_sg_one(sec4_sg, buf_dma, buflen, 0); |
| 186 | |
| 187 | return buf_dma; |
| 188 | } |
| 189 | |
| 190 | /* Map req->src and put it in link table */ |
| 191 | static inline void src_map_to_sec4_sg(struct device *jrdev, |
| 192 | struct scatterlist *src, int src_nents, |
LABBE Corentin | 13fb8fd | 2015-09-23 13:55:27 +0200 | [diff] [blame] | 193 | struct sec4_sg_entry *sec4_sg) |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 194 | { |
LABBE Corentin | 13fb8fd | 2015-09-23 13:55:27 +0200 | [diff] [blame] | 195 | dma_map_sg(jrdev, src, src_nents, DMA_TO_DEVICE); |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 196 | sg_to_sec4_sg_last(src, src_nents, sec4_sg, 0); |
| 197 | } |
| 198 | |
| 199 | /* |
| 200 | * Only put buffer in link table if it contains data, which is possible, |
| 201 | * since a buffer has previously been used, and needs to be unmapped, |
| 202 | */ |
| 203 | static inline dma_addr_t |
| 204 | try_buf_map_to_sec4_sg(struct device *jrdev, struct sec4_sg_entry *sec4_sg, |
| 205 | u8 *buf, dma_addr_t buf_dma, int buflen, |
| 206 | int last_buflen) |
| 207 | { |
| 208 | if (buf_dma && !dma_mapping_error(jrdev, buf_dma)) |
| 209 | dma_unmap_single(jrdev, buf_dma, last_buflen, DMA_TO_DEVICE); |
| 210 | if (buflen) |
| 211 | buf_dma = buf_map_to_sec4_sg(jrdev, sec4_sg, buf, buflen); |
| 212 | else |
| 213 | buf_dma = 0; |
| 214 | |
| 215 | return buf_dma; |
| 216 | } |
| 217 | |
| 218 | /* Map state->caam_ctx, and add it to link table */ |
Horia Geanta | ce57208 | 2014-07-11 15:34:49 +0300 | [diff] [blame] | 219 | static inline int ctx_map_to_sec4_sg(u32 *desc, struct device *jrdev, |
| 220 | struct caam_hash_state *state, int ctx_len, |
| 221 | struct sec4_sg_entry *sec4_sg, u32 flag) |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 222 | { |
| 223 | state->ctx_dma = dma_map_single(jrdev, state->caam_ctx, ctx_len, flag); |
Horia Geanta | ce57208 | 2014-07-11 15:34:49 +0300 | [diff] [blame] | 224 | if (dma_mapping_error(jrdev, state->ctx_dma)) { |
| 225 | dev_err(jrdev, "unable to map ctx\n"); |
| 226 | return -ENOMEM; |
| 227 | } |
| 228 | |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 229 | dma_to_sec4_sg_one(sec4_sg, state->ctx_dma, ctx_len, 0); |
Horia Geanta | ce57208 | 2014-07-11 15:34:49 +0300 | [diff] [blame] | 230 | |
| 231 | return 0; |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 232 | } |
| 233 | |
| 234 | /* Common shared descriptor commands */ |
| 235 | static inline void append_key_ahash(u32 *desc, struct caam_hash_ctx *ctx) |
| 236 | { |
| 237 | append_key_as_imm(desc, ctx->key, ctx->split_key_pad_len, |
| 238 | ctx->split_key_len, CLASS_2 | |
| 239 | KEY_DEST_MDHA_SPLIT | KEY_ENC); |
| 240 | } |
| 241 | |
| 242 | /* Append key if it has been set */ |
| 243 | static inline void init_sh_desc_key_ahash(u32 *desc, struct caam_hash_ctx *ctx) |
| 244 | { |
| 245 | u32 *key_jump_cmd; |
| 246 | |
Kim Phillips | 61bb86b | 2012-07-13 17:49:28 -0500 | [diff] [blame] | 247 | init_sh_desc(desc, HDR_SHARE_SERIAL); |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 248 | |
| 249 | if (ctx->split_key_len) { |
| 250 | /* Skip if already shared */ |
| 251 | key_jump_cmd = append_jump(desc, JUMP_JSL | JUMP_TEST_ALL | |
| 252 | JUMP_COND_SHRD); |
| 253 | |
| 254 | append_key_ahash(desc, ctx); |
| 255 | |
| 256 | set_jump_tgt_here(desc, key_jump_cmd); |
| 257 | } |
| 258 | |
| 259 | /* Propagate errors from shared to job descriptor */ |
| 260 | append_cmd(desc, SET_OK_NO_PROP_ERRORS | CMD_LOAD); |
| 261 | } |
| 262 | |
| 263 | /* |
| 264 | * For ahash read data from seqin following state->caam_ctx, |
| 265 | * and write resulting class2 context to seqout, which may be state->caam_ctx |
| 266 | * or req->result |
| 267 | */ |
| 268 | static inline void ahash_append_load_str(u32 *desc, int digestsize) |
| 269 | { |
| 270 | /* Calculate remaining bytes to read */ |
| 271 | append_math_add(desc, VARSEQINLEN, SEQINLEN, REG0, CAAM_CMD_SZ); |
| 272 | |
| 273 | /* Read remaining bytes */ |
| 274 | append_seq_fifo_load(desc, 0, FIFOLD_CLASS_CLASS2 | FIFOLD_TYPE_LAST2 | |
| 275 | FIFOLD_TYPE_MSG | KEY_VLF); |
| 276 | |
| 277 | /* Store class2 context bytes */ |
| 278 | append_seq_store(desc, digestsize, LDST_CLASS_2_CCB | |
| 279 | LDST_SRCDST_BYTE_CONTEXT); |
| 280 | } |
| 281 | |
| 282 | /* |
| 283 | * For ahash update, final and finup, import context, read and write to seqout |
| 284 | */ |
| 285 | static inline void ahash_ctx_data_to_out(u32 *desc, u32 op, u32 state, |
| 286 | int digestsize, |
| 287 | struct caam_hash_ctx *ctx) |
| 288 | { |
| 289 | init_sh_desc_key_ahash(desc, ctx); |
| 290 | |
| 291 | /* Import context from software */ |
| 292 | append_cmd(desc, CMD_SEQ_LOAD | LDST_SRCDST_BYTE_CONTEXT | |
| 293 | LDST_CLASS_2_CCB | ctx->ctx_len); |
| 294 | |
| 295 | /* Class 2 operation */ |
| 296 | append_operation(desc, op | state | OP_ALG_ENCRYPT); |
| 297 | |
| 298 | /* |
| 299 | * Load from buf and/or src and write to req->result or state->context |
| 300 | */ |
| 301 | ahash_append_load_str(desc, digestsize); |
| 302 | } |
| 303 | |
| 304 | /* For ahash firsts and digest, read and write to seqout */ |
| 305 | static inline void ahash_data_to_out(u32 *desc, u32 op, u32 state, |
| 306 | int digestsize, struct caam_hash_ctx *ctx) |
| 307 | { |
| 308 | init_sh_desc_key_ahash(desc, ctx); |
| 309 | |
| 310 | /* Class 2 operation */ |
| 311 | append_operation(desc, op | state | OP_ALG_ENCRYPT); |
| 312 | |
| 313 | /* |
| 314 | * Load from buf and/or src and write to req->result or state->context |
| 315 | */ |
| 316 | ahash_append_load_str(desc, digestsize); |
| 317 | } |
| 318 | |
| 319 | static int ahash_set_sh_desc(struct crypto_ahash *ahash) |
| 320 | { |
| 321 | struct caam_hash_ctx *ctx = crypto_ahash_ctx(ahash); |
| 322 | int digestsize = crypto_ahash_digestsize(ahash); |
| 323 | struct device *jrdev = ctx->jrdev; |
| 324 | u32 have_key = 0; |
| 325 | u32 *desc; |
| 326 | |
| 327 | if (ctx->split_key_len) |
| 328 | have_key = OP_ALG_AAI_HMAC_PRECOMP; |
| 329 | |
| 330 | /* ahash_update shared descriptor */ |
| 331 | desc = ctx->sh_desc_update; |
| 332 | |
Kim Phillips | 61bb86b | 2012-07-13 17:49:28 -0500 | [diff] [blame] | 333 | init_sh_desc(desc, HDR_SHARE_SERIAL); |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 334 | |
| 335 | /* Import context from software */ |
| 336 | append_cmd(desc, CMD_SEQ_LOAD | LDST_SRCDST_BYTE_CONTEXT | |
| 337 | LDST_CLASS_2_CCB | ctx->ctx_len); |
| 338 | |
| 339 | /* Class 2 operation */ |
| 340 | append_operation(desc, ctx->alg_type | OP_ALG_AS_UPDATE | |
| 341 | OP_ALG_ENCRYPT); |
| 342 | |
| 343 | /* Load data and write to result or context */ |
| 344 | ahash_append_load_str(desc, ctx->ctx_len); |
| 345 | |
| 346 | ctx->sh_desc_update_dma = dma_map_single(jrdev, desc, desc_bytes(desc), |
| 347 | DMA_TO_DEVICE); |
| 348 | if (dma_mapping_error(jrdev, ctx->sh_desc_update_dma)) { |
| 349 | dev_err(jrdev, "unable to map shared descriptor\n"); |
| 350 | return -ENOMEM; |
| 351 | } |
| 352 | #ifdef DEBUG |
Alex Porosanu | 514df28 | 2013-08-14 18:56:45 +0300 | [diff] [blame] | 353 | print_hex_dump(KERN_ERR, |
| 354 | "ahash update shdesc@"__stringify(__LINE__)": ", |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 355 | DUMP_PREFIX_ADDRESS, 16, 4, desc, desc_bytes(desc), 1); |
| 356 | #endif |
| 357 | |
| 358 | /* ahash_update_first shared descriptor */ |
| 359 | desc = ctx->sh_desc_update_first; |
| 360 | |
| 361 | ahash_data_to_out(desc, have_key | ctx->alg_type, OP_ALG_AS_INIT, |
| 362 | ctx->ctx_len, ctx); |
| 363 | |
| 364 | ctx->sh_desc_update_first_dma = dma_map_single(jrdev, desc, |
| 365 | desc_bytes(desc), |
| 366 | DMA_TO_DEVICE); |
| 367 | if (dma_mapping_error(jrdev, ctx->sh_desc_update_first_dma)) { |
| 368 | dev_err(jrdev, "unable to map shared descriptor\n"); |
| 369 | return -ENOMEM; |
| 370 | } |
| 371 | #ifdef DEBUG |
Alex Porosanu | 514df28 | 2013-08-14 18:56:45 +0300 | [diff] [blame] | 372 | print_hex_dump(KERN_ERR, |
| 373 | "ahash update first shdesc@"__stringify(__LINE__)": ", |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 374 | DUMP_PREFIX_ADDRESS, 16, 4, desc, desc_bytes(desc), 1); |
| 375 | #endif |
| 376 | |
| 377 | /* ahash_final shared descriptor */ |
| 378 | desc = ctx->sh_desc_fin; |
| 379 | |
| 380 | ahash_ctx_data_to_out(desc, have_key | ctx->alg_type, |
| 381 | OP_ALG_AS_FINALIZE, digestsize, ctx); |
| 382 | |
| 383 | ctx->sh_desc_fin_dma = dma_map_single(jrdev, desc, desc_bytes(desc), |
| 384 | DMA_TO_DEVICE); |
| 385 | if (dma_mapping_error(jrdev, ctx->sh_desc_fin_dma)) { |
| 386 | dev_err(jrdev, "unable to map shared descriptor\n"); |
| 387 | return -ENOMEM; |
| 388 | } |
| 389 | #ifdef DEBUG |
Alex Porosanu | 514df28 | 2013-08-14 18:56:45 +0300 | [diff] [blame] | 390 | print_hex_dump(KERN_ERR, "ahash final shdesc@"__stringify(__LINE__)": ", |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 391 | DUMP_PREFIX_ADDRESS, 16, 4, desc, |
| 392 | desc_bytes(desc), 1); |
| 393 | #endif |
| 394 | |
| 395 | /* ahash_finup shared descriptor */ |
| 396 | desc = ctx->sh_desc_finup; |
| 397 | |
| 398 | ahash_ctx_data_to_out(desc, have_key | ctx->alg_type, |
| 399 | OP_ALG_AS_FINALIZE, digestsize, ctx); |
| 400 | |
| 401 | ctx->sh_desc_finup_dma = dma_map_single(jrdev, desc, desc_bytes(desc), |
| 402 | DMA_TO_DEVICE); |
| 403 | if (dma_mapping_error(jrdev, ctx->sh_desc_finup_dma)) { |
| 404 | dev_err(jrdev, "unable to map shared descriptor\n"); |
| 405 | return -ENOMEM; |
| 406 | } |
| 407 | #ifdef DEBUG |
Alex Porosanu | 514df28 | 2013-08-14 18:56:45 +0300 | [diff] [blame] | 408 | print_hex_dump(KERN_ERR, "ahash finup shdesc@"__stringify(__LINE__)": ", |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 409 | DUMP_PREFIX_ADDRESS, 16, 4, desc, |
| 410 | desc_bytes(desc), 1); |
| 411 | #endif |
| 412 | |
| 413 | /* ahash_digest shared descriptor */ |
| 414 | desc = ctx->sh_desc_digest; |
| 415 | |
| 416 | ahash_data_to_out(desc, have_key | ctx->alg_type, OP_ALG_AS_INITFINAL, |
| 417 | digestsize, ctx); |
| 418 | |
| 419 | ctx->sh_desc_digest_dma = dma_map_single(jrdev, desc, |
| 420 | desc_bytes(desc), |
| 421 | DMA_TO_DEVICE); |
| 422 | if (dma_mapping_error(jrdev, ctx->sh_desc_digest_dma)) { |
| 423 | dev_err(jrdev, "unable to map shared descriptor\n"); |
| 424 | return -ENOMEM; |
| 425 | } |
| 426 | #ifdef DEBUG |
Alex Porosanu | 514df28 | 2013-08-14 18:56:45 +0300 | [diff] [blame] | 427 | print_hex_dump(KERN_ERR, |
| 428 | "ahash digest shdesc@"__stringify(__LINE__)": ", |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 429 | DUMP_PREFIX_ADDRESS, 16, 4, desc, |
| 430 | desc_bytes(desc), 1); |
| 431 | #endif |
| 432 | |
| 433 | return 0; |
| 434 | } |
| 435 | |
Kim Phillips | 66b3e88 | 2013-03-26 18:10:14 -0500 | [diff] [blame] | 436 | static int gen_split_hash_key(struct caam_hash_ctx *ctx, const u8 *key_in, |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 437 | u32 keylen) |
| 438 | { |
| 439 | return gen_split_key(ctx->jrdev, ctx->key, ctx->split_key_len, |
| 440 | ctx->split_key_pad_len, key_in, keylen, |
| 441 | ctx->alg_op); |
| 442 | } |
| 443 | |
| 444 | /* Digest hash size if it is too large */ |
Kim Phillips | 66b3e88 | 2013-03-26 18:10:14 -0500 | [diff] [blame] | 445 | static int hash_digest_key(struct caam_hash_ctx *ctx, const u8 *key_in, |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 446 | u32 *keylen, u8 *key_out, u32 digestsize) |
| 447 | { |
| 448 | struct device *jrdev = ctx->jrdev; |
| 449 | u32 *desc; |
| 450 | struct split_key_result result; |
| 451 | dma_addr_t src_dma, dst_dma; |
| 452 | int ret = 0; |
| 453 | |
Vakul Garg | 9c23b7d | 2013-07-10 06:26:13 +0000 | [diff] [blame] | 454 | desc = kmalloc(CAAM_CMD_SZ * 8 + CAAM_PTR_SZ * 2, GFP_KERNEL | GFP_DMA); |
Kim Phillips | 2af8f4a | 2012-09-07 04:17:03 +0800 | [diff] [blame] | 455 | if (!desc) { |
| 456 | dev_err(jrdev, "unable to allocate key input memory\n"); |
| 457 | return -ENOMEM; |
| 458 | } |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 459 | |
| 460 | init_job_desc(desc, 0); |
| 461 | |
| 462 | src_dma = dma_map_single(jrdev, (void *)key_in, *keylen, |
| 463 | DMA_TO_DEVICE); |
| 464 | if (dma_mapping_error(jrdev, src_dma)) { |
| 465 | dev_err(jrdev, "unable to map key input memory\n"); |
| 466 | kfree(desc); |
| 467 | return -ENOMEM; |
| 468 | } |
| 469 | dst_dma = dma_map_single(jrdev, (void *)key_out, digestsize, |
| 470 | DMA_FROM_DEVICE); |
| 471 | if (dma_mapping_error(jrdev, dst_dma)) { |
| 472 | dev_err(jrdev, "unable to map key output memory\n"); |
| 473 | dma_unmap_single(jrdev, src_dma, *keylen, DMA_TO_DEVICE); |
| 474 | kfree(desc); |
| 475 | return -ENOMEM; |
| 476 | } |
| 477 | |
| 478 | /* Job descriptor to perform unkeyed hash on key_in */ |
| 479 | append_operation(desc, ctx->alg_type | OP_ALG_ENCRYPT | |
| 480 | OP_ALG_AS_INITFINAL); |
| 481 | append_seq_in_ptr(desc, src_dma, *keylen, 0); |
| 482 | append_seq_fifo_load(desc, *keylen, FIFOLD_CLASS_CLASS2 | |
| 483 | FIFOLD_TYPE_LAST2 | FIFOLD_TYPE_MSG); |
| 484 | append_seq_out_ptr(desc, dst_dma, digestsize, 0); |
| 485 | append_seq_store(desc, digestsize, LDST_CLASS_2_CCB | |
| 486 | LDST_SRCDST_BYTE_CONTEXT); |
| 487 | |
| 488 | #ifdef DEBUG |
Alex Porosanu | 514df28 | 2013-08-14 18:56:45 +0300 | [diff] [blame] | 489 | print_hex_dump(KERN_ERR, "key_in@"__stringify(__LINE__)": ", |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 490 | DUMP_PREFIX_ADDRESS, 16, 4, key_in, *keylen, 1); |
Alex Porosanu | 514df28 | 2013-08-14 18:56:45 +0300 | [diff] [blame] | 491 | print_hex_dump(KERN_ERR, "jobdesc@"__stringify(__LINE__)": ", |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 492 | DUMP_PREFIX_ADDRESS, 16, 4, desc, desc_bytes(desc), 1); |
| 493 | #endif |
| 494 | |
| 495 | result.err = 0; |
| 496 | init_completion(&result.completion); |
| 497 | |
| 498 | ret = caam_jr_enqueue(jrdev, desc, split_key_done, &result); |
| 499 | if (!ret) { |
| 500 | /* in progress */ |
| 501 | wait_for_completion_interruptible(&result.completion); |
| 502 | ret = result.err; |
| 503 | #ifdef DEBUG |
Alex Porosanu | 514df28 | 2013-08-14 18:56:45 +0300 | [diff] [blame] | 504 | print_hex_dump(KERN_ERR, |
| 505 | "digested key@"__stringify(__LINE__)": ", |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 506 | DUMP_PREFIX_ADDRESS, 16, 4, key_in, |
| 507 | digestsize, 1); |
| 508 | #endif |
| 509 | } |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 510 | dma_unmap_single(jrdev, src_dma, *keylen, DMA_TO_DEVICE); |
| 511 | dma_unmap_single(jrdev, dst_dma, digestsize, DMA_FROM_DEVICE); |
| 512 | |
Horia Geanta | e11aa9f | 2014-07-11 15:34:50 +0300 | [diff] [blame] | 513 | *keylen = digestsize; |
| 514 | |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 515 | kfree(desc); |
| 516 | |
| 517 | return ret; |
| 518 | } |
| 519 | |
| 520 | static int ahash_setkey(struct crypto_ahash *ahash, |
| 521 | const u8 *key, unsigned int keylen) |
| 522 | { |
| 523 | /* Sizes for MDHA pads (*not* keys): MD5, SHA1, 224, 256, 384, 512 */ |
| 524 | static const u8 mdpadlen[] = { 16, 20, 32, 32, 64, 64 }; |
| 525 | struct caam_hash_ctx *ctx = crypto_ahash_ctx(ahash); |
| 526 | struct device *jrdev = ctx->jrdev; |
| 527 | int blocksize = crypto_tfm_alg_blocksize(&ahash->base); |
| 528 | int digestsize = crypto_ahash_digestsize(ahash); |
| 529 | int ret = 0; |
| 530 | u8 *hashed_key = NULL; |
| 531 | |
| 532 | #ifdef DEBUG |
| 533 | printk(KERN_ERR "keylen %d\n", keylen); |
| 534 | #endif |
| 535 | |
| 536 | if (keylen > blocksize) { |
| 537 | hashed_key = kmalloc(sizeof(u8) * digestsize, GFP_KERNEL | |
| 538 | GFP_DMA); |
| 539 | if (!hashed_key) |
| 540 | return -ENOMEM; |
| 541 | ret = hash_digest_key(ctx, key, &keylen, hashed_key, |
| 542 | digestsize); |
| 543 | if (ret) |
| 544 | goto badkey; |
| 545 | key = hashed_key; |
| 546 | } |
| 547 | |
| 548 | /* Pick class 2 key length from algorithm submask */ |
| 549 | ctx->split_key_len = mdpadlen[(ctx->alg_op & OP_ALG_ALGSEL_SUBMASK) >> |
| 550 | OP_ALG_ALGSEL_SHIFT] * 2; |
| 551 | ctx->split_key_pad_len = ALIGN(ctx->split_key_len, 16); |
| 552 | |
| 553 | #ifdef DEBUG |
| 554 | printk(KERN_ERR "split_key_len %d split_key_pad_len %d\n", |
| 555 | ctx->split_key_len, ctx->split_key_pad_len); |
Alex Porosanu | 514df28 | 2013-08-14 18:56:45 +0300 | [diff] [blame] | 556 | print_hex_dump(KERN_ERR, "key in @"__stringify(__LINE__)": ", |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 557 | DUMP_PREFIX_ADDRESS, 16, 4, key, keylen, 1); |
| 558 | #endif |
| 559 | |
| 560 | ret = gen_split_hash_key(ctx, key, keylen); |
| 561 | if (ret) |
| 562 | goto badkey; |
| 563 | |
| 564 | ctx->key_dma = dma_map_single(jrdev, ctx->key, ctx->split_key_pad_len, |
| 565 | DMA_TO_DEVICE); |
| 566 | if (dma_mapping_error(jrdev, ctx->key_dma)) { |
| 567 | dev_err(jrdev, "unable to map key i/o memory\n"); |
Horia Geanta | 3d67be2 | 2014-04-18 13:01:41 +0300 | [diff] [blame] | 568 | ret = -ENOMEM; |
| 569 | goto map_err; |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 570 | } |
| 571 | #ifdef DEBUG |
Alex Porosanu | 514df28 | 2013-08-14 18:56:45 +0300 | [diff] [blame] | 572 | print_hex_dump(KERN_ERR, "ctx.key@"__stringify(__LINE__)": ", |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 573 | DUMP_PREFIX_ADDRESS, 16, 4, ctx->key, |
| 574 | ctx->split_key_pad_len, 1); |
| 575 | #endif |
| 576 | |
| 577 | ret = ahash_set_sh_desc(ahash); |
| 578 | if (ret) { |
| 579 | dma_unmap_single(jrdev, ctx->key_dma, ctx->split_key_pad_len, |
| 580 | DMA_TO_DEVICE); |
| 581 | } |
| 582 | |
Horia Geanta | 3d67be2 | 2014-04-18 13:01:41 +0300 | [diff] [blame] | 583 | map_err: |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 584 | kfree(hashed_key); |
| 585 | return ret; |
| 586 | badkey: |
| 587 | kfree(hashed_key); |
| 588 | crypto_ahash_set_flags(ahash, CRYPTO_TFM_RES_BAD_KEY_LEN); |
| 589 | return -EINVAL; |
| 590 | } |
| 591 | |
| 592 | /* |
| 593 | * ahash_edesc - s/w-extended ahash descriptor |
| 594 | * @dst_dma: physical mapped address of req->result |
| 595 | * @sec4_sg_dma: physical mapped address of h/w link table |
| 596 | * @src_nents: number of segments in input scatterlist |
| 597 | * @sec4_sg_bytes: length of dma mapped sec4_sg space |
| 598 | * @sec4_sg: pointer to h/w link table |
| 599 | * @hw_desc: the h/w job descriptor followed by any referenced link tables |
| 600 | */ |
| 601 | struct ahash_edesc { |
| 602 | dma_addr_t dst_dma; |
| 603 | dma_addr_t sec4_sg_dma; |
| 604 | int src_nents; |
| 605 | int sec4_sg_bytes; |
| 606 | struct sec4_sg_entry *sec4_sg; |
| 607 | u32 hw_desc[0]; |
| 608 | }; |
| 609 | |
| 610 | static inline void ahash_unmap(struct device *dev, |
| 611 | struct ahash_edesc *edesc, |
| 612 | struct ahash_request *req, int dst_len) |
| 613 | { |
| 614 | if (edesc->src_nents) |
LABBE Corentin | 13fb8fd | 2015-09-23 13:55:27 +0200 | [diff] [blame] | 615 | dma_unmap_sg(dev, req->src, edesc->src_nents, DMA_TO_DEVICE); |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 616 | if (edesc->dst_dma) |
| 617 | dma_unmap_single(dev, edesc->dst_dma, dst_len, DMA_FROM_DEVICE); |
| 618 | |
| 619 | if (edesc->sec4_sg_bytes) |
| 620 | dma_unmap_single(dev, edesc->sec4_sg_dma, |
| 621 | edesc->sec4_sg_bytes, DMA_TO_DEVICE); |
| 622 | } |
| 623 | |
| 624 | static inline void ahash_unmap_ctx(struct device *dev, |
| 625 | struct ahash_edesc *edesc, |
| 626 | struct ahash_request *req, int dst_len, u32 flag) |
| 627 | { |
| 628 | struct crypto_ahash *ahash = crypto_ahash_reqtfm(req); |
| 629 | struct caam_hash_ctx *ctx = crypto_ahash_ctx(ahash); |
| 630 | struct caam_hash_state *state = ahash_request_ctx(req); |
| 631 | |
| 632 | if (state->ctx_dma) |
| 633 | dma_unmap_single(dev, state->ctx_dma, ctx->ctx_len, flag); |
| 634 | ahash_unmap(dev, edesc, req, dst_len); |
| 635 | } |
| 636 | |
| 637 | static void ahash_done(struct device *jrdev, u32 *desc, u32 err, |
| 638 | void *context) |
| 639 | { |
| 640 | struct ahash_request *req = context; |
| 641 | struct ahash_edesc *edesc; |
| 642 | struct crypto_ahash *ahash = crypto_ahash_reqtfm(req); |
| 643 | int digestsize = crypto_ahash_digestsize(ahash); |
| 644 | #ifdef DEBUG |
| 645 | struct caam_hash_ctx *ctx = crypto_ahash_ctx(ahash); |
| 646 | struct caam_hash_state *state = ahash_request_ctx(req); |
| 647 | |
| 648 | dev_err(jrdev, "%s %d: err 0x%x\n", __func__, __LINE__, err); |
| 649 | #endif |
| 650 | |
| 651 | edesc = (struct ahash_edesc *)((char *)desc - |
| 652 | offsetof(struct ahash_edesc, hw_desc)); |
Marek Vasut | fa9659c | 2014-04-24 20:05:12 +0200 | [diff] [blame] | 653 | if (err) |
| 654 | caam_jr_strstatus(jrdev, err); |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 655 | |
| 656 | ahash_unmap(jrdev, edesc, req, digestsize); |
| 657 | kfree(edesc); |
| 658 | |
| 659 | #ifdef DEBUG |
Alex Porosanu | 514df28 | 2013-08-14 18:56:45 +0300 | [diff] [blame] | 660 | print_hex_dump(KERN_ERR, "ctx@"__stringify(__LINE__)": ", |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 661 | DUMP_PREFIX_ADDRESS, 16, 4, state->caam_ctx, |
| 662 | ctx->ctx_len, 1); |
| 663 | if (req->result) |
Alex Porosanu | 514df28 | 2013-08-14 18:56:45 +0300 | [diff] [blame] | 664 | print_hex_dump(KERN_ERR, "result@"__stringify(__LINE__)": ", |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 665 | DUMP_PREFIX_ADDRESS, 16, 4, req->result, |
| 666 | digestsize, 1); |
| 667 | #endif |
| 668 | |
| 669 | req->base.complete(&req->base, err); |
| 670 | } |
| 671 | |
| 672 | static void ahash_done_bi(struct device *jrdev, u32 *desc, u32 err, |
| 673 | void *context) |
| 674 | { |
| 675 | struct ahash_request *req = context; |
| 676 | struct ahash_edesc *edesc; |
| 677 | struct crypto_ahash *ahash = crypto_ahash_reqtfm(req); |
| 678 | struct caam_hash_ctx *ctx = crypto_ahash_ctx(ahash); |
| 679 | #ifdef DEBUG |
| 680 | struct caam_hash_state *state = ahash_request_ctx(req); |
| 681 | int digestsize = crypto_ahash_digestsize(ahash); |
| 682 | |
| 683 | dev_err(jrdev, "%s %d: err 0x%x\n", __func__, __LINE__, err); |
| 684 | #endif |
| 685 | |
| 686 | edesc = (struct ahash_edesc *)((char *)desc - |
| 687 | offsetof(struct ahash_edesc, hw_desc)); |
Marek Vasut | fa9659c | 2014-04-24 20:05:12 +0200 | [diff] [blame] | 688 | if (err) |
| 689 | caam_jr_strstatus(jrdev, err); |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 690 | |
| 691 | ahash_unmap_ctx(jrdev, edesc, req, ctx->ctx_len, DMA_BIDIRECTIONAL); |
| 692 | kfree(edesc); |
| 693 | |
| 694 | #ifdef DEBUG |
Alex Porosanu | 514df28 | 2013-08-14 18:56:45 +0300 | [diff] [blame] | 695 | print_hex_dump(KERN_ERR, "ctx@"__stringify(__LINE__)": ", |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 696 | DUMP_PREFIX_ADDRESS, 16, 4, state->caam_ctx, |
| 697 | ctx->ctx_len, 1); |
| 698 | if (req->result) |
Alex Porosanu | 514df28 | 2013-08-14 18:56:45 +0300 | [diff] [blame] | 699 | print_hex_dump(KERN_ERR, "result@"__stringify(__LINE__)": ", |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 700 | DUMP_PREFIX_ADDRESS, 16, 4, req->result, |
| 701 | digestsize, 1); |
| 702 | #endif |
| 703 | |
| 704 | req->base.complete(&req->base, err); |
| 705 | } |
| 706 | |
| 707 | static void ahash_done_ctx_src(struct device *jrdev, u32 *desc, u32 err, |
| 708 | void *context) |
| 709 | { |
| 710 | struct ahash_request *req = context; |
| 711 | struct ahash_edesc *edesc; |
| 712 | struct crypto_ahash *ahash = crypto_ahash_reqtfm(req); |
| 713 | int digestsize = crypto_ahash_digestsize(ahash); |
| 714 | #ifdef DEBUG |
| 715 | struct caam_hash_ctx *ctx = crypto_ahash_ctx(ahash); |
| 716 | struct caam_hash_state *state = ahash_request_ctx(req); |
| 717 | |
| 718 | dev_err(jrdev, "%s %d: err 0x%x\n", __func__, __LINE__, err); |
| 719 | #endif |
| 720 | |
| 721 | edesc = (struct ahash_edesc *)((char *)desc - |
| 722 | offsetof(struct ahash_edesc, hw_desc)); |
Marek Vasut | fa9659c | 2014-04-24 20:05:12 +0200 | [diff] [blame] | 723 | if (err) |
| 724 | caam_jr_strstatus(jrdev, err); |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 725 | |
Horia Geanta | bc9e05f | 2014-07-11 15:34:52 +0300 | [diff] [blame] | 726 | ahash_unmap_ctx(jrdev, edesc, req, digestsize, DMA_TO_DEVICE); |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 727 | kfree(edesc); |
| 728 | |
| 729 | #ifdef DEBUG |
Alex Porosanu | 514df28 | 2013-08-14 18:56:45 +0300 | [diff] [blame] | 730 | print_hex_dump(KERN_ERR, "ctx@"__stringify(__LINE__)": ", |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 731 | DUMP_PREFIX_ADDRESS, 16, 4, state->caam_ctx, |
| 732 | ctx->ctx_len, 1); |
| 733 | if (req->result) |
Alex Porosanu | 514df28 | 2013-08-14 18:56:45 +0300 | [diff] [blame] | 734 | print_hex_dump(KERN_ERR, "result@"__stringify(__LINE__)": ", |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 735 | DUMP_PREFIX_ADDRESS, 16, 4, req->result, |
| 736 | digestsize, 1); |
| 737 | #endif |
| 738 | |
| 739 | req->base.complete(&req->base, err); |
| 740 | } |
| 741 | |
| 742 | static void ahash_done_ctx_dst(struct device *jrdev, u32 *desc, u32 err, |
| 743 | void *context) |
| 744 | { |
| 745 | struct ahash_request *req = context; |
| 746 | struct ahash_edesc *edesc; |
| 747 | struct crypto_ahash *ahash = crypto_ahash_reqtfm(req); |
| 748 | struct caam_hash_ctx *ctx = crypto_ahash_ctx(ahash); |
| 749 | #ifdef DEBUG |
| 750 | struct caam_hash_state *state = ahash_request_ctx(req); |
| 751 | int digestsize = crypto_ahash_digestsize(ahash); |
| 752 | |
| 753 | dev_err(jrdev, "%s %d: err 0x%x\n", __func__, __LINE__, err); |
| 754 | #endif |
| 755 | |
| 756 | edesc = (struct ahash_edesc *)((char *)desc - |
| 757 | offsetof(struct ahash_edesc, hw_desc)); |
Marek Vasut | fa9659c | 2014-04-24 20:05:12 +0200 | [diff] [blame] | 758 | if (err) |
| 759 | caam_jr_strstatus(jrdev, err); |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 760 | |
Horia Geanta | ef62b23 | 2014-07-11 15:34:51 +0300 | [diff] [blame] | 761 | ahash_unmap_ctx(jrdev, edesc, req, ctx->ctx_len, DMA_FROM_DEVICE); |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 762 | kfree(edesc); |
| 763 | |
| 764 | #ifdef DEBUG |
Alex Porosanu | 514df28 | 2013-08-14 18:56:45 +0300 | [diff] [blame] | 765 | print_hex_dump(KERN_ERR, "ctx@"__stringify(__LINE__)": ", |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 766 | DUMP_PREFIX_ADDRESS, 16, 4, state->caam_ctx, |
| 767 | ctx->ctx_len, 1); |
| 768 | if (req->result) |
Alex Porosanu | 514df28 | 2013-08-14 18:56:45 +0300 | [diff] [blame] | 769 | print_hex_dump(KERN_ERR, "result@"__stringify(__LINE__)": ", |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 770 | DUMP_PREFIX_ADDRESS, 16, 4, req->result, |
| 771 | digestsize, 1); |
| 772 | #endif |
| 773 | |
| 774 | req->base.complete(&req->base, err); |
| 775 | } |
| 776 | |
| 777 | /* submit update job descriptor */ |
| 778 | static int ahash_update_ctx(struct ahash_request *req) |
| 779 | { |
| 780 | struct crypto_ahash *ahash = crypto_ahash_reqtfm(req); |
| 781 | struct caam_hash_ctx *ctx = crypto_ahash_ctx(ahash); |
| 782 | struct caam_hash_state *state = ahash_request_ctx(req); |
| 783 | struct device *jrdev = ctx->jrdev; |
| 784 | gfp_t flags = (req->base.flags & (CRYPTO_TFM_REQ_MAY_BACKLOG | |
| 785 | CRYPTO_TFM_REQ_MAY_SLEEP)) ? GFP_KERNEL : GFP_ATOMIC; |
| 786 | u8 *buf = state->current_buf ? state->buf_1 : state->buf_0; |
| 787 | int *buflen = state->current_buf ? &state->buflen_1 : &state->buflen_0; |
| 788 | u8 *next_buf = state->current_buf ? state->buf_0 : state->buf_1; |
| 789 | int *next_buflen = state->current_buf ? &state->buflen_0 : |
| 790 | &state->buflen_1, last_buflen; |
| 791 | int in_len = *buflen + req->nbytes, to_hash; |
| 792 | u32 *sh_desc = ctx->sh_desc_update, *desc; |
| 793 | dma_addr_t ptr = ctx->sh_desc_update_dma; |
| 794 | int src_nents, sec4_sg_bytes, sec4_sg_src_index; |
| 795 | struct ahash_edesc *edesc; |
| 796 | int ret = 0; |
| 797 | int sh_len; |
| 798 | |
| 799 | last_buflen = *next_buflen; |
| 800 | *next_buflen = in_len & (crypto_tfm_alg_blocksize(&ahash->base) - 1); |
| 801 | to_hash = in_len - *next_buflen; |
| 802 | |
| 803 | if (to_hash) { |
LABBE Corentin | 13fb8fd | 2015-09-23 13:55:27 +0200 | [diff] [blame] | 804 | src_nents = sg_nents_for_len(req->src, |
| 805 | req->nbytes - (*next_buflen)); |
LABBE Corentin | f9970c2 | 2015-11-04 21:13:38 +0100 | [diff] [blame] | 806 | if (src_nents < 0) { |
| 807 | dev_err(jrdev, "Invalid number of src SG.\n"); |
| 808 | return src_nents; |
| 809 | } |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 810 | sec4_sg_src_index = 1 + (*buflen ? 1 : 0); |
| 811 | sec4_sg_bytes = (sec4_sg_src_index + src_nents) * |
| 812 | sizeof(struct sec4_sg_entry); |
| 813 | |
| 814 | /* |
| 815 | * allocate space for base edesc and hw desc commands, |
| 816 | * link tables |
| 817 | */ |
Victoria Milhoan | dde20ae | 2015-08-05 11:28:39 -0700 | [diff] [blame] | 818 | edesc = kzalloc(sizeof(*edesc) + DESC_JOB_IO_LEN + |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 819 | sec4_sg_bytes, GFP_DMA | flags); |
| 820 | if (!edesc) { |
| 821 | dev_err(jrdev, |
| 822 | "could not allocate extended descriptor\n"); |
| 823 | return -ENOMEM; |
| 824 | } |
| 825 | |
| 826 | edesc->src_nents = src_nents; |
| 827 | edesc->sec4_sg_bytes = sec4_sg_bytes; |
| 828 | edesc->sec4_sg = (void *)edesc + sizeof(struct ahash_edesc) + |
| 829 | DESC_JOB_IO_LEN; |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 830 | |
Horia Geanta | ce57208 | 2014-07-11 15:34:49 +0300 | [diff] [blame] | 831 | ret = ctx_map_to_sec4_sg(desc, jrdev, state, ctx->ctx_len, |
| 832 | edesc->sec4_sg, DMA_BIDIRECTIONAL); |
| 833 | if (ret) |
| 834 | return ret; |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 835 | |
| 836 | state->buf_dma = try_buf_map_to_sec4_sg(jrdev, |
| 837 | edesc->sec4_sg + 1, |
| 838 | buf, state->buf_dma, |
Russell King | c7556ff | 2015-10-18 17:51:20 +0100 | [diff] [blame] | 839 | *buflen, last_buflen); |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 840 | |
| 841 | if (src_nents) { |
| 842 | src_map_to_sec4_sg(jrdev, req->src, src_nents, |
LABBE Corentin | 13fb8fd | 2015-09-23 13:55:27 +0200 | [diff] [blame] | 843 | edesc->sec4_sg + sec4_sg_src_index); |
Victoria Milhoan | 8af7b0f | 2015-06-15 16:52:57 -0700 | [diff] [blame] | 844 | if (*next_buflen) |
Cristian Stoica | 307fd543 | 2014-08-14 13:51:56 +0300 | [diff] [blame] | 845 | scatterwalk_map_and_copy(next_buf, req->src, |
| 846 | to_hash - *buflen, |
| 847 | *next_buflen, 0); |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 848 | } else { |
| 849 | (edesc->sec4_sg + sec4_sg_src_index - 1)->len |= |
Horia Geantă | 261ea05 | 2016-05-19 18:11:26 +0300 | [diff] [blame] | 850 | cpu_to_caam32(SEC4_SG_LEN_FIN); |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 851 | } |
| 852 | |
Victoria Milhoan | 8af7b0f | 2015-06-15 16:52:57 -0700 | [diff] [blame] | 853 | state->current_buf = !state->current_buf; |
| 854 | |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 855 | sh_len = desc_len(sh_desc); |
| 856 | desc = edesc->hw_desc; |
| 857 | init_job_desc_shared(desc, ptr, sh_len, HDR_SHARE_DEFER | |
| 858 | HDR_REVERSE); |
| 859 | |
Ruchika Gupta | 1da2be3 | 2014-06-23 19:50:26 +0530 | [diff] [blame] | 860 | edesc->sec4_sg_dma = dma_map_single(jrdev, edesc->sec4_sg, |
| 861 | sec4_sg_bytes, |
| 862 | DMA_TO_DEVICE); |
Horia Geanta | ce57208 | 2014-07-11 15:34:49 +0300 | [diff] [blame] | 863 | if (dma_mapping_error(jrdev, edesc->sec4_sg_dma)) { |
| 864 | dev_err(jrdev, "unable to map S/G table\n"); |
| 865 | return -ENOMEM; |
| 866 | } |
Ruchika Gupta | 1da2be3 | 2014-06-23 19:50:26 +0530 | [diff] [blame] | 867 | |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 868 | append_seq_in_ptr(desc, edesc->sec4_sg_dma, ctx->ctx_len + |
| 869 | to_hash, LDST_SGF); |
| 870 | |
| 871 | append_seq_out_ptr(desc, state->ctx_dma, ctx->ctx_len, 0); |
| 872 | |
| 873 | #ifdef DEBUG |
Alex Porosanu | 514df28 | 2013-08-14 18:56:45 +0300 | [diff] [blame] | 874 | print_hex_dump(KERN_ERR, "jobdesc@"__stringify(__LINE__)": ", |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 875 | DUMP_PREFIX_ADDRESS, 16, 4, desc, |
| 876 | desc_bytes(desc), 1); |
| 877 | #endif |
| 878 | |
| 879 | ret = caam_jr_enqueue(jrdev, desc, ahash_done_bi, req); |
| 880 | if (!ret) { |
| 881 | ret = -EINPROGRESS; |
| 882 | } else { |
| 883 | ahash_unmap_ctx(jrdev, edesc, req, ctx->ctx_len, |
| 884 | DMA_BIDIRECTIONAL); |
| 885 | kfree(edesc); |
| 886 | } |
| 887 | } else if (*next_buflen) { |
Cristian Stoica | 307fd543 | 2014-08-14 13:51:56 +0300 | [diff] [blame] | 888 | scatterwalk_map_and_copy(buf + *buflen, req->src, 0, |
| 889 | req->nbytes, 0); |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 890 | *buflen = *next_buflen; |
| 891 | *next_buflen = last_buflen; |
| 892 | } |
| 893 | #ifdef DEBUG |
Alex Porosanu | 514df28 | 2013-08-14 18:56:45 +0300 | [diff] [blame] | 894 | print_hex_dump(KERN_ERR, "buf@"__stringify(__LINE__)": ", |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 895 | DUMP_PREFIX_ADDRESS, 16, 4, buf, *buflen, 1); |
Alex Porosanu | 514df28 | 2013-08-14 18:56:45 +0300 | [diff] [blame] | 896 | print_hex_dump(KERN_ERR, "next buf@"__stringify(__LINE__)": ", |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 897 | DUMP_PREFIX_ADDRESS, 16, 4, next_buf, |
| 898 | *next_buflen, 1); |
| 899 | #endif |
| 900 | |
| 901 | return ret; |
| 902 | } |
| 903 | |
| 904 | static int ahash_final_ctx(struct ahash_request *req) |
| 905 | { |
| 906 | struct crypto_ahash *ahash = crypto_ahash_reqtfm(req); |
| 907 | struct caam_hash_ctx *ctx = crypto_ahash_ctx(ahash); |
| 908 | struct caam_hash_state *state = ahash_request_ctx(req); |
| 909 | struct device *jrdev = ctx->jrdev; |
| 910 | gfp_t flags = (req->base.flags & (CRYPTO_TFM_REQ_MAY_BACKLOG | |
| 911 | CRYPTO_TFM_REQ_MAY_SLEEP)) ? GFP_KERNEL : GFP_ATOMIC; |
| 912 | u8 *buf = state->current_buf ? state->buf_1 : state->buf_0; |
| 913 | int buflen = state->current_buf ? state->buflen_1 : state->buflen_0; |
| 914 | int last_buflen = state->current_buf ? state->buflen_0 : |
| 915 | state->buflen_1; |
| 916 | u32 *sh_desc = ctx->sh_desc_fin, *desc; |
| 917 | dma_addr_t ptr = ctx->sh_desc_fin_dma; |
Horia Geant? | b310c17 | 2015-08-11 20:19:20 +0300 | [diff] [blame] | 918 | int sec4_sg_bytes, sec4_sg_src_index; |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 919 | int digestsize = crypto_ahash_digestsize(ahash); |
| 920 | struct ahash_edesc *edesc; |
| 921 | int ret = 0; |
| 922 | int sh_len; |
| 923 | |
Horia Geant? | b310c17 | 2015-08-11 20:19:20 +0300 | [diff] [blame] | 924 | sec4_sg_src_index = 1 + (buflen ? 1 : 0); |
| 925 | sec4_sg_bytes = sec4_sg_src_index * sizeof(struct sec4_sg_entry); |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 926 | |
| 927 | /* allocate space for base edesc and hw desc commands, link tables */ |
Victoria Milhoan | dde20ae | 2015-08-05 11:28:39 -0700 | [diff] [blame] | 928 | edesc = kzalloc(sizeof(*edesc) + DESC_JOB_IO_LEN + sec4_sg_bytes, |
| 929 | GFP_DMA | flags); |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 930 | if (!edesc) { |
| 931 | dev_err(jrdev, "could not allocate extended descriptor\n"); |
| 932 | return -ENOMEM; |
| 933 | } |
| 934 | |
| 935 | sh_len = desc_len(sh_desc); |
| 936 | desc = edesc->hw_desc; |
| 937 | init_job_desc_shared(desc, ptr, sh_len, HDR_SHARE_DEFER | HDR_REVERSE); |
| 938 | |
| 939 | edesc->sec4_sg_bytes = sec4_sg_bytes; |
| 940 | edesc->sec4_sg = (void *)edesc + sizeof(struct ahash_edesc) + |
| 941 | DESC_JOB_IO_LEN; |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 942 | edesc->src_nents = 0; |
| 943 | |
Horia Geanta | ce57208 | 2014-07-11 15:34:49 +0300 | [diff] [blame] | 944 | ret = ctx_map_to_sec4_sg(desc, jrdev, state, ctx->ctx_len, |
| 945 | edesc->sec4_sg, DMA_TO_DEVICE); |
| 946 | if (ret) |
| 947 | return ret; |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 948 | |
| 949 | state->buf_dma = try_buf_map_to_sec4_sg(jrdev, edesc->sec4_sg + 1, |
| 950 | buf, state->buf_dma, buflen, |
| 951 | last_buflen); |
Horia Geantă | 261ea05 | 2016-05-19 18:11:26 +0300 | [diff] [blame] | 952 | (edesc->sec4_sg + sec4_sg_src_index - 1)->len |= |
| 953 | cpu_to_caam32(SEC4_SG_LEN_FIN); |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 954 | |
Ruchika Gupta | 1da2be3 | 2014-06-23 19:50:26 +0530 | [diff] [blame] | 955 | edesc->sec4_sg_dma = dma_map_single(jrdev, edesc->sec4_sg, |
| 956 | sec4_sg_bytes, DMA_TO_DEVICE); |
Horia Geanta | ce57208 | 2014-07-11 15:34:49 +0300 | [diff] [blame] | 957 | if (dma_mapping_error(jrdev, edesc->sec4_sg_dma)) { |
| 958 | dev_err(jrdev, "unable to map S/G table\n"); |
| 959 | return -ENOMEM; |
| 960 | } |
Ruchika Gupta | 1da2be3 | 2014-06-23 19:50:26 +0530 | [diff] [blame] | 961 | |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 962 | append_seq_in_ptr(desc, edesc->sec4_sg_dma, ctx->ctx_len + buflen, |
| 963 | LDST_SGF); |
| 964 | |
| 965 | edesc->dst_dma = map_seq_out_ptr_result(desc, jrdev, req->result, |
| 966 | digestsize); |
Horia Geanta | ce57208 | 2014-07-11 15:34:49 +0300 | [diff] [blame] | 967 | if (dma_mapping_error(jrdev, edesc->dst_dma)) { |
| 968 | dev_err(jrdev, "unable to map dst\n"); |
| 969 | return -ENOMEM; |
| 970 | } |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 971 | |
| 972 | #ifdef DEBUG |
Alex Porosanu | 514df28 | 2013-08-14 18:56:45 +0300 | [diff] [blame] | 973 | print_hex_dump(KERN_ERR, "jobdesc@"__stringify(__LINE__)": ", |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 974 | DUMP_PREFIX_ADDRESS, 16, 4, desc, desc_bytes(desc), 1); |
| 975 | #endif |
| 976 | |
| 977 | ret = caam_jr_enqueue(jrdev, desc, ahash_done_ctx_src, req); |
| 978 | if (!ret) { |
| 979 | ret = -EINPROGRESS; |
| 980 | } else { |
| 981 | ahash_unmap_ctx(jrdev, edesc, req, digestsize, DMA_FROM_DEVICE); |
| 982 | kfree(edesc); |
| 983 | } |
| 984 | |
| 985 | return ret; |
| 986 | } |
| 987 | |
| 988 | static int ahash_finup_ctx(struct ahash_request *req) |
| 989 | { |
| 990 | struct crypto_ahash *ahash = crypto_ahash_reqtfm(req); |
| 991 | struct caam_hash_ctx *ctx = crypto_ahash_ctx(ahash); |
| 992 | struct caam_hash_state *state = ahash_request_ctx(req); |
| 993 | struct device *jrdev = ctx->jrdev; |
| 994 | gfp_t flags = (req->base.flags & (CRYPTO_TFM_REQ_MAY_BACKLOG | |
| 995 | CRYPTO_TFM_REQ_MAY_SLEEP)) ? GFP_KERNEL : GFP_ATOMIC; |
| 996 | u8 *buf = state->current_buf ? state->buf_1 : state->buf_0; |
| 997 | int buflen = state->current_buf ? state->buflen_1 : state->buflen_0; |
| 998 | int last_buflen = state->current_buf ? state->buflen_0 : |
| 999 | state->buflen_1; |
| 1000 | u32 *sh_desc = ctx->sh_desc_finup, *desc; |
| 1001 | dma_addr_t ptr = ctx->sh_desc_finup_dma; |
| 1002 | int sec4_sg_bytes, sec4_sg_src_index; |
| 1003 | int src_nents; |
| 1004 | int digestsize = crypto_ahash_digestsize(ahash); |
| 1005 | struct ahash_edesc *edesc; |
| 1006 | int ret = 0; |
| 1007 | int sh_len; |
| 1008 | |
LABBE Corentin | 13fb8fd | 2015-09-23 13:55:27 +0200 | [diff] [blame] | 1009 | src_nents = sg_nents_for_len(req->src, req->nbytes); |
LABBE Corentin | f9970c2 | 2015-11-04 21:13:38 +0100 | [diff] [blame] | 1010 | if (src_nents < 0) { |
| 1011 | dev_err(jrdev, "Invalid number of src SG.\n"); |
| 1012 | return src_nents; |
| 1013 | } |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 1014 | sec4_sg_src_index = 1 + (buflen ? 1 : 0); |
| 1015 | sec4_sg_bytes = (sec4_sg_src_index + src_nents) * |
| 1016 | sizeof(struct sec4_sg_entry); |
| 1017 | |
| 1018 | /* allocate space for base edesc and hw desc commands, link tables */ |
Victoria Milhoan | dde20ae | 2015-08-05 11:28:39 -0700 | [diff] [blame] | 1019 | edesc = kzalloc(sizeof(*edesc) + DESC_JOB_IO_LEN + sec4_sg_bytes, |
| 1020 | GFP_DMA | flags); |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 1021 | if (!edesc) { |
| 1022 | dev_err(jrdev, "could not allocate extended descriptor\n"); |
| 1023 | return -ENOMEM; |
| 1024 | } |
| 1025 | |
| 1026 | sh_len = desc_len(sh_desc); |
| 1027 | desc = edesc->hw_desc; |
| 1028 | init_job_desc_shared(desc, ptr, sh_len, HDR_SHARE_DEFER | HDR_REVERSE); |
| 1029 | |
| 1030 | edesc->src_nents = src_nents; |
| 1031 | edesc->sec4_sg_bytes = sec4_sg_bytes; |
| 1032 | edesc->sec4_sg = (void *)edesc + sizeof(struct ahash_edesc) + |
| 1033 | DESC_JOB_IO_LEN; |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 1034 | |
Horia Geanta | ce57208 | 2014-07-11 15:34:49 +0300 | [diff] [blame] | 1035 | ret = ctx_map_to_sec4_sg(desc, jrdev, state, ctx->ctx_len, |
| 1036 | edesc->sec4_sg, DMA_TO_DEVICE); |
| 1037 | if (ret) |
| 1038 | return ret; |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 1039 | |
| 1040 | state->buf_dma = try_buf_map_to_sec4_sg(jrdev, edesc->sec4_sg + 1, |
| 1041 | buf, state->buf_dma, buflen, |
| 1042 | last_buflen); |
| 1043 | |
| 1044 | src_map_to_sec4_sg(jrdev, req->src, src_nents, edesc->sec4_sg + |
LABBE Corentin | 13fb8fd | 2015-09-23 13:55:27 +0200 | [diff] [blame] | 1045 | sec4_sg_src_index); |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 1046 | |
Ruchika Gupta | 1da2be3 | 2014-06-23 19:50:26 +0530 | [diff] [blame] | 1047 | edesc->sec4_sg_dma = dma_map_single(jrdev, edesc->sec4_sg, |
| 1048 | sec4_sg_bytes, DMA_TO_DEVICE); |
Horia Geanta | ce57208 | 2014-07-11 15:34:49 +0300 | [diff] [blame] | 1049 | if (dma_mapping_error(jrdev, edesc->sec4_sg_dma)) { |
| 1050 | dev_err(jrdev, "unable to map S/G table\n"); |
| 1051 | return -ENOMEM; |
| 1052 | } |
Ruchika Gupta | 1da2be3 | 2014-06-23 19:50:26 +0530 | [diff] [blame] | 1053 | |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 1054 | append_seq_in_ptr(desc, edesc->sec4_sg_dma, ctx->ctx_len + |
| 1055 | buflen + req->nbytes, LDST_SGF); |
| 1056 | |
| 1057 | edesc->dst_dma = map_seq_out_ptr_result(desc, jrdev, req->result, |
| 1058 | digestsize); |
Horia Geanta | ce57208 | 2014-07-11 15:34:49 +0300 | [diff] [blame] | 1059 | if (dma_mapping_error(jrdev, edesc->dst_dma)) { |
| 1060 | dev_err(jrdev, "unable to map dst\n"); |
| 1061 | return -ENOMEM; |
| 1062 | } |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 1063 | |
| 1064 | #ifdef DEBUG |
Alex Porosanu | 514df28 | 2013-08-14 18:56:45 +0300 | [diff] [blame] | 1065 | print_hex_dump(KERN_ERR, "jobdesc@"__stringify(__LINE__)": ", |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 1066 | DUMP_PREFIX_ADDRESS, 16, 4, desc, desc_bytes(desc), 1); |
| 1067 | #endif |
| 1068 | |
| 1069 | ret = caam_jr_enqueue(jrdev, desc, ahash_done_ctx_src, req); |
| 1070 | if (!ret) { |
| 1071 | ret = -EINPROGRESS; |
| 1072 | } else { |
| 1073 | ahash_unmap_ctx(jrdev, edesc, req, digestsize, DMA_FROM_DEVICE); |
| 1074 | kfree(edesc); |
| 1075 | } |
| 1076 | |
| 1077 | return ret; |
| 1078 | } |
| 1079 | |
| 1080 | static int ahash_digest(struct ahash_request *req) |
| 1081 | { |
| 1082 | struct crypto_ahash *ahash = crypto_ahash_reqtfm(req); |
| 1083 | struct caam_hash_ctx *ctx = crypto_ahash_ctx(ahash); |
| 1084 | struct device *jrdev = ctx->jrdev; |
| 1085 | gfp_t flags = (req->base.flags & (CRYPTO_TFM_REQ_MAY_BACKLOG | |
| 1086 | CRYPTO_TFM_REQ_MAY_SLEEP)) ? GFP_KERNEL : GFP_ATOMIC; |
| 1087 | u32 *sh_desc = ctx->sh_desc_digest, *desc; |
| 1088 | dma_addr_t ptr = ctx->sh_desc_digest_dma; |
| 1089 | int digestsize = crypto_ahash_digestsize(ahash); |
| 1090 | int src_nents, sec4_sg_bytes; |
| 1091 | dma_addr_t src_dma; |
| 1092 | struct ahash_edesc *edesc; |
| 1093 | int ret = 0; |
| 1094 | u32 options; |
| 1095 | int sh_len; |
| 1096 | |
LABBE Corentin | 13fb8fd | 2015-09-23 13:55:27 +0200 | [diff] [blame] | 1097 | src_nents = sg_count(req->src, req->nbytes); |
LABBE Corentin | f9970c2 | 2015-11-04 21:13:38 +0100 | [diff] [blame] | 1098 | if (src_nents < 0) { |
| 1099 | dev_err(jrdev, "Invalid number of src SG.\n"); |
| 1100 | return src_nents; |
| 1101 | } |
LABBE Corentin | 13fb8fd | 2015-09-23 13:55:27 +0200 | [diff] [blame] | 1102 | dma_map_sg(jrdev, req->src, src_nents ? : 1, DMA_TO_DEVICE); |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 1103 | sec4_sg_bytes = src_nents * sizeof(struct sec4_sg_entry); |
| 1104 | |
| 1105 | /* allocate space for base edesc and hw desc commands, link tables */ |
Victoria Milhoan | dde20ae | 2015-08-05 11:28:39 -0700 | [diff] [blame] | 1106 | edesc = kzalloc(sizeof(*edesc) + sec4_sg_bytes + DESC_JOB_IO_LEN, |
| 1107 | GFP_DMA | flags); |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 1108 | if (!edesc) { |
| 1109 | dev_err(jrdev, "could not allocate extended descriptor\n"); |
| 1110 | return -ENOMEM; |
| 1111 | } |
| 1112 | edesc->sec4_sg = (void *)edesc + sizeof(struct ahash_edesc) + |
| 1113 | DESC_JOB_IO_LEN; |
Horia Geanta | 45e9af7 | 2014-07-11 15:34:53 +0300 | [diff] [blame] | 1114 | edesc->sec4_sg_bytes = sec4_sg_bytes; |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 1115 | edesc->src_nents = src_nents; |
| 1116 | |
| 1117 | sh_len = desc_len(sh_desc); |
| 1118 | desc = edesc->hw_desc; |
| 1119 | init_job_desc_shared(desc, ptr, sh_len, HDR_SHARE_DEFER | HDR_REVERSE); |
| 1120 | |
| 1121 | if (src_nents) { |
| 1122 | sg_to_sec4_sg_last(req->src, src_nents, edesc->sec4_sg, 0); |
Ruchika Gupta | 1da2be3 | 2014-06-23 19:50:26 +0530 | [diff] [blame] | 1123 | edesc->sec4_sg_dma = dma_map_single(jrdev, edesc->sec4_sg, |
| 1124 | sec4_sg_bytes, DMA_TO_DEVICE); |
Horia Geanta | ce57208 | 2014-07-11 15:34:49 +0300 | [diff] [blame] | 1125 | if (dma_mapping_error(jrdev, edesc->sec4_sg_dma)) { |
| 1126 | dev_err(jrdev, "unable to map S/G table\n"); |
| 1127 | return -ENOMEM; |
| 1128 | } |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 1129 | src_dma = edesc->sec4_sg_dma; |
| 1130 | options = LDST_SGF; |
| 1131 | } else { |
| 1132 | src_dma = sg_dma_address(req->src); |
| 1133 | options = 0; |
| 1134 | } |
| 1135 | append_seq_in_ptr(desc, src_dma, req->nbytes, options); |
| 1136 | |
| 1137 | edesc->dst_dma = map_seq_out_ptr_result(desc, jrdev, req->result, |
| 1138 | digestsize); |
Horia Geanta | ce57208 | 2014-07-11 15:34:49 +0300 | [diff] [blame] | 1139 | if (dma_mapping_error(jrdev, edesc->dst_dma)) { |
| 1140 | dev_err(jrdev, "unable to map dst\n"); |
| 1141 | return -ENOMEM; |
| 1142 | } |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 1143 | |
| 1144 | #ifdef DEBUG |
Alex Porosanu | 514df28 | 2013-08-14 18:56:45 +0300 | [diff] [blame] | 1145 | print_hex_dump(KERN_ERR, "jobdesc@"__stringify(__LINE__)": ", |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 1146 | DUMP_PREFIX_ADDRESS, 16, 4, desc, desc_bytes(desc), 1); |
| 1147 | #endif |
| 1148 | |
| 1149 | ret = caam_jr_enqueue(jrdev, desc, ahash_done, req); |
| 1150 | if (!ret) { |
| 1151 | ret = -EINPROGRESS; |
| 1152 | } else { |
| 1153 | ahash_unmap(jrdev, edesc, req, digestsize); |
| 1154 | kfree(edesc); |
| 1155 | } |
| 1156 | |
| 1157 | return ret; |
| 1158 | } |
| 1159 | |
| 1160 | /* submit ahash final if it the first job descriptor */ |
| 1161 | static int ahash_final_no_ctx(struct ahash_request *req) |
| 1162 | { |
| 1163 | struct crypto_ahash *ahash = crypto_ahash_reqtfm(req); |
| 1164 | struct caam_hash_ctx *ctx = crypto_ahash_ctx(ahash); |
| 1165 | struct caam_hash_state *state = ahash_request_ctx(req); |
| 1166 | struct device *jrdev = ctx->jrdev; |
| 1167 | gfp_t flags = (req->base.flags & (CRYPTO_TFM_REQ_MAY_BACKLOG | |
| 1168 | CRYPTO_TFM_REQ_MAY_SLEEP)) ? GFP_KERNEL : GFP_ATOMIC; |
| 1169 | u8 *buf = state->current_buf ? state->buf_1 : state->buf_0; |
| 1170 | int buflen = state->current_buf ? state->buflen_1 : state->buflen_0; |
| 1171 | u32 *sh_desc = ctx->sh_desc_digest, *desc; |
| 1172 | dma_addr_t ptr = ctx->sh_desc_digest_dma; |
| 1173 | int digestsize = crypto_ahash_digestsize(ahash); |
| 1174 | struct ahash_edesc *edesc; |
| 1175 | int ret = 0; |
| 1176 | int sh_len; |
| 1177 | |
| 1178 | /* allocate space for base edesc and hw desc commands, link tables */ |
Victoria Milhoan | dde20ae | 2015-08-05 11:28:39 -0700 | [diff] [blame] | 1179 | edesc = kzalloc(sizeof(*edesc) + DESC_JOB_IO_LEN, GFP_DMA | flags); |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 1180 | if (!edesc) { |
| 1181 | dev_err(jrdev, "could not allocate extended descriptor\n"); |
| 1182 | return -ENOMEM; |
| 1183 | } |
| 1184 | |
Yanjiang Jin | 060e234 | 2015-03-06 10:34:41 +0800 | [diff] [blame] | 1185 | edesc->sec4_sg_bytes = 0; |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 1186 | sh_len = desc_len(sh_desc); |
| 1187 | desc = edesc->hw_desc; |
| 1188 | init_job_desc_shared(desc, ptr, sh_len, HDR_SHARE_DEFER | HDR_REVERSE); |
| 1189 | |
| 1190 | state->buf_dma = dma_map_single(jrdev, buf, buflen, DMA_TO_DEVICE); |
Horia Geanta | ce57208 | 2014-07-11 15:34:49 +0300 | [diff] [blame] | 1191 | if (dma_mapping_error(jrdev, state->buf_dma)) { |
| 1192 | dev_err(jrdev, "unable to map src\n"); |
| 1193 | return -ENOMEM; |
| 1194 | } |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 1195 | |
| 1196 | append_seq_in_ptr(desc, state->buf_dma, buflen, 0); |
| 1197 | |
| 1198 | edesc->dst_dma = map_seq_out_ptr_result(desc, jrdev, req->result, |
| 1199 | digestsize); |
Horia Geanta | ce57208 | 2014-07-11 15:34:49 +0300 | [diff] [blame] | 1200 | if (dma_mapping_error(jrdev, edesc->dst_dma)) { |
| 1201 | dev_err(jrdev, "unable to map dst\n"); |
| 1202 | return -ENOMEM; |
| 1203 | } |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 1204 | edesc->src_nents = 0; |
| 1205 | |
| 1206 | #ifdef DEBUG |
Alex Porosanu | 514df28 | 2013-08-14 18:56:45 +0300 | [diff] [blame] | 1207 | print_hex_dump(KERN_ERR, "jobdesc@"__stringify(__LINE__)": ", |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 1208 | DUMP_PREFIX_ADDRESS, 16, 4, desc, desc_bytes(desc), 1); |
| 1209 | #endif |
| 1210 | |
| 1211 | ret = caam_jr_enqueue(jrdev, desc, ahash_done, req); |
| 1212 | if (!ret) { |
| 1213 | ret = -EINPROGRESS; |
| 1214 | } else { |
| 1215 | ahash_unmap(jrdev, edesc, req, digestsize); |
| 1216 | kfree(edesc); |
| 1217 | } |
| 1218 | |
| 1219 | return ret; |
| 1220 | } |
| 1221 | |
| 1222 | /* submit ahash update if it the first job descriptor after update */ |
| 1223 | static int ahash_update_no_ctx(struct ahash_request *req) |
| 1224 | { |
| 1225 | struct crypto_ahash *ahash = crypto_ahash_reqtfm(req); |
| 1226 | struct caam_hash_ctx *ctx = crypto_ahash_ctx(ahash); |
| 1227 | struct caam_hash_state *state = ahash_request_ctx(req); |
| 1228 | struct device *jrdev = ctx->jrdev; |
| 1229 | gfp_t flags = (req->base.flags & (CRYPTO_TFM_REQ_MAY_BACKLOG | |
| 1230 | CRYPTO_TFM_REQ_MAY_SLEEP)) ? GFP_KERNEL : GFP_ATOMIC; |
| 1231 | u8 *buf = state->current_buf ? state->buf_1 : state->buf_0; |
| 1232 | int *buflen = state->current_buf ? &state->buflen_1 : &state->buflen_0; |
| 1233 | u8 *next_buf = state->current_buf ? state->buf_0 : state->buf_1; |
| 1234 | int *next_buflen = state->current_buf ? &state->buflen_0 : |
| 1235 | &state->buflen_1; |
| 1236 | int in_len = *buflen + req->nbytes, to_hash; |
| 1237 | int sec4_sg_bytes, src_nents; |
| 1238 | struct ahash_edesc *edesc; |
| 1239 | u32 *desc, *sh_desc = ctx->sh_desc_update_first; |
| 1240 | dma_addr_t ptr = ctx->sh_desc_update_first_dma; |
| 1241 | int ret = 0; |
| 1242 | int sh_len; |
| 1243 | |
| 1244 | *next_buflen = in_len & (crypto_tfm_alg_blocksize(&ahash->base) - 1); |
| 1245 | to_hash = in_len - *next_buflen; |
| 1246 | |
| 1247 | if (to_hash) { |
LABBE Corentin | 13fb8fd | 2015-09-23 13:55:27 +0200 | [diff] [blame] | 1248 | src_nents = sg_nents_for_len(req->src, |
| 1249 | req->nbytes - (*next_buflen)); |
LABBE Corentin | f9970c2 | 2015-11-04 21:13:38 +0100 | [diff] [blame] | 1250 | if (src_nents < 0) { |
| 1251 | dev_err(jrdev, "Invalid number of src SG.\n"); |
| 1252 | return src_nents; |
| 1253 | } |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 1254 | sec4_sg_bytes = (1 + src_nents) * |
| 1255 | sizeof(struct sec4_sg_entry); |
| 1256 | |
| 1257 | /* |
| 1258 | * allocate space for base edesc and hw desc commands, |
| 1259 | * link tables |
| 1260 | */ |
Victoria Milhoan | dde20ae | 2015-08-05 11:28:39 -0700 | [diff] [blame] | 1261 | edesc = kzalloc(sizeof(*edesc) + DESC_JOB_IO_LEN + |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 1262 | sec4_sg_bytes, GFP_DMA | flags); |
| 1263 | if (!edesc) { |
| 1264 | dev_err(jrdev, |
| 1265 | "could not allocate extended descriptor\n"); |
| 1266 | return -ENOMEM; |
| 1267 | } |
| 1268 | |
| 1269 | edesc->src_nents = src_nents; |
| 1270 | edesc->sec4_sg_bytes = sec4_sg_bytes; |
| 1271 | edesc->sec4_sg = (void *)edesc + sizeof(struct ahash_edesc) + |
| 1272 | DESC_JOB_IO_LEN; |
Horia Geanta | 76b9908 | 2014-07-11 15:34:54 +0300 | [diff] [blame] | 1273 | edesc->dst_dma = 0; |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 1274 | |
| 1275 | state->buf_dma = buf_map_to_sec4_sg(jrdev, edesc->sec4_sg, |
| 1276 | buf, *buflen); |
| 1277 | src_map_to_sec4_sg(jrdev, req->src, src_nents, |
LABBE Corentin | 13fb8fd | 2015-09-23 13:55:27 +0200 | [diff] [blame] | 1278 | edesc->sec4_sg + 1); |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 1279 | if (*next_buflen) { |
Cristian Stoica | 307fd543 | 2014-08-14 13:51:56 +0300 | [diff] [blame] | 1280 | scatterwalk_map_and_copy(next_buf, req->src, |
| 1281 | to_hash - *buflen, |
| 1282 | *next_buflen, 0); |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 1283 | } |
| 1284 | |
Victoria Milhoan | 8af7b0f | 2015-06-15 16:52:57 -0700 | [diff] [blame] | 1285 | state->current_buf = !state->current_buf; |
| 1286 | |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 1287 | sh_len = desc_len(sh_desc); |
| 1288 | desc = edesc->hw_desc; |
| 1289 | init_job_desc_shared(desc, ptr, sh_len, HDR_SHARE_DEFER | |
| 1290 | HDR_REVERSE); |
| 1291 | |
Ruchika Gupta | 1da2be3 | 2014-06-23 19:50:26 +0530 | [diff] [blame] | 1292 | edesc->sec4_sg_dma = dma_map_single(jrdev, edesc->sec4_sg, |
| 1293 | sec4_sg_bytes, |
| 1294 | DMA_TO_DEVICE); |
Horia Geanta | ce57208 | 2014-07-11 15:34:49 +0300 | [diff] [blame] | 1295 | if (dma_mapping_error(jrdev, edesc->sec4_sg_dma)) { |
| 1296 | dev_err(jrdev, "unable to map S/G table\n"); |
| 1297 | return -ENOMEM; |
| 1298 | } |
Ruchika Gupta | 1da2be3 | 2014-06-23 19:50:26 +0530 | [diff] [blame] | 1299 | |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 1300 | append_seq_in_ptr(desc, edesc->sec4_sg_dma, to_hash, LDST_SGF); |
| 1301 | |
Horia Geanta | ce57208 | 2014-07-11 15:34:49 +0300 | [diff] [blame] | 1302 | ret = map_seq_out_ptr_ctx(desc, jrdev, state, ctx->ctx_len); |
| 1303 | if (ret) |
| 1304 | return ret; |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 1305 | |
| 1306 | #ifdef DEBUG |
Alex Porosanu | 514df28 | 2013-08-14 18:56:45 +0300 | [diff] [blame] | 1307 | print_hex_dump(KERN_ERR, "jobdesc@"__stringify(__LINE__)": ", |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 1308 | DUMP_PREFIX_ADDRESS, 16, 4, desc, |
| 1309 | desc_bytes(desc), 1); |
| 1310 | #endif |
| 1311 | |
| 1312 | ret = caam_jr_enqueue(jrdev, desc, ahash_done_ctx_dst, req); |
| 1313 | if (!ret) { |
| 1314 | ret = -EINPROGRESS; |
| 1315 | state->update = ahash_update_ctx; |
| 1316 | state->finup = ahash_finup_ctx; |
| 1317 | state->final = ahash_final_ctx; |
| 1318 | } else { |
| 1319 | ahash_unmap_ctx(jrdev, edesc, req, ctx->ctx_len, |
| 1320 | DMA_TO_DEVICE); |
| 1321 | kfree(edesc); |
| 1322 | } |
| 1323 | } else if (*next_buflen) { |
Cristian Stoica | 307fd543 | 2014-08-14 13:51:56 +0300 | [diff] [blame] | 1324 | scatterwalk_map_and_copy(buf + *buflen, req->src, 0, |
| 1325 | req->nbytes, 0); |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 1326 | *buflen = *next_buflen; |
| 1327 | *next_buflen = 0; |
| 1328 | } |
| 1329 | #ifdef DEBUG |
Alex Porosanu | 514df28 | 2013-08-14 18:56:45 +0300 | [diff] [blame] | 1330 | print_hex_dump(KERN_ERR, "buf@"__stringify(__LINE__)": ", |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 1331 | DUMP_PREFIX_ADDRESS, 16, 4, buf, *buflen, 1); |
Alex Porosanu | 514df28 | 2013-08-14 18:56:45 +0300 | [diff] [blame] | 1332 | print_hex_dump(KERN_ERR, "next buf@"__stringify(__LINE__)": ", |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 1333 | DUMP_PREFIX_ADDRESS, 16, 4, next_buf, |
| 1334 | *next_buflen, 1); |
| 1335 | #endif |
| 1336 | |
| 1337 | return ret; |
| 1338 | } |
| 1339 | |
| 1340 | /* submit ahash finup if it the first job descriptor after update */ |
| 1341 | static int ahash_finup_no_ctx(struct ahash_request *req) |
| 1342 | { |
| 1343 | struct crypto_ahash *ahash = crypto_ahash_reqtfm(req); |
| 1344 | struct caam_hash_ctx *ctx = crypto_ahash_ctx(ahash); |
| 1345 | struct caam_hash_state *state = ahash_request_ctx(req); |
| 1346 | struct device *jrdev = ctx->jrdev; |
| 1347 | gfp_t flags = (req->base.flags & (CRYPTO_TFM_REQ_MAY_BACKLOG | |
| 1348 | CRYPTO_TFM_REQ_MAY_SLEEP)) ? GFP_KERNEL : GFP_ATOMIC; |
| 1349 | u8 *buf = state->current_buf ? state->buf_1 : state->buf_0; |
| 1350 | int buflen = state->current_buf ? state->buflen_1 : state->buflen_0; |
| 1351 | int last_buflen = state->current_buf ? state->buflen_0 : |
| 1352 | state->buflen_1; |
| 1353 | u32 *sh_desc = ctx->sh_desc_digest, *desc; |
| 1354 | dma_addr_t ptr = ctx->sh_desc_digest_dma; |
| 1355 | int sec4_sg_bytes, sec4_sg_src_index, src_nents; |
| 1356 | int digestsize = crypto_ahash_digestsize(ahash); |
| 1357 | struct ahash_edesc *edesc; |
| 1358 | int sh_len; |
| 1359 | int ret = 0; |
| 1360 | |
LABBE Corentin | 13fb8fd | 2015-09-23 13:55:27 +0200 | [diff] [blame] | 1361 | src_nents = sg_nents_for_len(req->src, req->nbytes); |
LABBE Corentin | f9970c2 | 2015-11-04 21:13:38 +0100 | [diff] [blame] | 1362 | if (src_nents < 0) { |
| 1363 | dev_err(jrdev, "Invalid number of src SG.\n"); |
| 1364 | return src_nents; |
| 1365 | } |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 1366 | sec4_sg_src_index = 2; |
| 1367 | sec4_sg_bytes = (sec4_sg_src_index + src_nents) * |
| 1368 | sizeof(struct sec4_sg_entry); |
| 1369 | |
| 1370 | /* allocate space for base edesc and hw desc commands, link tables */ |
Victoria Milhoan | dde20ae | 2015-08-05 11:28:39 -0700 | [diff] [blame] | 1371 | edesc = kzalloc(sizeof(*edesc) + DESC_JOB_IO_LEN + sec4_sg_bytes, |
| 1372 | GFP_DMA | flags); |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 1373 | if (!edesc) { |
| 1374 | dev_err(jrdev, "could not allocate extended descriptor\n"); |
| 1375 | return -ENOMEM; |
| 1376 | } |
| 1377 | |
| 1378 | sh_len = desc_len(sh_desc); |
| 1379 | desc = edesc->hw_desc; |
| 1380 | init_job_desc_shared(desc, ptr, sh_len, HDR_SHARE_DEFER | HDR_REVERSE); |
| 1381 | |
| 1382 | edesc->src_nents = src_nents; |
| 1383 | edesc->sec4_sg_bytes = sec4_sg_bytes; |
| 1384 | edesc->sec4_sg = (void *)edesc + sizeof(struct ahash_edesc) + |
| 1385 | DESC_JOB_IO_LEN; |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 1386 | |
| 1387 | state->buf_dma = try_buf_map_to_sec4_sg(jrdev, edesc->sec4_sg, buf, |
| 1388 | state->buf_dma, buflen, |
| 1389 | last_buflen); |
| 1390 | |
LABBE Corentin | 13fb8fd | 2015-09-23 13:55:27 +0200 | [diff] [blame] | 1391 | src_map_to_sec4_sg(jrdev, req->src, src_nents, edesc->sec4_sg + 1); |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 1392 | |
Ruchika Gupta | 1da2be3 | 2014-06-23 19:50:26 +0530 | [diff] [blame] | 1393 | edesc->sec4_sg_dma = dma_map_single(jrdev, edesc->sec4_sg, |
| 1394 | sec4_sg_bytes, DMA_TO_DEVICE); |
Horia Geanta | ce57208 | 2014-07-11 15:34:49 +0300 | [diff] [blame] | 1395 | if (dma_mapping_error(jrdev, edesc->sec4_sg_dma)) { |
| 1396 | dev_err(jrdev, "unable to map S/G table\n"); |
| 1397 | return -ENOMEM; |
| 1398 | } |
Ruchika Gupta | 1da2be3 | 2014-06-23 19:50:26 +0530 | [diff] [blame] | 1399 | |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 1400 | append_seq_in_ptr(desc, edesc->sec4_sg_dma, buflen + |
| 1401 | req->nbytes, LDST_SGF); |
| 1402 | |
| 1403 | edesc->dst_dma = map_seq_out_ptr_result(desc, jrdev, req->result, |
| 1404 | digestsize); |
Horia Geanta | ce57208 | 2014-07-11 15:34:49 +0300 | [diff] [blame] | 1405 | if (dma_mapping_error(jrdev, edesc->dst_dma)) { |
| 1406 | dev_err(jrdev, "unable to map dst\n"); |
| 1407 | return -ENOMEM; |
| 1408 | } |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 1409 | |
| 1410 | #ifdef DEBUG |
Alex Porosanu | 514df28 | 2013-08-14 18:56:45 +0300 | [diff] [blame] | 1411 | print_hex_dump(KERN_ERR, "jobdesc@"__stringify(__LINE__)": ", |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 1412 | DUMP_PREFIX_ADDRESS, 16, 4, desc, desc_bytes(desc), 1); |
| 1413 | #endif |
| 1414 | |
| 1415 | ret = caam_jr_enqueue(jrdev, desc, ahash_done, req); |
| 1416 | if (!ret) { |
| 1417 | ret = -EINPROGRESS; |
| 1418 | } else { |
| 1419 | ahash_unmap(jrdev, edesc, req, digestsize); |
| 1420 | kfree(edesc); |
| 1421 | } |
| 1422 | |
| 1423 | return ret; |
| 1424 | } |
| 1425 | |
| 1426 | /* submit first update job descriptor after init */ |
| 1427 | static int ahash_update_first(struct ahash_request *req) |
| 1428 | { |
| 1429 | struct crypto_ahash *ahash = crypto_ahash_reqtfm(req); |
| 1430 | struct caam_hash_ctx *ctx = crypto_ahash_ctx(ahash); |
| 1431 | struct caam_hash_state *state = ahash_request_ctx(req); |
| 1432 | struct device *jrdev = ctx->jrdev; |
| 1433 | gfp_t flags = (req->base.flags & (CRYPTO_TFM_REQ_MAY_BACKLOG | |
| 1434 | CRYPTO_TFM_REQ_MAY_SLEEP)) ? GFP_KERNEL : GFP_ATOMIC; |
Cristian Stoica | 4451d49 | 2014-08-14 13:51:57 +0300 | [diff] [blame] | 1435 | u8 *next_buf = state->current_buf ? state->buf_1 : state->buf_0; |
| 1436 | int *next_buflen = state->current_buf ? |
| 1437 | &state->buflen_1 : &state->buflen_0; |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 1438 | int to_hash; |
| 1439 | u32 *sh_desc = ctx->sh_desc_update_first, *desc; |
| 1440 | dma_addr_t ptr = ctx->sh_desc_update_first_dma; |
| 1441 | int sec4_sg_bytes, src_nents; |
| 1442 | dma_addr_t src_dma; |
| 1443 | u32 options; |
| 1444 | struct ahash_edesc *edesc; |
| 1445 | int ret = 0; |
| 1446 | int sh_len; |
| 1447 | |
| 1448 | *next_buflen = req->nbytes & (crypto_tfm_alg_blocksize(&ahash->base) - |
| 1449 | 1); |
| 1450 | to_hash = req->nbytes - *next_buflen; |
| 1451 | |
| 1452 | if (to_hash) { |
LABBE Corentin | 13fb8fd | 2015-09-23 13:55:27 +0200 | [diff] [blame] | 1453 | src_nents = sg_count(req->src, req->nbytes - (*next_buflen)); |
LABBE Corentin | f9970c2 | 2015-11-04 21:13:38 +0100 | [diff] [blame] | 1454 | if (src_nents < 0) { |
| 1455 | dev_err(jrdev, "Invalid number of src SG.\n"); |
| 1456 | return src_nents; |
| 1457 | } |
LABBE Corentin | 13fb8fd | 2015-09-23 13:55:27 +0200 | [diff] [blame] | 1458 | dma_map_sg(jrdev, req->src, src_nents ? : 1, DMA_TO_DEVICE); |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 1459 | sec4_sg_bytes = src_nents * sizeof(struct sec4_sg_entry); |
| 1460 | |
| 1461 | /* |
| 1462 | * allocate space for base edesc and hw desc commands, |
| 1463 | * link tables |
| 1464 | */ |
Victoria Milhoan | dde20ae | 2015-08-05 11:28:39 -0700 | [diff] [blame] | 1465 | edesc = kzalloc(sizeof(*edesc) + DESC_JOB_IO_LEN + |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 1466 | sec4_sg_bytes, GFP_DMA | flags); |
| 1467 | if (!edesc) { |
| 1468 | dev_err(jrdev, |
| 1469 | "could not allocate extended descriptor\n"); |
| 1470 | return -ENOMEM; |
| 1471 | } |
| 1472 | |
| 1473 | edesc->src_nents = src_nents; |
| 1474 | edesc->sec4_sg_bytes = sec4_sg_bytes; |
| 1475 | edesc->sec4_sg = (void *)edesc + sizeof(struct ahash_edesc) + |
| 1476 | DESC_JOB_IO_LEN; |
Horia Geanta | 76b9908 | 2014-07-11 15:34:54 +0300 | [diff] [blame] | 1477 | edesc->dst_dma = 0; |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 1478 | |
| 1479 | if (src_nents) { |
| 1480 | sg_to_sec4_sg_last(req->src, src_nents, |
| 1481 | edesc->sec4_sg, 0); |
Ruchika Gupta | 1da2be3 | 2014-06-23 19:50:26 +0530 | [diff] [blame] | 1482 | edesc->sec4_sg_dma = dma_map_single(jrdev, |
| 1483 | edesc->sec4_sg, |
| 1484 | sec4_sg_bytes, |
| 1485 | DMA_TO_DEVICE); |
Horia Geanta | ce57208 | 2014-07-11 15:34:49 +0300 | [diff] [blame] | 1486 | if (dma_mapping_error(jrdev, edesc->sec4_sg_dma)) { |
| 1487 | dev_err(jrdev, "unable to map S/G table\n"); |
| 1488 | return -ENOMEM; |
| 1489 | } |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 1490 | src_dma = edesc->sec4_sg_dma; |
| 1491 | options = LDST_SGF; |
| 1492 | } else { |
| 1493 | src_dma = sg_dma_address(req->src); |
| 1494 | options = 0; |
| 1495 | } |
| 1496 | |
| 1497 | if (*next_buflen) |
Cristian Stoica | 307fd543 | 2014-08-14 13:51:56 +0300 | [diff] [blame] | 1498 | scatterwalk_map_and_copy(next_buf, req->src, to_hash, |
| 1499 | *next_buflen, 0); |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 1500 | |
| 1501 | sh_len = desc_len(sh_desc); |
| 1502 | desc = edesc->hw_desc; |
| 1503 | init_job_desc_shared(desc, ptr, sh_len, HDR_SHARE_DEFER | |
| 1504 | HDR_REVERSE); |
| 1505 | |
| 1506 | append_seq_in_ptr(desc, src_dma, to_hash, options); |
| 1507 | |
Horia Geanta | ce57208 | 2014-07-11 15:34:49 +0300 | [diff] [blame] | 1508 | ret = map_seq_out_ptr_ctx(desc, jrdev, state, ctx->ctx_len); |
| 1509 | if (ret) |
| 1510 | return ret; |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 1511 | |
| 1512 | #ifdef DEBUG |
Alex Porosanu | 514df28 | 2013-08-14 18:56:45 +0300 | [diff] [blame] | 1513 | print_hex_dump(KERN_ERR, "jobdesc@"__stringify(__LINE__)": ", |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 1514 | DUMP_PREFIX_ADDRESS, 16, 4, desc, |
| 1515 | desc_bytes(desc), 1); |
| 1516 | #endif |
| 1517 | |
| 1518 | ret = caam_jr_enqueue(jrdev, desc, ahash_done_ctx_dst, |
| 1519 | req); |
| 1520 | if (!ret) { |
| 1521 | ret = -EINPROGRESS; |
| 1522 | state->update = ahash_update_ctx; |
| 1523 | state->finup = ahash_finup_ctx; |
| 1524 | state->final = ahash_final_ctx; |
| 1525 | } else { |
| 1526 | ahash_unmap_ctx(jrdev, edesc, req, ctx->ctx_len, |
| 1527 | DMA_TO_DEVICE); |
| 1528 | kfree(edesc); |
| 1529 | } |
| 1530 | } else if (*next_buflen) { |
| 1531 | state->update = ahash_update_no_ctx; |
| 1532 | state->finup = ahash_finup_no_ctx; |
| 1533 | state->final = ahash_final_no_ctx; |
Cristian Stoica | 307fd543 | 2014-08-14 13:51:56 +0300 | [diff] [blame] | 1534 | scatterwalk_map_and_copy(next_buf, req->src, 0, |
| 1535 | req->nbytes, 0); |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 1536 | } |
| 1537 | #ifdef DEBUG |
Alex Porosanu | 514df28 | 2013-08-14 18:56:45 +0300 | [diff] [blame] | 1538 | print_hex_dump(KERN_ERR, "next buf@"__stringify(__LINE__)": ", |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 1539 | DUMP_PREFIX_ADDRESS, 16, 4, next_buf, |
| 1540 | *next_buflen, 1); |
| 1541 | #endif |
| 1542 | |
| 1543 | return ret; |
| 1544 | } |
| 1545 | |
| 1546 | static int ahash_finup_first(struct ahash_request *req) |
| 1547 | { |
| 1548 | return ahash_digest(req); |
| 1549 | } |
| 1550 | |
| 1551 | static int ahash_init(struct ahash_request *req) |
| 1552 | { |
| 1553 | struct caam_hash_state *state = ahash_request_ctx(req); |
| 1554 | |
| 1555 | state->update = ahash_update_first; |
| 1556 | state->finup = ahash_finup_first; |
| 1557 | state->final = ahash_final_no_ctx; |
| 1558 | |
| 1559 | state->current_buf = 0; |
Horia Geanta | de0e35e | 2014-07-11 15:34:55 +0300 | [diff] [blame] | 1560 | state->buf_dma = 0; |
Steve Cornelius | 6fd4b15 | 2015-06-15 16:52:56 -0700 | [diff] [blame] | 1561 | state->buflen_0 = 0; |
| 1562 | state->buflen_1 = 0; |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 1563 | |
| 1564 | return 0; |
| 1565 | } |
| 1566 | |
| 1567 | static int ahash_update(struct ahash_request *req) |
| 1568 | { |
| 1569 | struct caam_hash_state *state = ahash_request_ctx(req); |
| 1570 | |
| 1571 | return state->update(req); |
| 1572 | } |
| 1573 | |
| 1574 | static int ahash_finup(struct ahash_request *req) |
| 1575 | { |
| 1576 | struct caam_hash_state *state = ahash_request_ctx(req); |
| 1577 | |
| 1578 | return state->finup(req); |
| 1579 | } |
| 1580 | |
| 1581 | static int ahash_final(struct ahash_request *req) |
| 1582 | { |
| 1583 | struct caam_hash_state *state = ahash_request_ctx(req); |
| 1584 | |
| 1585 | return state->final(req); |
| 1586 | } |
| 1587 | |
| 1588 | static int ahash_export(struct ahash_request *req, void *out) |
| 1589 | { |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 1590 | struct caam_hash_state *state = ahash_request_ctx(req); |
Russell King | 5ec9083 | 2015-10-18 17:51:25 +0100 | [diff] [blame] | 1591 | struct caam_export_state *export = out; |
| 1592 | int len; |
| 1593 | u8 *buf; |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 1594 | |
Russell King | 5ec9083 | 2015-10-18 17:51:25 +0100 | [diff] [blame] | 1595 | if (state->current_buf) { |
| 1596 | buf = state->buf_1; |
| 1597 | len = state->buflen_1; |
| 1598 | } else { |
| 1599 | buf = state->buf_0; |
Fabio Estevam | f456cd2 | 2015-11-30 11:03:58 -0200 | [diff] [blame] | 1600 | len = state->buflen_0; |
Russell King | 5ec9083 | 2015-10-18 17:51:25 +0100 | [diff] [blame] | 1601 | } |
| 1602 | |
| 1603 | memcpy(export->buf, buf, len); |
| 1604 | memcpy(export->caam_ctx, state->caam_ctx, sizeof(export->caam_ctx)); |
| 1605 | export->buflen = len; |
| 1606 | export->update = state->update; |
| 1607 | export->final = state->final; |
| 1608 | export->finup = state->finup; |
Russell King | 434b421 | 2015-10-18 17:51:15 +0100 | [diff] [blame] | 1609 | |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 1610 | return 0; |
| 1611 | } |
| 1612 | |
| 1613 | static int ahash_import(struct ahash_request *req, const void *in) |
| 1614 | { |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 1615 | struct caam_hash_state *state = ahash_request_ctx(req); |
Russell King | 5ec9083 | 2015-10-18 17:51:25 +0100 | [diff] [blame] | 1616 | const struct caam_export_state *export = in; |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 1617 | |
Russell King | 5ec9083 | 2015-10-18 17:51:25 +0100 | [diff] [blame] | 1618 | memset(state, 0, sizeof(*state)); |
| 1619 | memcpy(state->buf_0, export->buf, export->buflen); |
| 1620 | memcpy(state->caam_ctx, export->caam_ctx, sizeof(state->caam_ctx)); |
| 1621 | state->buflen_0 = export->buflen; |
| 1622 | state->update = export->update; |
| 1623 | state->final = export->final; |
| 1624 | state->finup = export->finup; |
Russell King | 434b421 | 2015-10-18 17:51:15 +0100 | [diff] [blame] | 1625 | |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 1626 | return 0; |
| 1627 | } |
| 1628 | |
| 1629 | struct caam_hash_template { |
| 1630 | char name[CRYPTO_MAX_ALG_NAME]; |
| 1631 | char driver_name[CRYPTO_MAX_ALG_NAME]; |
Yuan Kang | b0e09ba | 2012-06-22 19:48:48 -0500 | [diff] [blame] | 1632 | char hmac_name[CRYPTO_MAX_ALG_NAME]; |
| 1633 | char hmac_driver_name[CRYPTO_MAX_ALG_NAME]; |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 1634 | unsigned int blocksize; |
| 1635 | struct ahash_alg template_ahash; |
| 1636 | u32 alg_type; |
| 1637 | u32 alg_op; |
| 1638 | }; |
| 1639 | |
| 1640 | /* ahash descriptors */ |
| 1641 | static struct caam_hash_template driver_hash[] = { |
| 1642 | { |
Yuan Kang | b0e09ba | 2012-06-22 19:48:48 -0500 | [diff] [blame] | 1643 | .name = "sha1", |
| 1644 | .driver_name = "sha1-caam", |
| 1645 | .hmac_name = "hmac(sha1)", |
| 1646 | .hmac_driver_name = "hmac-sha1-caam", |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 1647 | .blocksize = SHA1_BLOCK_SIZE, |
| 1648 | .template_ahash = { |
| 1649 | .init = ahash_init, |
| 1650 | .update = ahash_update, |
| 1651 | .final = ahash_final, |
| 1652 | .finup = ahash_finup, |
| 1653 | .digest = ahash_digest, |
| 1654 | .export = ahash_export, |
| 1655 | .import = ahash_import, |
| 1656 | .setkey = ahash_setkey, |
| 1657 | .halg = { |
| 1658 | .digestsize = SHA1_DIGEST_SIZE, |
Russell King | 5ec9083 | 2015-10-18 17:51:25 +0100 | [diff] [blame] | 1659 | .statesize = sizeof(struct caam_export_state), |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 1660 | }, |
Russell King | 659f313 | 2015-10-18 17:51:31 +0100 | [diff] [blame] | 1661 | }, |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 1662 | .alg_type = OP_ALG_ALGSEL_SHA1, |
| 1663 | .alg_op = OP_ALG_ALGSEL_SHA1 | OP_ALG_AAI_HMAC, |
| 1664 | }, { |
Yuan Kang | b0e09ba | 2012-06-22 19:48:48 -0500 | [diff] [blame] | 1665 | .name = "sha224", |
| 1666 | .driver_name = "sha224-caam", |
| 1667 | .hmac_name = "hmac(sha224)", |
| 1668 | .hmac_driver_name = "hmac-sha224-caam", |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 1669 | .blocksize = SHA224_BLOCK_SIZE, |
| 1670 | .template_ahash = { |
| 1671 | .init = ahash_init, |
| 1672 | .update = ahash_update, |
| 1673 | .final = ahash_final, |
| 1674 | .finup = ahash_finup, |
| 1675 | .digest = ahash_digest, |
| 1676 | .export = ahash_export, |
| 1677 | .import = ahash_import, |
| 1678 | .setkey = ahash_setkey, |
| 1679 | .halg = { |
| 1680 | .digestsize = SHA224_DIGEST_SIZE, |
Russell King | 5ec9083 | 2015-10-18 17:51:25 +0100 | [diff] [blame] | 1681 | .statesize = sizeof(struct caam_export_state), |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 1682 | }, |
Russell King | 659f313 | 2015-10-18 17:51:31 +0100 | [diff] [blame] | 1683 | }, |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 1684 | .alg_type = OP_ALG_ALGSEL_SHA224, |
| 1685 | .alg_op = OP_ALG_ALGSEL_SHA224 | OP_ALG_AAI_HMAC, |
| 1686 | }, { |
Yuan Kang | b0e09ba | 2012-06-22 19:48:48 -0500 | [diff] [blame] | 1687 | .name = "sha256", |
| 1688 | .driver_name = "sha256-caam", |
| 1689 | .hmac_name = "hmac(sha256)", |
| 1690 | .hmac_driver_name = "hmac-sha256-caam", |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 1691 | .blocksize = SHA256_BLOCK_SIZE, |
| 1692 | .template_ahash = { |
| 1693 | .init = ahash_init, |
| 1694 | .update = ahash_update, |
| 1695 | .final = ahash_final, |
| 1696 | .finup = ahash_finup, |
| 1697 | .digest = ahash_digest, |
| 1698 | .export = ahash_export, |
| 1699 | .import = ahash_import, |
| 1700 | .setkey = ahash_setkey, |
| 1701 | .halg = { |
| 1702 | .digestsize = SHA256_DIGEST_SIZE, |
Russell King | 5ec9083 | 2015-10-18 17:51:25 +0100 | [diff] [blame] | 1703 | .statesize = sizeof(struct caam_export_state), |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 1704 | }, |
Russell King | 659f313 | 2015-10-18 17:51:31 +0100 | [diff] [blame] | 1705 | }, |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 1706 | .alg_type = OP_ALG_ALGSEL_SHA256, |
| 1707 | .alg_op = OP_ALG_ALGSEL_SHA256 | OP_ALG_AAI_HMAC, |
| 1708 | }, { |
Yuan Kang | b0e09ba | 2012-06-22 19:48:48 -0500 | [diff] [blame] | 1709 | .name = "sha384", |
| 1710 | .driver_name = "sha384-caam", |
| 1711 | .hmac_name = "hmac(sha384)", |
| 1712 | .hmac_driver_name = "hmac-sha384-caam", |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 1713 | .blocksize = SHA384_BLOCK_SIZE, |
| 1714 | .template_ahash = { |
| 1715 | .init = ahash_init, |
| 1716 | .update = ahash_update, |
| 1717 | .final = ahash_final, |
| 1718 | .finup = ahash_finup, |
| 1719 | .digest = ahash_digest, |
| 1720 | .export = ahash_export, |
| 1721 | .import = ahash_import, |
| 1722 | .setkey = ahash_setkey, |
| 1723 | .halg = { |
| 1724 | .digestsize = SHA384_DIGEST_SIZE, |
Russell King | 5ec9083 | 2015-10-18 17:51:25 +0100 | [diff] [blame] | 1725 | .statesize = sizeof(struct caam_export_state), |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 1726 | }, |
Russell King | 659f313 | 2015-10-18 17:51:31 +0100 | [diff] [blame] | 1727 | }, |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 1728 | .alg_type = OP_ALG_ALGSEL_SHA384, |
| 1729 | .alg_op = OP_ALG_ALGSEL_SHA384 | OP_ALG_AAI_HMAC, |
| 1730 | }, { |
Yuan Kang | b0e09ba | 2012-06-22 19:48:48 -0500 | [diff] [blame] | 1731 | .name = "sha512", |
| 1732 | .driver_name = "sha512-caam", |
| 1733 | .hmac_name = "hmac(sha512)", |
| 1734 | .hmac_driver_name = "hmac-sha512-caam", |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 1735 | .blocksize = SHA512_BLOCK_SIZE, |
| 1736 | .template_ahash = { |
| 1737 | .init = ahash_init, |
| 1738 | .update = ahash_update, |
| 1739 | .final = ahash_final, |
| 1740 | .finup = ahash_finup, |
| 1741 | .digest = ahash_digest, |
| 1742 | .export = ahash_export, |
| 1743 | .import = ahash_import, |
| 1744 | .setkey = ahash_setkey, |
| 1745 | .halg = { |
| 1746 | .digestsize = SHA512_DIGEST_SIZE, |
Russell King | 5ec9083 | 2015-10-18 17:51:25 +0100 | [diff] [blame] | 1747 | .statesize = sizeof(struct caam_export_state), |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 1748 | }, |
Russell King | 659f313 | 2015-10-18 17:51:31 +0100 | [diff] [blame] | 1749 | }, |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 1750 | .alg_type = OP_ALG_ALGSEL_SHA512, |
| 1751 | .alg_op = OP_ALG_ALGSEL_SHA512 | OP_ALG_AAI_HMAC, |
| 1752 | }, { |
Yuan Kang | b0e09ba | 2012-06-22 19:48:48 -0500 | [diff] [blame] | 1753 | .name = "md5", |
| 1754 | .driver_name = "md5-caam", |
| 1755 | .hmac_name = "hmac(md5)", |
| 1756 | .hmac_driver_name = "hmac-md5-caam", |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 1757 | .blocksize = MD5_BLOCK_WORDS * 4, |
| 1758 | .template_ahash = { |
| 1759 | .init = ahash_init, |
| 1760 | .update = ahash_update, |
| 1761 | .final = ahash_final, |
| 1762 | .finup = ahash_finup, |
| 1763 | .digest = ahash_digest, |
| 1764 | .export = ahash_export, |
| 1765 | .import = ahash_import, |
| 1766 | .setkey = ahash_setkey, |
| 1767 | .halg = { |
| 1768 | .digestsize = MD5_DIGEST_SIZE, |
Russell King | 5ec9083 | 2015-10-18 17:51:25 +0100 | [diff] [blame] | 1769 | .statesize = sizeof(struct caam_export_state), |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 1770 | }, |
Russell King | 659f313 | 2015-10-18 17:51:31 +0100 | [diff] [blame] | 1771 | }, |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 1772 | .alg_type = OP_ALG_ALGSEL_MD5, |
| 1773 | .alg_op = OP_ALG_ALGSEL_MD5 | OP_ALG_AAI_HMAC, |
| 1774 | }, |
| 1775 | }; |
| 1776 | |
| 1777 | struct caam_hash_alg { |
| 1778 | struct list_head entry; |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 1779 | int alg_type; |
| 1780 | int alg_op; |
| 1781 | struct ahash_alg ahash_alg; |
| 1782 | }; |
| 1783 | |
| 1784 | static int caam_hash_cra_init(struct crypto_tfm *tfm) |
| 1785 | { |
| 1786 | struct crypto_ahash *ahash = __crypto_ahash_cast(tfm); |
| 1787 | struct crypto_alg *base = tfm->__crt_alg; |
| 1788 | struct hash_alg_common *halg = |
| 1789 | container_of(base, struct hash_alg_common, base); |
| 1790 | struct ahash_alg *alg = |
| 1791 | container_of(halg, struct ahash_alg, halg); |
| 1792 | struct caam_hash_alg *caam_hash = |
| 1793 | container_of(alg, struct caam_hash_alg, ahash_alg); |
| 1794 | struct caam_hash_ctx *ctx = crypto_tfm_ctx(tfm); |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 1795 | /* Sizes for MDHA running digests: MD5, SHA1, 224, 256, 384, 512 */ |
| 1796 | static const u8 runninglen[] = { HASH_MSG_LEN + MD5_DIGEST_SIZE, |
| 1797 | HASH_MSG_LEN + SHA1_DIGEST_SIZE, |
| 1798 | HASH_MSG_LEN + 32, |
| 1799 | HASH_MSG_LEN + SHA256_DIGEST_SIZE, |
| 1800 | HASH_MSG_LEN + 64, |
| 1801 | HASH_MSG_LEN + SHA512_DIGEST_SIZE }; |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 1802 | int ret = 0; |
| 1803 | |
| 1804 | /* |
Ruchika Gupta | cfc6f11 | 2013-10-25 12:01:03 +0530 | [diff] [blame] | 1805 | * Get a Job ring from Job Ring driver to ensure in-order |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 1806 | * crypto request processing per tfm |
| 1807 | */ |
Ruchika Gupta | cfc6f11 | 2013-10-25 12:01:03 +0530 | [diff] [blame] | 1808 | ctx->jrdev = caam_jr_alloc(); |
| 1809 | if (IS_ERR(ctx->jrdev)) { |
| 1810 | pr_err("Job Ring Device allocation for transform failed\n"); |
| 1811 | return PTR_ERR(ctx->jrdev); |
| 1812 | } |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 1813 | /* copy descriptor header template value */ |
| 1814 | ctx->alg_type = OP_TYPE_CLASS2_ALG | caam_hash->alg_type; |
| 1815 | ctx->alg_op = OP_TYPE_CLASS2_ALG | caam_hash->alg_op; |
| 1816 | |
| 1817 | ctx->ctx_len = runninglen[(ctx->alg_op & OP_ALG_ALGSEL_SUBMASK) >> |
| 1818 | OP_ALG_ALGSEL_SHIFT]; |
| 1819 | |
| 1820 | crypto_ahash_set_reqsize(__crypto_ahash_cast(tfm), |
| 1821 | sizeof(struct caam_hash_state)); |
| 1822 | |
| 1823 | ret = ahash_set_sh_desc(ahash); |
| 1824 | |
| 1825 | return ret; |
| 1826 | } |
| 1827 | |
| 1828 | static void caam_hash_cra_exit(struct crypto_tfm *tfm) |
| 1829 | { |
| 1830 | struct caam_hash_ctx *ctx = crypto_tfm_ctx(tfm); |
| 1831 | |
| 1832 | if (ctx->sh_desc_update_dma && |
| 1833 | !dma_mapping_error(ctx->jrdev, ctx->sh_desc_update_dma)) |
| 1834 | dma_unmap_single(ctx->jrdev, ctx->sh_desc_update_dma, |
| 1835 | desc_bytes(ctx->sh_desc_update), |
| 1836 | DMA_TO_DEVICE); |
| 1837 | if (ctx->sh_desc_update_first_dma && |
| 1838 | !dma_mapping_error(ctx->jrdev, ctx->sh_desc_update_first_dma)) |
| 1839 | dma_unmap_single(ctx->jrdev, ctx->sh_desc_update_first_dma, |
| 1840 | desc_bytes(ctx->sh_desc_update_first), |
| 1841 | DMA_TO_DEVICE); |
| 1842 | if (ctx->sh_desc_fin_dma && |
| 1843 | !dma_mapping_error(ctx->jrdev, ctx->sh_desc_fin_dma)) |
| 1844 | dma_unmap_single(ctx->jrdev, ctx->sh_desc_fin_dma, |
| 1845 | desc_bytes(ctx->sh_desc_fin), DMA_TO_DEVICE); |
| 1846 | if (ctx->sh_desc_digest_dma && |
| 1847 | !dma_mapping_error(ctx->jrdev, ctx->sh_desc_digest_dma)) |
| 1848 | dma_unmap_single(ctx->jrdev, ctx->sh_desc_digest_dma, |
| 1849 | desc_bytes(ctx->sh_desc_digest), |
| 1850 | DMA_TO_DEVICE); |
| 1851 | if (ctx->sh_desc_finup_dma && |
| 1852 | !dma_mapping_error(ctx->jrdev, ctx->sh_desc_finup_dma)) |
| 1853 | dma_unmap_single(ctx->jrdev, ctx->sh_desc_finup_dma, |
| 1854 | desc_bytes(ctx->sh_desc_finup), DMA_TO_DEVICE); |
Ruchika Gupta | cfc6f11 | 2013-10-25 12:01:03 +0530 | [diff] [blame] | 1855 | |
| 1856 | caam_jr_free(ctx->jrdev); |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 1857 | } |
| 1858 | |
| 1859 | static void __exit caam_algapi_hash_exit(void) |
| 1860 | { |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 1861 | struct caam_hash_alg *t_alg, *n; |
| 1862 | |
Ruchika Gupta | cfc6f11 | 2013-10-25 12:01:03 +0530 | [diff] [blame] | 1863 | if (!hash_list.next) |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 1864 | return; |
| 1865 | |
Ruchika Gupta | cfc6f11 | 2013-10-25 12:01:03 +0530 | [diff] [blame] | 1866 | list_for_each_entry_safe(t_alg, n, &hash_list, entry) { |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 1867 | crypto_unregister_ahash(&t_alg->ahash_alg); |
| 1868 | list_del(&t_alg->entry); |
| 1869 | kfree(t_alg); |
| 1870 | } |
| 1871 | } |
| 1872 | |
| 1873 | static struct caam_hash_alg * |
Ruchika Gupta | cfc6f11 | 2013-10-25 12:01:03 +0530 | [diff] [blame] | 1874 | caam_hash_alloc(struct caam_hash_template *template, |
Yuan Kang | b0e09ba | 2012-06-22 19:48:48 -0500 | [diff] [blame] | 1875 | bool keyed) |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 1876 | { |
| 1877 | struct caam_hash_alg *t_alg; |
| 1878 | struct ahash_alg *halg; |
| 1879 | struct crypto_alg *alg; |
| 1880 | |
Fabio Estevam | 9c4f973 | 2015-08-21 13:52:00 -0300 | [diff] [blame] | 1881 | t_alg = kzalloc(sizeof(*t_alg), GFP_KERNEL); |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 1882 | if (!t_alg) { |
Ruchika Gupta | cfc6f11 | 2013-10-25 12:01:03 +0530 | [diff] [blame] | 1883 | pr_err("failed to allocate t_alg\n"); |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 1884 | return ERR_PTR(-ENOMEM); |
| 1885 | } |
| 1886 | |
| 1887 | t_alg->ahash_alg = template->template_ahash; |
| 1888 | halg = &t_alg->ahash_alg; |
| 1889 | alg = &halg->halg.base; |
| 1890 | |
Yuan Kang | b0e09ba | 2012-06-22 19:48:48 -0500 | [diff] [blame] | 1891 | if (keyed) { |
| 1892 | snprintf(alg->cra_name, CRYPTO_MAX_ALG_NAME, "%s", |
| 1893 | template->hmac_name); |
| 1894 | snprintf(alg->cra_driver_name, CRYPTO_MAX_ALG_NAME, "%s", |
| 1895 | template->hmac_driver_name); |
| 1896 | } else { |
| 1897 | snprintf(alg->cra_name, CRYPTO_MAX_ALG_NAME, "%s", |
| 1898 | template->name); |
| 1899 | snprintf(alg->cra_driver_name, CRYPTO_MAX_ALG_NAME, "%s", |
| 1900 | template->driver_name); |
Russell King | a0118c8 | 2016-08-09 08:27:17 +0100 | [diff] [blame] | 1901 | t_alg->ahash_alg.setkey = NULL; |
Yuan Kang | b0e09ba | 2012-06-22 19:48:48 -0500 | [diff] [blame] | 1902 | } |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 1903 | alg->cra_module = THIS_MODULE; |
| 1904 | alg->cra_init = caam_hash_cra_init; |
| 1905 | alg->cra_exit = caam_hash_cra_exit; |
| 1906 | alg->cra_ctxsize = sizeof(struct caam_hash_ctx); |
| 1907 | alg->cra_priority = CAAM_CRA_PRIORITY; |
| 1908 | alg->cra_blocksize = template->blocksize; |
| 1909 | alg->cra_alignmask = 0; |
| 1910 | alg->cra_flags = CRYPTO_ALG_ASYNC | CRYPTO_ALG_TYPE_AHASH; |
| 1911 | alg->cra_type = &crypto_ahash_type; |
| 1912 | |
| 1913 | t_alg->alg_type = template->alg_type; |
| 1914 | t_alg->alg_op = template->alg_op; |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 1915 | |
| 1916 | return t_alg; |
| 1917 | } |
| 1918 | |
| 1919 | static int __init caam_algapi_hash_init(void) |
| 1920 | { |
Ruchika Gupta | 35af640 | 2014-07-07 10:42:12 +0530 | [diff] [blame] | 1921 | struct device_node *dev_node; |
| 1922 | struct platform_device *pdev; |
| 1923 | struct device *ctrldev; |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 1924 | int i = 0, err = 0; |
Victoria Milhoan | bf83490 | 2015-08-05 11:28:48 -0700 | [diff] [blame] | 1925 | struct caam_drv_private *priv; |
| 1926 | unsigned int md_limit = SHA512_DIGEST_SIZE; |
| 1927 | u32 cha_inst, cha_vid; |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 1928 | |
Ruchika Gupta | 35af640 | 2014-07-07 10:42:12 +0530 | [diff] [blame] | 1929 | dev_node = of_find_compatible_node(NULL, NULL, "fsl,sec-v4.0"); |
| 1930 | if (!dev_node) { |
| 1931 | dev_node = of_find_compatible_node(NULL, NULL, "fsl,sec4.0"); |
| 1932 | if (!dev_node) |
| 1933 | return -ENODEV; |
| 1934 | } |
| 1935 | |
| 1936 | pdev = of_find_device_by_node(dev_node); |
| 1937 | if (!pdev) { |
| 1938 | of_node_put(dev_node); |
| 1939 | return -ENODEV; |
| 1940 | } |
| 1941 | |
| 1942 | ctrldev = &pdev->dev; |
| 1943 | priv = dev_get_drvdata(ctrldev); |
| 1944 | of_node_put(dev_node); |
| 1945 | |
| 1946 | /* |
| 1947 | * If priv is NULL, it's probably because the caam driver wasn't |
| 1948 | * properly initialized (e.g. RNG4 init failed). Thus, bail out here. |
| 1949 | */ |
| 1950 | if (!priv) |
| 1951 | return -ENODEV; |
| 1952 | |
Victoria Milhoan | bf83490 | 2015-08-05 11:28:48 -0700 | [diff] [blame] | 1953 | /* |
| 1954 | * Register crypto algorithms the device supports. First, identify |
| 1955 | * presence and attributes of MD block. |
| 1956 | */ |
| 1957 | cha_vid = rd_reg32(&priv->ctrl->perfmon.cha_id_ls); |
| 1958 | cha_inst = rd_reg32(&priv->ctrl->perfmon.cha_num_ls); |
| 1959 | |
| 1960 | /* |
| 1961 | * Skip registration of any hashing algorithms if MD block |
| 1962 | * is not present. |
| 1963 | */ |
| 1964 | if (!((cha_inst & CHA_ID_LS_MD_MASK) >> CHA_ID_LS_MD_SHIFT)) |
| 1965 | return -ENODEV; |
| 1966 | |
| 1967 | /* Limit digest size based on LP256 */ |
| 1968 | if ((cha_vid & CHA_ID_LS_MD_MASK) == CHA_ID_LS_MD_LP256) |
| 1969 | md_limit = SHA256_DIGEST_SIZE; |
| 1970 | |
Ruchika Gupta | cfc6f11 | 2013-10-25 12:01:03 +0530 | [diff] [blame] | 1971 | INIT_LIST_HEAD(&hash_list); |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 1972 | |
| 1973 | /* register crypto algorithms the device supports */ |
| 1974 | for (i = 0; i < ARRAY_SIZE(driver_hash); i++) { |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 1975 | struct caam_hash_alg *t_alg; |
Victoria Milhoan | bf83490 | 2015-08-05 11:28:48 -0700 | [diff] [blame] | 1976 | struct caam_hash_template *alg = driver_hash + i; |
| 1977 | |
| 1978 | /* If MD size is not supported by device, skip registration */ |
| 1979 | if (alg->template_ahash.halg.digestsize > md_limit) |
| 1980 | continue; |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 1981 | |
Yuan Kang | b0e09ba | 2012-06-22 19:48:48 -0500 | [diff] [blame] | 1982 | /* register hmac version */ |
Victoria Milhoan | bf83490 | 2015-08-05 11:28:48 -0700 | [diff] [blame] | 1983 | t_alg = caam_hash_alloc(alg, true); |
Yuan Kang | b0e09ba | 2012-06-22 19:48:48 -0500 | [diff] [blame] | 1984 | if (IS_ERR(t_alg)) { |
| 1985 | err = PTR_ERR(t_alg); |
Victoria Milhoan | bf83490 | 2015-08-05 11:28:48 -0700 | [diff] [blame] | 1986 | pr_warn("%s alg allocation failed\n", alg->driver_name); |
Yuan Kang | b0e09ba | 2012-06-22 19:48:48 -0500 | [diff] [blame] | 1987 | continue; |
| 1988 | } |
| 1989 | |
| 1990 | err = crypto_register_ahash(&t_alg->ahash_alg); |
| 1991 | if (err) { |
Russell King | 6ea30f0 | 2015-10-18 17:51:10 +0100 | [diff] [blame] | 1992 | pr_warn("%s alg registration failed: %d\n", |
| 1993 | t_alg->ahash_alg.halg.base.cra_driver_name, |
| 1994 | err); |
Yuan Kang | b0e09ba | 2012-06-22 19:48:48 -0500 | [diff] [blame] | 1995 | kfree(t_alg); |
| 1996 | } else |
Ruchika Gupta | cfc6f11 | 2013-10-25 12:01:03 +0530 | [diff] [blame] | 1997 | list_add_tail(&t_alg->entry, &hash_list); |
Yuan Kang | b0e09ba | 2012-06-22 19:48:48 -0500 | [diff] [blame] | 1998 | |
| 1999 | /* register unkeyed version */ |
Victoria Milhoan | bf83490 | 2015-08-05 11:28:48 -0700 | [diff] [blame] | 2000 | t_alg = caam_hash_alloc(alg, false); |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 2001 | if (IS_ERR(t_alg)) { |
| 2002 | err = PTR_ERR(t_alg); |
Victoria Milhoan | bf83490 | 2015-08-05 11:28:48 -0700 | [diff] [blame] | 2003 | pr_warn("%s alg allocation failed\n", alg->driver_name); |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 2004 | continue; |
| 2005 | } |
| 2006 | |
| 2007 | err = crypto_register_ahash(&t_alg->ahash_alg); |
| 2008 | if (err) { |
Russell King | 6ea30f0 | 2015-10-18 17:51:10 +0100 | [diff] [blame] | 2009 | pr_warn("%s alg registration failed: %d\n", |
| 2010 | t_alg->ahash_alg.halg.base.cra_driver_name, |
| 2011 | err); |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 2012 | kfree(t_alg); |
| 2013 | } else |
Ruchika Gupta | cfc6f11 | 2013-10-25 12:01:03 +0530 | [diff] [blame] | 2014 | list_add_tail(&t_alg->entry, &hash_list); |
Yuan Kang | 045e367 | 2012-06-22 19:48:47 -0500 | [diff] [blame] | 2015 | } |
| 2016 | |
| 2017 | return err; |
| 2018 | } |
| 2019 | |
| 2020 | module_init(caam_algapi_hash_init); |
| 2021 | module_exit(caam_algapi_hash_exit); |
| 2022 | |
| 2023 | MODULE_LICENSE("GPL"); |
| 2024 | MODULE_DESCRIPTION("FSL CAAM support for ahash functions of crypto API"); |
| 2025 | MODULE_AUTHOR("Freescale Semiconductor - NMG"); |