vt82c686.c 15.2 KB
Newer Older
1 2 3 4 5 6 7
/*
 * 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.
8 9 10
 *
 * Contributions after 2012-01-13 are licensed under the terms of the
 * GNU GPL, version 2 or (at your option) any later version.
11 12
 */

P
Peter Maydell 已提交
13
#include "qemu/osdep.h"
14
#include "hw/hw.h"
P
Paolo Bonzini 已提交
15 16 17
#include "hw/isa/vt82c686.h"
#include "hw/i2c/i2c.h"
#include "hw/i2c/smbus.h"
18
#include "hw/pci/pci.h"
P
Paolo Bonzini 已提交
19
#include "hw/isa/isa.h"
20
#include "hw/sysbus.h"
P
Paolo Bonzini 已提交
21 22 23 24
#include "hw/mips/mips.h"
#include "hw/isa/apm.h"
#include "hw/acpi/acpi.h"
#include "hw/i2c/pm_smbus.h"
25
#include "sysemu/sysemu.h"
26
#include "qemu/timer.h"
27
#include "exec/address-spaces.h"
28 29 30 31 32 33 34 35 36 37 38

//#define DEBUG_VT82C686B

#ifdef DEBUG_VT82C686B
#define DPRINTF(fmt, ...) fprintf(stderr, "%s: " fmt, __FUNCTION__, ##__VA_ARGS__)
#else
#define DPRINTF(fmt, ...)
#endif

typedef struct SuperIOConfig
{
39
    uint8_t config[0x100];
40 41 42 43 44 45
    uint8_t index;
    uint8_t data;
} SuperIOConfig;

typedef struct VT82C686BState {
    PCIDevice dev;
J
Jan Kiszka 已提交
46
    MemoryRegion superio;
47 48 49
    SuperIOConfig superio_conf;
} VT82C686BState;

G
Gonglei 已提交
50 51 52 53
#define TYPE_VT82C686B_DEVICE "VT82C686B"
#define VT82C686B_DEVICE(obj) \
    OBJECT_CHECK(VT82C686BState, (obj), TYPE_VT82C686B_DEVICE)

J
Jan Kiszka 已提交
54 55
static void superio_ioport_writeb(void *opaque, hwaddr addr, uint64_t data,
                                  unsigned size)
56 57 58
{
    SuperIOConfig *superio_conf = opaque;

59
    DPRINTF("superio_ioport_writeb  address 0x%x  val 0x%x\n", addr, data);
60 61 62
    if (addr == 0x3f0) {
        superio_conf->index = data & 0xff;
    } else {
63
        bool can_write = true;
64 65 66 67 68 69 70 71 72 73 74
        /* 0x3f1 */
        switch (superio_conf->index) {
        case 0x00 ... 0xdf:
        case 0xe4:
        case 0xe5:
        case 0xe9 ... 0xed:
        case 0xf3:
        case 0xf5:
        case 0xf7:
        case 0xf9 ... 0xfb:
        case 0xfd ... 0xff:
75 76 77 78 79 80 81 82 83 84 85 86 87
            can_write = false;
            break;
        case 0xe7:
            if ((data & 0xff) != 0xfe) {
                DPRINTF("change uart 1 base. unsupported yet\n");
                can_write = false;
            }
            break;
        case 0xe8:
            if ((data & 0xff) != 0xbe) {
                DPRINTF("change uart 2 base. unsupported yet\n");
                can_write = false;
            }
88 89
            break;
        default:
90
            break;
91 92

        }
93 94 95
        if (can_write) {
            superio_conf->config[superio_conf->index] = data & 0xff;
        }
96 97 98
    }
}

J
Jan Kiszka 已提交
99
static uint64_t superio_ioport_readb(void *opaque, hwaddr addr, unsigned size)
100 101 102
{
    SuperIOConfig *superio_conf = opaque;

103
    DPRINTF("superio_ioport_readb  address 0x%x\n", addr);
104 105 106
    return (superio_conf->config[superio_conf->index]);
}

J
Jan Kiszka 已提交
107 108 109 110 111 112 113 114 115 116
static const MemoryRegionOps superio_ops = {
    .read = superio_ioport_readb,
    .write = superio_ioport_writeb,
    .endianness = DEVICE_NATIVE_ENDIAN,
    .impl = {
        .min_access_size = 1,
        .max_access_size = 1,
    },
};

117 118 119 120
static void vt82c686b_reset(void * opaque)
{
    PCIDevice *d = opaque;
    uint8_t *pci_conf = d->config;
G
Gonglei 已提交
121
    VT82C686BState *vt82c = VT82C686B_DEVICE(d);
122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148

    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 */

    vt82c->superio_conf.config[0xe0] = 0x3c;
    vt82c->superio_conf.config[0xe2] = 0x03;
    vt82c->superio_conf.config[0xe3] = 0xfc;
    vt82c->superio_conf.config[0xe6] = 0xde;
    vt82c->superio_conf.config[0xe7] = 0xfe;
    vt82c->superio_conf.config[0xe8] = 0xbe;
}

/* write config pci function0 registers. PCI-ISA bridge */
static void vt82c686b_write_config(PCIDevice * d, uint32_t address,
                                   uint32_t val, int len)
{
G
Gonglei 已提交
149
    VT82C686BState *vt686 = VT82C686B_DEVICE(d);
150

151
    DPRINTF("vt82c686b_write_config  address 0x%x  val 0x%x len 0x%x\n",
152 153 154 155
           address, val, len);

    pci_default_write_config(d, address, val, len);
    if (address == 0x85) {  /* enable or disable super IO configure */
J
Jan Kiszka 已提交
156
        memory_region_set_enabled(&vt686->superio, val & 0x2);
157 158 159 160 161 162 163
    }
}

#define ACPI_DBG_IO_ADDR  0xb044

typedef struct VT686PMState {
    PCIDevice dev;
164
    MemoryRegion io;
G
Gerd Hoffmann 已提交
165
    ACPIREGS ar;
166 167 168 169 170 171 172 173 174 175 176 177 178
    APMState apm;
    PMSMBus smb;
    uint32_t smb_io_base;
} VT686PMState;

typedef struct VT686AC97State {
    PCIDevice dev;
} VT686AC97State;

typedef struct VT686MC97State {
    PCIDevice dev;
} VT686MC97State;

G
Gonglei 已提交
179 180 181 182 183 184 185 186 187 188 189 190
#define TYPE_VT82C686B_PM_DEVICE "VT82C686B_PM"
#define VT82C686B_PM_DEVICE(obj) \
    OBJECT_CHECK(VT686PMState, (obj), TYPE_VT82C686B_PM_DEVICE)

#define TYPE_VT82C686B_MC97_DEVICE "VT82C686B_MC97"
#define VT82C686B_MC97_DEVICE(obj) \
    OBJECT_CHECK(VT686MC97State, (obj), TYPE_VT82C686B_MC97_DEVICE)

#define TYPE_VT82C686B_AC97_DEVICE "VT82C686B_AC97"
#define VT82C686B_AC97_DEVICE(obj) \
    OBJECT_CHECK(VT686AC97State, (obj), TYPE_VT82C686B_AC97_DEVICE)

191 192 193 194
static void pm_update_sci(VT686PMState *s)
{
    int sci_level, pmsts;

195
    pmsts = acpi_pm1_evt_get_sts(&s->ar);
G
Gerd Hoffmann 已提交
196
    sci_level = (((pmsts & s->ar.pm1.evt.en) &
197 198 199 200
                  (ACPI_BITMASK_RT_CLOCK_ENABLE |
                   ACPI_BITMASK_POWER_BUTTON_ENABLE |
                   ACPI_BITMASK_GLOBAL_LOCK_ENABLE |
                   ACPI_BITMASK_TIMER_ENABLE)) != 0);
201
    pci_set_irq(&s->dev, sci_level);
202
    /* schedule a timer interruption if needed */
G
Gerd Hoffmann 已提交
203
    acpi_pm_tmr_update(&s->ar, (s->ar.pm1.evt.en & ACPI_BITMASK_TIMER_ENABLE) &&
204
                       !(pmsts & ACPI_BITMASK_TIMER_STATUS));
205 206
}

G
Gerd Hoffmann 已提交
207
static void pm_tmr_timer(ACPIREGS *ar)
208
{
G
Gerd Hoffmann 已提交
209
    VT686PMState *s = container_of(ar, VT686PMState, ar);
210 211 212 213 214 215 216
    pm_update_sci(s);
}

static void pm_io_space_update(VT686PMState *s)
{
    uint32_t pm_io_base;

217 218
    pm_io_base = pci_get_long(s->dev.config + 0x40);
    pm_io_base &= 0xffc0;
219

220 221 222 223
    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();
224 225 226 227 228
}

static void pm_write_config(PCIDevice *d,
                            uint32_t address, uint32_t val, int len)
{
229
    DPRINTF("pm_write_config  address 0x%x  val 0x%x len 0x%x\n",
230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246
           address, val, len);
    pci_default_write_config(d, address, val, len);
}

static int vmstate_acpi_post_load(void *opaque, int version_id)
{
    VT686PMState *s = opaque;

    pm_io_space_update(s);
    return 0;
}

static const VMStateDescription vmstate_acpi = {
    .name = "vt82c686b_pm",
    .version_id = 1,
    .minimum_version_id = 1,
    .post_load = vmstate_acpi_post_load,
247
    .fields = (VMStateField[]) {
248
        VMSTATE_PCI_DEVICE(dev, VT686PMState),
G
Gerd Hoffmann 已提交
249 250 251
        VMSTATE_UINT16(ar.pm1.evt.sts, VT686PMState),
        VMSTATE_UINT16(ar.pm1.evt.en, VT686PMState),
        VMSTATE_UINT16(ar.pm1.cnt.cnt, VT686PMState),
252
        VMSTATE_STRUCT(apm, VT686PMState, 0, vmstate_apm, APMState),
253
        VMSTATE_TIMER_PTR(ar.tmr.timer, VT686PMState),
G
Gerd Hoffmann 已提交
254
        VMSTATE_INT64(ar.tmr.overflow_time, VT686PMState),
255 256 257 258 259 260 261 262 263
        VMSTATE_END_OF_LIST()
    }
};

/*
 * TODO: vt82c686b_ac97_init() and vt82c686b_mc97_init()
 * just register a PCI device now, functionalities will be implemented later.
 */

264
static void vt82c686b_ac97_realize(PCIDevice *dev, Error **errp)
265
{
G
Gonglei 已提交
266
    VT686AC97State *s = VT82C686B_AC97_DEVICE(dev);
267 268 269 270 271 272 273 274 275 276 277 278 279
    uint8_t *pci_conf = s->dev.config;

    pci_set_word(pci_conf + PCI_COMMAND, PCI_COMMAND_INVALIDATE |
                 PCI_COMMAND_PARITY);
    pci_set_word(pci_conf + PCI_STATUS, PCI_STATUS_CAP_LIST |
                 PCI_STATUS_DEVSEL_MEDIUM);
    pci_set_long(pci_conf + PCI_INTERRUPT_PIN, 0x03);
}

void vt82c686b_ac97_init(PCIBus *bus, int devfn)
{
    PCIDevice *dev;

G
Gonglei 已提交
280
    dev = pci_create(bus, devfn, TYPE_VT82C686B_AC97_DEVICE);
281 282 283
    qdev_init_nofail(&dev->qdev);
}

284 285
static void via_ac97_class_init(ObjectClass *klass, void *data)
{
286
    DeviceClass *dc = DEVICE_CLASS(klass);
287 288
    PCIDeviceClass *k = PCI_DEVICE_CLASS(klass);

289
    k->realize = vt82c686b_ac97_realize;
290 291 292 293
    k->vendor_id = PCI_VENDOR_ID_VIA;
    k->device_id = PCI_DEVICE_ID_VIA_AC97;
    k->revision = 0x50;
    k->class_id = PCI_CLASS_MULTIMEDIA_AUDIO;
294
    set_bit(DEVICE_CATEGORY_SOUND, dc->categories);
295
    dc->desc = "AC97";
296 297
}

298
static const TypeInfo via_ac97_info = {
G
Gonglei 已提交
299
    .name          = TYPE_VT82C686B_AC97_DEVICE,
300 301 302
    .parent        = TYPE_PCI_DEVICE,
    .instance_size = sizeof(VT686AC97State),
    .class_init    = via_ac97_class_init,
303 304 305 306
    .interfaces = (InterfaceInfo[]) {
        { INTERFACE_CONVENTIONAL_PCI_DEVICE },
        { },
    },
307 308
};

309
static void vt82c686b_mc97_realize(PCIDevice *dev, Error **errp)
310
{
G
Gonglei 已提交
311
    VT686MC97State *s = VT82C686B_MC97_DEVICE(dev);
312 313 314 315 316 317 318 319 320 321 322 323
    uint8_t *pci_conf = s->dev.config;

    pci_set_word(pci_conf + PCI_COMMAND, PCI_COMMAND_INVALIDATE |
                 PCI_COMMAND_VGA_PALETTE);
    pci_set_word(pci_conf + PCI_STATUS, PCI_STATUS_DEVSEL_MEDIUM);
    pci_set_long(pci_conf + PCI_INTERRUPT_PIN, 0x03);
}

void vt82c686b_mc97_init(PCIBus *bus, int devfn)
{
    PCIDevice *dev;

G
Gonglei 已提交
324
    dev = pci_create(bus, devfn, TYPE_VT82C686B_MC97_DEVICE);
325 326 327
    qdev_init_nofail(&dev->qdev);
}

328 329
static void via_mc97_class_init(ObjectClass *klass, void *data)
{
330
    DeviceClass *dc = DEVICE_CLASS(klass);
331 332
    PCIDeviceClass *k = PCI_DEVICE_CLASS(klass);

333
    k->realize = vt82c686b_mc97_realize;
334 335 336 337
    k->vendor_id = PCI_VENDOR_ID_VIA;
    k->device_id = PCI_DEVICE_ID_VIA_MC97;
    k->class_id = PCI_CLASS_COMMUNICATION_OTHER;
    k->revision = 0x30;
338
    set_bit(DEVICE_CATEGORY_NETWORK, dc->categories);
339
    dc->desc = "MC97";
340 341
}

342
static const TypeInfo via_mc97_info = {
G
Gonglei 已提交
343
    .name          = TYPE_VT82C686B_MC97_DEVICE,
344 345 346
    .parent        = TYPE_PCI_DEVICE,
    .instance_size = sizeof(VT686MC97State),
    .class_init    = via_mc97_class_init,
347 348 349 350
    .interfaces = (InterfaceInfo[]) {
        { INTERFACE_CONVENTIONAL_PCI_DEVICE },
        { },
    },
351 352 353
};

/* vt82c686 pm init */
354
static void vt82c686b_pm_realize(PCIDevice *dev, Error **errp)
355
{
G
Gonglei 已提交
356
    VT686PMState *s = VT82C686B_PM_DEVICE(dev);
357 358 359 360 361 362 363 364 365 366 367 368 369 370 371
    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);

    /* SMB ports:0xeee0~0xeeef */
    s->smb_io_base =((s->smb_io_base & 0xfff0) + 0x0);
    pci_conf[0x90] = s->smb_io_base | 1;
    pci_conf[0x91] = s->smb_io_base >> 8;
    pci_conf[0xd2] = 0x90;
G
Gerd Hoffmann 已提交
372 373
    pm_smbus_init(&s->dev.qdev, &s->smb);
    memory_region_add_subregion(get_system_io(), s->smb_io_base, &s->smb.io);
374

J
Julien Grall 已提交
375
    apm_init(dev, &s->apm, NULL, s);
376

377
    memory_region_init(&s->io, OBJECT(dev), "vt82c686-pm", 64);
378 379
    memory_region_set_enabled(&s->io, false);
    memory_region_add_subregion(get_system_io(), 0, &s->io);
380

G
Gerd Hoffmann 已提交
381
    acpi_pm_tmr_init(&s->ar, pm_tmr_timer, &s->io);
G
Gerd Hoffmann 已提交
382
    acpi_pm1_evt_init(&s->ar, pm_tmr_timer, &s->io);
383
    acpi_pm1_cnt_init(&s->ar, &s->io, false, false, 2);
384 385
}

A
Andreas Färber 已提交
386 387
I2CBus *vt82c686b_pm_init(PCIBus *bus, int devfn, uint32_t smb_io_base,
                          qemu_irq sci_irq)
388 389 390 391
{
    PCIDevice *dev;
    VT686PMState *s;

G
Gonglei 已提交
392
    dev = pci_create(bus, devfn, TYPE_VT82C686B_PM_DEVICE);
393 394
    qdev_prop_set_uint32(&dev->qdev, "smb_io_base", smb_io_base);

G
Gonglei 已提交
395
    s = VT82C686B_PM_DEVICE(dev);
396 397 398 399 400 401

    qdev_init_nofail(&dev->qdev);

    return s->smb.smbus;
}

402 403 404 405 406 407 408
static Property via_pm_properties[] = {
    DEFINE_PROP_UINT32("smb_io_base", VT686PMState, smb_io_base, 0),
    DEFINE_PROP_END_OF_LIST(),
};

static void via_pm_class_init(ObjectClass *klass, void *data)
{
409
    DeviceClass *dc = DEVICE_CLASS(klass);
410 411
    PCIDeviceClass *k = PCI_DEVICE_CLASS(klass);

412
    k->realize = vt82c686b_pm_realize;
413 414 415 416 417
    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;
418 419
    dc->desc = "PM";
    dc->vmsd = &vmstate_acpi;
420
    set_bit(DEVICE_CATEGORY_BRIDGE, dc->categories);
421
    dc->props = via_pm_properties;
422 423
}

424
static const TypeInfo via_pm_info = {
G
Gonglei 已提交
425
    .name          = TYPE_VT82C686B_PM_DEVICE,
426 427 428
    .parent        = TYPE_PCI_DEVICE,
    .instance_size = sizeof(VT686PMState),
    .class_init    = via_pm_class_init,
429 430 431 432
    .interfaces = (InterfaceInfo[]) {
        { INTERFACE_CONVENTIONAL_PCI_DEVICE },
        { },
    },
433 434 435 436 437 438
};

static const VMStateDescription vmstate_via = {
    .name = "vt82c686b",
    .version_id = 1,
    .minimum_version_id = 1,
439
    .fields = (VMStateField[]) {
440 441 442 443 444 445
        VMSTATE_PCI_DEVICE(dev, VT82C686BState),
        VMSTATE_END_OF_LIST()
    }
};

/* init the PCI-to-ISA bridge */
446
static void vt82c686b_realize(PCIDevice *d, Error **errp)
447
{
G
Gonglei 已提交
448
    VT82C686BState *vt82c = VT82C686B_DEVICE(d);
449
    uint8_t *pci_conf;
J
Jan Kiszka 已提交
450
    ISABus *isa_bus;
451 452 453
    uint8_t *wmask;
    int i;

454
    isa_bus = isa_bus_new(DEVICE(d), get_system_memory(),
455 456 457 458
                          pci_address_space_io(d), errp);
    if (!isa_bus) {
        return;
    }
459 460 461 462 463 464 465 466 467 468 469

    pci_conf = d->config;
    pci_config_set_prog_interface(pci_conf, 0x0);

    wmask = d->wmask;
    for (i = 0x00; i < 0xff; i++) {
       if (i<=0x03 || (i>=0x08 && i<=0x3f)) {
           wmask[i] = 0x00;
       }
    }

470
    memory_region_init_io(&vt82c->superio, OBJECT(d), &superio_ops,
471
                          &vt82c->superio_conf, "superio", 2);
J
Jan Kiszka 已提交
472 473 474 475 476 477
    memory_region_set_enabled(&vt82c->superio, false);
    /* The floppy also uses 0x3f0 and 0x3f1.
     * But we do not emulate a floppy, so just set it here. */
    memory_region_add_subregion(isa_bus->address_space_io, 0x3f0,
                                &vt82c->superio);

478 479 480
    qemu_register_reset(vt82c686b_reset, d);
}

481
ISABus *vt82c686b_init(PCIBus *bus, int devfn)
482 483 484
{
    PCIDevice *d;

G
Gonglei 已提交
485 486
    d = pci_create_simple_multifunction(bus, devfn, true,
                                        TYPE_VT82C686B_DEVICE);
487

A
Andreas Färber 已提交
488
    return ISA_BUS(qdev_get_child_bus(DEVICE(d), "isa.0"));
489 490
}

491 492
static void via_class_init(ObjectClass *klass, void *data)
{
493
    DeviceClass *dc = DEVICE_CLASS(klass);
494 495
    PCIDeviceClass *k = PCI_DEVICE_CLASS(klass);

496
    k->realize = vt82c686b_realize;
497 498 499 500 501
    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;
502 503
    dc->desc = "ISA bridge";
    dc->vmsd = &vmstate_via;
504 505 506 507
    /*
     * Reason: part of VIA VT82C686 southbridge, needs to be wired up,
     * e.g. by mips_fulong2e_init()
     */
508
    dc->user_creatable = false;
509 510
}

511
static const TypeInfo via_info = {
G
Gonglei 已提交
512
    .name          = TYPE_VT82C686B_DEVICE,
513 514 515
    .parent        = TYPE_PCI_DEVICE,
    .instance_size = sizeof(VT82C686BState),
    .class_init    = via_class_init,
516 517 518 519
    .interfaces = (InterfaceInfo[]) {
        { INTERFACE_CONVENTIONAL_PCI_DEVICE },
        { },
    },
520 521
};

A
Andreas Färber 已提交
522
static void vt82c686b_register_types(void)
523
{
A
Andreas Färber 已提交
524 525 526
    type_register_static(&via_ac97_info);
    type_register_static(&via_mc97_info);
    type_register_static(&via_pm_info);
527
    type_register_static(&via_info);
528
}
A
Andreas Färber 已提交
529 530

type_init(vt82c686b_register_types)