2011-02-06 16:48:39 +01:00
|
|
|
#include <linux/linkage.h>
|
2011-02-11 12:32:19 +01:00
|
|
|
#include <linux/threads.h>
|
2011-02-06 16:48:39 +01:00
|
|
|
#include <asm/asm-offsets.h>
|
|
|
|
#include <asm/assembler.h>
|
|
|
|
#include <asm/glue-cache.h>
|
|
|
|
#include <asm/glue-proc.h>
|
|
|
|
.text
|
|
|
|
|
2013-05-16 11:34:30 +02:00
|
|
|
/*
|
|
|
|
* Implementation of MPIDR hash algorithm through shifting
|
|
|
|
* and OR'ing.
|
|
|
|
*
|
|
|
|
* @dst: register containing hash result
|
|
|
|
* @rs0: register containing affinity level 0 bit shift
|
|
|
|
* @rs1: register containing affinity level 1 bit shift
|
|
|
|
* @rs2: register containing affinity level 2 bit shift
|
|
|
|
* @mpidr: register containing MPIDR value
|
|
|
|
* @mask: register containing MPIDR mask
|
|
|
|
*
|
|
|
|
* Pseudo C-code:
|
|
|
|
*
|
|
|
|
*u32 dst;
|
|
|
|
*
|
|
|
|
*compute_mpidr_hash(u32 rs0, u32 rs1, u32 rs2, u32 mpidr, u32 mask) {
|
|
|
|
* u32 aff0, aff1, aff2;
|
|
|
|
* u32 mpidr_masked = mpidr & mask;
|
|
|
|
* aff0 = mpidr_masked & 0xff;
|
|
|
|
* aff1 = mpidr_masked & 0xff00;
|
|
|
|
* aff2 = mpidr_masked & 0xff0000;
|
|
|
|
* dst = (aff0 >> rs0 | aff1 >> rs1 | aff2 >> rs2);
|
|
|
|
*}
|
|
|
|
* Input registers: rs0, rs1, rs2, mpidr, mask
|
|
|
|
* Output register: dst
|
|
|
|
* Note: input and output registers must be disjoint register sets
|
|
|
|
(eg: a macro instance with mpidr = r1 and dst = r1 is invalid)
|
|
|
|
*/
|
|
|
|
.macro compute_mpidr_hash dst, rs0, rs1, rs2, mpidr, mask
|
|
|
|
and \mpidr, \mpidr, \mask @ mask out MPIDR bits
|
|
|
|
and \dst, \mpidr, #0xff @ mask=aff0
|
|
|
|
ARM( mov \dst, \dst, lsr \rs0 ) @ dst=aff0>>rs0
|
|
|
|
THUMB( lsr \dst, \dst, \rs0 )
|
|
|
|
and \mask, \mpidr, #0xff00 @ mask = aff1
|
|
|
|
ARM( orr \dst, \dst, \mask, lsr \rs1 ) @ dst|=(aff1>>rs1)
|
|
|
|
THUMB( lsr \mask, \mask, \rs1 )
|
|
|
|
THUMB( orr \dst, \dst, \mask )
|
|
|
|
and \mask, \mpidr, #0xff0000 @ mask = aff2
|
|
|
|
ARM( orr \dst, \dst, \mask, lsr \rs2 ) @ dst|=(aff2>>rs2)
|
|
|
|
THUMB( lsr \mask, \mask, \rs2 )
|
|
|
|
THUMB( orr \dst, \dst, \mask )
|
|
|
|
.endm
|
|
|
|
|
2011-02-06 16:48:39 +01:00
|
|
|
/*
|
2011-09-01 12:52:33 +02:00
|
|
|
* Save CPU state for a suspend. This saves the CPU general purpose
|
|
|
|
* registers, and allocates space on the kernel stack to save the CPU
|
|
|
|
* specific registers and some other data for resume.
|
|
|
|
* r0 = suspend function arg0
|
|
|
|
* r1 = suspend function
|
2013-07-18 22:50:59 +02:00
|
|
|
* r2 = MPIDR value the resuming CPU will use
|
2011-02-06 16:48:39 +01:00
|
|
|
*/
|
2011-06-22 18:41:48 +02:00
|
|
|
ENTRY(__cpu_suspend)
|
2011-06-13 16:58:34 +02:00
|
|
|
stmfd sp!, {r4 - r11, lr}
|
2011-02-06 16:48:39 +01:00
|
|
|
#ifdef MULTI_CPU
|
|
|
|
ldr r10, =processor
|
2011-09-01 12:52:33 +02:00
|
|
|
ldr r4, [r10, #CPU_SLEEP_SIZE] @ size of CPU sleep state
|
2011-02-11 12:32:19 +01:00
|
|
|
#else
|
2011-09-01 12:52:33 +02:00
|
|
|
ldr r4, =cpu_suspend_size
|
2011-06-13 14:53:06 +02:00
|
|
|
#endif
|
2011-09-01 12:52:33 +02:00
|
|
|
mov r5, sp @ current virtual SP
|
|
|
|
add r4, r4, #12 @ Space for pgd, virt sp, phys resume fn
|
|
|
|
sub sp, sp, r4 @ allocate CPU state on stack
|
|
|
|
ldr r3, =sleep_save_sp
|
2013-07-18 22:50:59 +02:00
|
|
|
stmfd sp!, {r0, r1} @ save suspend func arg and pointer
|
2013-05-16 11:34:30 +02:00
|
|
|
ldr r3, [r3, #SLEEP_SAVE_SP_VIRT]
|
2013-07-18 22:50:59 +02:00
|
|
|
ALT_SMP(ldr r0, =mpidr_hash)
|
|
|
|
ALT_UP_B(1f)
|
|
|
|
/* This ldmia relies on the memory layout of the mpidr_hash struct */
|
|
|
|
ldmia r0, {r1, r6-r8} @ r1 = mpidr mask (r6,r7,r8) = l[0,1,2] shifts
|
|
|
|
compute_mpidr_hash r0, r6, r7, r8, r2, r1
|
|
|
|
add r3, r3, r0, lsl #2
|
|
|
|
1: mov r2, r5 @ virtual SP
|
|
|
|
mov r1, r4 @ size of save block
|
|
|
|
add r0, sp, #8 @ pointer to save block
|
2011-09-01 12:52:33 +02:00
|
|
|
bl __cpu_suspend_save
|
2011-07-02 10:54:01 +02:00
|
|
|
adr lr, BSYM(cpu_suspend_abort)
|
2011-06-13 16:28:40 +02:00
|
|
|
ldmfd sp!, {r0, pc} @ call suspend fn
|
2011-06-22 18:41:48 +02:00
|
|
|
ENDPROC(__cpu_suspend)
|
2011-02-06 16:48:39 +01:00
|
|
|
.ltorg
|
|
|
|
|
2011-07-02 10:54:01 +02:00
|
|
|
cpu_suspend_abort:
|
2011-08-27 23:39:09 +02:00
|
|
|
ldmia sp!, {r1 - r3} @ pop phys pgd, virt SP, phys resume fn
|
2011-08-27 12:17:36 +02:00
|
|
|
teq r0, #0
|
|
|
|
moveq r0, #1 @ force non-zero value
|
2011-07-02 10:54:01 +02:00
|
|
|
mov sp, r2
|
|
|
|
ldmfd sp!, {r4 - r11, pc}
|
|
|
|
ENDPROC(cpu_suspend_abort)
|
|
|
|
|
2011-02-06 16:48:39 +01:00
|
|
|
/*
|
|
|
|
* r0 = control register value
|
|
|
|
*/
|
2011-09-01 00:26:18 +02:00
|
|
|
.align 5
|
2011-11-15 12:11:19 +01:00
|
|
|
.pushsection .idmap.text,"ax"
|
2011-02-06 16:48:39 +01:00
|
|
|
ENTRY(cpu_resume_mmu)
|
|
|
|
ldr r3, =cpu_resume_after_mmu
|
2011-11-22 18:30:28 +01:00
|
|
|
instr_sync
|
2011-08-26 21:28:52 +02:00
|
|
|
mcr p15, 0, r0, c1, c0, 0 @ turn on MMU, I-cache, etc
|
|
|
|
mrc p15, 0, r0, c0, c0, 0 @ read id reg
|
2011-11-22 18:30:28 +01:00
|
|
|
instr_sync
|
2011-08-26 21:28:52 +02:00
|
|
|
mov r0, r0
|
|
|
|
mov r0, r0
|
2011-02-06 16:48:39 +01:00
|
|
|
mov pc, r3 @ jump to virtual address
|
2011-09-01 00:26:18 +02:00
|
|
|
ENDPROC(cpu_resume_mmu)
|
2011-11-15 12:11:19 +01:00
|
|
|
.popsection
|
2011-02-06 16:48:39 +01:00
|
|
|
cpu_resume_after_mmu:
|
2011-06-21 17:32:58 +02:00
|
|
|
bl cpu_init @ restore the und/abt/irq banked regs
|
2011-07-02 10:54:01 +02:00
|
|
|
mov r0, #0 @ return zero on success
|
2011-06-13 16:04:14 +02:00
|
|
|
ldmfd sp!, {r4 - r11, pc}
|
2011-02-06 16:48:39 +01:00
|
|
|
ENDPROC(cpu_resume_after_mmu)
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Note: Yes, part of the following code is located into the .data section.
|
|
|
|
* This is to allow sleep_save_sp to be accessed with a relative load
|
|
|
|
* while we can't rely on any MMU translation. We could have put
|
|
|
|
* sleep_save_sp in the .text section as well, but some setups might
|
|
|
|
* insist on it to be truly read-only.
|
|
|
|
*/
|
|
|
|
.data
|
|
|
|
.align
|
|
|
|
ENTRY(cpu_resume)
|
2013-02-01 10:40:42 +01:00
|
|
|
ARM_BE8(setend be) @ ensure we are in BE mode
|
2013-05-16 11:34:30 +02:00
|
|
|
mov r1, #0
|
|
|
|
ALT_SMP(mrc p15, 0, r0, c0, c0, 5)
|
|
|
|
ALT_UP_B(1f)
|
|
|
|
adr r2, mpidr_hash_ptr
|
|
|
|
ldr r3, [r2]
|
|
|
|
add r2, r2, r3 @ r2 = struct mpidr_hash phys address
|
|
|
|
/*
|
|
|
|
* This ldmia relies on the memory layout of the mpidr_hash
|
|
|
|
* struct mpidr_hash.
|
|
|
|
*/
|
|
|
|
ldmia r2, { r3-r6 } @ r3 = mpidr mask (r4,r5,r6) = l[0,1,2] shifts
|
|
|
|
compute_mpidr_hash r1, r4, r5, r6, r0, r3
|
|
|
|
1:
|
|
|
|
adr r0, _sleep_save_sp
|
|
|
|
ldr r0, [r0, #SLEEP_SAVE_SP_PHYS]
|
|
|
|
ldr r0, [r0, r1, lsl #2]
|
|
|
|
|
2011-03-22 19:09:14 +01:00
|
|
|
setmode PSR_I_BIT | PSR_F_BIT | SVC_MODE, r1 @ set SVC, irqs off
|
2011-08-27 23:39:09 +02:00
|
|
|
@ load phys pgd, stack, resume fn
|
|
|
|
ARM( ldmia r0!, {r1, sp, pc} )
|
|
|
|
THUMB( ldmia r0!, {r1, r2, r3} )
|
|
|
|
THUMB( mov sp, r2 )
|
|
|
|
THUMB( bx r3 )
|
2011-02-06 16:48:39 +01:00
|
|
|
ENDPROC(cpu_resume)
|
|
|
|
|
2013-05-16 11:34:30 +02:00
|
|
|
.align 2
|
|
|
|
mpidr_hash_ptr:
|
|
|
|
.long mpidr_hash - . @ mpidr_hash struct offset
|
|
|
|
|
|
|
|
.type sleep_save_sp, #object
|
|
|
|
ENTRY(sleep_save_sp)
|
|
|
|
_sleep_save_sp:
|
|
|
|
.space SLEEP_SAVE_SP_SZ @ struct sleep_save_sp
|