2020-03-27 02:56:36 +00:00
|
|
|
/* SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
* Copyright(c) 2020 Intel Corporation
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _ICE_DCF_ETHDEV_H_
|
|
|
|
#define _ICE_DCF_ETHDEV_H_
|
|
|
|
|
2020-03-27 02:56:40 +00:00
|
|
|
#include "base/ice_common.h"
|
|
|
|
#include "base/ice_adminq_cmd.h"
|
|
|
|
|
2020-03-27 02:56:36 +00:00
|
|
|
#include "ice_ethdev.h"
|
|
|
|
#include "ice_dcf.h"
|
|
|
|
|
|
|
|
#define ICE_DCF_MAX_RINGS 1
|
|
|
|
|
|
|
|
struct ice_dcf_queue {
|
|
|
|
uint64_t dummy;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct ice_dcf_adapter {
|
2020-03-27 02:56:40 +00:00
|
|
|
struct ice_adapter parent; /* Must be first */
|
2020-03-27 02:56:36 +00:00
|
|
|
struct ice_dcf_hw real_hw;
|
|
|
|
};
|
|
|
|
|
2020-03-27 02:56:40 +00:00
|
|
|
void ice_dcf_handle_pf_event_msg(struct ice_dcf_hw *dcf_hw,
|
|
|
|
uint8_t *msg, uint16_t msglen);
|
|
|
|
int ice_dcf_init_parent_adapter(struct rte_eth_dev *eth_dev);
|
|
|
|
void ice_dcf_uninit_parent_adapter(struct rte_eth_dev *eth_dev);
|
|
|
|
|
2020-03-27 02:56:36 +00:00
|
|
|
#endif /* _ICE_DCF_ETHDEV_H_ */
|