summaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-socfpga/vab.c
blob: 85b3f302111bdbad9d9cb3419b21a53f04f83612 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
// SPDX-License-Identifier: GPL-2.0
/*
 * Copyright (C) 2020 Intel Corporation <www.intel.com>
 *
 */

#include <asm/arch/secure_vab.h>
#include <command.h>
#include <common.h>
#include <linux/ctype.h>

static int do_vab(struct cmd_tbl *cmdtp, int flag, int argc,
		  char *const argv[])
{
	unsigned long addr, len;

	if (argc < 3)
		return CMD_RET_USAGE;

	addr = simple_strtoul(argv[1], NULL, 16);
	len = simple_strtoul(argv[2], NULL, 16);

	if (socfpga_vendor_authentication((void *)&addr, (size_t *)&len) != 0)
		return CMD_RET_FAILURE;

	return 0;
}

U_BOOT_CMD(
	vab,	3,	2,	do_vab,
	"perform vendor authorization",
	"addr len   - authorize 'len' bytes starting at\n"
	"                 'addr' via vendor public key"
);