thread_info.h 4.6 KB

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