blob: 3d0181a8edaf8708da4557086432be3817f5f733 [file] [log] [blame]
Achin Gupta4f6ad662013-10-25 09:08:21 +01001/*
Dan Handleye83b0ca2014-01-14 18:17:09 +00002 * Copyright (c) 2013-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 */
30
31#include <arch.h>
Achin Gupta4f6ad662013-10-25 09:08:21 +010032#include <asm_macros.S>
Jeenu Viswambharancaa84932014-02-06 10:36:15 +000033#include <cm_macros.S>
Dan Handley97043ac2014-04-09 13:14:54 +010034#include <psci.h>
Achin Gupta4f6ad662013-10-25 09:08:21 +010035
36 .globl psci_aff_on_finish_entry
37 .globl psci_aff_suspend_finish_entry
38 .globl __psci_cpu_off
39 .globl __psci_cpu_suspend
Achin Gupta317ba092014-05-09 19:32:25 +010040 .globl psci_power_down_wfi
Achin Gupta4f6ad662013-10-25 09:08:21 +010041
Achin Gupta4f6ad662013-10-25 09:08:21 +010042 /* -----------------------------------------------------
43 * This cpu has been physically powered up. Depending
44 * upon whether it was resumed from suspend or simply
45 * turned on, call the common power on finisher with
46 * the handlers (chosen depending upon original state).
47 * For ease, the finisher is called with coherent
48 * stacks. This allows the cluster/cpu finishers to
49 * enter coherency and enable the mmu without running
50 * into issues. We switch back to normal stacks once
51 * all this is done.
52 * -----------------------------------------------------
53 */
Andrew Thoelke0a30cf52014-03-18 13:46:55 +000054func psci_aff_on_finish_entry
Achin Gupta4f6ad662013-10-25 09:08:21 +010055 adr x23, psci_afflvl_on_finishers
56 b psci_aff_common_finish_entry
57
58psci_aff_suspend_finish_entry:
59 adr x23, psci_afflvl_suspend_finishers
60
61psci_aff_common_finish_entry:
62 adr x22, psci_afflvl_power_on_finish
Achin Guptab739f222014-01-18 16:50:09 +000063
64 /* ---------------------------------------------
65 * Exceptions should not occur at this point.
66 * Set VBAR in order to handle and report any
67 * that do occur
68 * ---------------------------------------------
69 */
70 adr x0, early_exceptions
71 msr vbar_el3, x0
72 isb
73
Jeenu Viswambharancaa84932014-02-06 10:36:15 +000074 /* ---------------------------------------------
75 * Use SP_EL0 for the C runtime stack.
76 * ---------------------------------------------
77 */
78 msr spsel, #0
Jeenu Viswambharancaa84932014-02-06 10:36:15 +000079
Andrew Thoelke7935d0a2014-04-28 12:32:02 +010080 mrs x0, mpidr_el1
Achin Gupta4f6ad662013-10-25 09:08:21 +010081 bl platform_set_coherent_stack
82
83 /* ---------------------------------------------
84 * Call the finishers starting from affinity
85 * level 0.
86 * ---------------------------------------------
87 */
Andrew Thoelke7935d0a2014-04-28 12:32:02 +010088 mrs x0, mpidr_el1
Achin Guptaa45e3972013-12-05 15:10:48 +000089 bl get_power_on_target_afflvl
90 cmp x0, xzr
91 b.lt _panic
Achin Gupta4f6ad662013-10-25 09:08:21 +010092 mov x3, x23
93 mov x2, x0
Achin Gupta4f6ad662013-10-25 09:08:21 +010094 mov x1, #MPIDR_AFFLVL0
Andrew Thoelke7935d0a2014-04-28 12:32:02 +010095 mrs x0, mpidr_el1
Achin Gupta4f6ad662013-10-25 09:08:21 +010096 blr x22
Achin Gupta4f6ad662013-10-25 09:08:21 +010097
98 /* --------------------------------------------
99 * Give ourselves a stack allocated in Normal
100 * -IS-WBWA memory
101 * --------------------------------------------
102 */
Andrew Thoelke7935d0a2014-04-28 12:32:02 +0100103 mrs x0, mpidr_el1
Achin Gupta4f6ad662013-10-25 09:08:21 +0100104 bl platform_set_stack
105
Jeenu Viswambharancaa84932014-02-06 10:36:15 +0000106 b el3_exit
Achin Gupta4f6ad662013-10-25 09:08:21 +0100107_panic:
108 b _panic
109
110 /* -----------------------------------------------------
111 * The following two stubs give the calling cpu a
112 * coherent stack to allow flushing of caches without
113 * suffering from stack coherency issues
114 * -----------------------------------------------------
115 */
Andrew Thoelke0a30cf52014-03-18 13:46:55 +0000116func __psci_cpu_off
Achin Gupta4f6ad662013-10-25 09:08:21 +0100117 func_prologue
118 sub sp, sp, #0x10
119 stp x19, x20, [sp, #0]
120 mov x19, sp
Andrew Thoelke7935d0a2014-04-28 12:32:02 +0100121 mrs x0, mpidr_el1
Achin Gupta4f6ad662013-10-25 09:08:21 +0100122 bl platform_set_coherent_stack
123 bl psci_cpu_off
Achin Gupta4f6ad662013-10-25 09:08:21 +0100124 mov sp, x19
125 ldp x19, x20, [sp,#0]
126 add sp, sp, #0x10
127 func_epilogue
128 ret
129
Andrew Thoelke0a30cf52014-03-18 13:46:55 +0000130func __psci_cpu_suspend
Achin Gupta4f6ad662013-10-25 09:08:21 +0100131 func_prologue
132 sub sp, sp, #0x20
133 stp x19, x20, [sp, #0]
134 stp x21, x22, [sp, #0x10]
135 mov x19, sp
136 mov x20, x0
137 mov x21, x1
138 mov x22, x2
Andrew Thoelke7935d0a2014-04-28 12:32:02 +0100139 mrs x0, mpidr_el1
Achin Gupta4f6ad662013-10-25 09:08:21 +0100140 bl platform_set_coherent_stack
141 mov x0, x20
142 mov x1, x21
143 mov x2, x22
144 bl psci_cpu_suspend
Achin Gupta4f6ad662013-10-25 09:08:21 +0100145 mov sp, x19
146 ldp x21, x22, [sp,#0x10]
147 ldp x19, x20, [sp,#0]
148 add sp, sp, #0x20
149 func_epilogue
150 ret
151
Achin Gupta317ba092014-05-09 19:32:25 +0100152 /* --------------------------------------------
153 * This function is called to indicate to the
154 * power controller that it is safe to power
155 * down this cpu. It should not exit the wfi
156 * and will be released from reset upon power
157 * up. 'wfi_spill' is used to catch erroneous
158 * exits from wfi.
159 * --------------------------------------------
160 */
161func psci_power_down_wfi
Andrew Thoelke8cec5982014-04-28 12:28:39 +0100162 dsb sy // ensure write buffer empty
Achin Gupta4f6ad662013-10-25 09:08:21 +0100163 wfi
164wfi_spill:
165 b wfi_spill
166