2010-06-29 06:49:29 +04:00
|
|
|
/*
|
|
|
|
* VT82C686B south bridge support
|
|
|
|
*
|
|
|
|
* Copyright (c) 2008 yajin (yajin@vm-kernel.org)
|
|
|
|
* Copyright (c) 2009 chenming (chenming@rdc.faw.com.cn)
|
|
|
|
* Copyright (c) 2010 Huacai Chen (zltjiangshi@gmail.com)
|
|
|
|
* This code is licensed under the GNU GPL v2.
|
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-06-29 06:49:29 +04:00
|
|
|
*/
|
|
|
|
|
2016-01-26 21:17:30 +03:00
|
|
|
#include "qemu/osdep.h"
|
2013-02-05 20:06:20 +04:00
|
|
|
#include "hw/isa/vt82c686.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/isa/isa.h"
|
2018-03-09 01:39:40 +03:00
|
|
|
#include "hw/isa/superio.h"
|
2019-08-12 08:23:45 +03:00
|
|
|
#include "migration/vmstate.h"
|
2013-02-05 20:06:20 +04:00
|
|
|
#include "hw/isa/apm.h"
|
|
|
|
#include "hw/acpi/acpi.h"
|
|
|
|
#include "hw/i2c/pm_smbus.h"
|
pci: Convert uses of pci_create() etc. with Coccinelle
Replace
dev = pci_create(bus, type_name);
...
qdev_init_nofail(dev);
by
dev = pci_new(type_name);
...
pci_realize_and_unref(dev, bus, &error_fatal);
and similarly for pci_create_multifunction().
Recent commit "qdev: New qdev_new(), qdev_realize(), etc." explains
why.
Coccinelle script:
@@
expression dev, bus, expr;
expression list args;
@@
- dev = pci_create(bus, args);
+ dev = pci_new(args);
... when != dev = expr
- qdev_init_nofail(&dev->qdev);
+ pci_realize_and_unref(dev, bus, &error_fatal);
@@
expression dev, bus, expr;
expression list args;
expression d;
@@
- dev = pci_create(bus, args);
+ dev = pci_new(args);
(
d = &dev->qdev;
|
d = DEVICE(dev);
)
... when != dev = expr
- qdev_init_nofail(d);
+ pci_realize_and_unref(dev, bus, &error_fatal);
@@
expression dev, bus, expr;
expression list args;
@@
- dev = pci_create(bus, args);
+ dev = pci_new(args);
... when != dev = expr
- qdev_init_nofail(DEVICE(dev));
+ pci_realize_and_unref(dev, bus, &error_fatal);
@@
expression dev, bus, expr;
expression list args;
@@
- dev = DEVICE(pci_create(bus, args));
+ PCIDevice *pci_dev; // TODO move
+ pci_dev = pci_new(args);
+ dev = DEVICE(pci_dev);
... when != dev = expr
- qdev_init_nofail(dev);
+ pci_realize_and_unref(pci_dev, bus, &error_fatal);
@@
expression dev, bus, expr;
expression list args;
@@
- dev = pci_create_multifunction(bus, args);
+ dev = pci_new_multifunction(args);
... when != dev = expr
- qdev_init_nofail(&dev->qdev);
+ pci_realize_and_unref(dev, bus, &error_fatal);
@@
expression bus, expr;
expression list args;
identifier dev;
@@
- PCIDevice *dev = pci_create_multifunction(bus, args);
+ PCIDevice *dev = pci_new_multifunction(args);
... when != dev = expr
- qdev_init_nofail(&dev->qdev);
+ pci_realize_and_unref(dev, bus, &error_fatal);
@@
expression dev, bus, expr;
expression list args;
@@
- dev = pci_create_multifunction(bus, args);
+ dev = pci_new_multifunction(args);
... when != dev = expr
- qdev_init_nofail(DEVICE(dev));
+ pci_realize_and_unref(dev, bus, &error_fatal);
Missing #include "qapi/error.h" added manually, whitespace changes
minimized manually, @pci_dev declarations moved manually.
Cc: Michael S. Tsirkin <mst@redhat.com>
Cc: Marcel Apfelbaum <marcel.apfelbaum@gmail.com>
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Paolo Bonzini <pbonzini@redhat.com>
Message-Id: <20200610053247.1583243-16-armbru@redhat.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
2020-06-10 08:32:04 +03:00
|
|
|
#include "qapi/error.h"
|
2019-05-23 17:35:07 +03:00
|
|
|
#include "qemu/module.h"
|
2021-01-09 23:16:36 +03:00
|
|
|
#include "qemu/range.h"
|
2012-12-17 21:20:00 +04:00
|
|
|
#include "qemu/timer.h"
|
2012-12-17 21:19:49 +04:00
|
|
|
#include "exec/address-spaces.h"
|
2021-01-02 13:43:35 +03:00
|
|
|
#include "trace.h"
|
2010-06-29 06:49:29 +04:00
|
|
|
|
2021-01-09 23:16:36 +03:00
|
|
|
OBJECT_DECLARE_SIMPLE_TYPE(VT686PMState, VT82C686B_PM)
|
2010-06-29 06:49:29 +04:00
|
|
|
|
2020-09-03 23:43:22 +03:00
|
|
|
struct VT686PMState {
|
2010-06-29 06:49:29 +04:00
|
|
|
PCIDevice dev;
|
2012-11-23 11:29:27 +04:00
|
|
|
MemoryRegion io;
|
2012-02-23 16:45:16 +04:00
|
|
|
ACPIREGS ar;
|
2010-06-29 06:49:29 +04:00
|
|
|
APMState apm;
|
|
|
|
PMSMBus smb;
|
2020-09-03 23:43:22 +03:00
|
|
|
};
|
2010-06-29 06:49:29 +04:00
|
|
|
|
|
|
|
static void pm_io_space_update(VT686PMState *s)
|
|
|
|
{
|
|
|
|
uint32_t pm_io_base;
|
|
|
|
|
2012-11-23 11:29:27 +04:00
|
|
|
pm_io_base = pci_get_long(s->dev.config + 0x40);
|
|
|
|
pm_io_base &= 0xffc0;
|
2010-06-29 06:49:29 +04:00
|
|
|
|
2012-11-23 11:29:27 +04:00
|
|
|
memory_region_transaction_begin();
|
|
|
|
memory_region_set_enabled(&s->io, s->dev.config[0x80] & 1);
|
|
|
|
memory_region_set_address(&s->io, pm_io_base);
|
|
|
|
memory_region_transaction_commit();
|
2010-06-29 06:49:29 +04:00
|
|
|
}
|
|
|
|
|
2021-01-09 23:16:36 +03:00
|
|
|
static void smb_io_space_update(VT686PMState *s)
|
|
|
|
{
|
|
|
|
uint32_t smbase = pci_get_long(s->dev.config + 0x90) & 0xfff0UL;
|
|
|
|
|
|
|
|
memory_region_transaction_begin();
|
|
|
|
memory_region_set_address(&s->smb.io, smbase);
|
|
|
|
memory_region_set_enabled(&s->smb.io, s->dev.config[0xd2] & BIT(0));
|
|
|
|
memory_region_transaction_commit();
|
|
|
|
}
|
|
|
|
|
2010-06-29 06:49:29 +04:00
|
|
|
static int vmstate_acpi_post_load(void *opaque, int version_id)
|
|
|
|
{
|
|
|
|
VT686PMState *s = opaque;
|
|
|
|
|
|
|
|
pm_io_space_update(s);
|
2021-01-09 23:16:36 +03:00
|
|
|
smb_io_space_update(s);
|
2010-06-29 06:49:29 +04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const VMStateDescription vmstate_acpi = {
|
|
|
|
.name = "vt82c686b_pm",
|
|
|
|
.version_id = 1,
|
|
|
|
.minimum_version_id = 1,
|
|
|
|
.post_load = vmstate_acpi_post_load,
|
2014-04-16 17:32:32 +04:00
|
|
|
.fields = (VMStateField[]) {
|
2010-06-29 06:49:29 +04:00
|
|
|
VMSTATE_PCI_DEVICE(dev, VT686PMState),
|
2012-02-23 16:45:16 +04:00
|
|
|
VMSTATE_UINT16(ar.pm1.evt.sts, VT686PMState),
|
|
|
|
VMSTATE_UINT16(ar.pm1.evt.en, VT686PMState),
|
|
|
|
VMSTATE_UINT16(ar.pm1.cnt.cnt, VT686PMState),
|
2010-06-29 06:49:29 +04:00
|
|
|
VMSTATE_STRUCT(apm, VT686PMState, 0, vmstate_apm, APMState),
|
2015-01-08 12:18:59 +03:00
|
|
|
VMSTATE_TIMER_PTR(ar.tmr.timer, VT686PMState),
|
2012-02-23 16:45:16 +04:00
|
|
|
VMSTATE_INT64(ar.tmr.overflow_time, VT686PMState),
|
2010-06-29 06:49:29 +04:00
|
|
|
VMSTATE_END_OF_LIST()
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2021-01-09 23:16:36 +03:00
|
|
|
static void pm_write_config(PCIDevice *d, uint32_t addr, uint32_t val, int len)
|
|
|
|
{
|
2021-01-09 23:16:36 +03:00
|
|
|
VT686PMState *s = VT82C686B_PM(d);
|
|
|
|
|
2021-01-09 23:16:36 +03:00
|
|
|
trace_via_pm_write(addr, val, len);
|
|
|
|
pci_default_write_config(d, addr, val, len);
|
2021-01-09 23:16:36 +03:00
|
|
|
if (ranges_overlap(addr, len, 0x90, 4)) {
|
|
|
|
uint32_t v = pci_get_long(s->dev.config + 0x90);
|
|
|
|
pci_set_long(s->dev.config + 0x90, (v & 0xfff0UL) | 1);
|
|
|
|
}
|
|
|
|
if (range_covers_byte(addr, len, 0xd2)) {
|
|
|
|
s->dev.config[0xd2] &= 0xf;
|
|
|
|
smb_io_space_update(s);
|
|
|
|
}
|
2021-01-09 23:16:36 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
static void pm_update_sci(VT686PMState *s)
|
|
|
|
{
|
|
|
|
int sci_level, pmsts;
|
|
|
|
|
|
|
|
pmsts = acpi_pm1_evt_get_sts(&s->ar);
|
|
|
|
sci_level = (((pmsts & s->ar.pm1.evt.en) &
|
|
|
|
(ACPI_BITMASK_RT_CLOCK_ENABLE |
|
|
|
|
ACPI_BITMASK_POWER_BUTTON_ENABLE |
|
|
|
|
ACPI_BITMASK_GLOBAL_LOCK_ENABLE |
|
|
|
|
ACPI_BITMASK_TIMER_ENABLE)) != 0);
|
|
|
|
pci_set_irq(&s->dev, sci_level);
|
|
|
|
/* schedule a timer interruption if needed */
|
|
|
|
acpi_pm_tmr_update(&s->ar, (s->ar.pm1.evt.en & ACPI_BITMASK_TIMER_ENABLE) &&
|
|
|
|
!(pmsts & ACPI_BITMASK_TIMER_STATUS));
|
|
|
|
}
|
|
|
|
|
|
|
|
static void pm_tmr_timer(ACPIREGS *ar)
|
|
|
|
{
|
|
|
|
VT686PMState *s = container_of(ar, VT686PMState, ar);
|
|
|
|
pm_update_sci(s);
|
|
|
|
}
|
|
|
|
|
2021-01-09 23:16:36 +03:00
|
|
|
static void vt82c686b_pm_reset(DeviceState *d)
|
|
|
|
{
|
|
|
|
VT686PMState *s = VT82C686B_PM(d);
|
|
|
|
|
|
|
|
/* SMBus IO base */
|
|
|
|
pci_set_long(s->dev.config + 0x90, 1);
|
|
|
|
s->dev.config[0xd2] = 0;
|
|
|
|
|
|
|
|
smb_io_space_update(s);
|
|
|
|
}
|
|
|
|
|
2015-01-19 17:52:30 +03:00
|
|
|
static void vt82c686b_pm_realize(PCIDevice *dev, Error **errp)
|
2010-06-29 06:49:29 +04:00
|
|
|
{
|
2021-01-02 13:43:35 +03:00
|
|
|
VT686PMState *s = VT82C686B_PM(dev);
|
2010-06-29 06:49:29 +04:00
|
|
|
uint8_t *pci_conf;
|
|
|
|
|
|
|
|
pci_conf = s->dev.config;
|
|
|
|
pci_set_word(pci_conf + PCI_COMMAND, 0);
|
|
|
|
pci_set_word(pci_conf + PCI_STATUS, PCI_STATUS_FAST_BACK |
|
|
|
|
PCI_STATUS_DEVSEL_MEDIUM);
|
|
|
|
|
|
|
|
/* 0x48-0x4B is Power Management I/O Base */
|
|
|
|
pci_set_long(pci_conf + 0x48, 0x00000001);
|
|
|
|
|
2019-05-28 19:40:17 +03:00
|
|
|
pm_smbus_init(DEVICE(s), &s->smb, false);
|
2021-01-09 23:16:36 +03:00
|
|
|
memory_region_add_subregion(pci_address_space_io(dev), 0, &s->smb.io);
|
|
|
|
memory_region_set_enabled(&s->smb.io, false);
|
2010-06-29 06:49:29 +04:00
|
|
|
|
2012-09-19 15:50:03 +04:00
|
|
|
apm_init(dev, &s->apm, NULL, s);
|
2010-06-29 06:49:29 +04:00
|
|
|
|
2013-06-07 05:25:08 +04:00
|
|
|
memory_region_init(&s->io, OBJECT(dev), "vt82c686-pm", 64);
|
2012-11-23 11:29:27 +04:00
|
|
|
memory_region_set_enabled(&s->io, false);
|
|
|
|
memory_region_add_subregion(get_system_io(), 0, &s->io);
|
2010-06-29 06:49:29 +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);
|
2015-04-29 16:20:14 +03:00
|
|
|
acpi_pm1_cnt_init(&s->ar, &s->io, false, false, 2);
|
2010-06-29 06:49:29 +04:00
|
|
|
}
|
|
|
|
|
2011-12-04 22:22:06 +04:00
|
|
|
static void via_pm_class_init(ObjectClass *klass, void *data)
|
|
|
|
{
|
2011-12-08 07:34:16 +04:00
|
|
|
DeviceClass *dc = DEVICE_CLASS(klass);
|
2011-12-04 22:22:06 +04:00
|
|
|
PCIDeviceClass *k = PCI_DEVICE_CLASS(klass);
|
|
|
|
|
2015-01-19 17:52:30 +03:00
|
|
|
k->realize = vt82c686b_pm_realize;
|
2011-12-04 22:22:06 +04:00
|
|
|
k->config_write = pm_write_config;
|
|
|
|
k->vendor_id = PCI_VENDOR_ID_VIA;
|
|
|
|
k->device_id = PCI_DEVICE_ID_VIA_ACPI;
|
|
|
|
k->class_id = PCI_CLASS_BRIDGE_OTHER;
|
|
|
|
k->revision = 0x40;
|
2021-01-09 23:16:36 +03:00
|
|
|
dc->reset = vt82c686b_pm_reset;
|
2011-12-08 07:34:16 +04:00
|
|
|
dc->desc = "PM";
|
|
|
|
dc->vmsd = &vmstate_acpi;
|
2013-07-29 18:17:45 +04:00
|
|
|
set_bit(DEVICE_CATEGORY_BRIDGE, dc->categories);
|
2011-12-04 22:22:06 +04:00
|
|
|
}
|
|
|
|
|
2013-01-10 19:19:07 +04:00
|
|
|
static const TypeInfo via_pm_info = {
|
2021-01-02 13:43:35 +03:00
|
|
|
.name = TYPE_VT82C686B_PM,
|
2011-12-08 07:34:16 +04:00
|
|
|
.parent = TYPE_PCI_DEVICE,
|
|
|
|
.instance_size = sizeof(VT686PMState),
|
|
|
|
.class_init = via_pm_class_init,
|
2017-09-27 22:56:34 +03:00
|
|
|
.interfaces = (InterfaceInfo[]) {
|
|
|
|
{ INTERFACE_CONVENTIONAL_PCI_DEVICE },
|
|
|
|
{ },
|
|
|
|
},
|
2010-06-29 06:49:29 +04:00
|
|
|
};
|
|
|
|
|
2021-01-09 23:16:36 +03:00
|
|
|
|
|
|
|
typedef struct SuperIOConfig {
|
|
|
|
uint8_t regs[0x100];
|
|
|
|
uint8_t index;
|
|
|
|
MemoryRegion io;
|
|
|
|
} SuperIOConfig;
|
|
|
|
|
|
|
|
static void superio_cfg_write(void *opaque, hwaddr addr, uint64_t data,
|
|
|
|
unsigned size)
|
|
|
|
{
|
|
|
|
SuperIOConfig *sc = opaque;
|
|
|
|
|
|
|
|
if (addr == 0x3f0) { /* config index register */
|
|
|
|
sc->index = data & 0xff;
|
|
|
|
} else {
|
|
|
|
bool can_write = true;
|
|
|
|
/* 0x3f1, config data register */
|
|
|
|
trace_via_superio_write(sc->index, data & 0xff);
|
|
|
|
switch (sc->index) {
|
|
|
|
case 0x00 ... 0xdf:
|
|
|
|
case 0xe4:
|
|
|
|
case 0xe5:
|
|
|
|
case 0xe9 ... 0xed:
|
|
|
|
case 0xf3:
|
|
|
|
case 0xf5:
|
|
|
|
case 0xf7:
|
|
|
|
case 0xf9 ... 0xfb:
|
|
|
|
case 0xfd ... 0xff:
|
|
|
|
can_write = false;
|
|
|
|
break;
|
|
|
|
/* case 0xe6 ... 0xe8: Should set base port of parallel and serial */
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
|
|
|
|
}
|
|
|
|
if (can_write) {
|
|
|
|
sc->regs[sc->index] = data & 0xff;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static uint64_t superio_cfg_read(void *opaque, hwaddr addr, unsigned size)
|
|
|
|
{
|
|
|
|
SuperIOConfig *sc = opaque;
|
|
|
|
uint8_t val = sc->regs[sc->index];
|
|
|
|
|
|
|
|
trace_via_superio_read(sc->index, val);
|
|
|
|
return val;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const MemoryRegionOps superio_cfg_ops = {
|
|
|
|
.read = superio_cfg_read,
|
|
|
|
.write = superio_cfg_write,
|
|
|
|
.endianness = DEVICE_NATIVE_ENDIAN,
|
|
|
|
.impl = {
|
|
|
|
.min_access_size = 1,
|
|
|
|
.max_access_size = 1,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
OBJECT_DECLARE_SIMPLE_TYPE(VT82C686BISAState, VT82C686B_ISA)
|
|
|
|
|
|
|
|
struct VT82C686BISAState {
|
|
|
|
PCIDevice dev;
|
|
|
|
SuperIOConfig superio_cfg;
|
|
|
|
};
|
|
|
|
|
|
|
|
static void vt82c686b_write_config(PCIDevice *d, uint32_t addr,
|
|
|
|
uint32_t val, int len)
|
|
|
|
{
|
|
|
|
VT82C686BISAState *s = VT82C686B_ISA(d);
|
|
|
|
|
|
|
|
trace_via_isa_write(addr, val, len);
|
|
|
|
pci_default_write_config(d, addr, val, len);
|
|
|
|
if (addr == 0x85) {
|
|
|
|
/* BIT(1): enable or disable superio config io ports */
|
|
|
|
memory_region_set_enabled(&s->superio_cfg.io, val & BIT(1));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-06-29 06:49:29 +04:00
|
|
|
static const VMStateDescription vmstate_via = {
|
|
|
|
.name = "vt82c686b",
|
|
|
|
.version_id = 1,
|
|
|
|
.minimum_version_id = 1,
|
2014-04-16 17:32:32 +04:00
|
|
|
.fields = (VMStateField[]) {
|
2021-01-02 13:43:35 +03:00
|
|
|
VMSTATE_PCI_DEVICE(dev, VT82C686BISAState),
|
2010-06-29 06:49:29 +04:00
|
|
|
VMSTATE_END_OF_LIST()
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2021-01-09 23:16:36 +03:00
|
|
|
static void vt82c686b_isa_reset(DeviceState *dev)
|
|
|
|
{
|
|
|
|
VT82C686BISAState *s = VT82C686B_ISA(dev);
|
|
|
|
uint8_t *pci_conf = s->dev.config;
|
|
|
|
|
|
|
|
pci_set_long(pci_conf + PCI_CAPABILITY_LIST, 0x000000c0);
|
|
|
|
pci_set_word(pci_conf + PCI_COMMAND, PCI_COMMAND_IO | PCI_COMMAND_MEMORY |
|
|
|
|
PCI_COMMAND_MASTER | PCI_COMMAND_SPECIAL);
|
|
|
|
pci_set_word(pci_conf + PCI_STATUS, PCI_STATUS_DEVSEL_MEDIUM);
|
|
|
|
|
|
|
|
pci_conf[0x48] = 0x01; /* Miscellaneous Control 3 */
|
|
|
|
pci_conf[0x4a] = 0x04; /* IDE interrupt Routing */
|
|
|
|
pci_conf[0x4f] = 0x03; /* DMA/Master Mem Access Control 3 */
|
|
|
|
pci_conf[0x50] = 0x2d; /* PnP DMA Request Control */
|
|
|
|
pci_conf[0x59] = 0x04;
|
|
|
|
pci_conf[0x5a] = 0x04; /* KBC/RTC Control*/
|
|
|
|
pci_conf[0x5f] = 0x04;
|
|
|
|
pci_conf[0x77] = 0x10; /* GPIO Control 1/2/3/4 */
|
|
|
|
|
|
|
|
s->superio_cfg.regs[0xe0] = 0x3c; /* Device ID */
|
|
|
|
s->superio_cfg.regs[0xe2] = 0x03; /* Function select */
|
|
|
|
s->superio_cfg.regs[0xe3] = 0xfc; /* Floppy ctrl base addr */
|
|
|
|
s->superio_cfg.regs[0xe6] = 0xde; /* Parallel port base addr */
|
|
|
|
s->superio_cfg.regs[0xe7] = 0xfe; /* Serial port 1 base addr */
|
|
|
|
s->superio_cfg.regs[0xe8] = 0xbe; /* Serial port 2 base addr */
|
|
|
|
}
|
|
|
|
|
2015-01-19 17:52:30 +03:00
|
|
|
static void vt82c686b_realize(PCIDevice *d, Error **errp)
|
2010-06-29 06:49:29 +04:00
|
|
|
{
|
2021-01-02 13:43:35 +03:00
|
|
|
VT82C686BISAState *s = VT82C686B_ISA(d);
|
2010-06-29 06:49:29 +04:00
|
|
|
uint8_t *pci_conf;
|
2013-06-22 10:06:59 +04:00
|
|
|
ISABus *isa_bus;
|
2010-06-29 06:49:29 +04:00
|
|
|
uint8_t *wmask;
|
|
|
|
int i;
|
|
|
|
|
2015-02-01 11:12:50 +03:00
|
|
|
isa_bus = isa_bus_new(DEVICE(d), get_system_memory(),
|
isa: Clean up error handling around isa_bus_new()
We can have at most one ISA bus. If you try to create another one,
isa_bus_new() complains to stderr and returns null.
isa_bus_new() is called in two contexts, machine's init() and device's
realize() methods. Since complaining to stderr is not proper in the
latter context, convert isa_bus_new() to Error.
Machine's init():
* mips_jazz_init(), called from the init() methods of machines
"magnum" and "pica"
* mips_r4k_init(), the init() method of machine "mips"
* pc_init1() called from the init() methods of non-q35 PC machines
* typhoon_init(), called from clipper_init(), the init() method of
machine "clipper"
These callers always create the first ISA bus, hence isa_bus_new()
can't fail. Simply pass &error_abort.
Device's realize():
* i82378_realize(), of PCI device "i82378"
* ich9_lpc_realize(), of PCI device "ICH9-LPC"
* pci_ebus_realize(), of PCI device "ebus"
* piix3_realize(), of PCI device "pci-piix3", abstract parent of
"PIIX3" and "PIIX3-xen"
* piix4_realize(), of PCI device "PIIX4"
* vt82c686b_realize(), of PCI device "VT82C686B"
Propagate the error. Note that these devices are typically created
only by machine init() methods with qdev_init_nofail() or similar. If
we screwed up and created an ISA bus before that call, we now give up
right away. Before, we'd hobble on, and typically die in
isa_bus_irqs(). Similar if someone finds a way to hot-plug one of
these critters.
Cc: Richard Henderson <rth@twiddle.net>
Cc: "Michael S. Tsirkin" <mst@redhat.com>
Cc: "Hervé Poussineau" <hpoussin@reactos.org>
Cc: Aurelien Jarno <aurelien@aurel32.net>
Cc: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
Signed-off-by: Markus Armbruster <armbru@pond.sub.org>
Reviewed-by: Marcel Apfelbaum <marcel@redhat.com>
Reviewed-by: Hervé Poussineau <hpoussin@reactos.org>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Message-Id: <1450370121-5768-11-git-send-email-armbru@redhat.com>
2015-12-17 19:35:18 +03:00
|
|
|
pci_address_space_io(d), errp);
|
|
|
|
if (!isa_bus) {
|
|
|
|
return;
|
|
|
|
}
|
2010-06-29 06:49:29 +04:00
|
|
|
|
|
|
|
pci_conf = d->config;
|
|
|
|
pci_config_set_prog_interface(pci_conf, 0x0);
|
|
|
|
|
|
|
|
wmask = d->wmask;
|
|
|
|
for (i = 0x00; i < 0xff; i++) {
|
2019-12-06 16:58:07 +03:00
|
|
|
if (i <= 0x03 || (i >= 0x08 && i <= 0x3f)) {
|
|
|
|
wmask[i] = 0x00;
|
|
|
|
}
|
2010-06-29 06:49:29 +04:00
|
|
|
}
|
|
|
|
|
2021-01-09 23:16:36 +03:00
|
|
|
memory_region_init_io(&s->superio_cfg.io, OBJECT(d), &superio_cfg_ops,
|
|
|
|
&s->superio_cfg, "superio_cfg", 2);
|
|
|
|
memory_region_set_enabled(&s->superio_cfg.io, false);
|
2019-12-06 16:58:07 +03:00
|
|
|
/*
|
|
|
|
* The floppy also uses 0x3f0 and 0x3f1.
|
|
|
|
* But we do not emulate a floppy, so just set it here.
|
|
|
|
*/
|
2013-06-22 10:06:59 +04:00
|
|
|
memory_region_add_subregion(isa_bus->address_space_io, 0x3f0,
|
2021-01-09 23:16:36 +03:00
|
|
|
&s->superio_cfg.io);
|
2010-06-29 06:49:29 +04:00
|
|
|
}
|
|
|
|
|
2011-12-04 22:22:06 +04:00
|
|
|
static void via_class_init(ObjectClass *klass, void *data)
|
|
|
|
{
|
2011-12-08 07:34:16 +04:00
|
|
|
DeviceClass *dc = DEVICE_CLASS(klass);
|
2011-12-04 22:22:06 +04:00
|
|
|
PCIDeviceClass *k = PCI_DEVICE_CLASS(klass);
|
|
|
|
|
2015-01-19 17:52:30 +03:00
|
|
|
k->realize = vt82c686b_realize;
|
2011-12-04 22:22:06 +04:00
|
|
|
k->config_write = vt82c686b_write_config;
|
|
|
|
k->vendor_id = PCI_VENDOR_ID_VIA;
|
|
|
|
k->device_id = PCI_DEVICE_ID_VIA_ISA_BRIDGE;
|
|
|
|
k->class_id = PCI_CLASS_BRIDGE_ISA;
|
|
|
|
k->revision = 0x40;
|
2019-10-10 16:15:25 +03:00
|
|
|
dc->reset = vt82c686b_isa_reset;
|
2011-12-08 07:34:16 +04:00
|
|
|
dc->desc = "ISA bridge";
|
|
|
|
dc->vmsd = &vmstate_via;
|
2013-11-28 20:27:01 +04:00
|
|
|
/*
|
|
|
|
* Reason: part of VIA VT82C686 southbridge, needs to be wired up,
|
2020-04-26 13:16:37 +03:00
|
|
|
* e.g. by mips_fuloong2e_init()
|
2013-11-28 20:27:01 +04:00
|
|
|
*/
|
2017-05-03 23:35:44 +03:00
|
|
|
dc->user_creatable = false;
|
2011-12-04 22:22:06 +04:00
|
|
|
}
|
|
|
|
|
2013-01-10 19:19:07 +04:00
|
|
|
static const TypeInfo via_info = {
|
2021-01-02 13:43:35 +03:00
|
|
|
.name = TYPE_VT82C686B_ISA,
|
2011-12-08 07:34:16 +04:00
|
|
|
.parent = TYPE_PCI_DEVICE,
|
2021-01-02 13:43:35 +03:00
|
|
|
.instance_size = sizeof(VT82C686BISAState),
|
2011-12-08 07:34:16 +04:00
|
|
|
.class_init = via_class_init,
|
2017-09-27 22:56:34 +03:00
|
|
|
.interfaces = (InterfaceInfo[]) {
|
|
|
|
{ INTERFACE_CONVENTIONAL_PCI_DEVICE },
|
|
|
|
{ },
|
|
|
|
},
|
2010-06-29 06:49:29 +04:00
|
|
|
};
|
|
|
|
|
2021-01-09 23:16:36 +03:00
|
|
|
|
2018-03-09 01:39:40 +03:00
|
|
|
static void vt82c686b_superio_class_init(ObjectClass *klass, void *data)
|
|
|
|
{
|
|
|
|
ISASuperIOClass *sc = ISA_SUPERIO_CLASS(klass);
|
|
|
|
|
|
|
|
sc->serial.count = 2;
|
|
|
|
sc->parallel.count = 1;
|
|
|
|
sc->ide.count = 0;
|
|
|
|
sc->floppy.count = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const TypeInfo via_superio_info = {
|
|
|
|
.name = TYPE_VT82C686B_SUPERIO,
|
|
|
|
.parent = TYPE_ISA_SUPERIO,
|
|
|
|
.instance_size = sizeof(ISASuperIODevice),
|
|
|
|
.class_size = sizeof(ISASuperIOClass),
|
|
|
|
.class_init = vt82c686b_superio_class_init,
|
|
|
|
};
|
|
|
|
|
2021-01-09 23:16:36 +03:00
|
|
|
|
2012-02-09 18:20:55 +04:00
|
|
|
static void vt82c686b_register_types(void)
|
2010-06-29 06:49:29 +04:00
|
|
|
{
|
2012-02-09 18:20:55 +04:00
|
|
|
type_register_static(&via_pm_info);
|
2011-12-08 07:34:16 +04:00
|
|
|
type_register_static(&via_info);
|
2021-01-09 23:16:36 +03:00
|
|
|
type_register_static(&via_superio_info);
|
2010-06-29 06:49:29 +04:00
|
|
|
}
|
2012-02-09 18:20:55 +04:00
|
|
|
|
|
|
|
type_init(vt82c686b_register_types)
|