xref: /openbmc/linux/arch/s390/include/asm/page-states.h (revision 28efb0046512e8a13ed9f9bdf0d68d10bbfbe9cf)
1 /*
2  *    Copyright IBM Corp. 2017
3  *    Author(s): Claudio Imbrenda <imbrenda@linux.vnet.ibm.com>
4  */
5 
6 #ifndef PAGE_STATES_H
7 #define PAGE_STATES_H
8 
9 #define ESSA_GET_STATE			0
10 #define ESSA_SET_STABLE			1
11 #define ESSA_SET_UNUSED			2
12 #define ESSA_SET_VOLATILE		3
13 #define ESSA_SET_POT_VOLATILE		4
14 #define ESSA_SET_STABLE_RESIDENT	5
15 #define ESSA_SET_STABLE_IF_RESIDENT	6
16 #define ESSA_SET_STABLE_NODAT		7
17 
18 #define ESSA_MAX	ESSA_SET_STABLE_NODAT
19 
20 #endif
21