processor.h 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. /*
  2. * include/asm-cris/processor.h
  3. *
  4. * Copyright (C) 2000, 2001 Axis Communications AB
  5. *
  6. * Authors: Bjorn Wesen Initial version
  7. *
  8. */
  9. #ifndef __ASM_CRIS_PROCESSOR_H
  10. #define __ASM_CRIS_PROCESSOR_H
  11. #include <asm/system.h>
  12. #include <asm/page.h>
  13. #include <asm/ptrace.h>
  14. #include <asm/arch/processor.h>
  15. struct task_struct;
  16. /* This decides where the kernel will search for a free chunk of vm
  17. * space during mmap's.
  18. */
  19. #define TASK_UNMAPPED_BASE (PAGE_ALIGN(TASK_SIZE / 3))
  20. /* THREAD_SIZE is the size of the task_struct/kernel_stack combo.
  21. * normally, the stack is found by doing something like p + THREAD_SIZE
  22. * in CRIS, a page is 8192 bytes, which seems like a sane size
  23. */
  24. #define THREAD_SIZE PAGE_SIZE
  25. #define KERNEL_STACK_SIZE PAGE_SIZE
  26. /*
  27. * At user->kernel entry, the pt_regs struct is stacked on the top of the kernel-stack.
  28. * This macro allows us to find those regs for a task.
  29. * Notice that subsequent pt_regs stackings, like recursive interrupts occurring while
  30. * we're in the kernel, won't affect this - only the first user->kernel transition
  31. * registers are reached by this.
  32. */
  33. #define user_regs(thread_info) (((struct pt_regs *)((unsigned long)(thread_info) + THREAD_SIZE)) - 1)
  34. /*
  35. * Dito but for the currently running task
  36. */
  37. #define task_pt_regs(task) user_regs(task_thread_info(task))
  38. #define current_regs() task_pt_regs(current)
  39. static inline void prepare_to_copy(struct task_struct *tsk)
  40. {
  41. }
  42. extern int kernel_thread(int (*fn)(void *), void * arg, unsigned long flags);
  43. unsigned long get_wchan(struct task_struct *p);
  44. #define KSTK_ESP(tsk) ((tsk) == current ? rdusp() : (tsk)->thread.usp)
  45. extern unsigned long thread_saved_pc(struct task_struct *tsk);
  46. /* Free all resources held by a thread. */
  47. static inline void release_thread(struct task_struct *dead_task)
  48. {
  49. /* Nothing needs to be done. */
  50. }
  51. #define init_stack (init_thread_union.stack)
  52. #define cpu_relax() barrier()
  53. #endif /* __ASM_CRIS_PROCESSOR_H */