mirror of https://github.com/F-Stack/f-stack.git
29 lines
1016 B
C
29 lines
1016 B
C
/* SPDX-License-Identifier: BSD-3-Clause
|
|
* Copyright(c) 2001-2020 Intel Corporation
|
|
*/
|
|
|
|
#ifndef _ICE_DEVIDS_H_
|
|
#define _ICE_DEVIDS_H_
|
|
|
|
/* Device IDs */
|
|
/* Intel(R) Ethernet Controller E810-C for backplane */
|
|
#define ICE_DEV_ID_E810C_BACKPLANE 0x1591
|
|
/* Intel(R) Ethernet Controller E810-C for QSFP */
|
|
#define ICE_DEV_ID_E810C_QSFP 0x1592
|
|
/* Intel(R) Ethernet Controller E810-C for SFP */
|
|
#define ICE_DEV_ID_E810C_SFP 0x1593
|
|
/* Intel(R) Ethernet Controller E810-XXV for backplane */
|
|
#define ICE_DEV_ID_E810_XXV_BACKPLANE 0x1599
|
|
/* Intel(R) Ethernet Controller E810-XXV for QSFP */
|
|
#define ICE_DEV_ID_E810_XXV_QSFP 0x159A
|
|
/* Intel(R) Ethernet Controller E810-XXV for SFP */
|
|
#define ICE_DEV_ID_E810_XXV_SFP 0x159B
|
|
/* Intel(R) Ethernet Connection C822N for backplane */
|
|
#define ICE_DEV_ID_C822N_BACKPLANE 0x1890
|
|
/* Intel(R) Ethernet Connection C822N for QSFP */
|
|
#define ICE_DEV_ID_C822N_QSFP 0x1891
|
|
/* Intel(R) Ethernet Connection C822N for SFP */
|
|
#define ICE_DEV_ID_C822N_SFP 0x1892
|
|
|
|
#endif /* _ICE_DEVIDS_H_ */
|