Statistics
| Branch: | Revision:

root / hw / spapr_pci.c @ 3204db98

History | View | Annotate | Download (16.9 kB)

1 3384f95c David Gibson
/*
2 3384f95c David Gibson
 * QEMU sPAPR PCI host originated from Uninorth PCI host
3 3384f95c David Gibson
 *
4 3384f95c David Gibson
 * Copyright (c) 2011 Alexey Kardashevskiy, IBM Corporation.
5 3384f95c David Gibson
 * Copyright (C) 2011 David Gibson, IBM Corporation.
6 3384f95c David Gibson
 *
7 3384f95c David Gibson
 * Permission is hereby granted, free of charge, to any person obtaining a copy
8 3384f95c David Gibson
 * of this software and associated documentation files (the "Software"), to deal
9 3384f95c David Gibson
 * in the Software without restriction, including without limitation the rights
10 3384f95c David Gibson
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11 3384f95c David Gibson
 * copies of the Software, and to permit persons to whom the Software is
12 3384f95c David Gibson
 * furnished to do so, subject to the following conditions:
13 3384f95c David Gibson
 *
14 3384f95c David Gibson
 * The above copyright notice and this permission notice shall be included in
15 3384f95c David Gibson
 * all copies or substantial portions of the Software.
16 3384f95c David Gibson
 *
17 3384f95c David Gibson
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 3384f95c David Gibson
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 3384f95c David Gibson
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20 3384f95c David Gibson
 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 3384f95c David Gibson
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22 3384f95c David Gibson
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
23 3384f95c David Gibson
 * THE SOFTWARE.
24 3384f95c David Gibson
 */
25 3384f95c David Gibson
#include "hw.h"
26 3384f95c David Gibson
#include "pci.h"
27 3384f95c David Gibson
#include "pci_host.h"
28 3384f95c David Gibson
#include "hw/spapr.h"
29 3384f95c David Gibson
#include "hw/spapr_pci.h"
30 3384f95c David Gibson
#include "exec-memory.h"
31 3384f95c David Gibson
#include <libfdt.h>
32 3384f95c David Gibson
33 3384f95c David Gibson
#include "hw/pci_internals.h"
34 3384f95c David Gibson
35 3384f95c David Gibson
static const uint32_t bars[] = {
36 3384f95c David Gibson
    PCI_BASE_ADDRESS_0, PCI_BASE_ADDRESS_1,
37 3384f95c David Gibson
    PCI_BASE_ADDRESS_2, PCI_BASE_ADDRESS_3,
38 3384f95c David Gibson
    PCI_BASE_ADDRESS_4, PCI_BASE_ADDRESS_5
39 3384f95c David Gibson
    /*, PCI_ROM_ADDRESS*/
40 3384f95c David Gibson
};
41 3384f95c David Gibson
42 3384f95c David Gibson
static PCIDevice *find_dev(sPAPREnvironment *spapr,
43 3384f95c David Gibson
                           uint64_t buid, uint32_t config_addr)
44 3384f95c David Gibson
{
45 3384f95c David Gibson
    DeviceState *qdev;
46 3384f95c David Gibson
    int devfn = (config_addr >> 8) & 0xFF;
47 3384f95c David Gibson
    sPAPRPHBState *phb;
48 3384f95c David Gibson
49 3384f95c David Gibson
    QLIST_FOREACH(phb, &spapr->phbs, list) {
50 3384f95c David Gibson
        if (phb->buid != buid) {
51 3384f95c David Gibson
            continue;
52 3384f95c David Gibson
        }
53 3384f95c David Gibson
54 3a26360d Anthony Liguori
        QTAILQ_FOREACH(qdev, &phb->host_state.bus->qbus.children, sibling) {
55 3384f95c David Gibson
            PCIDevice *dev = (PCIDevice *)qdev;
56 3384f95c David Gibson
            if (dev->devfn == devfn) {
57 3384f95c David Gibson
                return dev;
58 3384f95c David Gibson
            }
59 3384f95c David Gibson
        }
60 3384f95c David Gibson
    }
61 3384f95c David Gibson
62 3384f95c David Gibson
    return NULL;
63 3384f95c David Gibson
}
64 3384f95c David Gibson
65 3384f95c David Gibson
static void rtas_ibm_read_pci_config(sPAPREnvironment *spapr,
66 3384f95c David Gibson
                                     uint32_t token, uint32_t nargs,
67 3384f95c David Gibson
                                     target_ulong args,
68 3384f95c David Gibson
                                     uint32_t nret, target_ulong rets)
69 3384f95c David Gibson
{
70 3384f95c David Gibson
    uint32_t val, size, addr;
71 3384f95c David Gibson
    uint64_t buid = ((uint64_t)rtas_ld(args, 1) << 32) | rtas_ld(args, 2);
72 3384f95c David Gibson
    PCIDevice *dev = find_dev(spapr, buid, rtas_ld(args, 0));
73 3384f95c David Gibson
74 3384f95c David Gibson
    if (!dev) {
75 3384f95c David Gibson
        rtas_st(rets, 0, -1);
76 3384f95c David Gibson
        return;
77 3384f95c David Gibson
    }
78 3384f95c David Gibson
    size = rtas_ld(args, 3);
79 3384f95c David Gibson
    addr = rtas_ld(args, 0) & 0xFF;
80 3384f95c David Gibson
    val = pci_default_read_config(dev, addr, size);
81 3384f95c David Gibson
    rtas_st(rets, 0, 0);
82 3384f95c David Gibson
    rtas_st(rets, 1, val);
83 3384f95c David Gibson
}
84 3384f95c David Gibson
85 3384f95c David Gibson
static void rtas_read_pci_config(sPAPREnvironment *spapr,
86 3384f95c David Gibson
                                 uint32_t token, uint32_t nargs,
87 3384f95c David Gibson
                                 target_ulong args,
88 3384f95c David Gibson
                                 uint32_t nret, target_ulong rets)
89 3384f95c David Gibson
{
90 3384f95c David Gibson
    uint32_t val, size, addr;
91 3384f95c David Gibson
    PCIDevice *dev = find_dev(spapr, 0, rtas_ld(args, 0));
92 3384f95c David Gibson
93 3384f95c David Gibson
    if (!dev) {
94 3384f95c David Gibson
        rtas_st(rets, 0, -1);
95 3384f95c David Gibson
        return;
96 3384f95c David Gibson
    }
97 3384f95c David Gibson
    size = rtas_ld(args, 1);
98 3384f95c David Gibson
    addr = rtas_ld(args, 0) & 0xFF;
99 3384f95c David Gibson
    val = pci_default_read_config(dev, addr, size);
100 3384f95c David Gibson
    rtas_st(rets, 0, 0);
101 3384f95c David Gibson
    rtas_st(rets, 1, val);
102 3384f95c David Gibson
}
103 3384f95c David Gibson
104 3384f95c David Gibson
static void rtas_ibm_write_pci_config(sPAPREnvironment *spapr,
105 3384f95c David Gibson
                                      uint32_t token, uint32_t nargs,
106 3384f95c David Gibson
                                      target_ulong args,
107 3384f95c David Gibson
                                      uint32_t nret, target_ulong rets)
108 3384f95c David Gibson
{
109 3384f95c David Gibson
    uint32_t val, size, addr;
110 3384f95c David Gibson
    uint64_t buid = ((uint64_t)rtas_ld(args, 1) << 32) | rtas_ld(args, 2);
111 3384f95c David Gibson
    PCIDevice *dev = find_dev(spapr, buid, rtas_ld(args, 0));
112 3384f95c David Gibson
113 3384f95c David Gibson
    if (!dev) {
114 3384f95c David Gibson
        rtas_st(rets, 0, -1);
115 3384f95c David Gibson
        return;
116 3384f95c David Gibson
    }
117 3384f95c David Gibson
    val = rtas_ld(args, 4);
118 3384f95c David Gibson
    size = rtas_ld(args, 3);
119 3384f95c David Gibson
    addr = rtas_ld(args, 0) & 0xFF;
120 3384f95c David Gibson
    pci_default_write_config(dev, addr, val, size);
121 3384f95c David Gibson
    rtas_st(rets, 0, 0);
122 3384f95c David Gibson
}
123 3384f95c David Gibson
124 3384f95c David Gibson
static void rtas_write_pci_config(sPAPREnvironment *spapr,
125 3384f95c David Gibson
                                  uint32_t token, uint32_t nargs,
126 3384f95c David Gibson
                                  target_ulong args,
127 3384f95c David Gibson
                                  uint32_t nret, target_ulong rets)
128 3384f95c David Gibson
{
129 3384f95c David Gibson
    uint32_t val, size, addr;
130 3384f95c David Gibson
    PCIDevice *dev = find_dev(spapr, 0, rtas_ld(args, 0));
131 3384f95c David Gibson
132 3384f95c David Gibson
    if (!dev) {
133 3384f95c David Gibson
        rtas_st(rets, 0, -1);
134 3384f95c David Gibson
        return;
135 3384f95c David Gibson
    }
136 3384f95c David Gibson
    val = rtas_ld(args, 2);
137 3384f95c David Gibson
    size = rtas_ld(args, 1);
138 3384f95c David Gibson
    addr = rtas_ld(args, 0) & 0xFF;
139 3384f95c David Gibson
    pci_default_write_config(dev, addr, val, size);
140 3384f95c David Gibson
    rtas_st(rets, 0, 0);
141 3384f95c David Gibson
}
142 3384f95c David Gibson
143 3384f95c David Gibson
static int pci_spapr_map_irq(PCIDevice *pci_dev, int irq_num)
144 3384f95c David Gibson
{
145 3384f95c David Gibson
    /*
146 3384f95c David Gibson
     * Here we need to convert pci_dev + irq_num to some unique value
147 3384f95c David Gibson
     * which is less than number of IRQs on the specific bus (now it
148 3384f95c David Gibson
     * is 16).  At the moment irq_num == device_id (number of the
149 3384f95c David Gibson
     * slot?)
150 3384f95c David Gibson
     * FIXME: we should swizzle in fn and irq_num
151 3384f95c David Gibson
     */
152 3384f95c David Gibson
    return (pci_dev->devfn >> 3) % SPAPR_PCI_NUM_LSI;
153 3384f95c David Gibson
}
154 3384f95c David Gibson
155 3384f95c David Gibson
static void pci_spapr_set_irq(void *opaque, int irq_num, int level)
156 3384f95c David Gibson
{
157 3384f95c David Gibson
    /*
158 3384f95c David Gibson
     * Here we use the number returned by pci_spapr_map_irq to find a
159 3384f95c David Gibson
     * corresponding qemu_irq.
160 3384f95c David Gibson
     */
161 3384f95c David Gibson
    sPAPRPHBState *phb = opaque;
162 3384f95c David Gibson
163 3384f95c David Gibson
    qemu_set_irq(phb->lsi_table[irq_num].qirq, level);
164 3384f95c David Gibson
}
165 3384f95c David Gibson
166 3384f95c David Gibson
static int spapr_phb_init(SysBusDevice *s)
167 3384f95c David Gibson
{
168 3384f95c David Gibson
    sPAPRPHBState *phb = FROM_SYSBUS(sPAPRPHBState, s);
169 3384f95c David Gibson
    int i;
170 3384f95c David Gibson
171 3384f95c David Gibson
    /* Initialize the LSI table */
172 3384f95c David Gibson
    for (i = 0; i < SPAPR_PCI_NUM_LSI; i++) {
173 3384f95c David Gibson
        qemu_irq qirq;
174 3384f95c David Gibson
        uint32_t num;
175 3384f95c David Gibson
176 3384f95c David Gibson
        qirq = spapr_allocate_irq(0, &num);
177 3384f95c David Gibson
        if (!qirq) {
178 3384f95c David Gibson
            return -1;
179 3384f95c David Gibson
        }
180 3384f95c David Gibson
181 3384f95c David Gibson
        phb->lsi_table[i].dt_irq = num;
182 3384f95c David Gibson
        phb->lsi_table[i].qirq = qirq;
183 3384f95c David Gibson
    }
184 3384f95c David Gibson
185 3384f95c David Gibson
    return 0;
186 3384f95c David Gibson
}
187 3384f95c David Gibson
188 3384f95c David Gibson
static int spapr_main_pci_host_init(PCIDevice *d)
189 3384f95c David Gibson
{
190 3384f95c David Gibson
    return 0;
191 3384f95c David Gibson
}
192 3384f95c David Gibson
193 3384f95c David Gibson
static PCIDeviceInfo spapr_main_pci_host_info = {
194 3384f95c David Gibson
    .qdev.name = "spapr-pci-host-bridge",
195 3384f95c David Gibson
    .qdev.size = sizeof(PCIDevice),
196 3384f95c David Gibson
    .init      = spapr_main_pci_host_init,
197 3384f95c David Gibson
};
198 3384f95c David Gibson
199 3384f95c David Gibson
static void spapr_register_devices(void)
200 3384f95c David Gibson
{
201 3384f95c David Gibson
    sysbus_register_dev("spapr-pci-host-bridge", sizeof(sPAPRPHBState),
202 3384f95c David Gibson
                        spapr_phb_init);
203 3384f95c David Gibson
    pci_qdev_register(&spapr_main_pci_host_info);
204 3384f95c David Gibson
}
205 3384f95c David Gibson
206 3384f95c David Gibson
device_init(spapr_register_devices)
207 3384f95c David Gibson
208 3384f95c David Gibson
static uint64_t spapr_io_read(void *opaque, target_phys_addr_t addr,
209 3384f95c David Gibson
                              unsigned size)
210 3384f95c David Gibson
{
211 3384f95c David Gibson
    switch (size) {
212 3384f95c David Gibson
    case 1:
213 3384f95c David Gibson
        return cpu_inb(addr);
214 3384f95c David Gibson
    case 2:
215 3384f95c David Gibson
        return cpu_inw(addr);
216 3384f95c David Gibson
    case 4:
217 3384f95c David Gibson
        return cpu_inl(addr);
218 3384f95c David Gibson
    }
219 3384f95c David Gibson
    assert(0);
220 3384f95c David Gibson
}
221 3384f95c David Gibson
222 3384f95c David Gibson
static void spapr_io_write(void *opaque, target_phys_addr_t addr,
223 3384f95c David Gibson
                           uint64_t data, unsigned size)
224 3384f95c David Gibson
{
225 3384f95c David Gibson
    switch (size) {
226 3384f95c David Gibson
    case 1:
227 3384f95c David Gibson
        cpu_outb(addr, data);
228 3384f95c David Gibson
        return;
229 3384f95c David Gibson
    case 2:
230 3384f95c David Gibson
        cpu_outw(addr, data);
231 3384f95c David Gibson
        return;
232 3384f95c David Gibson
    case 4:
233 3384f95c David Gibson
        cpu_outl(addr, data);
234 3384f95c David Gibson
        return;
235 3384f95c David Gibson
    }
236 3384f95c David Gibson
    assert(0);
237 3384f95c David Gibson
}
238 3384f95c David Gibson
239 3384f95c David Gibson
static MemoryRegionOps spapr_io_ops = {
240 3384f95c David Gibson
    .endianness = DEVICE_LITTLE_ENDIAN,
241 3384f95c David Gibson
    .read = spapr_io_read,
242 3384f95c David Gibson
    .write = spapr_io_write
243 3384f95c David Gibson
};
244 3384f95c David Gibson
245 3384f95c David Gibson
void spapr_create_phb(sPAPREnvironment *spapr,
246 3384f95c David Gibson
                      const char *busname, uint64_t buid,
247 3384f95c David Gibson
                      uint64_t mem_win_addr, uint64_t mem_win_size,
248 3384f95c David Gibson
                      uint64_t io_win_addr)
249 3384f95c David Gibson
{
250 3384f95c David Gibson
    DeviceState *dev;
251 3384f95c David Gibson
    SysBusDevice *s;
252 3384f95c David Gibson
    sPAPRPHBState *phb;
253 3384f95c David Gibson
    PCIBus *bus;
254 3384f95c David Gibson
    char namebuf[strlen(busname)+11];
255 3384f95c David Gibson
256 3384f95c David Gibson
    dev = qdev_create(NULL, "spapr-pci-host-bridge");
257 3384f95c David Gibson
    qdev_init_nofail(dev);
258 3384f95c David Gibson
    s = sysbus_from_qdev(dev);
259 3384f95c David Gibson
    phb = FROM_SYSBUS(sPAPRPHBState, s);
260 3384f95c David Gibson
261 3384f95c David Gibson
    phb->mem_win_addr = mem_win_addr;
262 3384f95c David Gibson
263 3384f95c David Gibson
    sprintf(namebuf, "%s-mem", busname);
264 3384f95c David Gibson
    memory_region_init(&phb->memspace, namebuf, INT64_MAX);
265 3384f95c David Gibson
266 3384f95c David Gibson
    sprintf(namebuf, "%s-memwindow", busname);
267 3384f95c David Gibson
    memory_region_init_alias(&phb->memwindow, namebuf, &phb->memspace,
268 3384f95c David Gibson
                             SPAPR_PCI_MEM_WIN_BUS_OFFSET, mem_win_size);
269 3384f95c David Gibson
    memory_region_add_subregion(get_system_memory(), mem_win_addr,
270 3384f95c David Gibson
                                &phb->memwindow);
271 3384f95c David Gibson
272 3384f95c David Gibson
    phb->io_win_addr = io_win_addr;
273 3384f95c David Gibson
274 3384f95c David Gibson
    /* On ppc, we only have MMIO no specific IO space from the CPU
275 3384f95c David Gibson
     * perspective.  In theory we ought to be able to embed the PCI IO
276 3384f95c David Gibson
     * memory region direction in the system memory space.  However,
277 3384f95c David Gibson
     * if any of the IO BAR subregions use the old_portio mechanism,
278 3384f95c David Gibson
     * that won't be processed properly unless accessed from the
279 3384f95c David Gibson
     * system io address space.  This hack to bounce things via
280 3384f95c David Gibson
     * system_io works around the problem until all the users of
281 3384f95c David Gibson
     * old_portion are updated */
282 3384f95c David Gibson
    sprintf(namebuf, "%s-io", busname);
283 3384f95c David Gibson
    memory_region_init(&phb->iospace, namebuf, SPAPR_PCI_IO_WIN_SIZE);
284 3384f95c David Gibson
    /* FIXME: fix to support multiple PHBs */
285 3384f95c David Gibson
    memory_region_add_subregion(get_system_io(), 0, &phb->iospace);
286 3384f95c David Gibson
287 3384f95c David Gibson
    sprintf(namebuf, "%s-iowindow", busname);
288 3384f95c David Gibson
    memory_region_init_io(&phb->iowindow, &spapr_io_ops, phb,
289 3384f95c David Gibson
                          namebuf, SPAPR_PCI_IO_WIN_SIZE);
290 3384f95c David Gibson
    memory_region_add_subregion(get_system_memory(), io_win_addr,
291 3384f95c David Gibson
                                &phb->iowindow);
292 3384f95c David Gibson
293 3384f95c David Gibson
    phb->host_state.bus = bus = pci_register_bus(&phb->busdev.qdev, busname,
294 3384f95c David Gibson
                                                 pci_spapr_set_irq,
295 3384f95c David Gibson
                                                 pci_spapr_map_irq,
296 3384f95c David Gibson
                                                 phb,
297 3384f95c David Gibson
                                                 &phb->memspace, &phb->iospace,
298 3384f95c David Gibson
                                                 PCI_DEVFN(0, 0),
299 3384f95c David Gibson
                                                 SPAPR_PCI_NUM_LSI);
300 3384f95c David Gibson
301 3384f95c David Gibson
    spapr_rtas_register("read-pci-config", rtas_read_pci_config);
302 3384f95c David Gibson
    spapr_rtas_register("write-pci-config", rtas_write_pci_config);
303 3384f95c David Gibson
    spapr_rtas_register("ibm,read-pci-config", rtas_ibm_read_pci_config);
304 3384f95c David Gibson
    spapr_rtas_register("ibm,write-pci-config", rtas_ibm_write_pci_config);
305 3384f95c David Gibson
306 3384f95c David Gibson
    QLIST_INSERT_HEAD(&spapr->phbs, phb, list);
307 3384f95c David Gibson
308 3384f95c David Gibson
    /* pci_bus_set_mem_base(bus, mem_va_start - SPAPR_PCI_MEM_BAR_START); */
309 3384f95c David Gibson
}
310 3384f95c David Gibson
311 3384f95c David Gibson
/* Macros to operate with address in OF binding to PCI */
312 3384f95c David Gibson
#define b_x(x, p, l)    (((x) & ((1<<(l))-1)) << (p))
313 3384f95c David Gibson
#define b_n(x)          b_x((x), 31, 1) /* 0 if relocatable */
314 3384f95c David Gibson
#define b_p(x)          b_x((x), 30, 1) /* 1 if prefetchable */
315 3384f95c David Gibson
#define b_t(x)          b_x((x), 29, 1) /* 1 if the address is aliased */
316 3384f95c David Gibson
#define b_ss(x)         b_x((x), 24, 2) /* the space code */
317 3384f95c David Gibson
#define b_bbbbbbbb(x)   b_x((x), 16, 8) /* bus number */
318 3384f95c David Gibson
#define b_ddddd(x)      b_x((x), 11, 5) /* device number */
319 3384f95c David Gibson
#define b_fff(x)        b_x((x), 8, 3)  /* function number */
320 3384f95c David Gibson
#define b_rrrrrrrr(x)   b_x((x), 0, 8)  /* register number */
321 3384f95c David Gibson
322 3384f95c David Gibson
static uint32_t regtype_to_ss(uint8_t type)
323 3384f95c David Gibson
{
324 3384f95c David Gibson
    if (type & PCI_BASE_ADDRESS_MEM_TYPE_64) {
325 3384f95c David Gibson
        return 3;
326 3384f95c David Gibson
    }
327 3384f95c David Gibson
    if (type == PCI_BASE_ADDRESS_SPACE_IO) {
328 3384f95c David Gibson
        return 1;
329 3384f95c David Gibson
    }
330 3384f95c David Gibson
    return 2;
331 3384f95c David Gibson
}
332 3384f95c David Gibson
333 3384f95c David Gibson
int spapr_populate_pci_devices(sPAPRPHBState *phb,
334 3384f95c David Gibson
                               uint32_t xics_phandle,
335 3384f95c David Gibson
                               void *fdt)
336 3384f95c David Gibson
{
337 3384f95c David Gibson
    PCIBus *bus = phb->host_state.bus;
338 3384f95c David Gibson
    int bus_off, node_off = 0, devid, fn, i, n, devices;
339 3384f95c David Gibson
    DeviceState *qdev;
340 3384f95c David Gibson
    char nodename[256];
341 3384f95c David Gibson
    struct {
342 3384f95c David Gibson
        uint32_t hi;
343 3384f95c David Gibson
        uint64_t addr;
344 3384f95c David Gibson
        uint64_t size;
345 3384f95c David Gibson
    } __attribute__((packed)) reg[PCI_NUM_REGIONS + 1],
346 3384f95c David Gibson
          assigned_addresses[PCI_NUM_REGIONS];
347 3384f95c David Gibson
    uint32_t bus_range[] = { cpu_to_be32(0), cpu_to_be32(0xff) };
348 3384f95c David Gibson
    struct {
349 3384f95c David Gibson
        uint32_t hi;
350 3384f95c David Gibson
        uint64_t child;
351 3384f95c David Gibson
        uint64_t parent;
352 3384f95c David Gibson
        uint64_t size;
353 3384f95c David Gibson
    } __attribute__((packed)) ranges[] = {
354 3384f95c David Gibson
        {
355 3384f95c David Gibson
            cpu_to_be32(b_ss(1)), cpu_to_be64(0),
356 3384f95c David Gibson
            cpu_to_be64(phb->io_win_addr),
357 3384f95c David Gibson
            cpu_to_be64(memory_region_size(&phb->iospace)),
358 3384f95c David Gibson
        },
359 3384f95c David Gibson
        {
360 3384f95c David Gibson
            cpu_to_be32(b_ss(2)), cpu_to_be64(SPAPR_PCI_MEM_WIN_BUS_OFFSET),
361 3384f95c David Gibson
            cpu_to_be64(phb->mem_win_addr),
362 3384f95c David Gibson
            cpu_to_be64(memory_region_size(&phb->memwindow)),
363 3384f95c David Gibson
        },
364 3384f95c David Gibson
    };
365 3384f95c David Gibson
    uint64_t bus_reg[] = { cpu_to_be64(phb->buid), 0 };
366 3384f95c David Gibson
    uint32_t interrupt_map_mask[] = {
367 3384f95c David Gibson
        cpu_to_be32(b_ddddd(-1)|b_fff(-1)), 0x0, 0x0, 0x0};
368 3384f95c David Gibson
    uint32_t interrupt_map[bus->nirq][7];
369 3384f95c David Gibson
370 3384f95c David Gibson
    /* Start populating the FDT */
371 3384f95c David Gibson
    sprintf(nodename, "pci@%" PRIx64, phb->buid);
372 3384f95c David Gibson
    bus_off = fdt_add_subnode(fdt, 0, nodename);
373 3384f95c David Gibson
    if (bus_off < 0) {
374 3384f95c David Gibson
        return bus_off;
375 3384f95c David Gibson
    }
376 3384f95c David Gibson
377 3384f95c David Gibson
#define _FDT(exp) \
378 3384f95c David Gibson
    do { \
379 3384f95c David Gibson
        int ret = (exp);                                           \
380 3384f95c David Gibson
        if (ret < 0) {                                             \
381 3384f95c David Gibson
            return ret;                                            \
382 3384f95c David Gibson
        }                                                          \
383 3384f95c David Gibson
    } while (0)
384 3384f95c David Gibson
385 3384f95c David Gibson
    /* Write PHB properties */
386 3384f95c David Gibson
    _FDT(fdt_setprop_string(fdt, bus_off, "device_type", "pci"));
387 3384f95c David Gibson
    _FDT(fdt_setprop_string(fdt, bus_off, "compatible", "IBM,Logical_PHB"));
388 3384f95c David Gibson
    _FDT(fdt_setprop_cell(fdt, bus_off, "#address-cells", 0x3));
389 3384f95c David Gibson
    _FDT(fdt_setprop_cell(fdt, bus_off, "#size-cells", 0x2));
390 3384f95c David Gibson
    _FDT(fdt_setprop_cell(fdt, bus_off, "#interrupt-cells", 0x1));
391 3384f95c David Gibson
    _FDT(fdt_setprop(fdt, bus_off, "used-by-rtas", NULL, 0));
392 3384f95c David Gibson
    _FDT(fdt_setprop(fdt, bus_off, "bus-range", &bus_range, sizeof(bus_range)));
393 3384f95c David Gibson
    _FDT(fdt_setprop(fdt, bus_off, "ranges", &ranges, sizeof(ranges)));
394 3384f95c David Gibson
    _FDT(fdt_setprop(fdt, bus_off, "reg", &bus_reg, sizeof(bus_reg)));
395 3384f95c David Gibson
    _FDT(fdt_setprop(fdt, bus_off, "interrupt-map-mask",
396 3384f95c David Gibson
                     &interrupt_map_mask, sizeof(interrupt_map_mask)));
397 3384f95c David Gibson
398 3384f95c David Gibson
    /* Populate PCI devices and allocate IRQs */
399 3384f95c David Gibson
    devices = 0;
400 3a26360d Anthony Liguori
    QTAILQ_FOREACH(qdev, &bus->qbus.children, sibling) {
401 3384f95c David Gibson
        PCIDevice *dev = DO_UPCAST(PCIDevice, qdev, qdev);
402 3384f95c David Gibson
        int irq_index = pci_spapr_map_irq(dev, 0);
403 3384f95c David Gibson
        uint32_t *irqmap = interrupt_map[devices];
404 3384f95c David Gibson
        uint8_t *config = dev->config;
405 3384f95c David Gibson
406 3384f95c David Gibson
        devid = dev->devfn >> 3;
407 3384f95c David Gibson
        fn = dev->devfn & 7;
408 3384f95c David Gibson
409 3384f95c David Gibson
        sprintf(nodename, "pci@%u,%u", devid, fn);
410 3384f95c David Gibson
411 3384f95c David Gibson
        /* Allocate interrupt from the map */
412 3384f95c David Gibson
        if (devid > bus->nirq)  {
413 3384f95c David Gibson
            printf("Unexpected behaviour in spapr_populate_pci_devices,"
414 3384f95c David Gibson
                    "wrong devid %u\n", devid);
415 3384f95c David Gibson
            exit(-1);
416 3384f95c David Gibson
        }
417 3384f95c David Gibson
        irqmap[0] = cpu_to_be32(b_ddddd(devid)|b_fff(fn));
418 3384f95c David Gibson
        irqmap[1] = 0;
419 3384f95c David Gibson
        irqmap[2] = 0;
420 3384f95c David Gibson
        irqmap[3] = 0;
421 3384f95c David Gibson
        irqmap[4] = cpu_to_be32(xics_phandle);
422 3384f95c David Gibson
        irqmap[5] = cpu_to_be32(phb->lsi_table[irq_index].dt_irq);
423 3384f95c David Gibson
        irqmap[6] = cpu_to_be32(0x8);
424 3384f95c David Gibson
425 3384f95c David Gibson
        /* Add node to FDT */
426 3384f95c David Gibson
        node_off = fdt_add_subnode(fdt, bus_off, nodename);
427 3384f95c David Gibson
        if (node_off < 0) {
428 3384f95c David Gibson
            return node_off;
429 3384f95c David Gibson
        }
430 3384f95c David Gibson
431 3384f95c David Gibson
        _FDT(fdt_setprop_cell(fdt, node_off, "vendor-id",
432 3384f95c David Gibson
                              pci_get_word(&config[PCI_VENDOR_ID])));
433 3384f95c David Gibson
        _FDT(fdt_setprop_cell(fdt, node_off, "device-id",
434 3384f95c David Gibson
                              pci_get_word(&config[PCI_DEVICE_ID])));
435 3384f95c David Gibson
        _FDT(fdt_setprop_cell(fdt, node_off, "revision-id",
436 3384f95c David Gibson
                              pci_get_byte(&config[PCI_REVISION_ID])));
437 3384f95c David Gibson
        _FDT(fdt_setprop_cell(fdt, node_off, "class-code",
438 3384f95c David Gibson
                              pci_get_long(&config[PCI_CLASS_REVISION]) >> 8));
439 3384f95c David Gibson
        _FDT(fdt_setprop_cell(fdt, node_off, "subsystem-id",
440 3384f95c David Gibson
                              pci_get_word(&config[PCI_SUBSYSTEM_ID])));
441 3384f95c David Gibson
        _FDT(fdt_setprop_cell(fdt, node_off, "subsystem-vendor-id",
442 3384f95c David Gibson
                              pci_get_word(&config[PCI_SUBSYSTEM_VENDOR_ID])));
443 3384f95c David Gibson
444 3384f95c David Gibson
        /* Config space region comes first */
445 3384f95c David Gibson
        reg[0].hi = cpu_to_be32(
446 3384f95c David Gibson
            b_n(0) |
447 3384f95c David Gibson
            b_p(0) |
448 3384f95c David Gibson
            b_t(0) |
449 3384f95c David Gibson
            b_ss(0/*config*/) |
450 3384f95c David Gibson
            b_bbbbbbbb(0) |
451 3384f95c David Gibson
            b_ddddd(devid) |
452 3384f95c David Gibson
            b_fff(fn));
453 3384f95c David Gibson
        reg[0].addr = 0;
454 3384f95c David Gibson
        reg[0].size = 0;
455 3384f95c David Gibson
456 3384f95c David Gibson
        n = 0;
457 3384f95c David Gibson
        for (i = 0; i < PCI_NUM_REGIONS; ++i) {
458 3384f95c David Gibson
            if (0 == dev->io_regions[i].size) {
459 3384f95c David Gibson
                continue;
460 3384f95c David Gibson
            }
461 3384f95c David Gibson
462 3384f95c David Gibson
            reg[n+1].hi = cpu_to_be32(
463 3384f95c David Gibson
                b_n(0) |
464 3384f95c David Gibson
                b_p(0) |
465 3384f95c David Gibson
                b_t(0) |
466 3384f95c David Gibson
                b_ss(regtype_to_ss(dev->io_regions[i].type)) |
467 3384f95c David Gibson
                b_bbbbbbbb(0) |
468 3384f95c David Gibson
                b_ddddd(devid) |
469 3384f95c David Gibson
                b_fff(fn) |
470 3384f95c David Gibson
                b_rrrrrrrr(bars[i]));
471 3384f95c David Gibson
            reg[n+1].addr = 0;
472 3384f95c David Gibson
            reg[n+1].size = cpu_to_be64(dev->io_regions[i].size);
473 3384f95c David Gibson
474 3384f95c David Gibson
            assigned_addresses[n].hi = cpu_to_be32(
475 3384f95c David Gibson
                b_n(1) |
476 3384f95c David Gibson
                b_p(0) |
477 3384f95c David Gibson
                b_t(0) |
478 3384f95c David Gibson
                b_ss(regtype_to_ss(dev->io_regions[i].type)) |
479 3384f95c David Gibson
                b_bbbbbbbb(0) |
480 3384f95c David Gibson
                b_ddddd(devid) |
481 3384f95c David Gibson
                b_fff(fn) |
482 3384f95c David Gibson
                b_rrrrrrrr(bars[i]));
483 3384f95c David Gibson
484 3384f95c David Gibson
            /*
485 3384f95c David Gibson
             * Writing zeroes to assigned_addresses causes the guest kernel to
486 3384f95c David Gibson
             * reassign BARs
487 3384f95c David Gibson
             */
488 3384f95c David Gibson
            assigned_addresses[n].addr = cpu_to_be64(dev->io_regions[i].addr);
489 3384f95c David Gibson
            assigned_addresses[n].size = reg[n+1].size;
490 3384f95c David Gibson
491 3384f95c David Gibson
            ++n;
492 3384f95c David Gibson
        }
493 3384f95c David Gibson
        _FDT(fdt_setprop(fdt, node_off, "reg", reg, sizeof(reg[0])*(n+1)));
494 3384f95c David Gibson
        _FDT(fdt_setprop(fdt, node_off, "assigned-addresses",
495 3384f95c David Gibson
                         assigned_addresses,
496 3384f95c David Gibson
                         sizeof(assigned_addresses[0])*(n)));
497 3384f95c David Gibson
        _FDT(fdt_setprop_cell(fdt, node_off, "interrupts",
498 3384f95c David Gibson
                              pci_get_byte(&config[PCI_INTERRUPT_PIN])));
499 3384f95c David Gibson
500 3384f95c David Gibson
        ++devices;
501 3384f95c David Gibson
    }
502 3384f95c David Gibson
503 3384f95c David Gibson
    /* Write interrupt map */
504 3384f95c David Gibson
    _FDT(fdt_setprop(fdt, bus_off, "interrupt-map", &interrupt_map,
505 3384f95c David Gibson
                     devices * sizeof(interrupt_map[0])));
506 3384f95c David Gibson
507 3384f95c David Gibson
    return 0;
508 3384f95c David Gibson
}