2 * QEMU Intel 82576 SR/IOV Ethernet Controller Emulation
5 * https://www.intel.com/content/dam/www/public/us/en/documents/datasheets/82576eg-gbe-datasheet.pdf
7 * Copyright (c) 2020-2023 Red Hat, Inc.
8 * Copyright (c) 2015 Ravello Systems LTD (http://ravellosystems.com)
9 * Developed by Daynix Computing LTD (http://www.daynix.com)
12 * Akihiko Odaki <akihiko.odaki@daynix.com>
13 * Gal Hammmer <gal.hammer@sap.com>
14 * Marcel Apfelbaum <marcel.apfelbaum@gmail.com>
15 * Dmitry Fleytman <dmitry@daynix.com>
16 * Leonid Bloch <leonid@daynix.com>
17 * Yan Vugenfirer <yan@daynix.com>
19 * Based on work done by:
20 * Nir Peleg, Tutis Systems Ltd. for Qumranet Inc.
21 * Copyright (c) 2008 Qumranet
22 * Based on work done by:
23 * Copyright (c) 2007 Dan Aloni
24 * Copyright (c) 2004 Antony T Curtis
26 * This library is free software; you can redistribute it and/or
27 * modify it under the terms of the GNU Lesser General Public
28 * License as published by the Free Software Foundation; either
29 * version 2.1 of the License, or (at your option) any later version.
31 * This library is distributed in the hope that it will be useful,
32 * but WITHOUT ANY WARRANTY; without even the implied warranty of
33 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
34 * Lesser General Public License for more details.
36 * You should have received a copy of the GNU Lesser General Public
37 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
40 #include "qemu/osdep.h"
42 #include "hw/net/mii.h"
43 #include "hw/pci/pci_device.h"
44 #include "hw/pci/pcie.h"
45 #include "hw/pci/msix.h"
48 #include "igb_common.h"
51 #include "qapi/error.h"
53 OBJECT_DECLARE_SIMPLE_TYPE(IgbVfState
, IGBVF
)
62 static hwaddr
vf_to_pf_addr(hwaddr addr
, uint16_t vfn
, bool write
)
67 return E1000_PVTCTRL(vfn
);
69 return E1000_PVTEICS(vfn
);
71 return E1000_PVTEIMS(vfn
);
73 return E1000_PVTEIMC(vfn
);
75 return E1000_PVTEIAC(vfn
);
77 return E1000_PVTEIAM(vfn
);
79 return E1000_PVTEICR(vfn
);
83 return E1000_EITR(22) + (addr
- E1000_EITR(0)) - vfn
* 0xC;
85 return E1000_VTIVAR
+ vfn
* 4;
87 return E1000_VTIVAR_MISC
+ vfn
* 4;
88 case 0x0F04: /* PBACL */
90 case 0x0F0C: /* PSRTYPE */
91 return E1000_PSRTYPE(vfn
);
92 case E1000_V2PMAILBOX(0):
93 return E1000_V2PMAILBOX(vfn
);
94 case E1000_VMBMEM(0) ... E1000_VMBMEM(0) + 0x3F:
95 return addr
+ vfn
* 0x40;
96 case E1000_RDBAL_A(0):
97 return E1000_RDBAL(vfn
);
98 case E1000_RDBAL_A(1):
99 return E1000_RDBAL(vfn
+ IGB_MAX_VF_FUNCTIONS
);
100 case E1000_RDBAH_A(0):
101 return E1000_RDBAH(vfn
);
102 case E1000_RDBAH_A(1):
103 return E1000_RDBAH(vfn
+ IGB_MAX_VF_FUNCTIONS
);
104 case E1000_RDLEN_A(0):
105 return E1000_RDLEN(vfn
);
106 case E1000_RDLEN_A(1):
107 return E1000_RDLEN(vfn
+ IGB_MAX_VF_FUNCTIONS
);
108 case E1000_SRRCTL_A(0):
109 return E1000_SRRCTL(vfn
);
110 case E1000_SRRCTL_A(1):
111 return E1000_SRRCTL(vfn
+ IGB_MAX_VF_FUNCTIONS
);
113 return E1000_RDH(vfn
);
115 return E1000_RDH(vfn
+ IGB_MAX_VF_FUNCTIONS
);
116 case E1000_RXCTL_A(0):
117 return E1000_RXCTL(vfn
);
118 case E1000_RXCTL_A(1):
119 return E1000_RXCTL(vfn
+ IGB_MAX_VF_FUNCTIONS
);
121 return E1000_RDT(vfn
);
123 return E1000_RDT(vfn
+ IGB_MAX_VF_FUNCTIONS
);
124 case E1000_RXDCTL_A(0):
125 return E1000_RXDCTL(vfn
);
126 case E1000_RXDCTL_A(1):
127 return E1000_RXDCTL(vfn
+ IGB_MAX_VF_FUNCTIONS
);
128 case E1000_RQDPC_A(0):
129 return E1000_RQDPC(vfn
);
130 case E1000_RQDPC_A(1):
131 return E1000_RQDPC(vfn
+ IGB_MAX_VF_FUNCTIONS
);
132 case E1000_TDBAL_A(0):
133 return E1000_TDBAL(vfn
);
134 case E1000_TDBAL_A(1):
135 return E1000_TDBAL(vfn
+ IGB_MAX_VF_FUNCTIONS
);
136 case E1000_TDBAH_A(0):
137 return E1000_TDBAH(vfn
);
138 case E1000_TDBAH_A(1):
139 return E1000_TDBAH(vfn
+ IGB_MAX_VF_FUNCTIONS
);
140 case E1000_TDLEN_A(0):
141 return E1000_TDLEN(vfn
);
142 case E1000_TDLEN_A(1):
143 return E1000_TDLEN(vfn
+ IGB_MAX_VF_FUNCTIONS
);
145 return E1000_TDH(vfn
);
147 return E1000_TDH(vfn
+ IGB_MAX_VF_FUNCTIONS
);
148 case E1000_TXCTL_A(0):
149 return E1000_TXCTL(vfn
);
150 case E1000_TXCTL_A(1):
151 return E1000_TXCTL(vfn
+ IGB_MAX_VF_FUNCTIONS
);
153 return E1000_TDT(vfn
);
155 return E1000_TDT(vfn
+ IGB_MAX_VF_FUNCTIONS
);
156 case E1000_TXDCTL_A(0):
157 return E1000_TXDCTL(vfn
);
158 case E1000_TXDCTL_A(1):
159 return E1000_TXDCTL(vfn
+ IGB_MAX_VF_FUNCTIONS
);
160 case E1000_TDWBAL_A(0):
161 return E1000_TDWBAL(vfn
);
162 case E1000_TDWBAL_A(1):
163 return E1000_TDWBAL(vfn
+ IGB_MAX_VF_FUNCTIONS
);
164 case E1000_TDWBAH_A(0):
165 return E1000_TDWBAH(vfn
);
166 case E1000_TDWBAH_A(1):
167 return E1000_TDWBAH(vfn
+ IGB_MAX_VF_FUNCTIONS
);
169 return E1000_PVFGPRC(vfn
);
171 return E1000_PVFGPTC(vfn
);
173 return E1000_PVFGORC(vfn
);
175 return E1000_PVFGOTC(vfn
);
177 return E1000_PVFMPRC(vfn
);
179 return E1000_PVFGPRLBC(vfn
);
181 return E1000_PVFGPTLBC(vfn
);
183 return E1000_PVFGORLBC(vfn
);
185 return E1000_PVFGOTLBC(vfn
);
192 case 0x34E8: /* PBTWAC */
193 case 0x24E8: /* PBRWAC */
197 trace_igbvf_wrn_io_addr_unknown(addr
);
202 static void igbvf_write_config(PCIDevice
*dev
, uint32_t addr
, uint32_t val
,
205 trace_igbvf_write_config(addr
, val
, len
);
206 pci_default_write_config(dev
, addr
, val
, len
);
207 if (object_property_get_bool(OBJECT(pcie_sriov_get_pf(dev
)),
208 "x-pcie-flr-init", &error_abort
)) {
209 pcie_cap_flr_write_config(dev
, addr
, val
, len
);
213 static uint64_t igbvf_mmio_read(void *opaque
, hwaddr addr
, unsigned size
)
215 PCIDevice
*vf
= PCI_DEVICE(opaque
);
216 PCIDevice
*pf
= pcie_sriov_get_pf(vf
);
218 addr
= vf_to_pf_addr(addr
, pcie_sriov_vf_number(vf
), false);
219 return addr
== HWADDR_MAX
? 0 : igb_mmio_read(pf
, addr
, size
);
222 static void igbvf_mmio_write(void *opaque
, hwaddr addr
, uint64_t val
,
225 PCIDevice
*vf
= PCI_DEVICE(opaque
);
226 PCIDevice
*pf
= pcie_sriov_get_pf(vf
);
228 addr
= vf_to_pf_addr(addr
, pcie_sriov_vf_number(vf
), true);
229 if (addr
!= HWADDR_MAX
) {
230 igb_mmio_write(pf
, addr
, val
, size
);
234 static const MemoryRegionOps mmio_ops
= {
235 .read
= igbvf_mmio_read
,
236 .write
= igbvf_mmio_write
,
237 .endianness
= DEVICE_LITTLE_ENDIAN
,
239 .min_access_size
= 4,
240 .max_access_size
= 4,
244 static void igbvf_pci_realize(PCIDevice
*dev
, Error
**errp
)
246 IgbVfState
*s
= IGBVF(dev
);
250 dev
->config_write
= igbvf_write_config
;
252 memory_region_init_io(&s
->mmio
, OBJECT(dev
), &mmio_ops
, s
, "igbvf-mmio",
254 pcie_sriov_vf_register_bar(dev
, IGBVF_MMIO_BAR_IDX
, &s
->mmio
);
256 memory_region_init(&s
->msix
, OBJECT(dev
), "igbvf-msix", IGBVF_MSIX_SIZE
);
257 pcie_sriov_vf_register_bar(dev
, IGBVF_MSIX_BAR_IDX
, &s
->msix
);
259 ret
= msix_init(dev
, IGBVF_MSIX_VEC_NUM
, &s
->msix
, IGBVF_MSIX_BAR_IDX
, 0,
260 &s
->msix
, IGBVF_MSIX_BAR_IDX
, 0x2000, 0x70, errp
);
265 for (i
= 0; i
< IGBVF_MSIX_VEC_NUM
; i
++) {
266 msix_vector_use(dev
, i
);
269 if (pcie_endpoint_cap_init(dev
, 0xa0) < 0) {
270 hw_error("Failed to initialize PCIe capability");
273 if (object_property_get_bool(OBJECT(pcie_sriov_get_pf(dev
)),
274 "x-pcie-flr-init", &error_abort
)) {
275 pcie_cap_flr_init(dev
);
278 if (pcie_aer_init(dev
, 1, 0x100, 0x40, errp
) < 0) {
279 hw_error("Failed to initialize AER capability");
282 pcie_ari_init(dev
, 0x150);
285 static void igbvf_qdev_reset_hold(Object
*obj
)
287 PCIDevice
*vf
= PCI_DEVICE(obj
);
289 igb_vf_reset(pcie_sriov_get_pf(vf
), pcie_sriov_vf_number(vf
));
292 static void igbvf_pci_uninit(PCIDevice
*dev
)
294 IgbVfState
*s
= IGBVF(dev
);
298 msix_unuse_all_vectors(dev
);
299 msix_uninit(dev
, &s
->msix
, &s
->msix
);
302 static void igbvf_class_init(ObjectClass
*class, void *data
)
304 DeviceClass
*dc
= DEVICE_CLASS(class);
305 PCIDeviceClass
*c
= PCI_DEVICE_CLASS(class);
306 ResettableClass
*rc
= RESETTABLE_CLASS(class);
308 c
->realize
= igbvf_pci_realize
;
309 c
->exit
= igbvf_pci_uninit
;
310 c
->vendor_id
= PCI_VENDOR_ID_INTEL
;
311 c
->device_id
= E1000_DEV_ID_82576_VF
;
313 c
->class_id
= PCI_CLASS_NETWORK_ETHERNET
;
315 rc
->phases
.hold
= igbvf_qdev_reset_hold
;
317 dc
->desc
= "Intel 82576 Virtual Function";
318 dc
->user_creatable
= false;
320 set_bit(DEVICE_CATEGORY_NETWORK
, dc
->categories
);
323 static const TypeInfo igbvf_info
= {
325 .parent
= TYPE_PCI_DEVICE
,
326 .instance_size
= sizeof(IgbVfState
),
327 .class_init
= igbvf_class_init
,
328 .interfaces
= (InterfaceInfo
[]) {
329 { INTERFACE_PCIE_DEVICE
},
334 static void igb_register_types(void)
336 type_register_static(&igbvf_info
);
339 type_init(igb_register_types
)