162306a36Sopenharmony_ci/* SPDX-License-Identifier: GPL-2.0 */ 262306a36Sopenharmony_ci/* Copyright(c) 2013 - 2018 Intel Corporation. */ 362306a36Sopenharmony_ci 462306a36Sopenharmony_ci#ifndef _I40E_DEVIDS_H_ 562306a36Sopenharmony_ci#define _I40E_DEVIDS_H_ 662306a36Sopenharmony_ci 762306a36Sopenharmony_ci/* Device IDs */ 862306a36Sopenharmony_ci#define I40E_DEV_ID_X710_N3000 0x0CF8 962306a36Sopenharmony_ci#define I40E_DEV_ID_XXV710_N3000 0x0D58 1062306a36Sopenharmony_ci#define I40E_DEV_ID_SFP_XL710 0x1572 1162306a36Sopenharmony_ci#define I40E_DEV_ID_QEMU 0x1574 1262306a36Sopenharmony_ci#define I40E_DEV_ID_KX_B 0x1580 1362306a36Sopenharmony_ci#define I40E_DEV_ID_KX_C 0x1581 1462306a36Sopenharmony_ci#define I40E_DEV_ID_QSFP_A 0x1583 1562306a36Sopenharmony_ci#define I40E_DEV_ID_QSFP_B 0x1584 1662306a36Sopenharmony_ci#define I40E_DEV_ID_QSFP_C 0x1585 1762306a36Sopenharmony_ci#define I40E_DEV_ID_10G_BASE_T 0x1586 1862306a36Sopenharmony_ci#define I40E_DEV_ID_20G_KR2 0x1587 1962306a36Sopenharmony_ci#define I40E_DEV_ID_20G_KR2_A 0x1588 2062306a36Sopenharmony_ci#define I40E_DEV_ID_10G_BASE_T4 0x1589 2162306a36Sopenharmony_ci#define I40E_DEV_ID_25G_B 0x158A 2262306a36Sopenharmony_ci#define I40E_DEV_ID_25G_SFP28 0x158B 2362306a36Sopenharmony_ci#define I40E_DEV_ID_10G_BASE_T_BC 0x15FF 2462306a36Sopenharmony_ci#define I40E_DEV_ID_10G_B 0x104F 2562306a36Sopenharmony_ci#define I40E_DEV_ID_10G_SFP 0x104E 2662306a36Sopenharmony_ci#define I40E_DEV_ID_5G_BASE_T_BC 0x101F 2762306a36Sopenharmony_ci#define I40E_DEV_ID_1G_BASE_T_BC 0x0DD2 2862306a36Sopenharmony_ci#define I40E_IS_X710TL_DEVICE(d) \ 2962306a36Sopenharmony_ci (((d) == I40E_DEV_ID_1G_BASE_T_BC) || \ 3062306a36Sopenharmony_ci ((d) == I40E_DEV_ID_5G_BASE_T_BC) || \ 3162306a36Sopenharmony_ci ((d) == I40E_DEV_ID_10G_BASE_T_BC)) 3262306a36Sopenharmony_ci#define I40E_DEV_ID_KX_X722 0x37CE 3362306a36Sopenharmony_ci#define I40E_DEV_ID_QSFP_X722 0x37CF 3462306a36Sopenharmony_ci#define I40E_DEV_ID_SFP_X722 0x37D0 3562306a36Sopenharmony_ci#define I40E_DEV_ID_1G_BASE_T_X722 0x37D1 3662306a36Sopenharmony_ci#define I40E_DEV_ID_10G_BASE_T_X722 0x37D2 3762306a36Sopenharmony_ci#define I40E_DEV_ID_SFP_I_X722 0x37D3 3862306a36Sopenharmony_ci#define I40E_DEV_ID_SFP_X722_A 0x0DDA 3962306a36Sopenharmony_ci 4062306a36Sopenharmony_ci 4162306a36Sopenharmony_ci#endif /* _I40E_DEVIDS_H_ */ 42