Siva Durga Prasad Paladugu | fe4af66 | 2018-09-25 18:44:58 +0530 | [diff] [blame] | 1 | /* |
Michal Simek | 2a47faa | 2023-04-14 08:43:51 +0200 | [diff] [blame] | 2 | * Copyright (c) 2018, Arm Limited and Contributors. All rights reserved. |
Siva Durga Prasad Paladugu | fe4af66 | 2018-09-25 18:44:58 +0530 | [diff] [blame] | 3 | * |
| 4 | * SPDX-License-Identifier: BSD-3-Clause |
| 5 | */ |
| 6 | |
Prasad Kummari | 536e110 | 2023-06-22 10:50:02 +0530 | [diff] [blame] | 7 | |
| 8 | #include <arch.h> |
Prasad Kummari | d7166e8 | 2023-07-19 11:02:31 +0530 | [diff] [blame] | 9 | #include <asm_macros.S> |
Antonio Nino Diaz | e0f9063 | 2018-12-14 00:18:21 +0000 | [diff] [blame] | 10 | #include <drivers/arm/gicv3.h> |
Prasad Kummari | 536e110 | 2023-06-22 10:50:02 +0530 | [diff] [blame] | 11 | |
Siva Durga Prasad Paladugu | fe4af66 | 2018-09-25 18:44:58 +0530 | [diff] [blame] | 12 | #include <platform_def.h> |
| 13 | |
| 14 | .globl plat_secondary_cold_boot_setup |
| 15 | .globl plat_is_my_cpu_primary |
| 16 | .globl versal_calc_core_pos |
| 17 | .globl platform_mem_init |
| 18 | .globl plat_my_core_pos |
| 19 | |
| 20 | /* ----------------------------------------------------- |
| 21 | * void plat_secondary_cold_boot_setup (void); |
| 22 | * |
| 23 | * This function performs any platform specific actions |
| 24 | * needed for a secondary cpu after a cold reset e.g |
| 25 | * mark the cpu's presence, mechanism to place it in a |
| 26 | * holding pen etc. |
| 27 | * TODO: Should we read the PSYS register to make sure |
| 28 | * that the request has gone through. |
| 29 | * ----------------------------------------------------- |
| 30 | */ |
| 31 | func plat_secondary_cold_boot_setup |
| 32 | mrs x0, mpidr_el1 |
| 33 | |
| 34 | /* |
| 35 | * There is no sane reason to come out of this wfi. This |
| 36 | * cpu will be powered on and reset by the cpu_on pm api |
| 37 | */ |
| 38 | dsb sy |
| 39 | bl plat_panic_handler |
| 40 | endfunc plat_secondary_cold_boot_setup |
| 41 | |
| 42 | func plat_is_my_cpu_primary |
| 43 | mov x9, x30 |
| 44 | bl plat_my_core_pos |
| 45 | cmp x0, #VERSAL_PRIMARY_CPU |
| 46 | cset x0, eq |
| 47 | ret x9 |
| 48 | endfunc plat_is_my_cpu_primary |
| 49 | |
| 50 | /* ----------------------------------------------------- |
| 51 | * unsigned int plat_my_core_pos(void) |
| 52 | * This function uses the versal_calc_core_pos() |
| 53 | * definition to get the index of the calling CPU. |
| 54 | * ----------------------------------------------------- |
| 55 | */ |
| 56 | func plat_my_core_pos |
| 57 | mrs x0, mpidr_el1 |
| 58 | b versal_calc_core_pos |
| 59 | endfunc plat_my_core_pos |
| 60 | |
| 61 | func versal_calc_core_pos |
| 62 | and x1, x0, #MPIDR_CPU_MASK |
| 63 | and x0, x0, #MPIDR_CLUSTER_MASK |
| 64 | add x0, x1, x0, LSR #6 |
| 65 | ret |
| 66 | endfunc versal_calc_core_pos |
| 67 | |
| 68 | /* --------------------------------------------------------------------- |
| 69 | * We don't need to carry out any memory initialization on VERSAL |
| 70 | * platform. The Secure RAM is accessible straight away. |
| 71 | * --------------------------------------------------------------------- |
| 72 | */ |
| 73 | func platform_mem_init |
| 74 | ret |
| 75 | endfunc platform_mem_init |