thread_info.h 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172
  1. /* MN10300 Low-level thread information
  2. *
  3. * Copyright (C) 2007 Red Hat, Inc. All Rights Reserved.
  4. * Written by David Howells (dhowells@redhat.com)
  5. *
  6. * This program is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU General Public Licence
  8. * as published by the Free Software Foundation; either version
  9. * 2 of the Licence, or (at your option) any later version.
  10. */
  11. #ifndef _ASM_THREAD_INFO_H
  12. #define _ASM_THREAD_INFO_H
  13. #ifdef __KERNEL__
  14. #include <asm/page.h>
  15. #define PREEMPT_ACTIVE 0x10000000
  16. #ifdef CONFIG_4KSTACKS
  17. #define THREAD_SIZE (4096)
  18. #define THREAD_SIZE_ORDER (0)
  19. #else
  20. #define THREAD_SIZE (8192)
  21. #define THREAD_SIZE_ORDER (1)
  22. #endif
  23. #define STACK_WARN (THREAD_SIZE / 8)
  24. /*
  25. * low level task data that entry.S needs immediate access to
  26. * - this struct should fit entirely inside of one cache line
  27. * - this struct shares the supervisor stack pages
  28. * - if the contents of this structure are changed, the assembly constants
  29. * must also be changed
  30. */
  31. #ifndef __ASSEMBLY__
  32. typedef struct {
  33. unsigned long seg;
  34. } mm_segment_t;
  35. struct thread_info {
  36. struct task_struct *task; /* main task structure */
  37. struct exec_domain *exec_domain; /* execution domain */
  38. struct pt_regs *frame; /* current exception frame */
  39. unsigned long flags; /* low level flags */
  40. __u32 cpu; /* current CPU */
  41. __s32 preempt_count; /* 0 => preemptable, <0 => BUG */
  42. mm_segment_t addr_limit; /* thread address space:
  43. 0-0xBFFFFFFF for user-thead
  44. 0-0xFFFFFFFF for kernel-thread
  45. */
  46. struct restart_block restart_block;
  47. __u8 supervisor_stack[0];
  48. };
  49. #define thread_info_to_uregs(ti) \
  50. ((struct pt_regs *) \
  51. ((unsigned long)ti + THREAD_SIZE - sizeof(struct pt_regs)))
  52. #else /* !__ASSEMBLY__ */
  53. #ifndef __ASM_OFFSETS_H__
  54. #include <asm/asm-offsets.h>
  55. #endif
  56. #endif
  57. /*
  58. * macros/functions for gaining access to the thread information structure
  59. */
  60. #ifndef __ASSEMBLY__
  61. #define INIT_THREAD_INFO(tsk) \
  62. { \
  63. .task = &tsk, \
  64. .exec_domain = &default_exec_domain, \
  65. .flags = 0, \
  66. .cpu = 0, \
  67. .preempt_count = INIT_PREEMPT_COUNT, \
  68. .addr_limit = KERNEL_DS, \
  69. .restart_block = { \
  70. .fn = do_no_restart_syscall, \
  71. }, \
  72. }
  73. #define init_thread_info (init_thread_union.thread_info)
  74. #define init_stack (init_thread_union.stack)
  75. #define init_uregs \
  76. ((struct pt_regs *) \
  77. ((unsigned long) init_stack + THREAD_SIZE - sizeof(struct pt_regs)))
  78. extern struct thread_info *__current_ti;
  79. /* how to get the thread information struct from C */
  80. static inline __attribute__((const))
  81. struct thread_info *current_thread_info(void)
  82. {
  83. struct thread_info *ti;
  84. asm("mov sp,%0\n"
  85. "and %1,%0\n"
  86. : "=d" (ti)
  87. : "i" (~(THREAD_SIZE - 1))
  88. : "cc");
  89. return ti;
  90. }
  91. static inline __attribute__((const))
  92. struct pt_regs *current_frame(void)
  93. {
  94. return current_thread_info()->frame;
  95. }
  96. /* how to get the current stack pointer from C */
  97. static inline unsigned long current_stack_pointer(void)
  98. {
  99. unsigned long sp;
  100. asm("mov sp,%0; ":"=r" (sp));
  101. return sp;
  102. }
  103. #ifndef CONFIG_KGDB
  104. void arch_release_thread_info(struct thread_info *ti);
  105. #endif
  106. #define get_thread_info(ti) get_task_struct((ti)->task)
  107. #define put_thread_info(ti) put_task_struct((ti)->task)
  108. #else /* !__ASSEMBLY__ */
  109. #ifndef __VMLINUX_LDS__
  110. /* how to get the thread information struct from ASM */
  111. .macro GET_THREAD_INFO reg
  112. mov sp,\reg
  113. and -THREAD_SIZE,\reg
  114. .endm
  115. #endif
  116. #endif
  117. /*
  118. * thread information flags
  119. * - these are process state flags that various assembly files may need to
  120. * access
  121. * - pending work-to-be-done flags are in LSW
  122. * - other flags in MSW
  123. */
  124. #define TIF_SYSCALL_TRACE 0 /* syscall trace active */
  125. #define TIF_NOTIFY_RESUME 1 /* resumption notification requested */
  126. #define TIF_SIGPENDING 2 /* signal pending */
  127. #define TIF_NEED_RESCHED 3 /* rescheduling necessary */
  128. #define TIF_SINGLESTEP 4 /* restore singlestep on return to user mode */
  129. #define TIF_RESTORE_SIGMASK 5 /* restore signal mask in do_signal() */
  130. #define TIF_POLLING_NRFLAG 16 /* true if poll_idle() is polling TIF_NEED_RESCHED */
  131. #define TIF_MEMDIE 17 /* is terminating due to OOM killer */
  132. #define _TIF_SYSCALL_TRACE +(1 << TIF_SYSCALL_TRACE)
  133. #define _TIF_NOTIFY_RESUME +(1 << TIF_NOTIFY_RESUME)
  134. #define _TIF_SIGPENDING +(1 << TIF_SIGPENDING)
  135. #define _TIF_NEED_RESCHED +(1 << TIF_NEED_RESCHED)
  136. #define _TIF_SINGLESTEP +(1 << TIF_SINGLESTEP)
  137. #define _TIF_POLLING_NRFLAG +(1 << TIF_POLLING_NRFLAG)
  138. #define _TIF_WORK_MASK 0x0000FFFE /* work to do on interrupt/exception return */
  139. #define _TIF_ALLWORK_MASK 0x0000FFFF /* work to do on any return to u-space */
  140. #define tsk_is_polling(t) test_tsk_thread_flag(t, TIF_POLLING_NRFLAG)
  141. #endif /* __KERNEL__ */
  142. #endif /* _ASM_THREAD_INFO_H */