1 /* SPDX-License-Identifier: MIT */
3 * Copyright(c) 2020, Intel Corporation. All rights reserved.
6 #ifndef __INTEL_PXP_SESSION_H__
7 #define __INTEL_PXP_SESSION_H__
9 #include <linux/types.h>
13 #ifdef CONFIG_DRM_I915_PXP
14 void intel_pxp_session_management_init(struct intel_pxp *pxp);
15 void intel_pxp_terminate(struct intel_pxp *pxp, bool post_invalidation_needs_restart);
17 static inline void intel_pxp_session_management_init(struct intel_pxp *pxp)
21 static inline void intel_pxp_terminate(struct intel_pxp *pxp, bool post_invalidation_needs_restart)
25 #endif /* __INTEL_PXP_SESSION_H__ */