Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0+ */
0002 /*
0003  * Copyright (c) 2011-2014 Samsung Electronics Co., Ltd.
0004  *      http://www.samsung.com
0005  *
0006  * S5PV210 Sleep Code
0007  * Based on S3C64XX sleep code by:
0008  *  Ben Dooks, (c) 2008 Simtec Electronics
0009  */
0010 
0011 #include <linux/linkage.h>
0012 
0013     .text
0014     .align
0015 
0016     /*
0017      * sleep magic, to allow the bootloader to check for an valid
0018      * image to resume to. Must be the first word before the
0019      * s3c_cpu_resume entry.
0020      */
0021 
0022     .word   0x2bedf00d
0023 
0024     /*
0025      * s3c_cpu_resume
0026      *
0027      * resume code entry for bootloader to call
0028      */
0029 
0030 ENTRY(s5pv210_cpu_resume)
0031     b   cpu_resume
0032 ENDPROC(s5pv210_cpu_resume)