blob: ec184641ec6e82e8715a5e01cde62abca66aaf9b [file] [log] [blame]
Achin Gupta4f6ad662013-10-25 09:08:21 +01001/*
Soby Mathewc704cbc2014-08-14 11:33:56 +01002 * Copyright (c) 2014, ARM Limited and Contributors. All rights reserved.
Achin Gupta4f6ad662013-10-25 09:08:21 +01003 *
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 */
Achin Gupta4f6ad662013-10-25 09:08:21 +010030#include <arch.h>
Andrew Thoelke38bde412014-03-18 13:46:55 +000031#include <asm_macros.S>
Soby Mathew8e2f2872014-08-14 12:49:05 +010032#include <cortex_a53.h>
Soby Mathewc704cbc2014-08-14 11:33:56 +010033#include <cpu_macros.S>
34#include <plat_macros.S>
Achin Gupta4f6ad662013-10-25 09:08:21 +010035
Soby Mathew8e2f2872014-08-14 12:49:05 +010036 /* ---------------------------------------------
37 * Disable L1 data cache and unified L2 cache
38 * ---------------------------------------------
39 */
40func cortex_a53_disable_dcache
41 mrs x1, sctlr_el3
42 bic x1, x1, #SCTLR_C_BIT
43 msr sctlr_el3, x1
44 isb
45 ret
46
47 /* ---------------------------------------------
48 * Disable intra-cluster coherency
49 * ---------------------------------------------
50 */
51func cortex_a53_disable_smp
52 mrs x0, CPUECTLR_EL1
53 bic x0, x0, #CPUECTLR_SMP_BIT
54 msr CPUECTLR_EL1, x0
55 isb
56 dsb sy
57 ret
Achin Gupta4f6ad662013-10-25 09:08:21 +010058
Soby Mathewc704cbc2014-08-14 11:33:56 +010059func cortex_a53_reset_func
Achin Gupta4f6ad662013-10-25 09:08:21 +010060 /* ---------------------------------------------
Soby Mathewc704cbc2014-08-14 11:33:56 +010061 * As a bare minimum enable the SMP bit.
Achin Gupta4f6ad662013-10-25 09:08:21 +010062 * ---------------------------------------------
63 */
Andrew Thoelkef977ed82014-04-28 12:32:02 +010064 mrs x0, CPUECTLR_EL1
Achin Gupta4f6ad662013-10-25 09:08:21 +010065 orr x0, x0, #CPUECTLR_SMP_BIT
Andrew Thoelkef977ed82014-04-28 12:32:02 +010066 msr CPUECTLR_EL1, x0
Andrew Thoelke42e75a72014-04-28 12:28:39 +010067 isb
Andrew Thoelkef977ed82014-04-28 12:32:02 +010068 ret
Soby Mathewc704cbc2014-08-14 11:33:56 +010069
Soby Mathew8e2f2872014-08-14 12:49:05 +010070func cortex_a53_core_pwr_dwn
71 mov x18, x30
72
73 /* ---------------------------------------------
74 * Turn off caches.
75 * ---------------------------------------------
76 */
77 bl cortex_a53_disable_dcache
78
79 /* ---------------------------------------------
Soby Mathew42aa5eb2014-09-02 10:47:33 +010080 * Flush L1 caches.
Soby Mathew8e2f2872014-08-14 12:49:05 +010081 * ---------------------------------------------
82 */
83 mov x0, #DCCISW
Soby Mathew42aa5eb2014-09-02 10:47:33 +010084 bl dcsw_op_level1
Soby Mathew8e2f2872014-08-14 12:49:05 +010085
86 /* ---------------------------------------------
87 * Come out of intra cluster coherency
88 * ---------------------------------------------
89 */
90 mov x30, x18
91 b cortex_a53_disable_smp
92
93func cortex_a53_cluster_pwr_dwn
94 mov x18, x30
95
96 /* ---------------------------------------------
97 * Turn off caches.
98 * ---------------------------------------------
99 */
100 bl cortex_a53_disable_dcache
101
102 /* ---------------------------------------------
Soby Mathew42aa5eb2014-09-02 10:47:33 +0100103 * Flush L1 caches.
104 * ---------------------------------------------
105 */
106 mov x0, #DCCISW
107 bl dcsw_op_level1
108
109 /* ---------------------------------------------
Soby Mathew8e2f2872014-08-14 12:49:05 +0100110 * Disable the optional ACP.
111 * ---------------------------------------------
112 */
113 bl plat_disable_acp
114
115 /* ---------------------------------------------
Soby Mathew42aa5eb2014-09-02 10:47:33 +0100116 * Flush L2 caches.
Soby Mathew8e2f2872014-08-14 12:49:05 +0100117 * ---------------------------------------------
118 */
119 mov x0, #DCCISW
Soby Mathew42aa5eb2014-09-02 10:47:33 +0100120 bl dcsw_op_level2
Soby Mathew8e2f2872014-08-14 12:49:05 +0100121
122 /* ---------------------------------------------
123 * Come out of intra cluster coherency
124 * ---------------------------------------------
125 */
126 mov x30, x18
127 b cortex_a53_disable_smp
128
Soby Mathew38b4bc92014-08-14 13:36:41 +0100129 /* ---------------------------------------------
130 * This function provides cortex_a53 specific
131 * register information for crash reporting.
132 * It needs to return with x6 pointing to
133 * a list of register names in ascii and
134 * x8 - x15 having values of registers to be
135 * reported.
136 * ---------------------------------------------
137 */
138.section .rodata.cortex_a53_regs, "aS"
139cortex_a53_regs: /* The ascii list of register names to be reported */
140 .asciz "cpuectlr_el1", ""
141
142func cortex_a53_cpu_reg_dump
143 adr x6, cortex_a53_regs
144 mrs x8, CPUECTLR_EL1
145 ret
146
Soby Mathewc704cbc2014-08-14 11:33:56 +0100147declare_cpu_ops cortex_a53, CORTEX_A53_MIDR