2006-05-14 00:11:23 +08:00
|
|
|
/*
|
2007-10-29 07:42:18 +08:00
|
|
|
* QEMU Grackle PCI host (heathrow OldWorld PowerMac)
|
2006-05-14 00:11:23 +08:00
|
|
|
*
|
2007-10-29 07:42:18 +08:00
|
|
|
* Copyright (c) 2006-2007 Fabrice Bellard
|
|
|
|
* Copyright (c) 2007 Jocelyn Mayer
|
2007-09-17 05:08:06 +08:00
|
|
|
*
|
2006-05-14 00:11:23 +08:00
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2013-02-04 22:40:22 +08:00
|
|
|
#include "hw/pci/pci_host.h"
|
|
|
|
#include "hw/ppc/mac.h"
|
|
|
|
#include "hw/pci/pci.h"
|
2007-11-18 01:14:51 +08:00
|
|
|
|
2008-12-24 17:38:16 +08:00
|
|
|
/* debug Grackle */
|
|
|
|
//#define DEBUG_GRACKLE
|
|
|
|
|
|
|
|
#ifdef DEBUG_GRACKLE
|
2009-05-14 01:53:17 +08:00
|
|
|
#define GRACKLE_DPRINTF(fmt, ...) \
|
|
|
|
do { printf("GRACKLE: " fmt , ## __VA_ARGS__); } while (0)
|
2008-12-24 17:38:16 +08:00
|
|
|
#else
|
2009-05-14 01:53:17 +08:00
|
|
|
#define GRACKLE_DPRINTF(fmt, ...)
|
2008-12-24 17:38:16 +08:00
|
|
|
#endif
|
|
|
|
|
2012-08-21 01:08:00 +08:00
|
|
|
#define GRACKLE_PCI_HOST_BRIDGE(obj) \
|
|
|
|
OBJECT_CHECK(GrackleState, (obj), TYPE_GRACKLE_PCI_HOST_BRIDGE)
|
|
|
|
|
2009-08-01 04:23:02 +08:00
|
|
|
typedef struct GrackleState {
|
2012-08-21 01:08:09 +08:00
|
|
|
PCIHostState parent_obj;
|
2012-08-21 01:08:00 +08:00
|
|
|
|
2011-09-18 04:30:50 +08:00
|
|
|
MemoryRegion pci_mmio;
|
|
|
|
MemoryRegion pci_hole;
|
2009-08-01 04:23:02 +08:00
|
|
|
} GrackleState;
|
2006-05-14 00:11:23 +08:00
|
|
|
|
2006-09-24 08:16:34 +08:00
|
|
|
/* Don't know if this matches real hardware, but it agrees with OHW. */
|
|
|
|
static int pci_grackle_map_irq(PCIDevice *pci_dev, int irq_num)
|
2006-05-14 00:11:23 +08:00
|
|
|
{
|
2006-09-24 08:16:34 +08:00
|
|
|
return (irq_num + (pci_dev->devfn >> 3)) & 3;
|
|
|
|
}
|
|
|
|
|
2009-08-28 21:28:17 +08:00
|
|
|
static void pci_grackle_set_irq(void *opaque, int irq_num, int level)
|
2006-09-24 08:16:34 +08:00
|
|
|
{
|
2009-08-28 21:28:17 +08:00
|
|
|
qemu_irq *pic = opaque;
|
|
|
|
|
2008-12-24 17:38:16 +08:00
|
|
|
GRACKLE_DPRINTF("set_irq num %d level %d\n", irq_num, level);
|
2007-10-29 07:42:18 +08:00
|
|
|
qemu_set_irq(pic[irq_num + 0x15], level);
|
2006-05-14 00:11:23 +08:00
|
|
|
}
|
|
|
|
|
2011-07-26 19:26:19 +08:00
|
|
|
PCIBus *pci_grackle_init(uint32_t base, qemu_irq *pic,
|
2011-08-08 21:09:04 +08:00
|
|
|
MemoryRegion *address_space_mem,
|
|
|
|
MemoryRegion *address_space_io)
|
2009-08-01 04:23:02 +08:00
|
|
|
{
|
|
|
|
DeviceState *dev;
|
|
|
|
SysBusDevice *s;
|
2012-08-21 01:08:00 +08:00
|
|
|
PCIHostState *phb;
|
2009-08-01 04:23:02 +08:00
|
|
|
GrackleState *d;
|
|
|
|
|
2012-08-21 01:08:00 +08:00
|
|
|
dev = qdev_create(NULL, TYPE_GRACKLE_PCI_HOST_BRIDGE);
|
2009-10-07 07:15:58 +08:00
|
|
|
qdev_init_nofail(dev);
|
2012-08-21 01:08:00 +08:00
|
|
|
s = SYS_BUS_DEVICE(dev);
|
2012-08-21 01:08:08 +08:00
|
|
|
phb = PCI_HOST_BRIDGE(dev);
|
2012-08-21 01:08:00 +08:00
|
|
|
d = GRACKLE_PCI_HOST_BRIDGE(dev);
|
2011-09-18 04:30:50 +08:00
|
|
|
|
2013-06-07 09:25:08 +08:00
|
|
|
memory_region_init(&d->pci_mmio, OBJECT(s), "pci-mmio", 0x100000000ULL);
|
|
|
|
memory_region_init_alias(&d->pci_hole, OBJECT(s), "pci-hole", &d->pci_mmio,
|
2011-09-18 04:30:50 +08:00
|
|
|
0x80000000ULL, 0x7e000000ULL);
|
|
|
|
memory_region_add_subregion(address_space_mem, 0x80000000ULL,
|
|
|
|
&d->pci_hole);
|
|
|
|
|
2013-12-04 19:42:32 +08:00
|
|
|
phb->bus = pci_register_bus(dev, NULL,
|
2012-08-21 01:08:00 +08:00
|
|
|
pci_grackle_set_irq,
|
|
|
|
pci_grackle_map_irq,
|
|
|
|
pic,
|
|
|
|
&d->pci_mmio,
|
|
|
|
address_space_io,
|
2013-03-15 06:01:11 +08:00
|
|
|
0, 4, TYPE_PCI_BUS);
|
2009-08-01 04:23:02 +08:00
|
|
|
|
2012-08-21 01:08:00 +08:00
|
|
|
pci_create_simple(phb->bus, 0, "grackle");
|
2009-08-01 04:23:02 +08:00
|
|
|
|
|
|
|
sysbus_mmio_map(s, 0, base);
|
|
|
|
sysbus_mmio_map(s, 1, base + 0x00200000);
|
|
|
|
|
2012-08-21 01:08:00 +08:00
|
|
|
return phb->bus;
|
2009-08-01 04:23:02 +08:00
|
|
|
}
|
|
|
|
|
2009-08-14 16:36:05 +08:00
|
|
|
static int pci_grackle_init_device(SysBusDevice *dev)
|
2009-08-01 04:23:02 +08:00
|
|
|
{
|
2012-08-21 01:08:00 +08:00
|
|
|
PCIHostState *phb;
|
2009-08-01 04:23:02 +08:00
|
|
|
|
2012-08-21 01:08:08 +08:00
|
|
|
phb = PCI_HOST_BRIDGE(dev);
|
2009-08-01 04:23:02 +08:00
|
|
|
|
2013-06-07 09:25:08 +08:00
|
|
|
memory_region_init_io(&phb->conf_mem, OBJECT(dev), &pci_host_conf_le_ops,
|
2012-08-21 01:08:00 +08:00
|
|
|
dev, "pci-conf-idx", 0x1000);
|
2013-06-07 09:25:08 +08:00
|
|
|
memory_region_init_io(&phb->data_mem, OBJECT(dev), &pci_host_data_le_ops,
|
2012-08-21 01:08:00 +08:00
|
|
|
dev, "pci-data-idx", 0x1000);
|
|
|
|
sysbus_init_mmio(dev, &phb->conf_mem);
|
|
|
|
sysbus_init_mmio(dev, &phb->data_mem);
|
2009-08-01 04:23:02 +08:00
|
|
|
|
2009-08-14 16:36:05 +08:00
|
|
|
return 0;
|
2009-08-01 04:23:02 +08:00
|
|
|
}
|
|
|
|
|
2015-01-19 22:52:30 +08:00
|
|
|
static void grackle_pci_host_realize(PCIDevice *d, Error **errp)
|
2009-08-01 04:23:02 +08:00
|
|
|
{
|
2006-05-14 00:11:23 +08:00
|
|
|
d->config[0x09] = 0x01;
|
2009-08-01 04:23:02 +08:00
|
|
|
}
|
2006-05-14 00:11:23 +08:00
|
|
|
|
2011-12-05 02:22:06 +08:00
|
|
|
static void grackle_pci_class_init(ObjectClass *klass, void *data)
|
|
|
|
{
|
|
|
|
PCIDeviceClass *k = PCI_DEVICE_CLASS(klass);
|
2011-12-08 11:34:16 +08:00
|
|
|
DeviceClass *dc = DEVICE_CLASS(klass);
|
2011-12-05 02:22:06 +08:00
|
|
|
|
2015-01-19 22:52:30 +08:00
|
|
|
k->realize = grackle_pci_host_realize;
|
2011-12-05 02:22:06 +08:00
|
|
|
k->vendor_id = PCI_VENDOR_ID_MOTOROLA;
|
|
|
|
k->device_id = PCI_DEVICE_ID_MOTOROLA_MPC106;
|
|
|
|
k->revision = 0x00;
|
|
|
|
k->class_id = PCI_CLASS_BRIDGE_HOST;
|
pci-host: Consistently set cannot_instantiate_with_device_add_yet
Many PCI host bridges consist of a sysbus device and a PCI device.
You need both for the thing to work. Arguably, these bridges should
be modelled as a single, composite devices instead of pairs of
seemingly independent devices you can only use together, but we're not
there, yet.
Since the sysbus part can't be instantiated with device_add, yet,
permitting it with the PCI part is useless. We shouldn't offer
useless options to the user, so let's set
cannot_instantiate_with_device_add_yet for them.
It's already set for Bonito, Grackle, i440FX and Raven. Document why.
Set it for the others: dec-21154, e500-host-bridge, gt64120_pci, mch,
pbm-pci, ppc4xx-host-bridge, sh_pci_host, u3-agp, uni-north-agp,
uni-north-internal-pci, uni-north-pci, and versatile_pci_host.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Marcel Apfelbaum <marcel.a@redhat.com>
Signed-off-by: Andreas Färber <afaerber@suse.de>
2013-11-29 00:26:58 +08:00
|
|
|
/*
|
|
|
|
* PCI-facing part of the host bridge, not usable without the
|
|
|
|
* host-facing part, which can't be device_add'ed, yet.
|
|
|
|
*/
|
|
|
|
dc->cannot_instantiate_with_device_add_yet = true;
|
2011-12-05 02:22:06 +08:00
|
|
|
}
|
|
|
|
|
2012-08-21 01:07:56 +08:00
|
|
|
static const TypeInfo grackle_pci_info = {
|
2011-12-08 11:34:16 +08:00
|
|
|
.name = "grackle",
|
|
|
|
.parent = TYPE_PCI_DEVICE,
|
|
|
|
.instance_size = sizeof(PCIDevice),
|
2011-12-05 02:22:06 +08:00
|
|
|
.class_init = grackle_pci_class_init,
|
2009-08-01 04:23:02 +08:00
|
|
|
};
|
2008-12-29 02:27:10 +08:00
|
|
|
|
2012-01-25 03:12:29 +08:00
|
|
|
static void pci_grackle_class_init(ObjectClass *klass, void *data)
|
|
|
|
{
|
|
|
|
SysBusDeviceClass *k = SYS_BUS_DEVICE_CLASS(klass);
|
|
|
|
|
|
|
|
k->init = pci_grackle_init_device;
|
|
|
|
}
|
|
|
|
|
2012-08-21 01:07:56 +08:00
|
|
|
static const TypeInfo grackle_pci_host_info = {
|
2012-08-21 01:08:00 +08:00
|
|
|
.name = TYPE_GRACKLE_PCI_HOST_BRIDGE,
|
2012-08-21 01:08:08 +08:00
|
|
|
.parent = TYPE_PCI_HOST_BRIDGE,
|
2011-12-08 11:34:16 +08:00
|
|
|
.instance_size = sizeof(GrackleState),
|
|
|
|
.class_init = pci_grackle_class_init,
|
2012-01-18 08:11:16 +08:00
|
|
|
};
|
|
|
|
|
2012-02-09 22:20:55 +08:00
|
|
|
static void grackle_register_types(void)
|
2009-08-01 04:23:02 +08:00
|
|
|
{
|
2011-12-08 11:34:16 +08:00
|
|
|
type_register_static(&grackle_pci_info);
|
|
|
|
type_register_static(&grackle_pci_host_info);
|
2006-05-14 00:11:23 +08:00
|
|
|
}
|
2009-08-01 04:23:02 +08:00
|
|
|
|
2012-02-09 22:20:55 +08:00
|
|
|
type_init(grackle_register_types)
|