ice_dcb_lib.h 1.2 KB
Newer Older
1 2 3 4 5 6 7 8 9 10
/* SPDX-License-Identifier: GPL-2.0 */
/* Copyright (c) 2019, Intel Corporation. */

#ifndef _ICE_DCB_LIB_H_
#define _ICE_DCB_LIB_H_

#include "ice.h"
#include "ice_lib.h"

#ifdef CONFIG_DCB
11 12
u8 ice_dcb_get_ena_tc(struct ice_dcbx_cfg *dcbcfg);
u8 ice_dcb_get_num_tc(struct ice_dcbx_cfg *dcbcfg);
13
void ice_vsi_cfg_dcb_rings(struct ice_vsi *vsi);
14
int ice_init_pf_dcb(struct ice_pf *pf);
15 16 17
void
ice_dcb_process_lldp_set_mib_change(struct ice_pf *pf,
				    struct ice_rq_event_info *event);
18 19 20 21 22
static inline void
ice_set_cgd_num(struct ice_tlan_ctx *tlan_ctx, struct ice_ring *ring)
{
	tlan_ctx->cgd_num = ring->dcb_tc;
}
23
#else
24 25 26 27 28 29 30 31 32 33
static inline u8 ice_dcb_get_ena_tc(struct ice_dcbx_cfg __always_unused *dcbcfg)
{
	return ICE_DFLT_TRAFFIC_CLASS;
}

static inline u8 ice_dcb_get_num_tc(struct ice_dcbx_cfg __always_unused *dcbcfg)
{
	return 1;
}

34 35 36 37 38
static inline int ice_init_pf_dcb(struct ice_pf *pf)
{
	dev_dbg(&pf->pdev->dev, "DCB not supported\n");
	return -EOPNOTSUPP;
}
39

40
#define ice_vsi_cfg_dcb_rings(vsi) do {} while (0)
41
#define ice_dcb_process_lldp_set_mib_change(pf, event) do {} while (0)
42
#define ice_set_cgd_num(tlan_ctx, ring) do {} while (0)
43 44
#endif /* CONFIG_DCB */
#endif /* _ICE_DCB_LIB_H_ */