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