master
h 19 lines 486 Bytes
Raw
1 /*
2 * PowerPC misc useful things
3 *
4 * Copyright (c) 2024, IBM Corporation.
5 *
6 * SPDX-License-Identifier: GPL-2.0-or-later
7 */
8
9 #ifndef PPC_UTIL_H
10 #define PPC_UTIL_H
11
12 /* List of capabilities needed to silence warnings with TCG */
13 #define PSERIES_DEFAULT_CAPABILITIES \
14 "cap-cfpc=broken," \
15 "cap-sbbc=broken," \
16 "cap-ibs=broken," \
17 "cap-ccf-assist=off,"
18
19 #endif /* PPC_UTIL_H */