2 * QEMU sPAPR PCI host for VFIO
4 * Copyright (c) 2011-2014 Alexey Kardashevskiy, IBM Corporation.
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License,
9 * or (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, see <http://www.gnu.org/licenses/>.
20 #include "qemu/osdep.h"
21 #include <linux/vfio.h>
22 #include "qapi/error.h"
23 #include "qemu-common.h"
25 #include "hw/ppc/spapr.h"
26 #include "hw/pci-host/spapr.h"
27 #include "hw/pci/msix.h"
28 #include "hw/vfio/vfio.h"
29 #include "qemu/error-report.h"
30 #include "sysemu/qtest.h"
32 #define TYPE_SPAPR_PCI_VFIO_HOST_BRIDGE "spapr-pci-vfio-host-bridge"
34 #define SPAPR_PCI_VFIO_HOST_BRIDGE(obj) \
35 OBJECT_CHECK(sPAPRPHBVFIOState, (obj), TYPE_SPAPR_PCI_VFIO_HOST_BRIDGE)
37 typedef struct sPAPRPHBVFIOState sPAPRPHBVFIOState
;
39 struct sPAPRPHBVFIOState
{
45 static Property spapr_phb_vfio_properties
[] = {
46 DEFINE_PROP_INT32("iommu", sPAPRPHBVFIOState
, iommugroupid
, -1),
47 DEFINE_PROP_END_OF_LIST(),
50 static void spapr_phb_vfio_instance_init(Object
*obj
)
52 if (!qtest_enabled()) {
53 error_report("spapr-pci-vfio-host-bridge is deprecated");
57 bool spapr_phb_eeh_available(sPAPRPHBState
*sphb
)
59 return vfio_eeh_as_ok(&sphb
->iommu_as
);
62 static void spapr_phb_vfio_eeh_reenable(sPAPRPHBState
*sphb
)
64 vfio_eeh_as_op(&sphb
->iommu_as
, VFIO_EEH_PE_ENABLE
);
67 void spapr_phb_vfio_reset(DeviceState
*qdev
)
70 * The PE might be in frozen state. To reenable the EEH
71 * functionality on it will clean the frozen state, which
72 * ensures that the contained PCI devices will work properly
75 spapr_phb_vfio_eeh_reenable(SPAPR_PCI_HOST_BRIDGE(qdev
));
78 int spapr_phb_vfio_eeh_set_option(sPAPRPHBState
*sphb
,
79 unsigned int addr
, int option
)
85 case RTAS_EEH_DISABLE
:
86 op
= VFIO_EEH_PE_DISABLE
;
88 case RTAS_EEH_ENABLE
: {
93 * The EEH functionality is enabled on basis of PCI device,
94 * instead of PE. We need check the validity of the PCI
97 phb
= PCI_HOST_BRIDGE(sphb
);
98 pdev
= pci_find_device(phb
->bus
,
99 (addr
>> 16) & 0xFF, (addr
>> 8) & 0xFF);
100 if (!pdev
|| !object_dynamic_cast(OBJECT(pdev
), "vfio-pci")) {
101 return RTAS_OUT_PARAM_ERROR
;
104 op
= VFIO_EEH_PE_ENABLE
;
107 case RTAS_EEH_THAW_IO
:
108 op
= VFIO_EEH_PE_UNFREEZE_IO
;
110 case RTAS_EEH_THAW_DMA
:
111 op
= VFIO_EEH_PE_UNFREEZE_DMA
;
114 return RTAS_OUT_PARAM_ERROR
;
117 ret
= vfio_eeh_as_op(&sphb
->iommu_as
, op
);
119 return RTAS_OUT_HW_ERROR
;
122 return RTAS_OUT_SUCCESS
;
125 int spapr_phb_vfio_eeh_get_state(sPAPRPHBState
*sphb
, int *state
)
129 ret
= vfio_eeh_as_op(&sphb
->iommu_as
, VFIO_EEH_PE_GET_STATE
);
131 return RTAS_OUT_PARAM_ERROR
;
135 return RTAS_OUT_SUCCESS
;
138 static void spapr_phb_vfio_eeh_clear_dev_msix(PCIBus
*bus
,
142 /* Check if the device is VFIO PCI device */
143 if (!object_dynamic_cast(OBJECT(pdev
), "vfio-pci")) {
148 * The MSIx table will be cleaned out by reset. We need
149 * disable it so that it can be reenabled properly. Also,
150 * the cached MSIx table should be cleared as it's not
151 * reflecting the contents in hardware.
153 if (msix_enabled(pdev
)) {
156 flags
= pci_host_config_read_common(pdev
,
157 pdev
->msix_cap
+ PCI_MSIX_FLAGS
,
158 pci_config_size(pdev
), 2);
159 flags
&= ~PCI_MSIX_FLAGS_ENABLE
;
160 pci_host_config_write_common(pdev
,
161 pdev
->msix_cap
+ PCI_MSIX_FLAGS
,
162 pci_config_size(pdev
), flags
, 2);
168 static void spapr_phb_vfio_eeh_clear_bus_msix(PCIBus
*bus
, void *opaque
)
170 pci_for_each_device(bus
, pci_bus_num(bus
),
171 spapr_phb_vfio_eeh_clear_dev_msix
, NULL
);
174 static void spapr_phb_vfio_eeh_pre_reset(sPAPRPHBState
*sphb
)
176 PCIHostState
*phb
= PCI_HOST_BRIDGE(sphb
);
178 pci_for_each_bus(phb
->bus
, spapr_phb_vfio_eeh_clear_bus_msix
, NULL
);
181 int spapr_phb_vfio_eeh_reset(sPAPRPHBState
*sphb
, int option
)
187 case RTAS_SLOT_RESET_DEACTIVATE
:
188 op
= VFIO_EEH_PE_RESET_DEACTIVATE
;
190 case RTAS_SLOT_RESET_HOT
:
191 spapr_phb_vfio_eeh_pre_reset(sphb
);
192 op
= VFIO_EEH_PE_RESET_HOT
;
194 case RTAS_SLOT_RESET_FUNDAMENTAL
:
195 spapr_phb_vfio_eeh_pre_reset(sphb
);
196 op
= VFIO_EEH_PE_RESET_FUNDAMENTAL
;
199 return RTAS_OUT_PARAM_ERROR
;
202 ret
= vfio_eeh_as_op(&sphb
->iommu_as
, op
);
204 return RTAS_OUT_HW_ERROR
;
207 return RTAS_OUT_SUCCESS
;
210 int spapr_phb_vfio_eeh_configure(sPAPRPHBState
*sphb
)
214 ret
= vfio_eeh_as_op(&sphb
->iommu_as
, VFIO_EEH_PE_CONFIGURE
);
216 return RTAS_OUT_PARAM_ERROR
;
219 return RTAS_OUT_SUCCESS
;
222 static void spapr_phb_vfio_class_init(ObjectClass
*klass
, void *data
)
224 DeviceClass
*dc
= DEVICE_CLASS(klass
);
226 dc
->props
= spapr_phb_vfio_properties
;
229 static const TypeInfo spapr_phb_vfio_info
= {
230 .name
= TYPE_SPAPR_PCI_VFIO_HOST_BRIDGE
,
231 .parent
= TYPE_SPAPR_PCI_HOST_BRIDGE
,
232 .instance_size
= sizeof(sPAPRPHBVFIOState
),
233 .instance_init
= spapr_phb_vfio_instance_init
,
234 .class_init
= spapr_phb_vfio_class_init
,
237 static void spapr_pci_vfio_register_types(void)
239 type_register_static(&spapr_phb_vfio_info
);
242 type_init(spapr_pci_vfio_register_types
)