Julius Werner | 745a75f | 2015-05-11 16:45:56 -0700 | [diff] [blame] | 1 | /* |
| 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 Werner | 745a75f | 2015-05-11 16:45:56 -0700 | [diff] [blame] | 14 | */ |
| 15 | |
| 16 | #include <arch/cache.h> |
Furquan Shaikh | a384c28 | 2015-05-28 12:13:51 -0700 | [diff] [blame] | 17 | #include <arch/lib_helpers.h> |
Julius Werner | fe4cbf1 | 2015-10-07 18:38:24 -0700 | [diff] [blame] | 18 | #include <arch/mmu.h> |
Furquan Shaikh | a384c28 | 2015-05-28 12:13:51 -0700 | [diff] [blame] | 19 | #include <arch/transition.h> |
Julius Werner | 745a75f | 2015-05-11 16:45:56 -0700 | [diff] [blame] | 20 | #include <arm_tf.h> |
| 21 | #include <assert.h> |
| 22 | #include <cbfs.h> |
| 23 | #include <cbmem.h> |
Aaron Durbin | 6403167 | 2018-04-21 14:45:32 -0600 | [diff] [blame] | 24 | #include <compiler.h> |
Aaron Durbin | 899d13d | 2015-05-15 23:39:23 -0500 | [diff] [blame] | 25 | #include <program_loading.h> |
Julius Werner | 745a75f | 2015-05-11 16:45:56 -0700 | [diff] [blame] | 26 | |
| 27 | /* |
| 28 | * TODO: Many of these structures are currently unused. Better not fill them out |
| 29 | * to make future changes fail fast, rather than try to come up with content |
| 30 | * that might turn out to not make sense. Implement later as required. |
| 31 | * |
| 32 | static image_info_t bl31_image_info; |
| 33 | static image_info_t bl32_image_info; |
| 34 | static image_info_t bl33_image_info; |
Julius Werner | 745a75f | 2015-05-11 16:45:56 -0700 | [diff] [blame] | 35 | */ |
Furquan Shaikh | a384c28 | 2015-05-28 12:13:51 -0700 | [diff] [blame] | 36 | static entry_point_info_t bl32_ep_info; |
Julius Werner | 745a75f | 2015-05-11 16:45:56 -0700 | [diff] [blame] | 37 | static entry_point_info_t bl33_ep_info; |
| 38 | static bl31_params_t bl31_params; |
| 39 | |
Aaron Durbin | 6403167 | 2018-04-21 14:45:32 -0600 | [diff] [blame] | 40 | void __weak *soc_get_bl31_plat_params(bl31_params_t *params) |
Furquan Shaikh | 49d3066 | 2015-05-20 11:03:50 -0700 | [diff] [blame] | 41 | { |
| 42 | /* Default weak implementation. */ |
| 43 | return NULL; |
| 44 | } |
| 45 | |
Julius Werner | 745a75f | 2015-05-11 16:45:56 -0700 | [diff] [blame] | 46 | void arm_tf_run_bl31(u64 payload_entry, u64 payload_arg0, u64 payload_spsr) |
| 47 | { |
Aaron Durbin | 7e7a4df | 2015-12-08 14:34:35 -0600 | [diff] [blame] | 48 | struct prog bl31 = PROG_INIT(PROG_BL31, CONFIG_CBFS_PREFIX"/bl31"); |
Julius Werner | 745a75f | 2015-05-11 16:45:56 -0700 | [diff] [blame] | 49 | void (*bl31_entry)(bl31_params_t *params, void *plat_params) = NULL; |
| 50 | |
Aaron Durbin | 899d13d | 2015-05-15 23:39:23 -0500 | [diff] [blame] | 51 | if (prog_locate(&bl31)) |
| 52 | die("BL31 not found"); |
Julius Werner | 745a75f | 2015-05-11 16:45:56 -0700 | [diff] [blame] | 53 | |
Simon Glass | 7ae73fc | 2016-08-27 12:18:38 -0600 | [diff] [blame] | 54 | bl31_entry = selfload(&bl31, false); |
| 55 | if (!bl31_entry) |
Aaron Durbin | 899d13d | 2015-05-15 23:39:23 -0500 | [diff] [blame] | 56 | die("BL31 load failed"); |
| 57 | |
Julius Werner | 745a75f | 2015-05-11 16:45:56 -0700 | [diff] [blame] | 58 | SET_PARAM_HEAD(&bl31_params, PARAM_BL31, VERSION_1, 0); |
Furquan Shaikh | a384c28 | 2015-05-28 12:13:51 -0700 | [diff] [blame] | 59 | |
| 60 | if (IS_ENABLED(CONFIG_ARM64_USE_SECURE_OS)) { |
Simon Glass | 17c2b94 | 2016-08-27 12:02:09 -0600 | [diff] [blame] | 61 | struct prog bl32 = PROG_INIT(PROG_BL32, |
| 62 | CONFIG_CBFS_PREFIX"/secure_os"); |
Furquan Shaikh | a384c28 | 2015-05-28 12:13:51 -0700 | [diff] [blame] | 63 | |
| 64 | if (prog_locate(&bl32)) |
Simon Glass | 17c2b94 | 2016-08-27 12:02:09 -0600 | [diff] [blame] | 65 | die("BL32 not found"); |
Furquan Shaikh | a384c28 | 2015-05-28 12:13:51 -0700 | [diff] [blame] | 66 | |
| 67 | if (cbfs_prog_stage_load(&bl32)) |
Simon Glass | 17c2b94 | 2016-08-27 12:02:09 -0600 | [diff] [blame] | 68 | die("BL32 load failed"); |
Furquan Shaikh | a384c28 | 2015-05-28 12:13:51 -0700 | [diff] [blame] | 69 | |
Simon Glass | 17c2b94 | 2016-08-27 12:02:09 -0600 | [diff] [blame] | 70 | SET_PARAM_HEAD(&bl32_ep_info, PARAM_EP, VERSION_1, |
| 71 | PARAM_EP_SECURE); |
Furquan Shaikh | a384c28 | 2015-05-28 12:13:51 -0700 | [diff] [blame] | 72 | bl32_ep_info.pc = (uintptr_t)prog_entry(&bl32); |
Simon Glass | 17c2b94 | 2016-08-27 12:02:09 -0600 | [diff] [blame] | 73 | bl32_ep_info.spsr = SPSR_EXCEPTION_MASK | |
| 74 | get_eret_el(EL1, SPSR_USE_L); |
Furquan Shaikh | a384c28 | 2015-05-28 12:13:51 -0700 | [diff] [blame] | 75 | bl31_params.bl32_ep_info = &bl32_ep_info; |
| 76 | } |
| 77 | |
Julius Werner | 745a75f | 2015-05-11 16:45:56 -0700 | [diff] [blame] | 78 | bl31_params.bl33_ep_info = &bl33_ep_info; |
| 79 | |
| 80 | SET_PARAM_HEAD(&bl33_ep_info, PARAM_EP, VERSION_1, PARAM_EP_NON_SECURE); |
| 81 | bl33_ep_info.pc = payload_entry; |
| 82 | bl33_ep_info.spsr = payload_spsr; |
| 83 | bl33_ep_info.args.arg0 = payload_arg0; |
| 84 | |
Julius Werner | 91ebbfd | 2017-07-25 13:55:43 -0700 | [diff] [blame] | 85 | /* May update bl31_params if necessary. */ |
Julius Werner | 745a75f | 2015-05-11 16:45:56 -0700 | [diff] [blame] | 86 | void *bl31_plat_params = soc_get_bl31_plat_params(&bl31_params); |
| 87 | |
Julius Werner | 91ebbfd | 2017-07-25 13:55:43 -0700 | [diff] [blame] | 88 | /* MMU disable will flush cache, so passed params land in memory. */ |
Julius Werner | 3834520 | 2016-02-01 19:47:10 -0800 | [diff] [blame] | 89 | raw_write_daif(SPSR_EXCEPTION_MASK); |
Julius Werner | fe4cbf1 | 2015-10-07 18:38:24 -0700 | [diff] [blame] | 90 | mmu_disable(); |
Julius Werner | 745a75f | 2015-05-11 16:45:56 -0700 | [diff] [blame] | 91 | bl31_entry(&bl31_params, bl31_plat_params); |
| 92 | die("BL31 returned!"); |
| 93 | } |