]> git.proxmox.com Git - mirror_qemu.git/blame - hw/pci.c
PowerPC 64 fixes
[mirror_qemu.git] / hw / pci.c
CommitLineData
69b91039
FB
1/*
2 * QEMU PCI bus manager
3 *
4 * Copyright (c) 2004 Fabrice Bellard
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22 * THE SOFTWARE.
23 */
24#include "vl.h"
25
26//#define DEBUG_PCI
27
30468f78
FB
28struct PCIBus {
29 int bus_num;
30 int devfn_min;
502a5395 31 pci_set_irq_fn set_irq;
d2b59317 32 pci_map_irq_fn map_irq;
30468f78 33 uint32_t config_reg; /* XXX: suppress */
384d8876
FB
34 /* low level pic */
35 SetIRQFunc *low_set_irq;
36 void *irq_opaque;
30468f78 37 PCIDevice *devices[256];
80b3ada7
PB
38 PCIDevice *parent_dev;
39 PCIBus *next;
d2b59317
PB
40 /* The bus IRQ state is the logical OR of the connected devices.
41 Keep a count of the number of devices with raised IRQs. */
80b3ada7 42 int irq_count[];
30468f78 43};
69b91039 44
1941d19c
FB
45static void pci_update_mappings(PCIDevice *d);
46
69b91039 47target_phys_addr_t pci_mem_base;
0ac32c83 48static int pci_irq_index;
30468f78
FB
49static PCIBus *first_bus;
50
d2b59317 51PCIBus *pci_register_bus(pci_set_irq_fn set_irq, pci_map_irq_fn map_irq,
80b3ada7 52 void *pic, int devfn_min, int nirq)
30468f78
FB
53{
54 PCIBus *bus;
80b3ada7 55 bus = qemu_mallocz(sizeof(PCIBus) + (nirq * sizeof(int)));
502a5395 56 bus->set_irq = set_irq;
d2b59317 57 bus->map_irq = map_irq;
502a5395
PB
58 bus->irq_opaque = pic;
59 bus->devfn_min = devfn_min;
30468f78
FB
60 first_bus = bus;
61 return bus;
62}
69b91039 63
80b3ada7
PB
64PCIBus *pci_register_secondary_bus(PCIDevice *dev, pci_map_irq_fn map_irq)
65{
66 PCIBus *bus;
67 bus = qemu_mallocz(sizeof(PCIBus));
68 bus->map_irq = map_irq;
69 bus->parent_dev = dev;
70 bus->next = dev->bus->next;
71 dev->bus->next = bus;
72 return bus;
73}
74
502a5395
PB
75int pci_bus_num(PCIBus *s)
76{
77 return s->bus_num;
78}
79
1941d19c 80void pci_device_save(PCIDevice *s, QEMUFile *f)
30ca2aab 81{
1941d19c 82 qemu_put_be32(f, 1); /* PCI device version */
30ca2aab
FB
83 qemu_put_buffer(f, s->config, 256);
84}
85
1941d19c 86int pci_device_load(PCIDevice *s, QEMUFile *f)
30ca2aab 87{
1941d19c
FB
88 uint32_t version_id;
89 version_id = qemu_get_be32(f);
30ca2aab
FB
90 if (version_id != 1)
91 return -EINVAL;
30ca2aab 92 qemu_get_buffer(f, s->config, 256);
1941d19c 93 pci_update_mappings(s);
30ca2aab
FB
94 return 0;
95}
96
69b91039 97/* -1 for devfn means auto assign */
30468f78
FB
98PCIDevice *pci_register_device(PCIBus *bus, const char *name,
99 int instance_size, int devfn,
69b91039
FB
100 PCIConfigReadFunc *config_read,
101 PCIConfigWriteFunc *config_write)
102{
30468f78 103 PCIDevice *pci_dev;
69b91039 104
0ac32c83
FB
105 if (pci_irq_index >= PCI_DEVICES_MAX)
106 return NULL;
107
69b91039 108 if (devfn < 0) {
30468f78
FB
109 for(devfn = bus->devfn_min ; devfn < 256; devfn += 8) {
110 if (!bus->devices[devfn])
69b91039
FB
111 goto found;
112 }
113 return NULL;
114 found: ;
115 }
116 pci_dev = qemu_mallocz(instance_size);
117 if (!pci_dev)
118 return NULL;
30468f78 119 pci_dev->bus = bus;
69b91039
FB
120 pci_dev->devfn = devfn;
121 pstrcpy(pci_dev->name, sizeof(pci_dev->name), name);
d2b59317 122 memset(pci_dev->irq_state, 0, sizeof(pci_dev->irq_state));
0ac32c83
FB
123
124 if (!config_read)
125 config_read = pci_default_read_config;
126 if (!config_write)
127 config_write = pci_default_write_config;
69b91039
FB
128 pci_dev->config_read = config_read;
129 pci_dev->config_write = config_write;
0ac32c83 130 pci_dev->irq_index = pci_irq_index++;
30468f78 131 bus->devices[devfn] = pci_dev;
69b91039
FB
132 return pci_dev;
133}
134
135void pci_register_io_region(PCIDevice *pci_dev, int region_num,
136 uint32_t size, int type,
137 PCIMapIORegionFunc *map_func)
138{
139 PCIIORegion *r;
d7ce493a 140 uint32_t addr;
69b91039 141
8a8696a3 142 if ((unsigned int)region_num >= PCI_NUM_REGIONS)
69b91039
FB
143 return;
144 r = &pci_dev->io_regions[region_num];
145 r->addr = -1;
146 r->size = size;
147 r->type = type;
148 r->map_func = map_func;
d7ce493a
PB
149 if (region_num == PCI_ROM_SLOT) {
150 addr = 0x30;
151 } else {
152 addr = 0x10 + region_num * 4;
153 }
154 *(uint32_t *)(pci_dev->config + addr) = cpu_to_le32(type);
69b91039
FB
155}
156
502a5395 157target_phys_addr_t pci_to_cpu_addr(target_phys_addr_t addr)
69b91039 158{
502a5395 159 return addr + pci_mem_base;
69b91039
FB
160}
161
0ac32c83
FB
162static void pci_update_mappings(PCIDevice *d)
163{
164 PCIIORegion *r;
165 int cmd, i;
8a8696a3 166 uint32_t last_addr, new_addr, config_ofs;
0ac32c83
FB
167
168 cmd = le16_to_cpu(*(uint16_t *)(d->config + PCI_COMMAND));
8a8696a3 169 for(i = 0; i < PCI_NUM_REGIONS; i++) {
0ac32c83 170 r = &d->io_regions[i];
8a8696a3
FB
171 if (i == PCI_ROM_SLOT) {
172 config_ofs = 0x30;
173 } else {
174 config_ofs = 0x10 + i * 4;
175 }
0ac32c83
FB
176 if (r->size != 0) {
177 if (r->type & PCI_ADDRESS_SPACE_IO) {
178 if (cmd & PCI_COMMAND_IO) {
179 new_addr = le32_to_cpu(*(uint32_t *)(d->config +
8a8696a3 180 config_ofs));
0ac32c83
FB
181 new_addr = new_addr & ~(r->size - 1);
182 last_addr = new_addr + r->size - 1;
183 /* NOTE: we have only 64K ioports on PC */
184 if (last_addr <= new_addr || new_addr == 0 ||
185 last_addr >= 0x10000) {
186 new_addr = -1;
187 }
188 } else {
189 new_addr = -1;
190 }
191 } else {
192 if (cmd & PCI_COMMAND_MEMORY) {
193 new_addr = le32_to_cpu(*(uint32_t *)(d->config +
8a8696a3
FB
194 config_ofs));
195 /* the ROM slot has a specific enable bit */
196 if (i == PCI_ROM_SLOT && !(new_addr & 1))
197 goto no_mem_map;
0ac32c83
FB
198 new_addr = new_addr & ~(r->size - 1);
199 last_addr = new_addr + r->size - 1;
200 /* NOTE: we do not support wrapping */
201 /* XXX: as we cannot support really dynamic
202 mappings, we handle specific values as invalid
203 mappings. */
204 if (last_addr <= new_addr || new_addr == 0 ||
205 last_addr == -1) {
206 new_addr = -1;
207 }
208 } else {
8a8696a3 209 no_mem_map:
0ac32c83
FB
210 new_addr = -1;
211 }
212 }
213 /* now do the real mapping */
214 if (new_addr != r->addr) {
215 if (r->addr != -1) {
216 if (r->type & PCI_ADDRESS_SPACE_IO) {
217 int class;
218 /* NOTE: specific hack for IDE in PC case:
219 only one byte must be mapped. */
220 class = d->config[0x0a] | (d->config[0x0b] << 8);
221 if (class == 0x0101 && r->size == 4) {
222 isa_unassign_ioport(r->addr + 2, 1);
223 } else {
224 isa_unassign_ioport(r->addr, r->size);
225 }
226 } else {
502a5395 227 cpu_register_physical_memory(pci_to_cpu_addr(r->addr),
0ac32c83
FB
228 r->size,
229 IO_MEM_UNASSIGNED);
230 }
231 }
232 r->addr = new_addr;
233 if (r->addr != -1) {
234 r->map_func(d, i, r->addr, r->size, r->type);
235 }
236 }
237 }
238 }
239}
240
241uint32_t pci_default_read_config(PCIDevice *d,
242 uint32_t address, int len)
69b91039 243{
0ac32c83 244 uint32_t val;
a2d4e44b 245
0ac32c83 246 switch(len) {
0ac32c83
FB
247 default:
248 case 4:
a2d4e44b
TS
249 if (address <= 0xfc) {
250 val = le32_to_cpu(*(uint32_t *)(d->config + address));
251 break;
252 }
253 /* fall through */
254 case 2:
255 if (address <= 0xfe) {
256 val = le16_to_cpu(*(uint16_t *)(d->config + address));
257 break;
258 }
259 /* fall through */
260 case 1:
261 val = d->config[address];
0ac32c83
FB
262 break;
263 }
264 return val;
265}
266
267void pci_default_write_config(PCIDevice *d,
268 uint32_t address, uint32_t val, int len)
269{
270 int can_write, i;
7bf5be70 271 uint32_t end, addr;
0ac32c83 272
8a8696a3
FB
273 if (len == 4 && ((address >= 0x10 && address < 0x10 + 4 * 6) ||
274 (address >= 0x30 && address < 0x34))) {
0ac32c83
FB
275 PCIIORegion *r;
276 int reg;
277
8a8696a3
FB
278 if ( address >= 0x30 ) {
279 reg = PCI_ROM_SLOT;
280 }else{
281 reg = (address - 0x10) >> 2;
282 }
0ac32c83
FB
283 r = &d->io_regions[reg];
284 if (r->size == 0)
285 goto default_config;
286 /* compute the stored value */
8a8696a3
FB
287 if (reg == PCI_ROM_SLOT) {
288 /* keep ROM enable bit */
289 val &= (~(r->size - 1)) | 1;
290 } else {
291 val &= ~(r->size - 1);
292 val |= r->type;
293 }
294 *(uint32_t *)(d->config + address) = cpu_to_le32(val);
0ac32c83 295 pci_update_mappings(d);
69b91039 296 return;
0ac32c83
FB
297 }
298 default_config:
299 /* not efficient, but simple */
7bf5be70 300 addr = address;
0ac32c83
FB
301 for(i = 0; i < len; i++) {
302 /* default read/write accesses */
1f62d938 303 switch(d->config[0x0e]) {
0ac32c83 304 case 0x00:
1f62d938
FB
305 case 0x80:
306 switch(addr) {
307 case 0x00:
308 case 0x01:
309 case 0x02:
310 case 0x03:
311 case 0x08:
312 case 0x09:
313 case 0x0a:
314 case 0x0b:
315 case 0x0e:
316 case 0x10 ... 0x27: /* base */
317 case 0x30 ... 0x33: /* rom */
318 case 0x3d:
319 can_write = 0;
320 break;
321 default:
322 can_write = 1;
323 break;
324 }
0ac32c83
FB
325 break;
326 default:
1f62d938
FB
327 case 0x01:
328 switch(addr) {
329 case 0x00:
330 case 0x01:
331 case 0x02:
332 case 0x03:
333 case 0x08:
334 case 0x09:
335 case 0x0a:
336 case 0x0b:
337 case 0x0e:
338 case 0x38 ... 0x3b: /* rom */
339 case 0x3d:
340 can_write = 0;
341 break;
342 default:
343 can_write = 1;
344 break;
345 }
0ac32c83
FB
346 break;
347 }
348 if (can_write) {
7bf5be70 349 d->config[addr] = val;
0ac32c83 350 }
a2d4e44b
TS
351 if (++addr > 0xff)
352 break;
0ac32c83
FB
353 val >>= 8;
354 }
355
356 end = address + len;
357 if (end > PCI_COMMAND && address < (PCI_COMMAND + 2)) {
358 /* if the command register is modified, we must modify the mappings */
359 pci_update_mappings(d);
69b91039
FB
360 }
361}
362
502a5395 363void pci_data_write(void *opaque, uint32_t addr, uint32_t val, int len)
69b91039 364{
30468f78
FB
365 PCIBus *s = opaque;
366 PCIDevice *pci_dev;
367 int config_addr, bus_num;
69b91039
FB
368
369#if defined(DEBUG_PCI) && 0
370 printf("pci_data_write: addr=%08x val=%08x len=%d\n",
502a5395 371 addr, val, len);
69b91039 372#endif
502a5395 373 bus_num = (addr >> 16) & 0xff;
80b3ada7
PB
374 while (s && s->bus_num != bus_num)
375 s = s->next;
376 if (!s)
69b91039 377 return;
502a5395 378 pci_dev = s->devices[(addr >> 8) & 0xff];
69b91039
FB
379 if (!pci_dev)
380 return;
502a5395 381 config_addr = addr & 0xff;
69b91039
FB
382#if defined(DEBUG_PCI)
383 printf("pci_config_write: %s: addr=%02x val=%08x len=%d\n",
384 pci_dev->name, config_addr, val, len);
385#endif
0ac32c83 386 pci_dev->config_write(pci_dev, config_addr, val, len);
69b91039
FB
387}
388
502a5395 389uint32_t pci_data_read(void *opaque, uint32_t addr, int len)
69b91039 390{
30468f78
FB
391 PCIBus *s = opaque;
392 PCIDevice *pci_dev;
393 int config_addr, bus_num;
69b91039
FB
394 uint32_t val;
395
502a5395 396 bus_num = (addr >> 16) & 0xff;
80b3ada7
PB
397 while (s && s->bus_num != bus_num)
398 s= s->next;
399 if (!s)
69b91039 400 goto fail;
502a5395 401 pci_dev = s->devices[(addr >> 8) & 0xff];
69b91039
FB
402 if (!pci_dev) {
403 fail:
63ce9e0a
FB
404 switch(len) {
405 case 1:
406 val = 0xff;
407 break;
408 case 2:
409 val = 0xffff;
410 break;
411 default:
412 case 4:
413 val = 0xffffffff;
414 break;
415 }
69b91039
FB
416 goto the_end;
417 }
502a5395 418 config_addr = addr & 0xff;
69b91039
FB
419 val = pci_dev->config_read(pci_dev, config_addr, len);
420#if defined(DEBUG_PCI)
421 printf("pci_config_read: %s: addr=%02x val=%08x len=%d\n",
422 pci_dev->name, config_addr, val, len);
423#endif
424 the_end:
425#if defined(DEBUG_PCI) && 0
426 printf("pci_data_read: addr=%08x val=%08x len=%d\n",
502a5395 427 addr, val, len);
69b91039
FB
428#endif
429 return val;
430}
431
502a5395
PB
432/***********************************************************/
433/* generic PCI irq support */
30468f78 434
502a5395
PB
435/* 0 <= irq_num <= 3. level must be 0 or 1 */
436void pci_set_irq(PCIDevice *pci_dev, int irq_num, int level)
69b91039 437{
80b3ada7
PB
438 PCIBus *bus;
439 int change;
440
441 change = level - pci_dev->irq_state[irq_num];
442 if (!change)
443 return;
d2b59317 444
d2b59317 445 pci_dev->irq_state[irq_num] = level;
5e966ce6
PB
446 for (;;) {
447 bus = pci_dev->bus;
80b3ada7 448 irq_num = bus->map_irq(pci_dev, irq_num);
5e966ce6
PB
449 if (bus->set_irq)
450 break;
80b3ada7 451 pci_dev = bus->parent_dev;
80b3ada7
PB
452 }
453 bus->irq_count[irq_num] += change;
d2b59317 454 bus->set_irq(bus->irq_opaque, irq_num, bus->irq_count[irq_num] != 0);
69b91039
FB
455}
456
502a5395
PB
457/***********************************************************/
458/* monitor info on PCI */
0ac32c83 459
6650ee6d
PB
460typedef struct {
461 uint16_t class;
462 const char *desc;
463} pci_class_desc;
464
465static pci_class_desc pci_class_descriptions[] =
466{
4ca9c76f 467 { 0x0100, "SCSI controller"},
6650ee6d
PB
468 { 0x0101, "IDE controller"},
469 { 0x0200, "Ethernet controller"},
470 { 0x0300, "VGA controller"},
471 { 0x0600, "Host bridge"},
472 { 0x0601, "ISA bridge"},
473 { 0x0604, "PCI bridge"},
474 { 0x0c03, "USB controller"},
475 { 0, NULL}
476};
477
502a5395 478static void pci_info_device(PCIDevice *d)
30468f78 479{
502a5395
PB
480 int i, class;
481 PCIIORegion *r;
6650ee6d 482 pci_class_desc *desc;
30468f78 483
502a5395
PB
484 term_printf(" Bus %2d, device %3d, function %d:\n",
485 d->bus->bus_num, d->devfn >> 3, d->devfn & 7);
486 class = le16_to_cpu(*((uint16_t *)(d->config + PCI_CLASS_DEVICE)));
487 term_printf(" ");
6650ee6d
PB
488 desc = pci_class_descriptions;
489 while (desc->desc && class != desc->class)
490 desc++;
491 if (desc->desc) {
492 term_printf("%s", desc->desc);
493 } else {
502a5395 494 term_printf("Class %04x", class);
72cc6cfe 495 }
502a5395
PB
496 term_printf(": PCI device %04x:%04x\n",
497 le16_to_cpu(*((uint16_t *)(d->config + PCI_VENDOR_ID))),
498 le16_to_cpu(*((uint16_t *)(d->config + PCI_DEVICE_ID))));
30468f78 499
502a5395
PB
500 if (d->config[PCI_INTERRUPT_PIN] != 0) {
501 term_printf(" IRQ %d.\n", d->config[PCI_INTERRUPT_LINE]);
30468f78 502 }
80b3ada7
PB
503 if (class == 0x0604) {
504 term_printf(" BUS %d.\n", d->config[0x19]);
505 }
502a5395
PB
506 for(i = 0;i < PCI_NUM_REGIONS; i++) {
507 r = &d->io_regions[i];
508 if (r->size != 0) {
509 term_printf(" BAR%d: ", i);
510 if (r->type & PCI_ADDRESS_SPACE_IO) {
511 term_printf("I/O at 0x%04x [0x%04x].\n",
512 r->addr, r->addr + r->size - 1);
513 } else {
514 term_printf("32 bit memory at 0x%08x [0x%08x].\n",
515 r->addr, r->addr + r->size - 1);
516 }
517 }
77d4bc34 518 }
80b3ada7
PB
519 if (class == 0x0604 && d->config[0x19] != 0) {
520 pci_for_each_device(d->config[0x19], pci_info_device);
521 }
384d8876
FB
522}
523
80b3ada7 524void pci_for_each_device(int bus_num, void (*fn)(PCIDevice *d))
384d8876 525{
502a5395 526 PCIBus *bus = first_bus;
384d8876 527 PCIDevice *d;
502a5395 528 int devfn;
384d8876 529
80b3ada7
PB
530 while (bus && bus->bus_num != bus_num)
531 bus = bus->next;
502a5395
PB
532 if (bus) {
533 for(devfn = 0; devfn < 256; devfn++) {
534 d = bus->devices[devfn];
535 if (d)
536 fn(d);
537 }
f2aa58c6 538 }
f2aa58c6
FB
539}
540
502a5395 541void pci_info(void)
f2aa58c6 542{
80b3ada7 543 pci_for_each_device(0, pci_info_device);
77d4bc34 544}
a41b2ff2
PB
545
546/* Initialize a PCI NIC. */
abcebc7e 547void pci_nic_init(PCIBus *bus, NICInfo *nd, int devfn)
a41b2ff2
PB
548{
549 if (strcmp(nd->model, "ne2k_pci") == 0) {
abcebc7e 550 pci_ne2000_init(bus, nd, devfn);
663e8e51
TS
551 } else if (strcmp(nd->model, "i82551") == 0) {
552 pci_i82551_init(bus, nd, devfn);
553 } else if (strcmp(nd->model, "i82557b") == 0) {
554 pci_i82557b_init(bus, nd, devfn);
555 } else if (strcmp(nd->model, "i82559er") == 0) {
556 pci_i82559er_init(bus, nd, devfn);
a41b2ff2 557 } else if (strcmp(nd->model, "rtl8139") == 0) {
abcebc7e 558 pci_rtl8139_init(bus, nd, devfn);
e3c2613f 559 } else if (strcmp(nd->model, "pcnet") == 0) {
abcebc7e 560 pci_pcnet_init(bus, nd, devfn);
a41b2ff2
PB
561 } else {
562 fprintf(stderr, "qemu: Unsupported NIC: %s\n", nd->model);
563 exit (1);
564 }
565}
566
80b3ada7
PB
567typedef struct {
568 PCIDevice dev;
569 PCIBus *bus;
570} PCIBridge;
571
572void pci_bridge_write_config(PCIDevice *d,
573 uint32_t address, uint32_t val, int len)
574{
575 PCIBridge *s = (PCIBridge *)d;
576
577 if (address == 0x19 || (address == 0x18 && len > 1)) {
578 if (address == 0x19)
579 s->bus->bus_num = val & 0xff;
580 else
581 s->bus->bus_num = (val >> 8) & 0xff;
582#if defined(DEBUG_PCI)
583 printf ("pci-bridge: %s: Assigned bus %d\n", d->name, s->bus->bus_num);
584#endif
585 }
586 pci_default_write_config(d, address, val, len);
587}
588
589PCIBus *pci_bridge_init(PCIBus *bus, int devfn, uint32_t id,
590 pci_map_irq_fn map_irq, const char *name)
591{
592 PCIBridge *s;
593 s = (PCIBridge *)pci_register_device(bus, name, sizeof(PCIBridge),
594 devfn, NULL, pci_bridge_write_config);
595 s->dev.config[0x00] = id >> 16;
451a4212 596 s->dev.config[0x01] = id >> 24;
80b3ada7
PB
597 s->dev.config[0x02] = id; // device_id
598 s->dev.config[0x03] = id >> 8;
599 s->dev.config[0x04] = 0x06; // command = bus master, pci mem
600 s->dev.config[0x05] = 0x00;
601 s->dev.config[0x06] = 0xa0; // status = fast back-to-back, 66MHz, no error
602 s->dev.config[0x07] = 0x00; // status = fast devsel
603 s->dev.config[0x08] = 0x00; // revision
604 s->dev.config[0x09] = 0x00; // programming i/f
605 s->dev.config[0x0A] = 0x04; // class_sub = PCI to PCI bridge
606 s->dev.config[0x0B] = 0x06; // class_base = PCI_bridge
607 s->dev.config[0x0D] = 0x10; // latency_timer
608 s->dev.config[0x0E] = 0x81; // header_type
609 s->dev.config[0x1E] = 0xa0; // secondary status
610
611 s->bus = pci_register_secondary_bus(&s->dev, map_irq);
612 return s->bus;
613}