1 /*
2  * Copyright (C) 2020-2022 Intel Corporation.
3  *
4  * SPDX-License-Identifier: BSD-3-Clause
5  */
6 
7 #ifndef PLATFORM_CAPS_H
8 #define PLATFORM_CAPS_H
9 
10 struct platform_caps_x86 {
11 	/* true if posted interrupt is supported by all IOMMUs */
12 	bool pi;
13 };
14 
15 extern struct platform_caps_x86 platform_caps;
16 
17 #endif /* PLATFORM_CAPS_H */
18