blob: 8142039040a78b72b570fb40bbe15553c9ea63a1 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Vitaly Andrianovef509b92014-04-04 13:16:53 -04002/*
3 * K2HK: secure kernel command file
4 *
5 * (C) Copyright 2012-2014
6 * Texas Instruments Incorporated, <www.ti.com>
Vitaly Andrianovef509b92014-04-04 13:16:53 -04007 */
8
9#include <common.h>
10#include <command.h>
Lokesh Vutla5d214062016-09-16 10:17:12 +053011#include <image.h>
Tom Riniaadd3362016-03-16 09:10:08 -040012#include <mach/mon.h>
Vitaly Andrianovef509b92014-04-04 13:16:53 -040013asm(".arch_extension sec\n\t");
14
Vitaly Andrianovef509b92014-04-04 13:16:53 -040015static int do_mon_install(cmd_tbl_t *cmdtp, int flag, int argc,
16 char * const argv[])
17{
Lokesh Vutla5d214062016-09-16 10:17:12 +053018 u32 addr, dpsc_base = 0x1E80000, freq, load_addr, size;
Vitaly Andrianovef509b92014-04-04 13:16:53 -040019 int rcode = 0;
Lokesh Vutla5d214062016-09-16 10:17:12 +053020 struct image_header *header;
Madan Srinivas1d73ce62017-07-17 12:59:15 -050021 u32 ecrypt_bm_addr = 0;
Vitaly Andrianovef509b92014-04-04 13:16:53 -040022
23 if (argc < 2)
24 return CMD_RET_USAGE;
25
Vitaly Andrianove6d71e12015-09-19 16:26:41 +053026 freq = CONFIG_SYS_HZ_CLOCK;
Vitaly Andrianovef509b92014-04-04 13:16:53 -040027
28 addr = simple_strtoul(argv[1], NULL, 16);
29
Lokesh Vutla5d214062016-09-16 10:17:12 +053030 header = (struct image_header *)addr;
31
32 if (image_get_magic(header) != IH_MAGIC) {
33 printf("## Please update monitor image\n");
34 return -EFAULT;
35 }
36
37 load_addr = image_get_load(header);
38 size = image_get_data_size(header);
39 memcpy((void *)load_addr, (void *)(addr + sizeof(struct image_header)),
40 size);
41
Madan Srinivas1d73ce62017-07-17 12:59:15 -050042 if (argc >= 3)
43 ecrypt_bm_addr = simple_strtoul(argv[2], NULL, 16);
44
45 rcode = mon_install(load_addr, dpsc_base, freq, ecrypt_bm_addr);
Lokesh Vutla5d214062016-09-16 10:17:12 +053046 printf("## installed monitor @ 0x%x, freq [%d], status %d\n",
47 load_addr, freq, rcode);
Vitaly Andrianovef509b92014-04-04 13:16:53 -040048
49 return 0;
50}
51
Madan Srinivas1d73ce62017-07-17 12:59:15 -050052U_BOOT_CMD(mon_install, 3, 0, do_mon_install,
Vitaly Andrianovef509b92014-04-04 13:16:53 -040053 "Install boot kernel at 'addr'",
54 ""
55);
56
57static void core_spin(void)
58{
Vitaly Andrianov17c5bda2015-07-08 11:40:14 -040059 while (1) {
60 asm volatile (
61 "dsb\n"
62 "isb\n"
63 "wfi\n"
64 );
65 }
Vitaly Andrianovef509b92014-04-04 13:16:53 -040066}
67
Vitaly Andrianovef509b92014-04-04 13:16:53 -040068int do_mon_power(cmd_tbl_t *cmdtp, int flag, int argc,
69 char * const argv[])
70{
71 int rcode = 0, core_id, on;
72 void (*fn)(void);
73
74 fn = core_spin;
75
76 if (argc < 3)
77 return CMD_RET_USAGE;
78
79 core_id = simple_strtoul(argv[1], NULL, 16);
80 on = simple_strtoul(argv[2], NULL, 16);
81
82 if (on)
83 rcode = mon_power_on(core_id, fn);
84 else
85 rcode = mon_power_off(core_id);
86
87 if (on) {
88 if (!rcode)
89 printf("core %d powered on successfully\n", core_id);
90 else
91 printf("core %d power on failure\n", core_id);
92 } else {
93 printf("core %d powered off successfully\n", core_id);
94 }
95
96 return 0;
97}
98
99U_BOOT_CMD(mon_power, 3, 0, do_mon_power,
100 "Power On/Off secondary core",
101 "mon_power <coreid> <oper>\n"
102 "- coreid (1-3) and oper (1 - ON, 0 - OFF)\n"
103 ""
104);