Andrew F. Davis | 2ed4107 | 2019-04-12 12:54:45 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
| 2 | /* |
| 3 | * K3: Security functions |
| 4 | * |
Nishanth Menon | eaa39c6 | 2023-11-01 15:56:03 -0500 | [diff] [blame] | 5 | * Copyright (C) 2018-2022 Texas Instruments Incorporated - https://www.ti.com/ |
Andrew F. Davis | 2ed4107 | 2019-04-12 12:54:45 -0400 | [diff] [blame] | 6 | * Andrew F. Davis <afd@ti.com> |
| 7 | */ |
| 8 | |
Andrew Davis | e74e3bb | 2022-07-15 11:34:33 -0500 | [diff] [blame] | 9 | #include <asm/io.h> |
Andrew F. Davis | 2dc1e6e | 2020-01-07 18:22:29 -0500 | [diff] [blame] | 10 | #include <cpu_func.h> |
Andrew F. Davis | 2ed4107 | 2019-04-12 12:54:45 -0400 | [diff] [blame] | 11 | #include <dm.h> |
Simon Glass | f11478f | 2019-12-28 10:45:07 -0700 | [diff] [blame] | 12 | #include <hang.h> |
Simon Glass | 2dc9c34 | 2020-05-10 11:40:01 -0600 | [diff] [blame] | 13 | #include <image.h> |
Simon Glass | 0f2af88 | 2020-05-10 11:40:05 -0600 | [diff] [blame] | 14 | #include <log.h> |
Simon Glass | 274e0b0 | 2020-05-10 11:39:56 -0600 | [diff] [blame] | 15 | #include <asm/cache.h> |
Andrew F. Davis | 2ed4107 | 2019-04-12 12:54:45 -0400 | [diff] [blame] | 16 | #include <linux/soc/ti/ti_sci_protocol.h> |
| 17 | #include <mach/spl.h> |
| 18 | #include <spl.h> |
Andrew Davis | d95fcd8 | 2022-10-07 12:12:29 -0500 | [diff] [blame] | 19 | #include <linux/dma-mapping.h> |
Andrew F. Davis | 2ed4107 | 2019-04-12 12:54:45 -0400 | [diff] [blame] | 20 | |
Andrew Davis | e74e3bb | 2022-07-15 11:34:33 -0500 | [diff] [blame] | 21 | #include "common.h" |
| 22 | |
| 23 | static bool ti_secure_cert_detected(void *p_image) |
| 24 | { |
| 25 | /* Primitive certificate detection, check for DER starting with |
| 26 | * two 4-Octet SEQUENCE tags |
| 27 | */ |
| 28 | return (((u8 *)p_image)[0] == 0x30 && ((u8 *)p_image)[1] == 0x82 && |
| 29 | ((u8 *)p_image)[4] == 0x30 && ((u8 *)p_image)[5] == 0x82); |
| 30 | } |
| 31 | |
Andrew Davis | 0ce8543 | 2022-07-15 11:34:35 -0500 | [diff] [blame] | 32 | /* Primitive certificate length, assumes one 2-Octet sized SEQUENCE */ |
| 33 | static size_t ti_secure_cert_length(void *p_image) |
| 34 | { |
| 35 | size_t seq_length = be16_to_cpu(readw_relaxed(p_image + 2)); |
| 36 | /* Add 4 for the SEQUENCE tag length */ |
| 37 | return seq_length + 4; |
| 38 | } |
| 39 | |
Manorit Chawdhry | db01bcc | 2023-05-18 12:44:17 +0530 | [diff] [blame] | 40 | void ti_secure_image_check_binary(void **p_image, size_t *p_size) |
Andrew F. Davis | 2ed4107 | 2019-04-12 12:54:45 -0400 | [diff] [blame] | 41 | { |
Andrew F. Davis | 2ed4107 | 2019-04-12 12:54:45 -0400 | [diff] [blame] | 42 | u32 image_size; |
Manorit Chawdhry | db01bcc | 2023-05-18 12:44:17 +0530 | [diff] [blame] | 43 | size_t cert_length; |
Andrew F. Davis | 2dc1e6e | 2020-01-07 18:22:29 -0500 | [diff] [blame] | 44 | image_size = *p_size; |
Andrew F. Davis | 2ed4107 | 2019-04-12 12:54:45 -0400 | [diff] [blame] | 45 | |
Manorit Chawdhry | db01bcc | 2023-05-18 12:44:17 +0530 | [diff] [blame] | 46 | if (!image_size) { |
| 47 | debug("%s: Image size is %d\n", __func__, image_size); |
Andrew Davis | 0ce8543 | 2022-07-15 11:34:35 -0500 | [diff] [blame] | 48 | return; |
Manorit Chawdhry | db01bcc | 2023-05-18 12:44:17 +0530 | [diff] [blame] | 49 | } |
Andrew Davis | 0ce8543 | 2022-07-15 11:34:35 -0500 | [diff] [blame] | 50 | |
| 51 | if (get_device_type() == K3_DEVICE_TYPE_GP) { |
| 52 | if (ti_secure_cert_detected(*p_image)) { |
| 53 | printf("Warning: Detected image signing certificate on GP device. " |
| 54 | "Skipping certificate to prevent boot failure. " |
| 55 | "This will fail if the image was also encrypted\n"); |
| 56 | |
| 57 | cert_length = ti_secure_cert_length(*p_image); |
| 58 | if (cert_length > *p_size) { |
| 59 | printf("Invalid signing certificate size\n"); |
| 60 | return; |
| 61 | } |
| 62 | |
| 63 | *p_image += cert_length; |
| 64 | *p_size -= cert_length; |
| 65 | } |
| 66 | |
Andrew Davis | 2045cf1 | 2022-07-15 11:34:34 -0500 | [diff] [blame] | 67 | return; |
Andrew Davis | 0ce8543 | 2022-07-15 11:34:35 -0500 | [diff] [blame] | 68 | } |
Manorit Chawdhry | db01bcc | 2023-05-18 12:44:17 +0530 | [diff] [blame] | 69 | } |
| 70 | |
| 71 | void ti_secure_image_post_process(void **p_image, size_t *p_size) |
| 72 | { |
| 73 | struct ti_sci_handle *ti_sci = get_ti_sci_handle(); |
| 74 | struct ti_sci_proc_ops *proc_ops = &ti_sci->ops.proc_ops; |
| 75 | u64 image_addr; |
| 76 | u32 image_size; |
| 77 | int ret; |
| 78 | |
| 79 | image_size = *p_size; |
| 80 | if (!image_size) { |
| 81 | debug("%s: Image size is %d\n", __func__, image_size); |
| 82 | return; |
| 83 | } |
Andrew Davis | e74e3bb | 2022-07-15 11:34:33 -0500 | [diff] [blame] | 84 | |
Manorit Chawdhry | 3615e74 | 2023-07-25 13:09:22 +0530 | [diff] [blame] | 85 | if (get_device_type() == K3_DEVICE_TYPE_GP) |
Manorit Chawdhry | db01bcc | 2023-05-18 12:44:17 +0530 | [diff] [blame] | 86 | return; |
| 87 | |
Manorit Chawdhry | 3615e74 | 2023-07-25 13:09:22 +0530 | [diff] [blame] | 88 | if (get_device_type() != K3_DEVICE_TYPE_HS_SE && |
| 89 | !ti_secure_cert_detected(*p_image)) { |
| 90 | printf("Warning: Did not detect image signing certificate. " |
| 91 | "Skipping authentication to prevent boot failure. " |
| 92 | "This will fail on Security Enforcing(HS-SE) devices\n"); |
| 93 | return; |
| 94 | } |
| 95 | |
Andrew Davis | d95fcd8 | 2022-10-07 12:12:29 -0500 | [diff] [blame] | 96 | /* Clean out image so it can be seen by system firmware */ |
| 97 | image_addr = dma_map_single(*p_image, *p_size, DMA_BIDIRECTIONAL); |
| 98 | |
Andrew F. Davis | 2ed4107 | 2019-04-12 12:54:45 -0400 | [diff] [blame] | 99 | debug("Authenticating image at address 0x%016llx\n", image_addr); |
Andrew F. Davis | 2dc1e6e | 2020-01-07 18:22:29 -0500 | [diff] [blame] | 100 | debug("Authenticating image of size %d bytes\n", image_size); |
| 101 | |
Andrew F. Davis | 2ed4107 | 2019-04-12 12:54:45 -0400 | [diff] [blame] | 102 | /* Authenticate image */ |
| 103 | ret = proc_ops->proc_auth_boot_image(ti_sci, &image_addr, &image_size); |
| 104 | if (ret) { |
| 105 | printf("Authentication failed!\n"); |
| 106 | hang(); |
| 107 | } |
| 108 | |
Andrew Davis | d95fcd8 | 2022-10-07 12:12:29 -0500 | [diff] [blame] | 109 | /* Invalidate any stale lines over data written by system firmware */ |
Andrew F. Davis | 2dc1e6e | 2020-01-07 18:22:29 -0500 | [diff] [blame] | 110 | if (image_size) |
Andrew Davis | d95fcd8 | 2022-10-07 12:12:29 -0500 | [diff] [blame] | 111 | dma_unmap_single(image_addr, image_size, DMA_BIDIRECTIONAL); |
Andrew F. Davis | 2dc1e6e | 2020-01-07 18:22:29 -0500 | [diff] [blame] | 112 | |
Andrew F. Davis | 2ed4107 | 2019-04-12 12:54:45 -0400 | [diff] [blame] | 113 | /* |
| 114 | * The image_size returned may be 0 when the authentication process has |
| 115 | * moved the image. When this happens no further processing on the |
| 116 | * image is needed or often even possible as it may have also been |
| 117 | * placed behind a firewall when moved. |
| 118 | */ |
| 119 | *p_size = image_size; |
| 120 | |
| 121 | /* |
| 122 | * Output notification of successful authentication to re-assure the |
| 123 | * user that the secure code is being processed as expected. However |
| 124 | * suppress any such log output in case of building for SPL and booting |
| 125 | * via YMODEM. This is done to avoid disturbing the YMODEM serial |
| 126 | * protocol transactions. |
| 127 | */ |
| 128 | if (!(IS_ENABLED(CONFIG_SPL_BUILD) && |
| 129 | IS_ENABLED(CONFIG_SPL_YMODEM_SUPPORT) && |
| 130 | spl_boot_device() == BOOT_DEVICE_UART)) |
| 131 | printf("Authentication passed\n"); |
| 132 | } |