blob: 89659f479eed4ccbc839529e644e93ad4ab8a18b [file] [log] [blame]
Andrew F. Davis2ed41072019-04-12 12:54:45 -04001// SPDX-License-Identifier: GPL-2.0
2/*
3 * K3: Security functions
4 *
Andrew Davise74e3bb2022-07-15 11:34:33 -05005 * Copyright (C) 2018-2022 Texas Instruments Incorporated - http://www.ti.com/
Andrew F. Davis2ed41072019-04-12 12:54:45 -04006 * Andrew F. Davis <afd@ti.com>
7 */
8
Andrew Davise74e3bb2022-07-15 11:34:33 -05009#include <asm/io.h>
Andrew F. Davis2ed41072019-04-12 12:54:45 -040010#include <common.h>
Andrew F. Davis2dc1e6e2020-01-07 18:22:29 -050011#include <cpu_func.h>
Andrew F. Davis2ed41072019-04-12 12:54:45 -040012#include <dm.h>
Simon Glassf11478f2019-12-28 10:45:07 -070013#include <hang.h>
Simon Glass2dc9c342020-05-10 11:40:01 -060014#include <image.h>
Simon Glass0f2af882020-05-10 11:40:05 -060015#include <log.h>
Simon Glass274e0b02020-05-10 11:39:56 -060016#include <asm/cache.h>
Andrew F. Davis2ed41072019-04-12 12:54:45 -040017#include <linux/soc/ti/ti_sci_protocol.h>
18#include <mach/spl.h>
19#include <spl.h>
Andrew Davisd95fcd82022-10-07 12:12:29 -050020#include <linux/dma-mapping.h>
Andrew F. Davis2ed41072019-04-12 12:54:45 -040021
Andrew Davise74e3bb2022-07-15 11:34:33 -050022#include "common.h"
23
24static bool ti_secure_cert_detected(void *p_image)
25{
26 /* Primitive certificate detection, check for DER starting with
27 * two 4-Octet SEQUENCE tags
28 */
29 return (((u8 *)p_image)[0] == 0x30 && ((u8 *)p_image)[1] == 0x82 &&
30 ((u8 *)p_image)[4] == 0x30 && ((u8 *)p_image)[5] == 0x82);
31}
32
Andrew Davis0ce85432022-07-15 11:34:35 -050033/* Primitive certificate length, assumes one 2-Octet sized SEQUENCE */
34static size_t ti_secure_cert_length(void *p_image)
35{
36 size_t seq_length = be16_to_cpu(readw_relaxed(p_image + 2));
37 /* Add 4 for the SEQUENCE tag length */
38 return seq_length + 4;
39}
40
Manorit Chawdhrydb01bcc2023-05-18 12:44:17 +053041void ti_secure_image_check_binary(void **p_image, size_t *p_size)
Andrew F. Davis2ed41072019-04-12 12:54:45 -040042{
Andrew F. Davis2ed41072019-04-12 12:54:45 -040043 u32 image_size;
Manorit Chawdhrydb01bcc2023-05-18 12:44:17 +053044 size_t cert_length;
Andrew F. Davis2dc1e6e2020-01-07 18:22:29 -050045 image_size = *p_size;
Andrew F. Davis2ed41072019-04-12 12:54:45 -040046
Manorit Chawdhrydb01bcc2023-05-18 12:44:17 +053047 if (!image_size) {
48 debug("%s: Image size is %d\n", __func__, image_size);
Andrew Davis0ce85432022-07-15 11:34:35 -050049 return;
Manorit Chawdhrydb01bcc2023-05-18 12:44:17 +053050 }
Andrew Davis0ce85432022-07-15 11:34:35 -050051
52 if (get_device_type() == K3_DEVICE_TYPE_GP) {
53 if (ti_secure_cert_detected(*p_image)) {
54 printf("Warning: Detected image signing certificate on GP device. "
55 "Skipping certificate to prevent boot failure. "
56 "This will fail if the image was also encrypted\n");
57
58 cert_length = ti_secure_cert_length(*p_image);
59 if (cert_length > *p_size) {
60 printf("Invalid signing certificate size\n");
61 return;
62 }
63
64 *p_image += cert_length;
65 *p_size -= cert_length;
66 }
67
Andrew Davis2045cf12022-07-15 11:34:34 -050068 return;
Andrew Davis0ce85432022-07-15 11:34:35 -050069 }
Manorit Chawdhrydb01bcc2023-05-18 12:44:17 +053070}
71
72void ti_secure_image_post_process(void **p_image, size_t *p_size)
73{
74 struct ti_sci_handle *ti_sci = get_ti_sci_handle();
75 struct ti_sci_proc_ops *proc_ops = &ti_sci->ops.proc_ops;
76 u64 image_addr;
77 u32 image_size;
78 int ret;
79
80 image_size = *p_size;
81 if (!image_size) {
82 debug("%s: Image size is %d\n", __func__, image_size);
83 return;
84 }
Andrew Davise74e3bb2022-07-15 11:34:33 -050085
Manorit Chawdhry3615e742023-07-25 13:09:22 +053086 if (get_device_type() == K3_DEVICE_TYPE_GP)
Manorit Chawdhrydb01bcc2023-05-18 12:44:17 +053087 return;
88
Manorit Chawdhry3615e742023-07-25 13:09:22 +053089 if (get_device_type() != K3_DEVICE_TYPE_HS_SE &&
90 !ti_secure_cert_detected(*p_image)) {
91 printf("Warning: Did not detect image signing certificate. "
92 "Skipping authentication to prevent boot failure. "
93 "This will fail on Security Enforcing(HS-SE) devices\n");
94 return;
95 }
96
Andrew Davisd95fcd82022-10-07 12:12:29 -050097 /* Clean out image so it can be seen by system firmware */
98 image_addr = dma_map_single(*p_image, *p_size, DMA_BIDIRECTIONAL);
99
Andrew F. Davis2ed41072019-04-12 12:54:45 -0400100 debug("Authenticating image at address 0x%016llx\n", image_addr);
Andrew F. Davis2dc1e6e2020-01-07 18:22:29 -0500101 debug("Authenticating image of size %d bytes\n", image_size);
102
Andrew F. Davis2ed41072019-04-12 12:54:45 -0400103 /* Authenticate image */
104 ret = proc_ops->proc_auth_boot_image(ti_sci, &image_addr, &image_size);
105 if (ret) {
106 printf("Authentication failed!\n");
107 hang();
108 }
109
Andrew Davisd95fcd82022-10-07 12:12:29 -0500110 /* Invalidate any stale lines over data written by system firmware */
Andrew F. Davis2dc1e6e2020-01-07 18:22:29 -0500111 if (image_size)
Andrew Davisd95fcd82022-10-07 12:12:29 -0500112 dma_unmap_single(image_addr, image_size, DMA_BIDIRECTIONAL);
Andrew F. Davis2dc1e6e2020-01-07 18:22:29 -0500113
Andrew F. Davis2ed41072019-04-12 12:54:45 -0400114 /*
115 * The image_size returned may be 0 when the authentication process has
116 * moved the image. When this happens no further processing on the
117 * image is needed or often even possible as it may have also been
118 * placed behind a firewall when moved.
119 */
120 *p_size = image_size;
121
122 /*
123 * Output notification of successful authentication to re-assure the
124 * user that the secure code is being processed as expected. However
125 * suppress any such log output in case of building for SPL and booting
126 * via YMODEM. This is done to avoid disturbing the YMODEM serial
127 * protocol transactions.
128 */
129 if (!(IS_ENABLED(CONFIG_SPL_BUILD) &&
130 IS_ENABLED(CONFIG_SPL_YMODEM_SUPPORT) &&
131 spl_boot_device() == BOOT_DEVICE_UART))
132 printf("Authentication passed\n");
133}