2013-10-14 17:01:11 +02:00
|
|
|
/*
|
|
|
|
* QEMU<->ACPI BIOS PCI hotplug interface
|
|
|
|
*
|
|
|
|
* QEMU supports PCI hotplug via ACPI. This module
|
|
|
|
* implements the interface between QEMU and the ACPI BIOS.
|
|
|
|
* Interface specification - see docs/specs/acpi_pci_hotplug.txt
|
|
|
|
*
|
|
|
|
* Copyright (c) 2013, Red Hat Inc, Michael S. Tsirkin (mst@redhat.com)
|
|
|
|
* Copyright (c) 2006 Fabrice Bellard
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License version 2 as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, see <http://www.gnu.org/licenses/>
|
|
|
|
*
|
|
|
|
* Contributions after 2012-01-13 are licensed under the terms of the
|
|
|
|
* GNU GPL, version 2 or (at your option) any later version.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef HW_ACPI_PCIHP_H
|
|
|
|
#define HW_ACPI_PCIHP_H
|
|
|
|
|
2014-02-05 16:36:49 +01:00
|
|
|
#include "hw/acpi/acpi.h"
|
|
|
|
#include "migration/vmstate.h"
|
2016-05-31 12:01:17 +02:00
|
|
|
#include "hw/hotplug.h"
|
2013-10-14 17:01:11 +02:00
|
|
|
|
2015-02-18 20:14:49 +01:00
|
|
|
#define ACPI_PCIHP_IO_BASE_PROP "acpi-pcihp-io-base"
|
|
|
|
#define ACPI_PCIHP_IO_LEN_PROP "acpi-pcihp-io-len"
|
|
|
|
|
2013-10-14 17:01:11 +02:00
|
|
|
typedef struct AcpiPciHpPciStatus {
|
2014-01-26 11:31:27 +01:00
|
|
|
uint32_t up;
|
2013-10-14 17:01:11 +02:00
|
|
|
uint32_t down;
|
|
|
|
uint32_t hotplug_enable;
|
|
|
|
} AcpiPciHpPciStatus;
|
|
|
|
|
|
|
|
#define ACPI_PCIHP_PROP_BSEL "acpi-pcihp-bsel"
|
|
|
|
#define ACPI_PCIHP_MAX_HOTPLUG_BUS 256
|
2014-02-03 11:45:01 +01:00
|
|
|
#define ACPI_PCIHP_BSEL_DEFAULT 0x0
|
2013-10-14 17:01:11 +02:00
|
|
|
|
|
|
|
typedef struct AcpiPciHpState {
|
|
|
|
AcpiPciHpPciStatus acpi_pcihp_pci_status[ACPI_PCIHP_MAX_HOTPLUG_BUS];
|
|
|
|
uint32_t hotplug_select;
|
|
|
|
PCIBus *root;
|
|
|
|
MemoryRegion io;
|
2014-02-03 11:44:59 +01:00
|
|
|
bool legacy_piix;
|
2015-02-18 20:14:49 +01:00
|
|
|
uint16_t io_base;
|
|
|
|
uint16_t io_len;
|
2013-10-14 17:01:11 +02:00
|
|
|
} AcpiPciHpState;
|
|
|
|
|
2015-02-18 20:14:49 +01:00
|
|
|
void acpi_pcihp_init(Object *owner, AcpiPciHpState *, PCIBus *root,
|
2014-02-03 11:44:59 +01:00
|
|
|
MemoryRegion *address_space_io, bool bridges_enabled);
|
2013-10-14 17:01:11 +02:00
|
|
|
|
2016-05-31 12:01:17 +02:00
|
|
|
void acpi_pcihp_device_plug_cb(HotplugHandler *hotplug_dev, AcpiPciHpState *s,
|
2014-02-05 16:36:49 +01:00
|
|
|
DeviceState *dev, Error **errp);
|
2016-05-31 12:01:17 +02:00
|
|
|
void acpi_pcihp_device_unplug_cb(HotplugHandler *hotplug_dev, AcpiPciHpState *s,
|
2014-02-05 16:36:49 +01:00
|
|
|
DeviceState *dev, Error **errp);
|
2013-10-14 17:01:11 +02:00
|
|
|
|
|
|
|
/* Called on reset */
|
|
|
|
void acpi_pcihp_reset(AcpiPciHpState *s);
|
|
|
|
|
|
|
|
extern const VMStateDescription vmstate_acpi_pcihp_pci_status;
|
|
|
|
|
|
|
|
#define VMSTATE_PCI_HOTPLUG(pcihp, state, test_pcihp) \
|
|
|
|
VMSTATE_UINT32_TEST(pcihp.hotplug_select, state, \
|
|
|
|
test_pcihp), \
|
|
|
|
VMSTATE_STRUCT_ARRAY_TEST(pcihp.acpi_pcihp_pci_status, state, \
|
|
|
|
ACPI_PCIHP_MAX_HOTPLUG_BUS, \
|
|
|
|
test_pcihp, 1, \
|
|
|
|
vmstate_acpi_pcihp_pci_status, \
|
|
|
|
AcpiPciHpPciStatus)
|
|
|
|
|
|
|
|
#endif
|