]> git.proxmox.com Git - qemu.git/blame - hw/ppc4xx_pci.c
user: Restore debug usage message for '-d ?' in user mode emulation
[qemu.git] / hw / ppc4xx_pci.c
CommitLineData
825bb581
AJ
1/*
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.
5 *
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.
10 *
11 * You should have received a copy of the GNU General Public License
8167ee88 12 * along with this program; if not, see <http://www.gnu.org/licenses/>.
825bb581
AJ
13 *
14 * Copyright IBM Corp. 2008
15 *
16 * Authors: Hollis Blanchard <hollisb@us.ibm.com>
17 */
18
19/* This file implements emulation of the 32-bit PCI controller found in some
20 * 4xx SoCs, such as the 440EP. */
21
22#include "hw.h"
0c34a5d7
AJ
23#include "ppc.h"
24#include "ppc4xx.h"
825bb581
AJ
25#include "pci.h"
26#include "pci_host.h"
825bb581
AJ
27
28#undef DEBUG
29#ifdef DEBUG
30#define DPRINTF(fmt, ...) do { printf(fmt, ## __VA_ARGS__); } while (0)
31#else
001faf32 32#define DPRINTF(fmt, ...)
825bb581
AJ
33#endif /* DEBUG */
34
35struct PCIMasterMap {
36 uint32_t la;
37 uint32_t ma;
38 uint32_t pcila;
39 uint32_t pciha;
40};
41
42struct PCITargetMap {
43 uint32_t ms;
44 uint32_t la;
45};
46
47#define PPC4xx_PCI_NR_PMMS 3
48#define PPC4xx_PCI_NR_PTMS 2
49
50struct PPC4xxPCIState {
51 struct PCIMasterMap pmm[PPC4xx_PCI_NR_PMMS];
52 struct PCITargetMap ptm[PPC4xx_PCI_NR_PTMS];
53
54 PCIHostState pci_state;
55 PCIDevice *pci_dev;
56};
57typedef struct PPC4xxPCIState PPC4xxPCIState;
58
59#define PCIC0_CFGADDR 0x0
60#define PCIC0_CFGDATA 0x4
61
62/* PLB Memory Map (PMM) registers specify which PLB addresses are translated to
63 * PCI accesses. */
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
76
77/* PCI Target Map (PTM) registers specify which PCI addresses are translated to
78 * PLB accesses. */
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
84
85
c227f099 86static uint32_t pci4xx_cfgaddr_readl(void *opaque, target_phys_addr_t addr)
825bb581
AJ
87{
88 PPC4xxPCIState *ppc4xx_pci = opaque;
89
90 return ppc4xx_pci->pci_state.config_reg;
91}
92
d60efc6b 93static CPUReadMemoryFunc * const pci4xx_cfgaddr_read[] = {
825bb581
AJ
94 &pci4xx_cfgaddr_readl,
95 &pci4xx_cfgaddr_readl,
96 &pci4xx_cfgaddr_readl,
97};
98
c227f099 99static void pci4xx_cfgaddr_writel(void *opaque, target_phys_addr_t addr,
825bb581
AJ
100 uint32_t value)
101{
102 PPC4xxPCIState *ppc4xx_pci = opaque;
103
825bb581
AJ
104 ppc4xx_pci->pci_state.config_reg = value & ~0x3;
105}
106
d60efc6b 107static CPUWriteMemoryFunc * const pci4xx_cfgaddr_write[] = {
825bb581
AJ
108 &pci4xx_cfgaddr_writel,
109 &pci4xx_cfgaddr_writel,
110 &pci4xx_cfgaddr_writel,
111};
112
c227f099 113static void ppc4xx_pci_reg_write4(void *opaque, target_phys_addr_t offset,
825bb581
AJ
114 uint32_t value)
115{
116 struct PPC4xxPCIState *pci = opaque;
117
825bb581
AJ
118 /* We ignore all target attempts at PCI configuration, effectively
119 * assuming a bidirectional 1:1 mapping of PLB and PCI space. */
120
121 switch (offset) {
122 case PCIL0_PMM0LA:
123 pci->pmm[0].la = value;
124 break;
125 case PCIL0_PMM0MA:
126 pci->pmm[0].ma = value;
127 break;
128 case PCIL0_PMM0PCIHA:
129 pci->pmm[0].pciha = value;
130 break;
131 case PCIL0_PMM0PCILA:
132 pci->pmm[0].pcila = value;
133 break;
134
135 case PCIL0_PMM1LA:
136 pci->pmm[1].la = value;
137 break;
138 case PCIL0_PMM1MA:
139 pci->pmm[1].ma = value;
140 break;
141 case PCIL0_PMM1PCIHA:
142 pci->pmm[1].pciha = value;
143 break;
144 case PCIL0_PMM1PCILA:
145 pci->pmm[1].pcila = value;
146 break;
147
148 case PCIL0_PMM2LA:
149 pci->pmm[2].la = value;
150 break;
151 case PCIL0_PMM2MA:
152 pci->pmm[2].ma = value;
153 break;
154 case PCIL0_PMM2PCIHA:
155 pci->pmm[2].pciha = value;
156 break;
157 case PCIL0_PMM2PCILA:
158 pci->pmm[2].pcila = value;
159 break;
160
161 case PCIL0_PTM1MS:
162 pci->ptm[0].ms = value;
163 break;
164 case PCIL0_PTM1LA:
165 pci->ptm[0].la = value;
166 break;
167 case PCIL0_PTM2MS:
168 pci->ptm[1].ms = value;
169 break;
170 case PCIL0_PTM2LA:
171 pci->ptm[1].la = value;
172 break;
173
174 default:
175 printf("%s: unhandled PCI internal register 0x%lx\n", __func__,
176 (unsigned long)offset);
177 break;
178 }
179}
180
c227f099 181static uint32_t ppc4xx_pci_reg_read4(void *opaque, target_phys_addr_t offset)
825bb581
AJ
182{
183 struct PPC4xxPCIState *pci = opaque;
184 uint32_t value;
185
186 switch (offset) {
187 case PCIL0_PMM0LA:
188 value = pci->pmm[0].la;
189 break;
190 case PCIL0_PMM0MA:
191 value = pci->pmm[0].ma;
192 break;
193 case PCIL0_PMM0PCIHA:
194 value = pci->pmm[0].pciha;
195 break;
196 case PCIL0_PMM0PCILA:
197 value = pci->pmm[0].pcila;
198 break;
199
200 case PCIL0_PMM1LA:
201 value = pci->pmm[1].la;
202 break;
203 case PCIL0_PMM1MA:
204 value = pci->pmm[1].ma;
205 break;
206 case PCIL0_PMM1PCIHA:
207 value = pci->pmm[1].pciha;
208 break;
209 case PCIL0_PMM1PCILA:
210 value = pci->pmm[1].pcila;
211 break;
212
213 case PCIL0_PMM2LA:
214 value = pci->pmm[2].la;
215 break;
216 case PCIL0_PMM2MA:
217 value = pci->pmm[2].ma;
218 break;
219 case PCIL0_PMM2PCIHA:
220 value = pci->pmm[2].pciha;
221 break;
222 case PCIL0_PMM2PCILA:
223 value = pci->pmm[2].pcila;
224 break;
225
226 case PCIL0_PTM1MS:
227 value = pci->ptm[0].ms;
228 break;
229 case PCIL0_PTM1LA:
230 value = pci->ptm[0].la;
231 break;
232 case PCIL0_PTM2MS:
233 value = pci->ptm[1].ms;
234 break;
235 case PCIL0_PTM2LA:
236 value = pci->ptm[1].la;
237 break;
238
239 default:
240 printf("%s: invalid PCI internal register 0x%lx\n", __func__,
241 (unsigned long)offset);
242 value = 0;
243 }
244
825bb581
AJ
245 return value;
246}
247
d60efc6b 248static CPUReadMemoryFunc * const pci_reg_read[] = {
825bb581
AJ
249 &ppc4xx_pci_reg_read4,
250 &ppc4xx_pci_reg_read4,
251 &ppc4xx_pci_reg_read4,
252};
253
d60efc6b 254static CPUWriteMemoryFunc * const pci_reg_write[] = {
825bb581
AJ
255 &ppc4xx_pci_reg_write4,
256 &ppc4xx_pci_reg_write4,
257 &ppc4xx_pci_reg_write4,
258};
259
260static void ppc4xx_pci_reset(void *opaque)
261{
262 struct PPC4xxPCIState *pci = opaque;
263
264 memset(pci->pmm, 0, sizeof(pci->pmm));
265 memset(pci->ptm, 0, sizeof(pci->ptm));
266}
267
268/* On Bamboo, all pins from each slot are tied to a single board IRQ. This
269 * may need further refactoring for other boards. */
270static int ppc4xx_pci_map_irq(PCIDevice *pci_dev, int irq_num)
271{
272 int slot = pci_dev->devfn >> 3;
273
274 DPRINTF("%s: devfn %x irq %d -> %d\n", __func__,
275 pci_dev->devfn, irq_num, slot);
276
277 return slot - 1;
278}
279
5d4e84c8 280static void ppc4xx_pci_set_irq(void *opaque, int irq_num, int level)
825bb581 281{
5d4e84c8
JQ
282 qemu_irq *pci_irqs = opaque;
283
825bb581
AJ
284 DPRINTF("%s: PCI irq %d\n", __func__, irq_num);
285 qemu_set_irq(pci_irqs[irq_num], level);
286}
287
b605f222
JQ
288static const VMStateDescription vmstate_pci_master_map = {
289 .name = "pci_master_map",
290 .version_id = 0,
291 .minimum_version_id = 0,
292 .minimum_version_id_old = 0,
293 .fields = (VMStateField[]) {
294 VMSTATE_UINT32(la, struct PCIMasterMap),
295 VMSTATE_UINT32(ma, struct PCIMasterMap),
296 VMSTATE_UINT32(pcila, struct PCIMasterMap),
297 VMSTATE_UINT32(pciha, struct PCIMasterMap),
298 VMSTATE_END_OF_LIST()
825bb581 299 }
b605f222 300};
825bb581 301
b605f222
JQ
302static const VMStateDescription vmstate_pci_target_map = {
303 .name = "pci_target_map",
304 .version_id = 0,
305 .minimum_version_id = 0,
306 .minimum_version_id_old = 0,
307 .fields = (VMStateField[]) {
308 VMSTATE_UINT32(ms, struct PCITargetMap),
309 VMSTATE_UINT32(la, struct PCITargetMap),
310 VMSTATE_END_OF_LIST()
825bb581 311 }
b605f222 312};
825bb581 313
b605f222
JQ
314static const VMStateDescription vmstate_ppc4xx_pci = {
315 .name = "ppc4xx_pci",
316 .version_id = 1,
317 .minimum_version_id = 1,
318 .minimum_version_id_old = 1,
319 .fields = (VMStateField[]) {
320 VMSTATE_PCI_DEVICE_POINTER(pci_dev, PPC4xxPCIState),
321 VMSTATE_STRUCT_ARRAY(pmm, PPC4xxPCIState, PPC4xx_PCI_NR_PMMS, 1,
322 vmstate_pci_master_map,
323 struct PCIMasterMap),
324 VMSTATE_STRUCT_ARRAY(ptm, PPC4xxPCIState, PPC4xx_PCI_NR_PTMS, 1,
325 vmstate_pci_target_map,
326 struct PCITargetMap),
327 VMSTATE_END_OF_LIST()
825bb581 328 }
b605f222 329};
825bb581
AJ
330
331/* XXX Interrupt acknowledge cycles not supported. */
332PCIBus *ppc4xx_pci_init(CPUState *env, qemu_irq pci_irqs[4],
c227f099
AL
333 target_phys_addr_t config_space,
334 target_phys_addr_t int_ack,
335 target_phys_addr_t special_cycle,
336 target_phys_addr_t registers)
825bb581
AJ
337{
338 PPC4xxPCIState *controller;
339 int index;
340 static int ppc4xx_pci_id;
deb54399 341 uint8_t *pci_conf;
825bb581
AJ
342
343 controller = qemu_mallocz(sizeof(PPC4xxPCIState));
825bb581 344
02e2da45
PB
345 controller->pci_state.bus = pci_register_bus(NULL, "pci",
346 ppc4xx_pci_set_irq,
825bb581
AJ
347 ppc4xx_pci_map_irq,
348 pci_irqs, 0, 4);
349
350 controller->pci_dev = pci_register_device(controller->pci_state.bus,
351 "host bridge", sizeof(PCIDevice),
352 0, NULL, NULL);
deb54399
AL
353 pci_conf = controller->pci_dev->config;
354 pci_config_set_vendor_id(pci_conf, PCI_VENDOR_ID_IBM);
a770dc7e 355 pci_config_set_device_id(pci_conf, PCI_DEVICE_ID_IBM_440GX);
173a543b 356 pci_config_set_class(pci_conf, PCI_CLASS_BRIDGE_OTHER);
825bb581
AJ
357
358 /* CFGADDR */
1eed09cb 359 index = cpu_register_io_memory(pci4xx_cfgaddr_read,
2507c12a 360 pci4xx_cfgaddr_write, controller,
0d2a73b3 361 DEVICE_LITTLE_ENDIAN);
825bb581
AJ
362 if (index < 0)
363 goto free;
364 cpu_register_physical_memory(config_space + PCIC0_CFGADDR, 4, index);
365
366 /* CFGDATA */
952760bb 367 index = pci_host_data_register_mmio(&controller->pci_state, 1);
825bb581
AJ
368 if (index < 0)
369 goto free;
370 cpu_register_physical_memory(config_space + PCIC0_CFGDATA, 4, index);
371
372 /* Internal registers */
2507c12a 373 index = cpu_register_io_memory(pci_reg_read, pci_reg_write, controller,
0d2a73b3 374 DEVICE_LITTLE_ENDIAN);
825bb581
AJ
375 if (index < 0)
376 goto free;
377 cpu_register_physical_memory(registers, PCI_REG_SIZE, index);
378
a08d4367 379 qemu_register_reset(ppc4xx_pci_reset, controller);
825bb581
AJ
380
381 /* XXX load/save code not tested. */
b605f222
JQ
382 vmstate_register(&controller->pci_dev->qdev, ppc4xx_pci_id++,
383 &vmstate_ppc4xx_pci, controller);
825bb581
AJ
384
385 return controller->pci_state.bus;
386
387free:
388 printf("%s error\n", __func__);
389 qemu_free(controller);
390 return NULL;
391}