blob: 77901f0e90138f47ed9167556937b7446feb8688 [file] [log] [blame]
Sandrine Bailleux798140d2014-07-17 16:06:39 +01001/*
2 * Copyright (c) 2013-2014, ARM Limited and Contributors. All rights reserved.
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are met:
6 *
7 * Redistributions of source code must retain the above copyright notice, this
8 * list of conditions and the following disclaimer.
9 *
10 * Redistributions in binary form must reproduce the above copyright notice,
11 * this list of conditions and the following disclaimer in the documentation
12 * and/or other materials provided with the distribution.
13 *
14 * Neither the name of ARM nor the names of its contributors may be used
15 * to endorse or promote products derived from this software without specific
16 * prior written permission.
17 *
18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
19 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
22 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
23 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
24 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
25 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
26 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
27 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
28 * POSSIBILITY OF SUCH DAMAGE.
29 */
30
31#include <arch.h>
32#include <asm_macros.S>
33#include <bl_common.h>
34#include <cortex_a57.h>
35#include <cpu_macros.S>
36#include <platform_def.h>
37#include "../juno_def.h"
38
39 .globl plat_crash_console_init
40 .globl plat_crash_console_putc
41 .globl plat_report_exception
42 .globl plat_reset_handler
43 .globl platform_get_core_pos
Sandrine Bailleux798140d2014-07-17 16:06:39 +010044 .globl platform_mem_init
45
46 /* Define a crash console for the plaform */
Soby Mathew64a76ed2014-09-23 11:32:48 +010047#define JUNO_CRASH_CONSOLE_BASE PL011_UART3_BASE
Sandrine Bailleux798140d2014-07-17 16:06:39 +010048
49 /* ---------------------------------------------
50 * int plat_crash_console_init(void)
51 * Function to initialize the crash console
52 * without a C Runtime to print crash report.
53 * Clobber list : x0, x1, x2
54 * ---------------------------------------------
55 */
56func plat_crash_console_init
57 mov_imm x0, JUNO_CRASH_CONSOLE_BASE
Soby Mathew64a76ed2014-09-23 11:32:48 +010058 mov_imm x1, PL011_UART3_CLK_IN_HZ
Sandrine Bailleux798140d2014-07-17 16:06:39 +010059 mov_imm x2, PL011_BAUDRATE
60 b console_core_init
61
62 /* ---------------------------------------------
63 * int plat_crash_console_putc(int c)
64 * Function to print a character on the crash
65 * console without a C Runtime.
66 * Clobber list : x1, x2
67 * ---------------------------------------------
68 */
69func plat_crash_console_putc
70 mov_imm x1, JUNO_CRASH_CONSOLE_BASE
71 b console_core_putc
72
73 /* ---------------------------------------------
74 * void plat_report_exception(unsigned int type)
75 * Function to report an unhandled exception
76 * with platform-specific means.
77 * On Juno platform, it updates the LEDs
78 * to indicate where we are
79 * ---------------------------------------------
80 */
81func plat_report_exception
82 mrs x1, CurrentEl
83 lsr x1, x1, #MODE_EL_SHIFT
84 lsl x1, x1, #SYS_LED_EL_SHIFT
85 lsl x0, x0, #SYS_LED_EC_SHIFT
86 mov x2, #(SECURE << SYS_LED_SS_SHIFT)
87 orr x0, x0, x2
88 orr x0, x0, x1
89 mov x1, #VE_SYSREGS_BASE
90 add x1, x1, #V2M_SYS_LED
91 str w0, [x1]
92 ret
93
94 /*
95 * Return 0 to 3 for the A53s and 4 or 5 for the A57s
96 */
97func platform_get_core_pos
98 and x1, x0, #MPIDR_CPU_MASK
99 and x0, x0, #MPIDR_CLUSTER_MASK
100 eor x0, x0, #(1 << MPIDR_AFFINITY_BITS) // swap A53/A57 order
101 add x0, x1, x0, LSR #6
102 ret
103
104
105 /* -----------------------------------------------------
Sandrine Bailleux798140d2014-07-17 16:06:39 +0100106 * void platform_mem_init(void);
107 *
108 * We don't need to carry out any memory initialization
109 * on Juno. The Secure RAM is accessible straight away.
110 * -----------------------------------------------------
111 */
112func platform_mem_init
113 ret
114
Sandrine Bailleuxfd8f8982015-02-04 14:06:10 +0000115 /* --------------------------------------------------------------------
Sandrine Bailleux798140d2014-07-17 16:06:39 +0100116 * void plat_reset_handler(void);
117 *
Sandrine Bailleuxfd8f8982015-02-04 14:06:10 +0000118 * Before adding code in this function, refer to the guidelines in
119 * docs/firmware-design.md to determine whether the code should reside
120 * within the FIRST_RESET_HANDLER_CALL block or not.
Yatharth Kochar36433d12014-11-20 18:09:41 +0000121 *
Sandrine Bailleuxfd8f8982015-02-04 14:06:10 +0000122 * For Juno r0:
123 * - Implement workaround for defect id 831273 by enabling an event
124 * stream every 65536 cycles.
125 * - Set the L2 Data RAM latency to 2 (i.e. 3 cycles) for Cortex-A57
126 * - Set the L2 Tag RAM latency to 2 (i.e. 3 cycles) for Cortex-A57
127 *
128 * For Juno r1:
129 * - Set the L2 Data RAM latency to 2 (i.e. 3 cycles) for Cortex-A57
130 * Note that:
131 * - The default value for the L2 Tag RAM latency for Cortex-A57 is
132 * suitable.
133 * - Defect #831273 doesn't affect Juno r1.
134 *
135 * This code is included only when FIRST_RESET_HANDLER_CALL is defined
136 * since it should be executed only during BL1.
137 * --------------------------------------------------------------------
Sandrine Bailleux798140d2014-07-17 16:06:39 +0100138 */
139func plat_reset_handler
Yatharth Kochar36433d12014-11-20 18:09:41 +0000140#ifdef FIRST_RESET_HANDLER_CALL
Sandrine Bailleuxfd8f8982015-02-04 14:06:10 +0000141 /* --------------------------------------------------------------------
142 * Determine whether this code is running on Juno r0 or Juno r1.
143 * Keep this information in x2.
144 * --------------------------------------------------------------------
145 */
146 /* Read the V2M SYS_ID register */
147 mov_imm x0, (VE_SYSREGS_BASE + V2M_SYS_ID)
148 ldr w1, [x0]
149 /* Extract board revision from the SYS_ID */
150 ubfx x1, x1, #SYS_ID_REV_SHIFT, #4
151 /*
152 * On Juno R0: x2 := REV_JUNO_R0 - 1 = 0
153 * On Juno R1: x2 := REV_JUNO_R1 - 1 = 1
154 */
155 sub x2, x1, #1
156
157 /* --------------------------------------------------------------------
158 * Determine whether this code is executed on a Cortex-A53 or on a
159 * Cortex-A57 core.
160 * --------------------------------------------------------------------
161 */
Sandrine Bailleux798140d2014-07-17 16:06:39 +0100162 mrs x0, midr_el1
163 ubfx x1, x0, MIDR_PN_SHIFT, #12
164 cmp w1, #((CORTEX_A57_MIDR >> MIDR_PN_SHIFT) & MIDR_PN_MASK)
Sandrine Bailleuxfd8f8982015-02-04 14:06:10 +0000165 b.eq A57
Sandrine Bailleux798140d2014-07-17 16:06:39 +0100166
Sandrine Bailleuxfd8f8982015-02-04 14:06:10 +0000167 /* Nothing needs to be done for the Cortex-A53 on Juno r1 */
168 cbz x2, apply_831273
169 ret
170
171A57:
172 /* --------------------------------------------------------------------
173 * Cortex-A57 specific settings
174 * --------------------------------------------------------------------
175 */
176
177 /* Change the L2 Data RAM latency to 3 cycles */
178 mov x0, #L2_DATA_RAM_LATENCY_3_CYCLES
179 cbnz x2, apply_l2_ram_latencies
180 /* On Juno r0, also change the L2 Tag RAM latency to 3 cycles */
181 orr x0, x0, #(L2_TAG_RAM_LATENCY_3_CYCLES << L2CTLR_TAG_RAM_LATENCY_SHIFT)
182apply_l2_ram_latencies:
Sandrine Bailleux798140d2014-07-17 16:06:39 +0100183 msr L2CTLR_EL1, x0
184
Sandrine Bailleuxfd8f8982015-02-04 14:06:10 +0000185 /* Juno r1 doesn't suffer from defect #831273 */
186 cbnz x2, ret
187
188apply_831273:
189 /* --------------------------------------------------------------------
190 * On Juno r0, enable the event stream every 65536 cycles
191 * --------------------------------------------------------------------
Yatharth Kochar36433d12014-11-20 18:09:41 +0000192 */
Sandrine Bailleux798140d2014-07-17 16:06:39 +0100193 mov x0, #(0xf << EVNTI_SHIFT)
194 orr x0, x0, #EVNTEN_BIT
195 msr CNTKCTL_EL1, x0
Sandrine Bailleuxfd8f8982015-02-04 14:06:10 +0000196ret:
Sandrine Bailleux798140d2014-07-17 16:06:39 +0100197 isb
Yatharth Kochar36433d12014-11-20 18:09:41 +0000198#endif /* FIRST_RESET_HANDLER_CALL */
Sandrine Bailleux798140d2014-07-17 16:06:39 +0100199 ret