1/* SPDX-License-Identifier: GPL-2.0+ */ 2/* 3 * Copyright (c) 2011-2014 Samsung Electronics Co., Ltd. 4 * http://www.samsung.com 5 * 6 * S5PV210 Sleep Code 7 * Based on S3C64XX sleep code by: 8 * Ben Dooks, (c) 2008 Simtec Electronics 9 */ 10 11#include <linux/linkage.h> 12 13 .text 14 .align 15 16 /* 17 * sleep magic, to allow the bootloader to check for an valid 18 * image to resume to. Must be the first word before the 19 * s3c_cpu_resume entry. 20 */ 21 22 .word 0x2bedf00d 23 24 /* 25 * s3c_cpu_resume 26 * 27 * resume code entry for bootloader to call 28 */ 29 30ENTRY(s5pv210_cpu_resume) 31 b cpu_resume 32ENDPROC(s5pv210_cpu_resume) 33