]> git.ipfire.org Git - thirdparty/qemu.git/blame - hw/isa/vt82c686.c
hw/isa/vt82c686: Instantiate AC97 and MC97 functions in host device
[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.
f9f0c9e2
BZ
11 *
12 * VT8231 south bridge support and general clean up to allow it
13 * Copyright (c) 2018-2020 BALATON Zoltan
edf79e66
HC
14 */
15
0430891c 16#include "qemu/osdep.h"
0d09e41a 17#include "hw/isa/vt82c686.h"
83c9f4ca 18#include "hw/pci/pci.h"
a27bd6c7 19#include "hw/qdev-properties.h"
9eb6abbf 20#include "hw/ide/pci.h"
0d09e41a 21#include "hw/isa/isa.h"
98cf824b 22#include "hw/isa/superio.h"
3dc31cb8
BZ
23#include "hw/intc/i8259.h"
24#include "hw/irq.h"
25#include "hw/dma/i8257.h"
1a99ddbe 26#include "hw/usb/hcd-uhci.h"
3dc31cb8
BZ
27#include "hw/timer/i8254.h"
28#include "hw/rtc/mc146818rtc.h"
d6454270 29#include "migration/vmstate.h"
0d09e41a
PB
30#include "hw/isa/apm.h"
31#include "hw/acpi/acpi.h"
32#include "hw/i2c/pm_smbus.h"
9307d06d 33#include "qapi/error.h"
2c4c556e 34#include "qemu/log.h"
0b8fa32f 35#include "qemu/module.h"
911629e6 36#include "qemu/range.h"
1de7afc9 37#include "qemu/timer.h"
ff413a1f 38#include "trace.h"
edf79e66 39
e1a69736
BZ
40#define TYPE_VIA_PM "via-pm"
41OBJECT_DECLARE_SIMPLE_TYPE(ViaPMState, VIA_PM)
edf79e66 42
e1a69736 43struct ViaPMState {
edf79e66 44 PCIDevice dev;
a2902821 45 MemoryRegion io;
355bf2e5 46 ACPIREGS ar;
edf79e66 47 APMState apm;
edf79e66 48 PMSMBus smb;
db1015e9 49};
edf79e66 50
e1a69736 51static void pm_io_space_update(ViaPMState *s)
edf79e66 52{
3ab1eea6 53 uint32_t pmbase = pci_get_long(s->dev.config + 0x48) & 0xff80UL;
edf79e66 54
a2902821 55 memory_region_transaction_begin();
3ab1eea6
BZ
56 memory_region_set_address(&s->io, pmbase);
57 memory_region_set_enabled(&s->io, s->dev.config[0x41] & BIT(7));
a2902821 58 memory_region_transaction_commit();
edf79e66
HC
59}
60
e1a69736 61static void smb_io_space_update(ViaPMState *s)
911629e6
BZ
62{
63 uint32_t smbase = pci_get_long(s->dev.config + 0x90) & 0xfff0UL;
64
65 memory_region_transaction_begin();
66 memory_region_set_address(&s->smb.io, smbase);
67 memory_region_set_enabled(&s->smb.io, s->dev.config[0xd2] & BIT(0));
68 memory_region_transaction_commit();
69}
70
edf79e66
HC
71static int vmstate_acpi_post_load(void *opaque, int version_id)
72{
e1a69736 73 ViaPMState *s = opaque;
edf79e66
HC
74
75 pm_io_space_update(s);
911629e6 76 smb_io_space_update(s);
edf79e66
HC
77 return 0;
78}
79
80static const VMStateDescription vmstate_acpi = {
81 .name = "vt82c686b_pm",
82 .version_id = 1,
83 .minimum_version_id = 1,
edf79e66 84 .post_load = vmstate_acpi_post_load,
d49805ae 85 .fields = (VMStateField[]) {
e1a69736
BZ
86 VMSTATE_PCI_DEVICE(dev, ViaPMState),
87 VMSTATE_UINT16(ar.pm1.evt.sts, ViaPMState),
88 VMSTATE_UINT16(ar.pm1.evt.en, ViaPMState),
89 VMSTATE_UINT16(ar.pm1.cnt.cnt, ViaPMState),
90 VMSTATE_STRUCT(apm, ViaPMState, 0, vmstate_apm, APMState),
91 VMSTATE_TIMER_PTR(ar.tmr.timer, ViaPMState),
92 VMSTATE_INT64(ar.tmr.overflow_time, ViaPMState),
edf79e66
HC
93 VMSTATE_END_OF_LIST()
94 }
95};
96
94349bff
BZ
97static void pm_write_config(PCIDevice *d, uint32_t addr, uint32_t val, int len)
98{
e1a69736 99 ViaPMState *s = VIA_PM(d);
911629e6 100
94349bff
BZ
101 trace_via_pm_write(addr, val, len);
102 pci_default_write_config(d, addr, val, len);
3ab1eea6
BZ
103 if (ranges_overlap(addr, len, 0x48, 4)) {
104 uint32_t v = pci_get_long(s->dev.config + 0x48);
105 pci_set_long(s->dev.config + 0x48, (v & 0xff80UL) | 1);
106 }
107 if (range_covers_byte(addr, len, 0x41)) {
108 pm_io_space_update(s);
109 }
911629e6
BZ
110 if (ranges_overlap(addr, len, 0x90, 4)) {
111 uint32_t v = pci_get_long(s->dev.config + 0x90);
112 pci_set_long(s->dev.config + 0x90, (v & 0xfff0UL) | 1);
113 }
114 if (range_covers_byte(addr, len, 0xd2)) {
115 s->dev.config[0xd2] &= 0xf;
116 smb_io_space_update(s);
117 }
94349bff
BZ
118}
119
35e360ed
BZ
120static void pm_io_write(void *op, hwaddr addr, uint64_t data, unsigned size)
121{
122 trace_via_pm_io_write(addr, data, size);
123}
124
125static uint64_t pm_io_read(void *op, hwaddr addr, unsigned size)
126{
127 trace_via_pm_io_read(addr, 0, size);
128 return 0;
129}
130
131static const MemoryRegionOps pm_io_ops = {
132 .read = pm_io_read,
133 .write = pm_io_write,
134 .endianness = DEVICE_NATIVE_ENDIAN,
135 .impl = {
136 .min_access_size = 1,
137 .max_access_size = 1,
138 },
139};
140
e1a69736 141static void pm_update_sci(ViaPMState *s)
94349bff
BZ
142{
143 int sci_level, pmsts;
144
145 pmsts = acpi_pm1_evt_get_sts(&s->ar);
146 sci_level = (((pmsts & s->ar.pm1.evt.en) &
147 (ACPI_BITMASK_RT_CLOCK_ENABLE |
148 ACPI_BITMASK_POWER_BUTTON_ENABLE |
149 ACPI_BITMASK_GLOBAL_LOCK_ENABLE |
150 ACPI_BITMASK_TIMER_ENABLE)) != 0);
0fae92a3
IY
151 if (pci_get_byte(s->dev.config + PCI_INTERRUPT_PIN)) {
152 /*
153 * FIXME:
154 * Fix device model that realizes this PM device and remove
155 * this work around.
156 * The device model should wire SCI and setup
157 * PCI_INTERRUPT_PIN properly.
158 * If PIN# = 0(interrupt pin isn't used), don't raise SCI as
159 * work around.
160 */
161 pci_set_irq(&s->dev, sci_level);
162 }
94349bff
BZ
163 /* schedule a timer interruption if needed */
164 acpi_pm_tmr_update(&s->ar, (s->ar.pm1.evt.en & ACPI_BITMASK_TIMER_ENABLE) &&
165 !(pmsts & ACPI_BITMASK_TIMER_STATUS));
166}
167
168static void pm_tmr_timer(ACPIREGS *ar)
169{
e1a69736 170 ViaPMState *s = container_of(ar, ViaPMState, ar);
94349bff
BZ
171 pm_update_sci(s);
172}
173
e1a69736 174static void via_pm_reset(DeviceState *d)
911629e6 175{
e1a69736 176 ViaPMState *s = VIA_PM(d);
911629e6 177
9af8e529
BZ
178 memset(s->dev.config + PCI_CONFIG_HEADER_SIZE, 0,
179 PCI_CONFIG_SPACE_SIZE - PCI_CONFIG_HEADER_SIZE);
180 /* Power Management IO base */
181 pci_set_long(s->dev.config + 0x48, 1);
911629e6
BZ
182 /* SMBus IO base */
183 pci_set_long(s->dev.config + 0x90, 1);
911629e6 184
44421c60
IY
185 acpi_pm1_evt_reset(&s->ar);
186 acpi_pm1_cnt_reset(&s->ar);
187 acpi_pm_tmr_reset(&s->ar);
188 pm_update_sci(s);
189
3ab1eea6 190 pm_io_space_update(s);
911629e6
BZ
191 smb_io_space_update(s);
192}
193
e1a69736 194static void via_pm_realize(PCIDevice *dev, Error **errp)
edf79e66 195{
e1a69736 196 ViaPMState *s = VIA_PM(dev);
edf79e66 197
3ab1eea6 198 pci_set_word(dev->config + PCI_STATUS, PCI_STATUS_FAST_BACK |
edf79e66
HC
199 PCI_STATUS_DEVSEL_MEDIUM);
200
a30c34d2 201 pm_smbus_init(DEVICE(s), &s->smb, false);
911629e6
BZ
202 memory_region_add_subregion(pci_address_space_io(dev), 0, &s->smb.io);
203 memory_region_set_enabled(&s->smb.io, false);
edf79e66 204
42d8a3cf 205 apm_init(dev, &s->apm, NULL, s);
edf79e66 206
e1a69736 207 memory_region_init_io(&s->io, OBJECT(dev), &pm_io_ops, s, "via-pm", 128);
35e360ed 208 memory_region_add_subregion(pci_address_space_io(dev), 0, &s->io);
a2902821 209 memory_region_set_enabled(&s->io, false);
edf79e66 210
77d58b1e 211 acpi_pm_tmr_init(&s->ar, pm_tmr_timer, &s->io);
b5a7c024 212 acpi_pm1_evt_init(&s->ar, pm_tmr_timer, &s->io);
6be8cf56 213 acpi_pm1_cnt_init(&s->ar, &s->io, false, false, 2, false);
edf79e66
HC
214}
215
e1a69736
BZ
216typedef struct via_pm_init_info {
217 uint16_t device_id;
218} ViaPMInitInfo;
219
40021f08
AL
220static void via_pm_class_init(ObjectClass *klass, void *data)
221{
39bffca2 222 DeviceClass *dc = DEVICE_CLASS(klass);
40021f08 223 PCIDeviceClass *k = PCI_DEVICE_CLASS(klass);
e1a69736 224 ViaPMInitInfo *info = data;
40021f08 225
e1a69736 226 k->realize = via_pm_realize;
40021f08
AL
227 k->config_write = pm_write_config;
228 k->vendor_id = PCI_VENDOR_ID_VIA;
e1a69736 229 k->device_id = info->device_id;
40021f08
AL
230 k->class_id = PCI_CLASS_BRIDGE_OTHER;
231 k->revision = 0x40;
e1a69736 232 dc->reset = via_pm_reset;
084bf4b4
BZ
233 /* Reason: part of VIA south bridge, does not exist stand alone */
234 dc->user_creatable = false;
39bffca2 235 dc->vmsd = &vmstate_acpi;
40021f08
AL
236}
237
8c43a6f0 238static const TypeInfo via_pm_info = {
e1a69736 239 .name = TYPE_VIA_PM,
39bffca2 240 .parent = TYPE_PCI_DEVICE,
e1a69736
BZ
241 .instance_size = sizeof(ViaPMState),
242 .abstract = true,
fd3b02c8
EH
243 .interfaces = (InterfaceInfo[]) {
244 { INTERFACE_CONVENTIONAL_PCI_DEVICE },
245 { },
246 },
edf79e66
HC
247};
248
e1a69736
BZ
249static const ViaPMInitInfo vt82c686b_pm_init_info = {
250 .device_id = PCI_DEVICE_ID_VIA_82C686B_PM,
251};
252
d1053772
BB
253#define TYPE_VT82C686B_PM "vt82c686b-pm"
254
e1a69736
BZ
255static const TypeInfo vt82c686b_pm_info = {
256 .name = TYPE_VT82C686B_PM,
257 .parent = TYPE_VIA_PM,
258 .class_init = via_pm_class_init,
259 .class_data = (void *)&vt82c686b_pm_init_info,
260};
261
262static const ViaPMInitInfo vt8231_pm_init_info = {
263 .device_id = PCI_DEVICE_ID_VIA_8231_PM,
264};
265
d1053772
BB
266#define TYPE_VT8231_PM "vt8231-pm"
267
e1a69736
BZ
268static const TypeInfo vt8231_pm_info = {
269 .name = TYPE_VT8231_PM,
270 .parent = TYPE_VIA_PM,
271 .class_init = via_pm_class_init,
272 .class_data = (void *)&vt8231_pm_init_info,
273};
274
94349bff 275
f028c2de
BZ
276#define TYPE_VIA_SUPERIO "via-superio"
277OBJECT_DECLARE_SIMPLE_TYPE(ViaSuperIOState, VIA_SUPERIO)
278
279struct ViaSuperIOState {
280 ISASuperIODevice superio;
94349bff 281 uint8_t regs[0x100];
f028c2de 282 const MemoryRegionOps *io_ops;
94349bff 283 MemoryRegion io;
f028c2de
BZ
284};
285
286static inline void via_superio_io_enable(ViaSuperIOState *s, bool enable)
287{
288 memory_region_set_enabled(&s->io, enable);
289}
290
291static void via_superio_realize(DeviceState *d, Error **errp)
292{
293 ViaSuperIOState *s = VIA_SUPERIO(d);
294 ISASuperIOClass *ic = ISA_SUPERIO_GET_CLASS(s);
295 Error *local_err = NULL;
296
297 assert(s->io_ops);
298 ic->parent_realize(d, &local_err);
299 if (local_err) {
300 error_propagate(errp, local_err);
301 return;
302 }
303 memory_region_init_io(&s->io, OBJECT(d), s->io_ops, s, "via-superio", 2);
304 memory_region_set_enabled(&s->io, false);
305 /* The floppy also uses 0x3f0 and 0x3f1 but this seems to work anyway */
306 memory_region_add_subregion(isa_address_space_io(ISA_DEVICE(s)), 0x3f0,
307 &s->io);
308}
309
310static uint64_t via_superio_cfg_read(void *opaque, hwaddr addr, unsigned size)
311{
312 ViaSuperIOState *sc = opaque;
313 uint8_t idx = sc->regs[0];
314 uint8_t val = sc->regs[idx];
315
316 if (addr == 0) {
317 return idx;
318 }
319 if (addr == 1 && idx == 0) {
320 val = 0; /* reading reg 0 where we store index value */
321 }
322 trace_via_superio_read(idx, val);
323 return val;
324}
94349bff 325
f028c2de 326static void via_superio_class_init(ObjectClass *klass, void *data)
94349bff 327{
f028c2de
BZ
328 DeviceClass *dc = DEVICE_CLASS(klass);
329 ISASuperIOClass *sc = ISA_SUPERIO_CLASS(klass);
330
331 sc->parent_realize = dc->realize;
332 dc->realize = via_superio_realize;
333}
334
335static const TypeInfo via_superio_info = {
336 .name = TYPE_VIA_SUPERIO,
337 .parent = TYPE_ISA_SUPERIO,
338 .instance_size = sizeof(ViaSuperIOState),
339 .class_size = sizeof(ISASuperIOClass),
340 .class_init = via_superio_class_init,
341 .abstract = true,
342};
343
344#define TYPE_VT82C686B_SUPERIO "vt82c686b-superio"
94349bff 345
f028c2de
BZ
346static void vt82c686b_superio_cfg_write(void *opaque, hwaddr addr,
347 uint64_t data, unsigned size)
94349bff 348{
f028c2de 349 ViaSuperIOState *sc = opaque;
c953bf71 350 uint8_t idx = sc->regs[0];
94349bff 351
cc2b4550
BZ
352 if (addr == 0) { /* config index register */
353 sc->regs[0] = data;
2b98dca9
BZ
354 return;
355 }
cc2b4550
BZ
356
357 /* config data register */
358 trace_via_superio_write(idx, data);
2b98dca9
BZ
359 switch (idx) {
360 case 0x00 ... 0xdf:
361 case 0xe4:
362 case 0xe5:
363 case 0xe9 ... 0xed:
364 case 0xf3:
365 case 0xf5:
366 case 0xf7:
367 case 0xf9 ... 0xfb:
368 case 0xfd ... 0xff:
b7741b77
BZ
369 /* ignore write to read only registers */
370 return;
2b98dca9
BZ
371 /* case 0xe6 ... 0xe8: Should set base port of parallel and serial */
372 default:
2c4c556e
BZ
373 qemu_log_mask(LOG_UNIMP,
374 "via_superio_cfg: unimplemented register 0x%x\n", idx);
2b98dca9
BZ
375 break;
376 }
cc2b4550 377 sc->regs[idx] = data;
94349bff
BZ
378}
379
f028c2de
BZ
380static const MemoryRegionOps vt82c686b_superio_cfg_ops = {
381 .read = via_superio_cfg_read,
382 .write = vt82c686b_superio_cfg_write,
94349bff
BZ
383 .endianness = DEVICE_NATIVE_ENDIAN,
384 .impl = {
385 .min_access_size = 1,
386 .max_access_size = 1,
387 },
388};
389
f028c2de
BZ
390static void vt82c686b_superio_reset(DeviceState *dev)
391{
392 ViaSuperIOState *s = VIA_SUPERIO(dev);
393
394 memset(s->regs, 0, sizeof(s->regs));
395 /* Device ID */
396 vt82c686b_superio_cfg_write(s, 0, 0xe0, 1);
397 vt82c686b_superio_cfg_write(s, 1, 0x3c, 1);
398 /* Function select - all disabled */
399 vt82c686b_superio_cfg_write(s, 0, 0xe2, 1);
400 vt82c686b_superio_cfg_write(s, 1, 0x03, 1);
401 /* Floppy ctrl base addr 0x3f0-7 */
402 vt82c686b_superio_cfg_write(s, 0, 0xe3, 1);
403 vt82c686b_superio_cfg_write(s, 1, 0xfc, 1);
404 /* Parallel port base addr 0x378-f */
405 vt82c686b_superio_cfg_write(s, 0, 0xe6, 1);
406 vt82c686b_superio_cfg_write(s, 1, 0xde, 1);
407 /* Serial port 1 base addr 0x3f8-f */
408 vt82c686b_superio_cfg_write(s, 0, 0xe7, 1);
409 vt82c686b_superio_cfg_write(s, 1, 0xfe, 1);
410 /* Serial port 2 base addr 0x2f8-f */
411 vt82c686b_superio_cfg_write(s, 0, 0xe8, 1);
412 vt82c686b_superio_cfg_write(s, 1, 0xbe, 1);
413
414 vt82c686b_superio_cfg_write(s, 0, 0, 1);
415}
416
417static void vt82c686b_superio_init(Object *obj)
418{
419 VIA_SUPERIO(obj)->io_ops = &vt82c686b_superio_cfg_ops;
420}
421
422static void vt82c686b_superio_class_init(ObjectClass *klass, void *data)
94349bff 423{
f028c2de
BZ
424 DeviceClass *dc = DEVICE_CLASS(klass);
425 ISASuperIOClass *sc = ISA_SUPERIO_CLASS(klass);
426
427 dc->reset = vt82c686b_superio_reset;
428 sc->serial.count = 2;
429 sc->parallel.count = 1;
430 sc->ide.count = 0; /* emulated by via-ide */
431 sc->floppy.count = 1;
432}
433
434static const TypeInfo vt82c686b_superio_info = {
435 .name = TYPE_VT82C686B_SUPERIO,
436 .parent = TYPE_VIA_SUPERIO,
437 .instance_size = sizeof(ViaSuperIOState),
438 .instance_init = vt82c686b_superio_init,
439 .class_size = sizeof(ISASuperIOClass),
440 .class_init = vt82c686b_superio_class_init,
441};
442
94349bff 443
ab74864f
BZ
444#define TYPE_VT8231_SUPERIO "vt8231-superio"
445
446static void vt8231_superio_cfg_write(void *opaque, hwaddr addr,
447 uint64_t data, unsigned size)
448{
449 ViaSuperIOState *sc = opaque;
c953bf71 450 uint8_t idx = sc->regs[0];
94349bff 451
ab74864f
BZ
452 if (addr == 0) { /* config index register */
453 sc->regs[0] = data;
454 return;
c953bf71 455 }
ab74864f
BZ
456
457 /* config data register */
458 trace_via_superio_write(idx, data);
459 switch (idx) {
460 case 0x00 ... 0xdf:
461 case 0xe7 ... 0xef:
462 case 0xf0 ... 0xf1:
463 case 0xf5:
464 case 0xf8:
465 case 0xfd:
466 /* ignore write to read only registers */
467 return;
468 default:
469 qemu_log_mask(LOG_UNIMP,
470 "via_superio_cfg: unimplemented register 0x%x\n", idx);
471 break;
c953bf71 472 }
ab74864f 473 sc->regs[idx] = data;
94349bff
BZ
474}
475
ab74864f
BZ
476static const MemoryRegionOps vt8231_superio_cfg_ops = {
477 .read = via_superio_cfg_read,
478 .write = vt8231_superio_cfg_write,
94349bff
BZ
479 .endianness = DEVICE_NATIVE_ENDIAN,
480 .impl = {
481 .min_access_size = 1,
482 .max_access_size = 1,
483 },
484};
485
ab74864f
BZ
486static void vt8231_superio_reset(DeviceState *dev)
487{
488 ViaSuperIOState *s = VIA_SUPERIO(dev);
489
490 memset(s->regs, 0, sizeof(s->regs));
491 /* Device ID */
492 s->regs[0xf0] = 0x3c;
493 /* Device revision */
494 s->regs[0xf1] = 0x01;
495 /* Function select - all disabled */
496 vt8231_superio_cfg_write(s, 0, 0xf2, 1);
497 vt8231_superio_cfg_write(s, 1, 0x03, 1);
498 /* Serial port base addr */
499 vt8231_superio_cfg_write(s, 0, 0xf4, 1);
500 vt8231_superio_cfg_write(s, 1, 0xfe, 1);
501 /* Parallel port base addr */
502 vt8231_superio_cfg_write(s, 0, 0xf6, 1);
503 vt8231_superio_cfg_write(s, 1, 0xde, 1);
504 /* Floppy ctrl base addr */
505 vt8231_superio_cfg_write(s, 0, 0xf7, 1);
506 vt8231_superio_cfg_write(s, 1, 0xfc, 1);
507
508 vt8231_superio_cfg_write(s, 0, 0, 1);
509}
510
511static void vt8231_superio_init(Object *obj)
512{
513 VIA_SUPERIO(obj)->io_ops = &vt8231_superio_cfg_ops;
514}
94349bff 515
ab74864f
BZ
516static uint16_t vt8231_superio_serial_iobase(ISASuperIODevice *sio,
517 uint8_t index)
518{
519 return 0x2f8; /* FIXME: This should be settable via registers f2-f4 */
520}
94349bff 521
ab74864f
BZ
522static void vt8231_superio_class_init(ObjectClass *klass, void *data)
523{
524 DeviceClass *dc = DEVICE_CLASS(klass);
525 ISASuperIOClass *sc = ISA_SUPERIO_CLASS(klass);
526
527 dc->reset = vt8231_superio_reset;
528 sc->serial.count = 1;
529 sc->serial.get_iobase = vt8231_superio_serial_iobase;
530 sc->parallel.count = 1;
531 sc->ide.count = 0; /* emulated by via-ide */
532 sc->floppy.count = 1;
533}
534
535static const TypeInfo vt8231_superio_info = {
536 .name = TYPE_VT8231_SUPERIO,
537 .parent = TYPE_VIA_SUPERIO,
538 .instance_size = sizeof(ViaSuperIOState),
539 .instance_init = vt8231_superio_init,
540 .class_size = sizeof(ISASuperIOClass),
541 .class_init = vt8231_superio_class_init,
542};
543
544
2e84e107
BZ
545#define TYPE_VIA_ISA "via-isa"
546OBJECT_DECLARE_SIMPLE_TYPE(ViaISAState, VIA_ISA)
94349bff 547
2e84e107 548struct ViaISAState {
94349bff 549 PCIDevice dev;
3dc31cb8 550 qemu_irq cpu_intr;
a4d65b70 551 qemu_irq *isa_irqs;
8e4022a8 552 ViaSuperIOState via_sio;
9eb6abbf 553 PCIIDEState ide;
1a99ddbe 554 UHCIState uhci[2];
d1053772 555 ViaPMState pm;
0a8d405d
BB
556 PCIDevice ac97;
557 PCIDevice mc97;
94349bff
BZ
558};
559
2e84e107
BZ
560static const VMStateDescription vmstate_via = {
561 .name = "via-isa",
562 .version_id = 1,
563 .minimum_version_id = 1,
564 .fields = (VMStateField[]) {
565 VMSTATE_PCI_DEVICE(dev, ViaISAState),
566 VMSTATE_END_OF_LIST()
567 }
568};
569
9eb6abbf
BB
570static void via_isa_init(Object *obj)
571{
572 ViaISAState *s = VIA_ISA(obj);
573
574 object_initialize_child(obj, "ide", &s->ide, TYPE_VIA_IDE);
1a99ddbe
BB
575 object_initialize_child(obj, "uhci1", &s->uhci[0], TYPE_VT82C686B_USB_UHCI);
576 object_initialize_child(obj, "uhci2", &s->uhci[1], TYPE_VT82C686B_USB_UHCI);
0a8d405d
BB
577 object_initialize_child(obj, "ac97", &s->ac97, TYPE_VIA_AC97);
578 object_initialize_child(obj, "mc97", &s->mc97, TYPE_VIA_MC97);
9eb6abbf
BB
579}
580
2e84e107
BZ
581static const TypeInfo via_isa_info = {
582 .name = TYPE_VIA_ISA,
583 .parent = TYPE_PCI_DEVICE,
584 .instance_size = sizeof(ViaISAState),
9eb6abbf 585 .instance_init = via_isa_init,
2e84e107
BZ
586 .abstract = true,
587 .interfaces = (InterfaceInfo[]) {
588 { INTERFACE_CONVENTIONAL_PCI_DEVICE },
589 { },
590 },
94349bff
BZ
591};
592
a4d65b70
BZ
593void via_isa_set_irq(PCIDevice *d, int n, int level)
594{
595 ViaISAState *s = VIA_ISA(d);
596 qemu_set_irq(s->isa_irqs[n], level);
597}
598
3dc31cb8
BZ
599static void via_isa_request_i8259_irq(void *opaque, int irq, int level)
600{
2e84e107 601 ViaISAState *s = opaque;
3dc31cb8
BZ
602 qemu_set_irq(s->cpu_intr, level);
603}
604
3a2f166f
BZ
605static void via_isa_realize(PCIDevice *d, Error **errp)
606{
607 ViaISAState *s = VIA_ISA(d);
608 DeviceState *dev = DEVICE(d);
9eb6abbf 609 PCIBus *pci_bus = pci_get_bus(d);
3a2f166f 610 qemu_irq *isa_irq;
91ba92d1 611 ISABus *isa_bus;
3a2f166f
BZ
612 int i;
613
614 qdev_init_gpio_out(dev, &s->cpu_intr, 1);
615 isa_irq = qemu_allocate_irqs(via_isa_request_i8259_irq, s, 1);
dd28cc87 616 isa_bus = isa_bus_new(dev, pci_address_space(d), pci_address_space_io(d),
c1561d1d
BB
617 errp);
618
619 if (!isa_bus) {
620 return;
621 }
622
91ba92d1
BB
623 s->isa_irqs = i8259_init(isa_bus, *isa_irq);
624 isa_bus_irqs(isa_bus, s->isa_irqs);
625 i8254_pit_init(isa_bus, 0x40, 0, NULL);
626 i8257_dma_init(isa_bus, 0);
627 mc146818_rtc_init(isa_bus, 2000, NULL);
3a2f166f
BZ
628
629 for (i = 0; i < PCI_CONFIG_HEADER_SIZE; i++) {
630 if (i < PCI_COMMAND || i >= PCI_REVISION_ID) {
631 d->wmask[i] = 0;
632 }
633 }
8e4022a8
BB
634
635 /* Super I/O */
91ba92d1 636 if (!qdev_realize(DEVICE(&s->via_sio), BUS(isa_bus), errp)) {
8e4022a8
BB
637 return;
638 }
9eb6abbf
BB
639
640 /* Function 1: IDE */
641 qdev_prop_set_int32(DEVICE(&s->ide), "addr", d->devfn + 1);
642 if (!qdev_realize(DEVICE(&s->ide), BUS(pci_bus), errp)) {
643 return;
644 }
1a99ddbe
BB
645
646 /* Functions 2-3: USB Ports */
647 for (i = 0; i < ARRAY_SIZE(s->uhci); i++) {
648 qdev_prop_set_int32(DEVICE(&s->uhci[i]), "addr", d->devfn + 2 + i);
649 if (!qdev_realize(DEVICE(&s->uhci[i]), BUS(pci_bus), errp)) {
650 return;
651 }
652 }
d1053772
BB
653
654 /* Function 4: Power Management */
655 qdev_prop_set_int32(DEVICE(&s->pm), "addr", d->devfn + 4);
656 if (!qdev_realize(DEVICE(&s->pm), BUS(pci_bus), errp)) {
657 return;
658 }
0a8d405d
BB
659
660 /* Function 5: AC97 Audio */
661 qdev_prop_set_int32(DEVICE(&s->ac97), "addr", d->devfn + 5);
662 if (!qdev_realize(DEVICE(&s->ac97), BUS(pci_bus), errp)) {
663 return;
664 }
665
666 /* Function 6: MC97 Modem */
667 qdev_prop_set_int32(DEVICE(&s->mc97), "addr", d->devfn + 6);
668 if (!qdev_realize(DEVICE(&s->mc97), BUS(pci_bus), errp)) {
669 return;
670 }
3a2f166f
BZ
671}
672
2e84e107
BZ
673/* TYPE_VT82C686B_ISA */
674
94349bff
BZ
675static void vt82c686b_write_config(PCIDevice *d, uint32_t addr,
676 uint32_t val, int len)
677{
2e84e107 678 ViaISAState *s = VIA_ISA(d);
94349bff
BZ
679
680 trace_via_isa_write(addr, val, len);
681 pci_default_write_config(d, addr, val, len);
682 if (addr == 0x85) {
683 /* BIT(1): enable or disable superio config io ports */
8e4022a8 684 via_superio_io_enable(&s->via_sio, val & BIT(1));
94349bff
BZ
685 }
686}
687
94349bff
BZ
688static void vt82c686b_isa_reset(DeviceState *dev)
689{
2e84e107 690 ViaISAState *s = VIA_ISA(dev);
94349bff
BZ
691 uint8_t *pci_conf = s->dev.config;
692
693 pci_set_long(pci_conf + PCI_CAPABILITY_LIST, 0x000000c0);
694 pci_set_word(pci_conf + PCI_COMMAND, PCI_COMMAND_IO | PCI_COMMAND_MEMORY |
695 PCI_COMMAND_MASTER | PCI_COMMAND_SPECIAL);
696 pci_set_word(pci_conf + PCI_STATUS, PCI_STATUS_DEVSEL_MEDIUM);
697
698 pci_conf[0x48] = 0x01; /* Miscellaneous Control 3 */
699 pci_conf[0x4a] = 0x04; /* IDE interrupt Routing */
700 pci_conf[0x4f] = 0x03; /* DMA/Master Mem Access Control 3 */
701 pci_conf[0x50] = 0x2d; /* PnP DMA Request Control */
702 pci_conf[0x59] = 0x04;
703 pci_conf[0x5a] = 0x04; /* KBC/RTC Control*/
704 pci_conf[0x5f] = 0x04;
705 pci_conf[0x77] = 0x10; /* GPIO Control 1/2/3/4 */
94349bff
BZ
706}
707
8e4022a8 708static void vt82c686b_init(Object *obj)
edf79e66 709{
8e4022a8 710 ViaISAState *s = VIA_ISA(obj);
edf79e66 711
8e4022a8 712 object_initialize_child(obj, "sio", &s->via_sio, TYPE_VT82C686B_SUPERIO);
d1053772 713 object_initialize_child(obj, "pm", &s->pm, TYPE_VT82C686B_PM);
edf79e66
HC
714}
715
2e84e107 716static void vt82c686b_class_init(ObjectClass *klass, void *data)
40021f08 717{
39bffca2 718 DeviceClass *dc = DEVICE_CLASS(klass);
40021f08
AL
719 PCIDeviceClass *k = PCI_DEVICE_CLASS(klass);
720
8e4022a8 721 k->realize = via_isa_realize;
40021f08
AL
722 k->config_write = vt82c686b_write_config;
723 k->vendor_id = PCI_VENDOR_ID_VIA;
2e84e107 724 k->device_id = PCI_DEVICE_ID_VIA_82C686B_ISA;
40021f08
AL
725 k->class_id = PCI_CLASS_BRIDGE_ISA;
726 k->revision = 0x40;
9dc1a769 727 dc->reset = vt82c686b_isa_reset;
39bffca2 728 dc->desc = "ISA bridge";
39bffca2 729 dc->vmsd = &vmstate_via;
2e84e107 730 /* Reason: part of VIA VT82C686 southbridge, needs to be wired up */
e90f2a8c 731 dc->user_creatable = false;
40021f08
AL
732}
733
2e84e107 734static const TypeInfo vt82c686b_isa_info = {
0f798461 735 .name = TYPE_VT82C686B_ISA,
2e84e107
BZ
736 .parent = TYPE_VIA_ISA,
737 .instance_size = sizeof(ViaISAState),
8e4022a8 738 .instance_init = vt82c686b_init,
2e84e107 739 .class_init = vt82c686b_class_init,
edf79e66
HC
740};
741
f9f0c9e2 742/* TYPE_VT8231_ISA */
94349bff 743
f9f0c9e2
BZ
744static void vt8231_write_config(PCIDevice *d, uint32_t addr,
745 uint32_t val, int len)
98cf824b 746{
f9f0c9e2 747 ViaISAState *s = VIA_ISA(d);
98cf824b 748
f9f0c9e2
BZ
749 trace_via_isa_write(addr, val, len);
750 pci_default_write_config(d, addr, val, len);
751 if (addr == 0x50) {
752 /* BIT(2): enable or disable superio config io ports */
8e4022a8 753 via_superio_io_enable(&s->via_sio, val & BIT(2));
f9f0c9e2 754 }
98cf824b
PMD
755}
756
f9f0c9e2
BZ
757static void vt8231_isa_reset(DeviceState *dev)
758{
759 ViaISAState *s = VIA_ISA(dev);
760 uint8_t *pci_conf = s->dev.config;
761
762 pci_set_long(pci_conf + PCI_CAPABILITY_LIST, 0x000000c0);
763 pci_set_word(pci_conf + PCI_COMMAND, PCI_COMMAND_IO | PCI_COMMAND_MEMORY |
764 PCI_COMMAND_MASTER | PCI_COMMAND_SPECIAL);
765 pci_set_word(pci_conf + PCI_STATUS, PCI_STATUS_DEVSEL_MEDIUM);
766
767 pci_conf[0x58] = 0x40; /* Miscellaneous Control 0 */
768 pci_conf[0x67] = 0x08; /* Fast IR Config */
769 pci_conf[0x6b] = 0x01; /* Fast IR I/O Base */
770}
771
8e4022a8 772static void vt8231_init(Object *obj)
f9f0c9e2 773{
8e4022a8 774 ViaISAState *s = VIA_ISA(obj);
f9f0c9e2 775
8e4022a8 776 object_initialize_child(obj, "sio", &s->via_sio, TYPE_VT8231_SUPERIO);
d1053772 777 object_initialize_child(obj, "pm", &s->pm, TYPE_VT8231_PM);
f9f0c9e2
BZ
778}
779
780static void vt8231_class_init(ObjectClass *klass, void *data)
781{
782 DeviceClass *dc = DEVICE_CLASS(klass);
783 PCIDeviceClass *k = PCI_DEVICE_CLASS(klass);
784
8e4022a8 785 k->realize = via_isa_realize;
f9f0c9e2
BZ
786 k->config_write = vt8231_write_config;
787 k->vendor_id = PCI_VENDOR_ID_VIA;
788 k->device_id = PCI_DEVICE_ID_VIA_8231_ISA;
789 k->class_id = PCI_CLASS_BRIDGE_ISA;
790 k->revision = 0x10;
791 dc->reset = vt8231_isa_reset;
792 dc->desc = "ISA bridge";
793 dc->vmsd = &vmstate_via;
794 /* Reason: part of VIA VT8231 southbridge, needs to be wired up */
795 dc->user_creatable = false;
796}
797
798static const TypeInfo vt8231_isa_info = {
799 .name = TYPE_VT8231_ISA,
800 .parent = TYPE_VIA_ISA,
801 .instance_size = sizeof(ViaISAState),
8e4022a8 802 .instance_init = vt8231_init,
f9f0c9e2 803 .class_init = vt8231_class_init,
98cf824b
PMD
804};
805
94349bff 806
83f7d43a 807static void vt82c686b_register_types(void)
edf79e66 808{
83f7d43a 809 type_register_static(&via_pm_info);
e1a69736
BZ
810 type_register_static(&vt82c686b_pm_info);
811 type_register_static(&vt8231_pm_info);
94349bff 812 type_register_static(&via_superio_info);
f028c2de 813 type_register_static(&vt82c686b_superio_info);
ab74864f 814 type_register_static(&vt8231_superio_info);
2e84e107
BZ
815 type_register_static(&via_isa_info);
816 type_register_static(&vt82c686b_isa_info);
f9f0c9e2 817 type_register_static(&vt8231_isa_info);
edf79e66 818}
83f7d43a
AF
819
820type_init(vt82c686b_register_types)