]> Git Repo - qemu.git/blame - hw/isa/vt82c686.c
Include migration/vmstate.h less
[qemu.git] / hw / isa / vt82c686.c
CommitLineData
edf79e66
HC
1/*
2 * VT82C686B south bridge support
3 *
4 * Copyright (c) 2008 yajin ([email protected])
5 * Copyright (c) 2009 chenming ([email protected])
6 * Copyright (c) 2010 Huacai Chen ([email protected])
7 * This code is licensed under the GNU GPL v2.
6b620ca3
PB
8 *
9 * Contributions after 2012-01-13 are licensed under the terms of the
10 * GNU GPL, version 2 or (at your option) any later version.
edf79e66
HC
11 */
12
0430891c 13#include "qemu/osdep.h"
83c9f4ca 14#include "hw/hw.h"
0d09e41a
PB
15#include "hw/isa/vt82c686.h"
16#include "hw/i2c/i2c.h"
83c9f4ca 17#include "hw/pci/pci.h"
0d09e41a 18#include "hw/isa/isa.h"
98cf824b 19#include "hw/isa/superio.h"
83c9f4ca 20#include "hw/sysbus.h"
d6454270 21#include "migration/vmstate.h"
0d09e41a
PB
22#include "hw/mips/mips.h"
23#include "hw/isa/apm.h"
24#include "hw/acpi/acpi.h"
25#include "hw/i2c/pm_smbus.h"
71e8a915 26#include "sysemu/reset.h"
9c17d615 27#include "sysemu/sysemu.h"
0b8fa32f 28#include "qemu/module.h"
1de7afc9 29#include "qemu/timer.h"
022c62cb 30#include "exec/address-spaces.h"
edf79e66 31
edf79e66
HC
32//#define DEBUG_VT82C686B
33
34#ifdef DEBUG_VT82C686B
a89f364a 35#define DPRINTF(fmt, ...) fprintf(stderr, "%s: " fmt, __func__, ##__VA_ARGS__)
edf79e66
HC
36#else
37#define DPRINTF(fmt, ...)
38#endif
39
40typedef struct SuperIOConfig
41{
9feb8ade 42 uint8_t config[0x100];
edf79e66
HC
43 uint8_t index;
44 uint8_t data;
45} SuperIOConfig;
46
47typedef struct VT82C686BState {
48 PCIDevice dev;
bcc37e24 49 MemoryRegion superio;
edf79e66
HC
50 SuperIOConfig superio_conf;
51} VT82C686BState;
52
417349e6
GA
53#define TYPE_VT82C686B_DEVICE "VT82C686B"
54#define VT82C686B_DEVICE(obj) \
55 OBJECT_CHECK(VT82C686BState, (obj), TYPE_VT82C686B_DEVICE)
56
bcc37e24
JK
57static void superio_ioport_writeb(void *opaque, hwaddr addr, uint64_t data,
58 unsigned size)
edf79e66 59{
edf79e66
HC
60 SuperIOConfig *superio_conf = opaque;
61
b2bedb21 62 DPRINTF("superio_ioport_writeb address 0x%x val 0x%x\n", addr, data);
edf79e66
HC
63 if (addr == 0x3f0) {
64 superio_conf->index = data & 0xff;
65 } else {
b196d969 66 bool can_write = true;
edf79e66
HC
67 /* 0x3f1 */
68 switch (superio_conf->index) {
69 case 0x00 ... 0xdf:
70 case 0xe4:
71 case 0xe5:
72 case 0xe9 ... 0xed:
73 case 0xf3:
74 case 0xf5:
75 case 0xf7:
76 case 0xf9 ... 0xfb:
77 case 0xfd ... 0xff:
b196d969
HZ
78 can_write = false;
79 break;
80 case 0xe7:
81 if ((data & 0xff) != 0xfe) {
82 DPRINTF("change uart 1 base. unsupported yet\n");
83 can_write = false;
84 }
85 break;
86 case 0xe8:
87 if ((data & 0xff) != 0xbe) {
88 DPRINTF("change uart 2 base. unsupported yet\n");
89 can_write = false;
90 }
edf79e66
HC
91 break;
92 default:
b196d969 93 break;
edf79e66 94
edf79e66 95 }
b196d969
HZ
96 if (can_write) {
97 superio_conf->config[superio_conf->index] = data & 0xff;
98 }
edf79e66
HC
99 }
100}
101
bcc37e24 102static uint64_t superio_ioport_readb(void *opaque, hwaddr addr, unsigned size)
edf79e66
HC
103{
104 SuperIOConfig *superio_conf = opaque;
105
b2bedb21 106 DPRINTF("superio_ioport_readb address 0x%x\n", addr);
edf79e66
HC
107 return (superio_conf->config[superio_conf->index]);
108}
109
bcc37e24
JK
110static const MemoryRegionOps superio_ops = {
111 .read = superio_ioport_readb,
112 .write = superio_ioport_writeb,
113 .endianness = DEVICE_NATIVE_ENDIAN,
114 .impl = {
115 .min_access_size = 1,
116 .max_access_size = 1,
117 },
118};
119
edf79e66
HC
120static void vt82c686b_reset(void * opaque)
121{
122 PCIDevice *d = opaque;
123 uint8_t *pci_conf = d->config;
417349e6 124 VT82C686BState *vt82c = VT82C686B_DEVICE(d);
edf79e66
HC
125
126 pci_set_long(pci_conf + PCI_CAPABILITY_LIST, 0x000000c0);
127 pci_set_word(pci_conf + PCI_COMMAND, PCI_COMMAND_IO | PCI_COMMAND_MEMORY |
128 PCI_COMMAND_MASTER | PCI_COMMAND_SPECIAL);
129 pci_set_word(pci_conf + PCI_STATUS, PCI_STATUS_DEVSEL_MEDIUM);
130
131 pci_conf[0x48] = 0x01; /* Miscellaneous Control 3 */
132 pci_conf[0x4a] = 0x04; /* IDE interrupt Routing */
133 pci_conf[0x4f] = 0x03; /* DMA/Master Mem Access Control 3 */
134 pci_conf[0x50] = 0x2d; /* PnP DMA Request Control */
135 pci_conf[0x59] = 0x04;
136 pci_conf[0x5a] = 0x04; /* KBC/RTC Control*/
137 pci_conf[0x5f] = 0x04;
138 pci_conf[0x77] = 0x10; /* GPIO Control 1/2/3/4 */
139
140 vt82c->superio_conf.config[0xe0] = 0x3c;
141 vt82c->superio_conf.config[0xe2] = 0x03;
142 vt82c->superio_conf.config[0xe3] = 0xfc;
143 vt82c->superio_conf.config[0xe6] = 0xde;
144 vt82c->superio_conf.config[0xe7] = 0xfe;
145 vt82c->superio_conf.config[0xe8] = 0xbe;
146}
147
148/* write config pci function0 registers. PCI-ISA bridge */
149static void vt82c686b_write_config(PCIDevice * d, uint32_t address,
150 uint32_t val, int len)
151{
417349e6 152 VT82C686BState *vt686 = VT82C686B_DEVICE(d);
edf79e66 153
b2bedb21 154 DPRINTF("vt82c686b_write_config address 0x%x val 0x%x len 0x%x\n",
edf79e66
HC
155 address, val, len);
156
157 pci_default_write_config(d, address, val, len);
158 if (address == 0x85) { /* enable or disable super IO configure */
bcc37e24 159 memory_region_set_enabled(&vt686->superio, val & 0x2);
edf79e66
HC
160 }
161}
162
163#define ACPI_DBG_IO_ADDR 0xb044
164
165typedef struct VT686PMState {
166 PCIDevice dev;
a2902821 167 MemoryRegion io;
355bf2e5 168 ACPIREGS ar;
edf79e66 169 APMState apm;
edf79e66
HC
170 PMSMBus smb;
171 uint32_t smb_io_base;
172} VT686PMState;
173
174typedef struct VT686AC97State {
175 PCIDevice dev;
176} VT686AC97State;
177
178typedef struct VT686MC97State {
179 PCIDevice dev;
180} VT686MC97State;
181
417349e6
GA
182#define TYPE_VT82C686B_PM_DEVICE "VT82C686B_PM"
183#define VT82C686B_PM_DEVICE(obj) \
184 OBJECT_CHECK(VT686PMState, (obj), TYPE_VT82C686B_PM_DEVICE)
185
186#define TYPE_VT82C686B_MC97_DEVICE "VT82C686B_MC97"
187#define VT82C686B_MC97_DEVICE(obj) \
188 OBJECT_CHECK(VT686MC97State, (obj), TYPE_VT82C686B_MC97_DEVICE)
189
190#define TYPE_VT82C686B_AC97_DEVICE "VT82C686B_AC97"
191#define VT82C686B_AC97_DEVICE(obj) \
192 OBJECT_CHECK(VT686AC97State, (obj), TYPE_VT82C686B_AC97_DEVICE)
193
edf79e66
HC
194static void pm_update_sci(VT686PMState *s)
195{
196 int sci_level, pmsts;
edf79e66 197
2886be1b 198 pmsts = acpi_pm1_evt_get_sts(&s->ar);
355bf2e5 199 sci_level = (((pmsts & s->ar.pm1.evt.en) &
04dc308f
IY
200 (ACPI_BITMASK_RT_CLOCK_ENABLE |
201 ACPI_BITMASK_POWER_BUTTON_ENABLE |
202 ACPI_BITMASK_GLOBAL_LOCK_ENABLE |
203 ACPI_BITMASK_TIMER_ENABLE)) != 0);
9e64f8a3 204 pci_set_irq(&s->dev, sci_level);
edf79e66 205 /* schedule a timer interruption if needed */
355bf2e5 206 acpi_pm_tmr_update(&s->ar, (s->ar.pm1.evt.en & ACPI_BITMASK_TIMER_ENABLE) &&
a54d41a8 207 !(pmsts & ACPI_BITMASK_TIMER_STATUS));
edf79e66
HC
208}
209
355bf2e5 210static void pm_tmr_timer(ACPIREGS *ar)
edf79e66 211{
355bf2e5 212 VT686PMState *s = container_of(ar, VT686PMState, ar);
edf79e66
HC
213 pm_update_sci(s);
214}
215
edf79e66
HC
216static void pm_io_space_update(VT686PMState *s)
217{
218 uint32_t pm_io_base;
219
a2902821
GH
220 pm_io_base = pci_get_long(s->dev.config + 0x40);
221 pm_io_base &= 0xffc0;
edf79e66 222
a2902821
GH
223 memory_region_transaction_begin();
224 memory_region_set_enabled(&s->io, s->dev.config[0x80] & 1);
225 memory_region_set_address(&s->io, pm_io_base);
226 memory_region_transaction_commit();
edf79e66
HC
227}
228
229static void pm_write_config(PCIDevice *d,
230 uint32_t address, uint32_t val, int len)
231{
b2bedb21 232 DPRINTF("pm_write_config address 0x%x val 0x%x len 0x%x\n",
edf79e66
HC
233 address, val, len);
234 pci_default_write_config(d, address, val, len);
235}
236
237static int vmstate_acpi_post_load(void *opaque, int version_id)
238{
239 VT686PMState *s = opaque;
240
241 pm_io_space_update(s);
242 return 0;
243}
244
245static const VMStateDescription vmstate_acpi = {
246 .name = "vt82c686b_pm",
247 .version_id = 1,
248 .minimum_version_id = 1,
edf79e66 249 .post_load = vmstate_acpi_post_load,
d49805ae 250 .fields = (VMStateField[]) {
edf79e66 251 VMSTATE_PCI_DEVICE(dev, VT686PMState),
355bf2e5
GH
252 VMSTATE_UINT16(ar.pm1.evt.sts, VT686PMState),
253 VMSTATE_UINT16(ar.pm1.evt.en, VT686PMState),
254 VMSTATE_UINT16(ar.pm1.cnt.cnt, VT686PMState),
edf79e66 255 VMSTATE_STRUCT(apm, VT686PMState, 0, vmstate_apm, APMState),
e720677e 256 VMSTATE_TIMER_PTR(ar.tmr.timer, VT686PMState),
355bf2e5 257 VMSTATE_INT64(ar.tmr.overflow_time, VT686PMState),
edf79e66
HC
258 VMSTATE_END_OF_LIST()
259 }
260};
261
262/*
263 * TODO: vt82c686b_ac97_init() and vt82c686b_mc97_init()
264 * just register a PCI device now, functionalities will be implemented later.
265 */
266
9af21dbe 267static void vt82c686b_ac97_realize(PCIDevice *dev, Error **errp)
edf79e66 268{
417349e6 269 VT686AC97State *s = VT82C686B_AC97_DEVICE(dev);
edf79e66
HC
270 uint8_t *pci_conf = s->dev.config;
271
edf79e66
HC
272 pci_set_word(pci_conf + PCI_COMMAND, PCI_COMMAND_INVALIDATE |
273 PCI_COMMAND_PARITY);
274 pci_set_word(pci_conf + PCI_STATUS, PCI_STATUS_CAP_LIST |
275 PCI_STATUS_DEVSEL_MEDIUM);
276 pci_set_long(pci_conf + PCI_INTERRUPT_PIN, 0x03);
edf79e66
HC
277}
278
279void vt82c686b_ac97_init(PCIBus *bus, int devfn)
280{
281 PCIDevice *dev;
282
417349e6 283 dev = pci_create(bus, devfn, TYPE_VT82C686B_AC97_DEVICE);
edf79e66
HC
284 qdev_init_nofail(&dev->qdev);
285}
286
40021f08
AL
287static void via_ac97_class_init(ObjectClass *klass, void *data)
288{
39bffca2 289 DeviceClass *dc = DEVICE_CLASS(klass);
40021f08
AL
290 PCIDeviceClass *k = PCI_DEVICE_CLASS(klass);
291
9af21dbe 292 k->realize = vt82c686b_ac97_realize;
40021f08
AL
293 k->vendor_id = PCI_VENDOR_ID_VIA;
294 k->device_id = PCI_DEVICE_ID_VIA_AC97;
295 k->revision = 0x50;
296 k->class_id = PCI_CLASS_MULTIMEDIA_AUDIO;
125ee0ed 297 set_bit(DEVICE_CATEGORY_SOUND, dc->categories);
39bffca2 298 dc->desc = "AC97";
40021f08
AL
299}
300
8c43a6f0 301static const TypeInfo via_ac97_info = {
417349e6 302 .name = TYPE_VT82C686B_AC97_DEVICE,
39bffca2
AL
303 .parent = TYPE_PCI_DEVICE,
304 .instance_size = sizeof(VT686AC97State),
305 .class_init = via_ac97_class_init,
fd3b02c8
EH
306 .interfaces = (InterfaceInfo[]) {
307 { INTERFACE_CONVENTIONAL_PCI_DEVICE },
308 { },
309 },
edf79e66
HC
310};
311
9af21dbe 312static void vt82c686b_mc97_realize(PCIDevice *dev, Error **errp)
edf79e66 313{
417349e6 314 VT686MC97State *s = VT82C686B_MC97_DEVICE(dev);
edf79e66
HC
315 uint8_t *pci_conf = s->dev.config;
316
edf79e66
HC
317 pci_set_word(pci_conf + PCI_COMMAND, PCI_COMMAND_INVALIDATE |
318 PCI_COMMAND_VGA_PALETTE);
319 pci_set_word(pci_conf + PCI_STATUS, PCI_STATUS_DEVSEL_MEDIUM);
320 pci_set_long(pci_conf + PCI_INTERRUPT_PIN, 0x03);
edf79e66
HC
321}
322
323void vt82c686b_mc97_init(PCIBus *bus, int devfn)
324{
325 PCIDevice *dev;
326
417349e6 327 dev = pci_create(bus, devfn, TYPE_VT82C686B_MC97_DEVICE);
edf79e66
HC
328 qdev_init_nofail(&dev->qdev);
329}
330
40021f08
AL
331static void via_mc97_class_init(ObjectClass *klass, void *data)
332{
39bffca2 333 DeviceClass *dc = DEVICE_CLASS(klass);
40021f08
AL
334 PCIDeviceClass *k = PCI_DEVICE_CLASS(klass);
335
9af21dbe 336 k->realize = vt82c686b_mc97_realize;
40021f08
AL
337 k->vendor_id = PCI_VENDOR_ID_VIA;
338 k->device_id = PCI_DEVICE_ID_VIA_MC97;
339 k->class_id = PCI_CLASS_COMMUNICATION_OTHER;
340 k->revision = 0x30;
125ee0ed 341 set_bit(DEVICE_CATEGORY_NETWORK, dc->categories);
39bffca2 342 dc->desc = "MC97";
40021f08
AL
343}
344
8c43a6f0 345static const TypeInfo via_mc97_info = {
417349e6 346 .name = TYPE_VT82C686B_MC97_DEVICE,
39bffca2
AL
347 .parent = TYPE_PCI_DEVICE,
348 .instance_size = sizeof(VT686MC97State),
349 .class_init = via_mc97_class_init,
fd3b02c8
EH
350 .interfaces = (InterfaceInfo[]) {
351 { INTERFACE_CONVENTIONAL_PCI_DEVICE },
352 { },
353 },
edf79e66
HC
354};
355
edf79e66 356/* vt82c686 pm init */
9af21dbe 357static void vt82c686b_pm_realize(PCIDevice *dev, Error **errp)
edf79e66 358{
417349e6 359 VT686PMState *s = VT82C686B_PM_DEVICE(dev);
edf79e66
HC
360 uint8_t *pci_conf;
361
362 pci_conf = s->dev.config;
edf79e66
HC
363 pci_set_word(pci_conf + PCI_COMMAND, 0);
364 pci_set_word(pci_conf + PCI_STATUS, PCI_STATUS_FAST_BACK |
365 PCI_STATUS_DEVSEL_MEDIUM);
366
367 /* 0x48-0x4B is Power Management I/O Base */
368 pci_set_long(pci_conf + 0x48, 0x00000001);
369
370 /* SMB ports:0xeee0~0xeeef */
371 s->smb_io_base =((s->smb_io_base & 0xfff0) + 0x0);
372 pci_conf[0x90] = s->smb_io_base | 1;
373 pci_conf[0x91] = s->smb_io_base >> 8;
374 pci_conf[0xd2] = 0x90;
a30c34d2 375 pm_smbus_init(DEVICE(s), &s->smb, false);
798512e5 376 memory_region_add_subregion(get_system_io(), s->smb_io_base, &s->smb.io);
edf79e66 377
42d8a3cf 378 apm_init(dev, &s->apm, NULL, s);
edf79e66 379
1437c94b 380 memory_region_init(&s->io, OBJECT(dev), "vt82c686-pm", 64);
a2902821
GH
381 memory_region_set_enabled(&s->io, false);
382 memory_region_add_subregion(get_system_io(), 0, &s->io);
edf79e66 383
77d58b1e 384 acpi_pm_tmr_init(&s->ar, pm_tmr_timer, &s->io);
b5a7c024 385 acpi_pm1_evt_init(&s->ar, pm_tmr_timer, &s->io);
9a10bbb4 386 acpi_pm1_cnt_init(&s->ar, &s->io, false, false, 2);
edf79e66
HC
387}
388
a5c82852
AF
389I2CBus *vt82c686b_pm_init(PCIBus *bus, int devfn, uint32_t smb_io_base,
390 qemu_irq sci_irq)
edf79e66
HC
391{
392 PCIDevice *dev;
393 VT686PMState *s;
394
417349e6 395 dev = pci_create(bus, devfn, TYPE_VT82C686B_PM_DEVICE);
edf79e66
HC
396 qdev_prop_set_uint32(&dev->qdev, "smb_io_base", smb_io_base);
397
417349e6 398 s = VT82C686B_PM_DEVICE(dev);
edf79e66
HC
399
400 qdev_init_nofail(&dev->qdev);
401
402 return s->smb.smbus;
403}
404
40021f08
AL
405static Property via_pm_properties[] = {
406 DEFINE_PROP_UINT32("smb_io_base", VT686PMState, smb_io_base, 0),
407 DEFINE_PROP_END_OF_LIST(),
408};
409
410static void via_pm_class_init(ObjectClass *klass, void *data)
411{
39bffca2 412 DeviceClass *dc = DEVICE_CLASS(klass);
40021f08
AL
413 PCIDeviceClass *k = PCI_DEVICE_CLASS(klass);
414
9af21dbe 415 k->realize = vt82c686b_pm_realize;
40021f08
AL
416 k->config_write = pm_write_config;
417 k->vendor_id = PCI_VENDOR_ID_VIA;
418 k->device_id = PCI_DEVICE_ID_VIA_ACPI;
419 k->class_id = PCI_CLASS_BRIDGE_OTHER;
420 k->revision = 0x40;
39bffca2
AL
421 dc->desc = "PM";
422 dc->vmsd = &vmstate_acpi;
125ee0ed 423 set_bit(DEVICE_CATEGORY_BRIDGE, dc->categories);
39bffca2 424 dc->props = via_pm_properties;
40021f08
AL
425}
426
8c43a6f0 427static const TypeInfo via_pm_info = {
417349e6 428 .name = TYPE_VT82C686B_PM_DEVICE,
39bffca2
AL
429 .parent = TYPE_PCI_DEVICE,
430 .instance_size = sizeof(VT686PMState),
431 .class_init = via_pm_class_init,
fd3b02c8
EH
432 .interfaces = (InterfaceInfo[]) {
433 { INTERFACE_CONVENTIONAL_PCI_DEVICE },
434 { },
435 },
edf79e66
HC
436};
437
edf79e66
HC
438static const VMStateDescription vmstate_via = {
439 .name = "vt82c686b",
440 .version_id = 1,
441 .minimum_version_id = 1,
d49805ae 442 .fields = (VMStateField[]) {
edf79e66
HC
443 VMSTATE_PCI_DEVICE(dev, VT82C686BState),
444 VMSTATE_END_OF_LIST()
445 }
446};
447
448/* init the PCI-to-ISA bridge */
9af21dbe 449static void vt82c686b_realize(PCIDevice *d, Error **errp)
edf79e66 450{
417349e6 451 VT82C686BState *vt82c = VT82C686B_DEVICE(d);
edf79e66 452 uint8_t *pci_conf;
bcc37e24 453 ISABus *isa_bus;
edf79e66
HC
454 uint8_t *wmask;
455 int i;
456
bb2ed009 457 isa_bus = isa_bus_new(DEVICE(d), get_system_memory(),
d10e5432
MA
458 pci_address_space_io(d), errp);
459 if (!isa_bus) {
460 return;
461 }
edf79e66
HC
462
463 pci_conf = d->config;
edf79e66 464 pci_config_set_prog_interface(pci_conf, 0x0);
edf79e66
HC
465
466 wmask = d->wmask;
467 for (i = 0x00; i < 0xff; i++) {
468 if (i<=0x03 || (i>=0x08 && i<=0x3f)) {
469 wmask[i] = 0x00;
470 }
471 }
472
db10ca90 473 memory_region_init_io(&vt82c->superio, OBJECT(d), &superio_ops,
2c9b15ca 474 &vt82c->superio_conf, "superio", 2);
bcc37e24
JK
475 memory_region_set_enabled(&vt82c->superio, false);
476 /* The floppy also uses 0x3f0 and 0x3f1.
477 * But we do not emulate a floppy, so just set it here. */
478 memory_region_add_subregion(isa_bus->address_space_io, 0x3f0,
479 &vt82c->superio);
480
edf79e66 481 qemu_register_reset(vt82c686b_reset, d);
edf79e66
HC
482}
483
728d8910 484ISABus *vt82c686b_isa_init(PCIBus *bus, int devfn)
edf79e66
HC
485{
486 PCIDevice *d;
487
417349e6
GA
488 d = pci_create_simple_multifunction(bus, devfn, true,
489 TYPE_VT82C686B_DEVICE);
edf79e66 490
2ae0e48d 491 return ISA_BUS(qdev_get_child_bus(DEVICE(d), "isa.0"));
edf79e66
HC
492}
493
40021f08
AL
494static void via_class_init(ObjectClass *klass, void *data)
495{
39bffca2 496 DeviceClass *dc = DEVICE_CLASS(klass);
40021f08
AL
497 PCIDeviceClass *k = PCI_DEVICE_CLASS(klass);
498
9af21dbe 499 k->realize = vt82c686b_realize;
40021f08
AL
500 k->config_write = vt82c686b_write_config;
501 k->vendor_id = PCI_VENDOR_ID_VIA;
502 k->device_id = PCI_DEVICE_ID_VIA_ISA_BRIDGE;
503 k->class_id = PCI_CLASS_BRIDGE_ISA;
504 k->revision = 0x40;
39bffca2 505 dc->desc = "ISA bridge";
39bffca2 506 dc->vmsd = &vmstate_via;
04916ee9
MA
507 /*
508 * Reason: part of VIA VT82C686 southbridge, needs to be wired up,
509 * e.g. by mips_fulong2e_init()
510 */
e90f2a8c 511 dc->user_creatable = false;
40021f08
AL
512}
513
8c43a6f0 514static const TypeInfo via_info = {
417349e6 515 .name = TYPE_VT82C686B_DEVICE,
39bffca2
AL
516 .parent = TYPE_PCI_DEVICE,
517 .instance_size = sizeof(VT82C686BState),
518 .class_init = via_class_init,
fd3b02c8
EH
519 .interfaces = (InterfaceInfo[]) {
520 { INTERFACE_CONVENTIONAL_PCI_DEVICE },
521 { },
522 },
edf79e66
HC
523};
524
98cf824b
PMD
525static void vt82c686b_superio_class_init(ObjectClass *klass, void *data)
526{
527 ISASuperIOClass *sc = ISA_SUPERIO_CLASS(klass);
528
529 sc->serial.count = 2;
530 sc->parallel.count = 1;
531 sc->ide.count = 0;
532 sc->floppy.count = 1;
533}
534
535static const TypeInfo via_superio_info = {
536 .name = TYPE_VT82C686B_SUPERIO,
537 .parent = TYPE_ISA_SUPERIO,
538 .instance_size = sizeof(ISASuperIODevice),
539 .class_size = sizeof(ISASuperIOClass),
540 .class_init = vt82c686b_superio_class_init,
541};
542
83f7d43a 543static void vt82c686b_register_types(void)
edf79e66 544{
83f7d43a
AF
545 type_register_static(&via_ac97_info);
546 type_register_static(&via_mc97_info);
547 type_register_static(&via_pm_info);
98cf824b 548 type_register_static(&via_superio_info);
39bffca2 549 type_register_static(&via_info);
edf79e66 550}
83f7d43a
AF
551
552type_init(vt82c686b_register_types)
This page took 0.790628 seconds and 4 git commands to generate.