2009-10-07 14:56:24 +00:00
|
|
|
/*
|
|
|
|
* QEMU IDE Emulation: PCI PIIX3/4 support.
|
|
|
|
*
|
|
|
|
* Copyright (c) 2003 Fabrice Bellard
|
|
|
|
* Copyright (c) 2006 Openedhand Ltd.
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
|
|
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
* THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
#include <hw/hw.h>
|
|
|
|
#include <hw/pc.h>
|
|
|
|
#include <hw/pci.h>
|
|
|
|
#include <hw/isa.h>
|
|
|
|
#include "block.h"
|
|
|
|
#include "block_int.h"
|
|
|
|
#include "sysemu.h"
|
|
|
|
#include "dma.h"
|
|
|
|
|
|
|
|
#include <hw/ide/pci.h>
|
|
|
|
|
|
|
|
static uint32_t bmdma_readb(void *opaque, uint32_t addr)
|
|
|
|
{
|
|
|
|
BMDMAState *bm = opaque;
|
|
|
|
uint32_t val;
|
|
|
|
|
|
|
|
switch(addr & 3) {
|
|
|
|
case 0:
|
|
|
|
val = bm->cmd;
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
val = bm->status;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
val = 0xff;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
#ifdef DEBUG_IDE
|
|
|
|
printf("bmdma: readb 0x%02x : 0x%02x\n", addr, val);
|
|
|
|
#endif
|
|
|
|
return val;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void bmdma_writeb(void *opaque, uint32_t addr, uint32_t val)
|
|
|
|
{
|
|
|
|
BMDMAState *bm = opaque;
|
|
|
|
#ifdef DEBUG_IDE
|
|
|
|
printf("bmdma: writeb 0x%02x : 0x%02x\n", addr, val);
|
|
|
|
#endif
|
|
|
|
switch(addr & 3) {
|
|
|
|
case 2:
|
|
|
|
bm->status = (val & 0x60) | (bm->status & 1) | (bm->status & ~val & 0x06);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void bmdma_map(PCIDevice *pci_dev, int region_num,
|
2009-10-30 12:21:08 +00:00
|
|
|
pcibus_t addr, pcibus_t size, int type)
|
2009-10-07 14:56:24 +00:00
|
|
|
{
|
|
|
|
PCIIDEState *d = DO_UPCAST(PCIIDEState, dev, pci_dev);
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for(i = 0;i < 2; i++) {
|
|
|
|
BMDMAState *bm = &d->bmdma[i];
|
|
|
|
|
|
|
|
register_ioport_write(addr, 1, 1, bmdma_cmd_writeb, bm);
|
|
|
|
|
|
|
|
register_ioport_write(addr + 1, 3, 1, bmdma_writeb, bm);
|
|
|
|
register_ioport_read(addr, 4, 1, bmdma_readb, bm);
|
|
|
|
|
2010-11-21 16:29:52 +00:00
|
|
|
iorange_init(&bm->addr_ioport, &bmdma_addr_ioport_ops, addr + 4, 4);
|
|
|
|
ioport_register(&bm->addr_ioport);
|
2009-10-07 14:56:24 +00:00
|
|
|
addr += 8;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void piix3_reset(void *opaque)
|
|
|
|
{
|
|
|
|
PCIIDEState *d = opaque;
|
|
|
|
uint8_t *pci_conf = d->dev.config;
|
|
|
|
int i;
|
|
|
|
|
2009-11-07 14:13:05 +00:00
|
|
|
for (i = 0; i < 2; i++) {
|
|
|
|
ide_bus_reset(&d->bus[i]);
|
|
|
|
}
|
2009-10-07 14:56:24 +00:00
|
|
|
|
2009-12-10 16:18:19 +00:00
|
|
|
/* TODO: this is the default. do not override. */
|
|
|
|
pci_conf[PCI_COMMAND] = 0x00;
|
|
|
|
/* TODO: this is the default. do not override. */
|
|
|
|
pci_conf[PCI_COMMAND + 1] = 0x00;
|
|
|
|
/* TODO: use pci_set_word */
|
|
|
|
pci_conf[PCI_STATUS] = PCI_STATUS_FAST_BACK;
|
|
|
|
pci_conf[PCI_STATUS + 1] = PCI_STATUS_DEVSEL_MEDIUM >> 8;
|
2009-10-07 14:56:24 +00:00
|
|
|
pci_conf[0x20] = 0x01; /* BMIBA: 20-23h */
|
|
|
|
}
|
|
|
|
|
2010-12-16 15:54:06 +00:00
|
|
|
static void pci_piix_init_ports(PCIIDEState *d) {
|
|
|
|
int i;
|
|
|
|
struct {
|
|
|
|
int iobase;
|
|
|
|
int iobase2;
|
|
|
|
int isairq;
|
|
|
|
} port_info[] = {
|
|
|
|
{0x1f0, 0x3f6, 14},
|
|
|
|
{0x170, 0x376, 15},
|
|
|
|
};
|
|
|
|
|
|
|
|
for (i = 0; i < 2; i++) {
|
|
|
|
ide_bus_new(&d->bus[i], &d->dev.qdev, i);
|
|
|
|
ide_init_ioport(&d->bus[i], port_info[i].iobase, port_info[i].iobase2);
|
2011-02-19 17:56:22 +00:00
|
|
|
ide_init2(&d->bus[i], isa_get_irq(port_info[i].isairq));
|
2010-12-16 15:54:06 +00:00
|
|
|
|
|
|
|
bmdma_init(&d->bus[i], &d->bmdma[i]);
|
|
|
|
d->bmdma[i].bus = &d->bus[i];
|
|
|
|
qemu_add_vm_change_state_handler(d->bus[i].dma->ops->restart_cb,
|
|
|
|
&d->bmdma[i].dma);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-10-07 14:56:24 +00:00
|
|
|
static int pci_piix_ide_initfn(PCIIDEState *d)
|
|
|
|
{
|
|
|
|
uint8_t *pci_conf = d->dev.config;
|
|
|
|
|
2009-12-10 16:18:19 +00:00
|
|
|
pci_conf[PCI_CLASS_PROG] = 0x80; // legacy ATA mode
|
2009-10-07 14:56:24 +00:00
|
|
|
pci_config_set_class(pci_conf, PCI_CLASS_STORAGE_IDE);
|
|
|
|
|
|
|
|
qemu_register_reset(piix3_reset, d);
|
|
|
|
|
2009-10-30 12:21:03 +00:00
|
|
|
pci_register_bar(&d->dev, 4, 0x10, PCI_BASE_ADDRESS_SPACE_IO, bmdma_map);
|
2009-10-07 14:56:24 +00:00
|
|
|
|
2010-06-25 17:09:07 +00:00
|
|
|
vmstate_register(&d->dev.qdev, 0, &vmstate_ide_pci, d);
|
2009-10-07 14:56:24 +00:00
|
|
|
|
2010-12-16 15:54:06 +00:00
|
|
|
pci_piix_init_ports(d);
|
2009-10-07 14:56:24 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int pci_piix3_ide_initfn(PCIDevice *dev)
|
|
|
|
{
|
|
|
|
PCIIDEState *d = DO_UPCAST(PCIIDEState, dev, dev);
|
|
|
|
|
|
|
|
pci_config_set_vendor_id(d->dev.config, PCI_VENDOR_ID_INTEL);
|
|
|
|
pci_config_set_device_id(d->dev.config, PCI_DEVICE_ID_INTEL_82371SB_1);
|
|
|
|
return pci_piix_ide_initfn(d);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int pci_piix4_ide_initfn(PCIDevice *dev)
|
|
|
|
{
|
|
|
|
PCIIDEState *d = DO_UPCAST(PCIIDEState, dev, dev);
|
|
|
|
|
|
|
|
pci_config_set_vendor_id(d->dev.config, PCI_VENDOR_ID_INTEL);
|
|
|
|
pci_config_set_device_id(d->dev.config, PCI_DEVICE_ID_INTEL_82371AB);
|
|
|
|
return pci_piix_ide_initfn(d);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* hd_table must contain 4 block drivers */
|
|
|
|
/* NOTE: for the PIIX3, the IRQs and IOports are hardcoded */
|
2010-06-24 17:59:29 +00:00
|
|
|
PCIDevice *pci_piix3_ide_init(PCIBus *bus, DriveInfo **hd_table, int devfn)
|
2009-10-07 14:56:24 +00:00
|
|
|
{
|
|
|
|
PCIDevice *dev;
|
|
|
|
|
2009-12-09 16:07:53 +00:00
|
|
|
dev = pci_create_simple(bus, devfn, "piix3-ide");
|
2009-10-07 14:56:24 +00:00
|
|
|
pci_ide_create_devs(dev, hd_table);
|
2010-06-24 17:59:29 +00:00
|
|
|
return dev;
|
2009-10-07 14:56:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* hd_table must contain 4 block drivers */
|
|
|
|
/* NOTE: for the PIIX4, the IRQs and IOports are hardcoded */
|
2010-06-24 17:59:29 +00:00
|
|
|
PCIDevice *pci_piix4_ide_init(PCIBus *bus, DriveInfo **hd_table, int devfn)
|
2009-10-07 14:56:24 +00:00
|
|
|
{
|
|
|
|
PCIDevice *dev;
|
|
|
|
|
2009-12-09 16:07:53 +00:00
|
|
|
dev = pci_create_simple(bus, devfn, "piix4-ide");
|
2009-10-07 14:56:24 +00:00
|
|
|
pci_ide_create_devs(dev, hd_table);
|
2010-06-24 17:59:29 +00:00
|
|
|
return dev;
|
2009-10-07 14:56:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static PCIDeviceInfo piix_ide_info[] = {
|
|
|
|
{
|
2009-12-09 16:07:53 +00:00
|
|
|
.qdev.name = "piix3-ide",
|
2009-10-07 14:56:24 +00:00
|
|
|
.qdev.size = sizeof(PCIIDEState),
|
2009-10-27 12:52:13 +00:00
|
|
|
.qdev.no_user = 1,
|
2011-01-06 14:14:38 +00:00
|
|
|
.no_hotplug = 1,
|
2009-10-07 14:56:24 +00:00
|
|
|
.init = pci_piix3_ide_initfn,
|
|
|
|
},{
|
2009-12-09 16:07:53 +00:00
|
|
|
.qdev.name = "piix4-ide",
|
2009-10-07 14:56:24 +00:00
|
|
|
.qdev.size = sizeof(PCIIDEState),
|
2009-10-27 12:52:13 +00:00
|
|
|
.qdev.no_user = 1,
|
2011-01-06 14:14:38 +00:00
|
|
|
.no_hotplug = 1,
|
2009-10-07 14:56:24 +00:00
|
|
|
.init = pci_piix4_ide_initfn,
|
|
|
|
},{
|
|
|
|
/* end of list */
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
static void piix_ide_register(void)
|
|
|
|
{
|
|
|
|
pci_qdev_register_many(piix_ide_info);
|
|
|
|
}
|
|
|
|
device_init(piix_ide_register);
|