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