Usama Arif | bec5afd | 2020-04-17 16:13:39 +0100 | [diff] [blame] | 1 | /* |
Boyan Karatotev | ffe7569 | 2023-11-29 15:27:18 +0000 | [diff] [blame] | 2 | * Copyright (c) 2020-2024, Arm Limited and Contributors. All rights reserved. |
Usama Arif | bec5afd | 2020-04-17 16:13:39 +0100 | [diff] [blame] | 3 | * |
| 4 | * SPDX-License-Identifier: BSD-3-Clause |
| 5 | */ |
| 6 | |
| 7 | #include <assert.h> |
| 8 | |
| 9 | #include <libfdt.h> |
Usama Arif | f151362 | 2021-04-09 17:07:41 +0100 | [diff] [blame] | 10 | #include <tc_plat.h> |
Usama Arif | bec5afd | 2020-04-17 16:13:39 +0100 | [diff] [blame] | 11 | |
Manish V Badarkhe | b241efb | 2023-10-18 14:11:45 +0100 | [diff] [blame] | 12 | #include <arch_helpers.h> |
Usama Arif | bec5afd | 2020-04-17 16:13:39 +0100 | [diff] [blame] | 13 | #include <common/bl_common.h> |
| 14 | #include <common/debug.h> |
| 15 | #include <drivers/arm/css/css_mhu_doorbell.h> |
| 16 | #include <drivers/arm/css/scmi.h> |
Madhukar Pappireddy | e108df2 | 2023-03-22 15:40:40 -0500 | [diff] [blame] | 17 | #include <drivers/arm/sbsa.h> |
Usama Arif | a49bd49 | 2021-08-17 17:57:10 +0100 | [diff] [blame] | 18 | #include <lib/fconf/fconf.h> |
| 19 | #include <lib/fconf/fconf_dyn_cfg_getter.h> |
Usama Arif | bec5afd | 2020-04-17 16:13:39 +0100 | [diff] [blame] | 20 | #include <plat/arm/common/plat_arm.h> |
| 21 | #include <plat/common/platform.h> |
| 22 | |
Manish V Badarkhe | b20ca82 | 2023-12-06 09:16:08 +0000 | [diff] [blame] | 23 | #ifdef PLATFORM_TEST_TFM_TESTSUITE |
Manish V Badarkhe | b241efb | 2023-10-18 14:11:45 +0100 | [diff] [blame] | 24 | #include <psa/crypto_platform.h> |
| 25 | #include <psa/crypto_types.h> |
| 26 | #include <psa/crypto_values.h> |
Manish V Badarkhe | b20ca82 | 2023-12-06 09:16:08 +0000 | [diff] [blame] | 27 | #endif /* PLATFORM_TEST_TFM_TESTSUITE */ |
Manish V Badarkhe | b241efb | 2023-10-18 14:11:45 +0100 | [diff] [blame] | 28 | |
| 29 | #ifdef PLATFORM_TEST_TFM_TESTSUITE |
| 30 | /* |
| 31 | * We pretend using an external RNG (through MBEDTLS_PSA_CRYPTO_EXTERNAL_RNG |
| 32 | * mbedTLS config option) so we need to provide an implementation of |
| 33 | * mbedtls_psa_external_get_random(). Provide a fake one, since we do not |
| 34 | * actually use any of external RNG and this function is only needed during |
| 35 | * the execution of TF-M testsuite during exporting the public part of the |
| 36 | * delegated attestation key. |
| 37 | */ |
| 38 | psa_status_t mbedtls_psa_external_get_random( |
| 39 | mbedtls_psa_external_random_context_t *context, |
| 40 | uint8_t *output, size_t output_size, |
| 41 | size_t *output_length) |
| 42 | { |
| 43 | for (size_t i = 0U; i < output_size; i++) { |
| 44 | output[i] = (uint8_t)(read_cntpct_el0() & 0xFFU); |
| 45 | } |
| 46 | |
| 47 | *output_length = output_size; |
| 48 | |
| 49 | return PSA_SUCCESS; |
| 50 | } |
| 51 | #endif /* PLATFORM_TEST_TFM_TESTSUITE */ |
| 52 | |
Leo Yan | 7d51bf8 | 2024-05-22 15:42:46 +0100 | [diff] [blame] | 53 | #if TARGET_PLATFORM <= 2 |
Leo Yan | 8dd7d43 | 2024-05-22 15:41:37 +0100 | [diff] [blame] | 54 | static scmi_channel_plat_info_t tc_scmi_plat_info = { |
| 55 | .scmi_mbx_mem = CSS_SCMI_PAYLOAD_BASE, |
| 56 | .db_reg_addr = PLAT_CSS_MHU_BASE + SENDER_REG_SET(0), |
| 57 | .db_preserve_mask = 0xfffffffe, |
| 58 | .db_modify_mask = 0x1, |
| 59 | .ring_doorbell = &mhuv2_ring_doorbell, |
Usama Arif | bec5afd | 2020-04-17 16:13:39 +0100 | [diff] [blame] | 60 | }; |
Leo Yan | 7d51bf8 | 2024-05-22 15:42:46 +0100 | [diff] [blame] | 61 | #elif TARGET_PLATFORM == 3 |
| 62 | static scmi_channel_plat_info_t tc_scmi_plat_info = { |
| 63 | .scmi_mbx_mem = CSS_SCMI_PAYLOAD_BASE, |
| 64 | .db_reg_addr = PLAT_CSS_MHU_BASE + MHU_V3_SENDER_REG_SET(0), |
| 65 | .db_preserve_mask = 0xfffffffe, |
| 66 | .db_modify_mask = 0x1, |
| 67 | .ring_doorbell = &mhu_ring_doorbell, |
| 68 | }; |
Jagdish Gediya | 5ae7c38 | 2023-12-18 05:56:00 +0000 | [diff] [blame] | 69 | |
| 70 | static void enable_ns_mcn_pmu(void) |
| 71 | { |
| 72 | /* |
| 73 | * Enable non-secure access to MCN PMU registers |
| 74 | */ |
| 75 | for (int i = 0; i < MCN_INSTANCES; i++) { |
| 76 | uintptr_t mcn_scr = MCN_MICROARCH_BASE_ADDR + MCN_SCR_OFFSET + |
| 77 | (i * MCN_ADDRESS_SPACE_SIZE); |
| 78 | mmio_setbits_32(mcn_scr, 1 << MCN_SCR_PMU_BIT); |
| 79 | } |
| 80 | } |
Jagdish Gediya | ebaa6bf | 2024-01-11 10:49:46 +0000 | [diff] [blame] | 81 | |
| 82 | static void set_mcn_slc_alloc_mode(void) |
| 83 | { |
| 84 | /* |
| 85 | * SLC WRALLOCMODE and RDALLOCMODE are configured by default to |
| 86 | * 0b01 (always alloc), configure both to 0b10 (use bus signal |
| 87 | * attribute from interface). |
| 88 | */ |
| 89 | for (int i = 0; i < MCN_INSTANCES; i++) { |
| 90 | uintptr_t slccfg_ctl_ns = MCN_MPAM_NS_BASE_ADDR + |
| 91 | (i * MCN_ADDRESS_SPACE_SIZE) + MPAM_SLCCFG_CTL_OFFSET; |
| 92 | uintptr_t slccfg_ctl_s = MCN_MPAM_S_BASE_ADDR + |
| 93 | (i * MCN_ADDRESS_SPACE_SIZE) + MPAM_SLCCFG_CTL_OFFSET; |
| 94 | |
| 95 | mmio_clrsetbits_32(slccfg_ctl_ns, |
| 96 | (SLC_RDALLOCMODE_MASK | SLC_WRALLOCMODE_MASK), |
| 97 | (SLC_ALLOC_BUS_SIGNAL_ATTR << SLC_RDALLOCMODE_SHIFT) | |
| 98 | (SLC_ALLOC_BUS_SIGNAL_ATTR << SLC_WRALLOCMODE_SHIFT)); |
| 99 | mmio_clrsetbits_32(slccfg_ctl_s, |
| 100 | (SLC_RDALLOCMODE_MASK | SLC_WRALLOCMODE_MASK), |
| 101 | (SLC_ALLOC_BUS_SIGNAL_ATTR << SLC_RDALLOCMODE_SHIFT) | |
| 102 | (SLC_ALLOC_BUS_SIGNAL_ATTR << SLC_WRALLOCMODE_SHIFT)); |
| 103 | } |
| 104 | } |
Leo Yan | 7d51bf8 | 2024-05-22 15:42:46 +0100 | [diff] [blame] | 105 | #endif |
Usama Arif | bec5afd | 2020-04-17 16:13:39 +0100 | [diff] [blame] | 106 | |
| 107 | void bl31_platform_setup(void) |
| 108 | { |
Usama Arif | f151362 | 2021-04-09 17:07:41 +0100 | [diff] [blame] | 109 | tc_bl31_common_platform_setup(); |
Jagdish Gediya | 5ae7c38 | 2023-12-18 05:56:00 +0000 | [diff] [blame] | 110 | #if TARGET_PLATFORM == 3 |
| 111 | enable_ns_mcn_pmu(); |
Jagdish Gediya | ebaa6bf | 2024-01-11 10:49:46 +0000 | [diff] [blame] | 112 | set_mcn_slc_alloc_mode(); |
Jagdish Gediya | 5ae7c38 | 2023-12-18 05:56:00 +0000 | [diff] [blame] | 113 | #endif |
Usama Arif | bec5afd | 2020-04-17 16:13:39 +0100 | [diff] [blame] | 114 | } |
| 115 | |
Leo Yan | 8dd7d43 | 2024-05-22 15:41:37 +0100 | [diff] [blame] | 116 | scmi_channel_plat_info_t *plat_css_get_scmi_info(unsigned int channel_id __unused) |
Usama Arif | bec5afd | 2020-04-17 16:13:39 +0100 | [diff] [blame] | 117 | { |
| 118 | |
Leo Yan | 8dd7d43 | 2024-05-22 15:41:37 +0100 | [diff] [blame] | 119 | return &tc_scmi_plat_info; |
Usama Arif | bec5afd | 2020-04-17 16:13:39 +0100 | [diff] [blame] | 120 | |
| 121 | } |
| 122 | |
| 123 | void bl31_early_platform_setup2(u_register_t arg0, u_register_t arg1, |
| 124 | u_register_t arg2, u_register_t arg3) |
| 125 | { |
| 126 | arm_bl31_early_platform_setup((void *)arg0, arg1, arg2, (void *)arg3); |
Usama Arif | a49bd49 | 2021-08-17 17:57:10 +0100 | [diff] [blame] | 127 | |
| 128 | /* Fill the properties struct with the info from the config dtb */ |
| 129 | fconf_populate("FW_CONFIG", arg1); |
Usama Arif | bec5afd | 2020-04-17 16:13:39 +0100 | [diff] [blame] | 130 | } |
| 131 | |
laurenw-arm | 4c4181c | 2023-05-04 14:55:37 -0500 | [diff] [blame] | 132 | #ifdef PLATFORM_TESTS |
Sandrine Bailleux | 27fba52 | 2023-05-05 15:44:26 +0200 | [diff] [blame] | 133 | static __dead2 void tc_run_platform_tests(void) |
Usama Arif | bec5afd | 2020-04-17 16:13:39 +0100 | [diff] [blame] | 134 | { |
Sandrine Bailleux | f0f42fb | 2023-05-05 15:59:00 +0200 | [diff] [blame] | 135 | int tests_failed; |
| 136 | |
| 137 | printf("\nStarting platform tests...\n"); |
Mate Toth-Pal | 14ba4af | 2022-10-21 14:24:49 +0200 | [diff] [blame] | 138 | |
Tamas Ban | 15b79da | 2023-04-21 09:31:48 +0200 | [diff] [blame] | 139 | #ifdef PLATFORM_TEST_NV_COUNTERS |
Sandrine Bailleux | f0f42fb | 2023-05-05 15:59:00 +0200 | [diff] [blame] | 140 | tests_failed = nv_counter_test(); |
laurenw-arm | 116f10c | 2023-06-13 16:43:39 -0500 | [diff] [blame] | 141 | #elif PLATFORM_TEST_ROTPK |
| 142 | tests_failed = rotpk_test(); |
Tamas Ban | 15b79da | 2023-04-21 09:31:48 +0200 | [diff] [blame] | 143 | #elif PLATFORM_TEST_TFM_TESTSUITE |
Sandrine Bailleux | f0f42fb | 2023-05-05 15:59:00 +0200 | [diff] [blame] | 144 | tests_failed = run_platform_tests(); |
laurenw-arm | 2ce1e35 | 2023-02-07 13:40:05 -0600 | [diff] [blame] | 145 | #endif |
Sandrine Bailleux | f0f42fb | 2023-05-05 15:59:00 +0200 | [diff] [blame] | 146 | |
| 147 | printf("Platform tests %s.\n", |
| 148 | (tests_failed != 0) ? "failed" : "succeeded"); |
| 149 | |
Sandrine Bailleux | e1da6c4 | 2023-05-05 13:59:07 +0200 | [diff] [blame] | 150 | /* Suspend booting, no matter the tests outcome. */ |
Sandrine Bailleux | f0f42fb | 2023-05-05 15:59:00 +0200 | [diff] [blame] | 151 | printf("Suspend booting...\n"); |
Mate Toth-Pal | 14ba4af | 2022-10-21 14:24:49 +0200 | [diff] [blame] | 152 | plat_error_handler(-1); |
Sandrine Bailleux | 27fba52 | 2023-05-05 15:44:26 +0200 | [diff] [blame] | 153 | } |
| 154 | #endif |
| 155 | |
| 156 | void tc_bl31_common_platform_setup(void) |
| 157 | { |
| 158 | arm_bl31_platform_setup(); |
| 159 | |
| 160 | #ifdef PLATFORM_TESTS |
| 161 | tc_run_platform_tests(); |
laurenw-arm | 481ac28 | 2023-05-03 12:48:55 -0500 | [diff] [blame] | 162 | #endif |
Usama Arif | bec5afd | 2020-04-17 16:13:39 +0100 | [diff] [blame] | 163 | } |
| 164 | |
| 165 | const plat_psci_ops_t *plat_arm_psci_override_pm_ops(plat_psci_ops_t *ops) |
| 166 | { |
| 167 | return css_scmi_override_pm_ops(ops); |
| 168 | } |
Usama Arif | a49bd49 | 2021-08-17 17:57:10 +0100 | [diff] [blame] | 169 | |
| 170 | void __init bl31_plat_arch_setup(void) |
| 171 | { |
| 172 | arm_bl31_plat_arch_setup(); |
| 173 | |
| 174 | /* HW_CONFIG was also loaded by BL2 */ |
| 175 | const struct dyn_cfg_dtb_info_t *hw_config_info; |
| 176 | |
| 177 | hw_config_info = FCONF_GET_PROPERTY(dyn_cfg, dtb, HW_CONFIG_ID); |
| 178 | assert(hw_config_info != NULL); |
| 179 | |
| 180 | fconf_populate("HW_CONFIG", hw_config_info->config_addr); |
| 181 | } |
Madhukar Pappireddy | e108df2 | 2023-03-22 15:40:40 -0500 | [diff] [blame] | 182 | |
Govindraj Raja | 436ea5e | 2023-05-10 14:50:36 -0500 | [diff] [blame] | 183 | #if defined(SPD_spmd) && (SPMC_AT_EL3 == 0) |
Madhukar Pappireddy | e108df2 | 2023-03-22 15:40:40 -0500 | [diff] [blame] | 184 | void tc_bl31_plat_runtime_setup(void) |
| 185 | { |
Madhukar Pappireddy | e108df2 | 2023-03-22 15:40:40 -0500 | [diff] [blame] | 186 | /* Start secure watchdog timer. */ |
| 187 | plat_arm_secure_wdt_start(); |
Salman Nabi | 442b075 | 2024-02-19 17:03:44 +0000 | [diff] [blame] | 188 | |
| 189 | arm_bl31_plat_runtime_setup(); |
Madhukar Pappireddy | e108df2 | 2023-03-22 15:40:40 -0500 | [diff] [blame] | 190 | } |
| 191 | |
| 192 | void bl31_plat_runtime_setup(void) |
| 193 | { |
| 194 | tc_bl31_plat_runtime_setup(); |
| 195 | } |
| 196 | |
| 197 | /* |
| 198 | * Platform handler for Group0 secure interrupt. |
| 199 | */ |
| 200 | int plat_spmd_handle_group0_interrupt(uint32_t intid) |
| 201 | { |
| 202 | /* Trusted Watchdog timer is the only source of Group0 interrupt now. */ |
| 203 | if (intid == SBSA_SECURE_WDOG_INTID) { |
Madhukar Pappireddy | e108df2 | 2023-03-22 15:40:40 -0500 | [diff] [blame] | 204 | /* Refresh the timer. */ |
| 205 | plat_arm_secure_wdt_refresh(); |
| 206 | |
Madhukar Pappireddy | e108df2 | 2023-03-22 15:40:40 -0500 | [diff] [blame] | 207 | return 0; |
| 208 | } |
| 209 | |
| 210 | return -1; |
| 211 | } |
Govindraj Raja | 436ea5e | 2023-05-10 14:50:36 -0500 | [diff] [blame] | 212 | #endif /*defined(SPD_spmd) && (SPMC_AT_EL3 == 0)*/ |