xref: /kvm-unit-tests/lib/ppc64/asm/opal.h (revision 9801dbbe9ea4591b2c32a51e5b29cb64502b93fb)
1 /* SPDX-License-Identifier: GPL-2.0-or-later */
2 #ifndef _ASMPPC64_OPAL_H_
3 #define _ASMPPC64_OPAL_H_
4 
5 #define OPAL_SUCCESS				0
6 
7 #define OPAL_CONSOLE_WRITE			1
8 #define OPAL_CONSOLE_READ			2
9 #define OPAL_CEC_POWER_DOWN			5
10 #define OPAL_POLL_EVENTS			10
11 #define OPAL_REINIT_CPUS			70
12 # define OPAL_REINIT_CPUS_HILE_BE		(1 << 0)
13 # define OPAL_REINIT_CPUS_HILE_LE		(1 << 1)
14 
15 #endif
16