mirror of
https://github.com/u-boot/u-boot.git
synced 2025-01-15 23:33:24 +08:00
37 lines
471 B
ArmAsm
37 lines
471 B
ArmAsm
|
#include <config.h>
|
||
|
#include <linux/linkage.h>
|
||
|
|
||
|
#include <asm/armv7.h>
|
||
|
#include <asm/arch-armv7/generictimer.h>
|
||
|
#include <asm/psci.h>
|
||
|
|
||
|
.pushsection ._secure.text, "ax"
|
||
|
|
||
|
.arch_extension sec
|
||
|
|
||
|
.globl psci_cpu_on
|
||
|
psci_cpu_on:
|
||
|
push {lr}
|
||
|
|
||
|
mov r0, r1
|
||
|
bl psci_get_cpu_stack_top
|
||
|
str r2, [r0]
|
||
|
dsb
|
||
|
|
||
|
ldr r2, =psci_cpu_entry
|
||
|
bl imx_cpu_on
|
||
|
|
||
|
pop {pc}
|
||
|
|
||
|
.globl psci_cpu_off
|
||
|
psci_cpu_off:
|
||
|
|
||
|
bl psci_cpu_off_common
|
||
|
bl psci_get_cpu_id
|
||
|
bl imx_cpu_off
|
||
|
|
||
|
1: wfi
|
||
|
b 1b
|
||
|
|
||
|
.popsection
|