aa6c5845fb
Delete original DCF queue setup functions and use ice queue setup and release functions instead. Signed-off-by: Qi Zhang <qi.z.zhang@intel.com> Signed-off-by: Ting Xu <ting.xu@intel.com> Reviewed-by: Qiming Yang <qiming.yang@intel.com>
31 lines
685 B
C
31 lines
685 B
C
/* SPDX-License-Identifier: BSD-3-Clause
|
|
* Copyright(c) 2020 Intel Corporation
|
|
*/
|
|
|
|
#ifndef _ICE_DCF_ETHDEV_H_
|
|
#define _ICE_DCF_ETHDEV_H_
|
|
|
|
#include "base/ice_common.h"
|
|
#include "base/ice_adminq_cmd.h"
|
|
|
|
#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 {
|
|
struct ice_adapter parent; /* Must be first */
|
|
struct ice_dcf_hw real_hw;
|
|
};
|
|
|
|
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);
|
|
|
|
#endif /* _ICE_DCF_ETHDEV_H_ */
|