thread_info.h
上传用户:szlgq88
上传日期:2009-04-28
资源大小:48287k
文件大小:4k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/include/asm-arm/thread_info.h
  3.  *
  4.  *  Copyright (C) 2002 Russell King.
  5.  *
  6.  * This program is free software; you can redistribute it and/or modify
  7.  * it under the terms of the GNU General Public License version 2 as
  8.  * published by the Free Software Foundation.
  9.  */
  10. #ifndef __ASM_ARM_THREAD_INFO_H
  11. #define __ASM_ARM_THREAD_INFO_H
  12. #ifdef __KERNEL__
  13. #include <asm/fpstate.h>
  14. #define THREAD_SIZE_ORDER 1
  15. #define THREAD_SIZE 8192
  16. #define THREAD_START_SP (THREAD_SIZE - 8)
  17. #ifndef __ASSEMBLY__
  18. struct task_struct;
  19. struct exec_domain;
  20. #include <asm/ptrace.h>
  21. #include <asm/types.h>
  22. #include <asm/domain.h>
  23. typedef unsigned long mm_segment_t;
  24. struct cpu_context_save {
  25. __u32 r4;
  26. __u32 r5;
  27. __u32 r6;
  28. __u32 r7;
  29. __u32 r8;
  30. __u32 r9;
  31. __u32 sl;
  32. __u32 fp;
  33. __u32 sp;
  34. __u32 pc;
  35. __u32 extra[2]; /* Xscale 'acc' register, etc */
  36. };
  37. /*
  38.  * low level task data that entry.S needs immediate access to.
  39.  * __switch_to() assumes cpu_context follows immediately after cpu_domain.
  40.  */
  41. struct thread_info {
  42. unsigned long flags; /* low level flags */
  43. int preempt_count; /* 0 => preemptable, <0 => bug */
  44. mm_segment_t addr_limit; /* address limit */
  45. struct task_struct *task; /* main task structure */
  46. struct exec_domain *exec_domain; /* execution domain */
  47. __u32 cpu; /* cpu */
  48. __u32 cpu_domain; /* cpu domain */
  49. struct cpu_context_save cpu_context; /* cpu context */
  50. __u8 used_cp[16]; /* thread used copro */
  51. unsigned long tp_value;
  52. union fp_state fpstate;
  53. union vfp_state vfpstate;
  54. struct restart_block restart_block;
  55. };
  56. #define INIT_THREAD_INFO(tsk)
  57. {
  58. .task = &tsk,
  59. .exec_domain = &default_exec_domain,
  60. .flags = 0,
  61. .preempt_count = 1,
  62. .addr_limit = KERNEL_DS,
  63. .cpu_domain = domain_val(DOMAIN_USER, DOMAIN_MANAGER) |
  64.   domain_val(DOMAIN_KERNEL, DOMAIN_MANAGER) |
  65.   domain_val(DOMAIN_IO, DOMAIN_CLIENT),
  66. .restart_block = {
  67. .fn = do_no_restart_syscall,
  68. },
  69. }
  70. #define init_thread_info (init_thread_union.thread_info)
  71. #define init_stack (init_thread_union.stack)
  72. /*
  73.  * how to get the thread information struct from C
  74.  */
  75. static inline struct thread_info *current_thread_info(void) __attribute_const__;
  76. static inline struct thread_info *current_thread_info(void)
  77. {
  78. register unsigned long sp asm ("sp");
  79. return (struct thread_info *)(sp & ~(THREAD_SIZE - 1));
  80. }
  81. extern struct thread_info *alloc_thread_info(struct task_struct *task);
  82. extern void free_thread_info(struct thread_info *);
  83. #define get_thread_info(ti) get_task_struct((ti)->task)
  84. #define put_thread_info(ti) put_task_struct((ti)->task)
  85. #define thread_saved_pc(tsk)
  86. ((unsigned long)(pc_pointer((tsk)->thread_info->cpu_context.pc)))
  87. #define thread_saved_fp(tsk)
  88. ((unsigned long)((tsk)->thread_info->cpu_context.fp))
  89. extern void iwmmxt_task_disable(struct thread_info *);
  90. extern void iwmmxt_task_copy(struct thread_info *, void *);
  91. extern void iwmmxt_task_restore(struct thread_info *, void *);
  92. extern void iwmmxt_task_release(struct thread_info *);
  93. #endif
  94. /*
  95.  * We use bit 30 of the preempt_count to indicate that kernel
  96.  * preemption is occuring.  See include/asm-arm/hardirq.h.
  97.  */
  98. #define PREEMPT_ACTIVE 0x40000000
  99. /*
  100.  * thread information flags:
  101.  *  TIF_SYSCALL_TRACE - syscall trace active
  102.  *  TIF_NOTIFY_RESUME - resumption notification requested
  103.  *  TIF_SIGPENDING - signal pending
  104.  *  TIF_NEED_RESCHED - rescheduling necessary
  105.  *  TIF_USEDFPU - FPU was used by this task this quantum (SMP)
  106.  *  TIF_POLLING_NRFLAG - true if poll_idle() is polling TIF_NEED_RESCHED
  107.  */
  108. #define TIF_NOTIFY_RESUME 0
  109. #define TIF_SIGPENDING 1
  110. #define TIF_NEED_RESCHED 2
  111. #define TIF_SYSCALL_TRACE 8
  112. #define TIF_POLLING_NRFLAG 16
  113. #define TIF_USING_IWMMXT 17
  114. #define TIF_MEMDIE 18
  115. #define _TIF_NOTIFY_RESUME (1 << TIF_NOTIFY_RESUME)
  116. #define _TIF_SIGPENDING (1 << TIF_SIGPENDING)
  117. #define _TIF_NEED_RESCHED (1 << TIF_NEED_RESCHED)
  118. #define _TIF_SYSCALL_TRACE (1 << TIF_SYSCALL_TRACE)
  119. #define _TIF_POLLING_NRFLAG (1 << TIF_POLLING_NRFLAG)
  120. #define _TIF_USING_IWMMXT (1 << TIF_USING_IWMMXT)
  121. /*
  122.  * Change these and you break ASM code in entry-common.S
  123.  */
  124. #define _TIF_WORK_MASK 0x000000ff
  125. #endif /* __KERNEL__ */
  126. #endif /* __ASM_ARM_THREAD_INFO_H */