69 lines
1.6 KiB
C
69 lines
1.6 KiB
C
|
/*
|
||
|
* Huawei HiNIC PCI Express Linux driver
|
||
|
* Copyright(c) 2017 Huawei Technologies Co., Ltd
|
||
|
*
|
||
|
* This program is free software; you can redistribute it and/or modify it
|
||
|
* under the terms and conditions of the GNU General Public License,
|
||
|
* version 2, as published by the Free Software Foundation.
|
||
|
*
|
||
|
* This program is distributed in the hope it will be useful, but WITHOUT
|
||
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||
|
* for more details.
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
#ifndef HINIC_PORT_H
|
||
|
#define HINIC_PORT_H
|
||
|
|
||
|
#include <linux/types.h>
|
||
|
#include <linux/etherdevice.h>
|
||
|
|
||
|
#include "hinic_dev.h"
|
||
|
|
||
|
struct hinic_port_mac_cmd {
|
||
|
u8 status;
|
||
|
u8 version;
|
||
|
u8 rsvd0[6];
|
||
|
|
||
|
u16 func_idx;
|
||
|
u16 vlan_id;
|
||
|
u16 rsvd1;
|
||
|
unsigned char mac[ETH_ALEN];
|
||
|
};
|
||
|
|
||
|
struct hinic_port_mtu_cmd {
|
||
|
u8 status;
|
||
|
u8 version;
|
||
|
u8 rsvd0[6];
|
||
|
|
||
|
u16 func_idx;
|
||
|
u16 rsvd1;
|
||
|
u32 mtu;
|
||
|
};
|
||
|
|
||
|
struct hinic_port_vlan_cmd {
|
||
|
u8 status;
|
||
|
u8 version;
|
||
|
u8 rsvd0[6];
|
||
|
|
||
|
u16 func_idx;
|
||
|
u16 vlan_id;
|
||
|
};
|
||
|
|
||
|
int hinic_port_add_mac(struct hinic_dev *nic_dev, const u8 *addr,
|
||
|
u16 vlan_id);
|
||
|
|
||
|
int hinic_port_del_mac(struct hinic_dev *nic_dev, const u8 *addr,
|
||
|
u16 vlan_id);
|
||
|
|
||
|
int hinic_port_get_mac(struct hinic_dev *nic_dev, u8 *addr);
|
||
|
|
||
|
int hinic_port_set_mtu(struct hinic_dev *nic_dev, int new_mtu);
|
||
|
|
||
|
int hinic_port_add_vlan(struct hinic_dev *nic_dev, u16 vlan_id);
|
||
|
|
||
|
int hinic_port_del_vlan(struct hinic_dev *nic_dev, u16 vlan_id);
|
||
|
|
||
|
#endif
|