]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/blob - arch/arm64/kernel/sleep.S
UBUNTU: Ubuntu-5.11.0-22.23
[mirror_ubuntu-hirsute-kernel.git] / arch / arm64 / kernel / sleep.S
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #include <linux/errno.h>
3 #include <linux/linkage.h>
4 #include <asm/asm-offsets.h>
5 #include <asm/assembler.h>
6 #include <asm/smp.h>
7
8 .text
9 /*
10 * Implementation of MPIDR_EL1 hash algorithm through shifting
11 * and OR'ing.
12 *
13 * @dst: register containing hash result
14 * @rs0: register containing affinity level 0 bit shift
15 * @rs1: register containing affinity level 1 bit shift
16 * @rs2: register containing affinity level 2 bit shift
17 * @rs3: register containing affinity level 3 bit shift
18 * @mpidr: register containing MPIDR_EL1 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 rs3, u64 mpidr, u64 mask) {
26 * u32 aff0, aff1, aff2, aff3;
27 * u64 mpidr_masked = mpidr & mask;
28 * aff0 = mpidr_masked & 0xff;
29 * aff1 = mpidr_masked & 0xff00;
30 * aff2 = mpidr_masked & 0xff0000;
31 * aff3 = mpidr_masked & 0xff00000000;
32 * dst = (aff0 >> rs0 | aff1 >> rs1 | aff2 >> rs2 | aff3 >> rs3);
33 *}
34 * Input registers: rs0, rs1, rs2, rs3, mpidr, mask
35 * Output register: dst
36 * Note: input and output registers must be disjoint register sets
37 (eg: a macro instance with mpidr = x1 and dst = x1 is invalid)
38 */
39 .macro compute_mpidr_hash dst, rs0, rs1, rs2, rs3, mpidr, mask
40 and \mpidr, \mpidr, \mask // mask out MPIDR bits
41 and \dst, \mpidr, #0xff // mask=aff0
42 lsr \dst ,\dst, \rs0 // dst=aff0>>rs0
43 and \mask, \mpidr, #0xff00 // mask = aff1
44 lsr \mask ,\mask, \rs1
45 orr \dst, \dst, \mask // dst|=(aff1>>rs1)
46 and \mask, \mpidr, #0xff0000 // mask = aff2
47 lsr \mask ,\mask, \rs2
48 orr \dst, \dst, \mask // dst|=(aff2>>rs2)
49 and \mask, \mpidr, #0xff00000000 // mask = aff3
50 lsr \mask ,\mask, \rs3
51 orr \dst, \dst, \mask // dst|=(aff3>>rs3)
52 .endm
53 /*
54 * Save CPU state in the provided sleep_stack_data area, and publish its
55 * location for cpu_resume()'s use in sleep_save_stash.
56 *
57 * cpu_resume() will restore this saved state, and return. Because the
58 * link-register is saved and restored, it will appear to return from this
59 * function. So that the caller can tell the suspend/resume paths apart,
60 * __cpu_suspend_enter() will always return a non-zero value, whereas the
61 * path through cpu_resume() will return 0.
62 *
63 * x0 = struct sleep_stack_data area
64 */
65 SYM_FUNC_START(__cpu_suspend_enter)
66 stp x29, lr, [x0, #SLEEP_STACK_DATA_CALLEE_REGS]
67 stp x19, x20, [x0,#SLEEP_STACK_DATA_CALLEE_REGS+16]
68 stp x21, x22, [x0,#SLEEP_STACK_DATA_CALLEE_REGS+32]
69 stp x23, x24, [x0,#SLEEP_STACK_DATA_CALLEE_REGS+48]
70 stp x25, x26, [x0,#SLEEP_STACK_DATA_CALLEE_REGS+64]
71 stp x27, x28, [x0,#SLEEP_STACK_DATA_CALLEE_REGS+80]
72
73 /* save the sp in cpu_suspend_ctx */
74 mov x2, sp
75 str x2, [x0, #SLEEP_STACK_DATA_SYSTEM_REGS + CPU_CTX_SP]
76
77 /* find the mpidr_hash */
78 ldr_l x1, sleep_save_stash
79 mrs x7, mpidr_el1
80 adr_l x9, mpidr_hash
81 ldr x10, [x9, #MPIDR_HASH_MASK]
82 /*
83 * Following code relies on the struct mpidr_hash
84 * members size.
85 */
86 ldp w3, w4, [x9, #MPIDR_HASH_SHIFTS]
87 ldp w5, w6, [x9, #(MPIDR_HASH_SHIFTS + 8)]
88 compute_mpidr_hash x8, x3, x4, x5, x6, x7, x10
89 add x1, x1, x8, lsl #3
90
91 str x0, [x1]
92 add x0, x0, #SLEEP_STACK_DATA_SYSTEM_REGS
93 stp x29, lr, [sp, #-16]!
94 bl cpu_do_suspend
95 ldp x29, lr, [sp], #16
96 mov x0, #1
97 ret
98 SYM_FUNC_END(__cpu_suspend_enter)
99
100 .pushsection ".idmap.text", "awx"
101 SYM_CODE_START(cpu_resume)
102 bl init_kernel_el
103 bl __cpu_setup
104 /* enable the MMU early - so we can access sleep_save_stash by va */
105 adrp x1, swapper_pg_dir
106 bl __enable_mmu
107 ldr x8, =_cpu_resume
108 br x8
109 SYM_CODE_END(cpu_resume)
110 .ltorg
111 .popsection
112
113 SYM_FUNC_START(_cpu_resume)
114 mrs x1, mpidr_el1
115 adr_l x8, mpidr_hash // x8 = struct mpidr_hash virt address
116
117 /* retrieve mpidr_hash members to compute the hash */
118 ldr x2, [x8, #MPIDR_HASH_MASK]
119 ldp w3, w4, [x8, #MPIDR_HASH_SHIFTS]
120 ldp w5, w6, [x8, #(MPIDR_HASH_SHIFTS + 8)]
121 compute_mpidr_hash x7, x3, x4, x5, x6, x1, x2
122
123 /* x7 contains hash index, let's use it to grab context pointer */
124 ldr_l x0, sleep_save_stash
125 ldr x0, [x0, x7, lsl #3]
126 add x29, x0, #SLEEP_STACK_DATA_CALLEE_REGS
127 add x0, x0, #SLEEP_STACK_DATA_SYSTEM_REGS
128 /* load sp from context */
129 ldr x2, [x0, #CPU_CTX_SP]
130 mov sp, x2
131 /*
132 * cpu_do_resume expects x0 to contain context address pointer
133 */
134 bl cpu_do_resume
135
136 #if defined(CONFIG_KASAN) && defined(CONFIG_KASAN_STACK)
137 mov x0, sp
138 bl kasan_unpoison_task_stack_below
139 #endif
140
141 ldp x19, x20, [x29, #16]
142 ldp x21, x22, [x29, #32]
143 ldp x23, x24, [x29, #48]
144 ldp x25, x26, [x29, #64]
145 ldp x27, x28, [x29, #80]
146 ldp x29, lr, [x29]
147 mov x0, #0
148 ret
149 SYM_FUNC_END(_cpu_resume)