2018-05-06 21:58:06 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2014-10-07 10:16:20 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2014 Freescale Semiconductor, Inc.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
2019-11-14 19:57:39 +00:00
|
|
|
#include <cpu_func.h>
|
2020-05-10 17:40:05 +00:00
|
|
|
#include <log.h>
|
2014-10-07 10:16:20 +00:00
|
|
|
#include <malloc.h>
|
2018-01-07 19:26:29 +00:00
|
|
|
#include <memalign.h>
|
2015-02-27 17:22:06 +00:00
|
|
|
#include <fsl_sec.h>
|
2020-05-10 17:39:56 +00:00
|
|
|
#include <asm/cache.h>
|
2016-09-21 02:28:57 +00:00
|
|
|
#include <linux/errno.h>
|
2014-10-07 10:16:20 +00:00
|
|
|
#include "jobdesc.h"
|
|
|
|
#include "desc.h"
|
|
|
|
#include "jr.h"
|
|
|
|
|
2018-01-07 19:26:29 +00:00
|
|
|
/**
|
|
|
|
* blob_decap() - Decapsulate the data from a blob
|
|
|
|
* @key_mod: - Key modifier address
|
|
|
|
* @src: - Source address (blob)
|
|
|
|
* @dst: - Destination address (data)
|
|
|
|
* @len: - Size of decapsulated data
|
|
|
|
*
|
|
|
|
* Note: Start and end of the key_mod, src and dst buffers have to be aligned to
|
|
|
|
* the cache line size (ARCH_DMA_MINALIGN) for the CAAM operation to succeed.
|
|
|
|
*
|
|
|
|
* Returns zero on success, negative on error.
|
|
|
|
*/
|
2015-02-25 04:07:09 +00:00
|
|
|
int blob_decap(u8 *key_mod, u8 *src, u8 *dst, u32 len)
|
2014-10-07 10:16:20 +00:00
|
|
|
{
|
2018-01-07 19:26:29 +00:00
|
|
|
int ret, size, i = 0;
|
2014-10-07 10:16:20 +00:00
|
|
|
u32 *desc;
|
|
|
|
|
2018-01-07 19:26:29 +00:00
|
|
|
if (!IS_ALIGNED((uintptr_t)key_mod, ARCH_DMA_MINALIGN) ||
|
|
|
|
!IS_ALIGNED((uintptr_t)src, ARCH_DMA_MINALIGN) ||
|
|
|
|
!IS_ALIGNED((uintptr_t)dst, ARCH_DMA_MINALIGN)) {
|
|
|
|
puts("Error: blob_decap: Address arguments are not aligned!\n");
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
2016-07-14 17:27:50 +00:00
|
|
|
printf("\nDecapsulating blob to get data\n");
|
2018-01-07 19:26:29 +00:00
|
|
|
desc = malloc_cache_aligned(sizeof(int) * MAX_CAAM_DESCSIZE);
|
2014-10-07 10:16:20 +00:00
|
|
|
if (!desc) {
|
|
|
|
debug("Not enough memory for descriptor allocation\n");
|
2018-01-07 19:26:29 +00:00
|
|
|
return -ENOMEM;
|
2014-10-07 10:16:20 +00:00
|
|
|
}
|
|
|
|
|
2018-01-07 19:26:29 +00:00
|
|
|
size = ALIGN(16, ARCH_DMA_MINALIGN);
|
|
|
|
flush_dcache_range((unsigned long)key_mod,
|
|
|
|
(unsigned long)key_mod + size);
|
|
|
|
|
|
|
|
size = ALIGN(BLOB_SIZE(len), ARCH_DMA_MINALIGN);
|
|
|
|
flush_dcache_range((unsigned long)src,
|
|
|
|
(unsigned long)src + size);
|
|
|
|
|
2014-10-07 10:16:20 +00:00
|
|
|
inline_cnstr_jobdesc_blob_decap(desc, key_mod, src, dst, len);
|
|
|
|
|
2016-07-14 17:27:50 +00:00
|
|
|
debug("Descriptor dump:\n");
|
2014-10-07 10:16:20 +00:00
|
|
|
for (i = 0; i < 14; i++)
|
2016-07-14 17:27:50 +00:00
|
|
|
debug("Word[%d]: %08x\n", i, *(desc + i));
|
2018-01-07 19:26:29 +00:00
|
|
|
|
|
|
|
size = ALIGN(sizeof(int) * MAX_CAAM_DESCSIZE, ARCH_DMA_MINALIGN);
|
|
|
|
flush_dcache_range((unsigned long)desc,
|
|
|
|
(unsigned long)desc + size);
|
|
|
|
|
2021-03-25 09:30:16 +00:00
|
|
|
flush_dcache_range((unsigned long)dst,
|
|
|
|
(unsigned long)dst + size);
|
|
|
|
|
2014-10-07 10:16:20 +00:00
|
|
|
ret = run_descriptor_jr(desc);
|
|
|
|
|
2018-01-07 19:26:29 +00:00
|
|
|
if (ret) {
|
|
|
|
printf("Error in blob decapsulation: %d\n", ret);
|
|
|
|
} else {
|
|
|
|
size = ALIGN(len, ARCH_DMA_MINALIGN);
|
|
|
|
invalidate_dcache_range((unsigned long)dst,
|
|
|
|
(unsigned long)dst + size);
|
|
|
|
|
|
|
|
puts("Blob decapsulation successful.\n");
|
|
|
|
}
|
2014-10-07 10:16:20 +00:00
|
|
|
|
|
|
|
free(desc);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2018-01-07 19:26:29 +00:00
|
|
|
/**
|
|
|
|
* blob_encap() - Encapsulate the data as a blob
|
|
|
|
* @key_mod: - Key modifier address
|
|
|
|
* @src: - Source address (data)
|
|
|
|
* @dst: - Destination address (blob)
|
|
|
|
* @len: - Size of data to be encapsulated
|
|
|
|
*
|
|
|
|
* Note: Start and end of the key_mod, src and dst buffers have to be aligned to
|
|
|
|
* the cache line size (ARCH_DMA_MINALIGN) for the CAAM operation to succeed.
|
|
|
|
*
|
|
|
|
* Returns zero on success, negative on error.
|
|
|
|
*/
|
2015-02-25 04:07:09 +00:00
|
|
|
int blob_encap(u8 *key_mod, u8 *src, u8 *dst, u32 len)
|
2014-10-07 10:16:20 +00:00
|
|
|
{
|
2018-01-07 19:26:29 +00:00
|
|
|
int ret, size, i = 0;
|
2014-10-07 10:16:20 +00:00
|
|
|
u32 *desc;
|
|
|
|
|
2018-01-07 19:26:29 +00:00
|
|
|
if (!IS_ALIGNED((uintptr_t)key_mod, ARCH_DMA_MINALIGN) ||
|
|
|
|
!IS_ALIGNED((uintptr_t)src, ARCH_DMA_MINALIGN) ||
|
|
|
|
!IS_ALIGNED((uintptr_t)dst, ARCH_DMA_MINALIGN)) {
|
|
|
|
puts("Error: blob_encap: Address arguments are not aligned!\n");
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
2014-10-07 10:16:20 +00:00
|
|
|
printf("\nEncapsulating data to form blob\n");
|
2018-01-07 19:26:29 +00:00
|
|
|
desc = malloc_cache_aligned(sizeof(int) * MAX_CAAM_DESCSIZE);
|
2014-10-07 10:16:20 +00:00
|
|
|
if (!desc) {
|
|
|
|
debug("Not enough memory for descriptor allocation\n");
|
2018-01-07 19:26:29 +00:00
|
|
|
return -ENOMEM;
|
2014-10-07 10:16:20 +00:00
|
|
|
}
|
|
|
|
|
2018-01-07 19:26:29 +00:00
|
|
|
size = ALIGN(16, ARCH_DMA_MINALIGN);
|
|
|
|
flush_dcache_range((unsigned long)key_mod,
|
|
|
|
(unsigned long)key_mod + size);
|
|
|
|
|
|
|
|
size = ALIGN(len, ARCH_DMA_MINALIGN);
|
|
|
|
flush_dcache_range((unsigned long)src,
|
|
|
|
(unsigned long)src + size);
|
|
|
|
|
2014-10-07 10:16:20 +00:00
|
|
|
inline_cnstr_jobdesc_blob_encap(desc, key_mod, src, dst, len);
|
2016-07-14 17:27:50 +00:00
|
|
|
|
|
|
|
debug("Descriptor dump:\n");
|
2014-10-07 10:16:20 +00:00
|
|
|
for (i = 0; i < 14; i++)
|
2016-07-14 17:27:50 +00:00
|
|
|
debug("Word[%d]: %08x\n", i, *(desc + i));
|
2018-01-07 19:26:29 +00:00
|
|
|
|
|
|
|
size = ALIGN(sizeof(int) * MAX_CAAM_DESCSIZE, ARCH_DMA_MINALIGN);
|
|
|
|
flush_dcache_range((unsigned long)desc,
|
|
|
|
(unsigned long)desc + size);
|
|
|
|
|
2021-03-25 09:30:16 +00:00
|
|
|
flush_dcache_range((unsigned long)dst,
|
|
|
|
(unsigned long)dst + size);
|
|
|
|
|
2014-10-07 10:16:20 +00:00
|
|
|
ret = run_descriptor_jr(desc);
|
|
|
|
|
2018-01-07 19:26:29 +00:00
|
|
|
if (ret) {
|
|
|
|
printf("Error in blob encapsulation: %d\n", ret);
|
|
|
|
} else {
|
|
|
|
size = ALIGN(BLOB_SIZE(len), ARCH_DMA_MINALIGN);
|
|
|
|
invalidate_dcache_range((unsigned long)dst,
|
|
|
|
(unsigned long)dst + size);
|
|
|
|
|
|
|
|
puts("Blob encapsulation successful.\n");
|
|
|
|
}
|
2014-10-07 10:16:20 +00:00
|
|
|
|
|
|
|
free(desc);
|
|
|
|
return ret;
|
|
|
|
}
|
2015-02-27 17:22:06 +00:00
|
|
|
|
|
|
|
#ifdef CONFIG_CMD_DEKBLOB
|
|
|
|
int blob_dek(const u8 *src, u8 *dst, u8 len)
|
|
|
|
{
|
|
|
|
int ret, size, i = 0;
|
|
|
|
u32 *desc;
|
|
|
|
|
|
|
|
int out_sz = WRP_HDR_SIZE + len + KEY_BLOB_SIZE + MAC_SIZE;
|
|
|
|
|
|
|
|
puts("\nEncapsulating provided DEK to form blob\n");
|
|
|
|
desc = memalign(ARCH_DMA_MINALIGN,
|
|
|
|
sizeof(uint32_t) * DEK_BLOB_DESCSIZE);
|
|
|
|
if (!desc) {
|
|
|
|
debug("Not enough memory for descriptor allocation\n");
|
|
|
|
return -ENOMEM;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = inline_cnstr_jobdesc_blob_dek(desc, src, dst, len);
|
|
|
|
if (ret) {
|
|
|
|
debug("Error in Job Descriptor Construction: %d\n", ret);
|
|
|
|
} else {
|
|
|
|
size = roundup(sizeof(uint32_t) * DEK_BLOB_DESCSIZE,
|
|
|
|
ARCH_DMA_MINALIGN);
|
|
|
|
flush_dcache_range((unsigned long)desc,
|
|
|
|
(unsigned long)desc + size);
|
|
|
|
size = roundup(sizeof(uint8_t) * out_sz, ARCH_DMA_MINALIGN);
|
|
|
|
flush_dcache_range((unsigned long)dst,
|
|
|
|
(unsigned long)dst + size);
|
|
|
|
|
|
|
|
ret = run_descriptor_jr(desc);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ret) {
|
|
|
|
debug("Error in Encapsulation %d\n", ret);
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
|
|
|
|
size = roundup(out_sz, ARCH_DMA_MINALIGN);
|
|
|
|
invalidate_dcache_range((unsigned long)dst, (unsigned long)dst+size);
|
|
|
|
|
|
|
|
puts("DEK Blob\n");
|
|
|
|
for (i = 0; i < out_sz; i++)
|
|
|
|
printf("%02X", ((uint8_t *)dst)[i]);
|
|
|
|
printf("\n");
|
|
|
|
|
|
|
|
err:
|
|
|
|
free(desc);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
#endif
|