blob: 747707bee4831a0b04c0a654c30641ac741782d7 [file] [log] [blame]
David Brazdil0f672f62019-12-10 10:32:29 +00001/* SPDX-License-Identifier: GPL-2.0-only */
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002/****************************************************************************
3 * Driver for Solarflare network controllers and boards
4 * Copyright 2014-2015 Solarflare Communications Inc.
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00005 */
6
7#ifndef EFX_SRIOV_H
8#define EFX_SRIOV_H
9
10#include "net_driver.h"
11
12#ifdef CONFIG_SFC_SRIOV
13
14int efx_sriov_set_vf_mac(struct net_device *net_dev, int vf_i, u8 *mac);
15int efx_sriov_set_vf_vlan(struct net_device *net_dev, int vf_i, u16 vlan,
16 u8 qos, __be16 vlan_proto);
17int efx_sriov_set_vf_spoofchk(struct net_device *net_dev, int vf_i,
18 bool spoofchk);
19int efx_sriov_get_vf_config(struct net_device *net_dev, int vf_i,
20 struct ifla_vf_info *ivi);
21int efx_sriov_set_vf_link_state(struct net_device *net_dev, int vf_i,
22 int link_state);
23#endif /* CONFIG_SFC_SRIOV */
24
25#endif /* EFX_SRIOV_H */