Blame view

kernel/linux-rt-4.4.41/arch/arm/include/asm/bug.h 2.5 KB
5113f6f70   김현기   kernel add
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
  #ifndef _ASMARM_BUG_H
  #define _ASMARM_BUG_H
  
  #include <linux/linkage.h>
  #include <linux/types.h>
  #include <asm/opcodes.h>
  
  #ifdef CONFIG_BUG
  
  /*
   * Use a suitable undefined instruction to use for ARM/Thumb2 bug handling.
   * We need to be careful not to conflict with those used by other modules and
   * the register_undef_hook() system.
   */
  #ifdef CONFIG_THUMB2_KERNEL
  #define BUG_INSTR_VALUE 0xde02
  #define BUG_INSTR(__value) __inst_thumb16(__value)
  #else
  #define BUG_INSTR_VALUE 0xe7f001f2
  #define BUG_INSTR(__value) __inst_arm(__value)
  #endif
  
  
  #define BUG() _BUG(__FILE__, __LINE__, BUG_INSTR_VALUE)
  #define _BUG(file, line, value) __BUG(file, line, value)
  
  #ifdef CONFIG_DEBUG_BUGVERBOSE
  
  /*
   * The extra indirection is to ensure that the __FILE__ string comes through
   * OK. Many version of gcc do not support the asm %c parameter which would be
   * preferable to this unpleasantness. We use mergeable string sections to
   * avoid multiple copies of the string appearing in the kernel image.
   */
  
  #define __BUG(__file, __line, __value)				\
  do {								\
  	asm volatile("1:\t" BUG_INSTR(__value) "
  "  \
  		".pushsection .rodata.str, \"aMS\", %progbits, 1
  " \
  		"2:\t.asciz " #__file "
  " 			\
  		".popsection
  " 				\
  		".pushsection __bug_table,\"a\"
  "		\
  		".align 2
  "					\
  		"3:\t.word 1b, 2b
  "				\
  		"\t.hword " #__line ", 0
  "			\
  		".popsection");					\
  	unreachable();						\
  } while (0)
  
  #else  /* not CONFIG_DEBUG_BUGVERBOSE */
  
  #define __BUG(__file, __line, __value)				\
  do {								\
  	asm volatile(BUG_INSTR(__value) "
  ");			\
  	unreachable();						\
  } while (0)
  #endif  /* CONFIG_DEBUG_BUGVERBOSE */
  
  #define HAVE_ARCH_BUG
  #endif  /* CONFIG_BUG */
  
  #include <asm-generic/bug.h>
  
  struct pt_regs;
  void die(const char *msg, struct pt_regs *regs, int err);
  
  struct siginfo;
  void arm_notify_die(const char *str, struct pt_regs *regs, struct siginfo *info,
  		unsigned long err, unsigned long trap);
  
  #ifdef CONFIG_ARM_LPAE
  #define FAULT_CODE_ALIGNMENT	33
  #define FAULT_CODE_DEBUG	34
  #else
  #define FAULT_CODE_ALIGNMENT	1
  #define FAULT_CODE_DEBUG	2
  #endif
  
  void hook_fault_code(int nr, int (*fn)(unsigned long, unsigned int,
  				       struct pt_regs *),
  		     int sig, int code, const char *name);
  
  void hook_ifault_code(int nr, int (*fn)(unsigned long, unsigned int,
  				       struct pt_regs *),
  		     int sig, int code, const char *name);
  
  extern asmlinkage void c_backtrace(unsigned long fp, int pmode);
  
  struct mm_struct;
  extern void show_pte(struct mm_struct *mm, unsigned long addr);
  extern void __show_regs(struct pt_regs *);
  
  #endif