blob: dd7c998487ff8235426b81cbe18bae083c19fa8d [file] [log] [blame]
Andrew F. Davis2ed41072019-04-12 12:54:45 -04001// SPDX-License-Identifier: GPL-2.0
2/*
3 * K3: Security functions
4 *
5 * Copyright (C) 2018 Texas Instruments Incorporated - http://www.ti.com/
6 * Andrew F. Davis <afd@ti.com>
7 */
8
9#include <common.h>
Andrew F. Davis2dc1e6e2020-01-07 18:22:29 -050010#include <cpu_func.h>
Andrew F. Davis2ed41072019-04-12 12:54:45 -040011#include <dm.h>
Simon Glassf11478f2019-12-28 10:45:07 -070012#include <hang.h>
Simon Glass274e0b02020-05-10 11:39:56 -060013#include <asm/cache.h>
Andrew F. Davis2ed41072019-04-12 12:54:45 -040014#include <linux/soc/ti/ti_sci_protocol.h>
15#include <mach/spl.h>
16#include <spl.h>
Lokesh Vutlaac9ca952019-09-09 12:47:38 +053017#include <asm/arch/sys_proto.h>
Andrew F. Davis2ed41072019-04-12 12:54:45 -040018
19void board_fit_image_post_process(void **p_image, size_t *p_size)
20{
Lokesh Vutlaac9ca952019-09-09 12:47:38 +053021 struct ti_sci_handle *ti_sci = get_ti_sci_handle();
22 struct ti_sci_proc_ops *proc_ops = &ti_sci->ops.proc_ops;
Andrew F. Davis2ed41072019-04-12 12:54:45 -040023 u64 image_addr;
24 u32 image_size;
25 int ret;
26
Andrew F. Davis2ed41072019-04-12 12:54:45 -040027 image_addr = (uintptr_t)*p_image;
Andrew F. Davis2dc1e6e2020-01-07 18:22:29 -050028 image_size = *p_size;
Andrew F. Davis2ed41072019-04-12 12:54:45 -040029
30 debug("Authenticating image at address 0x%016llx\n", image_addr);
Andrew F. Davis2dc1e6e2020-01-07 18:22:29 -050031 debug("Authenticating image of size %d bytes\n", image_size);
32
33 flush_dcache_range((unsigned long)image_addr,
34 ALIGN((unsigned long)image_addr + image_size,
35 ARCH_DMA_MINALIGN));
Andrew F. Davis2ed41072019-04-12 12:54:45 -040036
37 /* Authenticate image */
38 ret = proc_ops->proc_auth_boot_image(ti_sci, &image_addr, &image_size);
39 if (ret) {
40 printf("Authentication failed!\n");
41 hang();
42 }
43
Andrew F. Davis2dc1e6e2020-01-07 18:22:29 -050044 if (image_size)
45 invalidate_dcache_range((unsigned long)image_addr,
46 ALIGN((unsigned long)image_addr +
47 image_size, ARCH_DMA_MINALIGN));
48
Andrew F. Davis2ed41072019-04-12 12:54:45 -040049 /*
50 * The image_size returned may be 0 when the authentication process has
51 * moved the image. When this happens no further processing on the
52 * image is needed or often even possible as it may have also been
53 * placed behind a firewall when moved.
54 */
55 *p_size = image_size;
56
57 /*
58 * Output notification of successful authentication to re-assure the
59 * user that the secure code is being processed as expected. However
60 * suppress any such log output in case of building for SPL and booting
61 * via YMODEM. This is done to avoid disturbing the YMODEM serial
62 * protocol transactions.
63 */
64 if (!(IS_ENABLED(CONFIG_SPL_BUILD) &&
65 IS_ENABLED(CONFIG_SPL_YMODEM_SUPPORT) &&
66 spl_boot_device() == BOOT_DEVICE_UART))
67 printf("Authentication passed\n");
68}