2010-05-14 11:29:02 +04:00
|
|
|
/*
|
|
|
|
* ACPI implementation
|
|
|
|
*
|
|
|
|
* 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
|
2020-10-23 15:44:24 +03:00
|
|
|
* License version 2.1 as published by the Free Software Foundation.
|
2010-05-14 11:29:02 +04:00
|
|
|
*
|
|
|
|
* 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/>
|
2012-01-13 20:44:23 +04:00
|
|
|
*
|
|
|
|
* Contributions after 2012-01-13 are licensed under the terms of the
|
|
|
|
* GNU GPL, version 2 or (at your option) any later version.
|
2010-05-14 11:29:02 +04:00
|
|
|
*/
|
2019-08-12 08:23:38 +03:00
|
|
|
|
2016-01-26 21:17:03 +03:00
|
|
|
#include "qemu/osdep.h"
|
2013-02-05 20:06:20 +04:00
|
|
|
#include "hw/i386/pc.h"
|
2019-08-12 08:23:42 +03:00
|
|
|
#include "hw/irq.h"
|
2013-02-05 20:06:20 +04:00
|
|
|
#include "hw/isa/apm.h"
|
|
|
|
#include "hw/i2c/pm_smbus.h"
|
2013-02-04 18:40:22 +04:00
|
|
|
#include "hw/pci/pci.h"
|
2019-08-12 08:23:51 +03:00
|
|
|
#include "hw/qdev-properties.h"
|
2013-02-05 20:06:20 +04:00
|
|
|
#include "hw/acpi/acpi.h"
|
2022-05-28 12:02:11 +03:00
|
|
|
#include "hw/acpi/pcihp.h"
|
|
|
|
#include "hw/acpi/piix4.h"
|
2019-08-12 08:23:59 +03:00
|
|
|
#include "sysemu/runstate.h"
|
2012-12-17 21:20:04 +04:00
|
|
|
#include "sysemu/sysemu.h"
|
2020-05-08 13:02:22 +03:00
|
|
|
#include "sysemu/xen.h"
|
include/qemu/osdep.h: Don't include qapi/error.h
Commit 57cb38b included qapi/error.h into qemu/osdep.h to get the
Error typedef. Since then, we've moved to include qemu/osdep.h
everywhere. Its file comment explains: "To avoid getting into
possible circular include dependencies, this file should not include
any other QEMU headers, with the exceptions of config-host.h,
compiler.h, os-posix.h and os-win32.h, all of which are doing a
similar job to this file and are under similar constraints."
qapi/error.h doesn't do a similar job, and it doesn't adhere to
similar constraints: it includes qapi-types.h. That's in excess of
100KiB of crap most .c files don't actually need.
Add the typedef to qemu/typedefs.h, and include that instead of
qapi/error.h. Include qapi/error.h in .c files that need it and don't
get it now. Include qapi-types.h in qom/object.h for uint16List.
Update scripts/clean-includes accordingly. Update it further to match
reality: replace config.h by config-target.h, add sysemu/os-posix.h,
sysemu/os-win32.h. Update the list of includes in the qemu/osdep.h
comment quoted above similarly.
This reduces the number of objects depending on qapi/error.h from "all
of them" to less than a third. Unfortunately, the number depending on
qapi-types.h shrinks only a little. More work is needed for that one.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
[Fix compilation without the spice devel packages. - Paolo]
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
2016-03-14 11:01:28 +03:00
|
|
|
#include "qapi/error.h"
|
2012-12-17 21:20:00 +04:00
|
|
|
#include "qemu/range.h"
|
2014-01-09 20:36:31 +04:00
|
|
|
#include "hw/acpi/cpu_hotplug.h"
|
2016-06-14 17:02:06 +03:00
|
|
|
#include "hw/acpi/cpu.h"
|
2014-02-05 19:36:49 +04:00
|
|
|
#include "hw/hotplug.h"
|
2014-06-02 17:25:20 +04:00
|
|
|
#include "hw/mem/pc-dimm.h"
|
2020-02-28 14:46:46 +03:00
|
|
|
#include "hw/mem/nvdimm.h"
|
2014-06-02 17:25:20 +04:00
|
|
|
#include "hw/acpi/memory_hotplug.h"
|
2014-06-16 21:12:27 +04:00
|
|
|
#include "hw/acpi/acpi_dev_interface.h"
|
2019-08-12 08:23:45 +03:00
|
|
|
#include "migration/vmstate.h"
|
2019-07-09 18:20:52 +03:00
|
|
|
#include "hw/core/cpu.h"
|
2019-04-02 19:18:58 +03:00
|
|
|
#include "trace.h"
|
2020-09-03 23:43:22 +03:00
|
|
|
#include "qom/object.h"
|
2010-05-14 11:29:22 +04:00
|
|
|
|
2010-05-14 11:29:20 +04:00
|
|
|
#define GPE_BASE 0xafe0
|
2011-03-25 13:54:41 +03:00
|
|
|
#define GPE_LEN 4
|
2012-11-23 19:03:19 +04:00
|
|
|
|
2021-07-13 03:42:00 +03:00
|
|
|
#define ACPI_PCIHP_ADDR_PIIX4 0xae00
|
|
|
|
|
2010-05-14 11:29:20 +04:00
|
|
|
struct pci_status {
|
acpi_piix4: Fix PCI hotplug race
As Michael Tsirkin demonstrated, current PCI hotplug is vulnerable
to a few races. The first is a race with other hotplug operations
because we clear the up & down registers at each event. If a new
event comes before the last is processed, up/down is cleared and
the event is lost.
To fix this for the down register, we create a life cycle for
the event request that starts with the hot unplug request in
piix4_device_hotplug() and ends when the device is ejected.
This allows us to mask and clear individual bits, preserving them
against races. For the up register, we have no clear end point
for when the event is finished. We could modify the BIOS to
acknowledge the bit and clear it, but this creates BIOS compatibiliy
issues without offering a complete solution. Instead we note that
gratuitous ACPI device checks are not harmful, which allows us to
issue a device check for every slot. We know which slots are present
and we know which slots are hotpluggable, so we can easily reduce
this to a more manageable set for the guest.
The other race Michael noted was that an unplug request followed
by reset may also lose the eject notification, which may also
result in the eject request being lost which a subsequent add
or remove. Once we're in reset, the device is unused and we can
flush the queue of device removals ourselves. Previously if a
device_del was issued to a guest without ACPI PCI hotplug support,
it was necessary to shutdown the guest to recover the device.
With this, a guest reboot is sufficient.
Signed-off-by: Alex Williamson <alex.williamson@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
2012-04-05 21:07:15 +04:00
|
|
|
uint32_t up; /* deprecated, maintained for migration compatibility */
|
2010-05-14 11:29:20 +04:00
|
|
|
uint32_t down;
|
|
|
|
};
|
|
|
|
|
2012-12-11 12:40:45 +04:00
|
|
|
static void piix4_acpi_system_hot_add_init(MemoryRegion *parent,
|
|
|
|
PCIBus *bus, PIIX4PMState *s);
|
2010-05-14 11:29:20 +04:00
|
|
|
|
2010-05-14 11:29:02 +04:00
|
|
|
#define ACPI_ENABLE 0xf1
|
|
|
|
#define ACPI_DISABLE 0xf0
|
|
|
|
|
2012-02-23 16:45:16 +04:00
|
|
|
static void pm_tmr_timer(ACPIREGS *ar)
|
2010-05-14 11:29:02 +04:00
|
|
|
{
|
2012-02-23 16:45:16 +04:00
|
|
|
PIIX4PMState *s = container_of(ar, PIIX4PMState, ar);
|
2013-12-13 20:22:07 +04:00
|
|
|
acpi_update_sci(&s->ar, s->irq);
|
2010-05-14 11:29:02 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void apm_ctrl_changed(uint32_t val, void *arg)
|
|
|
|
{
|
|
|
|
PIIX4PMState *s = arg;
|
2013-06-30 16:40:37 +04:00
|
|
|
PCIDevice *d = PCI_DEVICE(s);
|
2010-05-14 11:29:02 +04:00
|
|
|
|
|
|
|
/* ACPI specs 3.0, 4.7.2.5 */
|
2012-02-23 16:45:16 +04:00
|
|
|
acpi_pm1_cnt_update(&s->ar, val == ACPI_ENABLE, val == ACPI_DISABLE);
|
2015-06-18 19:28:41 +03:00
|
|
|
if (val == ACPI_ENABLE || val == ACPI_DISABLE) {
|
|
|
|
return;
|
|
|
|
}
|
2010-05-14 11:29:02 +04:00
|
|
|
|
2013-06-30 16:40:37 +04:00
|
|
|
if (d->config[0x5b] & (1 << 1)) {
|
2010-05-14 11:29:02 +04:00
|
|
|
if (s->smi_irq) {
|
|
|
|
qemu_irq_raise(s->smi_irq);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void pm_io_space_update(PIIX4PMState *s)
|
|
|
|
{
|
2013-06-30 16:40:37 +04:00
|
|
|
PCIDevice *d = PCI_DEVICE(s);
|
2010-05-14 11:29:02 +04:00
|
|
|
|
2013-07-24 19:56:11 +04:00
|
|
|
s->io_base = le32_to_cpu(*(uint32_t *)(d->config + 0x40));
|
|
|
|
s->io_base &= 0xffc0;
|
2010-05-14 11:29:02 +04:00
|
|
|
|
2012-11-22 14:34:44 +04:00
|
|
|
memory_region_transaction_begin();
|
2013-06-30 16:40:37 +04:00
|
|
|
memory_region_set_enabled(&s->io, d->config[0x80] & 1);
|
2013-07-24 19:56:11 +04:00
|
|
|
memory_region_set_address(&s->io, s->io_base);
|
2012-11-22 14:34:44 +04:00
|
|
|
memory_region_transaction_commit();
|
2010-05-14 11:29:02 +04:00
|
|
|
}
|
|
|
|
|
2012-11-23 17:58:04 +04:00
|
|
|
static void smbus_io_space_update(PIIX4PMState *s)
|
|
|
|
{
|
2013-06-30 16:40:37 +04:00
|
|
|
PCIDevice *d = PCI_DEVICE(s);
|
|
|
|
|
|
|
|
s->smb_io_base = le32_to_cpu(*(uint32_t *)(d->config + 0x90));
|
2012-11-23 17:58:04 +04:00
|
|
|
s->smb_io_base &= 0xffc0;
|
|
|
|
|
|
|
|
memory_region_transaction_begin();
|
2013-06-30 16:40:37 +04:00
|
|
|
memory_region_set_enabled(&s->smb.io, d->config[0xd2] & 1);
|
2012-11-23 17:58:04 +04:00
|
|
|
memory_region_set_address(&s->smb.io, s->smb_io_base);
|
|
|
|
memory_region_transaction_commit();
|
2010-05-14 11:29:02 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void pm_write_config(PCIDevice *d,
|
|
|
|
uint32_t address, uint32_t val, int len)
|
|
|
|
{
|
|
|
|
pci_default_write_config(d, address, val, len);
|
2012-11-23 17:58:04 +04:00
|
|
|
if (range_covers_byte(address, len, 0x80) ||
|
|
|
|
ranges_overlap(address, len, 0x40, 4)) {
|
2010-05-14 11:29:02 +04:00
|
|
|
pm_io_space_update((PIIX4PMState *)d);
|
2012-11-23 17:58:04 +04:00
|
|
|
}
|
|
|
|
if (range_covers_byte(address, len, 0xd2) ||
|
|
|
|
ranges_overlap(address, len, 0x90, 4)) {
|
|
|
|
smbus_io_space_update((PIIX4PMState *)d);
|
|
|
|
}
|
2010-05-14 11:29:02 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static int vmstate_acpi_post_load(void *opaque, int version_id)
|
|
|
|
{
|
|
|
|
PIIX4PMState *s = opaque;
|
|
|
|
|
|
|
|
pm_io_space_update(s);
|
2018-11-26 21:28:44 +03:00
|
|
|
smbus_io_space_update(s);
|
2010-05-14 11:29:02 +04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-03-25 13:54:41 +03:00
|
|
|
#define VMSTATE_GPE_ARRAY(_field, _state) \
|
|
|
|
{ \
|
|
|
|
.name = (stringify(_field)), \
|
|
|
|
.version_id = 0, \
|
|
|
|
.info = &vmstate_info_uint16, \
|
|
|
|
.size = sizeof(uint16_t), \
|
2012-10-31 03:14:19 +04:00
|
|
|
.flags = VMS_SINGLE | VMS_POINTER, \
|
2011-03-25 13:54:41 +03:00
|
|
|
.offset = vmstate_offset_pointer(_state, _field, uint8_t), \
|
|
|
|
}
|
|
|
|
|
2010-06-02 20:58:29 +04:00
|
|
|
static const VMStateDescription vmstate_gpe = {
|
|
|
|
.name = "gpe",
|
|
|
|
.version_id = 1,
|
|
|
|
.minimum_version_id = 1,
|
2014-04-16 17:32:32 +04:00
|
|
|
.fields = (VMStateField[]) {
|
2011-03-25 13:54:41 +03:00
|
|
|
VMSTATE_GPE_ARRAY(sts, ACPIGPE),
|
|
|
|
VMSTATE_GPE_ARRAY(en, ACPIGPE),
|
2010-06-02 20:58:29 +04:00
|
|
|
VMSTATE_END_OF_LIST()
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
static const VMStateDescription vmstate_pci_status = {
|
|
|
|
.name = "pci_status",
|
|
|
|
.version_id = 1,
|
|
|
|
.minimum_version_id = 1,
|
2014-04-16 17:32:32 +04:00
|
|
|
.fields = (VMStateField[]) {
|
2014-02-03 14:45:01 +04:00
|
|
|
VMSTATE_UINT32(up, struct AcpiPciHpPciStatus),
|
|
|
|
VMSTATE_UINT32(down, struct AcpiPciHpPciStatus),
|
2010-06-02 20:58:29 +04:00
|
|
|
VMSTATE_END_OF_LIST()
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2020-06-16 15:31:39 +03:00
|
|
|
static bool vmstate_test_use_acpi_hotplug_bridge(void *opaque, int version_id)
|
2013-10-14 19:01:20 +04:00
|
|
|
{
|
|
|
|
PIIX4PMState *s = opaque;
|
2023-03-02 19:15:42 +03:00
|
|
|
return s->acpi_pci_hotplug.use_acpi_hotplug_bridge;
|
2013-10-14 19:01:20 +04:00
|
|
|
}
|
|
|
|
|
2020-06-16 15:31:39 +03:00
|
|
|
static bool vmstate_test_no_use_acpi_hotplug_bridge(void *opaque,
|
|
|
|
int version_id)
|
2013-10-14 19:01:20 +04:00
|
|
|
{
|
|
|
|
PIIX4PMState *s = opaque;
|
2023-03-02 19:15:42 +03:00
|
|
|
return !s->acpi_pci_hotplug.use_acpi_hotplug_bridge;
|
2013-10-14 19:01:20 +04:00
|
|
|
}
|
|
|
|
|
2014-06-02 17:25:23 +04:00
|
|
|
static bool vmstate_test_use_memhp(void *opaque)
|
|
|
|
{
|
|
|
|
PIIX4PMState *s = opaque;
|
|
|
|
return s->acpi_memory_hotplug.is_enabled;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const VMStateDescription vmstate_memhp_state = {
|
|
|
|
.name = "piix4_pm/memhp",
|
|
|
|
.version_id = 1,
|
|
|
|
.minimum_version_id = 1,
|
2014-09-23 16:09:54 +04:00
|
|
|
.needed = vmstate_test_use_memhp,
|
2014-06-02 17:25:23 +04:00
|
|
|
.fields = (VMStateField[]) {
|
|
|
|
VMSTATE_MEMORY_HOTPLUG(acpi_memory_hotplug, PIIX4PMState),
|
|
|
|
VMSTATE_END_OF_LIST()
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2016-06-15 12:25:23 +03:00
|
|
|
static bool vmstate_test_use_cpuhp(void *opaque)
|
|
|
|
{
|
|
|
|
PIIX4PMState *s = opaque;
|
|
|
|
return !s->cpu_hotplug_legacy;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int vmstate_cpuhp_pre_load(void *opaque)
|
|
|
|
{
|
|
|
|
Object *obj = OBJECT(opaque);
|
qom: Put name parameter before value / visitor parameter
The object_property_set_FOO() setters take property name and value in
an unusual order:
void object_property_set_FOO(Object *obj, FOO_TYPE value,
const char *name, Error **errp)
Having to pass value before name feels grating. Swap them.
Same for object_property_set(), object_property_get(), and
object_property_parse().
Convert callers with this Coccinelle script:
@@
identifier fun = {
object_property_get, object_property_parse, object_property_set_str,
object_property_set_link, object_property_set_bool,
object_property_set_int, object_property_set_uint, object_property_set,
object_property_set_qobject
};
expression obj, v, name, errp;
@@
- fun(obj, v, name, errp)
+ fun(obj, name, v, errp)
Chokes on hw/arm/musicpal.c's lcd_refresh() with the unhelpful error
message "no position information". Convert that one manually.
Fails to convert hw/arm/armsse.c, because Coccinelle gets confused by
ARMSSE being used both as typedef and function-like macro there.
Convert manually.
Fails to convert hw/rx/rx-gdbsim.c, because Coccinelle gets confused
by RXCPU being used both as typedef and function-like macro there.
Convert manually. The other files using RXCPU that way don't need
conversion.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Reviewed-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
Message-Id: <20200707160613.848843-27-armbru@redhat.com>
[Straightforwad conflict with commit 2336172d9b "audio: set default
value for pcspk.iobase property" resolved]
2020-07-07 19:05:54 +03:00
|
|
|
object_property_set_bool(obj, "cpu-hotplug-legacy", false, &error_abort);
|
2016-06-15 12:25:23 +03:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const VMStateDescription vmstate_cpuhp_state = {
|
|
|
|
.name = "piix4_pm/cpuhp",
|
|
|
|
.version_id = 1,
|
|
|
|
.minimum_version_id = 1,
|
|
|
|
.needed = vmstate_test_use_cpuhp,
|
|
|
|
.pre_load = vmstate_cpuhp_pre_load,
|
|
|
|
.fields = (VMStateField[]) {
|
|
|
|
VMSTATE_CPU_HOTPLUG(cpuhp_state, PIIX4PMState),
|
|
|
|
VMSTATE_END_OF_LIST()
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2016-12-22 21:28:23 +03:00
|
|
|
static bool piix4_vmstate_need_smbus(void *opaque, int version_id)
|
|
|
|
{
|
|
|
|
return pm_smbus_vmstate_needed();
|
|
|
|
}
|
|
|
|
|
2022-04-06 21:58:12 +03:00
|
|
|
/*
|
|
|
|
* This is a fudge to turn off the acpi_index field,
|
|
|
|
* whose test was always broken on piix4 with 6.2 and older machine types.
|
|
|
|
*/
|
|
|
|
static bool vmstate_test_migrate_acpi_index(void *opaque, int version_id)
|
|
|
|
{
|
|
|
|
PIIX4PMState *s = PIIX4_PM(opaque);
|
2023-03-02 19:15:42 +03:00
|
|
|
return s->acpi_pci_hotplug.use_acpi_hotplug_bridge &&
|
|
|
|
!s->not_migrate_acpi_index;
|
2022-04-06 21:58:12 +03:00
|
|
|
}
|
|
|
|
|
2012-10-31 03:14:19 +04:00
|
|
|
/* qemu-kvm 1.2 uses version 3 but advertised as 2
|
|
|
|
* To support incoming qemu-kvm 1.2 migration, change version_id
|
|
|
|
* and minimum_version_id to 2 below (which breaks migration from
|
|
|
|
* qemu 1.2).
|
|
|
|
*
|
|
|
|
*/
|
2010-05-14 11:29:02 +04:00
|
|
|
static const VMStateDescription vmstate_acpi = {
|
|
|
|
.name = "piix4_pm",
|
2012-10-31 03:14:19 +04:00
|
|
|
.version_id = 3,
|
|
|
|
.minimum_version_id = 3,
|
2010-05-14 11:29:02 +04:00
|
|
|
.post_load = vmstate_acpi_post_load,
|
2014-04-16 17:32:32 +04:00
|
|
|
.fields = (VMStateField[]) {
|
2013-06-30 16:40:37 +04:00
|
|
|
VMSTATE_PCI_DEVICE(parent_obj, PIIX4PMState),
|
2012-02-23 16:45:16 +04:00
|
|
|
VMSTATE_UINT16(ar.pm1.evt.sts, PIIX4PMState),
|
|
|
|
VMSTATE_UINT16(ar.pm1.evt.en, PIIX4PMState),
|
|
|
|
VMSTATE_UINT16(ar.pm1.cnt.cnt, PIIX4PMState),
|
2010-05-14 11:29:02 +04:00
|
|
|
VMSTATE_STRUCT(apm, PIIX4PMState, 0, vmstate_apm, APMState),
|
2016-12-22 21:28:23 +03:00
|
|
|
VMSTATE_STRUCT_TEST(smb, PIIX4PMState, piix4_vmstate_need_smbus, 3,
|
|
|
|
pmsmb_vmstate, PMSMBus),
|
2015-01-08 12:18:59 +03:00
|
|
|
VMSTATE_TIMER_PTR(ar.tmr.timer, PIIX4PMState),
|
2012-02-23 16:45:16 +04:00
|
|
|
VMSTATE_INT64(ar.tmr.overflow_time, PIIX4PMState),
|
|
|
|
VMSTATE_STRUCT(ar.gpe, PIIX4PMState, 2, vmstate_gpe, ACPIGPE),
|
2014-02-03 14:45:01 +04:00
|
|
|
VMSTATE_STRUCT_TEST(
|
|
|
|
acpi_pci_hotplug.acpi_pcihp_pci_status[ACPI_PCIHP_BSEL_DEFAULT],
|
|
|
|
PIIX4PMState,
|
2020-06-16 15:31:39 +03:00
|
|
|
vmstate_test_no_use_acpi_hotplug_bridge,
|
2014-02-03 14:45:01 +04:00
|
|
|
2, vmstate_pci_status,
|
|
|
|
struct AcpiPciHpPciStatus),
|
2013-10-14 19:01:20 +04:00
|
|
|
VMSTATE_PCI_HOTPLUG(acpi_pci_hotplug, PIIX4PMState,
|
pci: introduce acpi-index property for PCI device
In x86/ACPI world, linux distros are using predictable
network interface naming since systemd v197. Which on
QEMU based VMs results into path based naming scheme,
that names network interfaces based on PCI topology.
With itm on has to plug NIC in exactly the same bus/slot,
which was used when disk image was first provisioned/configured
or one risks to loose network configuration due to NIC being
renamed to actually used topology.
That also restricts freedom to reshape PCI configuration of
VM without need to reconfigure used guest image.
systemd also offers "onboard" naming scheme which is
preferred over PCI slot/topology one, provided that
firmware implements:
"
PCI Firmware Specification 3.1
4.6.7. DSM for Naming a PCI or PCI Express Device Under
Operating Systems
"
that allows to assign user defined index to PCI device,
which systemd will use to name NIC. For example, using
-device e1000,acpi-index=100
guest will rename NIC to 'eno100', where 'eno' is default
prefix for "onboard" naming scheme. This doesn't require
any advance configuration on guest side to com in effect
at 'onboard' scheme takes priority over path based naming.
Hope is that 'acpi-index' it will be easier to consume by
management layer, compared to forcing specific PCI topology
and/or having several disk image templates for different
topologies and will help to simplify process of spawning
VM from the same template without need to reconfigure
guest NIC.
This patch adds, 'acpi-index'* property and wires up
a 32bit register on top of pci hotplug register block
to pass index value to AML code at runtime.
Following patch will add corresponding _DSM code and
wire it up to PCI devices described in ACPI.
*) name comes from linux kernel terminology
Signed-off-by: Igor Mammedov <imammedo@redhat.com>
Message-Id: <20210315180102.3008391-3-imammedo@redhat.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
2021-03-15 21:00:58 +03:00
|
|
|
vmstate_test_use_acpi_hotplug_bridge,
|
2022-04-06 21:58:12 +03:00
|
|
|
vmstate_test_migrate_acpi_index),
|
2010-05-14 11:29:02 +04:00
|
|
|
VMSTATE_END_OF_LIST()
|
2014-06-02 17:25:23 +04:00
|
|
|
},
|
2014-09-23 16:09:54 +04:00
|
|
|
.subsections = (const VMStateDescription*[]) {
|
|
|
|
&vmstate_memhp_state,
|
2016-06-15 12:25:23 +03:00
|
|
|
&vmstate_cpuhp_state,
|
2014-09-23 16:09:54 +04:00
|
|
|
NULL
|
2010-05-14 11:29:02 +04:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-10-10 16:15:20 +03:00
|
|
|
static void piix4_pm_reset(DeviceState *dev)
|
2010-05-14 11:29:02 +04:00
|
|
|
{
|
2019-10-10 16:15:20 +03:00
|
|
|
PIIX4PMState *s = PIIX4_PM(dev);
|
2013-06-30 16:40:37 +04:00
|
|
|
PCIDevice *d = PCI_DEVICE(s);
|
|
|
|
uint8_t *pci_conf = d->config;
|
2010-05-14 11:29:02 +04:00
|
|
|
|
|
|
|
pci_conf[0x58] = 0;
|
|
|
|
pci_conf[0x59] = 0;
|
|
|
|
pci_conf[0x5a] = 0;
|
|
|
|
pci_conf[0x5b] = 0;
|
|
|
|
|
2012-08-07 16:52:03 +04:00
|
|
|
pci_conf[0x40] = 0x01; /* PM io base read only bit */
|
|
|
|
pci_conf[0x80] = 0;
|
|
|
|
|
2015-06-18 19:30:17 +03:00
|
|
|
if (!s->smm_enabled) {
|
2010-05-14 11:29:02 +04:00
|
|
|
/* Mark SMM as already inited (until KVM supports SMM). */
|
|
|
|
pci_conf[0x5B] = 0x02;
|
|
|
|
}
|
2021-03-23 23:52:24 +03:00
|
|
|
|
|
|
|
acpi_pm1_evt_reset(&s->ar);
|
|
|
|
acpi_pm1_cnt_reset(&s->ar);
|
|
|
|
acpi_pm_tmr_reset(&s->ar);
|
|
|
|
acpi_gpe_reset(&s->ar);
|
|
|
|
acpi_update_sci(&s->ar, s->irq);
|
|
|
|
|
2013-09-11 14:33:31 +04:00
|
|
|
pm_io_space_update(s);
|
2023-03-02 19:15:42 +03:00
|
|
|
if (s->acpi_pci_hotplug.use_acpi_hotplug_bridge ||
|
|
|
|
s->acpi_pci_hotplug.use_acpi_root_pci_hotplug) {
|
|
|
|
acpi_pcihp_reset(&s->acpi_pci_hotplug);
|
2023-01-12 17:02:42 +03:00
|
|
|
}
|
2010-05-14 11:29:02 +04:00
|
|
|
}
|
|
|
|
|
2012-09-06 01:06:22 +04:00
|
|
|
static void piix4_pm_powerdown_req(Notifier *n, void *opaque)
|
2010-05-14 11:29:02 +04:00
|
|
|
{
|
2012-09-06 01:06:22 +04:00
|
|
|
PIIX4PMState *s = container_of(n, PIIX4PMState, powerdown_notifier);
|
2010-05-14 11:29:02 +04:00
|
|
|
|
2012-02-23 16:45:16 +04:00
|
|
|
assert(s != NULL);
|
|
|
|
acpi_pm1_evt_power_down(&s->ar);
|
2010-05-14 11:29:02 +04:00
|
|
|
}
|
|
|
|
|
2018-12-12 12:16:17 +03:00
|
|
|
static void piix4_device_pre_plug_cb(HotplugHandler *hotplug_dev,
|
|
|
|
DeviceState *dev, Error **errp)
|
|
|
|
{
|
2019-03-01 06:35:48 +03:00
|
|
|
PIIX4PMState *s = PIIX4_PM(hotplug_dev);
|
|
|
|
|
2018-12-12 12:16:17 +03:00
|
|
|
if (object_dynamic_cast(OBJECT(dev), TYPE_PCI_DEVICE)) {
|
|
|
|
acpi_pcihp_device_pre_plug_cb(hotplug_dev, dev, errp);
|
2019-03-01 06:35:48 +03:00
|
|
|
} else if (object_dynamic_cast(OBJECT(dev), TYPE_PC_DIMM)) {
|
|
|
|
if (!s->acpi_memory_hotplug.is_enabled) {
|
|
|
|
error_setg(errp,
|
|
|
|
"memory hotplug is not enabled: %s.memory-hotplug-support "
|
|
|
|
"is not set", object_get_typename(OBJECT(s)));
|
|
|
|
}
|
|
|
|
} else if (
|
2018-12-12 12:16:17 +03:00
|
|
|
!object_dynamic_cast(OBJECT(dev), TYPE_CPU)) {
|
|
|
|
error_setg(errp, "acpi: device pre plug request for not supported"
|
|
|
|
" device type: %s", object_get_typename(OBJECT(dev)));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-06-02 17:25:19 +04:00
|
|
|
static void piix4_device_plug_cb(HotplugHandler *hotplug_dev,
|
|
|
|
DeviceState *dev, Error **errp)
|
2013-10-14 19:01:20 +04:00
|
|
|
{
|
2014-02-05 19:36:49 +04:00
|
|
|
PIIX4PMState *s = PIIX4_PM(hotplug_dev);
|
2014-06-02 17:25:19 +04:00
|
|
|
|
2019-03-01 06:35:48 +03:00
|
|
|
if (object_dynamic_cast(OBJECT(dev), TYPE_PC_DIMM)) {
|
2016-11-07 14:13:38 +03:00
|
|
|
if (object_dynamic_cast(OBJECT(dev), TYPE_NVDIMM)) {
|
|
|
|
nvdimm_acpi_plug_cb(hotplug_dev, dev);
|
|
|
|
} else {
|
|
|
|
acpi_memory_plug_cb(hotplug_dev, &s->acpi_memory_hotplug,
|
|
|
|
dev, errp);
|
|
|
|
}
|
2014-06-02 17:25:20 +04:00
|
|
|
} else if (object_dynamic_cast(OBJECT(dev), TYPE_PCI_DEVICE)) {
|
2017-09-06 16:40:33 +03:00
|
|
|
acpi_pcihp_device_plug_cb(hotplug_dev, &s->acpi_pci_hotplug, dev, errp);
|
2016-06-14 17:02:06 +03:00
|
|
|
} else if (object_dynamic_cast(OBJECT(dev), TYPE_CPU)) {
|
|
|
|
if (s->cpu_hotplug_legacy) {
|
|
|
|
legacy_acpi_cpu_plug_cb(hotplug_dev, &s->gpe_cpu, dev, errp);
|
|
|
|
} else {
|
|
|
|
acpi_cpu_plug_cb(hotplug_dev, &s->cpuhp_state, dev, errp);
|
|
|
|
}
|
2014-06-02 17:25:19 +04:00
|
|
|
} else {
|
2018-12-12 12:16:17 +03:00
|
|
|
g_assert_not_reached();
|
2014-06-02 17:25:19 +04:00
|
|
|
}
|
2014-02-05 19:36:49 +04:00
|
|
|
}
|
2013-10-14 19:01:20 +04:00
|
|
|
|
2014-09-26 13:28:19 +04:00
|
|
|
static void piix4_device_unplug_request_cb(HotplugHandler *hotplug_dev,
|
|
|
|
DeviceState *dev, Error **errp)
|
2014-02-05 19:36:49 +04:00
|
|
|
{
|
|
|
|
PIIX4PMState *s = PIIX4_PM(hotplug_dev);
|
2014-06-02 17:25:19 +04:00
|
|
|
|
2015-04-27 11:47:17 +03:00
|
|
|
if (s->acpi_memory_hotplug.is_enabled &&
|
|
|
|
object_dynamic_cast(OBJECT(dev), TYPE_PC_DIMM)) {
|
2016-05-31 13:01:17 +03:00
|
|
|
acpi_memory_unplug_request_cb(hotplug_dev, &s->acpi_memory_hotplug,
|
2015-04-27 11:47:17 +03:00
|
|
|
dev, errp);
|
|
|
|
} else if (object_dynamic_cast(OBJECT(dev), TYPE_PCI_DEVICE)) {
|
2018-12-12 12:16:19 +03:00
|
|
|
acpi_pcihp_device_unplug_request_cb(hotplug_dev, &s->acpi_pci_hotplug,
|
|
|
|
dev, errp);
|
2016-06-14 17:14:02 +03:00
|
|
|
} else if (object_dynamic_cast(OBJECT(dev), TYPE_CPU) &&
|
|
|
|
!s->cpu_hotplug_legacy) {
|
|
|
|
acpi_cpu_unplug_request_cb(hotplug_dev, &s->cpuhp_state, dev, errp);
|
2014-06-02 17:25:19 +04:00
|
|
|
} else {
|
|
|
|
error_setg(errp, "acpi: device unplug request for not supported device"
|
|
|
|
" type: %s", object_get_typename(OBJECT(dev)));
|
|
|
|
}
|
2013-10-14 19:01:20 +04:00
|
|
|
}
|
|
|
|
|
2015-01-28 10:45:41 +03:00
|
|
|
static void piix4_device_unplug_cb(HotplugHandler *hotplug_dev,
|
|
|
|
DeviceState *dev, Error **errp)
|
|
|
|
{
|
2015-04-27 11:47:18 +03:00
|
|
|
PIIX4PMState *s = PIIX4_PM(hotplug_dev);
|
|
|
|
|
|
|
|
if (s->acpi_memory_hotplug.is_enabled &&
|
|
|
|
object_dynamic_cast(OBJECT(dev), TYPE_PC_DIMM)) {
|
|
|
|
acpi_memory_unplug_cb(&s->acpi_memory_hotplug, dev, errp);
|
2018-12-12 12:16:19 +03:00
|
|
|
} else if (object_dynamic_cast(OBJECT(dev), TYPE_PCI_DEVICE)) {
|
|
|
|
acpi_pcihp_device_unplug_cb(hotplug_dev, &s->acpi_pci_hotplug, dev,
|
|
|
|
errp);
|
2016-06-14 17:14:02 +03:00
|
|
|
} else if (object_dynamic_cast(OBJECT(dev), TYPE_CPU) &&
|
|
|
|
!s->cpu_hotplug_legacy) {
|
|
|
|
acpi_cpu_unplug_cb(&s->cpuhp_state, dev, errp);
|
2015-04-27 11:47:18 +03:00
|
|
|
} else {
|
|
|
|
error_setg(errp, "acpi: device unplug for not supported device"
|
|
|
|
" type: %s", object_get_typename(OBJECT(dev)));
|
|
|
|
}
|
2015-01-28 10:45:41 +03:00
|
|
|
}
|
|
|
|
|
2023-03-02 19:15:43 +03:00
|
|
|
static bool piix4_is_hotpluggable_bus(HotplugHandler *hotplug_dev,
|
|
|
|
BusState *bus)
|
|
|
|
{
|
|
|
|
PIIX4PMState *s = PIIX4_PM(hotplug_dev);
|
|
|
|
return acpi_pcihp_is_hotpluggbale_bus(&s->acpi_pci_hotplug, bus);
|
|
|
|
}
|
|
|
|
|
2011-06-20 16:06:26 +04:00
|
|
|
static void piix4_pm_machine_ready(Notifier *n, void *opaque)
|
2011-07-15 19:10:15 +04:00
|
|
|
{
|
|
|
|
PIIX4PMState *s = container_of(n, PIIX4PMState, machine_ready);
|
2013-06-30 16:40:37 +04:00
|
|
|
PCIDevice *d = PCI_DEVICE(s);
|
|
|
|
MemoryRegion *io_as = pci_address_space_io(d);
|
2011-07-15 19:10:15 +04:00
|
|
|
uint8_t *pci_conf;
|
|
|
|
|
2013-06-30 16:40:37 +04:00
|
|
|
pci_conf = d->config;
|
2013-06-22 10:07:01 +04:00
|
|
|
pci_conf[0x5f] = 0x10 |
|
2013-07-02 15:40:48 +04:00
|
|
|
(memory_region_present(io_as, 0x378) ? 0x80 : 0);
|
2011-07-15 19:10:15 +04:00
|
|
|
pci_conf[0x63] = 0x60;
|
2013-07-02 15:40:48 +04:00
|
|
|
pci_conf[0x67] = (memory_region_present(io_as, 0x3f8) ? 0x08 : 0) |
|
|
|
|
(memory_region_present(io_as, 0x2f8) ? 0x90 : 0);
|
2011-07-15 19:10:15 +04:00
|
|
|
}
|
|
|
|
|
2020-10-02 19:06:07 +03:00
|
|
|
static void piix4_pm_add_properties(PIIX4PMState *s)
|
2013-07-24 19:56:11 +04:00
|
|
|
{
|
|
|
|
static const uint8_t acpi_enable_cmd = ACPI_ENABLE;
|
|
|
|
static const uint8_t acpi_disable_cmd = ACPI_DISABLE;
|
|
|
|
static const uint32_t gpe0_blk = GPE_BASE;
|
|
|
|
static const uint32_t gpe0_blk_len = GPE_LEN;
|
|
|
|
static const uint16_t sci_int = 9;
|
|
|
|
|
|
|
|
object_property_add_uint8_ptr(OBJECT(s), ACPI_PM_PROP_ACPI_ENABLE_CMD,
|
qom: Drop parameter @errp of object_property_add() & friends
The only way object_property_add() can fail is when a property with
the same name already exists. Since our property names are all
hardcoded, failure is a programming error, and the appropriate way to
handle it is passing &error_abort.
Same for its variants, except for object_property_add_child(), which
additionally fails when the child already has a parent. Parentage is
also under program control, so this is a programming error, too.
We have a bit over 500 callers. Almost half of them pass
&error_abort, slightly fewer ignore errors, one test case handles
errors, and the remaining few callers pass them to their own callers.
The previous few commits demonstrated once again that ignoring
programming errors is a bad idea.
Of the few ones that pass on errors, several violate the Error API.
The Error ** argument must be NULL, &error_abort, &error_fatal, or a
pointer to a variable containing NULL. Passing an argument of the
latter kind twice without clearing it in between is wrong: if the
first call sets an error, it no longer points to NULL for the second
call. ich9_pm_add_properties(), sparc32_ledma_realize(),
sparc32_dma_realize(), xilinx_axidma_realize(), xilinx_enet_realize()
are wrong that way.
When the one appropriate choice of argument is &error_abort, letting
users pick the argument is a bad idea.
Drop parameter @errp and assert the preconditions instead.
There's one exception to "duplicate property name is a programming
error": the way object_property_add() implements the magic (and
undocumented) "automatic arrayification". Don't drop @errp there.
Instead, rename object_property_add() to object_property_try_add(),
and add the obvious wrapper object_property_add().
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Reviewed-by: Paolo Bonzini <pbonzini@redhat.com>
Message-Id: <20200505152926.18877-15-armbru@redhat.com>
[Two semantic rebase conflicts resolved]
2020-05-05 18:29:22 +03:00
|
|
|
&acpi_enable_cmd, OBJ_PROP_FLAG_READ);
|
2013-07-24 19:56:11 +04:00
|
|
|
object_property_add_uint8_ptr(OBJECT(s), ACPI_PM_PROP_ACPI_DISABLE_CMD,
|
qom: Drop parameter @errp of object_property_add() & friends
The only way object_property_add() can fail is when a property with
the same name already exists. Since our property names are all
hardcoded, failure is a programming error, and the appropriate way to
handle it is passing &error_abort.
Same for its variants, except for object_property_add_child(), which
additionally fails when the child already has a parent. Parentage is
also under program control, so this is a programming error, too.
We have a bit over 500 callers. Almost half of them pass
&error_abort, slightly fewer ignore errors, one test case handles
errors, and the remaining few callers pass them to their own callers.
The previous few commits demonstrated once again that ignoring
programming errors is a bad idea.
Of the few ones that pass on errors, several violate the Error API.
The Error ** argument must be NULL, &error_abort, &error_fatal, or a
pointer to a variable containing NULL. Passing an argument of the
latter kind twice without clearing it in between is wrong: if the
first call sets an error, it no longer points to NULL for the second
call. ich9_pm_add_properties(), sparc32_ledma_realize(),
sparc32_dma_realize(), xilinx_axidma_realize(), xilinx_enet_realize()
are wrong that way.
When the one appropriate choice of argument is &error_abort, letting
users pick the argument is a bad idea.
Drop parameter @errp and assert the preconditions instead.
There's one exception to "duplicate property name is a programming
error": the way object_property_add() implements the magic (and
undocumented) "automatic arrayification". Don't drop @errp there.
Instead, rename object_property_add() to object_property_try_add(),
and add the obvious wrapper object_property_add().
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Reviewed-by: Paolo Bonzini <pbonzini@redhat.com>
Message-Id: <20200505152926.18877-15-armbru@redhat.com>
[Two semantic rebase conflicts resolved]
2020-05-05 18:29:22 +03:00
|
|
|
&acpi_disable_cmd, OBJ_PROP_FLAG_READ);
|
2013-07-24 19:56:11 +04:00
|
|
|
object_property_add_uint32_ptr(OBJECT(s), ACPI_PM_PROP_GPE0_BLK,
|
qom: Drop parameter @errp of object_property_add() & friends
The only way object_property_add() can fail is when a property with
the same name already exists. Since our property names are all
hardcoded, failure is a programming error, and the appropriate way to
handle it is passing &error_abort.
Same for its variants, except for object_property_add_child(), which
additionally fails when the child already has a parent. Parentage is
also under program control, so this is a programming error, too.
We have a bit over 500 callers. Almost half of them pass
&error_abort, slightly fewer ignore errors, one test case handles
errors, and the remaining few callers pass them to their own callers.
The previous few commits demonstrated once again that ignoring
programming errors is a bad idea.
Of the few ones that pass on errors, several violate the Error API.
The Error ** argument must be NULL, &error_abort, &error_fatal, or a
pointer to a variable containing NULL. Passing an argument of the
latter kind twice without clearing it in between is wrong: if the
first call sets an error, it no longer points to NULL for the second
call. ich9_pm_add_properties(), sparc32_ledma_realize(),
sparc32_dma_realize(), xilinx_axidma_realize(), xilinx_enet_realize()
are wrong that way.
When the one appropriate choice of argument is &error_abort, letting
users pick the argument is a bad idea.
Drop parameter @errp and assert the preconditions instead.
There's one exception to "duplicate property name is a programming
error": the way object_property_add() implements the magic (and
undocumented) "automatic arrayification". Don't drop @errp there.
Instead, rename object_property_add() to object_property_try_add(),
and add the obvious wrapper object_property_add().
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Reviewed-by: Paolo Bonzini <pbonzini@redhat.com>
Message-Id: <20200505152926.18877-15-armbru@redhat.com>
[Two semantic rebase conflicts resolved]
2020-05-05 18:29:22 +03:00
|
|
|
&gpe0_blk, OBJ_PROP_FLAG_READ);
|
2013-07-24 19:56:11 +04:00
|
|
|
object_property_add_uint32_ptr(OBJECT(s), ACPI_PM_PROP_GPE0_BLK_LEN,
|
qom: Drop parameter @errp of object_property_add() & friends
The only way object_property_add() can fail is when a property with
the same name already exists. Since our property names are all
hardcoded, failure is a programming error, and the appropriate way to
handle it is passing &error_abort.
Same for its variants, except for object_property_add_child(), which
additionally fails when the child already has a parent. Parentage is
also under program control, so this is a programming error, too.
We have a bit over 500 callers. Almost half of them pass
&error_abort, slightly fewer ignore errors, one test case handles
errors, and the remaining few callers pass them to their own callers.
The previous few commits demonstrated once again that ignoring
programming errors is a bad idea.
Of the few ones that pass on errors, several violate the Error API.
The Error ** argument must be NULL, &error_abort, &error_fatal, or a
pointer to a variable containing NULL. Passing an argument of the
latter kind twice without clearing it in between is wrong: if the
first call sets an error, it no longer points to NULL for the second
call. ich9_pm_add_properties(), sparc32_ledma_realize(),
sparc32_dma_realize(), xilinx_axidma_realize(), xilinx_enet_realize()
are wrong that way.
When the one appropriate choice of argument is &error_abort, letting
users pick the argument is a bad idea.
Drop parameter @errp and assert the preconditions instead.
There's one exception to "duplicate property name is a programming
error": the way object_property_add() implements the magic (and
undocumented) "automatic arrayification". Don't drop @errp there.
Instead, rename object_property_add() to object_property_try_add(),
and add the obvious wrapper object_property_add().
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Reviewed-by: Paolo Bonzini <pbonzini@redhat.com>
Message-Id: <20200505152926.18877-15-armbru@redhat.com>
[Two semantic rebase conflicts resolved]
2020-05-05 18:29:22 +03:00
|
|
|
&gpe0_blk_len, OBJ_PROP_FLAG_READ);
|
2013-07-24 19:56:11 +04:00
|
|
|
object_property_add_uint16_ptr(OBJECT(s), ACPI_PM_PROP_SCI_INT,
|
qom: Drop parameter @errp of object_property_add() & friends
The only way object_property_add() can fail is when a property with
the same name already exists. Since our property names are all
hardcoded, failure is a programming error, and the appropriate way to
handle it is passing &error_abort.
Same for its variants, except for object_property_add_child(), which
additionally fails when the child already has a parent. Parentage is
also under program control, so this is a programming error, too.
We have a bit over 500 callers. Almost half of them pass
&error_abort, slightly fewer ignore errors, one test case handles
errors, and the remaining few callers pass them to their own callers.
The previous few commits demonstrated once again that ignoring
programming errors is a bad idea.
Of the few ones that pass on errors, several violate the Error API.
The Error ** argument must be NULL, &error_abort, &error_fatal, or a
pointer to a variable containing NULL. Passing an argument of the
latter kind twice without clearing it in between is wrong: if the
first call sets an error, it no longer points to NULL for the second
call. ich9_pm_add_properties(), sparc32_ledma_realize(),
sparc32_dma_realize(), xilinx_axidma_realize(), xilinx_enet_realize()
are wrong that way.
When the one appropriate choice of argument is &error_abort, letting
users pick the argument is a bad idea.
Drop parameter @errp and assert the preconditions instead.
There's one exception to "duplicate property name is a programming
error": the way object_property_add() implements the magic (and
undocumented) "automatic arrayification". Don't drop @errp there.
Instead, rename object_property_add() to object_property_try_add(),
and add the obvious wrapper object_property_add().
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Reviewed-by: Paolo Bonzini <pbonzini@redhat.com>
Message-Id: <20200505152926.18877-15-armbru@redhat.com>
[Two semantic rebase conflicts resolved]
2020-05-05 18:29:22 +03:00
|
|
|
&sci_int, OBJ_PROP_FLAG_READ);
|
2013-07-24 19:56:11 +04:00
|
|
|
object_property_add_uint32_ptr(OBJECT(s), ACPI_PM_PROP_PM_IO_BASE,
|
qom: Drop parameter @errp of object_property_add() & friends
The only way object_property_add() can fail is when a property with
the same name already exists. Since our property names are all
hardcoded, failure is a programming error, and the appropriate way to
handle it is passing &error_abort.
Same for its variants, except for object_property_add_child(), which
additionally fails when the child already has a parent. Parentage is
also under program control, so this is a programming error, too.
We have a bit over 500 callers. Almost half of them pass
&error_abort, slightly fewer ignore errors, one test case handles
errors, and the remaining few callers pass them to their own callers.
The previous few commits demonstrated once again that ignoring
programming errors is a bad idea.
Of the few ones that pass on errors, several violate the Error API.
The Error ** argument must be NULL, &error_abort, &error_fatal, or a
pointer to a variable containing NULL. Passing an argument of the
latter kind twice without clearing it in between is wrong: if the
first call sets an error, it no longer points to NULL for the second
call. ich9_pm_add_properties(), sparc32_ledma_realize(),
sparc32_dma_realize(), xilinx_axidma_realize(), xilinx_enet_realize()
are wrong that way.
When the one appropriate choice of argument is &error_abort, letting
users pick the argument is a bad idea.
Drop parameter @errp and assert the preconditions instead.
There's one exception to "duplicate property name is a programming
error": the way object_property_add() implements the magic (and
undocumented) "automatic arrayification". Don't drop @errp there.
Instead, rename object_property_add() to object_property_try_add(),
and add the obvious wrapper object_property_add().
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Reviewed-by: Paolo Bonzini <pbonzini@redhat.com>
Message-Id: <20200505152926.18877-15-armbru@redhat.com>
[Two semantic rebase conflicts resolved]
2020-05-05 18:29:22 +03:00
|
|
|
&s->io_base, OBJ_PROP_FLAG_READ);
|
2013-07-24 19:56:11 +04:00
|
|
|
}
|
|
|
|
|
2015-01-19 17:52:30 +03:00
|
|
|
static void piix4_pm_realize(PCIDevice *dev, Error **errp)
|
2010-05-14 11:29:02 +04:00
|
|
|
{
|
2013-06-24 10:57:14 +04:00
|
|
|
PIIX4PMState *s = PIIX4_PM(dev);
|
2010-05-14 11:29:02 +04:00
|
|
|
uint8_t *pci_conf;
|
|
|
|
|
2013-06-30 16:40:37 +04:00
|
|
|
pci_conf = dev->config;
|
2010-05-14 11:29:02 +04:00
|
|
|
pci_conf[0x06] = 0x80;
|
|
|
|
pci_conf[0x07] = 0x02;
|
|
|
|
pci_conf[0x09] = 0x00;
|
|
|
|
pci_conf[0x3d] = 0x01; // interrupt pin 1
|
|
|
|
|
|
|
|
/* APM */
|
2012-09-19 15:50:03 +04:00
|
|
|
apm_init(dev, &s->apm, apm_ctrl_changed, s);
|
2010-05-14 11:29:02 +04:00
|
|
|
|
2015-06-18 19:30:17 +03:00
|
|
|
if (!s->smm_enabled) {
|
2010-05-14 11:29:02 +04:00
|
|
|
/* Mark SMM as already inited to prevent SMM from running. KVM does not
|
|
|
|
* support SMM mode. */
|
|
|
|
pci_conf[0x5B] = 0x02;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* XXX: which specification is used ? The i82731AB has different
|
|
|
|
mappings */
|
2010-05-14 11:29:18 +04:00
|
|
|
pci_conf[0x90] = s->smb_io_base | 1;
|
|
|
|
pci_conf[0x91] = s->smb_io_base >> 8;
|
2010-05-14 11:29:02 +04:00
|
|
|
pci_conf[0xd2] = 0x09;
|
2018-08-20 23:26:08 +03:00
|
|
|
pm_smbus_init(DEVICE(dev), &s->smb, true);
|
2012-11-23 17:58:04 +04:00
|
|
|
memory_region_set_enabled(&s->smb.io, pci_conf[0xd2] & 1);
|
2012-12-11 12:40:45 +04:00
|
|
|
memory_region_add_subregion(pci_address_space_io(dev),
|
|
|
|
s->smb_io_base, &s->smb.io);
|
2010-05-14 11:29:02 +04:00
|
|
|
|
2013-06-07 05:25:08 +04:00
|
|
|
memory_region_init(&s->io, OBJECT(s), "piix4-pm", 64);
|
2012-11-22 14:34:44 +04:00
|
|
|
memory_region_set_enabled(&s->io, false);
|
2012-12-11 12:40:45 +04:00
|
|
|
memory_region_add_subregion(pci_address_space_io(dev),
|
|
|
|
0, &s->io);
|
2010-05-14 11:29:02 +04:00
|
|
|
|
2012-11-22 15:12:30 +04:00
|
|
|
acpi_pm_tmr_init(&s->ar, pm_tmr_timer, &s->io);
|
2012-11-22 16:25:10 +04:00
|
|
|
acpi_pm1_evt_init(&s->ar, pm_tmr_timer, &s->io);
|
2021-02-18 08:51:12 +03:00
|
|
|
acpi_pm1_cnt_init(&s->ar, &s->io, s->disable_s3, s->disable_s4, s->s4_val,
|
|
|
|
!s->smm_compat && !s->smm_enabled);
|
2012-02-23 16:45:16 +04:00
|
|
|
acpi_gpe_init(&s->ar, GPE_LEN);
|
2010-05-14 11:29:02 +04:00
|
|
|
|
2012-09-06 01:06:22 +04:00
|
|
|
s->powerdown_notifier.notify = piix4_pm_powerdown_req;
|
|
|
|
qemu_register_powerdown_notifier(&s->powerdown_notifier);
|
2010-05-14 11:29:02 +04:00
|
|
|
|
2011-07-15 19:10:15 +04:00
|
|
|
s->machine_ready.notify = piix4_pm_machine_ready;
|
|
|
|
qemu_add_machine_init_done_notifier(&s->machine_ready);
|
2012-12-11 12:40:45 +04:00
|
|
|
|
2022-05-28 12:02:11 +03:00
|
|
|
if (xen_enabled()) {
|
2023-03-02 19:15:42 +03:00
|
|
|
s->acpi_pci_hotplug.use_acpi_hotplug_bridge = false;
|
2022-05-28 12:02:11 +03:00
|
|
|
}
|
|
|
|
|
2017-11-29 11:46:27 +03:00
|
|
|
piix4_acpi_system_hot_add_init(pci_address_space_io(dev),
|
|
|
|
pci_get_bus(dev), s);
|
2010-05-14 11:29:18 +04:00
|
|
|
|
2020-10-02 19:06:07 +03:00
|
|
|
piix4_pm_add_properties(s);
|
2010-05-14 11:29:18 +04:00
|
|
|
}
|
|
|
|
|
2022-05-28 12:02:11 +03:00
|
|
|
static void piix4_pm_init(Object *obj)
|
|
|
|
{
|
|
|
|
PIIX4PMState *s = PIIX4_PM(obj);
|
|
|
|
|
|
|
|
qdev_init_gpio_out(DEVICE(obj), &s->irq, 1);
|
2022-05-28 12:02:11 +03:00
|
|
|
qdev_init_gpio_out_named(DEVICE(obj), &s->smi_irq, "smi-irq", 1);
|
2022-05-28 12:02:11 +03:00
|
|
|
}
|
|
|
|
|
2012-11-23 18:35:13 +04:00
|
|
|
static uint64_t gpe_readb(void *opaque, hwaddr addr, unsigned width)
|
2010-05-14 11:29:02 +04:00
|
|
|
{
|
2010-10-17 13:45:25 +04:00
|
|
|
PIIX4PMState *s = opaque;
|
2012-02-23 16:45:16 +04:00
|
|
|
uint32_t val = acpi_gpe_ioport_readb(&s->ar, addr);
|
2010-05-14 11:29:02 +04:00
|
|
|
|
2019-04-02 19:18:58 +03:00
|
|
|
trace_piix4_gpe_readb(addr, width, val);
|
2010-05-14 11:29:02 +04:00
|
|
|
return val;
|
|
|
|
}
|
|
|
|
|
2012-11-23 18:35:13 +04:00
|
|
|
static void gpe_writeb(void *opaque, hwaddr addr, uint64_t val,
|
|
|
|
unsigned width)
|
2010-05-14 11:29:02 +04:00
|
|
|
{
|
2010-10-17 13:45:25 +04:00
|
|
|
PIIX4PMState *s = opaque;
|
|
|
|
|
2019-04-02 19:18:58 +03:00
|
|
|
trace_piix4_gpe_writeb(addr, width, val);
|
2012-02-23 16:45:16 +04:00
|
|
|
acpi_gpe_ioport_writeb(&s->ar, addr, val);
|
2013-12-13 20:22:07 +04:00
|
|
|
acpi_update_sci(&s->ar, s->irq);
|
2010-05-14 11:29:02 +04:00
|
|
|
}
|
|
|
|
|
2012-11-23 18:35:13 +04:00
|
|
|
static const MemoryRegionOps piix4_gpe_ops = {
|
|
|
|
.read = gpe_readb,
|
|
|
|
.write = gpe_writeb,
|
|
|
|
.valid.min_access_size = 1,
|
|
|
|
.valid.max_access_size = 4,
|
|
|
|
.impl.min_access_size = 1,
|
|
|
|
.impl.max_access_size = 1,
|
|
|
|
.endianness = DEVICE_LITTLE_ENDIAN,
|
|
|
|
};
|
|
|
|
|
2016-04-11 18:25:54 +03:00
|
|
|
|
|
|
|
static bool piix4_get_cpu_hotplug_legacy(Object *obj, Error **errp)
|
|
|
|
{
|
|
|
|
PIIX4PMState *s = PIIX4_PM(obj);
|
|
|
|
|
|
|
|
return s->cpu_hotplug_legacy;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void piix4_set_cpu_hotplug_legacy(Object *obj, bool value, Error **errp)
|
|
|
|
{
|
|
|
|
PIIX4PMState *s = PIIX4_PM(obj);
|
|
|
|
|
2016-06-15 12:25:23 +03:00
|
|
|
assert(!value);
|
|
|
|
if (s->cpu_hotplug_legacy && value == false) {
|
|
|
|
acpi_switch_to_modern_cphp(&s->gpe_cpu, &s->cpuhp_state,
|
|
|
|
PIIX4_CPU_HOTPLUG_IO_BASE);
|
|
|
|
}
|
2016-04-11 18:25:54 +03:00
|
|
|
s->cpu_hotplug_legacy = value;
|
|
|
|
}
|
|
|
|
|
2012-12-11 12:40:45 +04:00
|
|
|
static void piix4_acpi_system_hot_add_init(MemoryRegion *parent,
|
|
|
|
PCIBus *bus, PIIX4PMState *s)
|
2010-05-14 11:29:02 +04:00
|
|
|
{
|
2013-06-07 05:25:08 +04:00
|
|
|
memory_region_init_io(&s->io_gpe, OBJECT(s), &piix4_gpe_ops, s,
|
|
|
|
"acpi-gpe0", GPE_LEN);
|
2012-12-11 12:40:45 +04:00
|
|
|
memory_region_add_subregion(parent, GPE_BASE, &s->io_gpe);
|
2010-05-14 11:29:20 +04:00
|
|
|
|
2023-03-02 19:15:42 +03:00
|
|
|
if (s->acpi_pci_hotplug.use_acpi_hotplug_bridge ||
|
|
|
|
s->acpi_pci_hotplug.use_acpi_root_pci_hotplug) {
|
2020-09-18 11:41:08 +03:00
|
|
|
acpi_pcihp_init(OBJECT(s), &s->acpi_pci_hotplug, bus, parent,
|
2023-03-02 19:15:42 +03:00
|
|
|
ACPI_PCIHP_ADDR_PIIX4);
|
2023-03-02 19:15:20 +03:00
|
|
|
qbus_set_hotplug_handler(BUS(pci_get_bus(PCI_DEVICE(s))), OBJECT(s));
|
2020-09-18 11:41:08 +03:00
|
|
|
}
|
2013-04-25 18:05:25 +04:00
|
|
|
|
2016-04-11 18:25:54 +03:00
|
|
|
s->cpu_hotplug_legacy = true;
|
|
|
|
object_property_add_bool(OBJECT(s), "cpu-hotplug-legacy",
|
|
|
|
piix4_get_cpu_hotplug_legacy,
|
qom: Drop parameter @errp of object_property_add() & friends
The only way object_property_add() can fail is when a property with
the same name already exists. Since our property names are all
hardcoded, failure is a programming error, and the appropriate way to
handle it is passing &error_abort.
Same for its variants, except for object_property_add_child(), which
additionally fails when the child already has a parent. Parentage is
also under program control, so this is a programming error, too.
We have a bit over 500 callers. Almost half of them pass
&error_abort, slightly fewer ignore errors, one test case handles
errors, and the remaining few callers pass them to their own callers.
The previous few commits demonstrated once again that ignoring
programming errors is a bad idea.
Of the few ones that pass on errors, several violate the Error API.
The Error ** argument must be NULL, &error_abort, &error_fatal, or a
pointer to a variable containing NULL. Passing an argument of the
latter kind twice without clearing it in between is wrong: if the
first call sets an error, it no longer points to NULL for the second
call. ich9_pm_add_properties(), sparc32_ledma_realize(),
sparc32_dma_realize(), xilinx_axidma_realize(), xilinx_enet_realize()
are wrong that way.
When the one appropriate choice of argument is &error_abort, letting
users pick the argument is a bad idea.
Drop parameter @errp and assert the preconditions instead.
There's one exception to "duplicate property name is a programming
error": the way object_property_add() implements the magic (and
undocumented) "automatic arrayification". Don't drop @errp there.
Instead, rename object_property_add() to object_property_try_add(),
and add the obvious wrapper object_property_add().
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Reviewed-by: Paolo Bonzini <pbonzini@redhat.com>
Message-Id: <20200505152926.18877-15-armbru@redhat.com>
[Two semantic rebase conflicts resolved]
2020-05-05 18:29:22 +03:00
|
|
|
piix4_set_cpu_hotplug_legacy);
|
2016-05-17 17:43:00 +03:00
|
|
|
legacy_acpi_cpu_hotplug_init(parent, OBJECT(s), &s->gpe_cpu,
|
|
|
|
PIIX4_CPU_HOTPLUG_IO_BASE);
|
2014-06-02 17:25:20 +04:00
|
|
|
|
|
|
|
if (s->acpi_memory_hotplug.is_enabled) {
|
2016-12-06 02:32:28 +03:00
|
|
|
acpi_memory_hotplug_init(parent, OBJECT(s), &s->acpi_memory_hotplug,
|
|
|
|
ACPI_MEMORY_HOTPLUG_BASE);
|
2014-06-02 17:25:20 +04:00
|
|
|
}
|
2010-05-14 11:29:02 +04:00
|
|
|
}
|
2014-02-05 19:36:47 +04:00
|
|
|
|
2014-06-16 21:12:27 +04:00
|
|
|
static void piix4_ospm_status(AcpiDeviceIf *adev, ACPIOSTInfoList ***list)
|
|
|
|
{
|
|
|
|
PIIX4PMState *s = PIIX4_PM(adev);
|
|
|
|
|
|
|
|
acpi_memory_ospm_status(&s->acpi_memory_hotplug, list);
|
2016-04-22 20:06:36 +03:00
|
|
|
if (!s->cpu_hotplug_legacy) {
|
|
|
|
acpi_cpu_ospm_status(&s->cpuhp_state, list);
|
|
|
|
}
|
2014-06-16 21:12:27 +04:00
|
|
|
}
|
|
|
|
|
2016-05-31 12:57:57 +03:00
|
|
|
static void piix4_send_gpe(AcpiDeviceIf *adev, AcpiEventStatusBits ev)
|
|
|
|
{
|
|
|
|
PIIX4PMState *s = PIIX4_PM(adev);
|
|
|
|
|
|
|
|
acpi_send_gpe_event(&s->ar, s->irq, ev);
|
|
|
|
}
|
|
|
|
|
2014-02-05 19:36:47 +04:00
|
|
|
static Property piix4_pm_properties[] = {
|
|
|
|
DEFINE_PROP_UINT32("smb_io_base", PIIX4PMState, smb_io_base, 0),
|
|
|
|
DEFINE_PROP_UINT8(ACPI_PM_PROP_S3_DISABLED, PIIX4PMState, disable_s3, 0),
|
|
|
|
DEFINE_PROP_UINT8(ACPI_PM_PROP_S4_DISABLED, PIIX4PMState, disable_s4, 0),
|
|
|
|
DEFINE_PROP_UINT8(ACPI_PM_PROP_S4_VAL, PIIX4PMState, s4_val, 2),
|
2021-08-16 11:32:14 +03:00
|
|
|
DEFINE_PROP_BOOL(ACPI_PM_PROP_ACPI_PCIHP_BRIDGE, PIIX4PMState,
|
2023-03-02 19:15:42 +03:00
|
|
|
acpi_pci_hotplug.use_acpi_hotplug_bridge, true),
|
2021-08-16 11:32:14 +03:00
|
|
|
DEFINE_PROP_BOOL(ACPI_PM_PROP_ACPI_PCI_ROOTHP, PIIX4PMState,
|
2023-03-02 19:15:42 +03:00
|
|
|
acpi_pci_hotplug.use_acpi_root_pci_hotplug, true),
|
2014-06-02 17:25:20 +04:00
|
|
|
DEFINE_PROP_BOOL("memory-hotplug-support", PIIX4PMState,
|
|
|
|
acpi_memory_hotplug.is_enabled, true),
|
2021-02-18 08:51:11 +03:00
|
|
|
DEFINE_PROP_BOOL("smm-compat", PIIX4PMState, smm_compat, false),
|
2022-05-28 12:02:11 +03:00
|
|
|
DEFINE_PROP_BOOL("smm-enabled", PIIX4PMState, smm_enabled, false),
|
2022-04-06 21:58:12 +03:00
|
|
|
DEFINE_PROP_BOOL("x-not-migrate-acpi-index", PIIX4PMState,
|
|
|
|
not_migrate_acpi_index, false),
|
2014-02-05 19:36:47 +04:00
|
|
|
DEFINE_PROP_END_OF_LIST(),
|
|
|
|
};
|
|
|
|
|
|
|
|
static void piix4_pm_class_init(ObjectClass *klass, void *data)
|
|
|
|
{
|
|
|
|
DeviceClass *dc = DEVICE_CLASS(klass);
|
|
|
|
PCIDeviceClass *k = PCI_DEVICE_CLASS(klass);
|
2014-02-05 19:36:49 +04:00
|
|
|
HotplugHandlerClass *hc = HOTPLUG_HANDLER_CLASS(klass);
|
2014-06-16 21:12:27 +04:00
|
|
|
AcpiDeviceIfClass *adevc = ACPI_DEVICE_IF_CLASS(klass);
|
2014-02-05 19:36:47 +04:00
|
|
|
|
2015-01-19 17:52:30 +03:00
|
|
|
k->realize = piix4_pm_realize;
|
2014-02-05 19:36:47 +04:00
|
|
|
k->config_write = pm_write_config;
|
|
|
|
k->vendor_id = PCI_VENDOR_ID_INTEL;
|
|
|
|
k->device_id = PCI_DEVICE_ID_INTEL_82371AB_3;
|
|
|
|
k->revision = 0x03;
|
|
|
|
k->class_id = PCI_CLASS_BRIDGE_OTHER;
|
2019-10-10 16:15:20 +03:00
|
|
|
dc->reset = piix4_pm_reset;
|
2014-02-05 19:36:47 +04:00
|
|
|
dc->desc = "PM";
|
|
|
|
dc->vmsd = &vmstate_acpi;
|
2020-01-10 18:30:32 +03:00
|
|
|
device_class_set_props(dc, piix4_pm_properties);
|
2014-02-05 19:36:47 +04:00
|
|
|
/*
|
|
|
|
* Reason: part of PIIX4 southbridge, needs to be wired up,
|
|
|
|
* e.g. by mips_malta_init()
|
|
|
|
*/
|
2017-05-03 23:35:44 +03:00
|
|
|
dc->user_creatable = false;
|
2014-02-05 19:36:48 +04:00
|
|
|
dc->hotpluggable = false;
|
2018-12-12 12:16:17 +03:00
|
|
|
hc->pre_plug = piix4_device_pre_plug_cb;
|
2014-06-02 17:25:19 +04:00
|
|
|
hc->plug = piix4_device_plug_cb;
|
2014-09-26 13:28:19 +04:00
|
|
|
hc->unplug_request = piix4_device_unplug_request_cb;
|
2015-01-28 10:45:41 +03:00
|
|
|
hc->unplug = piix4_device_unplug_cb;
|
2023-03-02 19:15:43 +03:00
|
|
|
hc->is_hotpluggable_bus = piix4_is_hotpluggable_bus;
|
2014-06-16 21:12:27 +04:00
|
|
|
adevc->ospm_status = piix4_ospm_status;
|
2016-05-31 12:57:57 +03:00
|
|
|
adevc->send_event = piix4_send_gpe;
|
2016-04-20 12:28:57 +03:00
|
|
|
adevc->madt_cpu = pc_madt_cpu_entry;
|
2014-02-05 19:36:47 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static const TypeInfo piix4_pm_info = {
|
|
|
|
.name = TYPE_PIIX4_PM,
|
|
|
|
.parent = TYPE_PCI_DEVICE,
|
2022-05-28 12:02:11 +03:00
|
|
|
.instance_init = piix4_pm_init,
|
2014-02-05 19:36:47 +04:00
|
|
|
.instance_size = sizeof(PIIX4PMState),
|
|
|
|
.class_init = piix4_pm_class_init,
|
2014-02-05 19:36:49 +04:00
|
|
|
.interfaces = (InterfaceInfo[]) {
|
|
|
|
{ TYPE_HOTPLUG_HANDLER },
|
2014-06-16 21:12:27 +04:00
|
|
|
{ TYPE_ACPI_DEVICE_IF },
|
2017-09-27 22:56:34 +03:00
|
|
|
{ INTERFACE_CONVENTIONAL_PCI_DEVICE },
|
2014-02-05 19:36:49 +04:00
|
|
|
{ }
|
|
|
|
}
|
2014-02-05 19:36:47 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
static void piix4_pm_register_types(void)
|
|
|
|
{
|
|
|
|
type_register_static(&piix4_pm_info);
|
|
|
|
}
|
|
|
|
|
|
|
|
type_init(piix4_pm_register_types)
|