blob: c4c0dec3cbef1485092f321493bc90bb5d820c20 [file] [log] [blame]
Tony Xief6118cc2016-01-15 17:17:32 +08001/*
2 * Copyright (c) 2013-2016, ARM Limited and Contributors. All rights reserved.
3 *
dp-armfa3cf0b2017-05-03 09:38:09 +01004 * SPDX-License-Identifier: BSD-3-Clause
Tony Xief6118cc2016-01-15 17:17:32 +08005 */
6
Antonio Nino Diaze0f90632018-12-14 00:18:21 +00007#include <platform_def.h>
8
Tony Xief6118cc2016-01-15 17:17:32 +08009#include <arch.h>
10#include <asm_macros.S>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000011#include <common/bl_common.h>
Tony Xief6118cc2016-01-15 17:17:32 +080012#include <cortex_a53.h>
13#include <cortex_a72.h>
14#include <plat_private.h>
Tony Xie42e113e2016-07-16 11:16:51 +080015#include <plat_pmu_macros.S>
Tony Xief6118cc2016-01-15 17:17:32 +080016
17 .globl cpuson_entry_point
18 .globl cpuson_flags
19 .globl platform_cpu_warmboot
20 .globl plat_secondary_cold_boot_setup
21 .globl plat_report_exception
Daniel Boulbyee3e4b02018-08-14 17:10:06 +010022 .globl plat_is_my_cpu_primary
Tony Xief6118cc2016-01-15 17:17:32 +080023 .globl plat_my_core_pos
24 .globl plat_reset_handler
Julius Werner624b5572017-06-19 17:05:30 -070025 .globl plat_panic_handler
Tony Xief6118cc2016-01-15 17:17:32 +080026
Tony Xief6118cc2016-01-15 17:17:32 +080027 /*
28 * void plat_reset_handler(void);
29 *
30 * Determine the SOC type and call the appropriate reset
31 * handler.
32 *
33 */
34func plat_reset_handler
Tony Xie42e113e2016-07-16 11:16:51 +080035 mrs x0, midr_el1
36 ubfx x0, x0, MIDR_PN_SHIFT, #12
37 cmp w0, #((CORTEX_A72_MIDR >> MIDR_PN_SHIFT) & MIDR_PN_MASK)
38 b.eq handler_a72
39 b handler_end
40handler_a72:
41 /*
42 * This handler does the following:
43 * Set the L2 Data RAM latency for Cortex-A72.
44 * Set the L2 Tag RAM latency to for Cortex-A72.
45 */
Varun Wadekar1384a162017-06-05 14:54:46 -070046 mov x0, #((5 << CORTEX_A72_L2CTLR_DATA_RAM_LATENCY_SHIFT) | \
Tony Xie42e113e2016-07-16 11:16:51 +080047 (0x1 << 5))
Varun Wadekar1384a162017-06-05 14:54:46 -070048 msr CORTEX_A72_L2CTLR_EL1, x0
Tony Xie42e113e2016-07-16 11:16:51 +080049 isb
50handler_end:
51 ret
Tony Xief6118cc2016-01-15 17:17:32 +080052endfunc plat_reset_handler
53
54func plat_my_core_pos
55 mrs x0, mpidr_el1
56 and x1, x0, #MPIDR_CPU_MASK
57 and x0, x0, #MPIDR_CLUSTER_MASK
Tony Xie42e113e2016-07-16 11:16:51 +080058 add x0, x1, x0, LSR #PLAT_RK_CLST_TO_CPUID_SHIFT
Tony Xief6118cc2016-01-15 17:17:32 +080059 ret
60endfunc plat_my_core_pos
61
62 /* --------------------------------------------------------------------
63 * void plat_secondary_cold_boot_setup (void);
64 *
65 * This function performs any platform specific actions
66 * needed for a secondary cpu after a cold reset e.g
67 * mark the cpu's presence, mechanism to place it in a
68 * holding pen etc.
69 * --------------------------------------------------------------------
70 */
71func plat_secondary_cold_boot_setup
72 /* rk3368 does not do cold boot for secondary CPU */
73cb_panic:
74 b cb_panic
75endfunc plat_secondary_cold_boot_setup
76
Daniel Boulbyee3e4b02018-08-14 17:10:06 +010077func plat_is_my_cpu_primary
78 mrs x0, mpidr_el1
Tony Xief6118cc2016-01-15 17:17:32 +080079 and x0, x0, #(MPIDR_CLUSTER_MASK | MPIDR_CPU_MASK)
80 cmp x0, #PLAT_RK_PRIMARY_CPU
81 cset x0, eq
82 ret
Daniel Boulbyee3e4b02018-08-14 17:10:06 +010083endfunc plat_is_my_cpu_primary
Tony Xief6118cc2016-01-15 17:17:32 +080084
85 /* --------------------------------------------------------------------
Julius Werner624b5572017-06-19 17:05:30 -070086 * void plat_panic_handler(void)
87 * Call system reset function on panic. Set up an emergency stack so we
88 * can run C functions (it only needs to last for a few calls until we
89 * reboot anyway).
90 * --------------------------------------------------------------------
91 */
92func plat_panic_handler
93 msr spsel, #0
94 bl plat_set_my_stack
95 b rockchip_soc_soft_reset
96endfunc plat_panic_handler
97
98 /* --------------------------------------------------------------------
Tony Xief6118cc2016-01-15 17:17:32 +080099 * void platform_cpu_warmboot (void);
100 * cpus online or resume enterpoint
101 * --------------------------------------------------------------------
102 */
Julius Wernerb4c75e92017-08-01 15:16:36 -0700103func platform_cpu_warmboot _align=16
Tony Xief6118cc2016-01-15 17:17:32 +0800104 mrs x0, MPIDR_EL1
Tony Xie42e113e2016-07-16 11:16:51 +0800105 and x19, x0, #MPIDR_CPU_MASK
106 and x20, x0, #MPIDR_CLUSTER_MASK
107 mov x0, x20
108 func_rockchip_clst_warmboot
Tony Xief6118cc2016-01-15 17:17:32 +0800109 /* --------------------------------------------------------------------
110 * big cluster id is 1
111 * big cores id is from 0-3, little cores id 4-7
112 * --------------------------------------------------------------------
113 */
Tony Xie42e113e2016-07-16 11:16:51 +0800114 add x21, x19, x20, lsr #PLAT_RK_CLST_TO_CPUID_SHIFT
Tony Xief6118cc2016-01-15 17:17:32 +0800115 /* --------------------------------------------------------------------
116 * get per cpuup flag
117 * --------------------------------------------------------------------
118 */
119 adr x4, cpuson_flags
Tony Xie42e113e2016-07-16 11:16:51 +0800120 add x4, x4, x21, lsl #2
Tony Xief6118cc2016-01-15 17:17:32 +0800121 ldr w1, [x4]
122 /* --------------------------------------------------------------------
Tony Xief6118cc2016-01-15 17:17:32 +0800123 * check cpuon reason
124 * --------------------------------------------------------------------
125 */
Tony Xie42e113e2016-07-16 11:16:51 +0800126 cmp w1, PMU_CPU_AUTO_PWRDN
Tony Xief6118cc2016-01-15 17:17:32 +0800127 b.eq boot_entry
Tony Xie42e113e2016-07-16 11:16:51 +0800128 cmp w1, PMU_CPU_HOTPLUG
Tony Xief6118cc2016-01-15 17:17:32 +0800129 b.eq boot_entry
130 /* --------------------------------------------------------------------
131 * If the boot core cpuson_flags or cpuson_entry_point is not
132 * expection. force the core into wfe.
133 * --------------------------------------------------------------------
134 */
135wfe_loop:
136 wfe
137 b wfe_loop
138boot_entry:
Tony Xie42e113e2016-07-16 11:16:51 +0800139 str wzr, [x4]
Caesar Wang59e41b52016-04-10 14:11:07 +0800140 /* --------------------------------------------------------------------
141 * get per cpuup boot addr
142 * --------------------------------------------------------------------
143 */
144 adr x5, cpuson_entry_point
Tony Xie42e113e2016-07-16 11:16:51 +0800145 ldr x2, [x5, x21, lsl #3]
Tony Xief6118cc2016-01-15 17:17:32 +0800146 br x2
147endfunc platform_cpu_warmboot
148
149 /* --------------------------------------------------------------------
150 * Per-CPU Secure entry point - resume or power up
151 * --------------------------------------------------------------------
152 */
Chris Kay33bfc5e2023-02-14 11:30:04 +0000153 .section .tzfw_coherent_mem, "a"
Tony Xief6118cc2016-01-15 17:17:32 +0800154 .align 3
155cpuson_entry_point:
156 .rept PLATFORM_CORE_COUNT
157 .quad 0
158 .endr
159cpuson_flags:
160 .rept PLATFORM_CORE_COUNT
Caesar Wang59e41b52016-04-10 14:11:07 +0800161 .word 0
Tony Xief6118cc2016-01-15 17:17:32 +0800162 .endr
Tony Xie42e113e2016-07-16 11:16:51 +0800163rockchip_clst_warmboot_data