Andre Przywara | e776fd2 | 2013-09-19 18:06:40 +0200 | [diff] [blame] | 1 | /* |
Andre Przywara | 8de142c | 2013-09-19 18:06:45 +0200 | [diff] [blame] | 2 | * code for switching cores into non-secure state and into HYP mode |
Andre Przywara | e776fd2 | 2013-09-19 18:06:40 +0200 | [diff] [blame] | 3 | * |
| 4 | * Copyright (c) 2013 Andre Przywara <andre.przywara@linaro.org> |
| 5 | * |
Andre Przywara | 6b21645 | 2013-10-07 10:56:51 +0200 | [diff] [blame] | 6 | * SPDX-License-Identifier: GPL-2.0+ |
Andre Przywara | e776fd2 | 2013-09-19 18:06:40 +0200 | [diff] [blame] | 7 | */ |
| 8 | |
| 9 | #include <config.h> |
Andre Przywara | dd5e8da | 2013-09-19 18:06:41 +0200 | [diff] [blame] | 10 | #include <linux/linkage.h> |
| 11 | #include <asm/gic.h> |
| 12 | #include <asm/armv7.h> |
Marc Zyngier | 855ca66 | 2014-07-12 14:24:03 +0100 | [diff] [blame^] | 13 | #include <asm/proc-armv/ptrace.h> |
Andre Przywara | dd5e8da | 2013-09-19 18:06:41 +0200 | [diff] [blame] | 14 | |
| 15 | .arch_extension sec |
Andre Przywara | 8de142c | 2013-09-19 18:06:45 +0200 | [diff] [blame] | 16 | .arch_extension virt |
Andre Przywara | e776fd2 | 2013-09-19 18:06:40 +0200 | [diff] [blame] | 17 | |
Marc Zyngier | 855ca66 | 2014-07-12 14:24:03 +0100 | [diff] [blame^] | 18 | .pushsection ._secure.text, "ax" |
| 19 | |
Masahiro Yamada | 92bd4ac | 2013-10-07 11:46:56 +0900 | [diff] [blame] | 20 | .align 5 |
Andre Przywara | 8de142c | 2013-09-19 18:06:45 +0200 | [diff] [blame] | 21 | /* the vector table for secure state and HYP mode */ |
Andre Przywara | e776fd2 | 2013-09-19 18:06:40 +0200 | [diff] [blame] | 22 | _monitor_vectors: |
| 23 | .word 0 /* reset */ |
| 24 | .word 0 /* undef */ |
| 25 | adr pc, _secure_monitor |
| 26 | .word 0 |
| 27 | .word 0 |
Marc Zyngier | 855ca66 | 2014-07-12 14:24:03 +0100 | [diff] [blame^] | 28 | .word 0 |
Andre Przywara | e776fd2 | 2013-09-19 18:06:40 +0200 | [diff] [blame] | 29 | .word 0 |
| 30 | .word 0 |
Andre Przywara | e776fd2 | 2013-09-19 18:06:40 +0200 | [diff] [blame] | 31 | |
Marc Zyngier | 855ca66 | 2014-07-12 14:24:03 +0100 | [diff] [blame^] | 32 | .macro is_cpu_virt_capable tmp |
| 33 | mrc p15, 0, \tmp, c0, c1, 1 @ read ID_PFR1 |
| 34 | and \tmp, \tmp, #CPUID_ARM_VIRT_MASK @ mask virtualization bits |
| 35 | cmp \tmp, #(1 << CPUID_ARM_VIRT_SHIFT) |
| 36 | .endm |
| 37 | |
Andre Przywara | e776fd2 | 2013-09-19 18:06:40 +0200 | [diff] [blame] | 38 | /* |
| 39 | * secure monitor handler |
| 40 | * U-boot calls this "software interrupt" in start.S |
| 41 | * This is executed on a "smc" instruction, we use a "smc #0" to switch |
| 42 | * to non-secure state. |
Marc Zyngier | 855ca66 | 2014-07-12 14:24:03 +0100 | [diff] [blame^] | 43 | * r0, r1, r2: passed to the callee |
| 44 | * ip: target PC |
Andre Przywara | e776fd2 | 2013-09-19 18:06:40 +0200 | [diff] [blame] | 45 | */ |
Andre Przywara | e776fd2 | 2013-09-19 18:06:40 +0200 | [diff] [blame] | 46 | _secure_monitor: |
Marc Zyngier | 855ca66 | 2014-07-12 14:24:03 +0100 | [diff] [blame^] | 47 | mrc p15, 0, r5, c1, c1, 0 @ read SCR |
| 48 | bic r5, r5, #0x4e @ clear IRQ, FIQ, EA, nET bits |
| 49 | orr r5, r5, #0x31 @ enable NS, AW, FW bits |
Andre Przywara | e776fd2 | 2013-09-19 18:06:40 +0200 | [diff] [blame] | 50 | |
Marc Zyngier | 855ca66 | 2014-07-12 14:24:03 +0100 | [diff] [blame^] | 51 | mov r6, #SVC_MODE @ default mode is SVC |
| 52 | is_cpu_virt_capable r4 |
Marc Zyngier | 4cd832b | 2014-07-12 14:24:00 +0100 | [diff] [blame] | 53 | #ifdef CONFIG_ARMV7_VIRT |
Marc Zyngier | 855ca66 | 2014-07-12 14:24:03 +0100 | [diff] [blame^] | 54 | orreq r5, r5, #0x100 @ allow HVC instruction |
| 55 | moveq r6, #HYP_MODE @ Enter the kernel as HYP |
Andre Przywara | 8de142c | 2013-09-19 18:06:45 +0200 | [diff] [blame] | 56 | #endif |
| 57 | |
Marc Zyngier | 855ca66 | 2014-07-12 14:24:03 +0100 | [diff] [blame^] | 58 | mcr p15, 0, r5, c1, c1, 0 @ write SCR (with NS bit set) |
Marc Zyngier | e919577 | 2014-07-12 14:23:59 +0100 | [diff] [blame] | 59 | isb |
Andre Przywara | e776fd2 | 2013-09-19 18:06:40 +0200 | [diff] [blame] | 60 | |
Marc Zyngier | 4cd832b | 2014-07-12 14:24:00 +0100 | [diff] [blame] | 61 | bne 1f |
Andre Przywara | 8de142c | 2013-09-19 18:06:45 +0200 | [diff] [blame] | 62 | |
Marc Zyngier | 4cd832b | 2014-07-12 14:24:00 +0100 | [diff] [blame] | 63 | @ Reset CNTVOFF to 0 before leaving monitor mode |
Marc Zyngier | 855ca66 | 2014-07-12 14:24:03 +0100 | [diff] [blame^] | 64 | mrc p15, 0, r4, c0, c1, 1 @ read ID_PFR1 |
| 65 | ands r4, r4, #CPUID_ARM_GENTIMER_MASK @ test arch timer bits |
| 66 | movne r4, #0 |
| 67 | mcrrne p15, 4, r4, r4, c14 @ Reset CNTVOFF to zero |
Marc Zyngier | 4cd832b | 2014-07-12 14:24:00 +0100 | [diff] [blame] | 68 | 1: |
Marc Zyngier | 855ca66 | 2014-07-12 14:24:03 +0100 | [diff] [blame^] | 69 | mov lr, ip |
| 70 | mov ip, #(F_BIT | I_BIT | A_BIT) @ Set A, I and F |
| 71 | tst lr, #1 @ Check for Thumb PC |
| 72 | orrne ip, ip, #T_BIT @ Set T if Thumb |
| 73 | orr ip, ip, r6 @ Slot target mode in |
| 74 | msr spsr_cxfs, ip @ Set full SPSR |
| 75 | movs pc, lr @ ERET to non-secure |
| 76 | |
| 77 | ENTRY(_do_nonsec_entry) |
| 78 | mov ip, r0 |
| 79 | mov r0, r1 |
| 80 | mov r1, r2 |
| 81 | mov r2, r3 |
| 82 | smc #0 |
| 83 | ENDPROC(_do_nonsec_entry) |
Andre Przywara | dd5e8da | 2013-09-19 18:06:41 +0200 | [diff] [blame] | 84 | |
Marc Zyngier | 855ca66 | 2014-07-12 14:24:03 +0100 | [diff] [blame^] | 85 | .macro get_cbar_addr addr |
| 86 | #ifdef CONFIG_ARM_GIC_BASE_ADDRESS |
| 87 | ldr \addr, =CONFIG_ARM_GIC_BASE_ADDRESS |
| 88 | #else |
| 89 | mrc p15, 4, \addr, c15, c0, 0 @ read CBAR |
| 90 | bfc \addr, #0, #15 @ clear reserved bits |
| 91 | #endif |
| 92 | .endm |
| 93 | |
| 94 | .macro get_gicd_addr addr |
| 95 | get_cbar_addr \addr |
| 96 | add \addr, \addr, #GIC_DIST_OFFSET @ GIC dist i/f offset |
| 97 | .endm |
Andre Przywara | 8de142c | 2013-09-19 18:06:45 +0200 | [diff] [blame] | 98 | |
Marc Zyngier | 855ca66 | 2014-07-12 14:24:03 +0100 | [diff] [blame^] | 99 | .macro get_gicc_addr addr, tmp |
| 100 | get_cbar_addr \addr |
| 101 | is_cpu_virt_capable \tmp |
| 102 | movne \tmp, #GIC_CPU_OFFSET_A9 @ GIC CPU offset for A9 |
| 103 | moveq \tmp, #GIC_CPU_OFFSET_A15 @ GIC CPU offset for A15/A7 |
| 104 | add \addr, \addr, \tmp |
| 105 | .endm |
| 106 | |
| 107 | #ifndef CONFIG_ARMV7_PSCI |
Andre Przywara | dd5e8da | 2013-09-19 18:06:41 +0200 | [diff] [blame] | 108 | /* |
Andre Przywara | dbbe196 | 2013-09-19 18:06:44 +0200 | [diff] [blame] | 109 | * Secondary CPUs start here and call the code for the core specific parts |
| 110 | * of the non-secure and HYP mode transition. The GIC distributor specific |
| 111 | * code has already been executed by a C function before. |
| 112 | * Then they go back to wfi and wait to be woken up by the kernel again. |
| 113 | */ |
| 114 | ENTRY(_smp_pen) |
Marc Zyngier | 855ca66 | 2014-07-12 14:24:03 +0100 | [diff] [blame^] | 115 | cpsid i |
| 116 | cpsid f |
Andre Przywara | dbbe196 | 2013-09-19 18:06:44 +0200 | [diff] [blame] | 117 | |
| 118 | bl _nonsec_init |
Andre Przywara | dbbe196 | 2013-09-19 18:06:44 +0200 | [diff] [blame] | 119 | |
| 120 | adr r0, _smp_pen @ do not use this address again |
| 121 | b smp_waitloop @ wait for IPIs, board specific |
| 122 | ENDPROC(_smp_pen) |
Marc Zyngier | 855ca66 | 2014-07-12 14:24:03 +0100 | [diff] [blame^] | 123 | #endif |
Andre Przywara | dbbe196 | 2013-09-19 18:06:44 +0200 | [diff] [blame] | 124 | |
| 125 | /* |
Andre Przywara | dd5e8da | 2013-09-19 18:06:41 +0200 | [diff] [blame] | 126 | * Switch a core to non-secure state. |
| 127 | * |
| 128 | * 1. initialize the GIC per-core interface |
| 129 | * 2. allow coprocessor access in non-secure modes |
Andre Przywara | dd5e8da | 2013-09-19 18:06:41 +0200 | [diff] [blame] | 130 | * |
| 131 | * Called from smp_pen by secondary cores and directly by the BSP. |
| 132 | * Do not assume that the stack is available and only use registers |
| 133 | * r0-r3 and r12. |
| 134 | * |
| 135 | * PERIPHBASE is used to get the GIC address. This could be 40 bits long, |
| 136 | * though, but we check this in C before calling this function. |
| 137 | */ |
| 138 | ENTRY(_nonsec_init) |
Marc Zyngier | 855ca66 | 2014-07-12 14:24:03 +0100 | [diff] [blame^] | 139 | get_gicd_addr r3 |
| 140 | |
Andre Przywara | dd5e8da | 2013-09-19 18:06:41 +0200 | [diff] [blame] | 141 | mvn r1, #0 @ all bits to 1 |
| 142 | str r1, [r3, #GICD_IGROUPRn] @ allow private interrupts |
| 143 | |
Marc Zyngier | 855ca66 | 2014-07-12 14:24:03 +0100 | [diff] [blame^] | 144 | get_gicc_addr r3, r1 |
Andre Przywara | dd5e8da | 2013-09-19 18:06:41 +0200 | [diff] [blame] | 145 | |
Marc Zyngier | 855ca66 | 2014-07-12 14:24:03 +0100 | [diff] [blame^] | 146 | mov r1, #3 @ Enable both groups |
Andre Przywara | dd5e8da | 2013-09-19 18:06:41 +0200 | [diff] [blame] | 147 | str r1, [r3, #GICC_CTLR] @ and clear all other bits |
| 148 | mov r1, #0xff |
| 149 | str r1, [r3, #GICC_PMR] @ set priority mask register |
| 150 | |
Marc Zyngier | 855ca66 | 2014-07-12 14:24:03 +0100 | [diff] [blame^] | 151 | mrc p15, 0, r0, c1, c1, 2 |
Andre Przywara | dd5e8da | 2013-09-19 18:06:41 +0200 | [diff] [blame] | 152 | movw r1, #0x3fff |
Marc Zyngier | 855ca66 | 2014-07-12 14:24:03 +0100 | [diff] [blame^] | 153 | movt r1, #0x0004 |
| 154 | orr r0, r0, r1 |
| 155 | mcr p15, 0, r0, c1, c1, 2 @ NSACR = all copros to non-sec |
Andre Przywara | dd5e8da | 2013-09-19 18:06:41 +0200 | [diff] [blame] | 156 | |
| 157 | /* The CNTFRQ register of the generic timer needs to be |
| 158 | * programmed in secure state. Some primary bootloaders / firmware |
| 159 | * omit this, so if the frequency is provided in the configuration, |
| 160 | * we do this here instead. |
| 161 | * But first check if we have the generic timer. |
| 162 | */ |
| 163 | #ifdef CONFIG_SYS_CLK_FREQ |
| 164 | mrc p15, 0, r0, c0, c1, 1 @ read ID_PFR1 |
| 165 | and r0, r0, #CPUID_ARM_GENTIMER_MASK @ mask arch timer bits |
| 166 | cmp r0, #(1 << CPUID_ARM_GENTIMER_SHIFT) |
| 167 | ldreq r1, =CONFIG_SYS_CLK_FREQ |
| 168 | mcreq p15, 0, r1, c14, c0, 0 @ write CNTFRQ |
| 169 | #endif |
| 170 | |
| 171 | adr r1, _monitor_vectors |
| 172 | mcr p15, 0, r1, c12, c0, 1 @ set MVBAR to secure vectors |
Andre Przywara | dd5e8da | 2013-09-19 18:06:41 +0200 | [diff] [blame] | 173 | isb |
Andre Przywara | dd5e8da | 2013-09-19 18:06:41 +0200 | [diff] [blame] | 174 | |
| 175 | mov r0, r3 @ return GICC address |
Andre Przywara | dd5e8da | 2013-09-19 18:06:41 +0200 | [diff] [blame] | 176 | bx lr |
| 177 | ENDPROC(_nonsec_init) |
Andre Przywara | dbbe196 | 2013-09-19 18:06:44 +0200 | [diff] [blame] | 178 | |
| 179 | #ifdef CONFIG_SMP_PEN_ADDR |
| 180 | /* void __weak smp_waitloop(unsigned previous_address); */ |
| 181 | ENTRY(smp_waitloop) |
| 182 | wfi |
| 183 | ldr r1, =CONFIG_SMP_PEN_ADDR @ load start address |
| 184 | ldr r1, [r1] |
| 185 | cmp r0, r1 @ make sure we dont execute this code |
| 186 | beq smp_waitloop @ again (due to a spurious wakeup) |
Marc Zyngier | 855ca66 | 2014-07-12 14:24:03 +0100 | [diff] [blame^] | 187 | mov r0, r1 |
| 188 | b _do_nonsec_entry |
Andre Przywara | dbbe196 | 2013-09-19 18:06:44 +0200 | [diff] [blame] | 189 | ENDPROC(smp_waitloop) |
| 190 | .weak smp_waitloop |
| 191 | #endif |
Andre Przywara | 8de142c | 2013-09-19 18:06:45 +0200 | [diff] [blame] | 192 | |
Marc Zyngier | 855ca66 | 2014-07-12 14:24:03 +0100 | [diff] [blame^] | 193 | .popsection |