1 /* SPDX-License-Identifier: GPL-2.0-or-later */
3 * Annapurna labs cpu-resume register structure.
5 * Copyright (C) 2015 Annapurna Labs Ltd.
8 #ifndef ALPINE_CPU_RESUME_H_
9 #define ALPINE_CPU_RESUME_H_
12 struct al_cpu_resume_regs_per_cpu
{
18 struct al_cpu_resume_regs
{
19 /* Watermark for validating the CPU resume struct */
22 struct al_cpu_resume_regs_per_cpu per_cpu
[];
25 /* The expected magic number for validating the resume addresses */
26 #define AL_CPU_RESUME_MAGIC_NUM 0xf0e1d200
27 #define AL_CPU_RESUME_MAGIC_NUM_MASK 0xffffff00
29 #endif /* ALPINE_CPU_RESUME_H_ */