mmc: block: inline command abortions
[linux-2.6/btrfs-unstable.git] / arch / arm / mm / fault.h
blobafc1f84e763b248b2193715e757d432cc055eac8
1 #ifndef __ARCH_ARM_FAULT_H
2 #define __ARCH_ARM_FAULT_H
4 /*
5 * Fault status register encodings. We steal bit 31 for our own purposes.
6 */
7 #define FSR_LNX_PF (1 << 31)
8 #define FSR_WRITE (1 << 11)
9 #define FSR_FS4 (1 << 10)
10 #define FSR_FS3_0 (15)
11 #define FSR_FS5_0 (0x3f)
13 #ifdef CONFIG_ARM_LPAE
14 #define FSR_FS_AEA 17
16 static inline int fsr_fs(unsigned int fsr)
18 return fsr & FSR_FS5_0;
20 #else
21 #define FSR_FS_AEA 22
23 static inline int fsr_fs(unsigned int fsr)
25 return (fsr & FSR_FS3_0) | (fsr & FSR_FS4) >> 6;
27 #endif
29 void do_bad_area(unsigned long addr, unsigned int fsr, struct pt_regs *regs);
30 void early_abt_enable(void);
32 #endif /* __ARCH_ARM_FAULT_H */