OSDN Git Service

vt82c686: QOM-ify superio related functionality
[qmiga/qemu.git] / hw / isa / vt82c686.c
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.
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.
11  */
12
13 #include "qemu/osdep.h"
14 #include "hw/isa/vt82c686.h"
15 #include "hw/pci/pci.h"
16 #include "hw/qdev-properties.h"
17 #include "hw/isa/isa.h"
18 #include "hw/isa/superio.h"
19 #include "hw/intc/i8259.h"
20 #include "hw/irq.h"
21 #include "hw/dma/i8257.h"
22 #include "hw/timer/i8254.h"
23 #include "hw/rtc/mc146818rtc.h"
24 #include "migration/vmstate.h"
25 #include "hw/isa/apm.h"
26 #include "hw/acpi/acpi.h"
27 #include "hw/i2c/pm_smbus.h"
28 #include "qapi/error.h"
29 #include "qemu/log.h"
30 #include "qemu/module.h"
31 #include "qemu/range.h"
32 #include "qemu/timer.h"
33 #include "exec/address-spaces.h"
34 #include "trace.h"
35
36 #define TYPE_VIA_PM "via-pm"
37 OBJECT_DECLARE_SIMPLE_TYPE(ViaPMState, VIA_PM)
38
39 struct ViaPMState {
40     PCIDevice dev;
41     MemoryRegion io;
42     ACPIREGS ar;
43     APMState apm;
44     PMSMBus smb;
45 };
46
47 static void pm_io_space_update(ViaPMState *s)
48 {
49     uint32_t pmbase = pci_get_long(s->dev.config + 0x48) & 0xff80UL;
50
51     memory_region_transaction_begin();
52     memory_region_set_address(&s->io, pmbase);
53     memory_region_set_enabled(&s->io, s->dev.config[0x41] & BIT(7));
54     memory_region_transaction_commit();
55 }
56
57 static void smb_io_space_update(ViaPMState *s)
58 {
59     uint32_t smbase = pci_get_long(s->dev.config + 0x90) & 0xfff0UL;
60
61     memory_region_transaction_begin();
62     memory_region_set_address(&s->smb.io, smbase);
63     memory_region_set_enabled(&s->smb.io, s->dev.config[0xd2] & BIT(0));
64     memory_region_transaction_commit();
65 }
66
67 static int vmstate_acpi_post_load(void *opaque, int version_id)
68 {
69     ViaPMState *s = opaque;
70
71     pm_io_space_update(s);
72     smb_io_space_update(s);
73     return 0;
74 }
75
76 static const VMStateDescription vmstate_acpi = {
77     .name = "vt82c686b_pm",
78     .version_id = 1,
79     .minimum_version_id = 1,
80     .post_load = vmstate_acpi_post_load,
81     .fields = (VMStateField[]) {
82         VMSTATE_PCI_DEVICE(dev, ViaPMState),
83         VMSTATE_UINT16(ar.pm1.evt.sts, ViaPMState),
84         VMSTATE_UINT16(ar.pm1.evt.en, ViaPMState),
85         VMSTATE_UINT16(ar.pm1.cnt.cnt, ViaPMState),
86         VMSTATE_STRUCT(apm, ViaPMState, 0, vmstate_apm, APMState),
87         VMSTATE_TIMER_PTR(ar.tmr.timer, ViaPMState),
88         VMSTATE_INT64(ar.tmr.overflow_time, ViaPMState),
89         VMSTATE_END_OF_LIST()
90     }
91 };
92
93 static void pm_write_config(PCIDevice *d, uint32_t addr, uint32_t val, int len)
94 {
95     ViaPMState *s = VIA_PM(d);
96
97     trace_via_pm_write(addr, val, len);
98     pci_default_write_config(d, addr, val, len);
99     if (ranges_overlap(addr, len, 0x48, 4)) {
100         uint32_t v = pci_get_long(s->dev.config + 0x48);
101         pci_set_long(s->dev.config + 0x48, (v & 0xff80UL) | 1);
102     }
103     if (range_covers_byte(addr, len, 0x41)) {
104         pm_io_space_update(s);
105     }
106     if (ranges_overlap(addr, len, 0x90, 4)) {
107         uint32_t v = pci_get_long(s->dev.config + 0x90);
108         pci_set_long(s->dev.config + 0x90, (v & 0xfff0UL) | 1);
109     }
110     if (range_covers_byte(addr, len, 0xd2)) {
111         s->dev.config[0xd2] &= 0xf;
112         smb_io_space_update(s);
113     }
114 }
115
116 static void pm_io_write(void *op, hwaddr addr, uint64_t data, unsigned size)
117 {
118     trace_via_pm_io_write(addr, data, size);
119 }
120
121 static uint64_t pm_io_read(void *op, hwaddr addr, unsigned size)
122 {
123     trace_via_pm_io_read(addr, 0, size);
124     return 0;
125 }
126
127 static const MemoryRegionOps pm_io_ops = {
128     .read = pm_io_read,
129     .write = pm_io_write,
130     .endianness = DEVICE_NATIVE_ENDIAN,
131     .impl = {
132         .min_access_size = 1,
133         .max_access_size = 1,
134     },
135 };
136
137 static void pm_update_sci(ViaPMState *s)
138 {
139     int sci_level, pmsts;
140
141     pmsts = acpi_pm1_evt_get_sts(&s->ar);
142     sci_level = (((pmsts & s->ar.pm1.evt.en) &
143                   (ACPI_BITMASK_RT_CLOCK_ENABLE |
144                    ACPI_BITMASK_POWER_BUTTON_ENABLE |
145                    ACPI_BITMASK_GLOBAL_LOCK_ENABLE |
146                    ACPI_BITMASK_TIMER_ENABLE)) != 0);
147     if (pci_get_byte(s->dev.config + PCI_INTERRUPT_PIN)) {
148         /*
149          * FIXME:
150          * Fix device model that realizes this PM device and remove
151          * this work around.
152          * The device model should wire SCI and setup
153          * PCI_INTERRUPT_PIN properly.
154          * If PIN# = 0(interrupt pin isn't used), don't raise SCI as
155          * work around.
156          */
157         pci_set_irq(&s->dev, sci_level);
158     }
159     /* schedule a timer interruption if needed */
160     acpi_pm_tmr_update(&s->ar, (s->ar.pm1.evt.en & ACPI_BITMASK_TIMER_ENABLE) &&
161                        !(pmsts & ACPI_BITMASK_TIMER_STATUS));
162 }
163
164 static void pm_tmr_timer(ACPIREGS *ar)
165 {
166     ViaPMState *s = container_of(ar, ViaPMState, ar);
167     pm_update_sci(s);
168 }
169
170 static void via_pm_reset(DeviceState *d)
171 {
172     ViaPMState *s = VIA_PM(d);
173
174     memset(s->dev.config + PCI_CONFIG_HEADER_SIZE, 0,
175            PCI_CONFIG_SPACE_SIZE - PCI_CONFIG_HEADER_SIZE);
176     /* Power Management IO base */
177     pci_set_long(s->dev.config + 0x48, 1);
178     /* SMBus IO base */
179     pci_set_long(s->dev.config + 0x90, 1);
180
181     acpi_pm1_evt_reset(&s->ar);
182     acpi_pm1_cnt_reset(&s->ar);
183     acpi_pm_tmr_reset(&s->ar);
184     pm_update_sci(s);
185
186     pm_io_space_update(s);
187     smb_io_space_update(s);
188 }
189
190 static void via_pm_realize(PCIDevice *dev, Error **errp)
191 {
192     ViaPMState *s = VIA_PM(dev);
193
194     pci_set_word(dev->config + PCI_STATUS, PCI_STATUS_FAST_BACK |
195                  PCI_STATUS_DEVSEL_MEDIUM);
196
197     pm_smbus_init(DEVICE(s), &s->smb, false);
198     memory_region_add_subregion(pci_address_space_io(dev), 0, &s->smb.io);
199     memory_region_set_enabled(&s->smb.io, false);
200
201     apm_init(dev, &s->apm, NULL, s);
202
203     memory_region_init_io(&s->io, OBJECT(dev), &pm_io_ops, s, "via-pm", 128);
204     memory_region_add_subregion(pci_address_space_io(dev), 0, &s->io);
205     memory_region_set_enabled(&s->io, false);
206
207     acpi_pm_tmr_init(&s->ar, pm_tmr_timer, &s->io);
208     acpi_pm1_evt_init(&s->ar, pm_tmr_timer, &s->io);
209     acpi_pm1_cnt_init(&s->ar, &s->io, false, false, 2, false);
210 }
211
212 typedef struct via_pm_init_info {
213     uint16_t device_id;
214 } ViaPMInitInfo;
215
216 static void via_pm_class_init(ObjectClass *klass, void *data)
217 {
218     DeviceClass *dc = DEVICE_CLASS(klass);
219     PCIDeviceClass *k = PCI_DEVICE_CLASS(klass);
220     ViaPMInitInfo *info = data;
221
222     k->realize = via_pm_realize;
223     k->config_write = pm_write_config;
224     k->vendor_id = PCI_VENDOR_ID_VIA;
225     k->device_id = info->device_id;
226     k->class_id = PCI_CLASS_BRIDGE_OTHER;
227     k->revision = 0x40;
228     dc->reset = via_pm_reset;
229     /* Reason: part of VIA south bridge, does not exist stand alone */
230     dc->user_creatable = false;
231     dc->vmsd = &vmstate_acpi;
232 }
233
234 static const TypeInfo via_pm_info = {
235     .name          = TYPE_VIA_PM,
236     .parent        = TYPE_PCI_DEVICE,
237     .instance_size = sizeof(ViaPMState),
238     .abstract      = true,
239     .interfaces = (InterfaceInfo[]) {
240         { INTERFACE_CONVENTIONAL_PCI_DEVICE },
241         { },
242     },
243 };
244
245 static const ViaPMInitInfo vt82c686b_pm_init_info = {
246     .device_id = PCI_DEVICE_ID_VIA_82C686B_PM,
247 };
248
249 static const TypeInfo vt82c686b_pm_info = {
250     .name          = TYPE_VT82C686B_PM,
251     .parent        = TYPE_VIA_PM,
252     .class_init    = via_pm_class_init,
253     .class_data    = (void *)&vt82c686b_pm_init_info,
254 };
255
256 static const ViaPMInitInfo vt8231_pm_init_info = {
257     .device_id = PCI_DEVICE_ID_VIA_8231_PM,
258 };
259
260 static const TypeInfo vt8231_pm_info = {
261     .name          = TYPE_VT8231_PM,
262     .parent        = TYPE_VIA_PM,
263     .class_init    = via_pm_class_init,
264     .class_data    = (void *)&vt8231_pm_init_info,
265 };
266
267
268 #define TYPE_VIA_SUPERIO "via-superio"
269 OBJECT_DECLARE_SIMPLE_TYPE(ViaSuperIOState, VIA_SUPERIO)
270
271 struct ViaSuperIOState {
272     ISASuperIODevice superio;
273     uint8_t regs[0x100];
274     const MemoryRegionOps *io_ops;
275     MemoryRegion io;
276 };
277
278 static inline void via_superio_io_enable(ViaSuperIOState *s, bool enable)
279 {
280     memory_region_set_enabled(&s->io, enable);
281 }
282
283 static void via_superio_realize(DeviceState *d, Error **errp)
284 {
285     ViaSuperIOState *s = VIA_SUPERIO(d);
286     ISASuperIOClass *ic = ISA_SUPERIO_GET_CLASS(s);
287     Error *local_err = NULL;
288
289     assert(s->io_ops);
290     ic->parent_realize(d, &local_err);
291     if (local_err) {
292         error_propagate(errp, local_err);
293         return;
294     }
295     memory_region_init_io(&s->io, OBJECT(d), s->io_ops, s, "via-superio", 2);
296     memory_region_set_enabled(&s->io, false);
297     /* The floppy also uses 0x3f0 and 0x3f1 but this seems to work anyway */
298     memory_region_add_subregion(isa_address_space_io(ISA_DEVICE(s)), 0x3f0,
299                                 &s->io);
300 }
301
302 static uint64_t via_superio_cfg_read(void *opaque, hwaddr addr, unsigned size)
303 {
304     ViaSuperIOState *sc = opaque;
305     uint8_t idx = sc->regs[0];
306     uint8_t val = sc->regs[idx];
307
308     if (addr == 0) {
309         return idx;
310     }
311     if (addr == 1 && idx == 0) {
312         val = 0; /* reading reg 0 where we store index value */
313     }
314     trace_via_superio_read(idx, val);
315     return val;
316 }
317
318 static void via_superio_class_init(ObjectClass *klass, void *data)
319 {
320     DeviceClass *dc = DEVICE_CLASS(klass);
321     ISASuperIOClass *sc = ISA_SUPERIO_CLASS(klass);
322
323     sc->parent_realize = dc->realize;
324     dc->realize = via_superio_realize;
325 }
326
327 static const TypeInfo via_superio_info = {
328     .name          = TYPE_VIA_SUPERIO,
329     .parent        = TYPE_ISA_SUPERIO,
330     .instance_size = sizeof(ViaSuperIOState),
331     .class_size    = sizeof(ISASuperIOClass),
332     .class_init    = via_superio_class_init,
333     .abstract      = true,
334 };
335
336 #define TYPE_VT82C686B_SUPERIO "vt82c686b-superio"
337
338 static void vt82c686b_superio_cfg_write(void *opaque, hwaddr addr,
339                                         uint64_t data, unsigned size)
340 {
341     ViaSuperIOState *sc = opaque;
342     uint8_t idx = sc->regs[0];
343
344     if (addr == 0) { /* config index register */
345         sc->regs[0] = data;
346         return;
347     }
348
349     /* config data register */
350     trace_via_superio_write(idx, data);
351     switch (idx) {
352     case 0x00 ... 0xdf:
353     case 0xe4:
354     case 0xe5:
355     case 0xe9 ... 0xed:
356     case 0xf3:
357     case 0xf5:
358     case 0xf7:
359     case 0xf9 ... 0xfb:
360     case 0xfd ... 0xff:
361         /* ignore write to read only registers */
362         return;
363     /* case 0xe6 ... 0xe8: Should set base port of parallel and serial */
364     default:
365         qemu_log_mask(LOG_UNIMP,
366                       "via_superio_cfg: unimplemented register 0x%x\n", idx);
367         break;
368     }
369     sc->regs[idx] = data;
370 }
371
372 static const MemoryRegionOps vt82c686b_superio_cfg_ops = {
373     .read = via_superio_cfg_read,
374     .write = vt82c686b_superio_cfg_write,
375     .endianness = DEVICE_NATIVE_ENDIAN,
376     .impl = {
377         .min_access_size = 1,
378         .max_access_size = 1,
379     },
380 };
381
382 static void vt82c686b_superio_reset(DeviceState *dev)
383 {
384     ViaSuperIOState *s = VIA_SUPERIO(dev);
385
386     memset(s->regs, 0, sizeof(s->regs));
387     /* Device ID */
388     vt82c686b_superio_cfg_write(s, 0, 0xe0, 1);
389     vt82c686b_superio_cfg_write(s, 1, 0x3c, 1);
390     /* Function select - all disabled */
391     vt82c686b_superio_cfg_write(s, 0, 0xe2, 1);
392     vt82c686b_superio_cfg_write(s, 1, 0x03, 1);
393     /* Floppy ctrl base addr 0x3f0-7 */
394     vt82c686b_superio_cfg_write(s, 0, 0xe3, 1);
395     vt82c686b_superio_cfg_write(s, 1, 0xfc, 1);
396     /* Parallel port base addr 0x378-f */
397     vt82c686b_superio_cfg_write(s, 0, 0xe6, 1);
398     vt82c686b_superio_cfg_write(s, 1, 0xde, 1);
399     /* Serial port 1 base addr 0x3f8-f */
400     vt82c686b_superio_cfg_write(s, 0, 0xe7, 1);
401     vt82c686b_superio_cfg_write(s, 1, 0xfe, 1);
402     /* Serial port 2 base addr 0x2f8-f */
403     vt82c686b_superio_cfg_write(s, 0, 0xe8, 1);
404     vt82c686b_superio_cfg_write(s, 1, 0xbe, 1);
405
406     vt82c686b_superio_cfg_write(s, 0, 0, 1);
407 }
408
409 static void vt82c686b_superio_init(Object *obj)
410 {
411     VIA_SUPERIO(obj)->io_ops = &vt82c686b_superio_cfg_ops;
412 }
413
414 static void vt82c686b_superio_class_init(ObjectClass *klass, void *data)
415 {
416     DeviceClass *dc = DEVICE_CLASS(klass);
417     ISASuperIOClass *sc = ISA_SUPERIO_CLASS(klass);
418
419     dc->reset = vt82c686b_superio_reset;
420     sc->serial.count = 2;
421     sc->parallel.count = 1;
422     sc->ide.count = 0; /* emulated by via-ide */
423     sc->floppy.count = 1;
424 }
425
426 static const TypeInfo vt82c686b_superio_info = {
427     .name          = TYPE_VT82C686B_SUPERIO,
428     .parent        = TYPE_VIA_SUPERIO,
429     .instance_size = sizeof(ViaSuperIOState),
430     .instance_init = vt82c686b_superio_init,
431     .class_size    = sizeof(ISASuperIOClass),
432     .class_init    = vt82c686b_superio_class_init,
433 };
434
435
436 OBJECT_DECLARE_SIMPLE_TYPE(VT82C686BISAState, VT82C686B_ISA)
437
438 struct VT82C686BISAState {
439     PCIDevice dev;
440     qemu_irq cpu_intr;
441     ViaSuperIOState *via_sio;
442 };
443
444 static void via_isa_request_i8259_irq(void *opaque, int irq, int level)
445 {
446     VT82C686BISAState *s = opaque;
447     qemu_set_irq(s->cpu_intr, level);
448 }
449
450 static void vt82c686b_write_config(PCIDevice *d, uint32_t addr,
451                                    uint32_t val, int len)
452 {
453     VT82C686BISAState *s = VT82C686B_ISA(d);
454
455     trace_via_isa_write(addr, val, len);
456     pci_default_write_config(d, addr, val, len);
457     if (addr == 0x85) {
458         /* BIT(1): enable or disable superio config io ports */
459         via_superio_io_enable(s->via_sio, val & BIT(1));
460     }
461 }
462
463 static const VMStateDescription vmstate_via = {
464     .name = "vt82c686b",
465     .version_id = 1,
466     .minimum_version_id = 1,
467     .fields = (VMStateField[]) {
468         VMSTATE_PCI_DEVICE(dev, VT82C686BISAState),
469         VMSTATE_END_OF_LIST()
470     }
471 };
472
473 static void vt82c686b_isa_reset(DeviceState *dev)
474 {
475     VT82C686BISAState *s = VT82C686B_ISA(dev);
476     uint8_t *pci_conf = s->dev.config;
477
478     pci_set_long(pci_conf + PCI_CAPABILITY_LIST, 0x000000c0);
479     pci_set_word(pci_conf + PCI_COMMAND, PCI_COMMAND_IO | PCI_COMMAND_MEMORY |
480                  PCI_COMMAND_MASTER | PCI_COMMAND_SPECIAL);
481     pci_set_word(pci_conf + PCI_STATUS, PCI_STATUS_DEVSEL_MEDIUM);
482
483     pci_conf[0x48] = 0x01; /* Miscellaneous Control 3 */
484     pci_conf[0x4a] = 0x04; /* IDE interrupt Routing */
485     pci_conf[0x4f] = 0x03; /* DMA/Master Mem Access Control 3 */
486     pci_conf[0x50] = 0x2d; /* PnP DMA Request Control */
487     pci_conf[0x59] = 0x04;
488     pci_conf[0x5a] = 0x04; /* KBC/RTC Control*/
489     pci_conf[0x5f] = 0x04;
490     pci_conf[0x77] = 0x10; /* GPIO Control 1/2/3/4 */
491 }
492
493 static void vt82c686b_realize(PCIDevice *d, Error **errp)
494 {
495     VT82C686BISAState *s = VT82C686B_ISA(d);
496     DeviceState *dev = DEVICE(d);
497     ISABus *isa_bus;
498     qemu_irq *isa_irq;
499     int i;
500
501     qdev_init_gpio_out(dev, &s->cpu_intr, 1);
502     isa_irq = qemu_allocate_irqs(via_isa_request_i8259_irq, s, 1);
503     isa_bus = isa_bus_new(dev, get_system_memory(), pci_address_space_io(d),
504                           &error_fatal);
505     isa_bus_irqs(isa_bus, i8259_init(isa_bus, *isa_irq));
506     i8254_pit_init(isa_bus, 0x40, 0, NULL);
507     i8257_dma_init(isa_bus, 0);
508     s->via_sio = VIA_SUPERIO(isa_create_simple(isa_bus,
509                                                TYPE_VT82C686B_SUPERIO));
510     mc146818_rtc_init(isa_bus, 2000, NULL);
511
512     for (i = 0; i < PCI_CONFIG_HEADER_SIZE; i++) {
513         if (i < PCI_COMMAND || i >= PCI_REVISION_ID) {
514             d->wmask[i] = 0;
515         }
516     }
517 }
518
519 static void via_class_init(ObjectClass *klass, void *data)
520 {
521     DeviceClass *dc = DEVICE_CLASS(klass);
522     PCIDeviceClass *k = PCI_DEVICE_CLASS(klass);
523
524     k->realize = vt82c686b_realize;
525     k->config_write = vt82c686b_write_config;
526     k->vendor_id = PCI_VENDOR_ID_VIA;
527     k->device_id = PCI_DEVICE_ID_VIA_ISA_BRIDGE;
528     k->class_id = PCI_CLASS_BRIDGE_ISA;
529     k->revision = 0x40;
530     dc->reset = vt82c686b_isa_reset;
531     dc->desc = "ISA bridge";
532     dc->vmsd = &vmstate_via;
533     /*
534      * Reason: part of VIA VT82C686 southbridge, needs to be wired up,
535      * e.g. by mips_fuloong2e_init()
536      */
537     dc->user_creatable = false;
538 }
539
540 static const TypeInfo via_info = {
541     .name          = TYPE_VT82C686B_ISA,
542     .parent        = TYPE_PCI_DEVICE,
543     .instance_size = sizeof(VT82C686BISAState),
544     .class_init    = via_class_init,
545     .interfaces = (InterfaceInfo[]) {
546         { INTERFACE_CONVENTIONAL_PCI_DEVICE },
547         { },
548     },
549 };
550
551
552 static void vt82c686b_register_types(void)
553 {
554     type_register_static(&via_pm_info);
555     type_register_static(&vt82c686b_pm_info);
556     type_register_static(&vt8231_pm_info);
557     type_register_static(&via_superio_info);
558     type_register_static(&vt82c686b_superio_info);
559     type_register_static(&via_info);
560 }
561
562 type_init(vt82c686b_register_types)