1/* SPDX-License-Identifier: GPL-2.0 */
2/* Copyright (c) 2019, Intel Corporation. */
3
4#ifndef _ICE_DEVLINK_H_
5#define _ICE_DEVLINK_H_
6
7struct ice_pf *ice_allocate_pf(struct device *dev);
8
9void ice_devlink_register(struct ice_pf *pf);
10void ice_devlink_unregister(struct ice_pf *pf);
11int ice_devlink_register_params(struct ice_pf *pf);
12void ice_devlink_unregister_params(struct ice_pf *pf);
13int ice_devlink_create_pf_port(struct ice_pf *pf);
14void ice_devlink_destroy_pf_port(struct ice_pf *pf);
15int ice_devlink_create_vf_port(struct ice_vf *vf);
16void ice_devlink_destroy_vf_port(struct ice_vf *vf);
17
18void ice_devlink_init_regions(struct ice_pf *pf);
19void ice_devlink_destroy_regions(struct ice_pf *pf);
20
21int ice_devlink_rate_init_tx_topology(struct devlink *devlink, struct ice_vsi *vsi);
22void ice_tear_down_devlink_rate_tree(struct ice_pf *pf);
23
24#endif /* _ICE_DEVLINK_H_ */
25

source code of linux/drivers/net/ethernet/intel/ice/ice_devlink.h