Statistics
| Branch: | Revision:

root / hw / ppc4xx_pci.c @ 11d6dded

History | View | Annotate | Download (10.9 kB)

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