Skip to content

Commit

Permalink
crypto/fsl: Update blob cmd to accept 64bit addresses
Browse files Browse the repository at this point in the history
Update blob cmd to accept 64bit source, key modifier and destination
addresses. Also correct output result print format for fsl specific
implementation of blob cmd.

Signed-off-by: Sumit Garg <[email protected]>
Reviewed-by: York Sun <[email protected]>
  • Loading branch information
Sumit Garg authored and York Sun committed Aug 2, 2016
1 parent 04e5c6d commit 7fe1d6a
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
2 changes: 1 addition & 1 deletion cmd/blob.c
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ __weak int blob_encap(u8 *key_mod, u8 *src, u8 *dst, u32 len)
*/
static int do_blob(cmd_tbl_t *cmdtp, int flag, int argc, char *const argv[])
{
uint32_t key_addr, src_addr, dst_addr, len;
ulong key_addr, src_addr, dst_addr, len;
uint8_t *km_ptr, *src_ptr, *dst_ptr;
int enc, ret = 0;

Expand Down
13 changes: 10 additions & 3 deletions drivers/crypto/fsl/fsl_blob.c
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ int blob_decap(u8 *key_mod, u8 *src, u8 *dst, u32 len)
int ret, i = 0;
u32 *desc;

printf("\nDecapsulating data to form blob\n");
printf("\nDecapsulating blob to get data\n");
desc = malloc(sizeof(int) * MAX_CAAM_DESCSIZE);
if (!desc) {
debug("Not enough memory for descriptor allocation\n");
Expand All @@ -27,12 +27,15 @@ int blob_decap(u8 *key_mod, u8 *src, u8 *dst, u32 len)

inline_cnstr_jobdesc_blob_decap(desc, key_mod, src, dst, len);

debug("Descriptor dump:\n");
for (i = 0; i < 14; i++)
printf("%x\n", *(desc + i));
debug("Word[%d]: %08x\n", i, *(desc + i));
ret = run_descriptor_jr(desc);

if (ret)
printf("Error in Decapsulation %d\n", ret);
else
printf("Decapsulation Success\n");

free(desc);
return ret;
Expand All @@ -51,12 +54,16 @@ int blob_encap(u8 *key_mod, u8 *src, u8 *dst, u32 len)
}

inline_cnstr_jobdesc_blob_encap(desc, key_mod, src, dst, len);

debug("Descriptor dump:\n");
for (i = 0; i < 14; i++)
printf("%x\n", *(desc + i));
debug("Word[%d]: %08x\n", i, *(desc + i));
ret = run_descriptor_jr(desc);

if (ret)
printf("Error in Encapsulation %d\n", ret);
else
printf("Encapsulation Success\n");

free(desc);
return ret;
Expand Down

0 comments on commit 7fe1d6a

Please sign in to comment.