2 * This program is free software; you can redistribute it and/or modify
3 * it under the terms of the GNU General Public License, version 2, as
4 * published by the Free Software Foundation.
6 * This program is distributed in the hope that it will be useful,
7 * but WITHOUT ANY WARRANTY; without even the implied warranty of
8 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
9 * GNU General Public License for more details.
11 * You should have received a copy of the GNU General Public License
12 * along with this program; if not, see <http://www.gnu.org/licenses/>.
14 * Copyright IBM Corp. 2008
16 * Authors: Hollis Blanchard <hollisb@us.ibm.com>
19 /* This file implements emulation of the 32-bit PCI controller found in some
20 * 4xx SoCs, such as the 440EP. */
22 #include "qemu/osdep.h"
24 #include "hw/ppc/ppc.h"
25 #include "hw/ppc/ppc4xx.h"
26 #include "hw/pci/pci.h"
27 #include "hw/pci/pci_host.h"
28 #include "exec/address-spaces.h"
32 #define DPRINTF(fmt, ...) do { printf(fmt, ## __VA_ARGS__); } while (0)
34 #define DPRINTF(fmt, ...)
49 #define PPC4xx_PCI_HOST_BRIDGE(obj) \
50 OBJECT_CHECK(PPC4xxPCIState, (obj), TYPE_PPC4xx_PCI_HOST_BRIDGE)
52 #define PPC4xx_PCI_NR_PMMS 3
53 #define PPC4xx_PCI_NR_PTMS 2
55 struct PPC4xxPCIState
{
56 PCIHostState parent_obj
;
58 struct PCIMasterMap pmm
[PPC4xx_PCI_NR_PMMS
];
59 struct PCITargetMap ptm
[PPC4xx_PCI_NR_PTMS
];
62 MemoryRegion container
;
65 typedef struct PPC4xxPCIState PPC4xxPCIState
;
67 #define PCIC0_CFGADDR 0x0
68 #define PCIC0_CFGDATA 0x4
70 /* PLB Memory Map (PMM) registers specify which PLB addresses are translated to
72 #define PCIL0_PMM0LA 0x0
73 #define PCIL0_PMM0MA 0x4
74 #define PCIL0_PMM0PCILA 0x8
75 #define PCIL0_PMM0PCIHA 0xc
76 #define PCIL0_PMM1LA 0x10
77 #define PCIL0_PMM1MA 0x14
78 #define PCIL0_PMM1PCILA 0x18
79 #define PCIL0_PMM1PCIHA 0x1c
80 #define PCIL0_PMM2LA 0x20
81 #define PCIL0_PMM2MA 0x24
82 #define PCIL0_PMM2PCILA 0x28
83 #define PCIL0_PMM2PCIHA 0x2c
85 /* PCI Target Map (PTM) registers specify which PCI addresses are translated to
87 #define PCIL0_PTM1MS 0x30
88 #define PCIL0_PTM1LA 0x34
89 #define PCIL0_PTM2MS 0x38
90 #define PCIL0_PTM2LA 0x3c
91 #define PCI_REG_BASE 0x800000
92 #define PCI_REG_SIZE 0x40
94 #define PCI_ALL_SIZE (PCI_REG_BASE + PCI_REG_SIZE)
96 static void ppc4xx_pci_reg_write4(void *opaque
, hwaddr offset
,
97 uint64_t value
, unsigned size
)
99 struct PPC4xxPCIState
*pci
= opaque
;
101 /* We ignore all target attempts at PCI configuration, effectively
102 * assuming a bidirectional 1:1 mapping of PLB and PCI space. */
106 pci
->pmm
[0].la
= value
;
109 pci
->pmm
[0].ma
= value
;
111 case PCIL0_PMM0PCIHA
:
112 pci
->pmm
[0].pciha
= value
;
114 case PCIL0_PMM0PCILA
:
115 pci
->pmm
[0].pcila
= value
;
119 pci
->pmm
[1].la
= value
;
122 pci
->pmm
[1].ma
= value
;
124 case PCIL0_PMM1PCIHA
:
125 pci
->pmm
[1].pciha
= value
;
127 case PCIL0_PMM1PCILA
:
128 pci
->pmm
[1].pcila
= value
;
132 pci
->pmm
[2].la
= value
;
135 pci
->pmm
[2].ma
= value
;
137 case PCIL0_PMM2PCIHA
:
138 pci
->pmm
[2].pciha
= value
;
140 case PCIL0_PMM2PCILA
:
141 pci
->pmm
[2].pcila
= value
;
145 pci
->ptm
[0].ms
= value
;
148 pci
->ptm
[0].la
= value
;
151 pci
->ptm
[1].ms
= value
;
154 pci
->ptm
[1].la
= value
;
158 printf("%s: unhandled PCI internal register 0x%lx\n", __func__
,
159 (unsigned long)offset
);
164 static uint64_t ppc4xx_pci_reg_read4(void *opaque
, hwaddr offset
,
167 struct PPC4xxPCIState
*pci
= opaque
;
172 value
= pci
->pmm
[0].la
;
175 value
= pci
->pmm
[0].ma
;
177 case PCIL0_PMM0PCIHA
:
178 value
= pci
->pmm
[0].pciha
;
180 case PCIL0_PMM0PCILA
:
181 value
= pci
->pmm
[0].pcila
;
185 value
= pci
->pmm
[1].la
;
188 value
= pci
->pmm
[1].ma
;
190 case PCIL0_PMM1PCIHA
:
191 value
= pci
->pmm
[1].pciha
;
193 case PCIL0_PMM1PCILA
:
194 value
= pci
->pmm
[1].pcila
;
198 value
= pci
->pmm
[2].la
;
201 value
= pci
->pmm
[2].ma
;
203 case PCIL0_PMM2PCIHA
:
204 value
= pci
->pmm
[2].pciha
;
206 case PCIL0_PMM2PCILA
:
207 value
= pci
->pmm
[2].pcila
;
211 value
= pci
->ptm
[0].ms
;
214 value
= pci
->ptm
[0].la
;
217 value
= pci
->ptm
[1].ms
;
220 value
= pci
->ptm
[1].la
;
224 printf("%s: invalid PCI internal register 0x%lx\n", __func__
,
225 (unsigned long)offset
);
232 static const MemoryRegionOps pci_reg_ops
= {
233 .read
= ppc4xx_pci_reg_read4
,
234 .write
= ppc4xx_pci_reg_write4
,
235 .endianness
= DEVICE_LITTLE_ENDIAN
,
238 static void ppc4xx_pci_reset(void *opaque
)
240 struct PPC4xxPCIState
*pci
= opaque
;
242 memset(pci
->pmm
, 0, sizeof(pci
->pmm
));
243 memset(pci
->ptm
, 0, sizeof(pci
->ptm
));
246 /* On Bamboo, all pins from each slot are tied to a single board IRQ. This
247 * may need further refactoring for other boards. */
248 static int ppc4xx_pci_map_irq(PCIDevice
*pci_dev
, int irq_num
)
250 int slot
= pci_dev
->devfn
>> 3;
252 DPRINTF("%s: devfn %x irq %d -> %d\n", __func__
,
253 pci_dev
->devfn
, irq_num
, slot
);
258 static void ppc4xx_pci_set_irq(void *opaque
, int irq_num
, int level
)
260 qemu_irq
*pci_irqs
= opaque
;
262 DPRINTF("%s: PCI irq %d\n", __func__
, irq_num
);
264 fprintf(stderr
, "%s: PCI irq %d\n", __func__
, irq_num
);
267 qemu_set_irq(pci_irqs
[irq_num
], level
);
270 static const VMStateDescription vmstate_pci_master_map
= {
271 .name
= "pci_master_map",
273 .minimum_version_id
= 0,
274 .fields
= (VMStateField
[]) {
275 VMSTATE_UINT32(la
, struct PCIMasterMap
),
276 VMSTATE_UINT32(ma
, struct PCIMasterMap
),
277 VMSTATE_UINT32(pcila
, struct PCIMasterMap
),
278 VMSTATE_UINT32(pciha
, struct PCIMasterMap
),
279 VMSTATE_END_OF_LIST()
283 static const VMStateDescription vmstate_pci_target_map
= {
284 .name
= "pci_target_map",
286 .minimum_version_id
= 0,
287 .fields
= (VMStateField
[]) {
288 VMSTATE_UINT32(ms
, struct PCITargetMap
),
289 VMSTATE_UINT32(la
, struct PCITargetMap
),
290 VMSTATE_END_OF_LIST()
294 static const VMStateDescription vmstate_ppc4xx_pci
= {
295 .name
= "ppc4xx_pci",
297 .minimum_version_id
= 1,
298 .fields
= (VMStateField
[]) {
299 VMSTATE_STRUCT_ARRAY(pmm
, PPC4xxPCIState
, PPC4xx_PCI_NR_PMMS
, 1,
300 vmstate_pci_master_map
,
301 struct PCIMasterMap
),
302 VMSTATE_STRUCT_ARRAY(ptm
, PPC4xxPCIState
, PPC4xx_PCI_NR_PTMS
, 1,
303 vmstate_pci_target_map
,
304 struct PCITargetMap
),
305 VMSTATE_END_OF_LIST()
309 /* XXX Interrupt acknowledge cycles not supported. */
310 static int ppc4xx_pcihost_initfn(SysBusDevice
*dev
)
317 h
= PCI_HOST_BRIDGE(dev
);
318 s
= PPC4xx_PCI_HOST_BRIDGE(dev
);
320 for (i
= 0; i
< ARRAY_SIZE(s
->irq
); i
++) {
321 sysbus_init_irq(dev
, &s
->irq
[i
]);
324 b
= pci_register_bus(DEVICE(dev
), NULL
, ppc4xx_pci_set_irq
,
325 ppc4xx_pci_map_irq
, s
->irq
, get_system_memory(),
326 get_system_io(), 0, 4, TYPE_PCI_BUS
);
329 pci_create_simple(b
, 0, "ppc4xx-host-bridge");
331 /* XXX split into 2 memory regions, one for config space, one for regs */
332 memory_region_init(&s
->container
, OBJECT(s
), "pci-container", PCI_ALL_SIZE
);
333 memory_region_init_io(&h
->conf_mem
, OBJECT(s
), &pci_host_conf_le_ops
, h
,
335 memory_region_init_io(&h
->data_mem
, OBJECT(s
), &pci_host_data_le_ops
, h
,
337 memory_region_init_io(&s
->iomem
, OBJECT(s
), &pci_reg_ops
, s
,
338 "pci.reg", PCI_REG_SIZE
);
339 memory_region_add_subregion(&s
->container
, PCIC0_CFGADDR
, &h
->conf_mem
);
340 memory_region_add_subregion(&s
->container
, PCIC0_CFGDATA
, &h
->data_mem
);
341 memory_region_add_subregion(&s
->container
, PCI_REG_BASE
, &s
->iomem
);
342 sysbus_init_mmio(dev
, &s
->container
);
343 qemu_register_reset(ppc4xx_pci_reset
, s
);
348 static void ppc4xx_host_bridge_class_init(ObjectClass
*klass
, void *data
)
350 PCIDeviceClass
*k
= PCI_DEVICE_CLASS(klass
);
351 DeviceClass
*dc
= DEVICE_CLASS(klass
);
353 dc
->desc
= "Host bridge";
354 k
->vendor_id
= PCI_VENDOR_ID_IBM
;
355 k
->device_id
= PCI_DEVICE_ID_IBM_440GX
;
356 k
->class_id
= PCI_CLASS_BRIDGE_OTHER
;
358 * PCI-facing part of the host bridge, not usable without the
359 * host-facing part, which can't be device_add'ed, yet.
361 dc
->cannot_instantiate_with_device_add_yet
= true;
364 static const TypeInfo ppc4xx_host_bridge_info
= {
365 .name
= "ppc4xx-host-bridge",
366 .parent
= TYPE_PCI_DEVICE
,
367 .instance_size
= sizeof(PCIDevice
),
368 .class_init
= ppc4xx_host_bridge_class_init
,
371 static void ppc4xx_pcihost_class_init(ObjectClass
*klass
, void *data
)
373 SysBusDeviceClass
*k
= SYS_BUS_DEVICE_CLASS(klass
);
374 DeviceClass
*dc
= DEVICE_CLASS(klass
);
376 k
->init
= ppc4xx_pcihost_initfn
;
377 dc
->vmsd
= &vmstate_ppc4xx_pci
;
380 static const TypeInfo ppc4xx_pcihost_info
= {
381 .name
= TYPE_PPC4xx_PCI_HOST_BRIDGE
,
382 .parent
= TYPE_PCI_HOST_BRIDGE
,
383 .instance_size
= sizeof(PPC4xxPCIState
),
384 .class_init
= ppc4xx_pcihost_class_init
,
387 static void ppc4xx_pci_register_types(void)
389 type_register_static(&ppc4xx_pcihost_info
);
390 type_register_static(&ppc4xx_host_bridge_info
);
393 type_init(ppc4xx_pci_register_types
)