switch_to.h 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. #ifndef _H8300_SWITCH_TO_H
  2. #define _H8300_SWITCH_TO_H
  3. /*
  4. * switch_to(n) should switch tasks to task ptr, first checking that
  5. * ptr isn't the current task, in which case it does nothing. This
  6. * also clears the TS-flag if the task we switched to has used the
  7. * math co-processor latest.
  8. */
  9. /*
  10. * switch_to() saves the extra registers, that are not saved
  11. * automatically by SAVE_SWITCH_STACK in resume(), ie. d0-d5 and
  12. * a0-a1. Some of these are used by schedule() and its predecessors
  13. * and so we might get see unexpected behaviors when a task returns
  14. * with unexpected register values.
  15. *
  16. * syscall stores these registers itself and none of them are used
  17. * by syscall after the function in the syscall has been called.
  18. *
  19. * Beware that resume now expects *next to be in d1 and the offset of
  20. * tss to be in a1. This saves a few instructions as we no longer have
  21. * to push them onto the stack and read them back right after.
  22. *
  23. * 02/17/96 - Jes Sorensen (jds@kom.auc.dk)
  24. *
  25. * Changed 96/09/19 by Andreas Schwab
  26. * pass prev in a0, next in a1, offset of tss in d1, and whether
  27. * the mm structures are shared in d2 (to avoid atc flushing).
  28. *
  29. * H8/300 Porting 2002/09/04 Yoshinori Sato
  30. */
  31. asmlinkage void resume(void);
  32. #define switch_to(prev, next, last) \
  33. do { \
  34. void *_last; \
  35. __asm__ __volatile__( \
  36. "mov.l %1, er0\n\t" \
  37. "mov.l %2, er1\n\t" \
  38. "mov.l %3, er2\n\t" \
  39. "jsr @_resume\n\t" \
  40. "mov.l er2,%0\n\t" \
  41. : "=r" (_last) \
  42. : "r" (&(prev->thread)), \
  43. "r" (&(next->thread)), \
  44. "g" (prev) \
  45. : "cc", "er0", "er1", "er2", "er3"); \
  46. (last) = _last; \
  47. } while (0)
  48. #endif /* _H8300_SWITCH_TO_H */