thread_info.h 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. /*
  2. * Based on arch/arm/include/asm/thread_info.h
  3. *
  4. * Copyright (C) 2002 Russell King.
  5. * Copyright (C) 2012 ARM Ltd.
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License version 2 as
  9. * published by the Free Software Foundation.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  18. */
  19. #ifndef __ASM_THREAD_INFO_H
  20. #define __ASM_THREAD_INFO_H
  21. #ifdef __KERNEL__
  22. #include <linux/compiler.h>
  23. #ifndef CONFIG_ARM64_64K_PAGES
  24. #define THREAD_SIZE_ORDER 2
  25. #endif
  26. #define THREAD_SIZE 16384
  27. #define THREAD_START_SP (THREAD_SIZE - 16)
  28. #ifndef __ASSEMBLY__
  29. struct task_struct;
  30. struct exec_domain;
  31. #include <asm/types.h>
  32. typedef unsigned long mm_segment_t;
  33. /*
  34. * low level task data that entry.S needs immediate access to.
  35. * __switch_to() assumes cpu_context follows immediately after cpu_domain.
  36. */
  37. struct thread_info {
  38. unsigned long flags; /* low level flags */
  39. mm_segment_t addr_limit; /* address limit */
  40. struct task_struct *task; /* main task structure */
  41. struct exec_domain *exec_domain; /* execution domain */
  42. struct restart_block restart_block;
  43. int preempt_count; /* 0 => preemptable, <0 => bug */
  44. int cpu; /* cpu */
  45. };
  46. #define INIT_THREAD_INFO(tsk) \
  47. { \
  48. .task = &tsk, \
  49. .exec_domain = &default_exec_domain, \
  50. .flags = 0, \
  51. .preempt_count = INIT_PREEMPT_COUNT, \
  52. .addr_limit = KERNEL_DS, \
  53. .restart_block = { \
  54. .fn = do_no_restart_syscall, \
  55. }, \
  56. }
  57. #define init_thread_info (init_thread_union.thread_info)
  58. #define init_stack (init_thread_union.stack)
  59. /*
  60. * how to get the current stack pointer from C
  61. */
  62. register unsigned long current_stack_pointer asm ("sp");
  63. /*
  64. * how to get the thread information struct from C
  65. */
  66. static inline struct thread_info *current_thread_info(void) __attribute_const__;
  67. static inline struct thread_info *current_thread_info(void)
  68. {
  69. return (struct thread_info *)
  70. (current_stack_pointer & ~(THREAD_SIZE - 1));
  71. }
  72. #define thread_saved_pc(tsk) \
  73. ((unsigned long)(tsk->thread.cpu_context.pc))
  74. #define thread_saved_sp(tsk) \
  75. ((unsigned long)(tsk->thread.cpu_context.sp))
  76. #define thread_saved_fp(tsk) \
  77. ((unsigned long)(tsk->thread.cpu_context.fp))
  78. #endif
  79. /*
  80. * thread information flags:
  81. * TIF_SYSCALL_TRACE - syscall trace active
  82. * TIF_SYSCALL_TRACEPOINT - syscall tracepoint for ftrace
  83. * TIF_SYSCALL_AUDIT - syscall auditing
  84. * TIF_SECOMP - syscall secure computing
  85. * TIF_SIGPENDING - signal pending
  86. * TIF_NEED_RESCHED - rescheduling necessary
  87. * TIF_NOTIFY_RESUME - callback before returning to user
  88. * TIF_USEDFPU - FPU was used by this task this quantum (SMP)
  89. */
  90. #define TIF_SIGPENDING 0
  91. #define TIF_NEED_RESCHED 1
  92. #define TIF_NOTIFY_RESUME 2 /* callback before returning to user */
  93. #define TIF_FOREIGN_FPSTATE 3 /* CPU's FP state is not current's */
  94. #define TIF_NOHZ 7
  95. #define TIF_SYSCALL_TRACE 8
  96. #define TIF_SYSCALL_AUDIT 9
  97. #define TIF_SYSCALL_TRACEPOINT 10
  98. #define TIF_SECCOMP 11
  99. #define TIF_MEMDIE 18 /* is terminating due to OOM killer */
  100. #define TIF_FREEZE 19
  101. #define TIF_RESTORE_SIGMASK 20
  102. #define TIF_SINGLESTEP 21
  103. #define TIF_32BIT 22 /* 32bit process */
  104. #define TIF_SWITCH_MM 23 /* deferred switch_mm */
  105. #define _TIF_SIGPENDING (1 << TIF_SIGPENDING)
  106. #define _TIF_NEED_RESCHED (1 << TIF_NEED_RESCHED)
  107. #define _TIF_NOTIFY_RESUME (1 << TIF_NOTIFY_RESUME)
  108. #define _TIF_FOREIGN_FPSTATE (1 << TIF_FOREIGN_FPSTATE)
  109. #define _TIF_NOHZ (1 << TIF_NOHZ)
  110. #define _TIF_SYSCALL_TRACE (1 << TIF_SYSCALL_TRACE)
  111. #define _TIF_SYSCALL_AUDIT (1 << TIF_SYSCALL_AUDIT)
  112. #define _TIF_SYSCALL_TRACEPOINT (1 << TIF_SYSCALL_TRACEPOINT)
  113. #define _TIF_SECCOMP (1 << TIF_SECCOMP)
  114. #define _TIF_32BIT (1 << TIF_32BIT)
  115. #define _TIF_WORK_MASK (_TIF_NEED_RESCHED | _TIF_SIGPENDING | \
  116. _TIF_NOTIFY_RESUME | _TIF_FOREIGN_FPSTATE)
  117. #define _TIF_SYSCALL_WORK (_TIF_SYSCALL_TRACE | _TIF_SYSCALL_AUDIT | \
  118. _TIF_SYSCALL_TRACEPOINT | _TIF_SECCOMP | \
  119. _TIF_NOHZ)
  120. #endif /* __KERNEL__ */
  121. #endif /* __ASM_THREAD_INFO_H */