/* SPDX-License-Identifier: MIT */ /* * Copyright © 2020 Intel Corporation */ #ifndef _I915_PXP_TEE_INTERFACE_H_ #define _I915_PXP_TEE_INTERFACE_H_ #include <linux/mutex.h> #include <linux/device.h> struct scatterlist; /** * struct i915_pxp_component_ops - ops for PXP services. */ struct i915_pxp_component_ops { … }; /** * struct i915_pxp_component - Used for communication between i915 and TEE * drivers for the PXP services */ struct i915_pxp_component { … }; #endif /* _I915_TEE_PXP_INTERFACE_H_ */