1 /* SPDX-License-Identifier: GPL-2.0 */
3 * Copyright IBM Corp. 1999, 2023
5 #ifndef _ASM_S390_FAULT_H
6 #define _ASM_S390_FAULT_H
11 unsigned long addr : 52; /* Translation-exception Address */
12 unsigned long fsi : 2; /* Access Exception Fetch/Store Indication */
14 unsigned long b56 : 1;
16 unsigned long b60 : 1;
17 unsigned long b61 : 1;
18 unsigned long as : 2; /* ASCE Identifier */
23 TEID_FSI_UNKNOWN = 0, /* Unknown whether fetch or store */
24 TEID_FSI_STORE = 1, /* Exception was due to store operation */
25 TEID_FSI_FETCH = 2 /* Exception was due to fetch operation */
28 #endif /* _ASM_S390_FAULT_H */