Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 1 | /* |
Dan Handley | e83b0ca | 2014-01-14 18:17:09 +0000 | [diff] [blame] | 2 | * Copyright (c) 2013-2014, ARM Limited and Contributors. All rights reserved. |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 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 <platform.h> |
| 33 | #include <psci.h> |
| 34 | #include <psci_private.h> |
Achin Gupta | c8afc78 | 2013-11-25 18:45:02 +0000 | [diff] [blame] | 35 | #include <runtime_svc.h> |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 36 | #include <asm_macros.S> |
| 37 | |
| 38 | .globl psci_aff_on_finish_entry |
| 39 | .globl psci_aff_suspend_finish_entry |
| 40 | .globl __psci_cpu_off |
| 41 | .globl __psci_cpu_suspend |
| 42 | |
Sandrine Bailleux | 8d69a03 | 2013-11-27 09:38:52 +0000 | [diff] [blame] | 43 | .section .text, "ax"; .align 3 |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 44 | |
| 45 | /* ----------------------------------------------------- |
| 46 | * This cpu has been physically powered up. Depending |
| 47 | * upon whether it was resumed from suspend or simply |
| 48 | * turned on, call the common power on finisher with |
| 49 | * the handlers (chosen depending upon original state). |
| 50 | * For ease, the finisher is called with coherent |
| 51 | * stacks. This allows the cluster/cpu finishers to |
| 52 | * enter coherency and enable the mmu without running |
| 53 | * into issues. We switch back to normal stacks once |
| 54 | * all this is done. |
| 55 | * ----------------------------------------------------- |
| 56 | */ |
| 57 | psci_aff_on_finish_entry: |
| 58 | adr x23, psci_afflvl_on_finishers |
| 59 | b psci_aff_common_finish_entry |
| 60 | |
| 61 | psci_aff_suspend_finish_entry: |
| 62 | adr x23, psci_afflvl_suspend_finishers |
| 63 | |
| 64 | psci_aff_common_finish_entry: |
| 65 | adr x22, psci_afflvl_power_on_finish |
| 66 | bl read_mpidr |
| 67 | mov x19, x0 |
| 68 | bl platform_set_coherent_stack |
| 69 | |
| 70 | /* --------------------------------------------- |
| 71 | * Call the finishers starting from affinity |
| 72 | * level 0. |
| 73 | * --------------------------------------------- |
| 74 | */ |
| 75 | bl get_max_afflvl |
| 76 | mov x3, x23 |
| 77 | mov x2, x0 |
| 78 | mov x0, x19 |
| 79 | mov x1, #MPIDR_AFFLVL0 |
| 80 | blr x22 |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 81 | |
| 82 | /* -------------------------------------------- |
| 83 | * Give ourselves a stack allocated in Normal |
| 84 | * -IS-WBWA memory |
| 85 | * -------------------------------------------- |
| 86 | */ |
| 87 | mov x0, x19 |
| 88 | bl platform_set_stack |
| 89 | |
| 90 | /* -------------------------------------------- |
Achin Gupta | c8afc78 | 2013-11-25 18:45:02 +0000 | [diff] [blame] | 91 | * Use the size of the general purpose register |
| 92 | * context to restore the register state |
| 93 | * stashed by earlier code |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 94 | * -------------------------------------------- |
| 95 | */ |
Achin Gupta | c8afc78 | 2013-11-25 18:45:02 +0000 | [diff] [blame] | 96 | sub sp, sp, #SIZEOF_GPREGS |
| 97 | exception_exit restore_regs |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 98 | |
| 99 | /* -------------------------------------------- |
| 100 | * Jump back to the non-secure world assuming |
| 101 | * that the elr and spsr setup has been done |
| 102 | * by the finishers |
| 103 | * -------------------------------------------- |
| 104 | */ |
| 105 | eret |
| 106 | _panic: |
| 107 | b _panic |
| 108 | |
| 109 | /* ----------------------------------------------------- |
| 110 | * The following two stubs give the calling cpu a |
| 111 | * coherent stack to allow flushing of caches without |
| 112 | * suffering from stack coherency issues |
| 113 | * ----------------------------------------------------- |
| 114 | */ |
| 115 | __psci_cpu_off: |
| 116 | func_prologue |
| 117 | sub sp, sp, #0x10 |
| 118 | stp x19, x20, [sp, #0] |
| 119 | mov x19, sp |
| 120 | bl read_mpidr |
| 121 | bl platform_set_coherent_stack |
| 122 | bl psci_cpu_off |
| 123 | mov x1, #PSCI_E_SUCCESS |
| 124 | cmp x0, x1 |
| 125 | b.eq final_wfi |
| 126 | mov sp, x19 |
| 127 | ldp x19, x20, [sp,#0] |
| 128 | add sp, sp, #0x10 |
| 129 | func_epilogue |
| 130 | ret |
| 131 | |
| 132 | __psci_cpu_suspend: |
| 133 | func_prologue |
| 134 | sub sp, sp, #0x20 |
| 135 | stp x19, x20, [sp, #0] |
| 136 | stp x21, x22, [sp, #0x10] |
| 137 | mov x19, sp |
| 138 | mov x20, x0 |
| 139 | mov x21, x1 |
| 140 | mov x22, x2 |
| 141 | bl read_mpidr |
| 142 | bl platform_set_coherent_stack |
| 143 | mov x0, x20 |
| 144 | mov x1, x21 |
| 145 | mov x2, x22 |
| 146 | bl psci_cpu_suspend |
| 147 | mov x1, #PSCI_E_SUCCESS |
| 148 | cmp x0, x1 |
| 149 | b.eq final_wfi |
| 150 | mov sp, x19 |
| 151 | ldp x21, x22, [sp,#0x10] |
| 152 | ldp x19, x20, [sp,#0] |
| 153 | add sp, sp, #0x20 |
| 154 | func_epilogue |
| 155 | ret |
| 156 | |
| 157 | final_wfi: |
| 158 | dsb sy |
| 159 | wfi |
| 160 | wfi_spill: |
| 161 | b wfi_spill |
| 162 | |