thread_info.h 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. /*
  2. * include/asm-v850/thread_info.h -- v850 low-level thread information
  3. *
  4. * Copyright (C) 2002 NEC Corporation
  5. * Copyright (C) 2002 Miles Bader <miles@gnu.org>
  6. * Copyright (C) 2002 David Howells (dhowells@redhat.com)
  7. * - Incorporating suggestions made by Linus Torvalds and Dave Miller
  8. *
  9. * This file is subject to the terms and conditions of the GNU General
  10. * Public License. See the file COPYING in the main directory of this
  11. * archive for more details.
  12. *
  13. * This file was derived from the PPC version, include/asm-ppc/thread_info.h
  14. * which was adapted from the i386 version by Paul Mackerras
  15. */
  16. #ifndef __V850_THREAD_INFO_H__
  17. #define __V850_THREAD_INFO_H__
  18. #ifdef __KERNEL__
  19. #ifndef __ASSEMBLY__
  20. /*
  21. * low level task data.
  22. * If you change this, change the TI_* offsets below to match.
  23. */
  24. struct thread_info {
  25. struct task_struct *task; /* main task structure */
  26. struct exec_domain *exec_domain; /* execution domain */
  27. unsigned long flags; /* low level flags */
  28. int cpu; /* cpu we're on */
  29. int preempt_count; /* 0 => preemptable,
  30. <0 => BUG */
  31. struct restart_block restart_block;
  32. };
  33. #define INIT_THREAD_INFO(tsk) \
  34. { \
  35. .task = &tsk, \
  36. .exec_domain = &default_exec_domain, \
  37. .flags = 0, \
  38. .cpu = 0, \
  39. .preempt_count = 1, \
  40. .restart_block = { \
  41. .fn = do_no_restart_syscall, \
  42. }, \
  43. }
  44. #define init_thread_info (init_thread_union.thread_info)
  45. #define init_stack (init_thread_union.stack)
  46. /*
  47. * macros/functions for gaining access to the thread information structure
  48. */
  49. /* thread information allocation */
  50. #define alloc_thread_info(tsk) ((struct thread_info *) \
  51. __get_free_pages(GFP_KERNEL, 1))
  52. #define free_thread_info(ti) free_pages((unsigned long) (ti), 1)
  53. #endif /* __ASSEMBLY__ */
  54. /*
  55. * Offsets in thread_info structure, used in assembly code
  56. */
  57. #define TI_TASK 0
  58. #define TI_EXECDOMAIN 4
  59. #define TI_FLAGS 8
  60. #define TI_CPU 12
  61. #define TI_PREEMPT 16
  62. #define PREEMPT_ACTIVE 0x4000000
  63. /*
  64. * thread information flag bit numbers
  65. */
  66. #define TIF_SYSCALL_TRACE 0 /* syscall trace active */
  67. #define TIF_NOTIFY_RESUME 1 /* resumption notification requested */
  68. #define TIF_SIGPENDING 2 /* signal pending */
  69. #define TIF_NEED_RESCHED 3 /* rescheduling necessary */
  70. #define TIF_POLLING_NRFLAG 4 /* true if poll_idle() is polling
  71. TIF_NEED_RESCHED */
  72. #define TIF_MEMDIE 5
  73. /* as above, but as bit values */
  74. #define _TIF_SYSCALL_TRACE (1<<TIF_SYSCALL_TRACE)
  75. #define _TIF_NOTIFY_RESUME (1<<TIF_NOTIFY_RESUME)
  76. #define _TIF_SIGPENDING (1<<TIF_SIGPENDING)
  77. #define _TIF_NEED_RESCHED (1<<TIF_NEED_RESCHED)
  78. #define _TIF_POLLING_NRFLAG (1<<TIF_POLLING_NRFLAG)
  79. /* Size of kernel stack for each process. */
  80. #define THREAD_SIZE 0x2000
  81. /* The alignment of kernel threads, with thread_info structures at their
  82. base. Thus, a pointer for a task's task structure can be derived from
  83. its kernel stack pointer. */
  84. #define THREAD_ALIGNMENT THREAD_SIZE
  85. #define THREAD_MASK (-THREAD_ALIGNMENT)
  86. #ifdef __ASSEMBLY__
  87. /* Put a pointer to the current thread_info structure into REG. Note that
  88. this definition requires THREAD_MASK to be representable as a signed
  89. 16-bit value. */
  90. #define GET_CURRENT_THREAD(reg) \
  91. /* Use `addi' and then `and' instead of just `andi', because \
  92. `addi' sign-extends the immediate value, whereas `andi' \
  93. zero-extends it. */ \
  94. addi THREAD_MASK, r0, reg; \
  95. and sp, reg
  96. #else
  97. /* Return a pointer to the current thread_info structure. */
  98. static inline struct thread_info *current_thread_info (void)
  99. {
  100. register unsigned long sp __asm__ ("sp");
  101. return (struct thread_info *)(sp & THREAD_MASK);
  102. }
  103. #endif /* __ASSEMBLY__ */
  104. #endif /* __KERNEL__ */
  105. #endif /* __V850_THREAD_INFO_H__ */