xref: /freebsd/sys/dev/ice/ice_devids.h (revision 9768746b)
1 /* SPDX-License-Identifier: BSD-3-Clause */
2 /*  Copyright (c) 2021, Intel Corporation
3  *  All rights reserved.
4  *
5  *  Redistribution and use in source and binary forms, with or without
6  *  modification, are permitted provided that the following conditions are met:
7  *
8  *   1. Redistributions of source code must retain the above copyright notice,
9  *      this list of conditions and the following disclaimer.
10  *
11  *   2. Redistributions in binary form must reproduce the above copyright
12  *      notice, this list of conditions and the following disclaimer in the
13  *      documentation and/or other materials provided with the distribution.
14  *
15  *   3. Neither the name of the Intel Corporation nor the names of its
16  *      contributors may be used to endorse or promote products derived from
17  *      this software without specific prior written permission.
18  *
19  *  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
20  *  AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21  *  IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22  *  ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
23  *  LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24  *  CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25  *  SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26  *  INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27  *  CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28  *  ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29  *  POSSIBILITY OF SUCH DAMAGE.
30  */
31 /*$FreeBSD$*/
32 
33 #ifndef _ICE_DEVIDS_H_
34 #define _ICE_DEVIDS_H_
35 
36 /* Device IDs */
37 /* Intel(R) Ethernet Connection E823-L for backplane */
38 #define ICE_DEV_ID_E823L_BACKPLANE	0x124C
39 /* Intel(R) Ethernet Connection E823-L for SFP */
40 #define ICE_DEV_ID_E823L_SFP		0x124D
41 /* Intel(R) Ethernet Connection E823-L/X557-AT 10GBASE-T */
42 #define ICE_DEV_ID_E823L_10G_BASE_T	0x124E
43 /* Intel(R) Ethernet Connection E823-L 1GbE */
44 #define ICE_DEV_ID_E823L_1GBE		0x124F
45 /* Intel(R) Ethernet Connection E823-L for QSFP */
46 #define ICE_DEV_ID_E823L_QSFP		0x151D
47 /* Intel(R) Ethernet Controller E810-C for backplane */
48 #define ICE_DEV_ID_E810C_BACKPLANE	0x1591
49 /* Intel(R) Ethernet Controller E810-C for QSFP */
50 #define ICE_DEV_ID_E810C_QSFP		0x1592
51 /* Intel(R) Ethernet Controller E810-C for SFP */
52 #define ICE_DEV_ID_E810C_SFP		0x1593
53 #define ICE_SUBDEV_ID_E810T		0x000E
54 #define ICE_SUBDEV_ID_E810T2		0x000F
55 /* Intel(R) Ethernet Controller E810-XXV for backplane */
56 #define ICE_DEV_ID_E810_XXV_BACKPLANE	0x1599
57 /* Intel(R) Ethernet Controller E810-XXV for QSFP */
58 #define ICE_DEV_ID_E810_XXV_QSFP	0x159A
59 /* Intel(R) Ethernet Controller E810-XXV for SFP */
60 #define ICE_DEV_ID_E810_XXV_SFP		0x159B
61 /* Intel(R) Ethernet Connection E823-C for backplane */
62 #define ICE_DEV_ID_E823C_BACKPLANE	0x188A
63 /* Intel(R) Ethernet Connection E823-C for QSFP */
64 #define ICE_DEV_ID_E823C_QSFP		0x188B
65 /* Intel(R) Ethernet Connection E823-C for SFP */
66 #define ICE_DEV_ID_E823C_SFP		0x188C
67 /* Intel(R) Ethernet Connection E823-C/X557-AT 10GBASE-T */
68 #define ICE_DEV_ID_E823C_10G_BASE_T	0x188D
69 /* Intel(R) Ethernet Connection E823-C 1GbE */
70 #define ICE_DEV_ID_E823C_SGMII		0x188E
71 /* Intel(R) Ethernet Connection E822-C for backplane */
72 #define ICE_DEV_ID_E822C_BACKPLANE	0x1890
73 /* Intel(R) Ethernet Connection E822-C for QSFP */
74 #define ICE_DEV_ID_E822C_QSFP		0x1891
75 /* Intel(R) Ethernet Connection E822-C for SFP */
76 #define ICE_DEV_ID_E822C_SFP		0x1892
77 /* Intel(R) Ethernet Connection E822-C/X557-AT 10GBASE-T */
78 #define ICE_DEV_ID_E822C_10G_BASE_T	0x1893
79 /* Intel(R) Ethernet Connection E822-C 1GbE */
80 #define ICE_DEV_ID_E822C_SGMII		0x1894
81 /* Intel(R) Ethernet Connection E822-L for backplane */
82 #define ICE_DEV_ID_E822L_BACKPLANE	0x1897
83 /* Intel(R) Ethernet Connection E822-L for SFP */
84 #define ICE_DEV_ID_E822L_SFP		0x1898
85 /* Intel(R) Ethernet Connection E822-L/X557-AT 10GBASE-T */
86 #define ICE_DEV_ID_E822L_10G_BASE_T	0x1899
87 /* Intel(R) Ethernet Connection E822-L 1GbE */
88 #define ICE_DEV_ID_E822L_SGMII		0x189A
89 
90 #endif /* _ICE_DEVIDS_H_ */
91