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

#ifndef _ICE_DCB_LIB_H_
#define _ICE_DCB_LIB_H_

#include "ice.h"
A
Anirudh Venkataramanan 已提交
8
#include "ice_base.h"
9 10 11
#include "ice_lib.h"

#ifdef CONFIG_DCB
12 13 14
#define ICE_TC_MAX_BW 100 /* Default Max BW percentage */

void ice_dcb_rebuild(struct ice_pf *pf);
15 16
u8 ice_dcb_get_ena_tc(struct ice_dcbx_cfg *dcbcfg);
u8 ice_dcb_get_num_tc(struct ice_dcbx_cfg *dcbcfg);
17
void ice_vsi_cfg_dcb_rings(struct ice_vsi *vsi);
18
int ice_init_pf_dcb(struct ice_pf *pf, bool locked);
19
void ice_update_dcb_stats(struct ice_pf *pf);
20 21 22
int
ice_tx_prepare_vlan_flags_dcb(struct ice_ring *tx_ring,
			      struct ice_tx_buf *first);
23 24 25
void
ice_dcb_process_lldp_set_mib_change(struct ice_pf *pf,
				    struct ice_rq_event_info *event);
T
Tony Nguyen 已提交
26
void ice_vsi_cfg_netdev_tc(struct ice_vsi *vsi, u8 ena_tc);
27 28 29 30 31
static inline void
ice_set_cgd_num(struct ice_tlan_ctx *tlan_ctx, struct ice_ring *ring)
{
	tlan_ctx->cgd_num = ring->dcb_tc;
}
32
#else
33 34
#define ice_dcb_rebuild(pf) do {} while (0)

35 36 37 38 39 40 41 42 43 44
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;
}

45 46
static inline int
ice_init_pf_dcb(struct ice_pf *pf, bool __always_unused locked)
47 48 49 50
{
	dev_dbg(&pf->pdev->dev, "DCB not supported\n");
	return -EOPNOTSUPP;
}
51

52 53 54 55 56 57 58
static inline int
ice_tx_prepare_vlan_flags_dcb(struct ice_ring __always_unused *tx_ring,
			      struct ice_tx_buf __always_unused *first)
{
	return 0;
}

59
#define ice_update_dcb_stats(pf) do {} while (0)
60
#define ice_vsi_cfg_dcb_rings(vsi) do {} while (0)
61
#define ice_dcb_process_lldp_set_mib_change(pf, event) do {} while (0)
62
#define ice_set_cgd_num(tlan_ctx, ring) do {} while (0)
T
Tony Nguyen 已提交
63
#define ice_vsi_cfg_netdev_tc(vsi, ena_tc) do {} while (0)
64 65
#endif /* CONFIG_DCB */
#endif /* _ICE_DCB_LIB_H_ */