blob: 3f1aa2a26508c7168b96d5bb714ee36cbe0ab060 [file] [log] [blame]
Julius Werner745a75f2015-05-11 16:45:56 -07001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright 2015 Google Inc.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 2 of the License.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
Julius Werner745a75f2015-05-11 16:45:56 -070014 */
15
16#include <arch/cache.h>
Furquan Shaikha384c282015-05-28 12:13:51 -070017#include <arch/lib_helpers.h>
Julius Wernerfe4cbf12015-10-07 18:38:24 -070018#include <arch/mmu.h>
Furquan Shaikha384c282015-05-28 12:13:51 -070019#include <arch/transition.h>
Julius Werner745a75f2015-05-11 16:45:56 -070020#include <arm_tf.h>
21#include <assert.h>
Ting Shen05532262019-01-28 17:22:22 +080022#include <bootmem.h>
Julius Werner745a75f2015-05-11 16:45:56 -070023#include <cbfs.h>
Aaron Durbin899d13d2015-05-15 23:39:23 -050024#include <program_loading.h>
Julius Werner745a75f2015-05-11 16:45:56 -070025
26/*
27 * TODO: Many of these structures are currently unused. Better not fill them out
28 * to make future changes fail fast, rather than try to come up with content
29 * that might turn out to not make sense. Implement later as required.
30 *
31static image_info_t bl31_image_info;
32static image_info_t bl32_image_info;
33static image_info_t bl33_image_info;
Julius Werner745a75f2015-05-11 16:45:56 -070034 */
Furquan Shaikha384c282015-05-28 12:13:51 -070035static entry_point_info_t bl32_ep_info;
Julius Werner745a75f2015-05-11 16:45:56 -070036static entry_point_info_t bl33_ep_info;
37static bl31_params_t bl31_params;
38
Aaron Durbin64031672018-04-21 14:45:32 -060039void __weak *soc_get_bl31_plat_params(bl31_params_t *params)
Furquan Shaikh49d30662015-05-20 11:03:50 -070040{
41 /* Default weak implementation. */
42 return NULL;
43}
44
Julius Werner745a75f2015-05-11 16:45:56 -070045void arm_tf_run_bl31(u64 payload_entry, u64 payload_arg0, u64 payload_spsr)
46{
Aaron Durbin7e7a4df2015-12-08 14:34:35 -060047 struct prog bl31 = PROG_INIT(PROG_BL31, CONFIG_CBFS_PREFIX"/bl31");
Julius Werner745a75f2015-05-11 16:45:56 -070048 void (*bl31_entry)(bl31_params_t *params, void *plat_params) = NULL;
49
Aaron Durbin899d13d2015-05-15 23:39:23 -050050 if (prog_locate(&bl31))
51 die("BL31 not found");
Julius Werner745a75f2015-05-11 16:45:56 -070052
Ting Shendff29e02019-01-28 18:15:00 +080053 if (!selfload_check(&bl31, BM_MEM_BL31))
Aaron Durbin899d13d2015-05-15 23:39:23 -050054 die("BL31 load failed");
Patrick Rudolph59b8f272018-04-26 09:53:16 +020055 bl31_entry = prog_entry(&bl31);
Aaron Durbin899d13d2015-05-15 23:39:23 -050056
Julius Werner745a75f2015-05-11 16:45:56 -070057 SET_PARAM_HEAD(&bl31_params, PARAM_BL31, VERSION_1, 0);
Furquan Shaikha384c282015-05-28 12:13:51 -070058
59 if (IS_ENABLED(CONFIG_ARM64_USE_SECURE_OS)) {
Simon Glass17c2b942016-08-27 12:02:09 -060060 struct prog bl32 = PROG_INIT(PROG_BL32,
61 CONFIG_CBFS_PREFIX"/secure_os");
Furquan Shaikha384c282015-05-28 12:13:51 -070062
63 if (prog_locate(&bl32))
Simon Glass17c2b942016-08-27 12:02:09 -060064 die("BL32 not found");
Furquan Shaikha384c282015-05-28 12:13:51 -070065
66 if (cbfs_prog_stage_load(&bl32))
Simon Glass17c2b942016-08-27 12:02:09 -060067 die("BL32 load failed");
Furquan Shaikha384c282015-05-28 12:13:51 -070068
Simon Glass17c2b942016-08-27 12:02:09 -060069 SET_PARAM_HEAD(&bl32_ep_info, PARAM_EP, VERSION_1,
70 PARAM_EP_SECURE);
Furquan Shaikha384c282015-05-28 12:13:51 -070071 bl32_ep_info.pc = (uintptr_t)prog_entry(&bl32);
Simon Glass17c2b942016-08-27 12:02:09 -060072 bl32_ep_info.spsr = SPSR_EXCEPTION_MASK |
73 get_eret_el(EL1, SPSR_USE_L);
Furquan Shaikha384c282015-05-28 12:13:51 -070074 bl31_params.bl32_ep_info = &bl32_ep_info;
75 }
76
Julius Werner745a75f2015-05-11 16:45:56 -070077 bl31_params.bl33_ep_info = &bl33_ep_info;
78
79 SET_PARAM_HEAD(&bl33_ep_info, PARAM_EP, VERSION_1, PARAM_EP_NON_SECURE);
80 bl33_ep_info.pc = payload_entry;
81 bl33_ep_info.spsr = payload_spsr;
82 bl33_ep_info.args.arg0 = payload_arg0;
83
Julius Werner91ebbfd2017-07-25 13:55:43 -070084 /* May update bl31_params if necessary. */
Julius Werner745a75f2015-05-11 16:45:56 -070085 void *bl31_plat_params = soc_get_bl31_plat_params(&bl31_params);
86
Julius Werner91ebbfd2017-07-25 13:55:43 -070087 /* MMU disable will flush cache, so passed params land in memory. */
Julius Werner38345202016-02-01 19:47:10 -080088 raw_write_daif(SPSR_EXCEPTION_MASK);
Julius Wernerfe4cbf12015-10-07 18:38:24 -070089 mmu_disable();
Julius Werner745a75f2015-05-11 16:45:56 -070090 bl31_entry(&bl31_params, bl31_plat_params);
91 die("BL31 returned!");
92}