2008-12-07 20:08:45 +01:00
|
|
|
/*
|
|
|
|
* SuperH on-chip PCIC emulation.
|
|
|
|
*
|
|
|
|
* Copyright (c) 2008 Takashi YOSHII
|
|
|
|
*
|
|
|
|
* 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 15:40:22 +01:00
|
|
|
#include "hw/sysbus.h"
|
2013-02-05 17:06:20 +01:00
|
|
|
#include "hw/sh4/sh.h"
|
2013-02-04 15:40:22 +01:00
|
|
|
#include "hw/pci/pci.h"
|
|
|
|
#include "hw/pci/pci_host.h"
|
2012-12-17 18:20:00 +01:00
|
|
|
#include "qemu/bswap.h"
|
2012-12-17 18:19:49 +01:00
|
|
|
#include "exec/address-spaces.h"
|
2008-12-07 20:08:45 +01:00
|
|
|
|
2013-07-22 15:54:29 +02:00
|
|
|
#define TYPE_SH_PCI_HOST_BRIDGE "sh_pci"
|
|
|
|
|
|
|
|
#define SH_PCI_HOST_BRIDGE(obj) \
|
|
|
|
OBJECT_CHECK(SHPCIState, (obj), TYPE_SH_PCI_HOST_BRIDGE)
|
|
|
|
|
2011-01-19 18:23:59 +01:00
|
|
|
typedef struct SHPCIState {
|
2013-07-22 15:54:29 +02:00
|
|
|
PCIHostState parent_obj;
|
|
|
|
|
2008-12-07 20:08:45 +01:00
|
|
|
PCIDevice *dev;
|
2011-01-19 18:23:59 +01:00
|
|
|
qemu_irq irq[4];
|
2011-08-15 16:17:30 +02:00
|
|
|
MemoryRegion memconfig_p4;
|
|
|
|
MemoryRegion memconfig_a7;
|
|
|
|
MemoryRegion isa;
|
2008-12-07 20:08:45 +01:00
|
|
|
uint32_t par;
|
|
|
|
uint32_t mbr;
|
|
|
|
uint32_t iobr;
|
2011-01-19 18:23:59 +01:00
|
|
|
} SHPCIState;
|
2008-12-07 20:08:45 +01:00
|
|
|
|
2012-10-23 12:30:10 +02:00
|
|
|
static void sh_pci_reg_write (void *p, hwaddr addr, uint64_t val,
|
2011-08-15 16:17:30 +02:00
|
|
|
unsigned size)
|
2008-12-07 20:08:45 +01:00
|
|
|
{
|
2011-01-19 18:23:59 +01:00
|
|
|
SHPCIState *pcic = p;
|
2013-07-22 15:54:29 +02:00
|
|
|
PCIHostState *phb = PCI_HOST_BRIDGE(pcic);
|
|
|
|
|
2008-12-07 20:08:45 +01:00
|
|
|
switch(addr) {
|
|
|
|
case 0 ... 0xfc:
|
|
|
|
cpu_to_le32w((uint32_t*)(pcic->dev->config + addr), val);
|
|
|
|
break;
|
|
|
|
case 0x1c0:
|
|
|
|
pcic->par = val;
|
|
|
|
break;
|
|
|
|
case 0x1c4:
|
2010-04-11 23:59:39 +02:00
|
|
|
pcic->mbr = val & 0xff000001;
|
2008-12-07 20:08:45 +01:00
|
|
|
break;
|
|
|
|
case 0x1c8:
|
2010-04-11 23:59:39 +02:00
|
|
|
if ((val & 0xfffc0000) != (pcic->iobr & 0xfffc0000)) {
|
2011-08-15 16:17:30 +02:00
|
|
|
memory_region_del_subregion(get_system_memory(), &pcic->isa);
|
2010-04-11 23:59:39 +02:00
|
|
|
pcic->iobr = val & 0xfffc0001;
|
2011-08-15 16:17:30 +02:00
|
|
|
memory_region_add_subregion(get_system_memory(),
|
|
|
|
pcic->iobr & 0xfffc0000, &pcic->isa);
|
2010-04-11 23:59:39 +02:00
|
|
|
}
|
2008-12-07 20:08:45 +01:00
|
|
|
break;
|
|
|
|
case 0x220:
|
2013-07-22 15:54:29 +02:00
|
|
|
pci_data_write(phb->bus, pcic->par, val, 4);
|
2008-12-07 20:08:45 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-10-23 12:30:10 +02:00
|
|
|
static uint64_t sh_pci_reg_read (void *p, hwaddr addr,
|
2011-08-15 16:17:30 +02:00
|
|
|
unsigned size)
|
2008-12-07 20:08:45 +01:00
|
|
|
{
|
2011-01-19 18:23:59 +01:00
|
|
|
SHPCIState *pcic = p;
|
2013-07-22 15:54:29 +02:00
|
|
|
PCIHostState *phb = PCI_HOST_BRIDGE(pcic);
|
|
|
|
|
2008-12-07 20:08:45 +01:00
|
|
|
switch(addr) {
|
|
|
|
case 0 ... 0xfc:
|
|
|
|
return le32_to_cpup((uint32_t*)(pcic->dev->config + addr));
|
|
|
|
case 0x1c0:
|
|
|
|
return pcic->par;
|
2010-04-11 23:59:39 +02:00
|
|
|
case 0x1c4:
|
|
|
|
return pcic->mbr;
|
|
|
|
case 0x1c8:
|
|
|
|
return pcic->iobr;
|
2008-12-07 20:08:45 +01:00
|
|
|
case 0x220:
|
2013-07-22 15:54:29 +02:00
|
|
|
return pci_data_read(phb->bus, pcic->par, 4);
|
2008-12-07 20:08:45 +01:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-08-15 16:17:30 +02:00
|
|
|
static const MemoryRegionOps sh_pci_reg_ops = {
|
|
|
|
.read = sh_pci_reg_read,
|
|
|
|
.write = sh_pci_reg_write,
|
|
|
|
.endianness = DEVICE_NATIVE_ENDIAN,
|
|
|
|
.valid = {
|
|
|
|
.min_access_size = 4,
|
|
|
|
.max_access_size = 4,
|
|
|
|
},
|
2008-12-07 20:08:45 +01:00
|
|
|
};
|
|
|
|
|
2011-01-19 18:23:59 +01:00
|
|
|
static int sh_pci_map_irq(PCIDevice *d, int irq_num)
|
|
|
|
{
|
|
|
|
return (d->devfn >> 3);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void sh_pci_set_irq(void *opaque, int irq_num, int level)
|
|
|
|
{
|
|
|
|
qemu_irq *pic = opaque;
|
|
|
|
|
|
|
|
qemu_set_irq(pic[irq_num], level);
|
|
|
|
}
|
|
|
|
|
2012-01-24 20:12:29 +01:00
|
|
|
static int sh_pci_device_init(SysBusDevice *dev)
|
2011-01-19 18:23:59 +01:00
|
|
|
{
|
2013-07-22 15:54:29 +02:00
|
|
|
PCIHostState *phb;
|
2011-01-19 18:23:59 +01:00
|
|
|
SHPCIState *s;
|
|
|
|
int i;
|
|
|
|
|
2013-07-22 15:54:29 +02:00
|
|
|
s = SH_PCI_HOST_BRIDGE(dev);
|
|
|
|
phb = PCI_HOST_BRIDGE(s);
|
2011-01-19 18:23:59 +01:00
|
|
|
for (i = 0; i < 4; i++) {
|
|
|
|
sysbus_init_irq(dev, &s->irq[i]);
|
|
|
|
}
|
2013-07-22 15:54:29 +02:00
|
|
|
phb->bus = pci_register_bus(DEVICE(dev), "pci",
|
|
|
|
sh_pci_set_irq, sh_pci_map_irq,
|
|
|
|
s->irq,
|
|
|
|
get_system_memory(),
|
|
|
|
get_system_io(),
|
|
|
|
PCI_DEVFN(0, 0), 4, TYPE_PCI_BUS);
|
2013-06-07 03:25:08 +02:00
|
|
|
memory_region_init_io(&s->memconfig_p4, OBJECT(s), &sh_pci_reg_ops, s,
|
2011-08-15 16:17:30 +02:00
|
|
|
"sh_pci", 0x224);
|
2013-06-07 03:25:08 +02:00
|
|
|
memory_region_init_alias(&s->memconfig_a7, OBJECT(s), "sh_pci.2",
|
|
|
|
&s->memconfig_p4, 0, 0x224);
|
2013-07-22 15:54:11 +02:00
|
|
|
memory_region_init_alias(&s->isa, OBJECT(s), "sh_pci.isa",
|
|
|
|
get_system_io(), 0, 0x40000);
|
2011-12-16 23:37:46 +01:00
|
|
|
sysbus_init_mmio(dev, &s->memconfig_p4);
|
2011-11-27 10:38:10 +01:00
|
|
|
sysbus_init_mmio(dev, &s->memconfig_a7);
|
2011-12-16 23:37:46 +01:00
|
|
|
s->iobr = 0xfe240000;
|
|
|
|
memory_region_add_subregion(get_system_memory(), s->iobr, &s->isa);
|
|
|
|
|
2013-07-22 15:54:29 +02:00
|
|
|
s->dev = pci_create_simple(phb->bus, PCI_DEVFN(0, 0), "sh_pci_host");
|
2011-01-19 18:23:59 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int sh_pci_host_init(PCIDevice *d)
|
|
|
|
{
|
|
|
|
pci_set_word(d->config + PCI_COMMAND, PCI_COMMAND_WAIT);
|
|
|
|
pci_set_word(d->config + PCI_STATUS, PCI_STATUS_CAP_LIST |
|
|
|
|
PCI_STATUS_FAST_BACK | PCI_STATUS_DEVSEL_MEDIUM);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-12-04 19:22:06 +01:00
|
|
|
static void sh_pci_host_class_init(ObjectClass *klass, void *data)
|
|
|
|
{
|
|
|
|
PCIDeviceClass *k = PCI_DEVICE_CLASS(klass);
|
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-28 17:26:58 +01:00
|
|
|
DeviceClass *dc = DEVICE_CLASS(klass);
|
2011-12-04 19:22:06 +01:00
|
|
|
|
|
|
|
k->init = sh_pci_host_init;
|
|
|
|
k->vendor_id = PCI_VENDOR_ID_HITACHI;
|
|
|
|
k->device_id = PCI_DEVICE_ID_HITACHI_SH7751R;
|
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-28 17:26:58 +01: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-04 19:22:06 +01:00
|
|
|
}
|
|
|
|
|
2013-01-10 16:19:07 +01:00
|
|
|
static const TypeInfo sh_pci_host_info = {
|
2011-12-08 04:34:16 +01:00
|
|
|
.name = "sh_pci_host",
|
|
|
|
.parent = TYPE_PCI_DEVICE,
|
|
|
|
.instance_size = sizeof(PCIDevice),
|
|
|
|
.class_init = sh_pci_host_class_init,
|
2011-01-19 18:23:59 +01:00
|
|
|
};
|
|
|
|
|
2012-01-24 20:12:29 +01:00
|
|
|
static void sh_pci_device_class_init(ObjectClass *klass, void *data)
|
|
|
|
{
|
|
|
|
SysBusDeviceClass *sdc = SYS_BUS_DEVICE_CLASS(klass);
|
|
|
|
|
|
|
|
sdc->init = sh_pci_device_init;
|
|
|
|
}
|
|
|
|
|
2013-01-10 16:19:07 +01:00
|
|
|
static const TypeInfo sh_pci_device_info = {
|
2013-07-22 15:54:29 +02:00
|
|
|
.name = TYPE_SH_PCI_HOST_BRIDGE,
|
|
|
|
.parent = TYPE_PCI_HOST_BRIDGE,
|
2011-12-08 04:34:16 +01:00
|
|
|
.instance_size = sizeof(SHPCIState),
|
|
|
|
.class_init = sh_pci_device_class_init,
|
2012-01-24 20:12:29 +01:00
|
|
|
};
|
|
|
|
|
2012-02-09 15:20:55 +01:00
|
|
|
static void sh_pci_register_types(void)
|
2008-12-07 20:08:45 +01:00
|
|
|
{
|
2011-12-08 04:34:16 +01:00
|
|
|
type_register_static(&sh_pci_device_info);
|
|
|
|
type_register_static(&sh_pci_host_info);
|
2008-12-07 20:08:45 +01:00
|
|
|
}
|
2011-01-19 18:23:59 +01:00
|
|
|
|
2012-02-09 15:20:55 +01:00
|
|
|
type_init(sh_pci_register_types)
|