| .. | .. |
|---|
| 5 | 5 | #define _I40E_DEVIDS_H_ |
|---|
| 6 | 6 | |
|---|
| 7 | 7 | /* Device IDs */ |
|---|
| 8 | +#define I40E_DEV_ID_X710_N3000 0x0CF8 |
|---|
| 9 | +#define I40E_DEV_ID_XXV710_N3000 0x0D58 |
|---|
| 8 | 10 | #define I40E_DEV_ID_SFP_XL710 0x1572 |
|---|
| 9 | 11 | #define I40E_DEV_ID_QEMU 0x1574 |
|---|
| 10 | 12 | #define I40E_DEV_ID_KX_B 0x1580 |
|---|
| .. | .. |
|---|
| 18 | 20 | #define I40E_DEV_ID_10G_BASE_T4 0x1589 |
|---|
| 19 | 21 | #define I40E_DEV_ID_25G_B 0x158A |
|---|
| 20 | 22 | #define I40E_DEV_ID_25G_SFP28 0x158B |
|---|
| 23 | +#define I40E_DEV_ID_10G_BASE_T_BC 0x15FF |
|---|
| 24 | +#define I40E_DEV_ID_10G_B 0x104F |
|---|
| 25 | +#define I40E_DEV_ID_10G_SFP 0x104E |
|---|
| 26 | +#define I40E_DEV_ID_5G_BASE_T_BC 0x101F |
|---|
| 27 | +#define I40E_IS_X710TL_DEVICE(d) \ |
|---|
| 28 | + (((d) == I40E_DEV_ID_5G_BASE_T_BC) || \ |
|---|
| 29 | + ((d) == I40E_DEV_ID_10G_BASE_T_BC)) |
|---|
| 21 | 30 | #define I40E_DEV_ID_KX_X722 0x37CE |
|---|
| 22 | 31 | #define I40E_DEV_ID_QSFP_X722 0x37CF |
|---|
| 23 | 32 | #define I40E_DEV_ID_SFP_X722 0x37D0 |
|---|
| .. | .. |
|---|
| 25 | 34 | #define I40E_DEV_ID_10G_BASE_T_X722 0x37D2 |
|---|
| 26 | 35 | #define I40E_DEV_ID_SFP_I_X722 0x37D3 |
|---|
| 27 | 36 | |
|---|
| 28 | | -#define i40e_is_40G_device(d) ((d) == I40E_DEV_ID_QSFP_A || \ |
|---|
| 29 | | - (d) == I40E_DEV_ID_QSFP_B || \ |
|---|
| 30 | | - (d) == I40E_DEV_ID_QSFP_C) |
|---|
| 31 | 37 | |
|---|
| 32 | 38 | #endif /* _I40E_DEVIDS_H_ */ |
|---|