cop2.h 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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 <ralf@linux-mips.org>
  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)
  16. #define cop2_restore(r) octeon_cop2_restore(r)
  17. #define cop2_present 1
  18. #define cop2_lazy_restore 1
  19. #elif defined(CONFIG_CPU_XLP)
  20. extern void nlm_cop2_save(struct nlm_cop2_state *);
  21. extern void nlm_cop2_restore(struct nlm_cop2_state *);
  22. #define cop2_save(r) nlm_cop2_save(r)
  23. #define cop2_restore(r) nlm_cop2_restore(r)
  24. #define cop2_present 1
  25. #define cop2_lazy_restore 0
  26. #else
  27. #define cop2_present 0
  28. #define cop2_lazy_restore 0
  29. #define cop2_save(r)
  30. #define cop2_restore(r)
  31. #endif
  32. enum cu2_ops {
  33. CU2_EXCEPTION,
  34. CU2_LWC2_OP,
  35. CU2_LDC2_OP,
  36. CU2_SWC2_OP,
  37. CU2_SDC2_OP,
  38. };
  39. extern int register_cu2_notifier(struct notifier_block *nb);
  40. extern int cu2_notifier_call_chain(unsigned long val, void *v);
  41. #define cu2_notifier(fn, pri) \
  42. ({ \
  43. static struct notifier_block fn##_nb = { \
  44. .notifier_call = fn, \
  45. .priority = pri \
  46. }; \
  47. \
  48. register_cu2_notifier(&fn##_nb); \
  49. })
  50. #endif /* __ASM_COP2_H */