mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-06 05:04:26 +00:00
5d97dff042
Now, include/linux/errno.h is a wrapper of <asm-generic/errno.h>. Replace all include directives for <asm-generic/errno.h> with <linux/errno.h>. <asm-generic/...> is supposed to be included from <asm/...> when arch-headers fall back into generic implementation. Generally, they should not be directly included from .c files. Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com> [trini: Add drivers/usb/host/xhci-rockchip.c] Signed-off-by: Tom Rini <trini@konsulko.com>
120 lines
2.6 KiB
C
120 lines
2.6 KiB
C
/*
|
|
* Copyright 2014 Freescale Semiconductor, Inc.
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*
|
|
*/
|
|
|
|
#include <common.h>
|
|
#include <malloc.h>
|
|
#include <fsl_sec.h>
|
|
#include <linux/errno.h>
|
|
#include "jobdesc.h"
|
|
#include "desc.h"
|
|
#include "jr.h"
|
|
|
|
int blob_decap(u8 *key_mod, u8 *src, u8 *dst, u32 len)
|
|
{
|
|
int ret, i = 0;
|
|
u32 *desc;
|
|
|
|
printf("\nDecapsulating blob to get data\n");
|
|
desc = malloc(sizeof(int) * MAX_CAAM_DESCSIZE);
|
|
if (!desc) {
|
|
debug("Not enough memory for descriptor allocation\n");
|
|
return -1;
|
|
}
|
|
|
|
inline_cnstr_jobdesc_blob_decap(desc, key_mod, src, dst, len);
|
|
|
|
debug("Descriptor dump:\n");
|
|
for (i = 0; i < 14; 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;
|
|
}
|
|
|
|
int blob_encap(u8 *key_mod, u8 *src, u8 *dst, u32 len)
|
|
{
|
|
int ret, i = 0;
|
|
u32 *desc;
|
|
|
|
printf("\nEncapsulating data to form blob\n");
|
|
desc = malloc(sizeof(int) * MAX_CAAM_DESCSIZE);
|
|
if (!desc) {
|
|
debug("Not enough memory for descriptor allocation\n");
|
|
return -1;
|
|
}
|
|
|
|
inline_cnstr_jobdesc_blob_encap(desc, key_mod, src, dst, len);
|
|
|
|
debug("Descriptor dump:\n");
|
|
for (i = 0; i < 14; 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;
|
|
}
|
|
|
|
#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
|