Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0 */
0002 /*
0003  * hibernate.h:  Hibernaton support specific for sparc64.
0004  *
0005  * Copyright (C) 2013 Kirill V Tkhai (tkhai@yandex.ru)
0006  */
0007 
0008 #ifndef ___SPARC_HIBERNATE_H
0009 #define ___SPARC_HIBERNATE_H
0010 
0011 struct saved_context {
0012     unsigned long fp;
0013     unsigned long cwp;
0014     unsigned long wstate;
0015 
0016     unsigned long tick;
0017     unsigned long pstate;
0018 
0019     unsigned long g4;
0020     unsigned long g5;
0021     unsigned long g6;
0022 };
0023 
0024 #endif