Contributors: 9
| Author |
Tokens |
Token Proportion |
Commits |
Commit Proportion |
| Piotr Kwapulinski |
34 |
26.98% |
3 |
21.43% |
| Paul Greenwalt |
23 |
18.25% |
1 |
7.14% |
| Emil Tantilov |
20 |
15.87% |
2 |
14.29% |
| Mark D Rustad |
19 |
15.08% |
3 |
21.43% |
| Auke-Jan H Kok |
12 |
9.52% |
1 |
7.14% |
| Tony Nguyen |
9 |
7.14% |
1 |
7.14% |
| Donald Skidmore |
6 |
4.76% |
1 |
7.14% |
| Jedrzej Jagielski |
2 |
1.59% |
1 |
7.14% |
| Jeff Kirsher |
1 |
0.79% |
1 |
7.14% |
| Total |
126 |
|
14 |
|
/* SPDX-License-Identifier: GPL-2.0 */
/* Copyright(c) 2024 Intel Corporation. */
#ifndef _IXGBE_X550_H_
#define _IXGBE_X550_H_
#include "ixgbe_type.h"
extern const u32 ixgbe_mvals_x550em_a[IXGBE_MVALS_IDX_LIMIT];
int ixgbe_set_fw_drv_ver_x550(struct ixgbe_hw *hw, u8 maj, u8 min,
u8 build, u8 sub, u16 len,
const char *driver_ver);
void ixgbe_set_source_address_pruning_x550(struct ixgbe_hw *hw,
bool enable,
unsigned int pool);
void ixgbe_set_ethertype_anti_spoofing_x550(struct ixgbe_hw *hw,
bool enable, int vf);
void ixgbe_enable_mdd_x550(struct ixgbe_hw *hw);
void ixgbe_disable_mdd_x550(struct ixgbe_hw *hw);
void ixgbe_restore_mdd_vf_x550(struct ixgbe_hw *hw, u32 vf);
void ixgbe_handle_mdd_x550(struct ixgbe_hw *hw, unsigned long *vf_bitmap);
#endif /* _IXGBE_X550_H_ */