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. */
30 #define DPRINTF(fmt, ...) do { printf(fmt, ## __VA_ARGS__); } while (0)
32 #define DPRINTF(fmt, ...)
47 #define PPC4xx_PCI_NR_PMMS 3
48 #define PPC4xx_PCI_NR_PTMS 2
50 struct PPC4xxPCIState
{
51 struct PCIMasterMap pmm
[PPC4xx_PCI_NR_PMMS
];
52 struct PCITargetMap ptm
[PPC4xx_PCI_NR_PTMS
];
54 PCIHostState pci_state
;
57 typedef struct PPC4xxPCIState PPC4xxPCIState
;
59 #define PCIC0_CFGADDR 0x0
60 #define PCIC0_CFGDATA 0x4
62 /* PLB Memory Map (PMM) registers specify which PLB addresses are translated to
64 #define PCIL0_PMM0LA 0x0
65 #define PCIL0_PMM0MA 0x4
66 #define PCIL0_PMM0PCILA 0x8
67 #define PCIL0_PMM0PCIHA 0xc
68 #define PCIL0_PMM1LA 0x10
69 #define PCIL0_PMM1MA 0x14
70 #define PCIL0_PMM1PCILA 0x18
71 #define PCIL0_PMM1PCIHA 0x1c
72 #define PCIL0_PMM2LA 0x20
73 #define PCIL0_PMM2MA 0x24
74 #define PCIL0_PMM2PCILA 0x28
75 #define PCIL0_PMM2PCIHA 0x2c
77 /* PCI Target Map (PTM) registers specify which PCI addresses are translated to
79 #define PCIL0_PTM1MS 0x30
80 #define PCIL0_PTM1LA 0x34
81 #define PCIL0_PTM2MS 0x38
82 #define PCIL0_PTM2LA 0x3c
83 #define PCI_REG_SIZE 0x40
86 static uint32_t pci4xx_cfgaddr_readl(void *opaque
, target_phys_addr_t addr
)
88 PPC4xxPCIState
*ppc4xx_pci
= opaque
;
90 return ppc4xx_pci
->pci_state
.config_reg
;
93 static CPUReadMemoryFunc
* const pci4xx_cfgaddr_read
[] = {
94 &pci4xx_cfgaddr_readl
,
95 &pci4xx_cfgaddr_readl
,
96 &pci4xx_cfgaddr_readl
,
99 static void pci4xx_cfgaddr_writel(void *opaque
, target_phys_addr_t addr
,
102 PPC4xxPCIState
*ppc4xx_pci
= opaque
;
104 ppc4xx_pci
->pci_state
.config_reg
= value
& ~0x3;
107 static CPUWriteMemoryFunc
* const pci4xx_cfgaddr_write
[] = {
108 &pci4xx_cfgaddr_writel
,
109 &pci4xx_cfgaddr_writel
,
110 &pci4xx_cfgaddr_writel
,
113 static void ppc4xx_pci_reg_write4(void *opaque
, target_phys_addr_t offset
,
116 struct PPC4xxPCIState
*pci
= opaque
;
118 /* We ignore all target attempts at PCI configuration, effectively
119 * assuming a bidirectional 1:1 mapping of PLB and PCI space. */
123 pci
->pmm
[0].la
= value
;
126 pci
->pmm
[0].ma
= value
;
128 case PCIL0_PMM0PCIHA
:
129 pci
->pmm
[0].pciha
= value
;
131 case PCIL0_PMM0PCILA
:
132 pci
->pmm
[0].pcila
= value
;
136 pci
->pmm
[1].la
= value
;
139 pci
->pmm
[1].ma
= value
;
141 case PCIL0_PMM1PCIHA
:
142 pci
->pmm
[1].pciha
= value
;
144 case PCIL0_PMM1PCILA
:
145 pci
->pmm
[1].pcila
= value
;
149 pci
->pmm
[2].la
= value
;
152 pci
->pmm
[2].ma
= value
;
154 case PCIL0_PMM2PCIHA
:
155 pci
->pmm
[2].pciha
= value
;
157 case PCIL0_PMM2PCILA
:
158 pci
->pmm
[2].pcila
= value
;
162 pci
->ptm
[0].ms
= value
;
165 pci
->ptm
[0].la
= value
;
168 pci
->ptm
[1].ms
= value
;
171 pci
->ptm
[1].la
= value
;
175 printf("%s: unhandled PCI internal register 0x%lx\n", __func__
,
176 (unsigned long)offset
);
181 static uint32_t ppc4xx_pci_reg_read4(void *opaque
, target_phys_addr_t offset
)
183 struct PPC4xxPCIState
*pci
= opaque
;
188 value
= pci
->pmm
[0].la
;
191 value
= pci
->pmm
[0].ma
;
193 case PCIL0_PMM0PCIHA
:
194 value
= pci
->pmm
[0].pciha
;
196 case PCIL0_PMM0PCILA
:
197 value
= pci
->pmm
[0].pcila
;
201 value
= pci
->pmm
[1].la
;
204 value
= pci
->pmm
[1].ma
;
206 case PCIL0_PMM1PCIHA
:
207 value
= pci
->pmm
[1].pciha
;
209 case PCIL0_PMM1PCILA
:
210 value
= pci
->pmm
[1].pcila
;
214 value
= pci
->pmm
[2].la
;
217 value
= pci
->pmm
[2].ma
;
219 case PCIL0_PMM2PCIHA
:
220 value
= pci
->pmm
[2].pciha
;
222 case PCIL0_PMM2PCILA
:
223 value
= pci
->pmm
[2].pcila
;
227 value
= pci
->ptm
[0].ms
;
230 value
= pci
->ptm
[0].la
;
233 value
= pci
->ptm
[1].ms
;
236 value
= pci
->ptm
[1].la
;
240 printf("%s: invalid PCI internal register 0x%lx\n", __func__
,
241 (unsigned long)offset
);
248 static CPUReadMemoryFunc
* const pci_reg_read
[] = {
249 &ppc4xx_pci_reg_read4
,
250 &ppc4xx_pci_reg_read4
,
251 &ppc4xx_pci_reg_read4
,
254 static CPUWriteMemoryFunc
* const pci_reg_write
[] = {
255 &ppc4xx_pci_reg_write4
,
256 &ppc4xx_pci_reg_write4
,
257 &ppc4xx_pci_reg_write4
,
260 static void ppc4xx_pci_reset(void *opaque
)
262 struct PPC4xxPCIState
*pci
= opaque
;
264 memset(pci
->pmm
, 0, sizeof(pci
->pmm
));
265 memset(pci
->ptm
, 0, sizeof(pci
->ptm
));
268 /* On Bamboo, all pins from each slot are tied to a single board IRQ. This
269 * may need further refactoring for other boards. */
270 static int ppc4xx_pci_map_irq(PCIDevice
*pci_dev
, int irq_num
)
272 int slot
= pci_dev
->devfn
>> 3;
274 DPRINTF("%s: devfn %x irq %d -> %d\n", __func__
,
275 pci_dev
->devfn
, irq_num
, slot
);
280 static void ppc4xx_pci_set_irq(void *opaque
, int irq_num
, int level
)
282 qemu_irq
*pci_irqs
= opaque
;
284 DPRINTF("%s: PCI irq %d\n", __func__
, irq_num
);
285 qemu_set_irq(pci_irqs
[irq_num
], level
);
288 static void ppc4xx_pci_save(QEMUFile
*f
, void *opaque
)
290 PPC4xxPCIState
*controller
= opaque
;
293 pci_device_save(controller
->pci_dev
, f
);
295 for (i
= 0; i
< PPC4xx_PCI_NR_PMMS
; i
++) {
296 qemu_put_be32s(f
, &controller
->pmm
[i
].la
);
297 qemu_put_be32s(f
, &controller
->pmm
[i
].ma
);
298 qemu_put_be32s(f
, &controller
->pmm
[i
].pcila
);
299 qemu_put_be32s(f
, &controller
->pmm
[i
].pciha
);
302 for (i
= 0; i
< PPC4xx_PCI_NR_PTMS
; i
++) {
303 qemu_put_be32s(f
, &controller
->ptm
[i
].ms
);
304 qemu_put_be32s(f
, &controller
->ptm
[i
].la
);
308 static int ppc4xx_pci_load(QEMUFile
*f
, void *opaque
, int version_id
)
310 PPC4xxPCIState
*controller
= opaque
;
316 pci_device_load(controller
->pci_dev
, f
);
318 for (i
= 0; i
< PPC4xx_PCI_NR_PMMS
; i
++) {
319 qemu_get_be32s(f
, &controller
->pmm
[i
].la
);
320 qemu_get_be32s(f
, &controller
->pmm
[i
].ma
);
321 qemu_get_be32s(f
, &controller
->pmm
[i
].pcila
);
322 qemu_get_be32s(f
, &controller
->pmm
[i
].pciha
);
325 for (i
= 0; i
< PPC4xx_PCI_NR_PTMS
; i
++) {
326 qemu_get_be32s(f
, &controller
->ptm
[i
].ms
);
327 qemu_get_be32s(f
, &controller
->ptm
[i
].la
);
333 /* XXX Interrupt acknowledge cycles not supported. */
334 PCIBus
*ppc4xx_pci_init(CPUState
*env
, qemu_irq pci_irqs
[4],
335 target_phys_addr_t config_space
,
336 target_phys_addr_t int_ack
,
337 target_phys_addr_t special_cycle
,
338 target_phys_addr_t registers
)
340 PPC4xxPCIState
*controller
;
342 static int ppc4xx_pci_id
;
345 controller
= qemu_mallocz(sizeof(PPC4xxPCIState
));
347 controller
->pci_state
.bus
= pci_register_bus(NULL
, "pci",
352 controller
->pci_dev
= pci_register_device(controller
->pci_state
.bus
,
353 "host bridge", sizeof(PCIDevice
),
355 pci_conf
= controller
->pci_dev
->config
;
356 pci_config_set_vendor_id(pci_conf
, PCI_VENDOR_ID_IBM
);
357 pci_config_set_device_id(pci_conf
, PCI_DEVICE_ID_IBM_440GX
);
358 pci_config_set_class(pci_conf
, PCI_CLASS_BRIDGE_OTHER
);
361 index
= cpu_register_io_memory(pci4xx_cfgaddr_read
,
362 pci4xx_cfgaddr_write
, controller
,
363 DEVICE_LITTLE_ENDIAN
);
366 cpu_register_physical_memory(config_space
+ PCIC0_CFGADDR
, 4, index
);
369 index
= pci_host_data_register_mmio(&controller
->pci_state
, 1);
372 cpu_register_physical_memory(config_space
+ PCIC0_CFGDATA
, 4, index
);
374 /* Internal registers */
375 index
= cpu_register_io_memory(pci_reg_read
, pci_reg_write
, controller
,
376 DEVICE_LITTLE_ENDIAN
);
379 cpu_register_physical_memory(registers
, PCI_REG_SIZE
, index
);
381 qemu_register_reset(ppc4xx_pci_reset
, controller
);
383 /* XXX load/save code not tested. */
384 register_savevm(&controller
->pci_dev
->qdev
, "ppc4xx_pci", ppc4xx_pci_id
++,
385 1, ppc4xx_pci_save
, ppc4xx_pci_load
, controller
);
387 return controller
->pci_state
.bus
;
390 printf("%s error\n", __func__
);
391 qemu_free(controller
);