mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2025-01-06 22:04:22 +08:00
5d9e618cbb
Add support for E822 devices Signed-off-by: Jacob Keller <jacob.e.keller@intel.com> Signed-off-by: Bruce Allan <bruce.w.allan@intel.com> Signed-off-by: Tony Nguyen <anthony.l.nguyen@intel.com> Tested-by: Andrew Bowers <andrewx.bowers@intel.com> Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
34 lines
1.3 KiB
C
34 lines
1.3 KiB
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/* Copyright (c) 2018, 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 Connection E822-C for backplane */
|
|
#define ICE_DEV_ID_E822C_BACKPLANE 0x1890
|
|
/* Intel(R) Ethernet Connection E822-C for QSFP */
|
|
#define ICE_DEV_ID_E822C_QSFP 0x1891
|
|
/* Intel(R) Ethernet Connection E822-C for SFP */
|
|
#define ICE_DEV_ID_E822C_SFP 0x1892
|
|
/* Intel(R) Ethernet Connection E822-C/X557-AT 10GBASE-T */
|
|
#define ICE_DEV_ID_E822C_10G_BASE_T 0x1893
|
|
/* Intel(R) Ethernet Connection E822-C 1GbE */
|
|
#define ICE_DEV_ID_E822C_SGMII 0x1894
|
|
/* Intel(R) Ethernet Connection E822-X for backplane */
|
|
#define ICE_DEV_ID_E822X_BACKPLANE 0x1897
|
|
/* Intel(R) Ethernet Connection E822-L for SFP */
|
|
#define ICE_DEV_ID_E822L_SFP 0x1898
|
|
/* Intel(R) Ethernet Connection E822-L/X557-AT 10GBASE-T */
|
|
#define ICE_DEV_ID_E822L_10G_BASE_T 0x1899
|
|
/* Intel(R) Ethernet Connection E822-L 1GbE */
|
|
#define ICE_DEV_ID_E822L_SGMII 0x189A
|
|
|
|
#endif /* _ICE_DEVIDS_H_ */
|