blob: 58995d73ac86d06801728fc4ee7ca9141955d82d [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Tom Riniaadd3362016-03-16 09:10:08 -04002/*
Andrew F. Davisc1c564a2019-07-16 09:49:38 -04003 * K2x: Secure commands file
Tom Riniaadd3362016-03-16 09:10:08 -04004 *
Andrew F. Davisc1c564a2019-07-16 09:49:38 -04005 * Copyright (C) 2012-2019 Texas Instruments Incorporated - http://www.ti.com/
Tom Riniaadd3362016-03-16 09:10:08 -04006 */
7
Simon Glassdb41d652019-12-28 10:45:07 -07008#include <hang.h>
Simon Glass4d72caa2020-05-10 11:40:01 -06009#include <image.h>
Andrew F. Davisc1c564a2019-07-16 09:49:38 -040010#include <asm/unaligned.h>
Tom Riniaadd3362016-03-16 09:10:08 -040011#include <common.h>
12#include <command.h>
13#include <mach/mon.h>
Vitaly Andrianove8d740f2017-04-07 10:00:03 -050014#include <spl.h>
Tom Riniaadd3362016-03-16 09:10:08 -040015asm(".arch_extension sec\n\t");
16
Madan Srinivas1d73ce62017-07-17 12:59:15 -050017int mon_install(u32 addr, u32 dpsc, u32 freq, u32 bm_addr)
Tom Riniaadd3362016-03-16 09:10:08 -040018{
19 int result;
20
21 __asm__ __volatile__ (
22 "stmfd r13!, {lr}\n"
23 "mov r0, %1\n"
24 "mov r1, %2\n"
25 "mov r2, %3\n"
Madan Srinivas1d73ce62017-07-17 12:59:15 -050026 "mov r3, %4\n"
Tom Riniaadd3362016-03-16 09:10:08 -040027 "blx r0\n"
Srinivas, Madan94f536f2017-07-17 13:02:02 -050028 "mov %0, r0\n"
Tom Riniaadd3362016-03-16 09:10:08 -040029 "ldmfd r13!, {lr}\n"
30 : "=&r" (result)
Madan Srinivas1d73ce62017-07-17 12:59:15 -050031 : "r" (addr), "r" (dpsc), "r" (freq), "r" (bm_addr)
32 : "cc", "r0", "r1", "r2", "r3", "memory");
Tom Riniaadd3362016-03-16 09:10:08 -040033 return result;
34}
35
36int mon_power_on(int core_id, void *ep)
37{
38 int result;
39
40 asm volatile (
41 "stmfd r13!, {lr}\n"
42 "mov r1, %1\n"
43 "mov r2, %2\n"
44 "mov r0, #0\n"
45 "smc #0\n"
Srinivas, Madan94f536f2017-07-17 13:02:02 -050046 "mov %0, r0\n"
Tom Riniaadd3362016-03-16 09:10:08 -040047 "ldmfd r13!, {lr}\n"
48 : "=&r" (result)
49 : "r" (core_id), "r" (ep)
50 : "cc", "r0", "r1", "r2", "memory");
51 return result;
52}
53
54int mon_power_off(int core_id)
55{
56 int result;
57
58 asm volatile (
59 "stmfd r13!, {lr}\n"
60 "mov r1, %1\n"
61 "mov r0, #1\n"
62 "smc #1\n"
Srinivas, Madan94f536f2017-07-17 13:02:02 -050063 "mov %0, r0\n"
Tom Riniaadd3362016-03-16 09:10:08 -040064 "ldmfd r13!, {lr}\n"
65 : "=&r" (result)
66 : "r" (core_id)
67 : "cc", "r0", "r1", "memory");
68 return result;
69}
Vitaly Andrianove8d740f2017-04-07 10:00:03 -050070
71#ifdef CONFIG_TI_SECURE_DEVICE
72#define KS2_HS_SEC_HEADER_LEN 0x60
73#define KS2_HS_SEC_TAG_OFFSET 0x34
74#define KS2_AUTH_CMD 130
75
76/**
77 * k2_hs_bm_auth() - Invokes security functions using a
78 * proprietary TI interface. This binary and source for
79 * this is available in the secure development package or
80 * SECDEV. For details on how to access this please refer
81 * doc/README.ti-secure
82 *
83 * @cmd: Secure monitor command
84 * @arg1: Argument for command
85 *
86 * returns non-zero value on success, zero on error
87 */
88static int k2_hs_bm_auth(int cmd, void *arg1)
89{
90 int result;
91
92 asm volatile (
93 "stmfd r13!, {r4-r12, lr}\n"
94 "mov r0, %1\n"
95 "mov r1, %2\n"
96 "smc #2\n"
Srinivas, Madan94f536f2017-07-17 13:02:02 -050097 "mov %0, r0\n"
Vitaly Andrianove8d740f2017-04-07 10:00:03 -050098 "ldmfd r13!, {r4-r12, lr}\n"
99 : "=&r" (result)
100 : "r" (cmd), "r" (arg1)
101 : "cc", "r0", "r1", "memory");
102
103 return result;
104}
105
106void board_fit_image_post_process(void **p_image, size_t *p_size)
107{
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. Davis9e58d4d2017-06-29 08:38:25 -0500123 * Overwrite the image headers after authentication
124 * and decryption. Update size to reflect removal
Andrew F. Davisc1c564a2019-07-16 09:49:38 -0400125 * of header and restore original file size.
Andrew F. Davis9e58d4d2017-06-29 08:38:25 -0500126 */
Andrew F. Davisc1c564a2019-07-16 09:49:38 -0400127 *p_size = get_unaligned_le32(image + (*p_size - 4));
Andrew F. Davis9e58d4d2017-06-29 08:38:25 -0500128 memcpy(image, image + KS2_HS_SEC_HEADER_LEN, *p_size);
Vitaly Andrianove8d740f2017-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