thread_info.h 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  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. #ifdef CONFIG_ARM64_4K_PAGES
  24. #define THREAD_SIZE_ORDER 2
  25. #elif defined(CONFIG_ARM64_16K_PAGES)
  26. #define THREAD_SIZE_ORDER 0
  27. #endif
  28. #define THREAD_SIZE 16384
  29. #define THREAD_START_SP (THREAD_SIZE - 16)
  30. #ifndef __ASSEMBLY__
  31. struct task_struct;
  32. #include <asm/stack_pointer.h>
  33. #include <asm/types.h>
  34. typedef unsigned long mm_segment_t;
  35. /*
  36. * low level task data that entry.S needs immediate access to.
  37. */
  38. struct thread_info {
  39. unsigned long flags; /* low level flags */
  40. mm_segment_t addr_limit; /* address limit */
  41. #ifdef CONFIG_ARM64_SW_TTBR0_PAN
  42. u64 ttbr0; /* saved TTBR0_EL1 */
  43. #endif
  44. int preempt_count; /* 0 => preemptable, <0 => bug */
  45. };
  46. #define INIT_THREAD_INFO(tsk) \
  47. { \
  48. .preempt_count = INIT_PREEMPT_COUNT, \
  49. .addr_limit = KERNEL_DS, \
  50. }
  51. #define init_stack (init_thread_union.stack)
  52. #define thread_saved_pc(tsk) \
  53. ((unsigned long)(tsk->thread.cpu_context.pc))
  54. #define thread_saved_sp(tsk) \
  55. ((unsigned long)(tsk->thread.cpu_context.sp))
  56. #define thread_saved_fp(tsk) \
  57. ((unsigned long)(tsk->thread.cpu_context.fp))
  58. #endif
  59. /*
  60. * thread information flags:
  61. * TIF_SYSCALL_TRACE - syscall trace active
  62. * TIF_SYSCALL_TRACEPOINT - syscall tracepoint for ftrace
  63. * TIF_SYSCALL_AUDIT - syscall auditing
  64. * TIF_SECOMP - syscall secure computing
  65. * TIF_SIGPENDING - signal pending
  66. * TIF_NEED_RESCHED - rescheduling necessary
  67. * TIF_NOTIFY_RESUME - callback before returning to user
  68. * TIF_USEDFPU - FPU was used by this task this quantum (SMP)
  69. */
  70. #define TIF_SIGPENDING 0
  71. #define TIF_NEED_RESCHED 1
  72. #define TIF_NOTIFY_RESUME 2 /* callback before returning to user */
  73. #define TIF_FOREIGN_FPSTATE 3 /* CPU's FP state is not current's */
  74. #define TIF_UPROBE 4 /* uprobe breakpoint or singlestep */
  75. #define TIF_NOHZ 7
  76. #define TIF_SYSCALL_TRACE 8
  77. #define TIF_SYSCALL_AUDIT 9
  78. #define TIF_SYSCALL_TRACEPOINT 10
  79. #define TIF_SECCOMP 11
  80. #define TIF_MEMDIE 18 /* is terminating due to OOM killer */
  81. #define TIF_FREEZE 19
  82. #define TIF_RESTORE_SIGMASK 20
  83. #define TIF_SINGLESTEP 21
  84. #define TIF_32BIT 22 /* 32bit process */
  85. #define _TIF_SIGPENDING (1 << TIF_SIGPENDING)
  86. #define _TIF_NEED_RESCHED (1 << TIF_NEED_RESCHED)
  87. #define _TIF_NOTIFY_RESUME (1 << TIF_NOTIFY_RESUME)
  88. #define _TIF_FOREIGN_FPSTATE (1 << TIF_FOREIGN_FPSTATE)
  89. #define _TIF_NOHZ (1 << TIF_NOHZ)
  90. #define _TIF_SYSCALL_TRACE (1 << TIF_SYSCALL_TRACE)
  91. #define _TIF_SYSCALL_AUDIT (1 << TIF_SYSCALL_AUDIT)
  92. #define _TIF_SYSCALL_TRACEPOINT (1 << TIF_SYSCALL_TRACEPOINT)
  93. #define _TIF_SECCOMP (1 << TIF_SECCOMP)
  94. #define _TIF_UPROBE (1 << TIF_UPROBE)
  95. #define _TIF_32BIT (1 << TIF_32BIT)
  96. #define _TIF_WORK_MASK (_TIF_NEED_RESCHED | _TIF_SIGPENDING | \
  97. _TIF_NOTIFY_RESUME | _TIF_FOREIGN_FPSTATE | \
  98. _TIF_UPROBE)
  99. #define _TIF_SYSCALL_WORK (_TIF_SYSCALL_TRACE | _TIF_SYSCALL_AUDIT | \
  100. _TIF_SYSCALL_TRACEPOINT | _TIF_SECCOMP | \
  101. _TIF_NOHZ)
  102. #endif /* __KERNEL__ */
  103. #endif /* __ASM_THREAD_INFO_H */