blob: 0c2afe9c85b472297979849290c4456c8a467590 [file] [log] [blame]
pbrook502a5392006-05-13 16:11:23 +00001/*
2 * QEMU PREP PCI host
3 *
4 * Copyright (c) 2006 Fabrice Bellard
ths5fafdf22007-09-16 21:08:06 +00005 *
pbrook502a5392006-05-13 16:11:23 +00006 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22 * THE SOFTWARE.
23 */
24
pbrook87ecb682007-11-17 17:14:51 +000025#include "hw.h"
26#include "pci.h"
pbrook502a5392006-05-13 16:11:23 +000027#include "pci_host.h"
Michael S. Tsirkin18e08a52009-11-11 14:59:56 +020028#include "prep_pci.h"
pbrook502a5392006-05-13 16:11:23 +000029
30typedef PCIHostState PREPPCIState;
31
Anthony Liguoric227f092009-10-01 16:12:16 -050032static inline uint32_t PPC_PCIIO_config(target_phys_addr_t addr)
pbrook502a5392006-05-13 16:11:23 +000033{
34 int i;
35
36 for(i = 0; i < 11; i++) {
37 if ((addr & (1 << (11 + i))) != 0)
38 break;
39 }
40 return (addr & 0x7ff) | (i << 11);
41}
42
Anthony Liguoric227f092009-10-01 16:12:16 -050043static void PPC_PCIIO_writeb (void *opaque, target_phys_addr_t addr, uint32_t val)
pbrook502a5392006-05-13 16:11:23 +000044{
45 PREPPCIState *s = opaque;
46 pci_data_write(s->bus, PPC_PCIIO_config(addr), val, 1);
47}
48
Anthony Liguoric227f092009-10-01 16:12:16 -050049static void PPC_PCIIO_writew (void *opaque, target_phys_addr_t addr, uint32_t val)
pbrook502a5392006-05-13 16:11:23 +000050{
51 PREPPCIState *s = opaque;
pbrook502a5392006-05-13 16:11:23 +000052 val = bswap16(val);
pbrook502a5392006-05-13 16:11:23 +000053 pci_data_write(s->bus, PPC_PCIIO_config(addr), val, 2);
54}
55
Anthony Liguoric227f092009-10-01 16:12:16 -050056static void PPC_PCIIO_writel (void *opaque, target_phys_addr_t addr, uint32_t val)
pbrook502a5392006-05-13 16:11:23 +000057{
58 PREPPCIState *s = opaque;
pbrook502a5392006-05-13 16:11:23 +000059 val = bswap32(val);
pbrook502a5392006-05-13 16:11:23 +000060 pci_data_write(s->bus, PPC_PCIIO_config(addr), val, 4);
61}
62
Anthony Liguoric227f092009-10-01 16:12:16 -050063static uint32_t PPC_PCIIO_readb (void *opaque, target_phys_addr_t addr)
pbrook502a5392006-05-13 16:11:23 +000064{
65 PREPPCIState *s = opaque;
66 uint32_t val;
67 val = pci_data_read(s->bus, PPC_PCIIO_config(addr), 1);
68 return val;
69}
70
Anthony Liguoric227f092009-10-01 16:12:16 -050071static uint32_t PPC_PCIIO_readw (void *opaque, target_phys_addr_t addr)
pbrook502a5392006-05-13 16:11:23 +000072{
73 PREPPCIState *s = opaque;
74 uint32_t val;
75 val = pci_data_read(s->bus, PPC_PCIIO_config(addr), 2);
pbrook502a5392006-05-13 16:11:23 +000076 val = bswap16(val);
pbrook502a5392006-05-13 16:11:23 +000077 return val;
78}
79
Anthony Liguoric227f092009-10-01 16:12:16 -050080static uint32_t PPC_PCIIO_readl (void *opaque, target_phys_addr_t addr)
pbrook502a5392006-05-13 16:11:23 +000081{
82 PREPPCIState *s = opaque;
83 uint32_t val;
84 val = pci_data_read(s->bus, PPC_PCIIO_config(addr), 4);
pbrook502a5392006-05-13 16:11:23 +000085 val = bswap32(val);
pbrook502a5392006-05-13 16:11:23 +000086 return val;
87}
88
Blue Swirld60efc62009-08-25 18:29:31 +000089static CPUWriteMemoryFunc * const PPC_PCIIO_write[] = {
pbrook502a5392006-05-13 16:11:23 +000090 &PPC_PCIIO_writeb,
91 &PPC_PCIIO_writew,
92 &PPC_PCIIO_writel,
93};
94
Blue Swirld60efc62009-08-25 18:29:31 +000095static CPUReadMemoryFunc * const PPC_PCIIO_read[] = {
pbrook502a5392006-05-13 16:11:23 +000096 &PPC_PCIIO_readb,
97 &PPC_PCIIO_readw,
98 &PPC_PCIIO_readl,
99};
100
pbrookd2b59312006-09-24 00:16:34 +0000101static int prep_map_irq(PCIDevice *pci_dev, int irq_num)
pbrook502a5392006-05-13 16:11:23 +0000102{
pbrook80b3ada2006-09-24 17:01:44 +0000103 return (irq_num + (pci_dev->devfn >> 3)) & 1;
pbrookd2b59312006-09-24 00:16:34 +0000104}
105
Juan Quintela5d4e84c2009-08-28 15:28:17 +0200106static void prep_set_irq(void *opaque, int irq_num, int level)
pbrookd2b59312006-09-24 00:16:34 +0000107{
Juan Quintela5d4e84c2009-08-28 15:28:17 +0200108 qemu_irq *pic = opaque;
109
j_mayer8c9d7f82007-10-29 10:24:59 +0000110 qemu_set_irq(pic[(irq_num & 1) ? 11 : 9] , level);
pbrook502a5392006-05-13 16:11:23 +0000111}
112
pbrookd537cf62007-04-07 18:14:41 +0000113PCIBus *pci_prep_init(qemu_irq *pic)
pbrook502a5392006-05-13 16:11:23 +0000114{
115 PREPPCIState *s;
116 PCIDevice *d;
117 int PPC_io_memory;
118
119 s = qemu_mallocz(sizeof(PREPPCIState));
Paul Brook02e2da42009-05-23 00:05:19 +0100120 s->bus = pci_register_bus(NULL, "pci",
121 prep_set_irq, prep_map_irq, pic, 0, 4);
pbrook502a5392006-05-13 16:11:23 +0000122
Isaku Yamahataf08b32f2009-11-12 14:58:34 +0900123 pci_host_conf_register_ioport(0xcf8, s);
pbrook502a5392006-05-13 16:11:23 +0000124
Isaku Yamahata4f5e19e2009-10-30 21:21:06 +0900125 pci_host_data_register_ioport(0xcfc, s);
pbrook502a5392006-05-13 16:11:23 +0000126
Avi Kivity1eed09c2009-06-14 11:38:51 +0300127 PPC_io_memory = cpu_register_io_memory(PPC_PCIIO_read,
pbrook502a5392006-05-13 16:11:23 +0000128 PPC_PCIIO_write, s);
129 cpu_register_physical_memory(0x80800000, 0x00400000, PPC_io_memory);
130
ths5fafdf22007-09-16 21:08:06 +0000131 /* PCI host bridge */
132 d = pci_register_device(s->bus, "PREP Host Bridge - Motorola Raven",
pbrook502a5392006-05-13 16:11:23 +0000133 sizeof(PCIDevice), 0, NULL, NULL);
aliguorideb54392009-01-26 15:37:35 +0000134 pci_config_set_vendor_id(d->config, PCI_VENDOR_ID_MOTOROLA);
135 pci_config_set_device_id(d->config, PCI_DEVICE_ID_MOTOROLA_RAVEN);
pbrook502a5392006-05-13 16:11:23 +0000136 d->config[0x08] = 0x00; // revision
blueswir1173a5432009-02-01 19:26:20 +0000137 pci_config_set_class(d->config, PCI_CLASS_BRIDGE_HOST);
pbrook502a5392006-05-13 16:11:23 +0000138 d->config[0x0C] = 0x08; // cache_line_size
139 d->config[0x0D] = 0x10; // latency_timer
pbrook502a5392006-05-13 16:11:23 +0000140 d->config[0x34] = 0x00; // capabilities_pointer
141
142 return s->bus;
143}