command: Remove the cmd_tbl_t typedef
[oweals/u-boot.git] / arch / arm / mach-imx / cmd_dek.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * Copyright 2008-2015 Freescale Semiconductor, Inc.
4  *
5  * Command for encapsulating DEK blob
6  */
7
8 #include <common.h>
9 #include <command.h>
10 #include <malloc.h>
11 #include <asm/byteorder.h>
12 #include <linux/compiler.h>
13 #include <fsl_sec.h>
14 #include <asm/arch/clock.h>
15 #include <mapmem.h>
16
17 /**
18 * blob_dek() - Encapsulate the DEK as a blob using CAM's Key
19 * @src: - Address of data to be encapsulated
20 * @dst: - Desination address of encapsulated data
21 * @len: - Size of data to be encapsulated
22 *
23 * Returns zero on success,and negative on error.
24 */
25 static int blob_encap_dek(const u8 *src, u8 *dst, u32 len)
26 {
27         int ret = 0;
28         u32 jr_size = 4;
29
30         u32 out_jr_size = sec_in32(CONFIG_SYS_FSL_JR0_ADDR + 0x102c);
31         if (out_jr_size != jr_size) {
32                 hab_caam_clock_enable(1);
33                 sec_init();
34         }
35
36         if (!((len == 128) | (len == 192) | (len == 256))) {
37                 debug("Invalid DEK size. Valid sizes are 128, 192 and 256b\n");
38                 return -1;
39         }
40
41         len /= 8;
42         ret = blob_dek(src, dst, len);
43
44         return ret;
45 }
46
47 /**
48  * do_dek_blob() - Handle the "dek_blob" command-line command
49  * @cmdtp:  Command data struct pointer
50  * @flag:   Command flag
51  * @argc:   Command-line argument count
52  * @argv:   Array of command-line arguments
53  *
54  * Returns zero on success, CMD_RET_USAGE in case of misuse and negative
55  * on error.
56  */
57 static int do_dek_blob(struct cmd_tbl *cmdtp, int flag, int argc,
58                        char *const argv[])
59 {
60         uint32_t src_addr, dst_addr, len;
61         uint8_t *src_ptr, *dst_ptr;
62         int ret = 0;
63
64         if (argc != 4)
65                 return CMD_RET_USAGE;
66
67         src_addr = simple_strtoul(argv[1], NULL, 16);
68         dst_addr = simple_strtoul(argv[2], NULL, 16);
69         len = simple_strtoul(argv[3], NULL, 10);
70
71         src_ptr = map_sysmem(src_addr, len/8);
72         dst_ptr = map_sysmem(dst_addr, BLOB_SIZE(len/8));
73
74         ret = blob_encap_dek(src_ptr, dst_ptr, len);
75
76         return ret;
77 }
78
79 /***************************************************/
80 static char dek_blob_help_text[] =
81         "src dst len            - Encapsulate and create blob of data\n"
82         "                         $len bits long at address $src and\n"
83         "                         store the result at address $dst.\n";
84
85 U_BOOT_CMD(
86         dek_blob, 4, 1, do_dek_blob,
87         "Data Encryption Key blob encapsulation",
88         dek_blob_help_text
89 );