1 /* SPDX-License-Identifier: BSD-3-Clause */ 2 /* Copyright (c) 2023, 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 #define ICE_DEV_ID_E822_SI_DFLT 0x1888 38 /* Intel(R) Ethernet Connection E823-L for backplane */ 39 #define ICE_DEV_ID_E823L_BACKPLANE 0x124C 40 /* Intel(R) Ethernet Connection E823-L for SFP */ 41 #define ICE_DEV_ID_E823L_SFP 0x124D 42 /* Intel(R) Ethernet Connection E823-L/X557-AT 10GBASE-T */ 43 #define ICE_DEV_ID_E823L_10G_BASE_T 0x124E 44 /* Intel(R) Ethernet Connection E823-L 1GbE */ 45 #define ICE_DEV_ID_E823L_1GBE 0x124F 46 /* Intel(R) Ethernet Connection E823-L for QSFP */ 47 #define ICE_DEV_ID_E823L_QSFP 0x151D 48 /* Intel(R) Ethernet Controller E810-C for backplane */ 49 #define ICE_DEV_ID_E810C_BACKPLANE 0x1591 50 /* Intel(R) Ethernet Controller E810-C for QSFP */ 51 #define ICE_DEV_ID_E810C_QSFP 0x1592 52 /* Intel(R) Ethernet Controller E810-C for SFP */ 53 #define ICE_DEV_ID_E810C_SFP 0x1593 54 #define ICE_SUBDEV_ID_E810T 0x000E 55 #define ICE_SUBDEV_ID_E810T2 0x000F 56 #define ICE_SUBDEV_ID_E810T3 0x02E9 57 #define ICE_SUBDEV_ID_E810T4 0x02EA 58 #define ICE_SUBDEV_ID_E810T5 0x0010 59 #define ICE_SUBDEV_ID_E810T6 0x0012 60 #define ICE_SUBDEV_ID_E810T7 0x0011 61 /* Intel(R) Ethernet Controller E810-XXV for backplane */ 62 #define ICE_DEV_ID_E810_XXV_BACKPLANE 0x1599 63 /* Intel(R) Ethernet Controller E810-XXV for QSFP */ 64 #define ICE_DEV_ID_E810_XXV_QSFP 0x159A 65 /* Intel(R) Ethernet Controller E810-XXV for SFP */ 66 #define ICE_DEV_ID_E810_XXV_SFP 0x159B 67 /* Intel(R) Ethernet Connection E823-C for backplane */ 68 #define ICE_DEV_ID_E823C_BACKPLANE 0x188A 69 /* Intel(R) Ethernet Connection E823-C for QSFP */ 70 #define ICE_DEV_ID_E823C_QSFP 0x188B 71 /* Intel(R) Ethernet Connection E823-C for SFP */ 72 #define ICE_DEV_ID_E823C_SFP 0x188C 73 /* Intel(R) Ethernet Connection E823-C/X557-AT 10GBASE-T */ 74 #define ICE_DEV_ID_E823C_10G_BASE_T 0x188D 75 /* Intel(R) Ethernet Connection E823-C 1GbE */ 76 #define ICE_DEV_ID_E823C_SGMII 0x188E 77 /* Intel(R) Ethernet Connection E822-C for backplane */ 78 #define ICE_DEV_ID_E822C_BACKPLANE 0x1890 79 /* Intel(R) Ethernet Connection E822-C for QSFP */ 80 #define ICE_DEV_ID_E822C_QSFP 0x1891 81 /* Intel(R) Ethernet Connection E822-C for SFP */ 82 #define ICE_DEV_ID_E822C_SFP 0x1892 83 /* Intel(R) Ethernet Connection E822-C/X557-AT 10GBASE-T */ 84 #define ICE_DEV_ID_E822C_10G_BASE_T 0x1893 85 /* Intel(R) Ethernet Connection E822-C 1GbE */ 86 #define ICE_DEV_ID_E822C_SGMII 0x1894 87 /* Intel(R) Ethernet Connection E822-L for backplane */ 88 #define ICE_DEV_ID_E822L_BACKPLANE 0x1897 89 /* Intel(R) Ethernet Connection E822-L for SFP */ 90 #define ICE_DEV_ID_E822L_SFP 0x1898 91 /* Intel(R) Ethernet Connection E822-L/X557-AT 10GBASE-T */ 92 #define ICE_DEV_ID_E822L_10G_BASE_T 0x1899 93 /* Intel(R) Ethernet Connection E822-L 1GbE */ 94 #define ICE_DEV_ID_E822L_SGMII 0x189A 95 #endif /* _ICE_DEVIDS_H_ */ 96