1 /* SPDX-License-Identifier: (BSD-3-Clause OR GPL-2.0-only) */
2 /* Copyright(c) 2021 Intel Corporation */
3 #ifndef ADF_PFVF_PF_MSG_H
4 #define ADF_PFVF_PF_MSG_H
6 #include "adf_accel_devices.h"
8 #if defined(CONFIG_PCI_IOV)
9 void adf_pf2vf_notify_restarting(struct adf_accel_dev *accel_dev);
10 void adf_pf2vf_wait_for_restarting_complete(struct adf_accel_dev *accel_dev);
11 void adf_pf2vf_notify_restarted(struct adf_accel_dev *accel_dev);
12 void adf_pf2vf_notify_fatal_error(struct adf_accel_dev *accel_dev);
14 static inline void adf_pf2vf_notify_restarting(struct adf_accel_dev *accel_dev)
18 static inline void adf_pf2vf_wait_for_restarting_complete(struct adf_accel_dev *accel_dev)
22 static inline void adf_pf2vf_notify_restarted(struct adf_accel_dev *accel_dev)
26 static inline void adf_pf2vf_notify_fatal_error(struct adf_accel_dev *accel_dev)
31 typedef int (*adf_pf2vf_blkmsg_provider)(struct adf_accel_dev *accel_dev,
32 u8 *buffer, u8 compat);
34 int adf_pf_capabilities_msg_provider(struct adf_accel_dev *accel_dev,
35 u8 *buffer, u8 comapt);
36 int adf_pf_ring_to_svc_msg_provider(struct adf_accel_dev *accel_dev,
37 u8 *buffer, u8 comapt);
39 #endif /* ADF_PFVF_PF_MSG_H */