]> git.karo-electronics.de Git - karo-tx-uboot.git/blob - arch/arm/cpu/armv7/sunxi/psci.S
ARM: Factor out reusable psci_cpu_entry
[karo-tx-uboot.git] / arch / arm / cpu / armv7 / sunxi / psci.S
1 /*
2  * Copyright (C) 2013 - ARM Ltd
3  * Author: Marc Zyngier <marc.zyngier@arm.com>
4  *
5  * Based on code by Carl van Schaik <carl@ok-labs.com>.
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License version 2 as
9  * published by the Free Software Foundation.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
18  */
19
20 #include <config.h>
21 #include <asm/gic.h>
22 #include <asm/macro.h>
23 #include <asm/psci.h>
24 #include <asm/arch/cpu.h>
25
26 /*
27  * Memory layout:
28  *
29  * SECURE_RAM to text_end :
30  *      ._secure_text section
31  * text_end to ALIGN_PAGE(text_end):
32  *      nothing
33  * ALIGN_PAGE(text_end) to ALIGN_PAGE(text_end) + 0x1000)
34  *      1kB of stack per CPU (4 CPUs max).
35  */
36
37         .pushsection ._secure.text, "ax"
38
39         .arch_extension sec
40
41 #define ONE_MS                  (CONFIG_TIMER_CLK_FREQ / 1000)
42 #define TEN_MS                  (10 * ONE_MS)
43 #define GICD_BASE               0x1c81000
44 #define GICC_BASE               0x1c82000
45
46 .macro  timer_wait      reg, ticks
47         @ Program CNTP_TVAL
48         movw    \reg, #(\ticks & 0xffff)
49         movt    \reg, #(\ticks >> 16)
50         mcr     p15, 0, \reg, c14, c2, 0
51         isb
52         @ Enable physical timer, mask interrupt
53         mov     \reg, #3
54         mcr     p15, 0, \reg, c14, c2, 1
55         @ Poll physical timer until ISTATUS is on
56 1:      isb
57         mrc     p15, 0, \reg, c14, c2, 1
58         ands    \reg, \reg, #4
59         bne     1b
60         @ Disable timer
61         mov     \reg, #0
62         mcr     p15, 0, \reg, c14, c2, 1
63         isb
64 .endm
65
66 .globl  psci_fiq_enter
67 psci_fiq_enter:
68         push    {r0-r12}
69
70         @ Switch to secure
71         mrc     p15, 0, r7, c1, c1, 0
72         bic     r8, r7, #1
73         mcr     p15, 0, r8, c1, c1, 0
74         isb
75
76         @ Validate reason based on IAR and acknowledge
77         movw    r8, #(GICC_BASE & 0xffff)
78         movt    r8, #(GICC_BASE >> 16)
79         ldr     r9, [r8, #GICC_IAR]
80         movw    r10, #0x3ff
81         movt    r10, #0
82         cmp     r9, r10                 @ skip spurious interrupt 1023
83         beq     out
84         movw    r10, #0x3fe             @ ...and 1022
85         cmp     r9, r10
86         beq     out
87         str     r9, [r8, #GICC_EOIR]    @ acknowledge the interrupt
88         dsb
89
90         @ Compute CPU number
91         lsr     r9, r9, #10
92         and     r9, r9, #0xf
93
94         movw    r8, #(SUN7I_CPUCFG_BASE & 0xffff)
95         movt    r8, #(SUN7I_CPUCFG_BASE >> 16)
96
97         @ Wait for the core to enter WFI
98         lsl     r11, r9, #6             @ x64
99         add     r11, r11, r8
100
101 1:      ldr     r10, [r11, #0x48]
102         tst     r10, #(1 << 2)
103         bne     2f
104         timer_wait r10, ONE_MS
105         b       1b
106
107         @ Reset CPU
108 2:      mov     r10, #0
109         str     r10, [r11, #0x40]
110
111         @ Lock CPU
112         mov     r10, #1
113         lsl     r9, r10, r9             @ r9 is now CPU mask
114         ldr     r10, [r8, #0x1e4]
115         bic     r10, r10, r9
116         str     r10, [r8, #0x1e4]
117
118         @ Set power gating
119         ldr     r10, [r8, #0x1b4]
120         orr     r10, r10, #1
121         str     r10, [r8, #0x1b4]
122         timer_wait r10, ONE_MS
123
124         @ Activate power clamp
125         mov     r10, #1
126 1:      str     r10, [r8, #0x1b0]
127         lsl     r10, r10, #1
128         orr     r10, r10, #1
129         tst     r10, #0x100
130         beq     1b
131
132         @ Restore security level
133 out:    mcr     p15, 0, r7, c1, c1, 0
134
135         pop     {r0-r12}
136         subs    pc, lr, #4
137
138         @ r1 = target CPU
139         @ r2 = target PC
140 .globl  psci_cpu_on
141 psci_cpu_on:
142         ldr     r0, =_psci_target_pc
143         str     r2, [r0]
144         dsb
145
146         movw    r0, #(SUN7I_CPUCFG_BASE & 0xffff)
147         movt    r0, #(SUN7I_CPUCFG_BASE >> 16)
148
149         @ CPU mask
150         and     r1, r1, #3      @ only care about first cluster
151         mov     r4, #1
152         lsl     r4, r4, r1
153
154         ldr     r6, =psci_cpu_entry
155         str     r6, [r0, #0x1a4] @ PRIVATE_REG (boot vector)
156
157         @ Assert reset on target CPU
158         mov     r6, #0
159         lsl     r5, r1, #6      @ 64 bytes per CPU
160         add     r5, r5, #0x40   @ Offset from base
161         add     r5, r5, r0      @ CPU control block
162         str     r6, [r5]        @ Reset CPU
163
164         @ l1 invalidate
165         ldr     r6, [r0, #0x184]
166         bic     r6, r6, r4
167         str     r6, [r0, #0x184]
168
169         @ Lock CPU
170         ldr     r6, [r0, #0x1e4]
171         bic     r6, r6, r4
172         str     r6, [r0, #0x1e4]
173
174         @ Release power clamp
175         movw    r6, #0x1ff
176         movt    r6, #0
177 1:      lsrs    r6, r6, #1
178         str     r6, [r0, #0x1b0]
179         bne     1b
180
181         timer_wait r1, TEN_MS
182
183         @ Clear power gating
184         ldr     r6, [r0, #0x1b4]
185         bic     r6, r6, #1
186         str     r6, [r0, #0x1b4]
187
188         @ Deassert reset on target CPU
189         mov     r6, #3
190         str     r6, [r5]
191
192         @ Unlock CPU
193         ldr     r6, [r0, #0x1e4]
194         orr     r6, r6, r4
195         str     r6, [r0, #0x1e4]
196
197         mov     r0, #ARM_PSCI_RET_SUCCESS       @ Return PSCI_RET_SUCCESS
198         mov     pc, lr
199
200 .globl  psci_cpu_off
201 psci_cpu_off:
202         bl      psci_cpu_off_common
203
204         @ Ask CPU0 to pull the rug...
205         movw    r0, #(GICD_BASE & 0xffff)
206         movt    r0, #(GICD_BASE >> 16)
207         movw    r1, #15                         @ SGI15
208         movt    r1, #1                          @ Target is CPU0
209         str     r1, [r0, #GICD_SGIR]
210         dsb
211
212 1:      wfi
213         b       1b
214
215 .globl  psci_arch_init
216 psci_arch_init:
217         mov     r6, lr
218
219         movw    r4, #(GICD_BASE & 0xffff)
220         movt    r4, #(GICD_BASE >> 16)
221
222         ldr     r5, [r4, #GICD_IGROUPRn]
223         bic     r5, r5, #(1 << 15)      @ SGI15 as Group-0
224         str     r5, [r4, #GICD_IGROUPRn]
225
226         mov     r5, #0                  @ Set SGI15 priority to 0
227         strb    r5, [r4, #(GICD_IPRIORITYRn + 15)]
228
229         add     r4, r4, #0x1000         @ GICC address
230
231         mov     r5, #0xff
232         str     r5, [r4, #GICC_PMR]     @ Be cool with non-secure
233
234         ldr     r5, [r4, #GICC_CTLR]
235         orr     r5, r5, #(1 << 3)       @ Switch FIQEn on
236         str     r5, [r4, #GICC_CTLR]
237
238         mrc     p15, 0, r5, c1, c1, 0   @ Read SCR
239         orr     r5, r5, #4              @ Enable FIQ in monitor mode
240         bic     r5, r5, #1              @ Secure mode
241         mcr     p15, 0, r5, c1, c1, 0   @ Write SCR
242         isb
243
244         bl      psci_get_cpu_id
245         mov     r5, #0x400              @ 1kB of stack per CPU
246         mul     r0, r0, r5
247
248         adr     r5, text_end            @ end of text
249         add     r5, r5, #0x2000         @ Skip two pages
250         lsr     r5, r5, #12             @ Align to start of page
251         lsl     r5, r5, #12
252         sub     sp, r5, r0              @ here's our stack!
253
254         bx      r6
255
256 text_end:
257         .popsection