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 32 #ifndef _ICE_DEVIDS_H_ 33 #define _ICE_DEVIDS_H_ 34 35 /* Device IDs */ 36 #define ICE_DEV_ID_E822_SI_DFLT 0x1888 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 #define ICE_SUBDEV_ID_E810T3 0x02E9 56 #define ICE_SUBDEV_ID_E810T4 0x02EA 57 #define ICE_SUBDEV_ID_E810T5 0x0010 58 #define ICE_SUBDEV_ID_E810T6 0x0012 59 #define ICE_SUBDEV_ID_E810T7 0x0011 60 /* Intel(R) Ethernet Controller E810-XXV for backplane */ 61 #define ICE_DEV_ID_E810_XXV_BACKPLANE 0x1599 62 /* Intel(R) Ethernet Controller E810-XXV for QSFP */ 63 #define ICE_DEV_ID_E810_XXV_QSFP 0x159A 64 /* Intel(R) Ethernet Controller E810-XXV for SFP */ 65 #define ICE_DEV_ID_E810_XXV_SFP 0x159B 66 /* Intel(R) Ethernet Connection E823-C for backplane */ 67 #define ICE_DEV_ID_E823C_BACKPLANE 0x188A 68 /* Intel(R) Ethernet Connection E823-C for QSFP */ 69 #define ICE_DEV_ID_E823C_QSFP 0x188B 70 /* Intel(R) Ethernet Connection E823-C for SFP */ 71 #define ICE_DEV_ID_E823C_SFP 0x188C 72 /* Intel(R) Ethernet Connection E823-C/X557-AT 10GBASE-T */ 73 #define ICE_DEV_ID_E823C_10G_BASE_T 0x188D 74 /* Intel(R) Ethernet Connection E823-C 1GbE */ 75 #define ICE_DEV_ID_E823C_SGMII 0x188E 76 /* Intel(R) Ethernet Connection E822-C for backplane */ 77 #define ICE_DEV_ID_E822C_BACKPLANE 0x1890 78 /* Intel(R) Ethernet Connection E822-C for QSFP */ 79 #define ICE_DEV_ID_E822C_QSFP 0x1891 80 /* Intel(R) Ethernet Connection E822-C for SFP */ 81 #define ICE_DEV_ID_E822C_SFP 0x1892 82 /* Intel(R) Ethernet Connection E822-C/X557-AT 10GBASE-T */ 83 #define ICE_DEV_ID_E822C_10G_BASE_T 0x1893 84 /* Intel(R) Ethernet Connection E822-C 1GbE */ 85 #define ICE_DEV_ID_E822C_SGMII 0x1894 86 /* Intel(R) Ethernet Connection E822-L for backplane */ 87 #define ICE_DEV_ID_E822L_BACKPLANE 0x1897 88 /* Intel(R) Ethernet Connection E822-L for SFP */ 89 #define ICE_DEV_ID_E822L_SFP 0x1898 90 /* Intel(R) Ethernet Connection E822-L/X557-AT 10GBASE-T */ 91 #define ICE_DEV_ID_E822L_10G_BASE_T 0x1899 92 /* Intel(R) Ethernet Connection E822-L 1GbE */ 93 #define ICE_DEV_ID_E822L_SGMII 0x189A 94 #endif /* _ICE_DEVIDS_H_ */ 95