e1000: add 82583v pci id
[dpdk.git] / lib / librte_eal / common / include / rte_pci_dev_ids.h
1 /*-
2  * This file is provided under a dual BSD/GPLv2 license.  When using or
3  *   redistributing this file, you may do so under either license.
4  *
5  *   GPL LICENSE SUMMARY
6  *
7  *   Copyright(c) 2010-2014 Intel Corporation. All rights reserved.
8  *
9  *   This program is free software; you can redistribute it and/or modify
10  *   it under the terms of version 2 of the GNU General Public License as
11  *   published by the Free Software Foundation.
12  *
13  *   This program is distributed in the hope that it will be useful, but
14  *   WITHOUT ANY WARRANTY; without even the implied warranty of
15  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  *   General Public License for more details.
17  *
18  *   You should have received a copy of the GNU General Public License
19  *   along with this program; if not, write to the Free Software
20  *   Foundation, Inc., 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
21  *   The full GNU General Public License is included in this distribution
22  *   in the file called LICENSE.GPL.
23  *
24  *   Contact Information:
25  *   Intel Corporation
26  *
27  *   BSD LICENSE
28  *
29  *   Copyright(c) 2010-2014 Intel Corporation. All rights reserved.
30  *   All rights reserved.
31  *
32  *   Redistribution and use in source and binary forms, with or without
33  *   modification, are permitted provided that the following conditions
34  *   are met:
35  *
36  *     * Redistributions of source code must retain the above copyright
37  *       notice, this list of conditions and the following disclaimer.
38  *     * Redistributions in binary form must reproduce the above copyright
39  *       notice, this list of conditions and the following disclaimer in
40  *       the documentation and/or other materials provided with the
41  *       distribution.
42  *     * Neither the name of Intel Corporation nor the names of its
43  *       contributors may be used to endorse or promote products derived
44  *       from this software without specific prior written permission.
45  *
46  *   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
47  *   "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
48  *   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
49  *   A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
50  *   OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
51  *   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
52  *   LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
53  *   DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
54  *   THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
55  *   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
56  *   OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
57  *
58  */
59
60 /**
61  * @file
62  *
63  * This file contains a list of the PCI device IDs recognised by DPDK, which
64  * can be used to fill out an array of structures describing the devices.
65  *
66  * Currently four families of devices are recognised: those supported by the
67  * IGB driver, by EM driver, those supported by the IXGBE driver, and by virtio
68  * driver which is a para virtualization driver running in guest virtual machine.
69  * The inclusion of these in an array built using this file depends on the
70  * definition of
71  * RTE_PCI_DEV_ID_DECL_EM
72  * RTE_PCI_DEV_ID_DECL_IGB
73  * RTE_PCI_DEV_ID_DECL_IGBVF
74  * RTE_PCI_DEV_ID_DECL_IXGBE
75  * RTE_PCI_DEV_ID_DECL_IXGBEVF
76  * RTE_PCI_DEV_ID_DECL_I40E
77  * RTE_PCI_DEV_ID_DECL_I40EVF
78  * RTE_PCI_DEV_ID_DECL_VIRTIO
79  * at the time when this file is included.
80  *
81  * In order to populate an array, the user of this file must define this macro:
82  * RTE_PCI_DEV_ID_DECL_IXGBE(vendorID, deviceID). For example:
83  *
84  * @code
85  * struct device {
86  *     int vend;
87  *     int dev;
88  * };
89  *
90  * struct device devices[] = {
91  * #define RTE_PCI_DEV_ID_DECL_IXGBE(vendorID, deviceID) {vend, dev},
92  * #include <rte_pci_dev_ids.h>
93  * };
94  * @endcode
95  *
96  * Note that this file can be included multiple times within the same file.
97  */
98
99 #ifndef RTE_PCI_DEV_ID_DECL_EM
100 #define RTE_PCI_DEV_ID_DECL_EM(vend, dev)
101 #endif
102
103 #ifndef RTE_PCI_DEV_ID_DECL_IGB
104 #define RTE_PCI_DEV_ID_DECL_IGB(vend, dev)
105 #endif
106
107 #ifndef RTE_PCI_DEV_ID_DECL_IGBVF
108 #define RTE_PCI_DEV_ID_DECL_IGBVF(vend, dev)
109 #endif
110
111 #ifndef RTE_PCI_DEV_ID_DECL_IXGBE
112 #define RTE_PCI_DEV_ID_DECL_IXGBE(vend, dev)
113 #endif
114
115 #ifndef RTE_PCI_DEV_ID_DECL_IXGBEVF
116 #define RTE_PCI_DEV_ID_DECL_IXGBEVF(vend, dev)
117 #endif
118
119 #ifndef RTE_PCI_DEV_ID_DECL_I40E
120 #define RTE_PCI_DEV_ID_DECL_I40E(vend, dev)
121 #endif
122
123 #ifndef RTE_PCI_DEV_ID_DECL_I40EVF
124 #define RTE_PCI_DEV_ID_DECL_I40EVF(vend, dev)
125 #endif
126
127 #ifndef RTE_PCI_DEV_ID_DECL_VIRTIO
128 #define RTE_PCI_DEV_ID_DECL_VIRTIO(vend, dev)
129 #endif
130
131 #ifndef RTE_PCI_DEV_ID_DECL_VMXNET3
132 #define RTE_PCI_DEV_ID_DECL_VMXNET3(vend, dev)
133 #endif
134
135 #ifndef RTE_PCI_DEV_ID_DECL_FM10K
136 #define RTE_PCI_DEV_ID_DECL_FM10K(vend, dev)
137 #endif
138
139 #ifndef RTE_PCI_DEV_ID_DECL_FM10KVF
140 #define RTE_PCI_DEV_ID_DECL_FM10KVF(vend, dev)
141 #endif
142
143 #ifndef RTE_PCI_DEV_ID_DECL_ENIC
144 #define RTE_PCI_DEV_ID_DECL_ENIC(vend, dev)
145 #endif
146
147 #ifndef PCI_VENDOR_ID_INTEL
148 /** Vendor ID used by Intel devices */
149 #define PCI_VENDOR_ID_INTEL 0x8086
150 #endif
151
152 #ifndef PCI_VENDOR_ID_QUMRANET
153 /** Vendor ID used by virtio devices */
154 #define PCI_VENDOR_ID_QUMRANET 0x1AF4
155 #endif
156
157 #ifndef PCI_VENDOR_ID_VMWARE
158 /** Vendor ID used by VMware devices */
159 #define PCI_VENDOR_ID_VMWARE 0x15AD
160 #endif
161
162 #ifndef PCI_VENDOR_ID_CISCO
163 /** Vendor ID used by Cisco VIC devices */
164 #define PCI_VENDOR_ID_CISCO 0x1137
165 #endif
166
167 /******************** Physical EM devices from e1000_hw.h ********************/
168
169 #define E1000_DEV_ID_82542                    0x1000
170 #define E1000_DEV_ID_82543GC_FIBER            0x1001
171 #define E1000_DEV_ID_82543GC_COPPER           0x1004
172 #define E1000_DEV_ID_82544EI_COPPER           0x1008
173 #define E1000_DEV_ID_82544EI_FIBER            0x1009
174 #define E1000_DEV_ID_82544GC_COPPER           0x100C
175 #define E1000_DEV_ID_82544GC_LOM              0x100D
176 #define E1000_DEV_ID_82540EM                  0x100E
177 #define E1000_DEV_ID_82540EM_LOM              0x1015
178 #define E1000_DEV_ID_82540EP_LOM              0x1016
179 #define E1000_DEV_ID_82540EP                  0x1017
180 #define E1000_DEV_ID_82540EP_LP               0x101E
181 #define E1000_DEV_ID_82545EM_COPPER           0x100F
182 #define E1000_DEV_ID_82545EM_FIBER            0x1011
183 #define E1000_DEV_ID_82545GM_COPPER           0x1026
184 #define E1000_DEV_ID_82545GM_FIBER            0x1027
185 #define E1000_DEV_ID_82545GM_SERDES           0x1028
186 #define E1000_DEV_ID_82546EB_COPPER           0x1010
187 #define E1000_DEV_ID_82546EB_FIBER            0x1012
188 #define E1000_DEV_ID_82546EB_QUAD_COPPER      0x101D
189 #define E1000_DEV_ID_82546GB_COPPER           0x1079
190 #define E1000_DEV_ID_82546GB_FIBER            0x107A
191 #define E1000_DEV_ID_82546GB_SERDES           0x107B
192 #define E1000_DEV_ID_82546GB_PCIE             0x108A
193 #define E1000_DEV_ID_82546GB_QUAD_COPPER      0x1099
194 #define E1000_DEV_ID_82546GB_QUAD_COPPER_KSP3 0x10B5
195 #define E1000_DEV_ID_82541EI                  0x1013
196 #define E1000_DEV_ID_82541EI_MOBILE           0x1018
197 #define E1000_DEV_ID_82541ER_LOM              0x1014
198 #define E1000_DEV_ID_82541ER                  0x1078
199 #define E1000_DEV_ID_82541GI                  0x1076
200 #define E1000_DEV_ID_82541GI_LF               0x107C
201 #define E1000_DEV_ID_82541GI_MOBILE           0x1077
202 #define E1000_DEV_ID_82547EI                  0x1019
203 #define E1000_DEV_ID_82547EI_MOBILE           0x101A
204 #define E1000_DEV_ID_82547GI                  0x1075
205 #define E1000_DEV_ID_82571EB_COPPER           0x105E
206 #define E1000_DEV_ID_82571EB_FIBER            0x105F
207 #define E1000_DEV_ID_82571EB_SERDES           0x1060
208 #define E1000_DEV_ID_82571EB_SERDES_DUAL      0x10D9
209 #define E1000_DEV_ID_82571EB_SERDES_QUAD      0x10DA
210 #define E1000_DEV_ID_82571EB_QUAD_COPPER      0x10A4
211 #define E1000_DEV_ID_82571PT_QUAD_COPPER      0x10D5
212 #define E1000_DEV_ID_82571EB_QUAD_FIBER       0x10A5
213 #define E1000_DEV_ID_82571EB_QUAD_COPPER_LP   0x10BC
214 #define E1000_DEV_ID_82572EI_COPPER           0x107D
215 #define E1000_DEV_ID_82572EI_FIBER            0x107E
216 #define E1000_DEV_ID_82572EI_SERDES           0x107F
217 #define E1000_DEV_ID_82572EI                  0x10B9
218 #define E1000_DEV_ID_82573E                   0x108B
219 #define E1000_DEV_ID_82573E_IAMT              0x108C
220 #define E1000_DEV_ID_82573L                   0x109A
221 #define E1000_DEV_ID_82574L                   0x10D3
222 #define E1000_DEV_ID_82574LA                  0x10F6
223 #define E1000_DEV_ID_82583V                   0x150C
224 #define E1000_DEV_ID_80003ES2LAN_COPPER_DPT   0x1096
225 #define E1000_DEV_ID_80003ES2LAN_SERDES_DPT   0x1098
226 #define E1000_DEV_ID_80003ES2LAN_COPPER_SPT   0x10BA
227 #define E1000_DEV_ID_80003ES2LAN_SERDES_SPT   0x10BB
228 #define E1000_DEV_ID_ICH8_82567V_3            0x1501
229 #define E1000_DEV_ID_ICH8_IGP_M_AMT           0x1049
230 #define E1000_DEV_ID_ICH8_IGP_AMT             0x104A
231 #define E1000_DEV_ID_ICH8_IGP_C               0x104B
232 #define E1000_DEV_ID_ICH8_IFE                 0x104C
233 #define E1000_DEV_ID_ICH8_IFE_GT              0x10C4
234 #define E1000_DEV_ID_ICH8_IFE_G               0x10C5
235 #define E1000_DEV_ID_ICH8_IGP_M               0x104D
236 #define E1000_DEV_ID_ICH9_IGP_M               0x10BF
237 #define E1000_DEV_ID_ICH9_IGP_M_AMT           0x10F5
238 #define E1000_DEV_ID_ICH9_IGP_M_V             0x10CB
239 #define E1000_DEV_ID_ICH9_IGP_AMT             0x10BD
240 #define E1000_DEV_ID_ICH9_BM                  0x10E5
241 #define E1000_DEV_ID_ICH9_IGP_C               0x294C
242 #define E1000_DEV_ID_ICH9_IFE                 0x10C0
243 #define E1000_DEV_ID_ICH9_IFE_GT              0x10C3
244 #define E1000_DEV_ID_ICH9_IFE_G               0x10C2
245 #define E1000_DEV_ID_ICH10_R_BM_LM            0x10CC
246 #define E1000_DEV_ID_ICH10_R_BM_LF            0x10CD
247 #define E1000_DEV_ID_ICH10_R_BM_V             0x10CE
248 #define E1000_DEV_ID_ICH10_D_BM_LM            0x10DE
249 #define E1000_DEV_ID_ICH10_D_BM_LF            0x10DF
250 #define E1000_DEV_ID_ICH10_D_BM_V             0x1525
251
252 #define E1000_DEV_ID_PCH_M_HV_LM              0x10EA
253 #define E1000_DEV_ID_PCH_M_HV_LC              0x10EB
254 #define E1000_DEV_ID_PCH_D_HV_DM              0x10EF
255 #define E1000_DEV_ID_PCH_D_HV_DC              0x10F0
256 #define E1000_DEV_ID_PCH2_LV_LM               0x1502
257 #define E1000_DEV_ID_PCH2_LV_V                0x1503
258 #define E1000_DEV_ID_PCH_LPT_I217_LM          0x153A
259 #define E1000_DEV_ID_PCH_LPT_I217_V           0x153B
260 #define E1000_DEV_ID_PCH_LPTLP_I218_LM        0x155A
261 #define E1000_DEV_ID_PCH_LPTLP_I218_V         0x1559
262
263 /*
264  * Tested (supported) on VM emulated HW.
265  */
266
267 RTE_PCI_DEV_ID_DECL_EM(PCI_VENDOR_ID_INTEL, E1000_DEV_ID_82540EM)
268 RTE_PCI_DEV_ID_DECL_EM(PCI_VENDOR_ID_INTEL, E1000_DEV_ID_82545EM_COPPER)
269 RTE_PCI_DEV_ID_DECL_EM(PCI_VENDOR_ID_INTEL, E1000_DEV_ID_82545EM_FIBER)
270
271 /*
272  * Tested (supported) on real HW.
273  */
274
275 RTE_PCI_DEV_ID_DECL_EM(PCI_VENDOR_ID_INTEL, E1000_DEV_ID_82546EB_COPPER)
276 RTE_PCI_DEV_ID_DECL_EM(PCI_VENDOR_ID_INTEL, E1000_DEV_ID_82546EB_FIBER)
277 RTE_PCI_DEV_ID_DECL_EM(PCI_VENDOR_ID_INTEL, E1000_DEV_ID_82546EB_QUAD_COPPER)
278 RTE_PCI_DEV_ID_DECL_EM(PCI_VENDOR_ID_INTEL, E1000_DEV_ID_82571EB_COPPER)
279 RTE_PCI_DEV_ID_DECL_EM(PCI_VENDOR_ID_INTEL, E1000_DEV_ID_82571EB_FIBER)
280 RTE_PCI_DEV_ID_DECL_EM(PCI_VENDOR_ID_INTEL, E1000_DEV_ID_82571EB_SERDES)
281 RTE_PCI_DEV_ID_DECL_EM(PCI_VENDOR_ID_INTEL, E1000_DEV_ID_82571EB_SERDES_DUAL)
282 RTE_PCI_DEV_ID_DECL_EM(PCI_VENDOR_ID_INTEL, E1000_DEV_ID_82571EB_SERDES_QUAD)
283 RTE_PCI_DEV_ID_DECL_EM(PCI_VENDOR_ID_INTEL, E1000_DEV_ID_82571EB_QUAD_COPPER)
284 RTE_PCI_DEV_ID_DECL_EM(PCI_VENDOR_ID_INTEL, E1000_DEV_ID_82571PT_QUAD_COPPER)
285 RTE_PCI_DEV_ID_DECL_EM(PCI_VENDOR_ID_INTEL, E1000_DEV_ID_82571EB_QUAD_FIBER)
286 RTE_PCI_DEV_ID_DECL_EM(PCI_VENDOR_ID_INTEL, E1000_DEV_ID_82571EB_QUAD_COPPER_LP)
287 RTE_PCI_DEV_ID_DECL_EM(PCI_VENDOR_ID_INTEL, E1000_DEV_ID_82572EI_COPPER)
288 RTE_PCI_DEV_ID_DECL_EM(PCI_VENDOR_ID_INTEL, E1000_DEV_ID_82572EI_FIBER)
289 RTE_PCI_DEV_ID_DECL_EM(PCI_VENDOR_ID_INTEL, E1000_DEV_ID_82572EI_SERDES)
290 RTE_PCI_DEV_ID_DECL_EM(PCI_VENDOR_ID_INTEL, E1000_DEV_ID_82572EI)
291 RTE_PCI_DEV_ID_DECL_EM(PCI_VENDOR_ID_INTEL, E1000_DEV_ID_82573L)
292 RTE_PCI_DEV_ID_DECL_EM(PCI_VENDOR_ID_INTEL, E1000_DEV_ID_82574L)
293 RTE_PCI_DEV_ID_DECL_EM(PCI_VENDOR_ID_INTEL, E1000_DEV_ID_82574LA)
294 RTE_PCI_DEV_ID_DECL_EM(PCI_VENDOR_ID_INTEL, E1000_DEV_ID_82583V)
295
296 /******************** Physical IGB devices from e1000_hw.h ********************/
297
298 #define E1000_DEV_ID_82576                      0x10C9
299 #define E1000_DEV_ID_82576_FIBER                0x10E6
300 #define E1000_DEV_ID_82576_SERDES               0x10E7
301 #define E1000_DEV_ID_82576_QUAD_COPPER          0x10E8
302 #define E1000_DEV_ID_82576_QUAD_COPPER_ET2      0x1526
303 #define E1000_DEV_ID_82576_NS                   0x150A
304 #define E1000_DEV_ID_82576_NS_SERDES            0x1518
305 #define E1000_DEV_ID_82576_SERDES_QUAD          0x150D
306 #define E1000_DEV_ID_82575EB_COPPER             0x10A7
307 #define E1000_DEV_ID_82575EB_FIBER_SERDES       0x10A9
308 #define E1000_DEV_ID_82575GB_QUAD_COPPER        0x10D6
309 #define E1000_DEV_ID_82580_COPPER               0x150E
310 #define E1000_DEV_ID_82580_FIBER                0x150F
311 #define E1000_DEV_ID_82580_SERDES               0x1510
312 #define E1000_DEV_ID_82580_SGMII                0x1511
313 #define E1000_DEV_ID_82580_COPPER_DUAL          0x1516
314 #define E1000_DEV_ID_82580_QUAD_FIBER           0x1527
315 #define E1000_DEV_ID_I350_COPPER                0x1521
316 #define E1000_DEV_ID_I350_FIBER                 0x1522
317 #define E1000_DEV_ID_I350_SERDES                0x1523
318 #define E1000_DEV_ID_I350_SGMII                 0x1524
319 #define E1000_DEV_ID_I350_DA4                   0x1546
320 #define E1000_DEV_ID_I210_COPPER                0x1533
321 #define E1000_DEV_ID_I210_COPPER_OEM1           0x1534
322 #define E1000_DEV_ID_I210_COPPER_IT             0x1535
323 #define E1000_DEV_ID_I210_FIBER                 0x1536
324 #define E1000_DEV_ID_I210_SERDES                0x1537
325 #define E1000_DEV_ID_I210_SGMII                 0x1538
326 #define E1000_DEV_ID_I210_COPPER_FLASHLESS      0x157B
327 #define E1000_DEV_ID_I210_SERDES_FLASHLESS      0x157C
328 #define E1000_DEV_ID_I211_COPPER                0x1539
329 #define E1000_DEV_ID_I354_BACKPLANE_1GBPS       0x1F40
330 #define E1000_DEV_ID_I354_SGMII                 0x1F41
331 #define E1000_DEV_ID_I354_BACKPLANE_2_5GBPS     0x1F45
332 #define E1000_DEV_ID_DH89XXCC_SGMII             0x0438
333 #define E1000_DEV_ID_DH89XXCC_SERDES            0x043A
334 #define E1000_DEV_ID_DH89XXCC_BACKPLANE         0x043C
335 #define E1000_DEV_ID_DH89XXCC_SFP               0x0440
336
337 RTE_PCI_DEV_ID_DECL_IGB(PCI_VENDOR_ID_INTEL, E1000_DEV_ID_82576)
338 RTE_PCI_DEV_ID_DECL_IGB(PCI_VENDOR_ID_INTEL, E1000_DEV_ID_82576_FIBER)
339 RTE_PCI_DEV_ID_DECL_IGB(PCI_VENDOR_ID_INTEL, E1000_DEV_ID_82576_SERDES)
340 RTE_PCI_DEV_ID_DECL_IGB(PCI_VENDOR_ID_INTEL, E1000_DEV_ID_82576_QUAD_COPPER)
341 RTE_PCI_DEV_ID_DECL_IGB(PCI_VENDOR_ID_INTEL, E1000_DEV_ID_82576_QUAD_COPPER_ET2)
342 RTE_PCI_DEV_ID_DECL_IGB(PCI_VENDOR_ID_INTEL, E1000_DEV_ID_82576_NS)
343 RTE_PCI_DEV_ID_DECL_IGB(PCI_VENDOR_ID_INTEL, E1000_DEV_ID_82576_NS_SERDES)
344 RTE_PCI_DEV_ID_DECL_IGB(PCI_VENDOR_ID_INTEL, E1000_DEV_ID_82576_SERDES_QUAD)
345
346 RTE_PCI_DEV_ID_DECL_IGB(PCI_VENDOR_ID_INTEL, E1000_DEV_ID_82575EB_COPPER)
347 RTE_PCI_DEV_ID_DECL_IGB(PCI_VENDOR_ID_INTEL, E1000_DEV_ID_82575EB_FIBER_SERDES)
348 RTE_PCI_DEV_ID_DECL_IGB(PCI_VENDOR_ID_INTEL, E1000_DEV_ID_82575GB_QUAD_COPPER)
349
350 RTE_PCI_DEV_ID_DECL_IGB(PCI_VENDOR_ID_INTEL, E1000_DEV_ID_82580_COPPER)
351 RTE_PCI_DEV_ID_DECL_IGB(PCI_VENDOR_ID_INTEL, E1000_DEV_ID_82580_FIBER)
352 RTE_PCI_DEV_ID_DECL_IGB(PCI_VENDOR_ID_INTEL, E1000_DEV_ID_82580_SERDES)
353 RTE_PCI_DEV_ID_DECL_IGB(PCI_VENDOR_ID_INTEL, E1000_DEV_ID_82580_SGMII)
354 RTE_PCI_DEV_ID_DECL_IGB(PCI_VENDOR_ID_INTEL, E1000_DEV_ID_82580_COPPER_DUAL)
355 RTE_PCI_DEV_ID_DECL_IGB(PCI_VENDOR_ID_INTEL, E1000_DEV_ID_82580_QUAD_FIBER)
356
357 RTE_PCI_DEV_ID_DECL_IGB(PCI_VENDOR_ID_INTEL, E1000_DEV_ID_I350_COPPER)
358 RTE_PCI_DEV_ID_DECL_IGB(PCI_VENDOR_ID_INTEL, E1000_DEV_ID_I350_FIBER)
359 RTE_PCI_DEV_ID_DECL_IGB(PCI_VENDOR_ID_INTEL, E1000_DEV_ID_I350_SERDES)
360 RTE_PCI_DEV_ID_DECL_IGB(PCI_VENDOR_ID_INTEL, E1000_DEV_ID_I350_SGMII)
361 RTE_PCI_DEV_ID_DECL_IGB(PCI_VENDOR_ID_INTEL, E1000_DEV_ID_I350_DA4)
362 RTE_PCI_DEV_ID_DECL_IGB(PCI_VENDOR_ID_INTEL, E1000_DEV_ID_I210_COPPER)
363 RTE_PCI_DEV_ID_DECL_IGB(PCI_VENDOR_ID_INTEL, E1000_DEV_ID_I210_COPPER_OEM1)
364 RTE_PCI_DEV_ID_DECL_IGB(PCI_VENDOR_ID_INTEL, E1000_DEV_ID_I210_COPPER_IT)
365 RTE_PCI_DEV_ID_DECL_IGB(PCI_VENDOR_ID_INTEL, E1000_DEV_ID_I210_FIBER)
366 RTE_PCI_DEV_ID_DECL_IGB(PCI_VENDOR_ID_INTEL, E1000_DEV_ID_I210_SERDES)
367 RTE_PCI_DEV_ID_DECL_IGB(PCI_VENDOR_ID_INTEL, E1000_DEV_ID_I210_SGMII)
368 RTE_PCI_DEV_ID_DECL_IGB(PCI_VENDOR_ID_INTEL, E1000_DEV_ID_I211_COPPER)
369 RTE_PCI_DEV_ID_DECL_IGB(PCI_VENDOR_ID_INTEL, E1000_DEV_ID_I354_BACKPLANE_1GBPS)
370 RTE_PCI_DEV_ID_DECL_IGB(PCI_VENDOR_ID_INTEL, E1000_DEV_ID_I354_SGMII)
371 RTE_PCI_DEV_ID_DECL_IGB(PCI_VENDOR_ID_INTEL, E1000_DEV_ID_I354_BACKPLANE_2_5GBPS)
372 RTE_PCI_DEV_ID_DECL_IGB(PCI_VENDOR_ID_INTEL, E1000_DEV_ID_DH89XXCC_SGMII)
373 RTE_PCI_DEV_ID_DECL_IGB(PCI_VENDOR_ID_INTEL, E1000_DEV_ID_DH89XXCC_SERDES)
374 RTE_PCI_DEV_ID_DECL_IGB(PCI_VENDOR_ID_INTEL, E1000_DEV_ID_DH89XXCC_BACKPLANE)
375 RTE_PCI_DEV_ID_DECL_IGB(PCI_VENDOR_ID_INTEL, E1000_DEV_ID_DH89XXCC_SFP)
376
377 /****************** Physical IXGBE devices from ixgbe_type.h ******************/
378
379 #define IXGBE_DEV_ID_82598                      0x10B6
380 #define IXGBE_DEV_ID_82598_BX                   0x1508
381 #define IXGBE_DEV_ID_82598AF_DUAL_PORT          0x10C6
382 #define IXGBE_DEV_ID_82598AF_SINGLE_PORT        0x10C7
383 #define IXGBE_DEV_ID_82598AT                    0x10C8
384 #define IXGBE_DEV_ID_82598AT2                   0x150B
385 #define IXGBE_DEV_ID_82598EB_SFP_LOM            0x10DB
386 #define IXGBE_DEV_ID_82598EB_CX4                0x10DD
387 #define IXGBE_DEV_ID_82598_CX4_DUAL_PORT        0x10EC
388 #define IXGBE_DEV_ID_82598_DA_DUAL_PORT         0x10F1
389 #define IXGBE_DEV_ID_82598_SR_DUAL_PORT_EM      0x10E1
390 #define IXGBE_DEV_ID_82598EB_XF_LR              0x10F4
391 #define IXGBE_DEV_ID_82599_KX4                  0x10F7
392 #define IXGBE_DEV_ID_82599_KX4_MEZZ             0x1514
393 #define IXGBE_DEV_ID_82599_KR                   0x1517
394 #define IXGBE_DEV_ID_82599_COMBO_BACKPLANE      0x10F8
395 #define IXGBE_SUBDEV_ID_82599_KX4_KR_MEZZ       0x000C
396 #define IXGBE_DEV_ID_82599_CX4                  0x10F9
397 #define IXGBE_DEV_ID_82599_SFP                  0x10FB
398 #define IXGBE_SUBDEV_ID_82599_SFP               0x11A9
399 #define IXGBE_SUBDEV_ID_82599_RNDC              0x1F72
400 #define IXGBE_SUBDEV_ID_82599_560FLR            0x17D0
401 #define IXGBE_SUBDEV_ID_82599_ECNA_DP           0x0470
402 #define IXGBE_DEV_ID_82599_BACKPLANE_FCOE       0x152A
403 #define IXGBE_DEV_ID_82599_SFP_FCOE             0x1529
404 #define IXGBE_DEV_ID_82599_SFP_EM               0x1507
405 #define IXGBE_DEV_ID_82599_SFP_SF2              0x154D
406 #define IXGBE_DEV_ID_82599_SFP_SF_QP            0x154A
407 #define IXGBE_DEV_ID_82599_QSFP_SF_QP           0x1558
408 #define IXGBE_DEV_ID_82599EN_SFP                0x1557
409 #define IXGBE_DEV_ID_82599_XAUI_LOM             0x10FC
410 #define IXGBE_DEV_ID_82599_T3_LOM               0x151C
411 #define IXGBE_DEV_ID_82599_LS                   0x154F
412 #define IXGBE_DEV_ID_X540T                      0x1528
413 #define IXGBE_DEV_ID_X540T1                     0x1560
414 #define IXGBE_DEV_ID_X550EM_X_SFP               0x15AC
415 #define IXGBE_DEV_ID_X550EM_X_10G_T             0x15AD
416 #define IXGBE_DEV_ID_X550EM_X_1G_T              0x15AE
417 #define IXGBE_DEV_ID_X550T                      0x1563
418 #define IXGBE_DEV_ID_X550EM_X_KX4               0x15AA
419 #define IXGBE_DEV_ID_X550EM_X_KR                0x15AB
420
421 #ifdef RTE_NIC_BYPASS
422 #define IXGBE_DEV_ID_82599_BYPASS               0x155D
423 #endif
424
425 RTE_PCI_DEV_ID_DECL_IXGBE(PCI_VENDOR_ID_INTEL, IXGBE_DEV_ID_82598)
426 RTE_PCI_DEV_ID_DECL_IXGBE(PCI_VENDOR_ID_INTEL, IXGBE_DEV_ID_82598_BX)
427 RTE_PCI_DEV_ID_DECL_IXGBE(PCI_VENDOR_ID_INTEL, IXGBE_DEV_ID_82598AF_DUAL_PORT)
428 RTE_PCI_DEV_ID_DECL_IXGBE(PCI_VENDOR_ID_INTEL, \
429         IXGBE_DEV_ID_82598AF_SINGLE_PORT)
430 RTE_PCI_DEV_ID_DECL_IXGBE(PCI_VENDOR_ID_INTEL, IXGBE_DEV_ID_82598AT)
431 RTE_PCI_DEV_ID_DECL_IXGBE(PCI_VENDOR_ID_INTEL, IXGBE_DEV_ID_82598AT2)
432 RTE_PCI_DEV_ID_DECL_IXGBE(PCI_VENDOR_ID_INTEL, IXGBE_DEV_ID_82598EB_SFP_LOM)
433 RTE_PCI_DEV_ID_DECL_IXGBE(PCI_VENDOR_ID_INTEL, IXGBE_DEV_ID_82598EB_CX4)
434 RTE_PCI_DEV_ID_DECL_IXGBE(PCI_VENDOR_ID_INTEL, IXGBE_DEV_ID_82598_CX4_DUAL_PORT)
435 RTE_PCI_DEV_ID_DECL_IXGBE(PCI_VENDOR_ID_INTEL, IXGBE_DEV_ID_82598_DA_DUAL_PORT)
436 RTE_PCI_DEV_ID_DECL_IXGBE(PCI_VENDOR_ID_INTEL, \
437         IXGBE_DEV_ID_82598_SR_DUAL_PORT_EM)
438 RTE_PCI_DEV_ID_DECL_IXGBE(PCI_VENDOR_ID_INTEL, IXGBE_DEV_ID_82598EB_XF_LR)
439 RTE_PCI_DEV_ID_DECL_IXGBE(PCI_VENDOR_ID_INTEL, IXGBE_DEV_ID_82599_KX4)
440 RTE_PCI_DEV_ID_DECL_IXGBE(PCI_VENDOR_ID_INTEL, IXGBE_DEV_ID_82599_KX4_MEZZ)
441 RTE_PCI_DEV_ID_DECL_IXGBE(PCI_VENDOR_ID_INTEL, IXGBE_DEV_ID_82599_KR)
442 RTE_PCI_DEV_ID_DECL_IXGBE(PCI_VENDOR_ID_INTEL, \
443         IXGBE_DEV_ID_82599_COMBO_BACKPLANE)
444 RTE_PCI_DEV_ID_DECL_IXGBE(PCI_VENDOR_ID_INTEL, \
445         IXGBE_SUBDEV_ID_82599_KX4_KR_MEZZ)
446 RTE_PCI_DEV_ID_DECL_IXGBE(PCI_VENDOR_ID_INTEL, IXGBE_DEV_ID_82599_CX4)
447 RTE_PCI_DEV_ID_DECL_IXGBE(PCI_VENDOR_ID_INTEL, IXGBE_DEV_ID_82599_SFP)
448 RTE_PCI_DEV_ID_DECL_IXGBE(PCI_VENDOR_ID_INTEL, IXGBE_SUBDEV_ID_82599_SFP)
449 RTE_PCI_DEV_ID_DECL_IXGBE(PCI_VENDOR_ID_INTEL, IXGBE_SUBDEV_ID_82599_RNDC)
450 RTE_PCI_DEV_ID_DECL_IXGBE(PCI_VENDOR_ID_INTEL, IXGBE_SUBDEV_ID_82599_560FLR)
451 RTE_PCI_DEV_ID_DECL_IXGBE(PCI_VENDOR_ID_INTEL, IXGBE_SUBDEV_ID_82599_ECNA_DP)
452 RTE_PCI_DEV_ID_DECL_IXGBE(PCI_VENDOR_ID_INTEL, IXGBE_DEV_ID_82599_BACKPLANE_FCOE)
453 RTE_PCI_DEV_ID_DECL_IXGBE(PCI_VENDOR_ID_INTEL, IXGBE_DEV_ID_82599_SFP_FCOE)
454 RTE_PCI_DEV_ID_DECL_IXGBE(PCI_VENDOR_ID_INTEL, IXGBE_DEV_ID_82599_SFP_EM)
455 RTE_PCI_DEV_ID_DECL_IXGBE(PCI_VENDOR_ID_INTEL, IXGBE_DEV_ID_82599_SFP_SF2)
456 RTE_PCI_DEV_ID_DECL_IXGBE(PCI_VENDOR_ID_INTEL, IXGBE_DEV_ID_82599_SFP_SF_QP)
457 RTE_PCI_DEV_ID_DECL_IXGBE(PCI_VENDOR_ID_INTEL, IXGBE_DEV_ID_82599_QSFP_SF_QP)
458 RTE_PCI_DEV_ID_DECL_IXGBE(PCI_VENDOR_ID_INTEL, IXGBE_DEV_ID_82599EN_SFP)
459 RTE_PCI_DEV_ID_DECL_IXGBE(PCI_VENDOR_ID_INTEL, IXGBE_DEV_ID_82599_XAUI_LOM)
460 RTE_PCI_DEV_ID_DECL_IXGBE(PCI_VENDOR_ID_INTEL, IXGBE_DEV_ID_82599_T3_LOM)
461 RTE_PCI_DEV_ID_DECL_IXGBE(PCI_VENDOR_ID_INTEL, IXGBE_DEV_ID_82599_LS)
462 RTE_PCI_DEV_ID_DECL_IXGBE(PCI_VENDOR_ID_INTEL, IXGBE_DEV_ID_X540T)
463 RTE_PCI_DEV_ID_DECL_IXGBE(PCI_VENDOR_ID_INTEL, IXGBE_DEV_ID_X540T1)
464 RTE_PCI_DEV_ID_DECL_IXGBE(PCI_VENDOR_ID_INTEL, IXGBE_DEV_ID_X550EM_X_SFP)
465 RTE_PCI_DEV_ID_DECL_IXGBE(PCI_VENDOR_ID_INTEL, IXGBE_DEV_ID_X550EM_X_10G_T)
466 RTE_PCI_DEV_ID_DECL_IXGBE(PCI_VENDOR_ID_INTEL, IXGBE_DEV_ID_X550EM_X_1G_T)
467 RTE_PCI_DEV_ID_DECL_IXGBE(PCI_VENDOR_ID_INTEL, IXGBE_DEV_ID_X550T)
468 RTE_PCI_DEV_ID_DECL_IXGBE(PCI_VENDOR_ID_INTEL, IXGBE_DEV_ID_X550EM_X_KX4)
469 RTE_PCI_DEV_ID_DECL_IXGBE(PCI_VENDOR_ID_INTEL, IXGBE_DEV_ID_X550EM_X_KR)
470
471 #ifdef RTE_NIC_BYPASS
472 RTE_PCI_DEV_ID_DECL_IXGBE(PCI_VENDOR_ID_INTEL, IXGBE_DEV_ID_82599_BYPASS)
473 #endif
474
475 /*************** Physical I40E devices from i40e_type.h *****************/
476
477 #define I40E_DEV_ID_SFP_XL710           0x1572
478 #define I40E_DEV_ID_QEMU                0x1574
479 #define I40E_DEV_ID_KX_A                0x157F
480 #define I40E_DEV_ID_KX_B                0x1580
481 #define I40E_DEV_ID_KX_C                0x1581
482 #define I40E_DEV_ID_QSFP_A              0x1583
483 #define I40E_DEV_ID_QSFP_B              0x1584
484 #define I40E_DEV_ID_QSFP_C              0x1585
485 #define I40E_DEV_ID_10G_BASE_T          0x1586
486
487 RTE_PCI_DEV_ID_DECL_I40E(PCI_VENDOR_ID_INTEL, I40E_DEV_ID_SFP_XL710)
488 RTE_PCI_DEV_ID_DECL_I40E(PCI_VENDOR_ID_INTEL, I40E_DEV_ID_QEMU)
489 RTE_PCI_DEV_ID_DECL_I40E(PCI_VENDOR_ID_INTEL, I40E_DEV_ID_KX_A)
490 RTE_PCI_DEV_ID_DECL_I40E(PCI_VENDOR_ID_INTEL, I40E_DEV_ID_KX_B)
491 RTE_PCI_DEV_ID_DECL_I40E(PCI_VENDOR_ID_INTEL, I40E_DEV_ID_KX_C)
492 RTE_PCI_DEV_ID_DECL_I40E(PCI_VENDOR_ID_INTEL, I40E_DEV_ID_QSFP_A)
493 RTE_PCI_DEV_ID_DECL_I40E(PCI_VENDOR_ID_INTEL, I40E_DEV_ID_QSFP_B)
494 RTE_PCI_DEV_ID_DECL_I40E(PCI_VENDOR_ID_INTEL, I40E_DEV_ID_QSFP_C)
495 RTE_PCI_DEV_ID_DECL_I40E(PCI_VENDOR_ID_INTEL, I40E_DEV_ID_10G_BASE_T)
496
497 /*************** Physical FM10K devices from fm10k_type.h ***************/
498
499 #define FM10K_DEV_ID_PF                   0x15A4
500
501 RTE_PCI_DEV_ID_DECL_FM10K(PCI_VENDOR_ID_INTEL, FM10K_DEV_ID_PF)
502
503 /****************** Virtual IGB devices from e1000_hw.h ******************/
504
505 #define E1000_DEV_ID_82576_VF                   0x10CA
506 #define E1000_DEV_ID_82576_VF_HV                0x152D
507 #define E1000_DEV_ID_I350_VF                    0x1520
508 #define E1000_DEV_ID_I350_VF_HV                 0x152F
509
510 RTE_PCI_DEV_ID_DECL_IGBVF(PCI_VENDOR_ID_INTEL, E1000_DEV_ID_82576_VF)
511 RTE_PCI_DEV_ID_DECL_IGBVF(PCI_VENDOR_ID_INTEL, E1000_DEV_ID_82576_VF_HV)
512 RTE_PCI_DEV_ID_DECL_IGBVF(PCI_VENDOR_ID_INTEL, E1000_DEV_ID_I350_VF)
513 RTE_PCI_DEV_ID_DECL_IGBVF(PCI_VENDOR_ID_INTEL, E1000_DEV_ID_I350_VF_HV)
514
515 /****************** Virtual IXGBE devices from ixgbe_type.h ******************/
516
517 #define IXGBE_DEV_ID_82599_VF                   0x10ED
518 #define IXGBE_DEV_ID_82599_VF_HV                0x152E
519 #define IXGBE_DEV_ID_X540_VF                    0x1515
520 #define IXGBE_DEV_ID_X540_VF_HV                 0x1530
521 #define IXGBE_DEV_ID_X550_VF_HV                 0x1564
522 #define IXGBE_DEV_ID_X550_VF                    0x1565
523 #define IXGBE_DEV_ID_X550EM_X_VF                0x15A8
524 #define IXGBE_DEV_ID_X550EM_X_VF_HV             0x15A9
525
526 RTE_PCI_DEV_ID_DECL_IXGBEVF(PCI_VENDOR_ID_INTEL, IXGBE_DEV_ID_82599_VF)
527 RTE_PCI_DEV_ID_DECL_IXGBEVF(PCI_VENDOR_ID_INTEL, IXGBE_DEV_ID_82599_VF_HV)
528 RTE_PCI_DEV_ID_DECL_IXGBEVF(PCI_VENDOR_ID_INTEL, IXGBE_DEV_ID_X540_VF)
529 RTE_PCI_DEV_ID_DECL_IXGBEVF(PCI_VENDOR_ID_INTEL, IXGBE_DEV_ID_X540_VF_HV)
530 RTE_PCI_DEV_ID_DECL_IXGBEVF(PCI_VENDOR_ID_INTEL, IXGBE_DEV_ID_X550_VF_HV)
531 RTE_PCI_DEV_ID_DECL_IXGBEVF(PCI_VENDOR_ID_INTEL, IXGBE_DEV_ID_X550_VF)
532 RTE_PCI_DEV_ID_DECL_IXGBEVF(PCI_VENDOR_ID_INTEL, IXGBE_DEV_ID_X550EM_X_VF)
533 RTE_PCI_DEV_ID_DECL_IXGBEVF(PCI_VENDOR_ID_INTEL, IXGBE_DEV_ID_X550EM_X_VF_HV)
534
535 /****************** Virtual I40E devices from i40e_type.h ********************/
536
537 #define I40E_DEV_ID_VF                  0x154C
538 #define I40E_DEV_ID_VF_HV               0x1571
539
540 RTE_PCI_DEV_ID_DECL_I40EVF(PCI_VENDOR_ID_INTEL, I40E_DEV_ID_VF)
541 RTE_PCI_DEV_ID_DECL_I40EVF(PCI_VENDOR_ID_INTEL, I40E_DEV_ID_VF_HV)
542
543 /****************** Virtio devices from virtio.h ******************/
544
545 #define QUMRANET_DEV_ID_VIRTIO                  0x1000
546
547 RTE_PCI_DEV_ID_DECL_VIRTIO(PCI_VENDOR_ID_QUMRANET, QUMRANET_DEV_ID_VIRTIO)
548
549 /****************** VMware VMXNET3 devices ******************/
550
551 #define VMWARE_DEV_ID_VMXNET3                   0x07B0
552
553 RTE_PCI_DEV_ID_DECL_VMXNET3(PCI_VENDOR_ID_VMWARE, VMWARE_DEV_ID_VMXNET3)
554
555 /*************** Virtual FM10K devices from fm10k_type.h ***************/
556
557 #define FM10K_DEV_ID_VF                   0x15A5
558
559 RTE_PCI_DEV_ID_DECL_FM10KVF(PCI_VENDOR_ID_INTEL, FM10K_DEV_ID_VF)
560
561 /****************** Cisco VIC devices ******************/
562
563 #define PCI_DEVICE_ID_CISCO_VIC_ENET         0x0043  /* ethernet vnic */
564 #define PCI_DEVICE_ID_CISCO_VIC_ENET_VF      0x0071  /* enet SRIOV VF */
565
566 RTE_PCI_DEV_ID_DECL_ENIC(PCI_VENDOR_ID_CISCO, PCI_DEVICE_ID_CISCO_VIC_ENET)
567 RTE_PCI_DEV_ID_DECL_ENIC(PCI_VENDOR_ID_CISCO, PCI_DEVICE_ID_CISCO_VIC_ENET_VF)
568
569 /*
570  * Undef all RTE_PCI_DEV_ID_DECL_* here.
571  */
572 #undef RTE_PCI_DEV_ID_DECL_EM
573 #undef RTE_PCI_DEV_ID_DECL_IGB
574 #undef RTE_PCI_DEV_ID_DECL_IGBVF
575 #undef RTE_PCI_DEV_ID_DECL_IXGBE
576 #undef RTE_PCI_DEV_ID_DECL_IXGBEVF
577 #undef RTE_PCI_DEV_ID_DECL_I40E
578 #undef RTE_PCI_DEV_ID_DECL_I40EVF
579 #undef RTE_PCI_DEV_ID_DECL_VIRTIO
580 #undef RTE_PCI_DEV_ID_DECL_VMXNET3
581 #undef RTE_PCI_DEV_ID_DECL_FM10K
582 #undef RTE_PCI_DEV_ID_DECL_FM10KVF