1db4728e6SMichael S. Tsirkin /* 2db4728e6SMichael S. Tsirkin * QEMU<->ACPI BIOS PCI hotplug interface 3db4728e6SMichael S. Tsirkin * 4db4728e6SMichael S. Tsirkin * QEMU supports PCI hotplug via ACPI. This module 5db4728e6SMichael S. Tsirkin * implements the interface between QEMU and the ACPI BIOS. 6db4728e6SMichael S. Tsirkin * Interface specification - see docs/specs/acpi_pci_hotplug.txt 7db4728e6SMichael S. Tsirkin * 8db4728e6SMichael S. Tsirkin * Copyright (c) 2013, Red Hat Inc, Michael S. Tsirkin (mst@redhat.com) 9db4728e6SMichael S. Tsirkin * Copyright (c) 2006 Fabrice Bellard 10db4728e6SMichael S. Tsirkin * 11db4728e6SMichael S. Tsirkin * This library is free software; you can redistribute it and/or 12db4728e6SMichael S. Tsirkin * modify it under the terms of the GNU Lesser General Public 13db4728e6SMichael S. Tsirkin * License version 2 as published by the Free Software Foundation. 14db4728e6SMichael S. Tsirkin * 15db4728e6SMichael S. Tsirkin * This library is distributed in the hope that it will be useful, 16db4728e6SMichael S. Tsirkin * but WITHOUT ANY WARRANTY; without even the implied warranty of 17db4728e6SMichael S. Tsirkin * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 18db4728e6SMichael S. Tsirkin * Lesser General Public License for more details. 19db4728e6SMichael S. Tsirkin * 20db4728e6SMichael S. Tsirkin * You should have received a copy of the GNU Lesser General Public 21db4728e6SMichael S. Tsirkin * License along with this library; if not, see <http://www.gnu.org/licenses/> 22db4728e6SMichael S. Tsirkin * 23db4728e6SMichael S. Tsirkin * Contributions after 2012-01-13 are licensed under the terms of the 24db4728e6SMichael S. Tsirkin * GNU GPL, version 2 or (at your option) any later version. 25db4728e6SMichael S. Tsirkin */ 26db4728e6SMichael S. Tsirkin 27b6a0aa05SPeter Maydell #include "qemu/osdep.h" 28db4728e6SMichael S. Tsirkin #include "hw/acpi/pcihp.h" 29db4728e6SMichael S. Tsirkin 300fd61a2dSPhilippe Mathieu-Daudé #include "hw/pci-host/i440fx.h" 31db4728e6SMichael S. Tsirkin #include "hw/pci/pci.h" 323e520926SDavid Hildenbrand #include "hw/pci/pci_bridge.h" 33db4728e6SMichael S. Tsirkin #include "hw/acpi/acpi.h" 34db4728e6SMichael S. Tsirkin #include "exec/address-spaces.h" 35db4728e6SMichael S. Tsirkin #include "hw/pci/pci_bus.h" 36d6454270SMarkus Armbruster #include "migration/vmstate.h" 37da34e65cSMarkus Armbruster #include "qapi/error.h" 38db4728e6SMichael S. Tsirkin #include "qom/qom-qobject.h" 39df93b194SMarkus Armbruster #include "trace.h" 40db4728e6SMichael S. Tsirkin 41e358edc8SIgor Mammedov #define ACPI_PCIHP_ADDR 0xae00 42e358edc8SIgor Mammedov #define ACPI_PCIHP_SIZE 0x0014 43a7b613cfSIgor Mammedov #define PCI_UP_BASE 0x0000 44a7b613cfSIgor Mammedov #define PCI_DOWN_BASE 0x0004 45a7b613cfSIgor Mammedov #define PCI_EJ_BASE 0x0008 46a7b613cfSIgor Mammedov #define PCI_RMV_BASE 0x000c 47a7b613cfSIgor Mammedov #define PCI_SEL_BASE 0x0010 48db4728e6SMichael S. Tsirkin 49db4728e6SMichael S. Tsirkin typedef struct AcpiPciHpFind { 50db4728e6SMichael S. Tsirkin int bsel; 51db4728e6SMichael S. Tsirkin PCIBus *bus; 52db4728e6SMichael S. Tsirkin } AcpiPciHpFind; 53db4728e6SMichael S. Tsirkin 54db4728e6SMichael S. Tsirkin static int acpi_pcihp_get_bsel(PCIBus *bus) 55db4728e6SMichael S. Tsirkin { 567c38ecd0SKirill Batuzov Error *local_err = NULL; 57c03d83d5SMarc-André Lureau uint64_t bsel = object_property_get_uint(OBJECT(bus), ACPI_PCIHP_PROP_BSEL, 587c38ecd0SKirill Batuzov &local_err); 597c38ecd0SKirill Batuzov 60c03d83d5SMarc-André Lureau if (local_err || bsel >= ACPI_PCIHP_MAX_HOTPLUG_BUS) { 617c38ecd0SKirill Batuzov if (local_err) { 627c38ecd0SKirill Batuzov error_free(local_err); 63db4728e6SMichael S. Tsirkin } 64db4728e6SMichael S. Tsirkin return -1; 657c38ecd0SKirill Batuzov } else { 66db4728e6SMichael S. Tsirkin return bsel; 67db4728e6SMichael S. Tsirkin } 687c38ecd0SKirill Batuzov } 69db4728e6SMichael S. Tsirkin 70ab938ae4SAnthony PERARD /* Assign BSEL property to all buses. In the future, this can be changed 71ab938ae4SAnthony PERARD * to only assign to buses that support hotplug. 72ab938ae4SAnthony PERARD */ 73ab938ae4SAnthony PERARD static void *acpi_set_bsel(PCIBus *bus, void *opaque) 74ab938ae4SAnthony PERARD { 75ab938ae4SAnthony PERARD unsigned *bsel_alloc = opaque; 76ab938ae4SAnthony PERARD unsigned *bus_bsel; 77ab938ae4SAnthony PERARD 78ab938ae4SAnthony PERARD if (qbus_is_hotpluggable(BUS(bus))) { 79ab938ae4SAnthony PERARD bus_bsel = g_malloc(sizeof *bus_bsel); 80ab938ae4SAnthony PERARD 81ab938ae4SAnthony PERARD *bus_bsel = (*bsel_alloc)++; 82ab938ae4SAnthony PERARD object_property_add_uint32_ptr(OBJECT(bus), ACPI_PCIHP_PROP_BSEL, 83836e1b38SFelipe Franciosi bus_bsel, OBJ_PROP_FLAG_READ, 84836e1b38SFelipe Franciosi &error_abort); 85ab938ae4SAnthony PERARD } 86ab938ae4SAnthony PERARD 87ab938ae4SAnthony PERARD return bsel_alloc; 88ab938ae4SAnthony PERARD } 89ab938ae4SAnthony PERARD 90ab938ae4SAnthony PERARD static void acpi_set_pci_info(void) 91ab938ae4SAnthony PERARD { 92ab938ae4SAnthony PERARD static bool bsel_is_set; 93ab938ae4SAnthony PERARD PCIBus *bus; 94ab938ae4SAnthony PERARD unsigned bsel_alloc = ACPI_PCIHP_BSEL_DEFAULT; 95ab938ae4SAnthony PERARD 96ab938ae4SAnthony PERARD if (bsel_is_set) { 97ab938ae4SAnthony PERARD return; 98ab938ae4SAnthony PERARD } 99ab938ae4SAnthony PERARD bsel_is_set = true; 100ab938ae4SAnthony PERARD 101ab938ae4SAnthony PERARD bus = find_i440fx(); /* TODO: Q35 support */ 102ab938ae4SAnthony PERARD if (bus) { 103ab938ae4SAnthony PERARD /* Scan all PCI buses. Set property to enable acpi based hotplug. */ 104ab938ae4SAnthony PERARD pci_for_each_bus_depth_first(bus, acpi_set_bsel, NULL, &bsel_alloc); 105ab938ae4SAnthony PERARD } 106ab938ae4SAnthony PERARD } 107ab938ae4SAnthony PERARD 108db4728e6SMichael S. Tsirkin static void acpi_pcihp_test_hotplug_bus(PCIBus *bus, void *opaque) 109db4728e6SMichael S. Tsirkin { 110db4728e6SMichael S. Tsirkin AcpiPciHpFind *find = opaque; 111db4728e6SMichael S. Tsirkin if (find->bsel == acpi_pcihp_get_bsel(bus)) { 112db4728e6SMichael S. Tsirkin find->bus = bus; 113db4728e6SMichael S. Tsirkin } 114db4728e6SMichael S. Tsirkin } 115db4728e6SMichael S. Tsirkin 116db4728e6SMichael S. Tsirkin static PCIBus *acpi_pcihp_find_hotplug_bus(AcpiPciHpState *s, int bsel) 117db4728e6SMichael S. Tsirkin { 118db4728e6SMichael S. Tsirkin AcpiPciHpFind find = { .bsel = bsel, .bus = NULL }; 119db4728e6SMichael S. Tsirkin 120db4728e6SMichael S. Tsirkin if (bsel < 0) { 121db4728e6SMichael S. Tsirkin return NULL; 122db4728e6SMichael S. Tsirkin } 123db4728e6SMichael S. Tsirkin 124db4728e6SMichael S. Tsirkin pci_for_each_bus(s->root, acpi_pcihp_test_hotplug_bus, &find); 125db4728e6SMichael S. Tsirkin 126db4728e6SMichael S. Tsirkin /* Make bsel 0 eject root bus if bsel property is not set, 127db4728e6SMichael S. Tsirkin * for compatibility with non acpi setups. 128db4728e6SMichael S. Tsirkin * TODO: really needed? 129db4728e6SMichael S. Tsirkin */ 130db4728e6SMichael S. Tsirkin if (!bsel && !find.bus) { 131db4728e6SMichael S. Tsirkin find.bus = s->root; 132db4728e6SMichael S. Tsirkin } 133db4728e6SMichael S. Tsirkin return find.bus; 134db4728e6SMichael S. Tsirkin } 135db4728e6SMichael S. Tsirkin 136db4728e6SMichael S. Tsirkin static bool acpi_pcihp_pc_no_hotplug(AcpiPciHpState *s, PCIDevice *dev) 137db4728e6SMichael S. Tsirkin { 138db4728e6SMichael S. Tsirkin PCIDeviceClass *pc = PCI_DEVICE_GET_CLASS(dev); 1392897ae02SIgor Mammedov DeviceClass *dc = DEVICE_GET_CLASS(dev); 140db4728e6SMichael S. Tsirkin /* 141db4728e6SMichael S. Tsirkin * ACPI doesn't allow hotplug of bridge devices. Don't allow 142db4728e6SMichael S. Tsirkin * hot-unplug of bridge devices unless they were added by hotplug 143db4728e6SMichael S. Tsirkin * (and so, not described by acpi). 144db4728e6SMichael S. Tsirkin */ 1452897ae02SIgor Mammedov return (pc->is_bridge && !dev->qdev.hotplugged) || !dc->hotpluggable; 146db4728e6SMichael S. Tsirkin } 147db4728e6SMichael S. Tsirkin 148db4728e6SMichael S. Tsirkin static void acpi_pcihp_eject_slot(AcpiPciHpState *s, unsigned bsel, unsigned slots) 149db4728e6SMichael S. Tsirkin { 150c97adf3cSDavid Hildenbrand HotplugHandler *hotplug_ctrl; 151db4728e6SMichael S. Tsirkin BusChild *kid, *next; 152786a4ea8SStefan Hajnoczi int slot = ctz32(slots); 153db4728e6SMichael S. Tsirkin PCIBus *bus = acpi_pcihp_find_hotplug_bus(s, bsel); 154db4728e6SMichael S. Tsirkin 15503459ea3SMarkus Armbruster trace_acpi_pci_eject_slot(bsel, slot); 15603459ea3SMarkus Armbruster 157*a3ec4bb7SIgor Mammedov if (!bus || slot > 31) { 158db4728e6SMichael S. Tsirkin return; 159db4728e6SMichael S. Tsirkin } 160db4728e6SMichael S. Tsirkin 161db4728e6SMichael S. Tsirkin /* Mark request as complete */ 162db4728e6SMichael S. Tsirkin s->acpi_pcihp_pci_status[bsel].down &= ~(1U << slot); 1635a2223caSMichael S. Tsirkin s->acpi_pcihp_pci_status[bsel].up &= ~(1U << slot); 164db4728e6SMichael S. Tsirkin 165db4728e6SMichael S. Tsirkin QTAILQ_FOREACH_SAFE(kid, &bus->qbus.children, sibling, next) { 166db4728e6SMichael S. Tsirkin DeviceState *qdev = kid->child; 167db4728e6SMichael S. Tsirkin PCIDevice *dev = PCI_DEVICE(qdev); 168db4728e6SMichael S. Tsirkin if (PCI_SLOT(dev->devfn) == slot) { 1695a2223caSMichael S. Tsirkin if (!acpi_pcihp_pc_no_hotplug(s, dev)) { 170c97adf3cSDavid Hildenbrand hotplug_ctrl = qdev_get_hotplug_handler(qdev); 171c97adf3cSDavid Hildenbrand hotplug_handler_unplug(hotplug_ctrl, qdev, &error_abort); 17207578b0aSDavid Hildenbrand object_unparent(OBJECT(qdev)); 173db4728e6SMichael S. Tsirkin } 174db4728e6SMichael S. Tsirkin } 175db4728e6SMichael S. Tsirkin } 176db4728e6SMichael S. Tsirkin } 177db4728e6SMichael S. Tsirkin 178db4728e6SMichael S. Tsirkin static void acpi_pcihp_update_hotplug_bus(AcpiPciHpState *s, int bsel) 179db4728e6SMichael S. Tsirkin { 180db4728e6SMichael S. Tsirkin BusChild *kid, *next; 181db4728e6SMichael S. Tsirkin PCIBus *bus = acpi_pcihp_find_hotplug_bus(s, bsel); 182db4728e6SMichael S. Tsirkin 183db4728e6SMichael S. Tsirkin /* Execute any pending removes during reset */ 184db4728e6SMichael S. Tsirkin while (s->acpi_pcihp_pci_status[bsel].down) { 185db4728e6SMichael S. Tsirkin acpi_pcihp_eject_slot(s, bsel, s->acpi_pcihp_pci_status[bsel].down); 186db4728e6SMichael S. Tsirkin } 187db4728e6SMichael S. Tsirkin 188db4728e6SMichael S. Tsirkin s->acpi_pcihp_pci_status[bsel].hotplug_enable = ~0; 189db4728e6SMichael S. Tsirkin 190db4728e6SMichael S. Tsirkin if (!bus) { 191db4728e6SMichael S. Tsirkin return; 192db4728e6SMichael S. Tsirkin } 193db4728e6SMichael S. Tsirkin QTAILQ_FOREACH_SAFE(kid, &bus->qbus.children, sibling, next) { 194db4728e6SMichael S. Tsirkin DeviceState *qdev = kid->child; 195db4728e6SMichael S. Tsirkin PCIDevice *pdev = PCI_DEVICE(qdev); 196db4728e6SMichael S. Tsirkin int slot = PCI_SLOT(pdev->devfn); 197db4728e6SMichael S. Tsirkin 198db4728e6SMichael S. Tsirkin if (acpi_pcihp_pc_no_hotplug(s, pdev)) { 199db4728e6SMichael S. Tsirkin s->acpi_pcihp_pci_status[bsel].hotplug_enable &= ~(1U << slot); 200db4728e6SMichael S. Tsirkin } 201db4728e6SMichael S. Tsirkin } 202db4728e6SMichael S. Tsirkin } 203db4728e6SMichael S. Tsirkin 204db4728e6SMichael S. Tsirkin static void acpi_pcihp_update(AcpiPciHpState *s) 205db4728e6SMichael S. Tsirkin { 206db4728e6SMichael S. Tsirkin int i; 207db4728e6SMichael S. Tsirkin 208db4728e6SMichael S. Tsirkin for (i = 0; i < ACPI_PCIHP_MAX_HOTPLUG_BUS; ++i) { 209db4728e6SMichael S. Tsirkin acpi_pcihp_update_hotplug_bus(s, i); 210db4728e6SMichael S. Tsirkin } 211db4728e6SMichael S. Tsirkin } 212db4728e6SMichael S. Tsirkin 213db4728e6SMichael S. Tsirkin void acpi_pcihp_reset(AcpiPciHpState *s) 214db4728e6SMichael S. Tsirkin { 215ab938ae4SAnthony PERARD acpi_set_pci_info(); 216db4728e6SMichael S. Tsirkin acpi_pcihp_update(s); 217db4728e6SMichael S. Tsirkin } 218db4728e6SMichael S. Tsirkin 219ec266f40SDavid Hildenbrand void acpi_pcihp_device_pre_plug_cb(HotplugHandler *hotplug_dev, 220ec266f40SDavid Hildenbrand DeviceState *dev, Error **errp) 221ec266f40SDavid Hildenbrand { 222ec266f40SDavid Hildenbrand /* Only hotplugged devices need the hotplug capability. */ 223ec266f40SDavid Hildenbrand if (dev->hotplugged && 224ec266f40SDavid Hildenbrand acpi_pcihp_get_bsel(pci_get_bus(PCI_DEVICE(dev))) < 0) { 225ec266f40SDavid Hildenbrand error_setg(errp, "Unsupported bus. Bus doesn't have property '" 226ec266f40SDavid Hildenbrand ACPI_PCIHP_PROP_BSEL "' set"); 227ec266f40SDavid Hildenbrand return; 228ec266f40SDavid Hildenbrand } 229ec266f40SDavid Hildenbrand } 230ec266f40SDavid Hildenbrand 2310058c082SIgor Mammedov void acpi_pcihp_device_plug_cb(HotplugHandler *hotplug_dev, AcpiPciHpState *s, 232c24d5e0bSIgor Mammedov DeviceState *dev, Error **errp) 233db4728e6SMichael S. Tsirkin { 234c24d5e0bSIgor Mammedov PCIDevice *pdev = PCI_DEVICE(dev); 235c24d5e0bSIgor Mammedov int slot = PCI_SLOT(pdev->devfn); 236ec266f40SDavid Hildenbrand int bsel; 237db4728e6SMichael S. Tsirkin 238db4728e6SMichael S. Tsirkin /* Don't send event when device is enabled during qemu machine creation: 239db4728e6SMichael S. Tsirkin * it is present on boot, no hotplug event is necessary. We do send an 240db4728e6SMichael S. Tsirkin * event when the device is disabled later. */ 241c24d5e0bSIgor Mammedov if (!dev->hotplugged) { 2423e520926SDavid Hildenbrand /* 2433e520926SDavid Hildenbrand * Overwrite the default hotplug handler with the ACPI PCI one 2443e520926SDavid Hildenbrand * for cold plugged bridges only. 2453e520926SDavid Hildenbrand */ 2463e520926SDavid Hildenbrand if (!s->legacy_piix && 2473e520926SDavid Hildenbrand object_dynamic_cast(OBJECT(dev), TYPE_PCI_BRIDGE)) { 2483e520926SDavid Hildenbrand PCIBus *sec = pci_bridge_get_sec_bus(PCI_BRIDGE(pdev)); 2493e520926SDavid Hildenbrand 25094d1cc5fSMichael Roth qbus_set_hotplug_handler(BUS(sec), OBJECT(hotplug_dev), 2513e520926SDavid Hildenbrand &error_abort); 2523e520926SDavid Hildenbrand /* We don't have to overwrite any other hotplug handler yet */ 2533e520926SDavid Hildenbrand assert(QLIST_EMPTY(&sec->child)); 2543e520926SDavid Hildenbrand } 2553e520926SDavid Hildenbrand 256c24d5e0bSIgor Mammedov return; 257db4728e6SMichael S. Tsirkin } 258db4728e6SMichael S. Tsirkin 259ec266f40SDavid Hildenbrand bsel = acpi_pcihp_get_bsel(pci_get_bus(pdev)); 260ec266f40SDavid Hildenbrand g_assert(bsel >= 0); 2618f5001f9SIgor Mammedov s->acpi_pcihp_pci_status[bsel].up |= (1U << slot); 2620058c082SIgor Mammedov acpi_send_event(DEVICE(hotplug_dev), ACPI_PCI_HOTPLUG_STATUS); 263db4728e6SMichael S. Tsirkin } 264db4728e6SMichael S. Tsirkin 2650058c082SIgor Mammedov void acpi_pcihp_device_unplug_cb(HotplugHandler *hotplug_dev, AcpiPciHpState *s, 266c24d5e0bSIgor Mammedov DeviceState *dev, Error **errp) 267c24d5e0bSIgor Mammedov { 26803459ea3SMarkus Armbruster trace_acpi_pci_unplug(PCI_SLOT(PCI_DEVICE(dev)->devfn), 26903459ea3SMarkus Armbruster acpi_pcihp_get_bsel(pci_get_bus(PCI_DEVICE(dev)))); 27007578b0aSDavid Hildenbrand object_property_set_bool(OBJECT(dev), false, "realized", NULL); 271c97adf3cSDavid Hildenbrand } 272c97adf3cSDavid Hildenbrand 273c97adf3cSDavid Hildenbrand void acpi_pcihp_device_unplug_request_cb(HotplugHandler *hotplug_dev, 274c97adf3cSDavid Hildenbrand AcpiPciHpState *s, DeviceState *dev, 275c97adf3cSDavid Hildenbrand Error **errp) 276c97adf3cSDavid Hildenbrand { 277c24d5e0bSIgor Mammedov PCIDevice *pdev = PCI_DEVICE(dev); 278c24d5e0bSIgor Mammedov int slot = PCI_SLOT(pdev->devfn); 279fd56e061SDavid Gibson int bsel = acpi_pcihp_get_bsel(pci_get_bus(pdev)); 28003459ea3SMarkus Armbruster 28103459ea3SMarkus Armbruster trace_acpi_pci_unplug_request(bsel, slot); 28203459ea3SMarkus Armbruster 283c24d5e0bSIgor Mammedov if (bsel < 0) { 284c24d5e0bSIgor Mammedov error_setg(errp, "Unsupported bus. Bus doesn't have property '" 285c24d5e0bSIgor Mammedov ACPI_PCIHP_PROP_BSEL "' set"); 286c24d5e0bSIgor Mammedov return; 287c24d5e0bSIgor Mammedov } 288c24d5e0bSIgor Mammedov 289c24d5e0bSIgor Mammedov s->acpi_pcihp_pci_status[bsel].down |= (1U << slot); 2900058c082SIgor Mammedov acpi_send_event(DEVICE(hotplug_dev), ACPI_PCI_HOTPLUG_STATUS); 291db4728e6SMichael S. Tsirkin } 292db4728e6SMichael S. Tsirkin 293db4728e6SMichael S. Tsirkin static uint64_t pci_read(void *opaque, hwaddr addr, unsigned int size) 294db4728e6SMichael S. Tsirkin { 295db4728e6SMichael S. Tsirkin AcpiPciHpState *s = opaque; 296db4728e6SMichael S. Tsirkin uint32_t val = 0; 297db4728e6SMichael S. Tsirkin int bsel = s->hotplug_select; 298db4728e6SMichael S. Tsirkin 299fa365d7cSGonglei if (bsel < 0 || bsel >= ACPI_PCIHP_MAX_HOTPLUG_BUS) { 300db4728e6SMichael S. Tsirkin return 0; 301db4728e6SMichael S. Tsirkin } 302db4728e6SMichael S. Tsirkin 303db4728e6SMichael S. Tsirkin switch (addr) { 304a7b613cfSIgor Mammedov case PCI_UP_BASE: 3055a2223caSMichael S. Tsirkin val = s->acpi_pcihp_pci_status[bsel].up; 30699d09dd3SIgor Mammedov if (!s->legacy_piix) { 3075a2223caSMichael S. Tsirkin s->acpi_pcihp_pci_status[bsel].up = 0; 30899d09dd3SIgor Mammedov } 309df93b194SMarkus Armbruster trace_acpi_pci_up_read(val); 310db4728e6SMichael S. Tsirkin break; 311a7b613cfSIgor Mammedov case PCI_DOWN_BASE: 312db4728e6SMichael S. Tsirkin val = s->acpi_pcihp_pci_status[bsel].down; 313df93b194SMarkus Armbruster trace_acpi_pci_down_read(val); 314db4728e6SMichael S. Tsirkin break; 315a7b613cfSIgor Mammedov case PCI_EJ_BASE: 316db4728e6SMichael S. Tsirkin /* No feature defined yet */ 317df93b194SMarkus Armbruster trace_acpi_pci_features_read(val); 318db4728e6SMichael S. Tsirkin break; 319a7b613cfSIgor Mammedov case PCI_RMV_BASE: 320db4728e6SMichael S. Tsirkin val = s->acpi_pcihp_pci_status[bsel].hotplug_enable; 321df93b194SMarkus Armbruster trace_acpi_pci_rmv_read(val); 322db4728e6SMichael S. Tsirkin break; 323a7b613cfSIgor Mammedov case PCI_SEL_BASE: 324db4728e6SMichael S. Tsirkin val = s->hotplug_select; 325df93b194SMarkus Armbruster trace_acpi_pci_sel_read(val); 326db4728e6SMichael S. Tsirkin default: 327db4728e6SMichael S. Tsirkin break; 328db4728e6SMichael S. Tsirkin } 329db4728e6SMichael S. Tsirkin 330db4728e6SMichael S. Tsirkin return val; 331db4728e6SMichael S. Tsirkin } 332db4728e6SMichael S. Tsirkin 333db4728e6SMichael S. Tsirkin static void pci_write(void *opaque, hwaddr addr, uint64_t data, 334db4728e6SMichael S. Tsirkin unsigned int size) 335db4728e6SMichael S. Tsirkin { 336db4728e6SMichael S. Tsirkin AcpiPciHpState *s = opaque; 337db4728e6SMichael S. Tsirkin switch (addr) { 338a7b613cfSIgor Mammedov case PCI_EJ_BASE: 339db4728e6SMichael S. Tsirkin if (s->hotplug_select >= ACPI_PCIHP_MAX_HOTPLUG_BUS) { 340db4728e6SMichael S. Tsirkin break; 341db4728e6SMichael S. Tsirkin } 342db4728e6SMichael S. Tsirkin acpi_pcihp_eject_slot(s, s->hotplug_select, data); 343df93b194SMarkus Armbruster trace_acpi_pci_ej_write(addr, data); 344db4728e6SMichael S. Tsirkin break; 345a7b613cfSIgor Mammedov case PCI_SEL_BASE: 346f5855994SAnthony PERARD s->hotplug_select = s->legacy_piix ? ACPI_PCIHP_BSEL_DEFAULT : data; 347df93b194SMarkus Armbruster trace_acpi_pci_sel_write(addr, data); 348db4728e6SMichael S. Tsirkin default: 349db4728e6SMichael S. Tsirkin break; 350db4728e6SMichael S. Tsirkin } 351db4728e6SMichael S. Tsirkin } 352db4728e6SMichael S. Tsirkin 353db4728e6SMichael S. Tsirkin static const MemoryRegionOps acpi_pcihp_io_ops = { 354db4728e6SMichael S. Tsirkin .read = pci_read, 355db4728e6SMichael S. Tsirkin .write = pci_write, 356db4728e6SMichael S. Tsirkin .endianness = DEVICE_LITTLE_ENDIAN, 357db4728e6SMichael S. Tsirkin .valid = { 358db4728e6SMichael S. Tsirkin .min_access_size = 4, 359db4728e6SMichael S. Tsirkin .max_access_size = 4, 360db4728e6SMichael S. Tsirkin }, 361db4728e6SMichael S. Tsirkin }; 362db4728e6SMichael S. Tsirkin 36378c2d872SIgor Mammedov void acpi_pcihp_init(Object *owner, AcpiPciHpState *s, PCIBus *root_bus, 36499d09dd3SIgor Mammedov MemoryRegion *address_space_io, bool bridges_enabled) 365db4728e6SMichael S. Tsirkin { 36678c2d872SIgor Mammedov s->io_len = ACPI_PCIHP_SIZE; 36778c2d872SIgor Mammedov s->io_base = ACPI_PCIHP_ADDR; 368e358edc8SIgor Mammedov 369db4728e6SMichael S. Tsirkin s->root= root_bus; 37099d09dd3SIgor Mammedov s->legacy_piix = !bridges_enabled; 371e358edc8SIgor Mammedov 37278c2d872SIgor Mammedov memory_region_init_io(&s->io, owner, &acpi_pcihp_io_ops, s, 37378c2d872SIgor Mammedov "acpi-pci-hotplug", s->io_len); 37478c2d872SIgor Mammedov memory_region_add_subregion(address_space_io, s->io_base, &s->io); 37578c2d872SIgor Mammedov 37678c2d872SIgor Mammedov object_property_add_uint16_ptr(owner, ACPI_PCIHP_IO_BASE_PROP, &s->io_base, 377836e1b38SFelipe Franciosi OBJ_PROP_FLAG_READ, &error_abort); 37878c2d872SIgor Mammedov object_property_add_uint16_ptr(owner, ACPI_PCIHP_IO_LEN_PROP, &s->io_len, 379836e1b38SFelipe Franciosi OBJ_PROP_FLAG_READ, &error_abort); 380db4728e6SMichael S. Tsirkin } 381db4728e6SMichael S. Tsirkin 382db4728e6SMichael S. Tsirkin const VMStateDescription vmstate_acpi_pcihp_pci_status = { 383db4728e6SMichael S. Tsirkin .name = "acpi_pcihp_pci_status", 384db4728e6SMichael S. Tsirkin .version_id = 1, 385db4728e6SMichael S. Tsirkin .minimum_version_id = 1, 386db4728e6SMichael S. Tsirkin .fields = (VMStateField[]) { 387db4728e6SMichael S. Tsirkin VMSTATE_UINT32(up, AcpiPciHpPciStatus), 388db4728e6SMichael S. Tsirkin VMSTATE_UINT32(down, AcpiPciHpPciStatus), 389db4728e6SMichael S. Tsirkin VMSTATE_END_OF_LIST() 390db4728e6SMichael S. Tsirkin } 391db4728e6SMichael S. Tsirkin }; 392