18c2ecf20Sopenharmony_ci/* SPDX-License-Identifier: GPL-2.0 */ 28c2ecf20Sopenharmony_ci/* Copyright(c) 2013 - 2018 Intel Corporation. */ 38c2ecf20Sopenharmony_ci 48c2ecf20Sopenharmony_ci#ifndef _I40E_DEVIDS_H_ 58c2ecf20Sopenharmony_ci#define _I40E_DEVIDS_H_ 68c2ecf20Sopenharmony_ci 78c2ecf20Sopenharmony_ci/* Device IDs */ 88c2ecf20Sopenharmony_ci#define I40E_DEV_ID_X710_N3000 0x0CF8 98c2ecf20Sopenharmony_ci#define I40E_DEV_ID_XXV710_N3000 0x0D58 108c2ecf20Sopenharmony_ci#define I40E_DEV_ID_SFP_XL710 0x1572 118c2ecf20Sopenharmony_ci#define I40E_DEV_ID_QEMU 0x1574 128c2ecf20Sopenharmony_ci#define I40E_DEV_ID_KX_B 0x1580 138c2ecf20Sopenharmony_ci#define I40E_DEV_ID_KX_C 0x1581 148c2ecf20Sopenharmony_ci#define I40E_DEV_ID_QSFP_A 0x1583 158c2ecf20Sopenharmony_ci#define I40E_DEV_ID_QSFP_B 0x1584 168c2ecf20Sopenharmony_ci#define I40E_DEV_ID_QSFP_C 0x1585 178c2ecf20Sopenharmony_ci#define I40E_DEV_ID_10G_BASE_T 0x1586 188c2ecf20Sopenharmony_ci#define I40E_DEV_ID_20G_KR2 0x1587 198c2ecf20Sopenharmony_ci#define I40E_DEV_ID_20G_KR2_A 0x1588 208c2ecf20Sopenharmony_ci#define I40E_DEV_ID_10G_BASE_T4 0x1589 218c2ecf20Sopenharmony_ci#define I40E_DEV_ID_25G_B 0x158A 228c2ecf20Sopenharmony_ci#define I40E_DEV_ID_25G_SFP28 0x158B 238c2ecf20Sopenharmony_ci#define I40E_DEV_ID_10G_BASE_T_BC 0x15FF 248c2ecf20Sopenharmony_ci#define I40E_DEV_ID_10G_B 0x104F 258c2ecf20Sopenharmony_ci#define I40E_DEV_ID_10G_SFP 0x104E 268c2ecf20Sopenharmony_ci#define I40E_DEV_ID_5G_BASE_T_BC 0x101F 278c2ecf20Sopenharmony_ci#define I40E_IS_X710TL_DEVICE(d) \ 288c2ecf20Sopenharmony_ci (((d) == I40E_DEV_ID_5G_BASE_T_BC) || \ 298c2ecf20Sopenharmony_ci ((d) == I40E_DEV_ID_10G_BASE_T_BC)) 308c2ecf20Sopenharmony_ci#define I40E_DEV_ID_KX_X722 0x37CE 318c2ecf20Sopenharmony_ci#define I40E_DEV_ID_QSFP_X722 0x37CF 328c2ecf20Sopenharmony_ci#define I40E_DEV_ID_SFP_X722 0x37D0 338c2ecf20Sopenharmony_ci#define I40E_DEV_ID_1G_BASE_T_X722 0x37D1 348c2ecf20Sopenharmony_ci#define I40E_DEV_ID_10G_BASE_T_X722 0x37D2 358c2ecf20Sopenharmony_ci#define I40E_DEV_ID_SFP_I_X722 0x37D3 368c2ecf20Sopenharmony_ci 378c2ecf20Sopenharmony_ci 388c2ecf20Sopenharmony_ci#endif /* _I40E_DEVIDS_H_ */ 39