blob: 9f94b0c13ae564fb2913b10a0e729a59be1da549 [file] [log] [blame]
Tony Xief6118cc2016-01-15 17:17:32 +08001/*
2 * Copyright (c) 2016, 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 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
15 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
18 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
19 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
20 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
21 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
22 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
23 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
24 * POSSIBILITY OF SUCH DAMAGE.
25 */
26
27#include <arch.h>
28#include <asm_macros.S>
29#include <platform_def.h>
30#include <pmu_sram.h>
31
32 .globl pmu_cpuson_entrypoint_start
33 .globl pmu_cpuson_entrypoint_end
34
35func pmu_cpuson_entrypoint
36pmu_cpuson_entrypoint_start:
37 ldr x5, psram_data
Tony Xief6118cc2016-01-15 17:17:32 +080038check_wake_cpus:
39 mrs x0, MPIDR_EL1
40 and x1, x0, #MPIDR_CPU_MASK
41 and x0, x0, #MPIDR_CLUSTER_MASK
42 orr x0, x0, x1
43 /* primary_cpu */
44 ldr w1, [x5, #PSRAM_DT_MPIDR]
45 cmp w0, w1
46 b.eq sys_wakeup
47 /*
48 * If the core is not the primary cpu,
49 * force the core into wfe.
50 */
51wfe_loop:
52 wfe
53 b wfe_loop
54sys_wakeup:
55 /* check ddr flag for resume ddr */
56 ldr w2, [x5, #PSRAM_DT_DDRFLAG]
57 cmp w2, #0x0
58 b.eq sys_resume
59ddr_resume:
60 ldr x2, [x5, #PSRAM_DT_SP]
61 mov sp, x2
62 ldr x1, [x5, #PSRAM_DT_DDR_FUNC]
63 ldr x0, [x5, #PSRAM_DT_DDR_DATA]
64 blr x1
65sys_resume:
66 ldr x1, sys_wakeup_entry
67 br x1
68
69 .align 3
70psram_data:
71 .quad PSRAM_DT_BASE
Tony Xief6118cc2016-01-15 17:17:32 +080072sys_wakeup_entry:
73 .quad psci_entrypoint
74pmu_cpuson_entrypoint_end:
75 .word 0
76endfunc pmu_cpuson_entrypoint