blob: 02a2c12dbd6f6c767743577c604e6a2f178a5209 [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 }
Andrew Davis2045cf12022-07-15 11:34:34 -050070
Andrew Davise74e3bb2022-07-15 11:34:33 -050071 if (get_device_type() != K3_DEVICE_TYPE_HS_SE &&
72 !ti_secure_cert_detected(*p_image)) {
73 printf("Warning: Did not detect image signing certificate. "
74 "Skipping authentication to prevent boot failure. "
75 "This will fail on Security Enforcing(HS-SE) devices\n");
76 return;
77 }
Manorit Chawdhrydb01bcc2023-05-18 12:44:17 +053078}
79
80void ti_secure_image_post_process(void **p_image, size_t *p_size)
81{
82 struct ti_sci_handle *ti_sci = get_ti_sci_handle();
83 struct ti_sci_proc_ops *proc_ops = &ti_sci->ops.proc_ops;
84 u64 image_addr;
85 u32 image_size;
86 int ret;
87
88 image_size = *p_size;
89 if (!image_size) {
90 debug("%s: Image size is %d\n", __func__, image_size);
91 return;
92 }
Andrew Davise74e3bb2022-07-15 11:34:33 -050093
Manorit Chawdhrydb01bcc2023-05-18 12:44:17 +053094 if (get_device_type() != K3_DEVICE_TYPE_HS_SE &&
95 get_device_type() != K3_DEVICE_TYPE_HS_FS)
96 return;
97
Andrew Davisd95fcd82022-10-07 12:12:29 -050098 /* Clean out image so it can be seen by system firmware */
99 image_addr = dma_map_single(*p_image, *p_size, DMA_BIDIRECTIONAL);
100
Andrew F. Davis2ed41072019-04-12 12:54:45 -0400101 debug("Authenticating image at address 0x%016llx\n", image_addr);
Andrew F. Davis2dc1e6e2020-01-07 18:22:29 -0500102 debug("Authenticating image of size %d bytes\n", image_size);
103
Andrew F. Davis2ed41072019-04-12 12:54:45 -0400104 /* Authenticate image */
105 ret = proc_ops->proc_auth_boot_image(ti_sci, &image_addr, &image_size);
106 if (ret) {
107 printf("Authentication failed!\n");
108 hang();
109 }
110
Andrew Davisd95fcd82022-10-07 12:12:29 -0500111 /* Invalidate any stale lines over data written by system firmware */
Andrew F. Davis2dc1e6e2020-01-07 18:22:29 -0500112 if (image_size)
Andrew Davisd95fcd82022-10-07 12:12:29 -0500113 dma_unmap_single(image_addr, image_size, DMA_BIDIRECTIONAL);
Andrew F. Davis2dc1e6e2020-01-07 18:22:29 -0500114
Andrew F. Davis2ed41072019-04-12 12:54:45 -0400115 /*
116 * The image_size returned may be 0 when the authentication process has
117 * moved the image. When this happens no further processing on the
118 * image is needed or often even possible as it may have also been
119 * placed behind a firewall when moved.
120 */
121 *p_size = image_size;
122
123 /*
124 * Output notification of successful authentication to re-assure the
125 * user that the secure code is being processed as expected. However
126 * suppress any such log output in case of building for SPL and booting
127 * via YMODEM. This is done to avoid disturbing the YMODEM serial
128 * protocol transactions.
129 */
130 if (!(IS_ENABLED(CONFIG_SPL_BUILD) &&
131 IS_ENABLED(CONFIG_SPL_YMODEM_SUPPORT) &&
132 spl_boot_device() == BOOT_DEVICE_UART))
133 printf("Authentication passed\n");
134}