xref: /freebsd/sys/dev/ice/ice_devids.h (revision 19261079)
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 /* Intel(R) Ethernet Controller E810-XXV for backplane */
54 #define ICE_DEV_ID_E810_XXV_BACKPLANE	0x1599
55 /* Intel(R) Ethernet Controller E810-XXV for QSFP */
56 #define ICE_DEV_ID_E810_XXV_QSFP	0x159A
57 /* Intel(R) Ethernet Controller E810-XXV for SFP */
58 #define ICE_DEV_ID_E810_XXV_SFP		0x159B
59 /* Intel(R) Ethernet Connection E822-C for backplane */
60 #define ICE_DEV_ID_E822C_BACKPLANE	0x1890
61 /* Intel(R) Ethernet Connection E822-C for QSFP */
62 #define ICE_DEV_ID_E822C_QSFP		0x1891
63 /* Intel(R) Ethernet Connection E822-C for SFP */
64 #define ICE_DEV_ID_E822C_SFP		0x1892
65 /* Intel(R) Ethernet Connection E822-C/X557-AT 10GBASE-T */
66 #define ICE_DEV_ID_E822C_10G_BASE_T	0x1893
67 /* Intel(R) Ethernet Connection E822-C 1GbE */
68 #define ICE_DEV_ID_E822C_SGMII		0x1894
69 /* Intel(R) Ethernet Connection E822-L for backplane */
70 #define ICE_DEV_ID_E822L_BACKPLANE	0x1897
71 /* Intel(R) Ethernet Connection E822-L for SFP */
72 #define ICE_DEV_ID_E822L_SFP		0x1898
73 /* Intel(R) Ethernet Connection E822-L/X557-AT 10GBASE-T */
74 #define ICE_DEV_ID_E822L_10G_BASE_T	0x1899
75 /* Intel(R) Ethernet Connection E822-L 1GbE */
76 #define ICE_DEV_ID_E822L_SGMII		0x189A
77 
78 #endif /* _ICE_DEVIDS_H_ */
79