blob: b945e19ec77568a6de722e47aa0c719af0fcf178 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Tom Rini108ee582016-03-16 09:10:08 -04002/*
Andrew F. Davis857005b2019-07-16 09:49:38 -04003 * K2x: Secure commands file
Tom Rini108ee582016-03-16 09:10:08 -04004 *
Nishanth Menoneaa39c62023-11-01 15:56:03 -05005 * Copyright (C) 2012-2019 Texas Instruments Incorporated - https://www.ti.com/
Tom Rini108ee582016-03-16 09:10:08 -04006 */
7
Simon Glassf11478f2019-12-28 10:45:07 -07008#include <hang.h>
Simon Glass2dc9c342020-05-10 11:40:01 -06009#include <image.h>
Andrew F. Davis857005b2019-07-16 09:49:38 -040010#include <asm/unaligned.h>
Tom Rini108ee582016-03-16 09:10:08 -040011#include <command.h>
12#include <mach/mon.h>
Vitaly Andrianov1b3b2442017-04-07 10:00:03 -050013#include <spl.h>
Tom Rini108ee582016-03-16 09:10:08 -040014asm(".arch_extension sec\n\t");
15
Madan Srinivase8856102017-07-17 12:59:15 -050016int mon_install(u32 addr, u32 dpsc, u32 freq, u32 bm_addr)
Tom Rini108ee582016-03-16 09:10:08 -040017{
18 int result;
19
20 __asm__ __volatile__ (
21 "stmfd r13!, {lr}\n"
22 "mov r0, %1\n"
23 "mov r1, %2\n"
24 "mov r2, %3\n"
Madan Srinivase8856102017-07-17 12:59:15 -050025 "mov r3, %4\n"
Tom Rini108ee582016-03-16 09:10:08 -040026 "blx r0\n"
Srinivas, Madan39354af2017-07-17 13:02:02 -050027 "mov %0, r0\n"
Tom Rini108ee582016-03-16 09:10:08 -040028 "ldmfd r13!, {lr}\n"
29 : "=&r" (result)
Madan Srinivase8856102017-07-17 12:59:15 -050030 : "r" (addr), "r" (dpsc), "r" (freq), "r" (bm_addr)
31 : "cc", "r0", "r1", "r2", "r3", "memory");
Tom Rini108ee582016-03-16 09:10:08 -040032 return result;
33}
34
35int mon_power_on(int core_id, void *ep)
36{
37 int result;
38
39 asm volatile (
40 "stmfd r13!, {lr}\n"
41 "mov r1, %1\n"
42 "mov r2, %2\n"
43 "mov r0, #0\n"
44 "smc #0\n"
Srinivas, Madan39354af2017-07-17 13:02:02 -050045 "mov %0, r0\n"
Tom Rini108ee582016-03-16 09:10:08 -040046 "ldmfd r13!, {lr}\n"
47 : "=&r" (result)
48 : "r" (core_id), "r" (ep)
49 : "cc", "r0", "r1", "r2", "memory");
50 return result;
51}
52
53int mon_power_off(int core_id)
54{
55 int result;
56
57 asm volatile (
58 "stmfd r13!, {lr}\n"
59 "mov r1, %1\n"
60 "mov r0, #1\n"
61 "smc #1\n"
Srinivas, Madan39354af2017-07-17 13:02:02 -050062 "mov %0, r0\n"
Tom Rini108ee582016-03-16 09:10:08 -040063 "ldmfd r13!, {lr}\n"
64 : "=&r" (result)
65 : "r" (core_id)
66 : "cc", "r0", "r1", "memory");
67 return result;
68}
Vitaly Andrianov1b3b2442017-04-07 10:00:03 -050069
70#ifdef CONFIG_TI_SECURE_DEVICE
71#define KS2_HS_SEC_HEADER_LEN 0x60
72#define KS2_HS_SEC_TAG_OFFSET 0x34
73#define KS2_AUTH_CMD 130
74
75/**
76 * k2_hs_bm_auth() - Invokes security functions using a
77 * proprietary TI interface. This binary and source for
78 * this is available in the secure development package or
79 * SECDEV. For details on how to access this please refer
80 * doc/README.ti-secure
81 *
82 * @cmd: Secure monitor command
83 * @arg1: Argument for command
84 *
85 * returns non-zero value on success, zero on error
86 */
87static int k2_hs_bm_auth(int cmd, void *arg1)
88{
89 int result;
90
91 asm volatile (
92 "stmfd r13!, {r4-r12, lr}\n"
93 "mov r0, %1\n"
94 "mov r1, %2\n"
95 "smc #2\n"
Srinivas, Madan39354af2017-07-17 13:02:02 -050096 "mov %0, r0\n"
Vitaly Andrianov1b3b2442017-04-07 10:00:03 -050097 "ldmfd r13!, {r4-r12, lr}\n"
98 : "=&r" (result)
99 : "r" (cmd), "r" (arg1)
100 : "cc", "r0", "r1", "memory");
101
102 return result;
103}
104
Lokesh Vutlab36dd3e2021-06-11 11:45:05 +0300105void board_fit_image_post_process(const void *fit, int node, void **p_image,
106 size_t *p_size)
Vitaly Andrianov1b3b2442017-04-07 10:00:03 -0500107{
108 int result = 0;
109 void *image = *p_image;
110
111 if (strncmp(image + KS2_HS_SEC_TAG_OFFSET, "KEYS", 4)) {
112 printf("No signature found in image!\n");
113 hang();
114 }
115
116 result = k2_hs_bm_auth(KS2_AUTH_CMD, image);
117 if (result == 0) {
118 printf("Authentication failed!\n");
119 hang();
120 }
121
122 /*
Andrew F. Davis5564f232017-06-29 08:38:25 -0500123 * Overwrite the image headers after authentication
124 * and decryption. Update size to reflect removal
Andrew F. Davis857005b2019-07-16 09:49:38 -0400125 * of header and restore original file size.
Andrew F. Davis5564f232017-06-29 08:38:25 -0500126 */
Andrew F. Davis857005b2019-07-16 09:49:38 -0400127 *p_size = get_unaligned_le32(image + (*p_size - 4));
Andrew F. Davis5564f232017-06-29 08:38:25 -0500128 memcpy(image, image + KS2_HS_SEC_HEADER_LEN, *p_size);
Vitaly Andrianov1b3b2442017-04-07 10:00:03 -0500129
130 /*
131 * Output notification of successful authentication to re-assure the
132 * user that the secure code is being processed as expected. However
133 * suppress any such log output in case of building for SPL and booting
134 * via YMODEM. This is done to avoid disturbing the YMODEM serial
135 * protocol transactions.
136 */
137 if (!(IS_ENABLED(CONFIG_SPL_BUILD) &&
138 IS_ENABLED(CONFIG_SPL_YMODEM_SUPPORT) &&
139 spl_boot_device() == BOOT_DEVICE_UART))
140 printf("Authentication passed\n");
141}
142#endif