|
1 | 1 | /*
|
2 |
| - * Copyright (c) 2016-2024, ARM Limited and Contributors. All rights reserved. |
| 2 | + * Copyright (c) 2016-2025, Arm Limited and Contributors. All rights reserved. |
3 | 3 | *
|
4 | 4 | * SPDX-License-Identifier: BSD-3-Clause
|
5 | 5 | */
|
@@ -61,8 +61,8 @@ entry_point_info_t *sp_min_plat_get_bl33_ep_info(void)
|
61 | 61 | /*******************************************************************************
|
62 | 62 | * Utility function to perform early platform setup.
|
63 | 63 | ******************************************************************************/
|
64 |
| -void arm_sp_min_early_platform_setup(void *from_bl2, uintptr_t tos_fw_config, |
65 |
| - uintptr_t hw_config, void *plat_params_from_bl2) |
| 64 | +void arm_sp_min_early_platform_setup(u_register_t arg0, u_register_t arg1, |
| 65 | + u_register_t arg2, u_register_t arg3) |
66 | 66 | {
|
67 | 67 | /* Initialize the console to provide early debug support */
|
68 | 68 | arm_console_boot_init();
|
@@ -99,7 +99,7 @@ void arm_sp_min_early_platform_setup(void *from_bl2, uintptr_t tos_fw_config,
|
99 | 99 | /*
|
100 | 100 | * Check params passed from BL2 should not be NULL,
|
101 | 101 | */
|
102 |
| - bl_params_t *params_from_bl2 = (bl_params_t *)from_bl2; |
| 102 | + bl_params_t *params_from_bl2 = (bl_params_t *)arg0; |
103 | 103 | assert(params_from_bl2 != NULL);
|
104 | 104 | assert(params_from_bl2->h.type == PARAM_BL_PARAMS);
|
105 | 105 | assert(params_from_bl2->h.version >= VERSION_2);
|
@@ -132,7 +132,7 @@ void arm_sp_min_early_platform_setup(void *from_bl2, uintptr_t tos_fw_config,
|
132 | 132 | void plat_arm_sp_min_early_platform_setup(u_register_t arg0, u_register_t arg1,
|
133 | 133 | u_register_t arg2, u_register_t arg3)
|
134 | 134 | {
|
135 |
| - arm_sp_min_early_platform_setup((void *)arg0, arg1, arg2, (void *)arg3); |
| 135 | + arm_sp_min_early_platform_setup(arg0, arg1, arg2, arg3); |
136 | 136 |
|
137 | 137 | /*
|
138 | 138 | * Initialize Interconnect for this cluster during cold boot.
|
|
0 commit comments