blob: cafb24971b217f470fbd8cf0a07a8420d4aafc21 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Aneesh Bansalc4713ec2016-01-22 16:37:25 +05302/*
3 * Copyright 2015 Freescale Semiconductor, Inc.
Aneesh Bansalc4713ec2016-01-22 16:37:25 +05304 */
5
6#include <common.h>
Simon Glass11c89f32017-05-17 17:18:03 -06007#include <dm.h>
Simon Glass5e6201b2019-08-01 09:46:51 -06008#include <env.h>
Aneesh Bansalc4713ec2016-01-22 16:37:25 +05309#include <fsl_validate.h>
Sumit Gargf6d96cb2016-07-14 12:27:51 -040010#include <fsl_secboot_err.h>
Aneesh Bansalc4713ec2016-01-22 16:37:25 +053011#include <fsl_sfp.h>
Simon Glass0f2af882020-05-10 11:40:05 -060012#include <log.h>
Sumit Gargf6d96cb2016-07-14 12:27:51 -040013#include <dm/root.h>
14
Sumit Gargbdddd6e2016-06-14 13:52:38 -040015#if defined(CONFIG_SPL_BUILD) && defined(CONFIG_SPL_FRAMEWORK)
16#include <spl.h>
17#endif
18
Sumit Gargf6d96cb2016-07-14 12:27:51 -040019#ifdef CONFIG_ADDR_MAP
20#include <asm/mmu.h>
21#endif
22
23#ifdef CONFIG_FSL_CORENET
24#include <asm/fsl_pamu.h>
25#endif
Aneesh Bansalc4713ec2016-01-22 16:37:25 +053026
York Sunc4f047c2017-03-27 11:41:03 -070027#ifdef CONFIG_ARCH_LS1021A
Aneesh Bansalc4713ec2016-01-22 16:37:25 +053028#include <asm/arch/immap_ls102xa.h>
29#endif
30
31#if defined(CONFIG_MPC85xx)
32#define CONFIG_DCFG_ADDR CONFIG_SYS_MPC85xx_GUTS_ADDR
33#else
34#define CONFIG_DCFG_ADDR CONFIG_SYS_FSL_GUTS_ADDR
35#endif
36
37#ifdef CONFIG_SYS_FSL_CCSR_GUR_LE
38#define gur_in32(a) in_le32(a)
39#else
40#define gur_in32(a) in_be32(a)
41#endif
42
43/* Check the Boot Mode. If Secure, return 1 else return 0 */
44int fsl_check_boot_mode_secure(void)
45{
46 uint32_t val;
47 struct ccsr_sfp_regs *sfp_regs = (void *)(CONFIG_SYS_SFP_ADDR);
48 struct ccsr_gur __iomem *gur = (void *)(CONFIG_DCFG_ADDR);
49
50 val = sfp_in32(&sfp_regs->ospr) & ITS_MASK;
51 if (val == ITS_MASK)
52 return 1;
53
54#if defined(CONFIG_FSL_CORENET) || !defined(CONFIG_MPC85xx)
55 /* For PBL based platforms check the SB_EN bit in RCWSR */
56 val = gur_in32(&gur->rcwsr[RCW_SB_EN_REG_INDEX - 1]) & RCW_SB_EN_MASK;
57 if (val == RCW_SB_EN_MASK)
58 return 1;
59#endif
60
61#if defined(CONFIG_MPC85xx) && !defined(CONFIG_FSL_CORENET)
62 /* For Non-PBL Platforms, check the Device Status register 2*/
63 val = gur_in32(&gur->pordevsr2) & MPC85xx_PORDEVSR2_SBC_MASK;
64 if (val != MPC85xx_PORDEVSR2_SBC_MASK)
65 return 1;
66
67#endif
68 return 0;
69}
Aneesh Bansal39d5b3b2016-01-22 16:37:26 +053070
Sumit Gargf6d96cb2016-07-14 12:27:51 -040071#ifndef CONFIG_SPL_BUILD
Aneesh Bansal39d5b3b2016-01-22 16:37:26 +053072int fsl_setenv_chain_of_trust(void)
73{
74 /* Check Boot Mode
75 * If Boot Mode is Non-Secure, no changes are required
76 */
77 if (fsl_check_boot_mode_secure() == 0)
78 return 0;
79
80 /* If Boot mode is Secure, set the environment variables
81 * bootdelay = 0 (To disable Boot Prompt)
82 * bootcmd = CONFIG_CHAIN_BOOT_CMD (Validate and execute Boot script)
83 */
Udit Agarwal9bca6622019-06-11 09:37:49 +000084 env_set("bootdelay", "-2");
Sumit Garg9cbcc4d2017-06-05 23:51:51 +053085
86#ifdef CONFIG_ARM
Simon Glass6a38e412017-08-03 12:22:09 -060087 env_set("secureboot", "y");
Sumit Garg9cbcc4d2017-06-05 23:51:51 +053088#else
Simon Glass6a38e412017-08-03 12:22:09 -060089 env_set("bootcmd", CONFIG_CHAIN_BOOT_CMD);
Sumit Garg9cbcc4d2017-06-05 23:51:51 +053090#endif
91
Aneesh Bansal39d5b3b2016-01-22 16:37:26 +053092 return 0;
93}
Sumit Gargf6d96cb2016-07-14 12:27:51 -040094#endif
95
96#ifdef CONFIG_SPL_BUILD
97void spl_validate_uboot(uint32_t hdr_addr, uintptr_t img_addr)
98{
99 int res;
100
101 /*
102 * Check Boot Mode
103 * If Boot Mode is Non-Secure, skip validation
104 */
105 if (fsl_check_boot_mode_secure() == 0)
106 return;
107
108 printf("SPL: Validating U-Boot image\n");
109
110#ifdef CONFIG_ADDR_MAP
111 init_addr_map();
112#endif
113
114#ifdef CONFIG_FSL_CORENET
115 if (pamu_init() < 0)
116 fsl_secboot_handle_error(ERROR_ESBC_PAMU_INIT);
117#endif
118
119#ifdef CONFIG_FSL_CAAM
120 if (sec_init() < 0)
121 fsl_secboot_handle_error(ERROR_ESBC_SEC_INIT);
122#endif
123
124/*
125 * dm_init_and_scan() is called as part of common SPL framework, so no
126 * need to call it again but in case of powerpc platforms which currently
127 * do not use common SPL framework, so need to call this function here.
128 */
129#if defined(CONFIG_SPL_DM) && (!defined(CONFIG_SPL_FRAMEWORK))
Sumit Gargbdddd6e2016-06-14 13:52:38 -0400130 dm_init_and_scan(true);
Sumit Gargf6d96cb2016-07-14 12:27:51 -0400131#endif
132 res = fsl_secboot_validate(hdr_addr, CONFIG_SPL_UBOOT_KEY_HASH,
133 &img_addr);
134
135 if (res == 0)
136 printf("SPL: Validation of U-boot successful\n");
137}
Sumit Gargbdddd6e2016-06-14 13:52:38 -0400138
139#ifdef CONFIG_SPL_FRAMEWORK
140/* Override weak funtion defined in SPL framework to enable validation
141 * of main u-boot image before jumping to u-boot image.
142 */
143void __noreturn jump_to_image_no_args(struct spl_image_info *spl_image)
144{
145 typedef void __noreturn (*image_entry_noargs_t)(void);
146 uint32_t hdr_addr;
147
148 image_entry_noargs_t image_entry =
149 (image_entry_noargs_t)(unsigned long)spl_image->entry_point;
150
151 hdr_addr = (spl_image->entry_point + spl_image->size -
152 CONFIG_U_BOOT_HDR_SIZE);
153 spl_validate_uboot(hdr_addr, (uintptr_t)spl_image->entry_point);
154 /*
155 * In case of failure in validation, spl_validate_uboot would
156 * not return back in case of Production environment with ITS=1.
157 * Thus U-Boot will not start.
158 * In Development environment (ITS=0 and SB_EN=1), the function
159 * may return back in case of non-fatal failures.
160 */
161
Tom Rinif1c2fc02017-01-11 10:45:48 -0500162 debug("image entry point: 0x%lX\n", spl_image->entry_point);
Sumit Gargbdddd6e2016-06-14 13:52:38 -0400163 image_entry();
164}
165#endif /* ifdef CONFIG_SPL_FRAMEWORK */
Sumit Gargf6d96cb2016-07-14 12:27:51 -0400166#endif /* ifdef CONFIG_SPL_BUILD */