1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * (C) Copyright 2017 Theobroma Systems Design und Consulting GmbH
4  * (C) Copyright 2016 Alexander Graf <agraf@suse.de>
5  */
6 
7 #ifndef _ASM_SETJMP_H_
8 #define _ASM_SETJMP_H_	1
9 
10 #include <asm-generic/int-ll64.h>
11 
12 struct jmp_buf_data {
13 #if defined(__aarch64__)
14 	u64  regs[13];
15 #else
16 	u32  regs[10];  /* r4-r9, sl, fp, sp, lr */
17 #endif
18 };
19 
20 #endif /* _ASM_SETJMP_H_ */
21