blob: 1d99158e12541d33ccbadff564c9ad3c6e5c219f [file] [log] [blame]
Soby Mathew991d42c2015-06-29 16:30:12 +01001/*
2 * Copyright (c) 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 <assert_macros.S>
34#include <platform_def.h>
35#include <psci.h>
36
37 .globl psci_do_pwrdown_cache_maintenance
38 .globl psci_do_pwrup_cache_maintenance
39
40/* -----------------------------------------------------------------------
41 * void psci_do_pwrdown_cache_maintenance(uint32_t affinity level);
42 *
43 * This function performs cache maintenance if the specified affinity
44 * level is the equal to the level of the highest affinity instance which
45 * will be/is physically powered off. The levels of cache affected are
46 * determined by the affinity level which is passed as the argument i.e.
47 * level 0 results in a flush of the L1 cache. Both the L1 and L2 caches
48 * are flushed for a higher affinity level.
49 *
50 * Additionally, this function also ensures that stack memory is correctly
51 * flushed out to avoid coherency issues due to a change in its memory
52 * attributes after the data cache is disabled.
53 * -----------------------------------------------------------------------
54 */
55func psci_do_pwrdown_cache_maintenance
56 stp x29, x30, [sp,#-16]!
57 stp x19, x20, [sp,#-16]!
58
59 mov x19, x0
60 bl psci_get_max_phys_off_afflvl
61#if ASM_ASSERTION
62 cmp x0, #PSCI_INVALID_DATA
63 ASM_ASSERT(ne)
64#endif
65 cmp x0, x19
66 b.ne 1f
67
68 /* ---------------------------------------------
69 * Determine to how many levels of cache will be
70 * subject to cache maintenance. Affinity level
71 * 0 implies that only the cpu is being powered
72 * down. Only the L1 data cache needs to be
73 * flushed to the PoU in this case. For a higher
74 * affinity level we are assuming that a flush
75 * of L1 data and L2 unified cache is enough.
76 * This information should be provided by the
77 * platform.
78 * ---------------------------------------------
79 */
80 cmp x0, #MPIDR_AFFLVL0
81 b.eq do_core_pwr_dwn
82 bl prepare_cluster_pwr_dwn
83 b do_stack_maintenance
84
85do_core_pwr_dwn:
86 bl prepare_core_pwr_dwn
87
88 /* ---------------------------------------------
89 * Do stack maintenance by flushing the used
90 * stack to the main memory and invalidating the
91 * remainder.
92 * ---------------------------------------------
93 */
94do_stack_maintenance:
95 mrs x0, mpidr_el1
96 bl platform_get_stack
97
98 /* ---------------------------------------------
99 * Calculate and store the size of the used
100 * stack memory in x1.
101 * ---------------------------------------------
102 */
103 mov x19, x0
104 mov x1, sp
105 sub x1, x0, x1
106 mov x0, sp
107 bl flush_dcache_range
108
109 /* ---------------------------------------------
110 * Calculate and store the size of the unused
111 * stack memory in x1. Calculate and store the
112 * stack base address in x0.
113 * ---------------------------------------------
114 */
115 sub x0, x19, #PLATFORM_STACK_SIZE
116 sub x1, sp, x0
117 bl inv_dcache_range
118
1191:
120 ldp x19, x20, [sp], #16
121 ldp x29, x30, [sp], #16
122 ret
123endfunc psci_do_pwrdown_cache_maintenance
124
125
126/* -----------------------------------------------------------------------
127 * void psci_do_pwrup_cache_maintenance(void);
128 *
129 * This function performs cache maintenance after this cpu is powered up.
130 * Currently, this involves managing the used stack memory before turning
131 * on the data cache.
132 * -----------------------------------------------------------------------
133 */
134func psci_do_pwrup_cache_maintenance
135 stp x29, x30, [sp,#-16]!
136
137 /* ---------------------------------------------
138 * Ensure any inflight stack writes have made it
139 * to main memory.
140 * ---------------------------------------------
141 */
142 dmb st
143
144 /* ---------------------------------------------
145 * Calculate and store the size of the used
146 * stack memory in x1. Calculate and store the
147 * stack base address in x0.
148 * ---------------------------------------------
149 */
150 mrs x0, mpidr_el1
151 bl platform_get_stack
152 mov x1, sp
153 sub x1, x0, x1
154 mov x0, sp
155 bl inv_dcache_range
156
157 /* ---------------------------------------------
158 * Enable the data cache.
159 * ---------------------------------------------
160 */
161 mrs x0, sctlr_el3
162 orr x0, x0, #SCTLR_C_BIT
163 msr sctlr_el3, x0
164 isb
165
166 ldp x29, x30, [sp], #16
167 ret
168endfunc psci_do_pwrup_cache_maintenance