blob: 050f6c6c6de2ab32734891b8504aac528db7b900 [file] [log] [blame]
Achin Gupta4f6ad662013-10-25 09:08:21 +01001/*
Sandrine Bailleuxacde8b02015-05-19 11:54:45 +01002 * Copyright (c) 2013-2015, 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>
Sandrine Bailleuxacde8b02015-05-19 11:54:45 +010033#include <el3_common_macros.S>
Dan Handley2bd4ef22014-04-09 13:14:54 +010034#include <psci.h>
Achin Guptae1aa5162014-06-26 09:58:52 +010035#include <xlat_tables.h>
Achin Gupta4f6ad662013-10-25 09:08:21 +010036
37 .globl psci_aff_on_finish_entry
38 .globl psci_aff_suspend_finish_entry
Achin Gupta42c52802014-05-09 19:32:25 +010039 .globl psci_power_down_wfi
Achin Gupta4f6ad662013-10-25 09:08:21 +010040
Achin Gupta4f6ad662013-10-25 09:08:21 +010041 /* -----------------------------------------------------
42 * This cpu has been physically powered up. Depending
43 * upon whether it was resumed from suspend or simply
44 * turned on, call the common power on finisher with
45 * the handlers (chosen depending upon original state).
Achin Gupta4f6ad662013-10-25 09:08:21 +010046 * -----------------------------------------------------
47 */
Andrew Thoelke38bde412014-03-18 13:46:55 +000048func psci_aff_on_finish_entry
Achin Gupta4f6ad662013-10-25 09:08:21 +010049 adr x23, psci_afflvl_on_finishers
50 b psci_aff_common_finish_entry
51
52psci_aff_suspend_finish_entry:
53 adr x23, psci_afflvl_suspend_finishers
54
55psci_aff_common_finish_entry:
Sandrine Bailleuxacde8b02015-05-19 11:54:45 +010056 /*
57 * On the warm boot path, most of the EL3 initialisations performed by
58 * 'el3_entrypoint_common' must be skipped:
59 *
Sandrine Bailleux449dbd52015-06-02 17:19:43 +010060 * - Only when the platform bypasses the BL1/BL3-1 entrypoint by
61 * programming the reset address do we need to set the CPU endianness.
62 * In other cases, we assume this has been taken care by the
63 * entrypoint code.
64 *
Sandrine Bailleuxacde8b02015-05-19 11:54:45 +010065 * - No need to determine the type of boot, we know it is a warm boot.
66 *
67 * - Do not try to distinguish between primary and secondary CPUs, this
68 * notion only exists for a cold boot.
69 *
70 * - No need to initialise the memory or the C runtime environment,
71 * it has been done once and for all on the cold boot path.
Achin Guptae1aa5162014-06-26 09:58:52 +010072 */
Sandrine Bailleuxacde8b02015-05-19 11:54:45 +010073 el3_entrypoint_common \
Sandrine Bailleux449dbd52015-06-02 17:19:43 +010074 _set_endian=PROGRAMMABLE_RESET_ADDRESS \
Sandrine Bailleuxacde8b02015-05-19 11:54:45 +010075 _warm_boot_mailbox=0 \
76 _secondary_cold_boot=0 \
77 _init_memory=0 \
78 _init_c_runtime=0 \
79 _exception_vectors=runtime_exceptions
Achin Guptae1aa5162014-06-26 09:58:52 +010080
81 /* --------------------------------------------
82 * Enable the MMU with the DCache disabled. It
83 * is safe to use stacks allocated in normal
84 * memory as a result. All memory accesses are
85 * marked nGnRnE when the MMU is disabled. So
86 * all the stack writes will make it to memory.
87 * All memory accesses are marked Non-cacheable
88 * when the MMU is enabled but D$ is disabled.
89 * So used stack memory is guaranteed to be
90 * visible immediately after the MMU is enabled
91 * Enabling the DCache at the same time as the
92 * MMU can lead to speculatively fetched and
93 * possibly stale stack memory being read from
94 * other caches. This can lead to coherency
95 * issues.
96 * --------------------------------------------
97 */
98 mov x0, #DISABLE_DCACHE
99 bl bl31_plat_enable_mmu
Achin Gupta4f6ad662013-10-25 09:08:21 +0100100
101 /* ---------------------------------------------
102 * Call the finishers starting from affinity
103 * level 0.
104 * ---------------------------------------------
105 */
Achin Guptaa45e3972013-12-05 15:10:48 +0000106 bl get_power_on_target_afflvl
Andrew Thoelke2bc07852014-06-09 12:44:21 +0100107 mov x2, x23
108 mov x1, x0
109 mov x0, #MPIDR_AFFLVL0
110 bl psci_afflvl_power_on_finish
Achin Gupta4f6ad662013-10-25 09:08:21 +0100111
Jeenu Viswambharancaa84932014-02-06 10:36:15 +0000112 b el3_exit
Kévin Petita877c252015-03-24 14:03:57 +0000113endfunc psci_aff_on_finish_entry
Achin Gupta4f6ad662013-10-25 09:08:21 +0100114
Achin Gupta42c52802014-05-09 19:32:25 +0100115 /* --------------------------------------------
116 * This function is called to indicate to the
117 * power controller that it is safe to power
118 * down this cpu. It should not exit the wfi
119 * and will be released from reset upon power
120 * up. 'wfi_spill' is used to catch erroneous
121 * exits from wfi.
122 * --------------------------------------------
123 */
124func psci_power_down_wfi
Andrew Thoelke42e75a72014-04-28 12:28:39 +0100125 dsb sy // ensure write buffer empty
Achin Gupta4f6ad662013-10-25 09:08:21 +0100126 wfi
127wfi_spill:
128 b wfi_spill
Kévin Petita877c252015-03-24 14:03:57 +0000129endfunc psci_power_down_wfi
Achin Gupta4f6ad662013-10-25 09:08:21 +0100130