| /* SPDX-License-Identifier: GPL-2.0 OR Linux-OpenIB */ |
| /* Copyright (c) 2019, Mellanox Technologies */ |
| |
| #ifndef __MLX5_DEVLINK_H__ |
| #define __MLX5_DEVLINK_H__ |
| |
| #include <net/devlink.h> |
| |
| enum mlx5_devlink_param_id { |
| MLX5_DEVLINK_PARAM_ID_BASE = DEVLINK_PARAM_GENERIC_ID_MAX, |
| MLX5_DEVLINK_PARAM_ID_FLOW_STEERING_MODE, |
| MLX5_DEVLINK_PARAM_ID_ESW_LARGE_GROUP_NUM, |
| }; |
| |
| struct devlink *mlx5_devlink_alloc(void); |
| void mlx5_devlink_free(struct devlink *devlink); |
| int mlx5_devlink_register(struct devlink *devlink, struct device *dev); |
| void mlx5_devlink_unregister(struct devlink *devlink); |
| |
| #endif /* __MLX5_DEVLINK_H__ */ |