18c2ecf20Sopenharmony_ci/* SPDX-License-Identifier: GPL-2.0 */
28c2ecf20Sopenharmony_ci#ifndef __ASM_CPU_SH2_SIGCONTEXT_H
38c2ecf20Sopenharmony_ci#define __ASM_CPU_SH2_SIGCONTEXT_H
48c2ecf20Sopenharmony_ci
58c2ecf20Sopenharmony_cistruct sigcontext {
68c2ecf20Sopenharmony_ci	unsigned long	oldmask;
78c2ecf20Sopenharmony_ci
88c2ecf20Sopenharmony_ci	/* CPU registers */
98c2ecf20Sopenharmony_ci	unsigned long sc_regs[16];
108c2ecf20Sopenharmony_ci	unsigned long sc_pc;
118c2ecf20Sopenharmony_ci	unsigned long sc_pr;
128c2ecf20Sopenharmony_ci	unsigned long sc_sr;
138c2ecf20Sopenharmony_ci	unsigned long sc_gbr;
148c2ecf20Sopenharmony_ci	unsigned long sc_mach;
158c2ecf20Sopenharmony_ci	unsigned long sc_macl;
168c2ecf20Sopenharmony_ci};
178c2ecf20Sopenharmony_ci
188c2ecf20Sopenharmony_ci#endif /* __ASM_CPU_SH2_SIGCONTEXT_H */
19