hibernate.h 421 B

123456789101112131415161718192021222324
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. /*
  3. * hibernate.h: Hibernaton support specific for sparc64.
  4. *
  5. * Copyright (C) 2013 Kirill V Tkhai ([email protected])
  6. */
  7. #ifndef ___SPARC_HIBERNATE_H
  8. #define ___SPARC_HIBERNATE_H
  9. struct saved_context {
  10. unsigned long fp;
  11. unsigned long cwp;
  12. unsigned long wstate;
  13. unsigned long tick;
  14. unsigned long pstate;
  15. unsigned long g4;
  16. unsigned long g5;
  17. unsigned long g6;
  18. };
  19. #endif