blob: dfa3e2100edf06cb65cb1e3c4996ab207af4fcc5 [file] [log] [blame]
gaurav rana47151e42015-02-27 09:45:35 +05301/*
2 * Copyright 2015 Freescale Semiconductor, Inc.
3 *
4 * SPDX-License-Identifier: GPL-2.0+
5 */
6
7#include <common.h>
8#include <command.h>
9#include <fsl_validate.h>
10
gaurav rana98cb0ef2015-03-10 14:08:50 +053011static int do_esbc_halt(cmd_tbl_t *cmdtp, int flag, int argc,
12 char * const argv[])
13{
Aneesh Bansal856b2842016-01-22 16:37:28 +053014 if (fsl_check_boot_mode_secure() == 0) {
15 printf("Boot Mode is Non-Secure. Not entering spin loop.\n");
16 return 0;
17 }
18
gaurav rana98cb0ef2015-03-10 14:08:50 +053019 printf("Core is entering spin loop.\n");
20loop:
21 goto loop;
22
23 return 0;
24}
25
gaurav rana47151e42015-02-27 09:45:35 +053026static int do_esbc_validate(cmd_tbl_t *cmdtp, int flag, int argc,
27 char * const argv[])
28{
Aneesh Bansalbc71f922015-12-08 14:14:12 +053029 char *hash_str = NULL;
Aneesh Bansalb055a0f2015-12-08 14:14:15 +053030 uintptr_t haddr;
Aneesh Bansalbc71f922015-12-08 14:14:12 +053031 int ret;
32
gaurav rana47151e42015-02-27 09:45:35 +053033 if (argc < 2)
34 return cmd_usage(cmdtp);
Aneesh Bansalbc71f922015-12-08 14:14:12 +053035 else if (argc > 2)
36 /* Second arg - Optional - Hash Str*/
37 hash_str = argv[2];
gaurav rana47151e42015-02-27 09:45:35 +053038
Aneesh Bansalbc71f922015-12-08 14:14:12 +053039 /* First argument - header address -32/64bit */
Aneesh Bansalb055a0f2015-12-08 14:14:15 +053040 haddr = (uintptr_t)simple_strtoul(argv[1], NULL, 16);
Aneesh Bansalbc71f922015-12-08 14:14:12 +053041
Aneesh Bansalb055a0f2015-12-08 14:14:15 +053042 /* With esbc_validate command, Image address must be
43 * part of header. So, the function is called
44 * by passing this argument as 0.
45 */
46 ret = fsl_secboot_validate(haddr, hash_str, 0);
Aneesh Bansalbc71f922015-12-08 14:14:12 +053047 if (ret)
48 return 1;
49
50 printf("esbc_validate command successful\n");
51 return 0;
gaurav rana47151e42015-02-27 09:45:35 +053052}
53
54/***************************************************/
55static char esbc_validate_help_text[] =
56 "esbc_validate hdr_addr <hash_val> - Validates signature using\n"
57 " RSA verification\n"
58 " $hdr_addr Address of header of the image\n"
59 " to be validated.\n"
60 " $hash_val -Optional\n"
61 " It provides Hash of public/srk key to be\n"
62 " used to verify signature.\n";
63
64U_BOOT_CMD(
65 esbc_validate, 3, 0, do_esbc_validate,
66 "Validates signature on a given image using RSA verification",
67 esbc_validate_help_text
68);
gaurav rana98cb0ef2015-03-10 14:08:50 +053069
70U_BOOT_CMD(
71 esbc_halt, 1, 0, do_esbc_halt,
Aneesh Bansal856b2842016-01-22 16:37:28 +053072 "Put the core in spin loop (Secure Boot Only)",
gaurav rana98cb0ef2015-03-10 14:08:50 +053073 ""
74);