1/* SPDX-License-Identifier: GPL-2.0 */ 2#include <linux/linkage.h> 3#include <linux/threads.h> 4#include <asm/asm-offsets.h> 5#include <asm/assembler.h> 6#include <asm/glue-cache.h> 7#include <asm/glue-proc.h> 8 .text 9 10/* 11 * Implementation of MPIDR hash algorithm through shifting 12 * and OR'ing. 13 * 14 * @dst: register containing hash result 15 * @rs0: register containing affinity level 0 bit shift 16 * @rs1: register containing affinity level 1 bit shift 17 * @rs2: register containing affinity level 2 bit shift 18 * @mpidr: register containing MPIDR value 19 * @mask: register containing MPIDR mask 20 * 21 * Pseudo C-code: 22 * 23 *u32 dst; 24 * 25 *compute_mpidr_hash(u32 rs0, u32 rs1, u32 rs2, u32 mpidr, u32 mask) { 26 * u32 aff0, aff1, aff2; 27 * u32 mpidr_masked = mpidr & mask; 28 * aff0 = mpidr_masked & 0xff; 29 * aff1 = mpidr_masked & 0xff00; 30 * aff2 = mpidr_masked & 0xff0000; 31 * dst = (aff0 >> rs0 | aff1 >> rs1 | aff2 >> rs2); 32 *} 33 * Input registers: rs0, rs1, rs2, mpidr, mask 34 * Output register: dst 35 * Note: input and output registers must be disjoint register sets 36 (eg: a macro instance with mpidr = r1 and dst = r1 is invalid) 37 */ 38 .macro compute_mpidr_hash dst, rs0, rs1, rs2, mpidr, mask 39 and \mpidr, \mpidr, \mask @ mask out MPIDR bits 40 and \dst, \mpidr, #0xff @ mask=aff0 41 ARM( mov \dst, \dst, lsr \rs0 ) @ dst=aff0>>rs0 42 THUMB( lsr \dst, \dst, \rs0 ) 43 and \mask, \mpidr, #0xff00 @ mask = aff1 44 ARM( orr \dst, \dst, \mask, lsr \rs1 ) @ dst|=(aff1>>rs1) 45 THUMB( lsr \mask, \mask, \rs1 ) 46 THUMB( orr \dst, \dst, \mask ) 47 and \mask, \mpidr, #0xff0000 @ mask = aff2 48 ARM( orr \dst, \dst, \mask, lsr \rs2 ) @ dst|=(aff2>>rs2) 49 THUMB( lsr \mask, \mask, \rs2 ) 50 THUMB( orr \dst, \dst, \mask ) 51 .endm 52 53/* 54 * Save CPU state for a suspend. This saves the CPU general purpose 55 * registers, and allocates space on the kernel stack to save the CPU 56 * specific registers and some other data for resume. 57 * r0 = suspend function arg0 58 * r1 = suspend function 59 * r2 = MPIDR value the resuming CPU will use 60 */ 61ENTRY(__cpu_suspend) 62 stmfd sp!, {r4 - r11, lr} 63#ifdef MULTI_CPU 64 ldr r10, =processor 65 ldr r4, [r10, #CPU_SLEEP_SIZE] @ size of CPU sleep state 66#else 67 ldr r4, =cpu_suspend_size 68#endif 69 mov r5, sp @ current virtual SP 70#ifdef CONFIG_VMAP_STACK 71 @ Run the suspend code from the overflow stack so we don't have to rely 72 @ on vmalloc-to-phys conversions anywhere in the arch suspend code. 73 @ The original SP value captured in R5 will be restored on the way out. 74 mov_l r6, overflow_stack_ptr @ Base pointer 75 mrc p15, 0, r7, c13, c0, 4 @ Get per-CPU offset 76 ldr sp, [r6, r7] @ Address of this CPU's overflow stack 77#endif 78 add r4, r4, #12 @ Space for pgd, virt sp, phys resume fn 79 sub sp, sp, r4 @ allocate CPU state on stack 80 ldr r3, =sleep_save_sp 81 stmfd sp!, {r0, r1} @ save suspend func arg and pointer 82 ldr r3, [r3, #SLEEP_SAVE_SP_VIRT] 83 ALT_SMP(W(nop)) @ don't use adr_l inside ALT_SMP() 84 ALT_UP_B(1f) 85 adr_l r0, mpidr_hash 86 /* This ldmia relies on the memory layout of the mpidr_hash struct */ 87 ldmia r0, {r1, r6-r8} @ r1 = mpidr mask (r6,r7,r8) = l[0,1,2] shifts 88 compute_mpidr_hash r0, r6, r7, r8, r2, r1 89 add r3, r3, r0, lsl #2 901: mov r2, r5 @ virtual SP 91 mov r1, r4 @ size of save block 92 add r0, sp, #8 @ pointer to save block 93 bl __cpu_suspend_save 94 badr lr, cpu_suspend_abort 95 ldmfd sp!, {r0, pc} @ call suspend fn 96ENDPROC(__cpu_suspend) 97 .ltorg 98 99cpu_suspend_abort: 100 ldmia sp!, {r1 - r3} @ pop phys pgd, virt SP, phys resume fn 101 teq r0, #0 102 moveq r0, #1 @ force non-zero value 103 mov sp, r2 104 ldmfd sp!, {r4 - r11, pc} 105ENDPROC(cpu_suspend_abort) 106 107/* 108 * r0 = control register value 109 */ 110 .align 5 111 .pushsection .idmap.text,"ax" 112ENTRY(cpu_resume_mmu) 113 ldr r3, =cpu_resume_after_mmu 114 instr_sync 115 mcr p15, 0, r0, c1, c0, 0 @ turn on MMU, I-cache, etc 116 mrc p15, 0, r0, c0, c0, 0 @ read id reg 117 instr_sync 118 mov r0, r0 119 mov r0, r0 120 ret r3 @ jump to virtual address 121ENDPROC(cpu_resume_mmu) 122 .popsection 123cpu_resume_after_mmu: 124 bl cpu_init @ restore the und/abt/irq banked regs 125 mov r0, #0 @ return zero on success 126 ldmfd sp!, {r4 - r11, pc} 127ENDPROC(cpu_resume_after_mmu) 128 129 .text 130 .align 131 132#ifdef CONFIG_MCPM 133 .arm 134THUMB( .thumb ) 135ENTRY(cpu_resume_no_hyp) 136ARM_BE8(setend be) @ ensure we are in BE mode 137 b no_hyp 138#endif 139 140#ifdef CONFIG_MMU 141 .arm 142ENTRY(cpu_resume_arm) 143 THUMB( badr r9, 1f ) @ Kernel is entered in ARM. 144 THUMB( bx r9 ) @ If this is a Thumb-2 kernel, 145 THUMB( .thumb ) @ switch to Thumb now. 146 THUMB(1: ) 147#endif 148 149ENTRY(cpu_resume) 150ARM_BE8(setend be) @ ensure we are in BE mode 151#ifdef CONFIG_ARM_VIRT_EXT 152 bl __hyp_stub_install_secondary 153#endif 154 safe_svcmode_maskall r1 155no_hyp: 156 mov r1, #0 157 ALT_SMP(mrc p15, 0, r0, c0, c0, 5) 158 ALT_UP_B(1f) 159 adr_l r2, mpidr_hash @ r2 = struct mpidr_hash phys address 160 161 /* 162 * This ldmia relies on the memory layout of the mpidr_hash 163 * struct mpidr_hash. 164 */ 165 ldmia r2, { r3-r6 } @ r3 = mpidr mask (r4,r5,r6) = l[0,1,2] shifts 166 compute_mpidr_hash r1, r4, r5, r6, r0, r3 1671: 168 ldr_l r0, sleep_save_sp + SLEEP_SAVE_SP_PHYS 169 ldr r0, [r0, r1, lsl #2] 170 171 @ load phys pgd, stack, resume fn 172 ARM( ldmia r0!, {r1, sp, pc} ) 173THUMB( ldmia r0!, {r1, r2, r3} ) 174THUMB( mov sp, r2 ) 175THUMB( bx r3 ) 176ENDPROC(cpu_resume) 177 178#ifdef CONFIG_MMU 179ENDPROC(cpu_resume_arm) 180#endif 181#ifdef CONFIG_MCPM 182ENDPROC(cpu_resume_no_hyp) 183#endif 184 185 .data 186 .align 2 187 .type sleep_save_sp, #object 188ENTRY(sleep_save_sp) 189 .space SLEEP_SAVE_SP_SZ @ struct sleep_save_sp 190