cop2.h 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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) 2009 Wind River Systems,
  7. * written by Ralf Baechle <[email protected]>
  8. */
  9. #ifndef __ASM_COP2_H
  10. #define __ASM_COP2_H
  11. #include <linux/notifier.h>
  12. #if defined(CONFIG_CPU_CAVIUM_OCTEON)
  13. extern void octeon_cop2_save(struct octeon_cop2_state *);
  14. extern void octeon_cop2_restore(struct octeon_cop2_state *);
  15. #define cop2_save(r) octeon_cop2_save(&(r)->thread.cp2)
  16. #define cop2_restore(r) octeon_cop2_restore(&(r)->thread.cp2)
  17. #define cop2_present 1
  18. #define cop2_lazy_restore 1
  19. #elif defined(CONFIG_CPU_LOONGSON64)
  20. #define cop2_present 1
  21. #define cop2_lazy_restore 1
  22. #define cop2_save(r) do { (void)(r); } while (0)
  23. #define cop2_restore(r) do { (void)(r); } while (0)
  24. #else
  25. #define cop2_present 0
  26. #define cop2_lazy_restore 0
  27. #define cop2_save(r) do { (void)(r); } while (0)
  28. #define cop2_restore(r) do { (void)(r); } while (0)
  29. #endif
  30. enum cu2_ops {
  31. CU2_EXCEPTION,
  32. CU2_LWC2_OP,
  33. CU2_LDC2_OP,
  34. CU2_SWC2_OP,
  35. CU2_SDC2_OP,
  36. };
  37. extern int register_cu2_notifier(struct notifier_block *nb);
  38. extern int cu2_notifier_call_chain(unsigned long val, void *v);
  39. #define cu2_notifier(fn, pri) \
  40. ({ \
  41. static struct notifier_block fn##_nb = { \
  42. .notifier_call = fn, \
  43. .priority = pri \
  44. }; \
  45. \
  46. register_cu2_notifier(&fn##_nb); \
  47. })
  48. #endif /* __ASM_COP2_H */