switch_to.h 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. /*
  2. * This file is subject to the terms and conditions of the GNU General Public
  3. * License. See the file "COPYING" in the main directory of this archive
  4. * for more details.
  5. *
  6. * Copyright (C) 1994, 95, 96, 97, 98, 99, 2003, 06 by Ralf Baechle
  7. * Copyright (C) 1996 by Paul M. Antoine
  8. * Copyright (C) 1999 Silicon Graphics
  9. * Kevin D. Kissell, kevink@mips.org and Carsten Langgaard, carstenl@mips.com
  10. * Copyright (C) 2000 MIPS Technologies, Inc.
  11. */
  12. #ifndef _ASM_SWITCH_TO_H
  13. #define _ASM_SWITCH_TO_H
  14. #include <asm/cpu-features.h>
  15. #include <asm/watch.h>
  16. #include <asm/dsp.h>
  17. struct task_struct;
  18. /*
  19. * switch_to(n) should switch tasks to task nr n, first
  20. * checking that n isn't the current task, in which case it does nothing.
  21. */
  22. extern asmlinkage void *resume(void *last, void *next, void *next_ti, u32 __usedfpu);
  23. extern unsigned int ll_bit;
  24. extern struct task_struct *ll_task;
  25. #ifdef CONFIG_MIPS_MT_FPAFF
  26. /*
  27. * Handle the scheduler resume end of FPU affinity management. We do this
  28. * inline to try to keep the overhead down. If we have been forced to run on
  29. * a "CPU" with an FPU because of a previous high level of FP computation,
  30. * but did not actually use the FPU during the most recent time-slice (CU1
  31. * isn't set), we undo the restriction on cpus_allowed.
  32. *
  33. * We're not calling set_cpus_allowed() here, because we have no need to
  34. * force prompt migration - we're already switching the current CPU to a
  35. * different thread.
  36. */
  37. #define __mips_mt_fpaff_switch_to(prev) \
  38. do { \
  39. struct thread_info *__prev_ti = task_thread_info(prev); \
  40. \
  41. if (cpu_has_fpu && \
  42. test_ti_thread_flag(__prev_ti, TIF_FPUBOUND) && \
  43. (!(KSTK_STATUS(prev) & ST0_CU1))) { \
  44. clear_ti_thread_flag(__prev_ti, TIF_FPUBOUND); \
  45. prev->cpus_allowed = prev->thread.user_cpus_allowed; \
  46. } \
  47. next->thread.emulated_fp = 0; \
  48. } while(0)
  49. #else
  50. #define __mips_mt_fpaff_switch_to(prev) do { (void) (prev); } while (0)
  51. #endif
  52. #define __clear_software_ll_bit() \
  53. do { \
  54. if (!__builtin_constant_p(cpu_has_llsc) || !cpu_has_llsc) \
  55. ll_bit = 0; \
  56. } while (0)
  57. #define switch_to(prev, next, last) \
  58. do { \
  59. u32 __usedfpu; \
  60. __mips_mt_fpaff_switch_to(prev); \
  61. if (cpu_has_dsp) \
  62. __save_dsp(prev); \
  63. __clear_software_ll_bit(); \
  64. __usedfpu = test_and_clear_tsk_thread_flag(prev, TIF_USEDFPU); \
  65. (last) = resume(prev, next, task_thread_info(next), __usedfpu); \
  66. } while (0)
  67. #define finish_arch_switch(prev) \
  68. do { \
  69. if (cpu_has_dsp) \
  70. __restore_dsp(current); \
  71. if (cpu_has_userlocal) \
  72. write_c0_userlocal(current_thread_info()->tp_value); \
  73. __restore_watch(); \
  74. } while (0)
  75. #endif /* _ASM_SWITCH_TO_H */