target/riscv: Update the Hypervisor trap return/entry
[qemu/ar7.git] / hw / acpi / pcihp.c
blob9e31ab2da4d8ff10cb2cc70ee88f4d6798b9d835
1 /*
2 * QEMU<->ACPI BIOS PCI hotplug interface
4 * QEMU supports PCI hotplug via ACPI. This module
5 * implements the interface between QEMU and the ACPI BIOS.
6 * Interface specification - see docs/specs/acpi_pci_hotplug.txt
8 * Copyright (c) 2013, Red Hat Inc, Michael S. Tsirkin (mst@redhat.com)
9 * Copyright (c) 2006 Fabrice Bellard
11 * This library is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU Lesser General Public
13 * License version 2 as published by the Free Software Foundation.
15 * This library is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * Lesser General Public License for more details.
20 * You should have received a copy of the GNU Lesser General Public
21 * License along with this library; if not, see <http://www.gnu.org/licenses/>
23 * Contributions after 2012-01-13 are licensed under the terms of the
24 * GNU GPL, version 2 or (at your option) any later version.
27 #include "qemu/osdep.h"
28 #include "hw/acpi/pcihp.h"
30 #include "hw/pci-host/i440fx.h"
31 #include "hw/pci/pci.h"
32 #include "hw/pci/pci_bridge.h"
33 #include "hw/acpi/acpi.h"
34 #include "exec/address-spaces.h"
35 #include "hw/pci/pci_bus.h"
36 #include "migration/vmstate.h"
37 #include "qapi/error.h"
38 #include "qom/qom-qobject.h"
39 #include "trace.h"
41 #define ACPI_PCIHP_ADDR 0xae00
42 #define ACPI_PCIHP_SIZE 0x0014
43 #define PCI_UP_BASE 0x0000
44 #define PCI_DOWN_BASE 0x0004
45 #define PCI_EJ_BASE 0x0008
46 #define PCI_RMV_BASE 0x000c
47 #define PCI_SEL_BASE 0x0010
49 typedef struct AcpiPciHpFind {
50 int bsel;
51 PCIBus *bus;
52 } AcpiPciHpFind;
54 static int acpi_pcihp_get_bsel(PCIBus *bus)
56 Error *local_err = NULL;
57 uint64_t bsel = object_property_get_uint(OBJECT(bus), ACPI_PCIHP_PROP_BSEL,
58 &local_err);
60 if (local_err || bsel >= ACPI_PCIHP_MAX_HOTPLUG_BUS) {
61 if (local_err) {
62 error_free(local_err);
64 return -1;
65 } else {
66 return bsel;
70 /* Assign BSEL property to all buses. In the future, this can be changed
71 * to only assign to buses that support hotplug.
73 static void *acpi_set_bsel(PCIBus *bus, void *opaque)
75 unsigned *bsel_alloc = opaque;
76 unsigned *bus_bsel;
78 if (qbus_is_hotpluggable(BUS(bus))) {
79 bus_bsel = g_malloc(sizeof *bus_bsel);
81 *bus_bsel = (*bsel_alloc)++;
82 object_property_add_uint32_ptr(OBJECT(bus), ACPI_PCIHP_PROP_BSEL,
83 bus_bsel, OBJ_PROP_FLAG_READ);
86 return bsel_alloc;
89 static void acpi_set_pci_info(void)
91 static bool bsel_is_set;
92 PCIBus *bus;
93 unsigned bsel_alloc = ACPI_PCIHP_BSEL_DEFAULT;
95 if (bsel_is_set) {
96 return;
98 bsel_is_set = true;
100 bus = find_i440fx(); /* TODO: Q35 support */
101 if (bus) {
102 /* Scan all PCI buses. Set property to enable acpi based hotplug. */
103 pci_for_each_bus_depth_first(bus, acpi_set_bsel, NULL, &bsel_alloc);
107 static void acpi_pcihp_test_hotplug_bus(PCIBus *bus, void *opaque)
109 AcpiPciHpFind *find = opaque;
110 if (find->bsel == acpi_pcihp_get_bsel(bus)) {
111 find->bus = bus;
115 static PCIBus *acpi_pcihp_find_hotplug_bus(AcpiPciHpState *s, int bsel)
117 AcpiPciHpFind find = { .bsel = bsel, .bus = NULL };
119 if (bsel < 0) {
120 return NULL;
123 pci_for_each_bus(s->root, acpi_pcihp_test_hotplug_bus, &find);
125 /* Make bsel 0 eject root bus if bsel property is not set,
126 * for compatibility with non acpi setups.
127 * TODO: really needed?
129 if (!bsel && !find.bus) {
130 find.bus = s->root;
132 return find.bus;
135 static bool acpi_pcihp_pc_no_hotplug(AcpiPciHpState *s, PCIDevice *dev)
137 PCIDeviceClass *pc = PCI_DEVICE_GET_CLASS(dev);
138 DeviceClass *dc = DEVICE_GET_CLASS(dev);
140 * ACPI doesn't allow hotplug of bridge devices. Don't allow
141 * hot-unplug of bridge devices unless they were added by hotplug
142 * (and so, not described by acpi).
144 return (pc->is_bridge && !dev->qdev.hotplugged) || !dc->hotpluggable;
147 static void acpi_pcihp_eject_slot(AcpiPciHpState *s, unsigned bsel, unsigned slots)
149 HotplugHandler *hotplug_ctrl;
150 BusChild *kid, *next;
151 int slot = ctz32(slots);
152 PCIBus *bus = acpi_pcihp_find_hotplug_bus(s, bsel);
154 trace_acpi_pci_eject_slot(bsel, slot);
156 if (!bus || slot > 31) {
157 return;
160 /* Mark request as complete */
161 s->acpi_pcihp_pci_status[bsel].down &= ~(1U << slot);
162 s->acpi_pcihp_pci_status[bsel].up &= ~(1U << slot);
164 QTAILQ_FOREACH_SAFE(kid, &bus->qbus.children, sibling, next) {
165 DeviceState *qdev = kid->child;
166 PCIDevice *dev = PCI_DEVICE(qdev);
167 if (PCI_SLOT(dev->devfn) == slot) {
168 if (!acpi_pcihp_pc_no_hotplug(s, dev)) {
169 hotplug_ctrl = qdev_get_hotplug_handler(qdev);
170 hotplug_handler_unplug(hotplug_ctrl, qdev, &error_abort);
171 object_unparent(OBJECT(qdev));
177 static void acpi_pcihp_update_hotplug_bus(AcpiPciHpState *s, int bsel)
179 BusChild *kid, *next;
180 PCIBus *bus = acpi_pcihp_find_hotplug_bus(s, bsel);
182 /* Execute any pending removes during reset */
183 while (s->acpi_pcihp_pci_status[bsel].down) {
184 acpi_pcihp_eject_slot(s, bsel, s->acpi_pcihp_pci_status[bsel].down);
187 s->acpi_pcihp_pci_status[bsel].hotplug_enable = ~0;
189 if (!bus) {
190 return;
192 QTAILQ_FOREACH_SAFE(kid, &bus->qbus.children, sibling, next) {
193 DeviceState *qdev = kid->child;
194 PCIDevice *pdev = PCI_DEVICE(qdev);
195 int slot = PCI_SLOT(pdev->devfn);
197 if (acpi_pcihp_pc_no_hotplug(s, pdev)) {
198 s->acpi_pcihp_pci_status[bsel].hotplug_enable &= ~(1U << slot);
203 static void acpi_pcihp_update(AcpiPciHpState *s)
205 int i;
207 for (i = 0; i < ACPI_PCIHP_MAX_HOTPLUG_BUS; ++i) {
208 acpi_pcihp_update_hotplug_bus(s, i);
212 void acpi_pcihp_reset(AcpiPciHpState *s)
214 acpi_set_pci_info();
215 acpi_pcihp_update(s);
218 void acpi_pcihp_device_pre_plug_cb(HotplugHandler *hotplug_dev,
219 DeviceState *dev, Error **errp)
221 /* Only hotplugged devices need the hotplug capability. */
222 if (dev->hotplugged &&
223 acpi_pcihp_get_bsel(pci_get_bus(PCI_DEVICE(dev))) < 0) {
224 error_setg(errp, "Unsupported bus. Bus doesn't have property '"
225 ACPI_PCIHP_PROP_BSEL "' set");
226 return;
230 void acpi_pcihp_device_plug_cb(HotplugHandler *hotplug_dev, AcpiPciHpState *s,
231 DeviceState *dev, Error **errp)
233 PCIDevice *pdev = PCI_DEVICE(dev);
234 int slot = PCI_SLOT(pdev->devfn);
235 int bsel;
237 /* Don't send event when device is enabled during qemu machine creation:
238 * it is present on boot, no hotplug event is necessary. We do send an
239 * event when the device is disabled later. */
240 if (!dev->hotplugged) {
242 * Overwrite the default hotplug handler with the ACPI PCI one
243 * for cold plugged bridges only.
245 if (!s->legacy_piix &&
246 object_dynamic_cast(OBJECT(dev), TYPE_PCI_BRIDGE)) {
247 PCIBus *sec = pci_bridge_get_sec_bus(PCI_BRIDGE(pdev));
249 qbus_set_hotplug_handler(BUS(sec), OBJECT(hotplug_dev));
250 /* We don't have to overwrite any other hotplug handler yet */
251 assert(QLIST_EMPTY(&sec->child));
254 return;
257 bsel = acpi_pcihp_get_bsel(pci_get_bus(pdev));
258 g_assert(bsel >= 0);
259 s->acpi_pcihp_pci_status[bsel].up |= (1U << slot);
260 acpi_send_event(DEVICE(hotplug_dev), ACPI_PCI_HOTPLUG_STATUS);
263 void acpi_pcihp_device_unplug_cb(HotplugHandler *hotplug_dev, AcpiPciHpState *s,
264 DeviceState *dev, Error **errp)
266 trace_acpi_pci_unplug(PCI_SLOT(PCI_DEVICE(dev)->devfn),
267 acpi_pcihp_get_bsel(pci_get_bus(PCI_DEVICE(dev))));
268 qdev_unrealize(dev);
271 void acpi_pcihp_device_unplug_request_cb(HotplugHandler *hotplug_dev,
272 AcpiPciHpState *s, DeviceState *dev,
273 Error **errp)
275 PCIDevice *pdev = PCI_DEVICE(dev);
276 int slot = PCI_SLOT(pdev->devfn);
277 int bsel = acpi_pcihp_get_bsel(pci_get_bus(pdev));
279 trace_acpi_pci_unplug_request(bsel, slot);
281 if (bsel < 0) {
282 error_setg(errp, "Unsupported bus. Bus doesn't have property '"
283 ACPI_PCIHP_PROP_BSEL "' set");
284 return;
287 s->acpi_pcihp_pci_status[bsel].down |= (1U << slot);
288 acpi_send_event(DEVICE(hotplug_dev), ACPI_PCI_HOTPLUG_STATUS);
291 static uint64_t pci_read(void *opaque, hwaddr addr, unsigned int size)
293 AcpiPciHpState *s = opaque;
294 uint32_t val = 0;
295 int bsel = s->hotplug_select;
297 if (bsel < 0 || bsel >= ACPI_PCIHP_MAX_HOTPLUG_BUS) {
298 return 0;
301 switch (addr) {
302 case PCI_UP_BASE:
303 val = s->acpi_pcihp_pci_status[bsel].up;
304 if (!s->legacy_piix) {
305 s->acpi_pcihp_pci_status[bsel].up = 0;
307 trace_acpi_pci_up_read(val);
308 break;
309 case PCI_DOWN_BASE:
310 val = s->acpi_pcihp_pci_status[bsel].down;
311 trace_acpi_pci_down_read(val);
312 break;
313 case PCI_EJ_BASE:
314 /* No feature defined yet */
315 trace_acpi_pci_features_read(val);
316 break;
317 case PCI_RMV_BASE:
318 val = s->acpi_pcihp_pci_status[bsel].hotplug_enable;
319 trace_acpi_pci_rmv_read(val);
320 break;
321 case PCI_SEL_BASE:
322 val = s->hotplug_select;
323 trace_acpi_pci_sel_read(val);
324 default:
325 break;
328 return val;
331 static void pci_write(void *opaque, hwaddr addr, uint64_t data,
332 unsigned int size)
334 AcpiPciHpState *s = opaque;
335 switch (addr) {
336 case PCI_EJ_BASE:
337 if (s->hotplug_select >= ACPI_PCIHP_MAX_HOTPLUG_BUS) {
338 break;
340 acpi_pcihp_eject_slot(s, s->hotplug_select, data);
341 trace_acpi_pci_ej_write(addr, data);
342 break;
343 case PCI_SEL_BASE:
344 s->hotplug_select = s->legacy_piix ? ACPI_PCIHP_BSEL_DEFAULT : data;
345 trace_acpi_pci_sel_write(addr, data);
346 default:
347 break;
351 static const MemoryRegionOps acpi_pcihp_io_ops = {
352 .read = pci_read,
353 .write = pci_write,
354 .endianness = DEVICE_LITTLE_ENDIAN,
355 .valid = {
356 .min_access_size = 4,
357 .max_access_size = 4,
361 void acpi_pcihp_init(Object *owner, AcpiPciHpState *s, PCIBus *root_bus,
362 MemoryRegion *address_space_io, bool bridges_enabled)
364 s->io_len = ACPI_PCIHP_SIZE;
365 s->io_base = ACPI_PCIHP_ADDR;
367 s->root= root_bus;
368 s->legacy_piix = !bridges_enabled;
370 memory_region_init_io(&s->io, owner, &acpi_pcihp_io_ops, s,
371 "acpi-pci-hotplug", s->io_len);
372 memory_region_add_subregion(address_space_io, s->io_base, &s->io);
374 object_property_add_uint16_ptr(owner, ACPI_PCIHP_IO_BASE_PROP, &s->io_base,
375 OBJ_PROP_FLAG_READ);
376 object_property_add_uint16_ptr(owner, ACPI_PCIHP_IO_LEN_PROP, &s->io_len,
377 OBJ_PROP_FLAG_READ);
380 const VMStateDescription vmstate_acpi_pcihp_pci_status = {
381 .name = "acpi_pcihp_pci_status",
382 .version_id = 1,
383 .minimum_version_id = 1,
384 .fields = (VMStateField[]) {
385 VMSTATE_UINT32(up, AcpiPciHpPciStatus),
386 VMSTATE_UINT32(down, AcpiPciHpPciStatus),
387 VMSTATE_END_OF_LIST()