Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 1 | /* |
| 2 | * caam - Freescale FSL CAAM support for crypto API |
| 3 | * |
| 4 | * Copyright 2008-2011 Freescale Semiconductor, Inc. |
| 5 | * |
| 6 | * Based on talitos crypto API driver. |
| 7 | * |
| 8 | * relationship of job descriptors to shared descriptors (SteveC Dec 10 2008): |
| 9 | * |
| 10 | * --------------- --------------- |
| 11 | * | JobDesc #1 |-------------------->| ShareDesc | |
| 12 | * | *(packet 1) | | (PDB) | |
| 13 | * --------------- |------------->| (hashKey) | |
| 14 | * . | | (cipherKey) | |
| 15 | * . | |-------->| (operation) | |
| 16 | * --------------- | | --------------- |
| 17 | * | JobDesc #2 |------| | |
| 18 | * | *(packet 2) | | |
| 19 | * --------------- | |
| 20 | * . | |
| 21 | * . | |
| 22 | * --------------- | |
| 23 | * | JobDesc #3 |------------ |
| 24 | * | *(packet 3) | |
| 25 | * --------------- |
| 26 | * |
| 27 | * The SharedDesc never changes for a connection unless rekeyed, but |
| 28 | * each packet will likely be in a different place. So all we need |
| 29 | * to know to process the packet is where the input is, where the |
| 30 | * output goes, and what context we want to process with. Context is |
| 31 | * in the SharedDesc, packet references in the JobDesc. |
| 32 | * |
| 33 | * So, a job desc looks like: |
| 34 | * |
| 35 | * --------------------- |
| 36 | * | Header | |
| 37 | * | ShareDesc Pointer | |
| 38 | * | SEQ_OUT_PTR | |
| 39 | * | (output buffer) | |
| 40 | * | SEQ_IN_PTR | |
| 41 | * | (input buffer) | |
| 42 | * | LOAD (to DECO) | |
| 43 | * --------------------- |
| 44 | */ |
| 45 | |
| 46 | #include "compat.h" |
| 47 | |
| 48 | #include "regs.h" |
| 49 | #include "intern.h" |
| 50 | #include "desc_constr.h" |
| 51 | #include "jr.h" |
| 52 | #include "error.h" |
| 53 | |
| 54 | /* |
| 55 | * crypto alg |
| 56 | */ |
| 57 | #define CAAM_CRA_PRIORITY 3000 |
| 58 | /* max key is sum of AES_MAX_KEY_SIZE, max split key size */ |
| 59 | #define CAAM_MAX_KEY_SIZE (AES_MAX_KEY_SIZE + \ |
| 60 | SHA512_DIGEST_SIZE * 2) |
| 61 | /* max IV is max of AES_BLOCK_SIZE, DES3_EDE_BLOCK_SIZE */ |
| 62 | #define CAAM_MAX_IV_LENGTH 16 |
| 63 | |
Kim Phillips | 4427b1b | 2011-05-14 22:08:17 -0500 | [diff] [blame] | 64 | /* length of descriptors text */ |
Yuan Kang | 1acebad | 2011-07-15 11:21:42 +0800 | [diff] [blame^] | 65 | #define DESC_JOB_IO_LEN (CAAM_CMD_SZ * 3 + CAAM_PTR_SZ * 3) |
| 66 | |
| 67 | #define DESC_AEAD_BASE (4 * CAAM_CMD_SZ) |
| 68 | #define DESC_AEAD_ENC_LEN (DESC_AEAD_BASE + 16 * CAAM_CMD_SZ) |
| 69 | #define DESC_AEAD_DEC_LEN (DESC_AEAD_BASE + 21 * CAAM_CMD_SZ) |
| 70 | #define DESC_AEAD_GIVENC_LEN (DESC_AEAD_ENC_LEN + 7 * CAAM_CMD_SZ) |
| 71 | |
| 72 | #define DESC_MAX_USED_BYTES (DESC_AEAD_GIVENC_LEN + \ |
| 73 | CAAM_MAX_KEY_SIZE) |
| 74 | #define DESC_MAX_USED_LEN (DESC_MAX_USED_BYTES / CAAM_CMD_SZ) |
Kim Phillips | 4427b1b | 2011-05-14 22:08:17 -0500 | [diff] [blame] | 75 | |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 76 | #ifdef DEBUG |
| 77 | /* for print_hex_dumps with line references */ |
| 78 | #define xstr(s) str(s) |
| 79 | #define str(s) #s |
| 80 | #define debug(format, arg...) printk(format, arg) |
| 81 | #else |
| 82 | #define debug(format, arg...) |
| 83 | #endif |
| 84 | |
Yuan Kang | 1acebad | 2011-07-15 11:21:42 +0800 | [diff] [blame^] | 85 | /* Set DK bit in class 1 operation if shared */ |
| 86 | static inline void append_dec_op1(u32 *desc, u32 type) |
| 87 | { |
| 88 | u32 *jump_cmd, *uncond_jump_cmd; |
| 89 | |
| 90 | jump_cmd = append_jump(desc, JUMP_TEST_ALL | JUMP_COND_SHRD); |
| 91 | append_operation(desc, type | OP_ALG_AS_INITFINAL | |
| 92 | OP_ALG_DECRYPT); |
| 93 | uncond_jump_cmd = append_jump(desc, JUMP_TEST_ALL); |
| 94 | set_jump_tgt_here(desc, jump_cmd); |
| 95 | append_operation(desc, type | OP_ALG_AS_INITFINAL | |
| 96 | OP_ALG_DECRYPT | OP_ALG_AAI_DK); |
| 97 | set_jump_tgt_here(desc, uncond_jump_cmd); |
| 98 | } |
| 99 | |
| 100 | /* |
| 101 | * Wait for completion of class 1 key loading before allowing |
| 102 | * error propagation |
| 103 | */ |
| 104 | static inline void append_dec_shr_done(u32 *desc) |
| 105 | { |
| 106 | u32 *jump_cmd; |
| 107 | |
| 108 | jump_cmd = append_jump(desc, JUMP_CLASS_CLASS1 | JUMP_TEST_ALL); |
| 109 | set_jump_tgt_here(desc, jump_cmd); |
| 110 | append_cmd(desc, SET_OK_PROP_ERRORS | CMD_LOAD); |
| 111 | } |
| 112 | |
| 113 | /* |
| 114 | * For aead functions, read payload and write payload, |
| 115 | * both of which are specified in req->src and req->dst |
| 116 | */ |
| 117 | static inline void aead_append_src_dst(u32 *desc, u32 msg_type) |
| 118 | { |
| 119 | append_seq_fifo_load(desc, 0, FIFOLD_CLASS_BOTH | |
| 120 | KEY_VLF | msg_type | FIFOLD_TYPE_LASTBOTH); |
| 121 | append_seq_fifo_store(desc, 0, FIFOST_TYPE_MESSAGE_DATA | KEY_VLF); |
| 122 | } |
| 123 | |
| 124 | /* |
| 125 | * For aead encrypt and decrypt, read iv for both classes |
| 126 | */ |
| 127 | static inline void aead_append_ld_iv(u32 *desc, int ivsize) |
| 128 | { |
| 129 | append_cmd(desc, CMD_SEQ_LOAD | LDST_SRCDST_BYTE_CONTEXT | |
| 130 | LDST_CLASS_1_CCB | ivsize); |
| 131 | append_move(desc, MOVE_SRC_CLASS1CTX | MOVE_DEST_CLASS2INFIFO | ivsize); |
| 132 | } |
| 133 | |
| 134 | /* |
| 135 | * If all data, including src (with assoc and iv) or dst (with iv only) are |
| 136 | * contiguous |
| 137 | */ |
| 138 | #define GIV_SRC_CONTIG 1 |
| 139 | #define GIV_DST_CONTIG (1 << 1) |
| 140 | |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 141 | /* |
| 142 | * per-session context |
| 143 | */ |
| 144 | struct caam_ctx { |
| 145 | struct device *jrdev; |
Yuan Kang | 1acebad | 2011-07-15 11:21:42 +0800 | [diff] [blame^] | 146 | u32 sh_desc_enc[DESC_MAX_USED_LEN]; |
| 147 | u32 sh_desc_dec[DESC_MAX_USED_LEN]; |
| 148 | u32 sh_desc_givenc[DESC_MAX_USED_LEN]; |
| 149 | dma_addr_t sh_desc_enc_dma; |
| 150 | dma_addr_t sh_desc_dec_dma; |
| 151 | dma_addr_t sh_desc_givenc_dma; |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 152 | u32 class1_alg_type; |
| 153 | u32 class2_alg_type; |
| 154 | u32 alg_op; |
Yuan Kang | 1acebad | 2011-07-15 11:21:42 +0800 | [diff] [blame^] | 155 | u8 key[CAAM_MAX_KEY_SIZE]; |
Yuan Kang | 885e9e2 | 2011-07-15 11:21:41 +0800 | [diff] [blame] | 156 | dma_addr_t key_dma; |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 157 | unsigned int enckeylen; |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 158 | unsigned int split_key_len; |
| 159 | unsigned int split_key_pad_len; |
| 160 | unsigned int authsize; |
| 161 | }; |
| 162 | |
Yuan Kang | 1acebad | 2011-07-15 11:21:42 +0800 | [diff] [blame^] | 163 | static void append_key_aead(u32 *desc, struct caam_ctx *ctx, |
| 164 | int keys_fit_inline) |
| 165 | { |
| 166 | if (keys_fit_inline) { |
| 167 | append_key_as_imm(desc, ctx->key, ctx->split_key_pad_len, |
| 168 | ctx->split_key_len, CLASS_2 | |
| 169 | KEY_DEST_MDHA_SPLIT | KEY_ENC); |
| 170 | append_key_as_imm(desc, (void *)ctx->key + |
| 171 | ctx->split_key_pad_len, ctx->enckeylen, |
| 172 | ctx->enckeylen, CLASS_1 | KEY_DEST_CLASS_REG); |
| 173 | } else { |
| 174 | append_key(desc, ctx->key_dma, ctx->split_key_len, CLASS_2 | |
| 175 | KEY_DEST_MDHA_SPLIT | KEY_ENC); |
| 176 | append_key(desc, ctx->key_dma + ctx->split_key_pad_len, |
| 177 | ctx->enckeylen, CLASS_1 | KEY_DEST_CLASS_REG); |
| 178 | } |
| 179 | } |
| 180 | |
| 181 | static void init_sh_desc_key_aead(u32 *desc, struct caam_ctx *ctx, |
| 182 | int keys_fit_inline) |
| 183 | { |
| 184 | u32 *key_jump_cmd; |
| 185 | |
| 186 | init_sh_desc(desc, HDR_SHARE_WAIT); |
| 187 | |
| 188 | /* Skip if already shared */ |
| 189 | key_jump_cmd = append_jump(desc, JUMP_JSL | JUMP_TEST_ALL | |
| 190 | JUMP_COND_SHRD); |
| 191 | |
| 192 | append_key_aead(desc, ctx, keys_fit_inline); |
| 193 | |
| 194 | set_jump_tgt_here(desc, key_jump_cmd); |
| 195 | |
| 196 | /* Propagate errors from shared to job descriptor */ |
| 197 | append_cmd(desc, SET_OK_PROP_ERRORS | CMD_LOAD); |
| 198 | } |
| 199 | |
| 200 | static int aead_set_sh_desc(struct crypto_aead *aead) |
| 201 | { |
| 202 | struct aead_tfm *tfm = &aead->base.crt_aead; |
| 203 | struct caam_ctx *ctx = crypto_aead_ctx(aead); |
| 204 | struct device *jrdev = ctx->jrdev; |
| 205 | bool keys_fit_inline = 0; |
| 206 | u32 *key_jump_cmd, *jump_cmd; |
| 207 | u32 geniv, moveiv; |
| 208 | u32 *desc; |
| 209 | |
| 210 | if (!ctx->enckeylen || !ctx->authsize) |
| 211 | return 0; |
| 212 | |
| 213 | /* |
| 214 | * Job Descriptor and Shared Descriptors |
| 215 | * must all fit into the 64-word Descriptor h/w Buffer |
| 216 | */ |
| 217 | if (DESC_AEAD_ENC_LEN + DESC_JOB_IO_LEN + |
| 218 | ctx->split_key_pad_len + ctx->enckeylen <= |
| 219 | CAAM_DESC_BYTES_MAX) |
| 220 | keys_fit_inline = 1; |
| 221 | |
| 222 | /* aead_encrypt shared descriptor */ |
| 223 | desc = ctx->sh_desc_enc; |
| 224 | |
| 225 | init_sh_desc_key_aead(desc, ctx, keys_fit_inline); |
| 226 | |
| 227 | /* Class 2 operation */ |
| 228 | append_operation(desc, ctx->class2_alg_type | |
| 229 | OP_ALG_AS_INITFINAL | OP_ALG_ENCRYPT); |
| 230 | |
| 231 | /* cryptlen = seqoutlen - authsize */ |
| 232 | append_math_sub_imm_u32(desc, REG3, SEQOUTLEN, IMM, ctx->authsize); |
| 233 | |
| 234 | /* assoclen + cryptlen = seqinlen - ivsize */ |
| 235 | append_math_sub_imm_u32(desc, REG2, SEQINLEN, IMM, tfm->ivsize); |
| 236 | |
| 237 | /* assoclen + cryptlen = (assoclen + cryptlen) - cryptlen */ |
| 238 | append_math_sub(desc, VARSEQINLEN, REG2, REG3, CAAM_CMD_SZ); |
| 239 | |
| 240 | /* read assoc before reading payload */ |
| 241 | append_seq_fifo_load(desc, 0, FIFOLD_CLASS_CLASS2 | FIFOLD_TYPE_MSG | |
| 242 | KEY_VLF); |
| 243 | aead_append_ld_iv(desc, tfm->ivsize); |
| 244 | |
| 245 | /* Class 1 operation */ |
| 246 | append_operation(desc, ctx->class1_alg_type | |
| 247 | OP_ALG_AS_INITFINAL | OP_ALG_ENCRYPT); |
| 248 | |
| 249 | /* Read and write cryptlen bytes */ |
| 250 | append_math_add(desc, VARSEQINLEN, ZERO, REG3, CAAM_CMD_SZ); |
| 251 | append_math_add(desc, VARSEQOUTLEN, ZERO, REG3, CAAM_CMD_SZ); |
| 252 | aead_append_src_dst(desc, FIFOLD_TYPE_MSG1OUT2); |
| 253 | |
| 254 | /* Write ICV */ |
| 255 | append_seq_store(desc, ctx->authsize, LDST_CLASS_2_CCB | |
| 256 | LDST_SRCDST_BYTE_CONTEXT); |
| 257 | |
| 258 | ctx->sh_desc_enc_dma = dma_map_single(jrdev, desc, |
| 259 | desc_bytes(desc), |
| 260 | DMA_TO_DEVICE); |
| 261 | if (dma_mapping_error(jrdev, ctx->sh_desc_enc_dma)) { |
| 262 | dev_err(jrdev, "unable to map shared descriptor\n"); |
| 263 | return -ENOMEM; |
| 264 | } |
| 265 | #ifdef DEBUG |
| 266 | print_hex_dump(KERN_ERR, "aead enc shdesc@"xstr(__LINE__)": ", |
| 267 | DUMP_PREFIX_ADDRESS, 16, 4, desc, |
| 268 | desc_bytes(desc), 1); |
| 269 | #endif |
| 270 | |
| 271 | /* |
| 272 | * Job Descriptor and Shared Descriptors |
| 273 | * must all fit into the 64-word Descriptor h/w Buffer |
| 274 | */ |
| 275 | if (DESC_AEAD_DEC_LEN + DESC_JOB_IO_LEN + |
| 276 | ctx->split_key_pad_len + ctx->enckeylen <= |
| 277 | CAAM_DESC_BYTES_MAX) |
| 278 | keys_fit_inline = 1; |
| 279 | |
| 280 | desc = ctx->sh_desc_dec; |
| 281 | |
| 282 | /* aead_decrypt shared descriptor */ |
| 283 | init_sh_desc(desc, HDR_SHARE_WAIT); |
| 284 | |
| 285 | /* Skip if already shared */ |
| 286 | key_jump_cmd = append_jump(desc, JUMP_JSL | JUMP_TEST_ALL | |
| 287 | JUMP_COND_SHRD); |
| 288 | |
| 289 | append_key_aead(desc, ctx, keys_fit_inline); |
| 290 | |
| 291 | /* Only propagate error immediately if shared */ |
| 292 | jump_cmd = append_jump(desc, JUMP_TEST_ALL); |
| 293 | set_jump_tgt_here(desc, key_jump_cmd); |
| 294 | append_cmd(desc, SET_OK_PROP_ERRORS | CMD_LOAD); |
| 295 | set_jump_tgt_here(desc, jump_cmd); |
| 296 | |
| 297 | /* Class 2 operation */ |
| 298 | append_operation(desc, ctx->class2_alg_type | |
| 299 | OP_ALG_AS_INITFINAL | OP_ALG_DECRYPT | OP_ALG_ICV_ON); |
| 300 | |
| 301 | /* assoclen + cryptlen = seqinlen - ivsize */ |
| 302 | append_math_sub_imm_u32(desc, REG3, SEQINLEN, IMM, |
| 303 | ctx->authsize + tfm->ivsize) |
| 304 | /* assoclen = (assoclen + cryptlen) - cryptlen */ |
| 305 | append_math_sub(desc, REG2, SEQOUTLEN, REG0, CAAM_CMD_SZ); |
| 306 | append_math_sub(desc, VARSEQINLEN, REG3, REG2, CAAM_CMD_SZ); |
| 307 | |
| 308 | /* read assoc before reading payload */ |
| 309 | append_seq_fifo_load(desc, 0, FIFOLD_CLASS_CLASS2 | FIFOLD_TYPE_MSG | |
| 310 | KEY_VLF); |
| 311 | |
| 312 | aead_append_ld_iv(desc, tfm->ivsize); |
| 313 | |
| 314 | append_dec_op1(desc, ctx->class1_alg_type); |
| 315 | |
| 316 | /* Read and write cryptlen bytes */ |
| 317 | append_math_add(desc, VARSEQINLEN, ZERO, REG2, CAAM_CMD_SZ); |
| 318 | append_math_add(desc, VARSEQOUTLEN, ZERO, REG2, CAAM_CMD_SZ); |
| 319 | aead_append_src_dst(desc, FIFOLD_TYPE_MSG); |
| 320 | |
| 321 | /* Load ICV */ |
| 322 | append_seq_fifo_load(desc, ctx->authsize, FIFOLD_CLASS_CLASS2 | |
| 323 | FIFOLD_TYPE_LAST2 | FIFOLD_TYPE_ICV); |
| 324 | append_dec_shr_done(desc); |
| 325 | |
| 326 | ctx->sh_desc_dec_dma = dma_map_single(jrdev, desc, |
| 327 | desc_bytes(desc), |
| 328 | DMA_TO_DEVICE); |
| 329 | if (dma_mapping_error(jrdev, ctx->sh_desc_dec_dma)) { |
| 330 | dev_err(jrdev, "unable to map shared descriptor\n"); |
| 331 | return -ENOMEM; |
| 332 | } |
| 333 | #ifdef DEBUG |
| 334 | print_hex_dump(KERN_ERR, "aead dec shdesc@"xstr(__LINE__)": ", |
| 335 | DUMP_PREFIX_ADDRESS, 16, 4, desc, |
| 336 | desc_bytes(desc), 1); |
| 337 | #endif |
| 338 | |
| 339 | /* |
| 340 | * Job Descriptor and Shared Descriptors |
| 341 | * must all fit into the 64-word Descriptor h/w Buffer |
| 342 | */ |
| 343 | if (DESC_AEAD_GIVENC_LEN + DESC_JOB_IO_LEN + |
| 344 | ctx->split_key_pad_len + ctx->enckeylen <= |
| 345 | CAAM_DESC_BYTES_MAX) |
| 346 | keys_fit_inline = 1; |
| 347 | |
| 348 | /* aead_givencrypt shared descriptor */ |
| 349 | desc = ctx->sh_desc_givenc; |
| 350 | |
| 351 | init_sh_desc_key_aead(desc, ctx, keys_fit_inline); |
| 352 | |
| 353 | /* Generate IV */ |
| 354 | geniv = NFIFOENTRY_STYPE_PAD | NFIFOENTRY_DEST_DECO | |
| 355 | NFIFOENTRY_DTYPE_MSG | NFIFOENTRY_LC1 | |
| 356 | NFIFOENTRY_PTYPE_RND | (tfm->ivsize << NFIFOENTRY_DLEN_SHIFT); |
| 357 | append_load_imm_u32(desc, geniv, LDST_CLASS_IND_CCB | |
| 358 | LDST_SRCDST_WORD_INFO_FIFO | LDST_IMM); |
| 359 | append_cmd(desc, CMD_LOAD | DISABLE_AUTO_INFO_FIFO); |
| 360 | append_move(desc, MOVE_SRC_INFIFO | |
| 361 | MOVE_DEST_CLASS1CTX | (tfm->ivsize << MOVE_LEN_SHIFT)); |
| 362 | append_cmd(desc, CMD_LOAD | ENABLE_AUTO_INFO_FIFO); |
| 363 | |
| 364 | /* Copy IV to class 1 context */ |
| 365 | append_move(desc, MOVE_SRC_CLASS1CTX | |
| 366 | MOVE_DEST_OUTFIFO | (tfm->ivsize << MOVE_LEN_SHIFT)); |
| 367 | |
| 368 | /* Return to encryption */ |
| 369 | append_operation(desc, ctx->class2_alg_type | |
| 370 | OP_ALG_AS_INITFINAL | OP_ALG_ENCRYPT); |
| 371 | |
| 372 | /* ivsize + cryptlen = seqoutlen - authsize */ |
| 373 | append_math_sub_imm_u32(desc, REG3, SEQOUTLEN, IMM, ctx->authsize); |
| 374 | |
| 375 | /* assoclen = seqinlen - (ivsize + cryptlen) */ |
| 376 | append_math_sub(desc, VARSEQINLEN, SEQINLEN, REG3, CAAM_CMD_SZ); |
| 377 | |
| 378 | /* read assoc before reading payload */ |
| 379 | append_seq_fifo_load(desc, 0, FIFOLD_CLASS_CLASS2 | FIFOLD_TYPE_MSG | |
| 380 | KEY_VLF); |
| 381 | |
| 382 | /* Copy iv from class 1 ctx to class 2 fifo*/ |
| 383 | moveiv = NFIFOENTRY_STYPE_OFIFO | NFIFOENTRY_DEST_CLASS2 | |
| 384 | NFIFOENTRY_DTYPE_MSG | (tfm->ivsize << NFIFOENTRY_DLEN_SHIFT); |
| 385 | append_load_imm_u32(desc, moveiv, LDST_CLASS_IND_CCB | |
| 386 | LDST_SRCDST_WORD_INFO_FIFO | LDST_IMM); |
| 387 | append_load_imm_u32(desc, tfm->ivsize, LDST_CLASS_2_CCB | |
| 388 | LDST_SRCDST_WORD_DATASZ_REG | LDST_IMM); |
| 389 | |
| 390 | /* Class 1 operation */ |
| 391 | append_operation(desc, ctx->class1_alg_type | |
| 392 | OP_ALG_AS_INITFINAL | OP_ALG_ENCRYPT); |
| 393 | |
| 394 | /* Will write ivsize + cryptlen */ |
| 395 | append_math_add(desc, VARSEQOUTLEN, SEQINLEN, REG0, CAAM_CMD_SZ); |
| 396 | |
| 397 | /* Not need to reload iv */ |
| 398 | append_seq_fifo_load(desc, tfm->ivsize, |
| 399 | FIFOLD_CLASS_SKIP); |
| 400 | |
| 401 | /* Will read cryptlen */ |
| 402 | append_math_add(desc, VARSEQINLEN, SEQINLEN, REG0, CAAM_CMD_SZ); |
| 403 | aead_append_src_dst(desc, FIFOLD_TYPE_MSG1OUT2); |
| 404 | |
| 405 | /* Write ICV */ |
| 406 | append_seq_store(desc, ctx->authsize, LDST_CLASS_2_CCB | |
| 407 | LDST_SRCDST_BYTE_CONTEXT); |
| 408 | |
| 409 | ctx->sh_desc_givenc_dma = dma_map_single(jrdev, desc, |
| 410 | desc_bytes(desc), |
| 411 | DMA_TO_DEVICE); |
| 412 | if (dma_mapping_error(jrdev, ctx->sh_desc_givenc_dma)) { |
| 413 | dev_err(jrdev, "unable to map shared descriptor\n"); |
| 414 | return -ENOMEM; |
| 415 | } |
| 416 | #ifdef DEBUG |
| 417 | print_hex_dump(KERN_ERR, "aead givenc shdesc@"xstr(__LINE__)": ", |
| 418 | DUMP_PREFIX_ADDRESS, 16, 4, desc, |
| 419 | desc_bytes(desc), 1); |
| 420 | #endif |
| 421 | |
| 422 | return 0; |
| 423 | } |
| 424 | |
Yuan Kang | 0e47930 | 2011-07-15 11:21:41 +0800 | [diff] [blame] | 425 | static int aead_setauthsize(struct crypto_aead *authenc, |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 426 | unsigned int authsize) |
| 427 | { |
| 428 | struct caam_ctx *ctx = crypto_aead_ctx(authenc); |
| 429 | |
| 430 | ctx->authsize = authsize; |
Yuan Kang | 1acebad | 2011-07-15 11:21:42 +0800 | [diff] [blame^] | 431 | aead_set_sh_desc(authenc); |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 432 | |
| 433 | return 0; |
| 434 | } |
| 435 | |
| 436 | struct split_key_result { |
| 437 | struct completion completion; |
| 438 | int err; |
| 439 | }; |
| 440 | |
| 441 | static void split_key_done(struct device *dev, u32 *desc, u32 err, |
| 442 | void *context) |
| 443 | { |
| 444 | struct split_key_result *res = context; |
| 445 | |
| 446 | #ifdef DEBUG |
| 447 | dev_err(dev, "%s %d: err 0x%x\n", __func__, __LINE__, err); |
| 448 | #endif |
Yuan Kang | 1acebad | 2011-07-15 11:21:42 +0800 | [diff] [blame^] | 449 | |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 450 | if (err) { |
Kim Phillips | de2954d | 2011-05-02 18:29:17 -0500 | [diff] [blame] | 451 | char tmp[CAAM_ERROR_STR_MAX]; |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 452 | |
| 453 | dev_err(dev, "%08x: %s\n", err, caam_jr_strstatus(tmp, err)); |
| 454 | } |
| 455 | |
| 456 | res->err = err; |
| 457 | |
| 458 | complete(&res->completion); |
| 459 | } |
| 460 | |
| 461 | /* |
| 462 | get a split ipad/opad key |
| 463 | |
| 464 | Split key generation----------------------------------------------- |
| 465 | |
| 466 | [00] 0xb0810008 jobdesc: stidx=1 share=never len=8 |
| 467 | [01] 0x04000014 key: class2->keyreg len=20 |
| 468 | @0xffe01000 |
| 469 | [03] 0x84410014 operation: cls2-op sha1 hmac init dec |
| 470 | [04] 0x24940000 fifold: class2 msgdata-last2 len=0 imm |
| 471 | [05] 0xa4000001 jump: class2 local all ->1 [06] |
| 472 | [06] 0x64260028 fifostr: class2 mdsplit-jdk len=40 |
| 473 | @0xffe04000 |
| 474 | */ |
| 475 | static u32 gen_split_key(struct caam_ctx *ctx, const u8 *key_in, u32 authkeylen) |
| 476 | { |
| 477 | struct device *jrdev = ctx->jrdev; |
| 478 | u32 *desc; |
| 479 | struct split_key_result result; |
| 480 | dma_addr_t dma_addr_in, dma_addr_out; |
| 481 | int ret = 0; |
| 482 | |
| 483 | desc = kmalloc(CAAM_CMD_SZ * 6 + CAAM_PTR_SZ * 2, GFP_KERNEL | GFP_DMA); |
| 484 | |
| 485 | init_job_desc(desc, 0); |
| 486 | |
| 487 | dma_addr_in = dma_map_single(jrdev, (void *)key_in, authkeylen, |
| 488 | DMA_TO_DEVICE); |
| 489 | if (dma_mapping_error(jrdev, dma_addr_in)) { |
| 490 | dev_err(jrdev, "unable to map key input memory\n"); |
| 491 | kfree(desc); |
| 492 | return -ENOMEM; |
| 493 | } |
| 494 | append_key(desc, dma_addr_in, authkeylen, CLASS_2 | |
| 495 | KEY_DEST_CLASS_REG); |
| 496 | |
| 497 | /* Sets MDHA up into an HMAC-INIT */ |
| 498 | append_operation(desc, ctx->alg_op | OP_ALG_DECRYPT | |
| 499 | OP_ALG_AS_INIT); |
| 500 | |
| 501 | /* |
| 502 | * do a FIFO_LOAD of zero, this will trigger the internal key expansion |
| 503 | into both pads inside MDHA |
| 504 | */ |
| 505 | append_fifo_load_as_imm(desc, NULL, 0, LDST_CLASS_2_CCB | |
| 506 | FIFOLD_TYPE_MSG | FIFOLD_TYPE_LAST2); |
| 507 | |
| 508 | /* |
| 509 | * FIFO_STORE with the explicit split-key content store |
| 510 | * (0x26 output type) |
| 511 | */ |
| 512 | dma_addr_out = dma_map_single(jrdev, ctx->key, ctx->split_key_pad_len, |
| 513 | DMA_FROM_DEVICE); |
| 514 | if (dma_mapping_error(jrdev, dma_addr_out)) { |
| 515 | dev_err(jrdev, "unable to map key output memory\n"); |
| 516 | kfree(desc); |
| 517 | return -ENOMEM; |
| 518 | } |
| 519 | append_fifo_store(desc, dma_addr_out, ctx->split_key_len, |
| 520 | LDST_CLASS_2_CCB | FIFOST_TYPE_SPLIT_KEK); |
| 521 | |
| 522 | #ifdef DEBUG |
| 523 | print_hex_dump(KERN_ERR, "ctx.key@"xstr(__LINE__)": ", |
| 524 | DUMP_PREFIX_ADDRESS, 16, 4, key_in, authkeylen, 1); |
| 525 | print_hex_dump(KERN_ERR, "jobdesc@"xstr(__LINE__)": ", |
| 526 | DUMP_PREFIX_ADDRESS, 16, 4, desc, desc_bytes(desc), 1); |
| 527 | #endif |
| 528 | |
| 529 | result.err = 0; |
| 530 | init_completion(&result.completion); |
| 531 | |
| 532 | ret = caam_jr_enqueue(jrdev, desc, split_key_done, &result); |
| 533 | if (!ret) { |
| 534 | /* in progress */ |
| 535 | wait_for_completion_interruptible(&result.completion); |
| 536 | ret = result.err; |
| 537 | #ifdef DEBUG |
| 538 | print_hex_dump(KERN_ERR, "ctx.key@"xstr(__LINE__)": ", |
| 539 | DUMP_PREFIX_ADDRESS, 16, 4, ctx->key, |
| 540 | ctx->split_key_pad_len, 1); |
| 541 | #endif |
| 542 | } |
| 543 | |
| 544 | dma_unmap_single(jrdev, dma_addr_out, ctx->split_key_pad_len, |
| 545 | DMA_FROM_DEVICE); |
| 546 | dma_unmap_single(jrdev, dma_addr_in, authkeylen, DMA_TO_DEVICE); |
| 547 | |
| 548 | kfree(desc); |
| 549 | |
| 550 | return ret; |
| 551 | } |
| 552 | |
Yuan Kang | 0e47930 | 2011-07-15 11:21:41 +0800 | [diff] [blame] | 553 | static int aead_setkey(struct crypto_aead *aead, |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 554 | const u8 *key, unsigned int keylen) |
| 555 | { |
| 556 | /* Sizes for MDHA pads (*not* keys): MD5, SHA1, 224, 256, 384, 512 */ |
| 557 | static const u8 mdpadlen[] = { 16, 20, 32, 32, 64, 64 }; |
| 558 | struct caam_ctx *ctx = crypto_aead_ctx(aead); |
| 559 | struct device *jrdev = ctx->jrdev; |
| 560 | struct rtattr *rta = (void *)key; |
| 561 | struct crypto_authenc_key_param *param; |
| 562 | unsigned int authkeylen; |
| 563 | unsigned int enckeylen; |
| 564 | int ret = 0; |
| 565 | |
| 566 | param = RTA_DATA(rta); |
| 567 | enckeylen = be32_to_cpu(param->enckeylen); |
| 568 | |
| 569 | key += RTA_ALIGN(rta->rta_len); |
| 570 | keylen -= RTA_ALIGN(rta->rta_len); |
| 571 | |
| 572 | if (keylen < enckeylen) |
| 573 | goto badkey; |
| 574 | |
| 575 | authkeylen = keylen - enckeylen; |
| 576 | |
| 577 | if (keylen > CAAM_MAX_KEY_SIZE) |
| 578 | goto badkey; |
| 579 | |
| 580 | /* Pick class 2 key length from algorithm submask */ |
| 581 | ctx->split_key_len = mdpadlen[(ctx->alg_op & OP_ALG_ALGSEL_SUBMASK) >> |
| 582 | OP_ALG_ALGSEL_SHIFT] * 2; |
| 583 | ctx->split_key_pad_len = ALIGN(ctx->split_key_len, 16); |
| 584 | |
| 585 | #ifdef DEBUG |
| 586 | printk(KERN_ERR "keylen %d enckeylen %d authkeylen %d\n", |
| 587 | keylen, enckeylen, authkeylen); |
| 588 | printk(KERN_ERR "split_key_len %d split_key_pad_len %d\n", |
| 589 | ctx->split_key_len, ctx->split_key_pad_len); |
| 590 | print_hex_dump(KERN_ERR, "key in @"xstr(__LINE__)": ", |
| 591 | DUMP_PREFIX_ADDRESS, 16, 4, key, keylen, 1); |
| 592 | #endif |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 593 | |
| 594 | ret = gen_split_key(ctx, key, authkeylen); |
| 595 | if (ret) { |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 596 | goto badkey; |
| 597 | } |
| 598 | |
| 599 | /* postpend encryption key to auth split key */ |
| 600 | memcpy(ctx->key + ctx->split_key_pad_len, key + authkeylen, enckeylen); |
| 601 | |
Yuan Kang | 885e9e2 | 2011-07-15 11:21:41 +0800 | [diff] [blame] | 602 | ctx->key_dma = dma_map_single(jrdev, ctx->key, ctx->split_key_pad_len + |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 603 | enckeylen, DMA_TO_DEVICE); |
Yuan Kang | 885e9e2 | 2011-07-15 11:21:41 +0800 | [diff] [blame] | 604 | if (dma_mapping_error(jrdev, ctx->key_dma)) { |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 605 | dev_err(jrdev, "unable to map key i/o memory\n"); |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 606 | return -ENOMEM; |
| 607 | } |
| 608 | #ifdef DEBUG |
| 609 | print_hex_dump(KERN_ERR, "ctx.key@"xstr(__LINE__)": ", |
| 610 | DUMP_PREFIX_ADDRESS, 16, 4, ctx->key, |
| 611 | ctx->split_key_pad_len + enckeylen, 1); |
| 612 | #endif |
| 613 | |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 614 | ctx->enckeylen = enckeylen; |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 615 | |
Yuan Kang | 1acebad | 2011-07-15 11:21:42 +0800 | [diff] [blame^] | 616 | ret = aead_set_sh_desc(aead); |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 617 | if (ret) { |
Yuan Kang | 885e9e2 | 2011-07-15 11:21:41 +0800 | [diff] [blame] | 618 | dma_unmap_single(jrdev, ctx->key_dma, ctx->split_key_pad_len + |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 619 | enckeylen, DMA_TO_DEVICE); |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 620 | } |
| 621 | |
| 622 | return ret; |
| 623 | badkey: |
| 624 | crypto_aead_set_flags(aead, CRYPTO_TFM_RES_BAD_KEY_LEN); |
| 625 | return -EINVAL; |
| 626 | } |
| 627 | |
| 628 | struct link_tbl_entry { |
| 629 | u64 ptr; |
| 630 | u32 len; |
| 631 | u8 reserved; |
| 632 | u8 buf_pool_id; |
| 633 | u16 offset; |
| 634 | }; |
| 635 | |
| 636 | /* |
Yuan Kang | 1acebad | 2011-07-15 11:21:42 +0800 | [diff] [blame^] | 637 | * aead_edesc - s/w-extended aead descriptor |
| 638 | * @assoc_nents: number of segments in associated data (SPI+Seq) scatterlist |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 639 | * @src_nents: number of segments in input scatterlist |
| 640 | * @dst_nents: number of segments in output scatterlist |
Yuan Kang | 1acebad | 2011-07-15 11:21:42 +0800 | [diff] [blame^] | 641 | * @iv_dma: dma address of iv for checking continuity and link table |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 642 | * @desc: h/w descriptor (variable length; must not exceed MAX_CAAM_DESCSIZE) |
| 643 | * @link_tbl_bytes: length of dma mapped link_tbl space |
| 644 | * @link_tbl_dma: bus physical mapped address of h/w link table |
| 645 | * @hw_desc: the h/w job descriptor followed by any referenced link tables |
| 646 | */ |
Yuan Kang | 0e47930 | 2011-07-15 11:21:41 +0800 | [diff] [blame] | 647 | struct aead_edesc { |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 648 | int assoc_nents; |
| 649 | int src_nents; |
| 650 | int dst_nents; |
Yuan Kang | 1acebad | 2011-07-15 11:21:42 +0800 | [diff] [blame^] | 651 | dma_addr_t iv_dma; |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 652 | int link_tbl_bytes; |
| 653 | dma_addr_t link_tbl_dma; |
| 654 | struct link_tbl_entry *link_tbl; |
| 655 | u32 hw_desc[0]; |
| 656 | }; |
| 657 | |
Yuan Kang | 1acebad | 2011-07-15 11:21:42 +0800 | [diff] [blame^] | 658 | static void caam_unmap(struct device *dev, struct scatterlist *src, |
| 659 | struct scatterlist *dst, int src_nents, int dst_nents, |
| 660 | dma_addr_t iv_dma, int ivsize, dma_addr_t link_tbl_dma, |
| 661 | int link_tbl_bytes) |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 662 | { |
Yuan Kang | 1acebad | 2011-07-15 11:21:42 +0800 | [diff] [blame^] | 663 | if (unlikely(dst != src)) { |
| 664 | dma_unmap_sg(dev, src, src_nents, DMA_TO_DEVICE); |
| 665 | dma_unmap_sg(dev, dst, dst_nents, DMA_FROM_DEVICE); |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 666 | } else { |
Yuan Kang | 1acebad | 2011-07-15 11:21:42 +0800 | [diff] [blame^] | 667 | dma_unmap_sg(dev, src, src_nents, DMA_BIDIRECTIONAL); |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 668 | } |
| 669 | |
Yuan Kang | 1acebad | 2011-07-15 11:21:42 +0800 | [diff] [blame^] | 670 | if (iv_dma) |
| 671 | dma_unmap_single(dev, iv_dma, ivsize, DMA_TO_DEVICE); |
| 672 | if (link_tbl_bytes) |
| 673 | dma_unmap_single(dev, link_tbl_dma, link_tbl_bytes, |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 674 | DMA_TO_DEVICE); |
| 675 | } |
| 676 | |
Yuan Kang | 1acebad | 2011-07-15 11:21:42 +0800 | [diff] [blame^] | 677 | static void aead_unmap(struct device *dev, |
| 678 | struct aead_edesc *edesc, |
| 679 | struct aead_request *req) |
| 680 | { |
| 681 | struct crypto_aead *aead = crypto_aead_reqtfm(req); |
| 682 | int ivsize = crypto_aead_ivsize(aead); |
| 683 | |
| 684 | dma_unmap_sg(dev, req->assoc, edesc->assoc_nents, DMA_TO_DEVICE); |
| 685 | |
| 686 | caam_unmap(dev, req->src, req->dst, |
| 687 | edesc->src_nents, edesc->dst_nents, |
| 688 | edesc->iv_dma, ivsize, edesc->link_tbl_dma, |
| 689 | edesc->link_tbl_bytes); |
| 690 | } |
| 691 | |
Yuan Kang | 0e47930 | 2011-07-15 11:21:41 +0800 | [diff] [blame] | 692 | static void aead_encrypt_done(struct device *jrdev, u32 *desc, u32 err, |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 693 | void *context) |
| 694 | { |
Yuan Kang | 0e47930 | 2011-07-15 11:21:41 +0800 | [diff] [blame] | 695 | struct aead_request *req = context; |
| 696 | struct aead_edesc *edesc; |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 697 | #ifdef DEBUG |
Yuan Kang | 0e47930 | 2011-07-15 11:21:41 +0800 | [diff] [blame] | 698 | struct crypto_aead *aead = crypto_aead_reqtfm(req); |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 699 | struct caam_ctx *ctx = crypto_aead_ctx(aead); |
Yuan Kang | 1acebad | 2011-07-15 11:21:42 +0800 | [diff] [blame^] | 700 | int ivsize = crypto_aead_ivsize(aead); |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 701 | |
| 702 | dev_err(jrdev, "%s %d: err 0x%x\n", __func__, __LINE__, err); |
| 703 | #endif |
Yuan Kang | 1acebad | 2011-07-15 11:21:42 +0800 | [diff] [blame^] | 704 | |
Yuan Kang | 0e47930 | 2011-07-15 11:21:41 +0800 | [diff] [blame] | 705 | edesc = (struct aead_edesc *)((char *)desc - |
| 706 | offsetof(struct aead_edesc, hw_desc)); |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 707 | |
| 708 | if (err) { |
Kim Phillips | de2954d | 2011-05-02 18:29:17 -0500 | [diff] [blame] | 709 | char tmp[CAAM_ERROR_STR_MAX]; |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 710 | |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 711 | dev_err(jrdev, "%08x: %s\n", err, caam_jr_strstatus(tmp, err)); |
| 712 | } |
| 713 | |
Yuan Kang | 0e47930 | 2011-07-15 11:21:41 +0800 | [diff] [blame] | 714 | aead_unmap(jrdev, edesc, req); |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 715 | |
| 716 | #ifdef DEBUG |
| 717 | print_hex_dump(KERN_ERR, "assoc @"xstr(__LINE__)": ", |
Yuan Kang | 0e47930 | 2011-07-15 11:21:41 +0800 | [diff] [blame] | 718 | DUMP_PREFIX_ADDRESS, 16, 4, sg_virt(req->assoc), |
| 719 | req->assoclen , 1); |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 720 | print_hex_dump(KERN_ERR, "dstiv @"xstr(__LINE__)": ", |
Yuan Kang | 0e47930 | 2011-07-15 11:21:41 +0800 | [diff] [blame] | 721 | DUMP_PREFIX_ADDRESS, 16, 4, sg_virt(req->src) - ivsize, |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 722 | edesc->src_nents ? 100 : ivsize, 1); |
| 723 | print_hex_dump(KERN_ERR, "dst @"xstr(__LINE__)": ", |
Yuan Kang | 0e47930 | 2011-07-15 11:21:41 +0800 | [diff] [blame] | 724 | DUMP_PREFIX_ADDRESS, 16, 4, sg_virt(req->src), |
| 725 | edesc->src_nents ? 100 : req->cryptlen + |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 726 | ctx->authsize + 4, 1); |
| 727 | #endif |
| 728 | |
| 729 | kfree(edesc); |
| 730 | |
Yuan Kang | 0e47930 | 2011-07-15 11:21:41 +0800 | [diff] [blame] | 731 | aead_request_complete(req, err); |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 732 | } |
| 733 | |
Yuan Kang | 0e47930 | 2011-07-15 11:21:41 +0800 | [diff] [blame] | 734 | static void aead_decrypt_done(struct device *jrdev, u32 *desc, u32 err, |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 735 | void *context) |
| 736 | { |
Yuan Kang | 0e47930 | 2011-07-15 11:21:41 +0800 | [diff] [blame] | 737 | struct aead_request *req = context; |
| 738 | struct aead_edesc *edesc; |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 739 | #ifdef DEBUG |
Yuan Kang | 0e47930 | 2011-07-15 11:21:41 +0800 | [diff] [blame] | 740 | struct crypto_aead *aead = crypto_aead_reqtfm(req); |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 741 | struct caam_ctx *ctx = crypto_aead_ctx(aead); |
Yuan Kang | 1acebad | 2011-07-15 11:21:42 +0800 | [diff] [blame^] | 742 | int ivsize = crypto_aead_ivsize(aead); |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 743 | |
| 744 | dev_err(jrdev, "%s %d: err 0x%x\n", __func__, __LINE__, err); |
| 745 | #endif |
Yuan Kang | 1acebad | 2011-07-15 11:21:42 +0800 | [diff] [blame^] | 746 | |
Yuan Kang | 0e47930 | 2011-07-15 11:21:41 +0800 | [diff] [blame] | 747 | edesc = (struct aead_edesc *)((char *)desc - |
| 748 | offsetof(struct aead_edesc, hw_desc)); |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 749 | |
Yuan Kang | 1acebad | 2011-07-15 11:21:42 +0800 | [diff] [blame^] | 750 | #ifdef DEBUG |
| 751 | print_hex_dump(KERN_ERR, "dstiv @"xstr(__LINE__)": ", |
| 752 | DUMP_PREFIX_ADDRESS, 16, 4, req->iv, |
| 753 | ivsize, 1); |
| 754 | print_hex_dump(KERN_ERR, "dst @"xstr(__LINE__)": ", |
| 755 | DUMP_PREFIX_ADDRESS, 16, 4, sg_virt(req->dst), |
| 756 | req->cryptlen, 1); |
| 757 | #endif |
| 758 | |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 759 | if (err) { |
Kim Phillips | de2954d | 2011-05-02 18:29:17 -0500 | [diff] [blame] | 760 | char tmp[CAAM_ERROR_STR_MAX]; |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 761 | |
| 762 | dev_err(jrdev, "%08x: %s\n", err, caam_jr_strstatus(tmp, err)); |
| 763 | } |
| 764 | |
Yuan Kang | 0e47930 | 2011-07-15 11:21:41 +0800 | [diff] [blame] | 765 | aead_unmap(jrdev, edesc, req); |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 766 | |
| 767 | /* |
| 768 | * verify hw auth check passed else return -EBADMSG |
| 769 | */ |
| 770 | if ((err & JRSTA_CCBERR_ERRID_MASK) == JRSTA_CCBERR_ERRID_ICVCHK) |
| 771 | err = -EBADMSG; |
| 772 | |
| 773 | #ifdef DEBUG |
| 774 | print_hex_dump(KERN_ERR, "iphdrout@"xstr(__LINE__)": ", |
| 775 | DUMP_PREFIX_ADDRESS, 16, 4, |
Yuan Kang | 0e47930 | 2011-07-15 11:21:41 +0800 | [diff] [blame] | 776 | ((char *)sg_virt(req->assoc) - sizeof(struct iphdr)), |
| 777 | sizeof(struct iphdr) + req->assoclen + |
| 778 | ((req->cryptlen > 1500) ? 1500 : req->cryptlen) + |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 779 | ctx->authsize + 36, 1); |
| 780 | if (!err && edesc->link_tbl_bytes) { |
Yuan Kang | 0e47930 | 2011-07-15 11:21:41 +0800 | [diff] [blame] | 781 | struct scatterlist *sg = sg_last(req->src, edesc->src_nents); |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 782 | print_hex_dump(KERN_ERR, "sglastout@"xstr(__LINE__)": ", |
| 783 | DUMP_PREFIX_ADDRESS, 16, 4, sg_virt(sg), |
| 784 | sg->length + ctx->authsize + 16, 1); |
| 785 | } |
| 786 | #endif |
Yuan Kang | 1acebad | 2011-07-15 11:21:42 +0800 | [diff] [blame^] | 787 | |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 788 | kfree(edesc); |
| 789 | |
Yuan Kang | 0e47930 | 2011-07-15 11:21:41 +0800 | [diff] [blame] | 790 | aead_request_complete(req, err); |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 791 | } |
| 792 | |
Yuan Kang | 1acebad | 2011-07-15 11:21:42 +0800 | [diff] [blame^] | 793 | static void sg_to_link_tbl_one(struct link_tbl_entry *link_tbl_ptr, |
| 794 | dma_addr_t dma, u32 len, u32 offset) |
| 795 | { |
| 796 | link_tbl_ptr->ptr = dma; |
| 797 | link_tbl_ptr->len = len; |
| 798 | link_tbl_ptr->reserved = 0; |
| 799 | link_tbl_ptr->buf_pool_id = 0; |
| 800 | link_tbl_ptr->offset = offset; |
| 801 | #ifdef DEBUG |
| 802 | print_hex_dump(KERN_ERR, "link_tbl_ptr@"xstr(__LINE__)": ", |
| 803 | DUMP_PREFIX_ADDRESS, 16, 4, link_tbl_ptr, |
| 804 | sizeof(struct link_tbl_entry), 1); |
| 805 | #endif |
| 806 | } |
| 807 | |
| 808 | /* |
| 809 | * convert scatterlist to h/w link table format |
| 810 | * but does not have final bit; instead, returns last entry |
| 811 | */ |
| 812 | static struct link_tbl_entry *sg_to_link_tbl(struct scatterlist *sg, |
| 813 | int sg_count, struct link_tbl_entry |
| 814 | *link_tbl_ptr, u32 offset) |
| 815 | { |
| 816 | while (sg_count) { |
| 817 | sg_to_link_tbl_one(link_tbl_ptr, sg_dma_address(sg), |
| 818 | sg_dma_len(sg), offset); |
| 819 | link_tbl_ptr++; |
| 820 | sg = sg_next(sg); |
| 821 | sg_count--; |
| 822 | } |
| 823 | return link_tbl_ptr - 1; |
| 824 | } |
| 825 | |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 826 | /* |
| 827 | * convert scatterlist to h/w link table format |
| 828 | * scatterlist must have been previously dma mapped |
| 829 | */ |
Yuan Kang | 1acebad | 2011-07-15 11:21:42 +0800 | [diff] [blame^] | 830 | static void sg_to_link_tbl_last(struct scatterlist *sg, int sg_count, |
| 831 | struct link_tbl_entry *link_tbl_ptr, u32 offset) |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 832 | { |
Yuan Kang | 1acebad | 2011-07-15 11:21:42 +0800 | [diff] [blame^] | 833 | link_tbl_ptr = sg_to_link_tbl(sg, sg_count, link_tbl_ptr, offset); |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 834 | link_tbl_ptr->len |= 0x40000000; |
| 835 | } |
| 836 | |
| 837 | /* |
Yuan Kang | 1acebad | 2011-07-15 11:21:42 +0800 | [diff] [blame^] | 838 | * Fill in aead job descriptor |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 839 | */ |
Yuan Kang | 1acebad | 2011-07-15 11:21:42 +0800 | [diff] [blame^] | 840 | static void init_aead_job(u32 *sh_desc, dma_addr_t ptr, |
| 841 | struct aead_edesc *edesc, |
| 842 | struct aead_request *req, |
| 843 | bool all_contig, bool encrypt) |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 844 | { |
Yuan Kang | 0e47930 | 2011-07-15 11:21:41 +0800 | [diff] [blame] | 845 | struct crypto_aead *aead = crypto_aead_reqtfm(req); |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 846 | struct caam_ctx *ctx = crypto_aead_ctx(aead); |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 847 | int ivsize = crypto_aead_ivsize(aead); |
| 848 | int authsize = ctx->authsize; |
Yuan Kang | 1acebad | 2011-07-15 11:21:42 +0800 | [diff] [blame^] | 849 | u32 *desc = edesc->hw_desc; |
| 850 | u32 out_options = 0, in_options; |
| 851 | dma_addr_t dst_dma, src_dma; |
| 852 | int len, link_tbl_index = 0; |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 853 | |
Yuan Kang | 1acebad | 2011-07-15 11:21:42 +0800 | [diff] [blame^] | 854 | #ifdef DEBUG |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 855 | debug("assoclen %d cryptlen %d authsize %d\n", |
Yuan Kang | 0e47930 | 2011-07-15 11:21:41 +0800 | [diff] [blame] | 856 | req->assoclen, req->cryptlen, authsize); |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 857 | print_hex_dump(KERN_ERR, "assoc @"xstr(__LINE__)": ", |
Yuan Kang | 0e47930 | 2011-07-15 11:21:41 +0800 | [diff] [blame] | 858 | DUMP_PREFIX_ADDRESS, 16, 4, sg_virt(req->assoc), |
| 859 | req->assoclen , 1); |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 860 | print_hex_dump(KERN_ERR, "presciv@"xstr(__LINE__)": ", |
Yuan Kang | 1acebad | 2011-07-15 11:21:42 +0800 | [diff] [blame^] | 861 | DUMP_PREFIX_ADDRESS, 16, 4, req->iv, |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 862 | edesc->src_nents ? 100 : ivsize, 1); |
| 863 | print_hex_dump(KERN_ERR, "src @"xstr(__LINE__)": ", |
Yuan Kang | 0e47930 | 2011-07-15 11:21:41 +0800 | [diff] [blame] | 864 | DUMP_PREFIX_ADDRESS, 16, 4, sg_virt(req->src), |
Yuan Kang | 1acebad | 2011-07-15 11:21:42 +0800 | [diff] [blame^] | 865 | edesc->src_nents ? 100 : req->cryptlen, 1); |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 866 | print_hex_dump(KERN_ERR, "shrdesc@"xstr(__LINE__)": ", |
| 867 | DUMP_PREFIX_ADDRESS, 16, 4, sh_desc, |
| 868 | desc_bytes(sh_desc), 1); |
| 869 | #endif |
Yuan Kang | 1acebad | 2011-07-15 11:21:42 +0800 | [diff] [blame^] | 870 | |
| 871 | len = desc_len(sh_desc); |
| 872 | init_job_desc_shared(desc, ptr, len, HDR_SHARE_DEFER | HDR_REVERSE); |
| 873 | |
| 874 | if (all_contig) { |
| 875 | src_dma = sg_dma_address(req->assoc); |
| 876 | in_options = 0; |
| 877 | } else { |
| 878 | src_dma = edesc->link_tbl_dma; |
| 879 | link_tbl_index += (edesc->assoc_nents ? : 1) + 1 + |
| 880 | (edesc->src_nents ? : 1); |
| 881 | in_options = LDST_SGF; |
| 882 | } |
| 883 | if (encrypt) |
| 884 | append_seq_in_ptr(desc, src_dma, req->assoclen + ivsize + |
| 885 | req->cryptlen - authsize, in_options); |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 886 | else |
Yuan Kang | 1acebad | 2011-07-15 11:21:42 +0800 | [diff] [blame^] | 887 | append_seq_in_ptr(desc, src_dma, req->assoclen + ivsize + |
| 888 | req->cryptlen, in_options); |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 889 | |
Yuan Kang | 1acebad | 2011-07-15 11:21:42 +0800 | [diff] [blame^] | 890 | if (likely(req->src == req->dst)) { |
| 891 | if (all_contig) { |
| 892 | dst_dma = sg_dma_address(req->src); |
| 893 | } else { |
| 894 | dst_dma = src_dma + sizeof(struct link_tbl_entry) * |
| 895 | ((edesc->assoc_nents ? : 1) + 1); |
| 896 | out_options = LDST_SGF; |
| 897 | } |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 898 | } else { |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 899 | if (!edesc->dst_nents) { |
Yuan Kang | 0e47930 | 2011-07-15 11:21:41 +0800 | [diff] [blame] | 900 | dst_dma = sg_dma_address(req->dst); |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 901 | } else { |
Yuan Kang | 1acebad | 2011-07-15 11:21:42 +0800 | [diff] [blame^] | 902 | dst_dma = edesc->link_tbl_dma + |
| 903 | link_tbl_index * |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 904 | sizeof(struct link_tbl_entry); |
Yuan Kang | 1acebad | 2011-07-15 11:21:42 +0800 | [diff] [blame^] | 905 | out_options = LDST_SGF; |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 906 | } |
| 907 | } |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 908 | if (encrypt) |
Yuan Kang | 1acebad | 2011-07-15 11:21:42 +0800 | [diff] [blame^] | 909 | append_seq_out_ptr(desc, dst_dma, req->cryptlen, out_options); |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 910 | else |
Yuan Kang | 1acebad | 2011-07-15 11:21:42 +0800 | [diff] [blame^] | 911 | append_seq_out_ptr(desc, dst_dma, req->cryptlen - authsize, |
| 912 | out_options); |
| 913 | } |
| 914 | |
| 915 | /* |
| 916 | * Fill in aead givencrypt job descriptor |
| 917 | */ |
| 918 | static void init_aead_giv_job(u32 *sh_desc, dma_addr_t ptr, |
| 919 | struct aead_edesc *edesc, |
| 920 | struct aead_request *req, |
| 921 | int contig) |
| 922 | { |
| 923 | struct crypto_aead *aead = crypto_aead_reqtfm(req); |
| 924 | struct caam_ctx *ctx = crypto_aead_ctx(aead); |
| 925 | int ivsize = crypto_aead_ivsize(aead); |
| 926 | int authsize = ctx->authsize; |
| 927 | u32 *desc = edesc->hw_desc; |
| 928 | u32 out_options = 0, in_options; |
| 929 | dma_addr_t dst_dma, src_dma; |
| 930 | int len, link_tbl_index = 0; |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 931 | |
| 932 | #ifdef DEBUG |
Yuan Kang | 1acebad | 2011-07-15 11:21:42 +0800 | [diff] [blame^] | 933 | debug("assoclen %d cryptlen %d authsize %d\n", |
| 934 | req->assoclen, req->cryptlen, authsize); |
| 935 | print_hex_dump(KERN_ERR, "assoc @"xstr(__LINE__)": ", |
| 936 | DUMP_PREFIX_ADDRESS, 16, 4, sg_virt(req->assoc), |
| 937 | req->assoclen , 1); |
| 938 | print_hex_dump(KERN_ERR, "presciv@"xstr(__LINE__)": ", |
| 939 | DUMP_PREFIX_ADDRESS, 16, 4, req->iv, ivsize, 1); |
| 940 | print_hex_dump(KERN_ERR, "src @"xstr(__LINE__)": ", |
| 941 | DUMP_PREFIX_ADDRESS, 16, 4, sg_virt(req->src), |
| 942 | edesc->src_nents > 1 ? 100 : req->cryptlen, 1); |
| 943 | print_hex_dump(KERN_ERR, "shrdesc@"xstr(__LINE__)": ", |
| 944 | DUMP_PREFIX_ADDRESS, 16, 4, sh_desc, |
| 945 | desc_bytes(sh_desc), 1); |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 946 | #endif |
| 947 | |
Yuan Kang | 1acebad | 2011-07-15 11:21:42 +0800 | [diff] [blame^] | 948 | len = desc_len(sh_desc); |
| 949 | init_job_desc_shared(desc, ptr, len, HDR_SHARE_DEFER | HDR_REVERSE); |
| 950 | |
| 951 | if (contig & GIV_SRC_CONTIG) { |
| 952 | src_dma = sg_dma_address(req->assoc); |
| 953 | in_options = 0; |
| 954 | } else { |
| 955 | src_dma = edesc->link_tbl_dma; |
| 956 | link_tbl_index += edesc->assoc_nents + 1 + edesc->src_nents; |
| 957 | in_options = LDST_SGF; |
| 958 | } |
| 959 | append_seq_in_ptr(desc, src_dma, req->assoclen + ivsize + |
| 960 | req->cryptlen - authsize, in_options); |
| 961 | |
| 962 | if (contig & GIV_DST_CONTIG) { |
| 963 | dst_dma = edesc->iv_dma; |
| 964 | } else { |
| 965 | if (likely(req->src == req->dst)) { |
| 966 | dst_dma = src_dma + sizeof(struct link_tbl_entry) * |
| 967 | edesc->assoc_nents; |
| 968 | out_options = LDST_SGF; |
| 969 | } else { |
| 970 | dst_dma = edesc->link_tbl_dma + |
| 971 | link_tbl_index * |
| 972 | sizeof(struct link_tbl_entry); |
| 973 | out_options = LDST_SGF; |
| 974 | } |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 975 | } |
| 976 | |
Yuan Kang | 1acebad | 2011-07-15 11:21:42 +0800 | [diff] [blame^] | 977 | append_seq_out_ptr(desc, dst_dma, ivsize + req->cryptlen, out_options); |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 978 | } |
| 979 | |
| 980 | /* |
| 981 | * derive number of elements in scatterlist |
| 982 | */ |
Yuan Kang | 1acebad | 2011-07-15 11:21:42 +0800 | [diff] [blame^] | 983 | static int sg_count(struct scatterlist *sg_list, int nbytes) |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 984 | { |
| 985 | struct scatterlist *sg = sg_list; |
| 986 | int sg_nents = 0; |
| 987 | |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 988 | while (nbytes > 0) { |
| 989 | sg_nents++; |
| 990 | nbytes -= sg->length; |
| 991 | if (!sg_is_last(sg) && (sg + 1)->length == 0) |
Yuan Kang | 1acebad | 2011-07-15 11:21:42 +0800 | [diff] [blame^] | 992 | BUG(); /* Not support chaining */ |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 993 | sg = scatterwalk_sg_next(sg); |
| 994 | } |
| 995 | |
Yuan Kang | 1acebad | 2011-07-15 11:21:42 +0800 | [diff] [blame^] | 996 | if (likely(sg_nents == 1)) |
| 997 | return 0; |
| 998 | |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 999 | return sg_nents; |
| 1000 | } |
| 1001 | |
| 1002 | /* |
Yuan Kang | 1acebad | 2011-07-15 11:21:42 +0800 | [diff] [blame^] | 1003 | * allocate and map the aead extended descriptor |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 1004 | */ |
Yuan Kang | 0e47930 | 2011-07-15 11:21:41 +0800 | [diff] [blame] | 1005 | static struct aead_edesc *aead_edesc_alloc(struct aead_request *req, |
Yuan Kang | 1acebad | 2011-07-15 11:21:42 +0800 | [diff] [blame^] | 1006 | int desc_bytes, bool *all_contig_ptr) |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 1007 | { |
Yuan Kang | 0e47930 | 2011-07-15 11:21:41 +0800 | [diff] [blame] | 1008 | struct crypto_aead *aead = crypto_aead_reqtfm(req); |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 1009 | struct caam_ctx *ctx = crypto_aead_ctx(aead); |
| 1010 | struct device *jrdev = ctx->jrdev; |
Yuan Kang | 1acebad | 2011-07-15 11:21:42 +0800 | [diff] [blame^] | 1011 | gfp_t flags = (req->base.flags & (CRYPTO_TFM_REQ_MAY_BACKLOG | |
| 1012 | CRYPTO_TFM_REQ_MAY_SLEEP)) ? GFP_KERNEL : GFP_ATOMIC; |
| 1013 | int assoc_nents, src_nents, dst_nents = 0; |
Yuan Kang | 0e47930 | 2011-07-15 11:21:41 +0800 | [diff] [blame] | 1014 | struct aead_edesc *edesc; |
Yuan Kang | 1acebad | 2011-07-15 11:21:42 +0800 | [diff] [blame^] | 1015 | dma_addr_t iv_dma = 0; |
| 1016 | int sgc; |
| 1017 | bool all_contig = true; |
| 1018 | int ivsize = crypto_aead_ivsize(aead); |
| 1019 | int link_tbl_index, link_tbl_len = 0, link_tbl_bytes; |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 1020 | |
Yuan Kang | 1acebad | 2011-07-15 11:21:42 +0800 | [diff] [blame^] | 1021 | assoc_nents = sg_count(req->assoc, req->assoclen); |
| 1022 | src_nents = sg_count(req->src, req->cryptlen); |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 1023 | |
Yuan Kang | 1acebad | 2011-07-15 11:21:42 +0800 | [diff] [blame^] | 1024 | if (unlikely(req->dst != req->src)) |
| 1025 | dst_nents = sg_count(req->dst, req->cryptlen); |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 1026 | |
Yuan Kang | 1acebad | 2011-07-15 11:21:42 +0800 | [diff] [blame^] | 1027 | sgc = dma_map_sg(jrdev, req->assoc, assoc_nents ? : 1, |
| 1028 | DMA_BIDIRECTIONAL); |
| 1029 | if (likely(req->src == req->dst)) { |
| 1030 | sgc = dma_map_sg(jrdev, req->src, src_nents ? : 1, |
| 1031 | DMA_BIDIRECTIONAL); |
| 1032 | } else { |
| 1033 | sgc = dma_map_sg(jrdev, req->src, src_nents ? : 1, |
| 1034 | DMA_TO_DEVICE); |
| 1035 | sgc = dma_map_sg(jrdev, req->dst, dst_nents ? : 1, |
| 1036 | DMA_FROM_DEVICE); |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 1037 | } |
| 1038 | |
Yuan Kang | 1acebad | 2011-07-15 11:21:42 +0800 | [diff] [blame^] | 1039 | /* Check if data are contiguous */ |
| 1040 | iv_dma = dma_map_single(jrdev, req->iv, ivsize, DMA_TO_DEVICE); |
| 1041 | if (assoc_nents || sg_dma_address(req->assoc) + req->assoclen != |
| 1042 | iv_dma || src_nents || iv_dma + ivsize != |
| 1043 | sg_dma_address(req->src)) { |
| 1044 | all_contig = false; |
| 1045 | assoc_nents = assoc_nents ? : 1; |
| 1046 | src_nents = src_nents ? : 1; |
| 1047 | link_tbl_len = assoc_nents + 1 + src_nents; |
| 1048 | } |
| 1049 | link_tbl_len += dst_nents; |
| 1050 | |
| 1051 | link_tbl_bytes = link_tbl_len * sizeof(struct link_tbl_entry); |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 1052 | |
| 1053 | /* allocate space for base edesc and hw desc commands, link tables */ |
Yuan Kang | 0e47930 | 2011-07-15 11:21:41 +0800 | [diff] [blame] | 1054 | edesc = kmalloc(sizeof(struct aead_edesc) + desc_bytes + |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 1055 | link_tbl_bytes, GFP_DMA | flags); |
| 1056 | if (!edesc) { |
| 1057 | dev_err(jrdev, "could not allocate extended descriptor\n"); |
| 1058 | return ERR_PTR(-ENOMEM); |
| 1059 | } |
| 1060 | |
| 1061 | edesc->assoc_nents = assoc_nents; |
| 1062 | edesc->src_nents = src_nents; |
| 1063 | edesc->dst_nents = dst_nents; |
Yuan Kang | 1acebad | 2011-07-15 11:21:42 +0800 | [diff] [blame^] | 1064 | edesc->iv_dma = iv_dma; |
| 1065 | edesc->link_tbl_bytes = link_tbl_bytes; |
Yuan Kang | 0e47930 | 2011-07-15 11:21:41 +0800 | [diff] [blame] | 1066 | edesc->link_tbl = (void *)edesc + sizeof(struct aead_edesc) + |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 1067 | desc_bytes; |
| 1068 | edesc->link_tbl_dma = dma_map_single(jrdev, edesc->link_tbl, |
| 1069 | link_tbl_bytes, DMA_TO_DEVICE); |
Yuan Kang | 1acebad | 2011-07-15 11:21:42 +0800 | [diff] [blame^] | 1070 | *all_contig_ptr = all_contig; |
| 1071 | |
| 1072 | link_tbl_index = 0; |
| 1073 | if (!all_contig) { |
| 1074 | sg_to_link_tbl(req->assoc, |
| 1075 | (assoc_nents ? : 1), |
| 1076 | edesc->link_tbl + |
| 1077 | link_tbl_index, 0); |
| 1078 | link_tbl_index += assoc_nents ? : 1; |
| 1079 | sg_to_link_tbl_one(edesc->link_tbl + link_tbl_index, |
| 1080 | iv_dma, ivsize, 0); |
| 1081 | link_tbl_index += 1; |
| 1082 | sg_to_link_tbl_last(req->src, |
| 1083 | (src_nents ? : 1), |
| 1084 | edesc->link_tbl + |
| 1085 | link_tbl_index, 0); |
| 1086 | link_tbl_index += src_nents ? : 1; |
| 1087 | } |
| 1088 | if (dst_nents) { |
| 1089 | sg_to_link_tbl_last(req->dst, dst_nents, |
| 1090 | edesc->link_tbl + link_tbl_index, 0); |
| 1091 | } |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 1092 | |
| 1093 | return edesc; |
| 1094 | } |
| 1095 | |
Yuan Kang | 0e47930 | 2011-07-15 11:21:41 +0800 | [diff] [blame] | 1096 | static int aead_encrypt(struct aead_request *req) |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 1097 | { |
Yuan Kang | 0e47930 | 2011-07-15 11:21:41 +0800 | [diff] [blame] | 1098 | struct aead_edesc *edesc; |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 1099 | struct crypto_aead *aead = crypto_aead_reqtfm(req); |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 1100 | struct caam_ctx *ctx = crypto_aead_ctx(aead); |
| 1101 | struct device *jrdev = ctx->jrdev; |
Yuan Kang | 1acebad | 2011-07-15 11:21:42 +0800 | [diff] [blame^] | 1102 | bool all_contig; |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 1103 | u32 *desc; |
Yuan Kang | 1acebad | 2011-07-15 11:21:42 +0800 | [diff] [blame^] | 1104 | int ret = 0; |
| 1105 | |
| 1106 | req->cryptlen += ctx->authsize; |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 1107 | |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 1108 | /* allocate extended descriptor */ |
Yuan Kang | 1acebad | 2011-07-15 11:21:42 +0800 | [diff] [blame^] | 1109 | edesc = aead_edesc_alloc(req, DESC_JOB_IO_LEN * |
| 1110 | CAAM_CMD_SZ, &all_contig); |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 1111 | if (IS_ERR(edesc)) |
| 1112 | return PTR_ERR(edesc); |
| 1113 | |
Yuan Kang | 1acebad | 2011-07-15 11:21:42 +0800 | [diff] [blame^] | 1114 | /* Create and submit job descriptor */ |
| 1115 | init_aead_job(ctx->sh_desc_enc, ctx->sh_desc_enc_dma, edesc, req, |
| 1116 | all_contig, true); |
| 1117 | #ifdef DEBUG |
| 1118 | print_hex_dump(KERN_ERR, "aead jobdesc@"xstr(__LINE__)": ", |
| 1119 | DUMP_PREFIX_ADDRESS, 16, 4, edesc->hw_desc, |
| 1120 | desc_bytes(edesc->hw_desc), 1); |
| 1121 | #endif |
| 1122 | |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 1123 | desc = edesc->hw_desc; |
Yuan Kang | 1acebad | 2011-07-15 11:21:42 +0800 | [diff] [blame^] | 1124 | ret = caam_jr_enqueue(jrdev, desc, aead_encrypt_done, req); |
| 1125 | if (!ret) { |
| 1126 | ret = -EINPROGRESS; |
| 1127 | } else { |
| 1128 | aead_unmap(jrdev, edesc, req); |
| 1129 | kfree(edesc); |
| 1130 | } |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 1131 | |
Yuan Kang | 1acebad | 2011-07-15 11:21:42 +0800 | [diff] [blame^] | 1132 | return ret; |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 1133 | } |
| 1134 | |
Yuan Kang | 0e47930 | 2011-07-15 11:21:41 +0800 | [diff] [blame] | 1135 | static int aead_decrypt(struct aead_request *req) |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 1136 | { |
Yuan Kang | 1acebad | 2011-07-15 11:21:42 +0800 | [diff] [blame^] | 1137 | struct aead_edesc *edesc; |
Yuan Kang | 0e47930 | 2011-07-15 11:21:41 +0800 | [diff] [blame] | 1138 | struct crypto_aead *aead = crypto_aead_reqtfm(req); |
Yuan Kang | 0e47930 | 2011-07-15 11:21:41 +0800 | [diff] [blame] | 1139 | struct caam_ctx *ctx = crypto_aead_ctx(aead); |
| 1140 | struct device *jrdev = ctx->jrdev; |
Yuan Kang | 1acebad | 2011-07-15 11:21:42 +0800 | [diff] [blame^] | 1141 | bool all_contig; |
Yuan Kang | 0e47930 | 2011-07-15 11:21:41 +0800 | [diff] [blame] | 1142 | u32 *desc; |
Yuan Kang | 1acebad | 2011-07-15 11:21:42 +0800 | [diff] [blame^] | 1143 | int ret = 0; |
Yuan Kang | 0e47930 | 2011-07-15 11:21:41 +0800 | [diff] [blame] | 1144 | |
| 1145 | /* allocate extended descriptor */ |
Yuan Kang | 1acebad | 2011-07-15 11:21:42 +0800 | [diff] [blame^] | 1146 | edesc = aead_edesc_alloc(req, DESC_JOB_IO_LEN * |
| 1147 | CAAM_CMD_SZ, &all_contig); |
Yuan Kang | 0e47930 | 2011-07-15 11:21:41 +0800 | [diff] [blame] | 1148 | if (IS_ERR(edesc)) |
| 1149 | return PTR_ERR(edesc); |
| 1150 | |
Yuan Kang | 1acebad | 2011-07-15 11:21:42 +0800 | [diff] [blame^] | 1151 | #ifdef DEBUG |
| 1152 | print_hex_dump(KERN_ERR, "dec src@"xstr(__LINE__)": ", |
| 1153 | DUMP_PREFIX_ADDRESS, 16, 4, sg_virt(req->src), |
| 1154 | req->cryptlen, 1); |
| 1155 | #endif |
| 1156 | |
| 1157 | /* Create and submit job descriptor*/ |
| 1158 | init_aead_job(ctx->sh_desc_dec, |
| 1159 | ctx->sh_desc_dec_dma, edesc, req, all_contig, false); |
| 1160 | #ifdef DEBUG |
| 1161 | print_hex_dump(KERN_ERR, "aead jobdesc@"xstr(__LINE__)": ", |
| 1162 | DUMP_PREFIX_ADDRESS, 16, 4, edesc->hw_desc, |
| 1163 | desc_bytes(edesc->hw_desc), 1); |
| 1164 | #endif |
| 1165 | |
Yuan Kang | 0e47930 | 2011-07-15 11:21:41 +0800 | [diff] [blame] | 1166 | desc = edesc->hw_desc; |
Yuan Kang | 1acebad | 2011-07-15 11:21:42 +0800 | [diff] [blame^] | 1167 | ret = caam_jr_enqueue(jrdev, desc, aead_decrypt_done, req); |
| 1168 | if (!ret) { |
| 1169 | ret = -EINPROGRESS; |
| 1170 | } else { |
| 1171 | aead_unmap(jrdev, edesc, req); |
| 1172 | kfree(edesc); |
| 1173 | } |
Yuan Kang | 0e47930 | 2011-07-15 11:21:41 +0800 | [diff] [blame] | 1174 | |
Yuan Kang | 1acebad | 2011-07-15 11:21:42 +0800 | [diff] [blame^] | 1175 | return ret; |
| 1176 | } |
Yuan Kang | 0e47930 | 2011-07-15 11:21:41 +0800 | [diff] [blame] | 1177 | |
Yuan Kang | 1acebad | 2011-07-15 11:21:42 +0800 | [diff] [blame^] | 1178 | /* |
| 1179 | * allocate and map the aead extended descriptor for aead givencrypt |
| 1180 | */ |
| 1181 | static struct aead_edesc *aead_giv_edesc_alloc(struct aead_givcrypt_request |
| 1182 | *greq, int desc_bytes, |
| 1183 | u32 *contig_ptr) |
| 1184 | { |
| 1185 | struct aead_request *req = &greq->areq; |
| 1186 | struct crypto_aead *aead = crypto_aead_reqtfm(req); |
| 1187 | struct caam_ctx *ctx = crypto_aead_ctx(aead); |
| 1188 | struct device *jrdev = ctx->jrdev; |
| 1189 | gfp_t flags = (req->base.flags & (CRYPTO_TFM_REQ_MAY_BACKLOG | |
| 1190 | CRYPTO_TFM_REQ_MAY_SLEEP)) ? GFP_KERNEL : GFP_ATOMIC; |
| 1191 | int assoc_nents, src_nents, dst_nents = 0; |
| 1192 | struct aead_edesc *edesc; |
| 1193 | dma_addr_t iv_dma = 0; |
| 1194 | int sgc; |
| 1195 | u32 contig = GIV_SRC_CONTIG | GIV_DST_CONTIG; |
| 1196 | int ivsize = crypto_aead_ivsize(aead); |
| 1197 | int link_tbl_index, link_tbl_len = 0, link_tbl_bytes; |
Yuan Kang | 0e47930 | 2011-07-15 11:21:41 +0800 | [diff] [blame] | 1198 | |
Yuan Kang | 1acebad | 2011-07-15 11:21:42 +0800 | [diff] [blame^] | 1199 | assoc_nents = sg_count(req->assoc, req->assoclen); |
| 1200 | src_nents = sg_count(req->src, req->cryptlen); |
Yuan Kang | 0e47930 | 2011-07-15 11:21:41 +0800 | [diff] [blame] | 1201 | |
Yuan Kang | 1acebad | 2011-07-15 11:21:42 +0800 | [diff] [blame^] | 1202 | if (unlikely(req->dst != req->src)) |
| 1203 | dst_nents = sg_count(req->dst, req->cryptlen); |
| 1204 | |
| 1205 | sgc = dma_map_sg(jrdev, req->assoc, assoc_nents ? : 1, |
| 1206 | DMA_BIDIRECTIONAL); |
| 1207 | if (likely(req->src == req->dst)) { |
| 1208 | sgc = dma_map_sg(jrdev, req->src, src_nents ? : 1, |
| 1209 | DMA_BIDIRECTIONAL); |
| 1210 | } else { |
| 1211 | sgc = dma_map_sg(jrdev, req->src, src_nents ? : 1, |
| 1212 | DMA_TO_DEVICE); |
| 1213 | sgc = dma_map_sg(jrdev, req->dst, dst_nents ? : 1, |
| 1214 | DMA_FROM_DEVICE); |
| 1215 | } |
| 1216 | |
| 1217 | /* Check if data are contiguous */ |
| 1218 | iv_dma = dma_map_single(jrdev, greq->giv, ivsize, DMA_TO_DEVICE); |
| 1219 | if (assoc_nents || sg_dma_address(req->assoc) + req->assoclen != |
| 1220 | iv_dma || src_nents || iv_dma + ivsize != sg_dma_address(req->src)) |
| 1221 | contig &= ~GIV_SRC_CONTIG; |
| 1222 | if (dst_nents || iv_dma + ivsize != sg_dma_address(req->dst)) |
| 1223 | contig &= ~GIV_DST_CONTIG; |
| 1224 | if (unlikely(req->src != req->dst)) { |
| 1225 | dst_nents = dst_nents ? : 1; |
| 1226 | link_tbl_len += 1; |
| 1227 | } |
| 1228 | if (!(contig & GIV_SRC_CONTIG)) { |
| 1229 | assoc_nents = assoc_nents ? : 1; |
| 1230 | src_nents = src_nents ? : 1; |
| 1231 | link_tbl_len += assoc_nents + 1 + src_nents; |
| 1232 | if (likely(req->src == req->dst)) |
| 1233 | contig &= ~GIV_DST_CONTIG; |
| 1234 | } |
| 1235 | link_tbl_len += dst_nents; |
| 1236 | |
| 1237 | link_tbl_bytes = link_tbl_len * sizeof(struct link_tbl_entry); |
| 1238 | |
| 1239 | /* allocate space for base edesc and hw desc commands, link tables */ |
| 1240 | edesc = kmalloc(sizeof(struct aead_edesc) + desc_bytes + |
| 1241 | link_tbl_bytes, GFP_DMA | flags); |
| 1242 | if (!edesc) { |
| 1243 | dev_err(jrdev, "could not allocate extended descriptor\n"); |
| 1244 | return ERR_PTR(-ENOMEM); |
| 1245 | } |
| 1246 | |
| 1247 | edesc->assoc_nents = assoc_nents; |
| 1248 | edesc->src_nents = src_nents; |
| 1249 | edesc->dst_nents = dst_nents; |
| 1250 | edesc->iv_dma = iv_dma; |
| 1251 | edesc->link_tbl_bytes = link_tbl_bytes; |
| 1252 | edesc->link_tbl = (void *)edesc + sizeof(struct aead_edesc) + |
| 1253 | desc_bytes; |
| 1254 | edesc->link_tbl_dma = dma_map_single(jrdev, edesc->link_tbl, |
| 1255 | link_tbl_bytes, DMA_TO_DEVICE); |
| 1256 | *contig_ptr = contig; |
| 1257 | |
| 1258 | link_tbl_index = 0; |
| 1259 | if (!(contig & GIV_SRC_CONTIG)) { |
| 1260 | sg_to_link_tbl(req->assoc, assoc_nents, |
| 1261 | edesc->link_tbl + |
| 1262 | link_tbl_index, 0); |
| 1263 | link_tbl_index += assoc_nents; |
| 1264 | sg_to_link_tbl_one(edesc->link_tbl + link_tbl_index, |
| 1265 | iv_dma, ivsize, 0); |
| 1266 | link_tbl_index += 1; |
| 1267 | sg_to_link_tbl_last(req->src, src_nents, |
| 1268 | edesc->link_tbl + |
| 1269 | link_tbl_index, 0); |
| 1270 | link_tbl_index += src_nents; |
| 1271 | } |
| 1272 | if (unlikely(req->src != req->dst && !(contig & GIV_DST_CONTIG))) { |
| 1273 | sg_to_link_tbl_one(edesc->link_tbl + link_tbl_index, |
| 1274 | iv_dma, ivsize, 0); |
| 1275 | link_tbl_index += 1; |
| 1276 | sg_to_link_tbl_last(req->dst, dst_nents, |
| 1277 | edesc->link_tbl + link_tbl_index, 0); |
| 1278 | } |
| 1279 | |
| 1280 | return edesc; |
Yuan Kang | 0e47930 | 2011-07-15 11:21:41 +0800 | [diff] [blame] | 1281 | } |
| 1282 | |
| 1283 | static int aead_givencrypt(struct aead_givcrypt_request *areq) |
| 1284 | { |
| 1285 | struct aead_request *req = &areq->areq; |
| 1286 | struct aead_edesc *edesc; |
| 1287 | struct crypto_aead *aead = crypto_aead_reqtfm(req); |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 1288 | struct caam_ctx *ctx = crypto_aead_ctx(aead); |
| 1289 | struct device *jrdev = ctx->jrdev; |
Yuan Kang | 1acebad | 2011-07-15 11:21:42 +0800 | [diff] [blame^] | 1290 | u32 contig; |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 1291 | u32 *desc; |
Yuan Kang | 1acebad | 2011-07-15 11:21:42 +0800 | [diff] [blame^] | 1292 | int ret = 0; |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 1293 | |
Yuan Kang | 1acebad | 2011-07-15 11:21:42 +0800 | [diff] [blame^] | 1294 | req->cryptlen += ctx->authsize; |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 1295 | |
| 1296 | /* allocate extended descriptor */ |
Yuan Kang | 1acebad | 2011-07-15 11:21:42 +0800 | [diff] [blame^] | 1297 | edesc = aead_giv_edesc_alloc(areq, DESC_JOB_IO_LEN * |
| 1298 | CAAM_CMD_SZ, &contig); |
| 1299 | |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 1300 | if (IS_ERR(edesc)) |
| 1301 | return PTR_ERR(edesc); |
| 1302 | |
Yuan Kang | 1acebad | 2011-07-15 11:21:42 +0800 | [diff] [blame^] | 1303 | #ifdef DEBUG |
| 1304 | print_hex_dump(KERN_ERR, "giv src@"xstr(__LINE__)": ", |
| 1305 | DUMP_PREFIX_ADDRESS, 16, 4, sg_virt(req->src), |
| 1306 | req->cryptlen, 1); |
| 1307 | #endif |
| 1308 | |
| 1309 | /* Create and submit job descriptor*/ |
| 1310 | init_aead_giv_job(ctx->sh_desc_givenc, |
| 1311 | ctx->sh_desc_givenc_dma, edesc, req, contig); |
| 1312 | #ifdef DEBUG |
| 1313 | print_hex_dump(KERN_ERR, "aead jobdesc@"xstr(__LINE__)": ", |
| 1314 | DUMP_PREFIX_ADDRESS, 16, 4, edesc->hw_desc, |
| 1315 | desc_bytes(edesc->hw_desc), 1); |
| 1316 | #endif |
| 1317 | |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 1318 | desc = edesc->hw_desc; |
Yuan Kang | 1acebad | 2011-07-15 11:21:42 +0800 | [diff] [blame^] | 1319 | ret = caam_jr_enqueue(jrdev, desc, aead_encrypt_done, req); |
| 1320 | if (!ret) { |
| 1321 | ret = -EINPROGRESS; |
| 1322 | } else { |
| 1323 | aead_unmap(jrdev, edesc, req); |
| 1324 | kfree(edesc); |
| 1325 | } |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 1326 | |
Yuan Kang | 1acebad | 2011-07-15 11:21:42 +0800 | [diff] [blame^] | 1327 | return ret; |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 1328 | } |
| 1329 | |
Yuan Kang | 885e9e2 | 2011-07-15 11:21:41 +0800 | [diff] [blame] | 1330 | #define template_aead template_u.aead |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 1331 | struct caam_alg_template { |
| 1332 | char name[CRYPTO_MAX_ALG_NAME]; |
| 1333 | char driver_name[CRYPTO_MAX_ALG_NAME]; |
| 1334 | unsigned int blocksize; |
Yuan Kang | 885e9e2 | 2011-07-15 11:21:41 +0800 | [diff] [blame] | 1335 | u32 type; |
| 1336 | union { |
| 1337 | struct ablkcipher_alg ablkcipher; |
| 1338 | struct aead_alg aead; |
| 1339 | struct blkcipher_alg blkcipher; |
| 1340 | struct cipher_alg cipher; |
| 1341 | struct compress_alg compress; |
| 1342 | struct rng_alg rng; |
| 1343 | } template_u; |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 1344 | u32 class1_alg_type; |
| 1345 | u32 class2_alg_type; |
| 1346 | u32 alg_op; |
| 1347 | }; |
| 1348 | |
| 1349 | static struct caam_alg_template driver_algs[] = { |
| 1350 | /* single-pass ipsec_esp descriptor */ |
| 1351 | { |
| 1352 | .name = "authenc(hmac(sha1),cbc(aes))", |
| 1353 | .driver_name = "authenc-hmac-sha1-cbc-aes-caam", |
| 1354 | .blocksize = AES_BLOCK_SIZE, |
Yuan Kang | 885e9e2 | 2011-07-15 11:21:41 +0800 | [diff] [blame] | 1355 | .type = CRYPTO_ALG_TYPE_AEAD, |
| 1356 | .template_aead = { |
Yuan Kang | 0e47930 | 2011-07-15 11:21:41 +0800 | [diff] [blame] | 1357 | .setkey = aead_setkey, |
| 1358 | .setauthsize = aead_setauthsize, |
| 1359 | .encrypt = aead_encrypt, |
| 1360 | .decrypt = aead_decrypt, |
| 1361 | .givencrypt = aead_givencrypt, |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 1362 | .geniv = "<built-in>", |
| 1363 | .ivsize = AES_BLOCK_SIZE, |
| 1364 | .maxauthsize = SHA1_DIGEST_SIZE, |
| 1365 | }, |
| 1366 | .class1_alg_type = OP_ALG_ALGSEL_AES | OP_ALG_AAI_CBC, |
| 1367 | .class2_alg_type = OP_ALG_ALGSEL_SHA1 | OP_ALG_AAI_HMAC_PRECOMP, |
| 1368 | .alg_op = OP_ALG_ALGSEL_SHA1 | OP_ALG_AAI_HMAC, |
| 1369 | }, |
| 1370 | { |
| 1371 | .name = "authenc(hmac(sha256),cbc(aes))", |
| 1372 | .driver_name = "authenc-hmac-sha256-cbc-aes-caam", |
| 1373 | .blocksize = AES_BLOCK_SIZE, |
Yuan Kang | 885e9e2 | 2011-07-15 11:21:41 +0800 | [diff] [blame] | 1374 | .type = CRYPTO_ALG_TYPE_AEAD, |
| 1375 | .template_aead = { |
Yuan Kang | 0e47930 | 2011-07-15 11:21:41 +0800 | [diff] [blame] | 1376 | .setkey = aead_setkey, |
| 1377 | .setauthsize = aead_setauthsize, |
| 1378 | .encrypt = aead_encrypt, |
| 1379 | .decrypt = aead_decrypt, |
| 1380 | .givencrypt = aead_givencrypt, |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 1381 | .geniv = "<built-in>", |
| 1382 | .ivsize = AES_BLOCK_SIZE, |
| 1383 | .maxauthsize = SHA256_DIGEST_SIZE, |
| 1384 | }, |
| 1385 | .class1_alg_type = OP_ALG_ALGSEL_AES | OP_ALG_AAI_CBC, |
| 1386 | .class2_alg_type = OP_ALG_ALGSEL_SHA256 | |
| 1387 | OP_ALG_AAI_HMAC_PRECOMP, |
| 1388 | .alg_op = OP_ALG_ALGSEL_SHA256 | OP_ALG_AAI_HMAC, |
| 1389 | }, |
| 1390 | { |
Kim Phillips | 4427b1b | 2011-05-14 22:08:17 -0500 | [diff] [blame] | 1391 | .name = "authenc(hmac(sha512),cbc(aes))", |
| 1392 | .driver_name = "authenc-hmac-sha512-cbc-aes-caam", |
| 1393 | .blocksize = AES_BLOCK_SIZE, |
Yuan Kang | 885e9e2 | 2011-07-15 11:21:41 +0800 | [diff] [blame] | 1394 | .type = CRYPTO_ALG_TYPE_AEAD, |
| 1395 | .template_aead = { |
Yuan Kang | 0e47930 | 2011-07-15 11:21:41 +0800 | [diff] [blame] | 1396 | .setkey = aead_setkey, |
| 1397 | .setauthsize = aead_setauthsize, |
| 1398 | .encrypt = aead_encrypt, |
| 1399 | .decrypt = aead_decrypt, |
| 1400 | .givencrypt = aead_givencrypt, |
Kim Phillips | 4427b1b | 2011-05-14 22:08:17 -0500 | [diff] [blame] | 1401 | .geniv = "<built-in>", |
| 1402 | .ivsize = AES_BLOCK_SIZE, |
| 1403 | .maxauthsize = SHA512_DIGEST_SIZE, |
| 1404 | }, |
| 1405 | .class1_alg_type = OP_ALG_ALGSEL_AES | OP_ALG_AAI_CBC, |
| 1406 | .class2_alg_type = OP_ALG_ALGSEL_SHA512 | |
| 1407 | OP_ALG_AAI_HMAC_PRECOMP, |
| 1408 | .alg_op = OP_ALG_ALGSEL_SHA512 | OP_ALG_AAI_HMAC, |
| 1409 | }, |
| 1410 | { |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 1411 | .name = "authenc(hmac(sha1),cbc(des3_ede))", |
| 1412 | .driver_name = "authenc-hmac-sha1-cbc-des3_ede-caam", |
| 1413 | .blocksize = DES3_EDE_BLOCK_SIZE, |
Yuan Kang | 885e9e2 | 2011-07-15 11:21:41 +0800 | [diff] [blame] | 1414 | .type = CRYPTO_ALG_TYPE_AEAD, |
| 1415 | .template_aead = { |
Yuan Kang | 0e47930 | 2011-07-15 11:21:41 +0800 | [diff] [blame] | 1416 | .setkey = aead_setkey, |
| 1417 | .setauthsize = aead_setauthsize, |
| 1418 | .encrypt = aead_encrypt, |
| 1419 | .decrypt = aead_decrypt, |
| 1420 | .givencrypt = aead_givencrypt, |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 1421 | .geniv = "<built-in>", |
| 1422 | .ivsize = DES3_EDE_BLOCK_SIZE, |
| 1423 | .maxauthsize = SHA1_DIGEST_SIZE, |
| 1424 | }, |
| 1425 | .class1_alg_type = OP_ALG_ALGSEL_3DES | OP_ALG_AAI_CBC, |
| 1426 | .class2_alg_type = OP_ALG_ALGSEL_SHA1 | OP_ALG_AAI_HMAC_PRECOMP, |
| 1427 | .alg_op = OP_ALG_ALGSEL_SHA1 | OP_ALG_AAI_HMAC, |
| 1428 | }, |
| 1429 | { |
| 1430 | .name = "authenc(hmac(sha256),cbc(des3_ede))", |
| 1431 | .driver_name = "authenc-hmac-sha256-cbc-des3_ede-caam", |
| 1432 | .blocksize = DES3_EDE_BLOCK_SIZE, |
Yuan Kang | 885e9e2 | 2011-07-15 11:21:41 +0800 | [diff] [blame] | 1433 | .type = CRYPTO_ALG_TYPE_AEAD, |
| 1434 | .template_aead = { |
Yuan Kang | 0e47930 | 2011-07-15 11:21:41 +0800 | [diff] [blame] | 1435 | .setkey = aead_setkey, |
| 1436 | .setauthsize = aead_setauthsize, |
| 1437 | .encrypt = aead_encrypt, |
| 1438 | .decrypt = aead_decrypt, |
| 1439 | .givencrypt = aead_givencrypt, |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 1440 | .geniv = "<built-in>", |
| 1441 | .ivsize = DES3_EDE_BLOCK_SIZE, |
| 1442 | .maxauthsize = SHA256_DIGEST_SIZE, |
| 1443 | }, |
| 1444 | .class1_alg_type = OP_ALG_ALGSEL_3DES | OP_ALG_AAI_CBC, |
| 1445 | .class2_alg_type = OP_ALG_ALGSEL_SHA256 | |
| 1446 | OP_ALG_AAI_HMAC_PRECOMP, |
| 1447 | .alg_op = OP_ALG_ALGSEL_SHA256 | OP_ALG_AAI_HMAC, |
| 1448 | }, |
| 1449 | { |
Kim Phillips | 4427b1b | 2011-05-14 22:08:17 -0500 | [diff] [blame] | 1450 | .name = "authenc(hmac(sha512),cbc(des3_ede))", |
| 1451 | .driver_name = "authenc-hmac-sha512-cbc-des3_ede-caam", |
| 1452 | .blocksize = DES3_EDE_BLOCK_SIZE, |
Yuan Kang | 885e9e2 | 2011-07-15 11:21:41 +0800 | [diff] [blame] | 1453 | .type = CRYPTO_ALG_TYPE_AEAD, |
| 1454 | .template_aead = { |
Yuan Kang | 0e47930 | 2011-07-15 11:21:41 +0800 | [diff] [blame] | 1455 | .setkey = aead_setkey, |
| 1456 | .setauthsize = aead_setauthsize, |
| 1457 | .encrypt = aead_encrypt, |
| 1458 | .decrypt = aead_decrypt, |
| 1459 | .givencrypt = aead_givencrypt, |
Kim Phillips | 4427b1b | 2011-05-14 22:08:17 -0500 | [diff] [blame] | 1460 | .geniv = "<built-in>", |
| 1461 | .ivsize = DES3_EDE_BLOCK_SIZE, |
| 1462 | .maxauthsize = SHA512_DIGEST_SIZE, |
| 1463 | }, |
| 1464 | .class1_alg_type = OP_ALG_ALGSEL_3DES | OP_ALG_AAI_CBC, |
| 1465 | .class2_alg_type = OP_ALG_ALGSEL_SHA512 | |
| 1466 | OP_ALG_AAI_HMAC_PRECOMP, |
| 1467 | .alg_op = OP_ALG_ALGSEL_SHA512 | OP_ALG_AAI_HMAC, |
| 1468 | }, |
| 1469 | { |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 1470 | .name = "authenc(hmac(sha1),cbc(des))", |
| 1471 | .driver_name = "authenc-hmac-sha1-cbc-des-caam", |
| 1472 | .blocksize = DES_BLOCK_SIZE, |
Yuan Kang | 885e9e2 | 2011-07-15 11:21:41 +0800 | [diff] [blame] | 1473 | .type = CRYPTO_ALG_TYPE_AEAD, |
| 1474 | .template_aead = { |
Yuan Kang | 0e47930 | 2011-07-15 11:21:41 +0800 | [diff] [blame] | 1475 | .setkey = aead_setkey, |
| 1476 | .setauthsize = aead_setauthsize, |
| 1477 | .encrypt = aead_encrypt, |
| 1478 | .decrypt = aead_decrypt, |
| 1479 | .givencrypt = aead_givencrypt, |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 1480 | .geniv = "<built-in>", |
| 1481 | .ivsize = DES_BLOCK_SIZE, |
| 1482 | .maxauthsize = SHA1_DIGEST_SIZE, |
| 1483 | }, |
| 1484 | .class1_alg_type = OP_ALG_ALGSEL_DES | OP_ALG_AAI_CBC, |
| 1485 | .class2_alg_type = OP_ALG_ALGSEL_SHA1 | OP_ALG_AAI_HMAC_PRECOMP, |
| 1486 | .alg_op = OP_ALG_ALGSEL_SHA1 | OP_ALG_AAI_HMAC, |
| 1487 | }, |
| 1488 | { |
| 1489 | .name = "authenc(hmac(sha256),cbc(des))", |
| 1490 | .driver_name = "authenc-hmac-sha256-cbc-des-caam", |
| 1491 | .blocksize = DES_BLOCK_SIZE, |
Yuan Kang | 885e9e2 | 2011-07-15 11:21:41 +0800 | [diff] [blame] | 1492 | .type = CRYPTO_ALG_TYPE_AEAD, |
| 1493 | .template_aead = { |
Yuan Kang | 0e47930 | 2011-07-15 11:21:41 +0800 | [diff] [blame] | 1494 | .setkey = aead_setkey, |
| 1495 | .setauthsize = aead_setauthsize, |
| 1496 | .encrypt = aead_encrypt, |
| 1497 | .decrypt = aead_decrypt, |
| 1498 | .givencrypt = aead_givencrypt, |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 1499 | .geniv = "<built-in>", |
| 1500 | .ivsize = DES_BLOCK_SIZE, |
| 1501 | .maxauthsize = SHA256_DIGEST_SIZE, |
| 1502 | }, |
| 1503 | .class1_alg_type = OP_ALG_ALGSEL_DES | OP_ALG_AAI_CBC, |
| 1504 | .class2_alg_type = OP_ALG_ALGSEL_SHA256 | |
| 1505 | OP_ALG_AAI_HMAC_PRECOMP, |
| 1506 | .alg_op = OP_ALG_ALGSEL_SHA256 | OP_ALG_AAI_HMAC, |
| 1507 | }, |
Kim Phillips | 4427b1b | 2011-05-14 22:08:17 -0500 | [diff] [blame] | 1508 | { |
| 1509 | .name = "authenc(hmac(sha512),cbc(des))", |
| 1510 | .driver_name = "authenc-hmac-sha512-cbc-des-caam", |
| 1511 | .blocksize = DES_BLOCK_SIZE, |
Yuan Kang | 885e9e2 | 2011-07-15 11:21:41 +0800 | [diff] [blame] | 1512 | .type = CRYPTO_ALG_TYPE_AEAD, |
| 1513 | .template_aead = { |
Yuan Kang | 0e47930 | 2011-07-15 11:21:41 +0800 | [diff] [blame] | 1514 | .setkey = aead_setkey, |
| 1515 | .setauthsize = aead_setauthsize, |
| 1516 | .encrypt = aead_encrypt, |
| 1517 | .decrypt = aead_decrypt, |
| 1518 | .givencrypt = aead_givencrypt, |
Kim Phillips | 4427b1b | 2011-05-14 22:08:17 -0500 | [diff] [blame] | 1519 | .geniv = "<built-in>", |
| 1520 | .ivsize = DES_BLOCK_SIZE, |
| 1521 | .maxauthsize = SHA512_DIGEST_SIZE, |
| 1522 | }, |
| 1523 | .class1_alg_type = OP_ALG_ALGSEL_DES | OP_ALG_AAI_CBC, |
| 1524 | .class2_alg_type = OP_ALG_ALGSEL_SHA512 | |
| 1525 | OP_ALG_AAI_HMAC_PRECOMP, |
| 1526 | .alg_op = OP_ALG_ALGSEL_SHA512 | OP_ALG_AAI_HMAC, |
| 1527 | }, |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 1528 | }; |
| 1529 | |
| 1530 | struct caam_crypto_alg { |
| 1531 | struct list_head entry; |
| 1532 | struct device *ctrldev; |
| 1533 | int class1_alg_type; |
| 1534 | int class2_alg_type; |
| 1535 | int alg_op; |
| 1536 | struct crypto_alg crypto_alg; |
| 1537 | }; |
| 1538 | |
| 1539 | static int caam_cra_init(struct crypto_tfm *tfm) |
| 1540 | { |
| 1541 | struct crypto_alg *alg = tfm->__crt_alg; |
| 1542 | struct caam_crypto_alg *caam_alg = |
| 1543 | container_of(alg, struct caam_crypto_alg, crypto_alg); |
| 1544 | struct caam_ctx *ctx = crypto_tfm_ctx(tfm); |
| 1545 | struct caam_drv_private *priv = dev_get_drvdata(caam_alg->ctrldev); |
| 1546 | int tgt_jr = atomic_inc_return(&priv->tfm_count); |
| 1547 | |
| 1548 | /* |
| 1549 | * distribute tfms across job rings to ensure in-order |
| 1550 | * crypto request processing per tfm |
| 1551 | */ |
| 1552 | ctx->jrdev = priv->algapi_jr[(tgt_jr / 2) % priv->num_jrs_for_algapi]; |
| 1553 | |
| 1554 | /* copy descriptor header template value */ |
| 1555 | ctx->class1_alg_type = OP_TYPE_CLASS1_ALG | caam_alg->class1_alg_type; |
| 1556 | ctx->class2_alg_type = OP_TYPE_CLASS2_ALG | caam_alg->class2_alg_type; |
| 1557 | ctx->alg_op = OP_TYPE_CLASS2_ALG | caam_alg->alg_op; |
| 1558 | |
| 1559 | return 0; |
| 1560 | } |
| 1561 | |
| 1562 | static void caam_cra_exit(struct crypto_tfm *tfm) |
| 1563 | { |
| 1564 | struct caam_ctx *ctx = crypto_tfm_ctx(tfm); |
| 1565 | |
Yuan Kang | 1acebad | 2011-07-15 11:21:42 +0800 | [diff] [blame^] | 1566 | if (ctx->sh_desc_enc_dma && |
| 1567 | !dma_mapping_error(ctx->jrdev, ctx->sh_desc_enc_dma)) |
| 1568 | dma_unmap_single(ctx->jrdev, ctx->sh_desc_enc_dma, |
| 1569 | desc_bytes(ctx->sh_desc_enc), DMA_TO_DEVICE); |
| 1570 | if (ctx->sh_desc_dec_dma && |
| 1571 | !dma_mapping_error(ctx->jrdev, ctx->sh_desc_dec_dma)) |
| 1572 | dma_unmap_single(ctx->jrdev, ctx->sh_desc_dec_dma, |
| 1573 | desc_bytes(ctx->sh_desc_dec), DMA_TO_DEVICE); |
| 1574 | if (ctx->sh_desc_givenc_dma && |
| 1575 | !dma_mapping_error(ctx->jrdev, ctx->sh_desc_givenc_dma)) |
| 1576 | dma_unmap_single(ctx->jrdev, ctx->sh_desc_givenc_dma, |
| 1577 | desc_bytes(ctx->sh_desc_givenc), |
Kim Phillips | 4427b1b | 2011-05-14 22:08:17 -0500 | [diff] [blame] | 1578 | DMA_TO_DEVICE); |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 1579 | } |
| 1580 | |
| 1581 | static void __exit caam_algapi_exit(void) |
| 1582 | { |
| 1583 | |
| 1584 | struct device_node *dev_node; |
| 1585 | struct platform_device *pdev; |
| 1586 | struct device *ctrldev; |
| 1587 | struct caam_drv_private *priv; |
| 1588 | struct caam_crypto_alg *t_alg, *n; |
| 1589 | int i, err; |
| 1590 | |
Kim Phillips | 54e198d | 2011-03-23 21:15:44 +0800 | [diff] [blame] | 1591 | dev_node = of_find_compatible_node(NULL, NULL, "fsl,sec-v4.0"); |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 1592 | if (!dev_node) |
| 1593 | return; |
| 1594 | |
| 1595 | pdev = of_find_device_by_node(dev_node); |
| 1596 | if (!pdev) |
| 1597 | return; |
| 1598 | |
| 1599 | ctrldev = &pdev->dev; |
| 1600 | of_node_put(dev_node); |
| 1601 | priv = dev_get_drvdata(ctrldev); |
| 1602 | |
| 1603 | if (!priv->alg_list.next) |
| 1604 | return; |
| 1605 | |
| 1606 | list_for_each_entry_safe(t_alg, n, &priv->alg_list, entry) { |
| 1607 | crypto_unregister_alg(&t_alg->crypto_alg); |
| 1608 | list_del(&t_alg->entry); |
| 1609 | kfree(t_alg); |
| 1610 | } |
| 1611 | |
| 1612 | for (i = 0; i < priv->total_jobrs; i++) { |
| 1613 | err = caam_jr_deregister(priv->algapi_jr[i]); |
| 1614 | if (err < 0) |
| 1615 | break; |
| 1616 | } |
| 1617 | kfree(priv->algapi_jr); |
| 1618 | } |
| 1619 | |
| 1620 | static struct caam_crypto_alg *caam_alg_alloc(struct device *ctrldev, |
| 1621 | struct caam_alg_template |
| 1622 | *template) |
| 1623 | { |
| 1624 | struct caam_crypto_alg *t_alg; |
| 1625 | struct crypto_alg *alg; |
| 1626 | |
| 1627 | t_alg = kzalloc(sizeof(struct caam_crypto_alg), GFP_KERNEL); |
| 1628 | if (!t_alg) { |
| 1629 | dev_err(ctrldev, "failed to allocate t_alg\n"); |
| 1630 | return ERR_PTR(-ENOMEM); |
| 1631 | } |
| 1632 | |
| 1633 | alg = &t_alg->crypto_alg; |
| 1634 | |
| 1635 | snprintf(alg->cra_name, CRYPTO_MAX_ALG_NAME, "%s", template->name); |
| 1636 | snprintf(alg->cra_driver_name, CRYPTO_MAX_ALG_NAME, "%s", |
| 1637 | template->driver_name); |
| 1638 | alg->cra_module = THIS_MODULE; |
| 1639 | alg->cra_init = caam_cra_init; |
| 1640 | alg->cra_exit = caam_cra_exit; |
| 1641 | alg->cra_priority = CAAM_CRA_PRIORITY; |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 1642 | alg->cra_blocksize = template->blocksize; |
| 1643 | alg->cra_alignmask = 0; |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 1644 | alg->cra_ctxsize = sizeof(struct caam_ctx); |
Yuan Kang | 885e9e2 | 2011-07-15 11:21:41 +0800 | [diff] [blame] | 1645 | alg->cra_flags = CRYPTO_ALG_ASYNC | template->type; |
| 1646 | switch (template->type) { |
| 1647 | case CRYPTO_ALG_TYPE_AEAD: |
| 1648 | alg->cra_type = &crypto_aead_type; |
| 1649 | alg->cra_aead = template->template_aead; |
| 1650 | break; |
| 1651 | } |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 1652 | |
| 1653 | t_alg->class1_alg_type = template->class1_alg_type; |
| 1654 | t_alg->class2_alg_type = template->class2_alg_type; |
| 1655 | t_alg->alg_op = template->alg_op; |
| 1656 | t_alg->ctrldev = ctrldev; |
| 1657 | |
| 1658 | return t_alg; |
| 1659 | } |
| 1660 | |
| 1661 | static int __init caam_algapi_init(void) |
| 1662 | { |
| 1663 | struct device_node *dev_node; |
| 1664 | struct platform_device *pdev; |
| 1665 | struct device *ctrldev, **jrdev; |
| 1666 | struct caam_drv_private *priv; |
| 1667 | int i = 0, err = 0; |
| 1668 | |
Kim Phillips | 54e198d | 2011-03-23 21:15:44 +0800 | [diff] [blame] | 1669 | dev_node = of_find_compatible_node(NULL, NULL, "fsl,sec-v4.0"); |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 1670 | if (!dev_node) |
| 1671 | return -ENODEV; |
| 1672 | |
| 1673 | pdev = of_find_device_by_node(dev_node); |
| 1674 | if (!pdev) |
| 1675 | return -ENODEV; |
| 1676 | |
| 1677 | ctrldev = &pdev->dev; |
| 1678 | priv = dev_get_drvdata(ctrldev); |
| 1679 | of_node_put(dev_node); |
| 1680 | |
| 1681 | INIT_LIST_HEAD(&priv->alg_list); |
| 1682 | |
| 1683 | jrdev = kmalloc(sizeof(*jrdev) * priv->total_jobrs, GFP_KERNEL); |
| 1684 | if (!jrdev) |
| 1685 | return -ENOMEM; |
| 1686 | |
| 1687 | for (i = 0; i < priv->total_jobrs; i++) { |
| 1688 | err = caam_jr_register(ctrldev, &jrdev[i]); |
| 1689 | if (err < 0) |
| 1690 | break; |
| 1691 | } |
| 1692 | if (err < 0 && i == 0) { |
| 1693 | dev_err(ctrldev, "algapi error in job ring registration: %d\n", |
| 1694 | err); |
Julia Lawall | b3b7f05 | 2011-04-08 20:39:23 +0800 | [diff] [blame] | 1695 | kfree(jrdev); |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 1696 | return err; |
| 1697 | } |
| 1698 | |
| 1699 | priv->num_jrs_for_algapi = i; |
| 1700 | priv->algapi_jr = jrdev; |
| 1701 | atomic_set(&priv->tfm_count, -1); |
| 1702 | |
| 1703 | /* register crypto algorithms the device supports */ |
| 1704 | for (i = 0; i < ARRAY_SIZE(driver_algs); i++) { |
| 1705 | /* TODO: check if h/w supports alg */ |
| 1706 | struct caam_crypto_alg *t_alg; |
| 1707 | |
| 1708 | t_alg = caam_alg_alloc(ctrldev, &driver_algs[i]); |
| 1709 | if (IS_ERR(t_alg)) { |
| 1710 | err = PTR_ERR(t_alg); |
| 1711 | dev_warn(ctrldev, "%s alg allocation failed\n", |
Dan Carpenter | cdc712d | 2011-03-23 21:20:27 +0800 | [diff] [blame] | 1712 | driver_algs[i].driver_name); |
Kim Phillips | 8e8ec59 | 2011-03-13 16:54:26 +0800 | [diff] [blame] | 1713 | continue; |
| 1714 | } |
| 1715 | |
| 1716 | err = crypto_register_alg(&t_alg->crypto_alg); |
| 1717 | if (err) { |
| 1718 | dev_warn(ctrldev, "%s alg registration failed\n", |
| 1719 | t_alg->crypto_alg.cra_driver_name); |
| 1720 | kfree(t_alg); |
| 1721 | } else { |
| 1722 | list_add_tail(&t_alg->entry, &priv->alg_list); |
| 1723 | dev_info(ctrldev, "%s\n", |
| 1724 | t_alg->crypto_alg.cra_driver_name); |
| 1725 | } |
| 1726 | } |
| 1727 | |
| 1728 | return err; |
| 1729 | } |
| 1730 | |
| 1731 | module_init(caam_algapi_init); |
| 1732 | module_exit(caam_algapi_exit); |
| 1733 | |
| 1734 | MODULE_LICENSE("GPL"); |
| 1735 | MODULE_DESCRIPTION("FSL CAAM support for crypto API"); |
| 1736 | MODULE_AUTHOR("Freescale Semiconductor - NMG/STC"); |