cb7131a6a87dcaacf890408a5b096f2d00c41e31
[qemu] / qemu / hw / pci.c
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
28 #define PCI_VENDOR_ID           0x00    /* 16 bits */
29 #define PCI_DEVICE_ID           0x02    /* 16 bits */
30 #define PCI_COMMAND             0x04    /* 16 bits */
31 #define  PCI_COMMAND_IO         0x1     /* Enable response in I/O space */
32 #define  PCI_COMMAND_MEMORY     0x2     /* Enable response in Memory space */
33 #define PCI_CLASS_DEVICE        0x0a    /* Device class */
34 #define PCI_INTERRUPT_LINE      0x3c    /* 8 bits */
35 #define PCI_INTERRUPT_PIN       0x3d    /* 8 bits */
36 #define PCI_MIN_GNT             0x3e    /* 8 bits */
37 #define PCI_MAX_LAT             0x3f    /* 8 bits */
38
39 /* just used for simpler irq handling. */
40 #define PCI_DEVICES_MAX 64
41 #define PCI_IRQ_WORDS   ((PCI_DEVICES_MAX + 31) / 32)
42
43 struct PCIBus {
44     int bus_num;
45     int devfn_min;
46     void (*set_irq)(PCIDevice *pci_dev, int irq_num, int level);
47     uint32_t config_reg; /* XXX: suppress */
48     openpic_t *openpic; /* XXX: suppress */
49     PCIDevice *devices[256];
50 };
51
52 target_phys_addr_t pci_mem_base;
53 static int pci_irq_index;
54 static uint32_t pci_irq_levels[4][PCI_IRQ_WORDS];
55 static PCIBus *first_bus;
56
57 static PCIBus *pci_register_bus(void)
58 {
59     PCIBus *bus;
60     bus = qemu_mallocz(sizeof(PCIBus));
61     first_bus = bus;
62     return bus;
63 }
64
65 void generic_pci_save(QEMUFile* f, void *opaque)
66 {
67     PCIDevice* s=(PCIDevice*)opaque;
68
69     qemu_put_buffer(f, s->config, 256);
70 }
71
72 int generic_pci_load(QEMUFile* f, void *opaque, int version_id)
73 {
74     PCIDevice* s=(PCIDevice*)opaque;
75
76     if (version_id != 1)
77         return -EINVAL;
78
79     qemu_get_buffer(f, s->config, 256);
80     return 0;
81 }
82
83 /* -1 for devfn means auto assign */
84 PCIDevice *pci_register_device(PCIBus *bus, const char *name, 
85                                int instance_size, int devfn,
86                                PCIConfigReadFunc *config_read, 
87                                PCIConfigWriteFunc *config_write)
88 {
89     PCIDevice *pci_dev;
90
91     if (pci_irq_index >= PCI_DEVICES_MAX)
92         return NULL;
93     
94     if (devfn < 0) {
95         for(devfn = bus->devfn_min ; devfn < 256; devfn += 8) {
96             if (!bus->devices[devfn])
97                 goto found;
98         }
99         return NULL;
100     found: ;
101     }
102     pci_dev = qemu_mallocz(instance_size);
103     if (!pci_dev)
104         return NULL;
105     pci_dev->bus = bus;
106     pci_dev->devfn = devfn;
107     pstrcpy(pci_dev->name, sizeof(pci_dev->name), name);
108
109     if (!config_read)
110         config_read = pci_default_read_config;
111     if (!config_write)
112         config_write = pci_default_write_config;
113     pci_dev->config_read = config_read;
114     pci_dev->config_write = config_write;
115     pci_dev->irq_index = pci_irq_index++;
116     bus->devices[devfn] = pci_dev;
117     return pci_dev;
118 }
119
120 void pci_register_io_region(PCIDevice *pci_dev, int region_num, 
121                             uint32_t size, int type, 
122                             PCIMapIORegionFunc *map_func)
123 {
124     PCIIORegion *r;
125
126     if ((unsigned int)region_num >= PCI_NUM_REGIONS)
127         return;
128     r = &pci_dev->io_regions[region_num];
129     r->addr = -1;
130     r->size = size;
131     r->type = type;
132     r->map_func = map_func;
133 }
134
135 static void pci_addr_writel(void* opaque, uint32_t addr, uint32_t val)
136 {
137     PCIBus *s = opaque;
138     s->config_reg = val;
139 }
140
141 static uint32_t pci_addr_readl(void* opaque, uint32_t addr)
142 {
143     PCIBus *s = opaque;
144     return s->config_reg;
145 }
146
147 static void pci_update_mappings(PCIDevice *d)
148 {
149     PCIIORegion *r;
150     int cmd, i;
151     uint32_t last_addr, new_addr, config_ofs;
152     
153     cmd = le16_to_cpu(*(uint16_t *)(d->config + PCI_COMMAND));
154     for(i = 0; i < PCI_NUM_REGIONS; i++) {
155         r = &d->io_regions[i];
156         if (i == PCI_ROM_SLOT) {
157             config_ofs = 0x30;
158         } else {
159             config_ofs = 0x10 + i * 4;
160         }
161         if (r->size != 0) {
162             if (r->type & PCI_ADDRESS_SPACE_IO) {
163                 if (cmd & PCI_COMMAND_IO) {
164                     new_addr = le32_to_cpu(*(uint32_t *)(d->config + 
165                                                          config_ofs));
166                     new_addr = new_addr & ~(r->size - 1);
167                     last_addr = new_addr + r->size - 1;
168                     /* NOTE: we have only 64K ioports on PC */
169                     if (last_addr <= new_addr || new_addr == 0 ||
170                         last_addr >= 0x10000) {
171                         new_addr = -1;
172                     }
173                 } else {
174                     new_addr = -1;
175                 }
176             } else {
177                 if (cmd & PCI_COMMAND_MEMORY) {
178                     new_addr = le32_to_cpu(*(uint32_t *)(d->config + 
179                                                          config_ofs));
180                     /* the ROM slot has a specific enable bit */
181                     if (i == PCI_ROM_SLOT && !(new_addr & 1))
182                         goto no_mem_map;
183                     new_addr = new_addr & ~(r->size - 1);
184                     last_addr = new_addr + r->size - 1;
185                     /* NOTE: we do not support wrapping */
186                     /* XXX: as we cannot support really dynamic
187                        mappings, we handle specific values as invalid
188                        mappings. */
189                     if (last_addr <= new_addr || new_addr == 0 ||
190                         last_addr == -1) {
191                         new_addr = -1;
192                     }
193                 } else {
194                 no_mem_map:
195                     new_addr = -1;
196                 }
197             }
198             /* now do the real mapping */
199             if (new_addr != r->addr) {
200                 if (r->addr != -1) {
201                     if (r->type & PCI_ADDRESS_SPACE_IO) {
202                         int class;
203                         /* NOTE: specific hack for IDE in PC case:
204                            only one byte must be mapped. */
205                         class = d->config[0x0a] | (d->config[0x0b] << 8);
206                         if (class == 0x0101 && r->size == 4) {
207                             isa_unassign_ioport(r->addr + 2, 1);
208                         } else {
209                             isa_unassign_ioport(r->addr, r->size);
210                         }
211                     } else {
212                         cpu_register_physical_memory(r->addr + pci_mem_base, 
213                                                      r->size, 
214                                                      IO_MEM_UNASSIGNED);
215                     }
216                 }
217                 r->addr = new_addr;
218                 if (r->addr != -1) {
219                     r->map_func(d, i, r->addr, r->size, r->type);
220                 }
221             }
222         }
223     }
224 }
225
226 uint32_t pci_default_read_config(PCIDevice *d, 
227                                  uint32_t address, int len)
228 {
229     uint32_t val;
230     switch(len) {
231     case 1:
232         val = d->config[address];
233         break;
234     case 2:
235         val = le16_to_cpu(*(uint16_t *)(d->config + address));
236         break;
237     default:
238     case 4:
239         val = le32_to_cpu(*(uint32_t *)(d->config + address));
240         break;
241     }
242     return val;
243 }
244
245 void pci_default_write_config(PCIDevice *d, 
246                               uint32_t address, uint32_t val, int len)
247 {
248     int can_write, i;
249     uint32_t end, addr;
250
251     if (len == 4 && ((address >= 0x10 && address < 0x10 + 4 * 6) || 
252                      (address >= 0x30 && address < 0x34))) {
253         PCIIORegion *r;
254         int reg;
255
256         if ( address >= 0x30 ) {
257             reg = PCI_ROM_SLOT;
258         }else{
259             reg = (address - 0x10) >> 2;
260         }
261         r = &d->io_regions[reg];
262         if (r->size == 0)
263             goto default_config;
264         /* compute the stored value */
265         if (reg == PCI_ROM_SLOT) {
266             /* keep ROM enable bit */
267             val &= (~(r->size - 1)) | 1;
268         } else {
269             val &= ~(r->size - 1);
270             val |= r->type;
271         }
272         *(uint32_t *)(d->config + address) = cpu_to_le32(val);
273         pci_update_mappings(d);
274         return;
275     }
276  default_config:
277     /* not efficient, but simple */
278     addr = address;
279     for(i = 0; i < len; i++) {
280         /* default read/write accesses */
281         switch(d->config[0x0e]) {
282         case 0x00:
283         case 0x80:
284             switch(addr) {
285             case 0x00:
286             case 0x01:
287             case 0x02:
288             case 0x03:
289             case 0x08:
290             case 0x09:
291             case 0x0a:
292             case 0x0b:
293             case 0x0e:
294             case 0x10 ... 0x27: /* base */
295             case 0x30 ... 0x33: /* rom */
296             case 0x3d:
297                 can_write = 0;
298                 break;
299             default:
300                 can_write = 1;
301                 break;
302             }
303             break;
304         default:
305         case 0x01:
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 0x38 ... 0x3b: /* rom */
317             case 0x3d:
318                 can_write = 0;
319                 break;
320             default:
321                 can_write = 1;
322                 break;
323             }
324             break;
325         }
326         if (can_write) {
327             d->config[addr] = val;
328         }
329         addr++;
330         val >>= 8;
331     }
332
333     end = address + len;
334     if (end > PCI_COMMAND && address < (PCI_COMMAND + 2)) {
335         /* if the command register is modified, we must modify the mappings */
336         pci_update_mappings(d);
337     }
338 }
339
340 static void pci_data_write(void *opaque, uint32_t addr, 
341                            uint32_t val, int len)
342 {
343     PCIBus *s = opaque;
344     PCIDevice *pci_dev;
345     int config_addr, bus_num;
346     
347 #if defined(DEBUG_PCI) && 0
348     printf("pci_data_write: addr=%08x val=%08x len=%d\n",
349            s->config_reg, val, len);
350 #endif
351     if (!(s->config_reg & (1 << 31))) {
352         return;
353     }
354     if ((s->config_reg & 0x3) != 0) {
355         return;
356     }
357     bus_num = (s->config_reg >> 16) & 0xff;
358     if (bus_num != 0)
359         return;
360     pci_dev = s->devices[(s->config_reg >> 8) & 0xff];
361     if (!pci_dev)
362         return;
363     config_addr = (s->config_reg & 0xfc) | (addr & 3);
364 #if defined(DEBUG_PCI)
365     printf("pci_config_write: %s: addr=%02x val=%08x len=%d\n",
366            pci_dev->name, config_addr, val, len);
367 #endif
368     pci_dev->config_write(pci_dev, config_addr, val, len);
369 }
370
371 static uint32_t pci_data_read(void *opaque, uint32_t addr, 
372                               int len)
373 {
374     PCIBus *s = opaque;
375     PCIDevice *pci_dev;
376     int config_addr, bus_num;
377     uint32_t val;
378
379     if (!(s->config_reg & (1 << 31)))
380         goto fail;
381     if ((s->config_reg & 0x3) != 0)
382         goto fail;
383     bus_num = (s->config_reg >> 16) & 0xff;
384     if (bus_num != 0)
385         goto fail;
386     pci_dev = s->devices[(s->config_reg >> 8) & 0xff];
387     if (!pci_dev) {
388     fail:
389         switch(len) {
390         case 1:
391             val = 0xff;
392             break;
393         case 2:
394             val = 0xffff;
395             break;
396         default:
397         case 4:
398             val = 0xffffffff;
399             break;
400         }
401         goto the_end;
402     }
403     config_addr = (s->config_reg & 0xfc) | (addr & 3);
404     val = pci_dev->config_read(pci_dev, config_addr, len);
405 #if defined(DEBUG_PCI)
406     printf("pci_config_read: %s: addr=%02x val=%08x len=%d\n",
407            pci_dev->name, config_addr, val, len);
408 #endif
409  the_end:
410 #if defined(DEBUG_PCI) && 0
411     printf("pci_data_read: addr=%08x val=%08x len=%d\n",
412            s->config_reg, val, len);
413 #endif
414     return val;
415 }
416
417 static void pci_data_writeb(void* opaque, uint32_t addr, uint32_t val)
418 {
419     pci_data_write(opaque, addr, val, 1);
420 }
421
422 static void pci_data_writew(void* opaque, uint32_t addr, uint32_t val)
423 {
424     pci_data_write(opaque, addr, val, 2);
425 }
426
427 static void pci_data_writel(void* opaque, uint32_t addr, uint32_t val)
428 {
429     pci_data_write(opaque, addr, val, 4);
430 }
431
432 static uint32_t pci_data_readb(void* opaque, uint32_t addr)
433 {
434     return pci_data_read(opaque, addr, 1);
435 }
436
437 static uint32_t pci_data_readw(void* opaque, uint32_t addr)
438 {
439     return pci_data_read(opaque, addr, 2);
440 }
441
442 static uint32_t pci_data_readl(void* opaque, uint32_t addr)
443 {
444     return pci_data_read(opaque, addr, 4);
445 }
446
447 /* i440FX PCI bridge */
448
449 static void piix3_set_irq(PCIDevice *pci_dev, int irq_num, int level);
450
451 PCIBus *i440fx_init(void)
452 {
453     PCIBus *s;
454     PCIDevice *d;
455
456     s = pci_register_bus();
457     s->set_irq = piix3_set_irq;
458
459     register_ioport_write(0xcf8, 4, 4, pci_addr_writel, s);
460     register_ioport_read(0xcf8, 4, 4, pci_addr_readl, s);
461
462     register_ioport_write(0xcfc, 4, 1, pci_data_writeb, s);
463     register_ioport_write(0xcfc, 4, 2, pci_data_writew, s);
464     register_ioport_write(0xcfc, 4, 4, pci_data_writel, s);
465     register_ioport_read(0xcfc, 4, 1, pci_data_readb, s);
466     register_ioport_read(0xcfc, 4, 2, pci_data_readw, s);
467     register_ioport_read(0xcfc, 4, 4, pci_data_readl, s);
468
469     d = pci_register_device(s, "i440FX", sizeof(PCIDevice), 0, 
470                             NULL, NULL);
471
472     d->config[0x00] = 0x86; // vendor_id
473     d->config[0x01] = 0x80;
474     d->config[0x02] = 0x37; // device_id
475     d->config[0x03] = 0x12;
476     d->config[0x08] = 0x02; // revision
477     d->config[0x0a] = 0x00; // class_sub = host2pci
478     d->config[0x0b] = 0x06; // class_base = PCI_bridge
479     d->config[0x0e] = 0x00; // header_type
480     return s;
481 }
482
483 /* PIIX3 PCI to ISA bridge */
484
485 typedef struct PIIX3State {
486     PCIDevice dev;
487 } PIIX3State;
488
489 PIIX3State *piix3_state;
490
491 /* return the global irq number corresponding to a given device irq
492    pin. We could also use the bus number to have a more precise
493    mapping. */
494 static inline int pci_slot_get_pirq(PCIDevice *pci_dev, int irq_num)
495 {
496     int slot_addend;
497     slot_addend = (pci_dev->devfn >> 3) - 1;
498     return (irq_num + slot_addend) & 3;
499 }
500
501 static void piix3_set_irq(PCIDevice *pci_dev, int irq_num, int level)
502 {
503     int irq_index, shift, pic_irq, pic_level;
504     uint32_t *p;
505
506     irq_num = pci_slot_get_pirq(pci_dev, irq_num);
507     irq_index = pci_dev->irq_index;
508     p = &pci_irq_levels[irq_num][irq_index >> 5];
509     shift = (irq_index & 0x1f);
510     *p = (*p & ~(1 << shift)) | (level << shift);
511
512     /* now we change the pic irq level according to the piix irq mappings */
513     pic_irq = piix3_state->dev.config[0x60 + irq_num];
514     if (pic_irq < 16) {
515         /* the pic level is the logical OR of all the PCI irqs mapped
516            to it */
517         pic_level = 0;
518 #if (PCI_IRQ_WORDS == 2)
519         pic_level = ((pci_irq_levels[irq_num][0] | 
520                       pci_irq_levels[irq_num][1]) != 0);
521 #else
522         {
523             int i;
524             pic_level = 0;
525             for(i = 0; i < PCI_IRQ_WORDS; i++) {
526                 if (pci_irq_levels[irq_num][i]) {
527                     pic_level = 1;
528                     break;
529                 }
530             }
531         }
532 #endif
533         pic_set_irq(pic_irq, pic_level);
534     }
535 }
536
537 static void piix3_reset(PIIX3State *d)
538 {
539     uint8_t *pci_conf = d->dev.config;
540
541     pci_conf[0x04] = 0x07; // master, memory and I/O
542     pci_conf[0x05] = 0x00;
543     pci_conf[0x06] = 0x00;
544     pci_conf[0x07] = 0x02; // PCI_status_devsel_medium
545     pci_conf[0x4c] = 0x4d;
546     pci_conf[0x4e] = 0x03;
547     pci_conf[0x4f] = 0x00;
548     pci_conf[0x60] = 0x80;
549     pci_conf[0x69] = 0x02;
550     pci_conf[0x70] = 0x80;
551     pci_conf[0x76] = 0x0c;
552     pci_conf[0x77] = 0x0c;
553     pci_conf[0x78] = 0x02;
554     pci_conf[0x79] = 0x00;
555     pci_conf[0x80] = 0x00;
556     pci_conf[0x82] = 0x00;
557     pci_conf[0xa0] = 0x08;
558     pci_conf[0xa0] = 0x08;
559     pci_conf[0xa2] = 0x00;
560     pci_conf[0xa3] = 0x00;
561     pci_conf[0xa4] = 0x00;
562     pci_conf[0xa5] = 0x00;
563     pci_conf[0xa6] = 0x00;
564     pci_conf[0xa7] = 0x00;
565     pci_conf[0xa8] = 0x0f;
566     pci_conf[0xaa] = 0x00;
567     pci_conf[0xab] = 0x00;
568     pci_conf[0xac] = 0x00;
569     pci_conf[0xae] = 0x00;
570 }
571
572 void piix3_init(PCIBus *bus)
573 {
574     PIIX3State *d;
575     uint8_t *pci_conf;
576
577     d = (PIIX3State *)pci_register_device(bus, "PIIX3", sizeof(PIIX3State),
578                                           -1, NULL, NULL);
579     register_savevm("PIIX3", 0, 1, generic_pci_save, generic_pci_load, d);
580
581     piix3_state = d;
582     pci_conf = d->dev.config;
583
584     pci_conf[0x00] = 0x86; // Intel
585     pci_conf[0x01] = 0x80;
586     pci_conf[0x02] = 0x00; // 82371SB PIIX3 PCI-to-ISA bridge (Step A1)
587     pci_conf[0x03] = 0x70;
588     pci_conf[0x0a] = 0x01; // class_sub = PCI_ISA
589     pci_conf[0x0b] = 0x06; // class_base = PCI_bridge
590     pci_conf[0x0e] = 0x80; // header_type = PCI_multifunction, generic
591
592     piix3_reset(d);
593 }
594
595 /* PREP pci init */
596
597 static inline void set_config(PCIBus *s, target_phys_addr_t addr)
598 {
599     int devfn, i;
600
601     for(i = 0; i < 11; i++) {
602         if ((addr & (1 << (11 + i))) != 0)
603             break;
604     }
605     devfn = ((addr >> 8) & 7) | (i << 3);
606     s->config_reg = 0x80000000 | (addr & 0xfc) | (devfn << 8);
607 }
608
609 static void PPC_PCIIO_writeb (void *opaque, target_phys_addr_t addr, uint32_t val)
610 {
611     PCIBus *s = opaque;
612     set_config(s, addr);
613     pci_data_write(s, addr, val, 1);
614 }
615
616 static void PPC_PCIIO_writew (void *opaque, target_phys_addr_t addr, uint32_t val)
617 {
618     PCIBus *s = opaque;
619     set_config(s, addr);
620 #ifdef TARGET_WORDS_BIGENDIAN
621     val = bswap16(val);
622 #endif
623     pci_data_write(s, addr, val, 2);
624 }
625
626 static void PPC_PCIIO_writel (void *opaque, target_phys_addr_t addr, uint32_t val)
627 {
628     PCIBus *s = opaque;
629     set_config(s, addr);
630 #ifdef TARGET_WORDS_BIGENDIAN
631     val = bswap32(val);
632 #endif
633     pci_data_write(s, addr, val, 4);
634 }
635
636 static uint32_t PPC_PCIIO_readb (void *opaque, target_phys_addr_t addr)
637 {
638     PCIBus *s = opaque;
639     uint32_t val;
640     set_config(s, addr);
641     val = pci_data_read(s, addr, 1);
642     return val;
643 }
644
645 static uint32_t PPC_PCIIO_readw (void *opaque, target_phys_addr_t addr)
646 {
647     PCIBus *s = opaque;
648     uint32_t val;
649     set_config(s, addr);
650     val = pci_data_read(s, addr, 2);
651 #ifdef TARGET_WORDS_BIGENDIAN
652     val = bswap16(val);
653 #endif
654     return val;
655 }
656
657 static uint32_t PPC_PCIIO_readl (void *opaque, target_phys_addr_t addr)
658 {
659     PCIBus *s = opaque;
660     uint32_t val;
661     set_config(s, addr);
662     val = pci_data_read(s, addr, 4);
663 #ifdef TARGET_WORDS_BIGENDIAN
664     val = bswap32(val);
665 #endif
666     return val;
667 }
668
669 static CPUWriteMemoryFunc *PPC_PCIIO_write[] = {
670     &PPC_PCIIO_writeb,
671     &PPC_PCIIO_writew,
672     &PPC_PCIIO_writel,
673 };
674
675 static CPUReadMemoryFunc *PPC_PCIIO_read[] = {
676     &PPC_PCIIO_readb,
677     &PPC_PCIIO_readw,
678     &PPC_PCIIO_readl,
679 };
680
681 static void prep_set_irq(PCIDevice *d, int irq_num, int level)
682 {
683     /* XXX: we do not simulate the hardware - we rely on the BIOS to
684        set correctly for irq line field */
685     pic_set_irq(d->config[PCI_INTERRUPT_LINE], level);
686 }
687
688 PCIBus *pci_prep_init(void)
689 {
690     PCIBus *s;
691     PCIDevice *d;
692     int PPC_io_memory;
693
694     s = pci_register_bus();
695     s->set_irq = prep_set_irq;
696
697     register_ioport_write(0xcf8, 4, 4, pci_addr_writel, s);
698     register_ioport_read(0xcf8, 4, 4, pci_addr_readl, s);
699
700     register_ioport_write(0xcfc, 4, 1, pci_data_writeb, s);
701     register_ioport_write(0xcfc, 4, 2, pci_data_writew, s);
702     register_ioport_write(0xcfc, 4, 4, pci_data_writel, s);
703     register_ioport_read(0xcfc, 4, 1, pci_data_readb, s);
704     register_ioport_read(0xcfc, 4, 2, pci_data_readw, s);
705     register_ioport_read(0xcfc, 4, 4, pci_data_readl, s);
706
707     PPC_io_memory = cpu_register_io_memory(0, PPC_PCIIO_read, 
708                                            PPC_PCIIO_write, s);
709     cpu_register_physical_memory(0x80800000, 0x00400000, PPC_io_memory);
710
711     d = pci_register_device(s, "PREP PCI Bridge", sizeof(PCIDevice), 0,
712                             NULL, NULL);
713
714     /* XXX: put correct IDs */
715     d->config[0x00] = 0x11; // vendor_id
716     d->config[0x01] = 0x10;
717     d->config[0x02] = 0x26; // device_id
718     d->config[0x03] = 0x00;
719     d->config[0x08] = 0x02; // revision
720     d->config[0x0a] = 0x04; // class_sub = pci2pci
721     d->config[0x0b] = 0x06; // class_base = PCI_bridge
722     d->config[0x0e] = 0x01; // header_type
723     return s;
724 }
725
726
727 /* pmac pci init */
728
729 #if 0
730 /* Grackle PCI host */
731 static void pci_grackle_config_writel (void *opaque, target_phys_addr_t addr,
732                                        uint32_t val)
733 {
734     PCIBus *s = opaque;
735 #ifdef TARGET_WORDS_BIGENDIAN
736     val = bswap32(val);
737 #endif
738     s->config_reg = val;
739 }
740
741 static uint32_t pci_grackle_config_readl (void *opaque, target_phys_addr_t addr)
742 {
743     PCIBus *s = opaque;
744     uint32_t val;
745
746     val = s->config_reg;
747 #ifdef TARGET_WORDS_BIGENDIAN
748     val = bswap32(val);
749 #endif
750     return val;
751 }
752
753 static CPUWriteMemoryFunc *pci_grackle_config_write[] = {
754     &pci_grackle_config_writel,
755     &pci_grackle_config_writel,
756     &pci_grackle_config_writel,
757 };
758
759 static CPUReadMemoryFunc *pci_grackle_config_read[] = {
760     &pci_grackle_config_readl,
761     &pci_grackle_config_readl,
762     &pci_grackle_config_readl,
763 };
764
765 static void pci_grackle_writeb (void *opaque, target_phys_addr_t addr,
766                                 uint32_t val)
767 {
768     PCIBus *s = opaque;
769     pci_data_write(s, addr, val, 1);
770 }
771
772 static void pci_grackle_writew (void *opaque, target_phys_addr_t addr,
773                                 uint32_t val)
774 {
775     PCIBus *s = opaque;
776 #ifdef TARGET_WORDS_BIGENDIAN
777     val = bswap16(val);
778 #endif
779     pci_data_write(s, addr, val, 2);
780 }
781
782 static void pci_grackle_writel (void *opaque, target_phys_addr_t addr,
783                                 uint32_t val)
784 {
785     PCIBus *s = opaque;
786 #ifdef TARGET_WORDS_BIGENDIAN
787     val = bswap32(val);
788 #endif
789     pci_data_write(s, addr, val, 4);
790 }
791
792 static uint32_t pci_grackle_readb (void *opaque, target_phys_addr_t addr)
793 {
794     PCIBus *s = opaque;
795     uint32_t val;
796     val = pci_data_read(s, addr, 1);
797     return val;
798 }
799
800 static uint32_t pci_grackle_readw (void *opaque, target_phys_addr_t addr)
801 {
802     PCIBus *s = opaque;
803     uint32_t val;
804     val = pci_data_read(s, addr, 2);
805 #ifdef TARGET_WORDS_BIGENDIAN
806     val = bswap16(val);
807 #endif
808     return val;
809 }
810
811 static uint32_t pci_grackle_readl (void *opaque, target_phys_addr_t addr)
812 {
813     PCIBus *s = opaque;
814     uint32_t val;
815
816     val = pci_data_read(s, addr, 4);
817 #ifdef TARGET_WORDS_BIGENDIAN
818     val = bswap32(val);
819 #endif
820     return val;
821 }
822
823 static CPUWriteMemoryFunc *pci_grackle_write[] = {
824     &pci_grackle_writeb,
825     &pci_grackle_writew,
826     &pci_grackle_writel,
827 };
828
829 static CPUReadMemoryFunc *pci_grackle_read[] = {
830     &pci_grackle_readb,
831     &pci_grackle_readw,
832     &pci_grackle_readl,
833 };
834 #endif
835
836 /* Uninorth PCI host (for all Mac99 and newer machines */
837 static void pci_unin_main_config_writel (void *opaque, target_phys_addr_t addr,
838                                          uint32_t val)
839 {
840     PCIBus *s = opaque;
841     int i;
842
843 #ifdef TARGET_WORDS_BIGENDIAN
844     val = bswap32(val);
845 #endif
846
847     for (i = 11; i < 32; i++) {
848         if ((val & (1 << i)) != 0)
849             break;
850     }
851 #if 0
852     s->config_reg = 0x80000000 | (1 << 16) | (val & 0x7FC) | (i << 11);
853 #else
854     s->config_reg = 0x80000000 | (0 << 16) | (val & 0x7FC) | (i << 11);
855 #endif
856 }
857
858 static uint32_t pci_unin_main_config_readl (void *opaque,
859                                             target_phys_addr_t addr)
860 {
861     PCIBus *s = opaque;
862     uint32_t val;
863     int devfn;
864
865     devfn = (s->config_reg >> 8) & 0xFF;
866     val = (1 << (devfn >> 3)) | ((devfn & 0x07) << 8) | (s->config_reg & 0xFC);
867 #ifdef TARGET_WORDS_BIGENDIAN
868     val = bswap32(val);
869 #endif
870
871     return val;
872 }
873
874 static CPUWriteMemoryFunc *pci_unin_main_config_write[] = {
875     &pci_unin_main_config_writel,
876     &pci_unin_main_config_writel,
877     &pci_unin_main_config_writel,
878 };
879
880 static CPUReadMemoryFunc *pci_unin_main_config_read[] = {
881     &pci_unin_main_config_readl,
882     &pci_unin_main_config_readl,
883     &pci_unin_main_config_readl,
884 };
885
886 static void pci_unin_main_writeb (void *opaque, target_phys_addr_t addr,
887                                   uint32_t val)
888 {
889     PCIBus *s = opaque;
890     pci_data_write(s, addr & 7, val, 1);
891 }
892
893 static void pci_unin_main_writew (void *opaque, target_phys_addr_t addr,
894                                   uint32_t val)
895 {
896     PCIBus *s = opaque;
897 #ifdef TARGET_WORDS_BIGENDIAN
898     val = bswap16(val);
899 #endif
900     pci_data_write(s, addr & 7, val, 2);
901 }
902
903 static void pci_unin_main_writel (void *opaque, target_phys_addr_t addr,
904                                 uint32_t val)
905 {
906     PCIBus *s = opaque;
907 #ifdef TARGET_WORDS_BIGENDIAN
908     val = bswap32(val);
909 #endif
910     pci_data_write(s, addr & 7, val, 4);
911 }
912
913 static uint32_t pci_unin_main_readb (void *opaque, target_phys_addr_t addr)
914 {
915     PCIBus *s = opaque;
916     uint32_t val;
917
918     val = pci_data_read(s, addr & 7, 1);
919
920     return val;
921 }
922
923 static uint32_t pci_unin_main_readw (void *opaque, target_phys_addr_t addr)
924 {
925     PCIBus *s = opaque;
926     uint32_t val;
927
928     val = pci_data_read(s, addr & 7, 2);
929 #ifdef TARGET_WORDS_BIGENDIAN
930     val = bswap16(val);
931 #endif
932
933     return val;
934 }
935
936 static uint32_t pci_unin_main_readl (void *opaque, target_phys_addr_t addr)
937 {
938     PCIBus *s = opaque;
939     uint32_t val;
940
941     val = pci_data_read(s, addr, 4);
942 #ifdef TARGET_WORDS_BIGENDIAN
943     val = bswap32(val);
944 #endif
945
946     return val;
947 }
948
949 static CPUWriteMemoryFunc *pci_unin_main_write[] = {
950     &pci_unin_main_writeb,
951     &pci_unin_main_writew,
952     &pci_unin_main_writel,
953 };
954
955 static CPUReadMemoryFunc *pci_unin_main_read[] = {
956     &pci_unin_main_readb,
957     &pci_unin_main_readw,
958     &pci_unin_main_readl,
959 };
960
961 #if 0
962
963 static void pci_unin_config_writel (void *opaque, target_phys_addr_t addr,
964                                     uint32_t val)
965 {
966     PCIBus *s = opaque;
967
968 #ifdef TARGET_WORDS_BIGENDIAN
969     val = bswap32(val);
970 #endif
971     s->config_reg = 0x80000000 | (val & ~0x00000001);
972 }
973
974 static uint32_t pci_unin_config_readl (void *opaque,
975                                        target_phys_addr_t addr)
976 {
977     PCIBus *s = opaque;
978     uint32_t val;
979
980     val = (s->config_reg | 0x00000001) & ~0x80000000;
981 #ifdef TARGET_WORDS_BIGENDIAN
982     val = bswap32(val);
983 #endif
984
985     return val;
986 }
987
988 static CPUWriteMemoryFunc *pci_unin_config_write[] = {
989     &pci_unin_config_writel,
990     &pci_unin_config_writel,
991     &pci_unin_config_writel,
992 };
993
994 static CPUReadMemoryFunc *pci_unin_config_read[] = {
995     &pci_unin_config_readl,
996     &pci_unin_config_readl,
997     &pci_unin_config_readl,
998 };
999
1000 static void pci_unin_writeb (void *opaque, target_phys_addr_t addr,
1001                              uint32_t val)
1002 {
1003     PCIBus *s = opaque;
1004     pci_data_write(s, addr & 3, val, 1);
1005 }
1006
1007 static void pci_unin_writew (void *opaque, target_phys_addr_t addr,
1008                              uint32_t val)
1009 {
1010     PCIBus *s = opaque;
1011 #ifdef TARGET_WORDS_BIGENDIAN
1012     val = bswap16(val);
1013 #endif
1014     pci_data_write(s, addr & 3, val, 2);
1015 }
1016
1017 static void pci_unin_writel (void *opaque, target_phys_addr_t addr,
1018                              uint32_t val)
1019 {
1020     PCIBus *s = opaque;
1021 #ifdef TARGET_WORDS_BIGENDIAN
1022     val = bswap32(val);
1023 #endif
1024     pci_data_write(s, addr & 3, val, 4);
1025 }
1026
1027 static uint32_t pci_unin_readb (void *opaque, target_phys_addr_t addr)
1028 {
1029     PCIBus *s = opaque;
1030     uint32_t val;
1031
1032     val = pci_data_read(s, addr & 3, 1);
1033
1034     return val;
1035 }
1036
1037 static uint32_t pci_unin_readw (void *opaque, target_phys_addr_t addr)
1038 {
1039     PCIBus *s = opaque;
1040     uint32_t val;
1041
1042     val = pci_data_read(s, addr & 3, 2);
1043 #ifdef TARGET_WORDS_BIGENDIAN
1044     val = bswap16(val);
1045 #endif
1046
1047     return val;
1048 }
1049
1050 static uint32_t pci_unin_readl (void *opaque, target_phys_addr_t addr)
1051 {
1052     PCIBus *s = opaque;
1053     uint32_t val;
1054
1055     val = pci_data_read(s, addr & 3, 4);
1056 #ifdef TARGET_WORDS_BIGENDIAN
1057     val = bswap32(val);
1058 #endif
1059
1060     return val;
1061 }
1062
1063 static CPUWriteMemoryFunc *pci_unin_write[] = {
1064     &pci_unin_writeb,
1065     &pci_unin_writew,
1066     &pci_unin_writel,
1067 };
1068
1069 static CPUReadMemoryFunc *pci_unin_read[] = {
1070     &pci_unin_readb,
1071     &pci_unin_readw,
1072     &pci_unin_readl,
1073 };
1074 #endif
1075
1076 static void pmac_set_irq(PCIDevice *d, int irq_num, int level)
1077 {
1078     openpic_t *openpic;
1079     /* XXX: we do not simulate the hardware - we rely on the BIOS to
1080        set correctly for irq line field */
1081     openpic = d->bus->openpic;
1082 #ifdef TARGET_PPC
1083     if (openpic)
1084         openpic_set_irq(openpic, d->config[PCI_INTERRUPT_LINE], level);
1085 #endif
1086 }
1087
1088 void pci_pmac_set_openpic(PCIBus *bus, openpic_t *openpic)
1089 {
1090     bus->openpic = openpic;
1091 }
1092
1093 PCIBus *pci_pmac_init(void)
1094 {
1095     PCIBus *s;
1096     PCIDevice *d;
1097     int pci_mem_config, pci_mem_data;
1098
1099     /* Use values found on a real PowerMac */
1100     /* Uninorth main bus */
1101     s = pci_register_bus();
1102     s->set_irq = pmac_set_irq;
1103
1104     pci_mem_config = cpu_register_io_memory(0, pci_unin_main_config_read, 
1105                                             pci_unin_main_config_write, s);
1106     pci_mem_data = cpu_register_io_memory(0, pci_unin_main_read,
1107                                           pci_unin_main_write, s);
1108     cpu_register_physical_memory(0xf2800000, 0x1000, pci_mem_config);
1109     cpu_register_physical_memory(0xf2c00000, 0x1000, pci_mem_data);
1110     s->devfn_min = 11 << 3;
1111     d = pci_register_device(s, "Uni-north main", sizeof(PCIDevice), 
1112                             11 << 3, NULL, NULL);
1113     d->config[0x00] = 0x6b; // vendor_id : Apple
1114     d->config[0x01] = 0x10;
1115     d->config[0x02] = 0x1F; // device_id
1116     d->config[0x03] = 0x00;
1117     d->config[0x08] = 0x00; // revision
1118     d->config[0x0A] = 0x00; // class_sub = pci host
1119     d->config[0x0B] = 0x06; // class_base = PCI_bridge
1120     d->config[0x0C] = 0x08; // cache_line_size
1121     d->config[0x0D] = 0x10; // latency_timer
1122     d->config[0x0E] = 0x00; // header_type
1123     d->config[0x34] = 0x00; // capabilities_pointer
1124
1125 #if 0 // XXX: not activated as PPC BIOS doesn't handle mutiple buses properly
1126     /* pci-to-pci bridge */
1127     d = pci_register_device("Uni-north bridge", sizeof(PCIDevice), 0, 13 << 3,
1128                             NULL, NULL);
1129     d->config[0x00] = 0x11; // vendor_id : TI
1130     d->config[0x01] = 0x10;
1131     d->config[0x02] = 0x26; // device_id
1132     d->config[0x03] = 0x00;
1133     d->config[0x08] = 0x05; // revision
1134     d->config[0x0A] = 0x04; // class_sub = pci2pci
1135     d->config[0x0B] = 0x06; // class_base = PCI_bridge
1136     d->config[0x0C] = 0x08; // cache_line_size
1137     d->config[0x0D] = 0x20; // latency_timer
1138     d->config[0x0E] = 0x01; // header_type
1139
1140     d->config[0x18] = 0x01; // primary_bus
1141     d->config[0x19] = 0x02; // secondary_bus
1142     d->config[0x1A] = 0x02; // subordinate_bus
1143     d->config[0x1B] = 0x20; // secondary_latency_timer
1144     d->config[0x1C] = 0x11; // io_base
1145     d->config[0x1D] = 0x01; // io_limit
1146     d->config[0x20] = 0x00; // memory_base
1147     d->config[0x21] = 0x80;
1148     d->config[0x22] = 0x00; // memory_limit
1149     d->config[0x23] = 0x80;
1150     d->config[0x24] = 0x01; // prefetchable_memory_base
1151     d->config[0x25] = 0x80;
1152     d->config[0x26] = 0xF1; // prefectchable_memory_limit
1153     d->config[0x27] = 0x7F;
1154     // d->config[0x34] = 0xdc // capabilities_pointer
1155 #endif
1156 #if 0 // XXX: not needed for now
1157     /* Uninorth AGP bus */
1158     s = &pci_bridge[1];
1159     pci_mem_config = cpu_register_io_memory(0, pci_unin_config_read, 
1160                                             pci_unin_config_write, s);
1161     pci_mem_data = cpu_register_io_memory(0, pci_unin_read,
1162                                           pci_unin_write, s);
1163     cpu_register_physical_memory(0xf0800000, 0x1000, pci_mem_config);
1164     cpu_register_physical_memory(0xf0c00000, 0x1000, pci_mem_data);
1165
1166     d = pci_register_device("Uni-north AGP", sizeof(PCIDevice), 0, 11 << 3,
1167                             NULL, NULL);
1168     d->config[0x00] = 0x6b; // vendor_id : Apple
1169     d->config[0x01] = 0x10;
1170     d->config[0x02] = 0x20; // device_id
1171     d->config[0x03] = 0x00;
1172     d->config[0x08] = 0x00; // revision
1173     d->config[0x0A] = 0x00; // class_sub = pci host
1174     d->config[0x0B] = 0x06; // class_base = PCI_bridge
1175     d->config[0x0C] = 0x08; // cache_line_size
1176     d->config[0x0D] = 0x10; // latency_timer
1177     d->config[0x0E] = 0x00; // header_type
1178     //    d->config[0x34] = 0x80; // capabilities_pointer
1179 #endif
1180
1181 #if 0 // XXX: not needed for now
1182     /* Uninorth internal bus */
1183     s = &pci_bridge[2];
1184     pci_mem_config = cpu_register_io_memory(0, pci_unin_config_read, 
1185                                             pci_unin_config_write, s);
1186     pci_mem_data = cpu_register_io_memory(0, pci_unin_read,
1187                                           pci_unin_write, s);
1188     cpu_register_physical_memory(0xf4800000, 0x1000, pci_mem_config);
1189     cpu_register_physical_memory(0xf4c00000, 0x1000, pci_mem_data);
1190
1191     d = pci_register_device("Uni-north internal", sizeof(PCIDevice),
1192                             3, 11 << 3, NULL, NULL);
1193     d->config[0x00] = 0x6b; // vendor_id : Apple
1194     d->config[0x01] = 0x10;
1195     d->config[0x02] = 0x1E; // device_id
1196     d->config[0x03] = 0x00;
1197     d->config[0x08] = 0x00; // revision
1198     d->config[0x0A] = 0x00; // class_sub = pci host
1199     d->config[0x0B] = 0x06; // class_base = PCI_bridge
1200     d->config[0x0C] = 0x08; // cache_line_size
1201     d->config[0x0D] = 0x10; // latency_timer
1202     d->config[0x0E] = 0x00; // header_type
1203     d->config[0x34] = 0x00; // capabilities_pointer
1204 #endif
1205
1206 #if 0 // Grackle ?
1207     /* same values as PearPC - check this */
1208     d->config[0x00] = 0x11; // vendor_id
1209     d->config[0x01] = 0x10;
1210     d->config[0x02] = 0x26; // device_id
1211     d->config[0x03] = 0x00;
1212     d->config[0x08] = 0x02; // revision
1213     d->config[0x0a] = 0x04; // class_sub = pci2pci
1214     d->config[0x0b] = 0x06; // class_base = PCI_bridge
1215     d->config[0x0e] = 0x01; // header_type
1216
1217     d->config[0x18] = 0x0;  // primary_bus
1218     d->config[0x19] = 0x1;  // secondary_bus
1219     d->config[0x1a] = 0x1;  // subordinate_bus
1220     d->config[0x1c] = 0x10; // io_base
1221     d->config[0x1d] = 0x20; // io_limit
1222     
1223     d->config[0x20] = 0x80; // memory_base
1224     d->config[0x21] = 0x80;
1225     d->config[0x22] = 0x90; // memory_limit
1226     d->config[0x23] = 0x80;
1227     
1228     d->config[0x24] = 0x00; // prefetchable_memory_base
1229     d->config[0x25] = 0x84;
1230     d->config[0x26] = 0x00; // prefetchable_memory_limit
1231     d->config[0x27] = 0x85;
1232 #endif
1233     return s;
1234 }
1235
1236 /***********************************************************/
1237 /* generic PCI irq support */
1238
1239 /* 0 <= irq_num <= 3. level must be 0 or 1 */
1240 void pci_set_irq(PCIDevice *pci_dev, int irq_num, int level)
1241 {
1242     PCIBus *bus = pci_dev->bus;
1243     bus->set_irq(pci_dev, irq_num, level);
1244 }
1245
1246 /***********************************************************/
1247 /* monitor info on PCI */
1248
1249 static void pci_info_device(PCIDevice *d)
1250 {
1251     int i, class;
1252     PCIIORegion *r;
1253
1254     term_printf("  Bus %2d, device %3d, function %d:\n",
1255            d->bus->bus_num, d->devfn >> 3, d->devfn & 7);
1256     class = le16_to_cpu(*((uint16_t *)(d->config + PCI_CLASS_DEVICE)));
1257     term_printf("    ");
1258     switch(class) {
1259     case 0x0101:
1260         term_printf("IDE controller");
1261         break;
1262     case 0x0200:
1263         term_printf("Ethernet controller");
1264         break;
1265     case 0x0300:
1266         term_printf("VGA controller");
1267         break;
1268     default:
1269         term_printf("Class %04x", class);
1270         break;
1271     }
1272     term_printf(": PCI device %04x:%04x\n",
1273            le16_to_cpu(*((uint16_t *)(d->config + PCI_VENDOR_ID))),
1274            le16_to_cpu(*((uint16_t *)(d->config + PCI_DEVICE_ID))));
1275
1276     if (d->config[PCI_INTERRUPT_PIN] != 0) {
1277         term_printf("      IRQ %d.\n", d->config[PCI_INTERRUPT_LINE]);
1278     }
1279     for(i = 0;i < PCI_NUM_REGIONS; i++) {
1280         r = &d->io_regions[i];
1281         if (r->size != 0) {
1282             term_printf("      BAR%d: ", i);
1283             if (r->type & PCI_ADDRESS_SPACE_IO) {
1284                 term_printf("I/O at 0x%04x [0x%04x].\n", 
1285                        r->addr, r->addr + r->size - 1);
1286             } else {
1287                 term_printf("32 bit memory at 0x%08x [0x%08x].\n", 
1288                        r->addr, r->addr + r->size - 1);
1289             }
1290         }
1291     }
1292 }
1293
1294 void pci_info(void)
1295 {
1296     PCIBus *bus = first_bus;
1297     PCIDevice *d;
1298     int devfn;
1299     
1300     if (bus) {
1301         for(devfn = 0; devfn < 256; devfn++) {
1302             d = bus->devices[devfn];
1303             if (d)
1304                 pci_info_device(d);
1305         }
1306     }
1307 }
1308
1309 /***********************************************************/
1310 /* XXX: the following should be moved to the PC BIOS */
1311
1312 static __attribute__((unused)) uint32_t isa_inb(uint32_t addr)
1313 {
1314     return cpu_inb(cpu_single_env, addr);
1315 }
1316
1317 static void isa_outb(uint32_t val, uint32_t addr)
1318 {
1319     cpu_outb(cpu_single_env, addr, val);
1320 }
1321
1322 static __attribute__((unused)) uint32_t isa_inw(uint32_t addr)
1323 {
1324     return cpu_inw(cpu_single_env, addr);
1325 }
1326
1327 static __attribute__((unused)) void isa_outw(uint32_t val, uint32_t addr)
1328 {
1329     cpu_outw(cpu_single_env, addr, val);
1330 }
1331
1332 static __attribute__((unused)) uint32_t isa_inl(uint32_t addr)
1333 {
1334     return cpu_inl(cpu_single_env, addr);
1335 }
1336
1337 static __attribute__((unused)) void isa_outl(uint32_t val, uint32_t addr)
1338 {
1339     cpu_outl(cpu_single_env, addr, val);
1340 }
1341
1342 static void pci_config_writel(PCIDevice *d, uint32_t addr, uint32_t val)
1343 {
1344     PCIBus *s = d->bus;
1345     s->config_reg = 0x80000000 | (s->bus_num << 16) | 
1346         (d->devfn << 8) | addr;
1347     pci_data_write(s, 0, val, 4);
1348 }
1349
1350 static void pci_config_writew(PCIDevice *d, uint32_t addr, uint32_t val)
1351 {
1352     PCIBus *s = d->bus;
1353     s->config_reg = 0x80000000 | (s->bus_num << 16) | 
1354         (d->devfn << 8) | (addr & ~3);
1355     pci_data_write(s, addr & 3, val, 2);
1356 }
1357
1358 static void pci_config_writeb(PCIDevice *d, uint32_t addr, uint32_t val)
1359 {
1360     PCIBus *s = d->bus;
1361     s->config_reg = 0x80000000 | (s->bus_num << 16) | 
1362         (d->devfn << 8) | (addr & ~3);
1363     pci_data_write(s, addr & 3, val, 1);
1364 }
1365
1366 static __attribute__((unused)) uint32_t pci_config_readl(PCIDevice *d, uint32_t addr)
1367 {
1368     PCIBus *s = d->bus;
1369     s->config_reg = 0x80000000 | (s->bus_num << 16) | 
1370         (d->devfn << 8) | addr;
1371     return pci_data_read(s, 0, 4);
1372 }
1373
1374 static uint32_t pci_config_readw(PCIDevice *d, uint32_t addr)
1375 {
1376     PCIBus *s = d->bus;
1377     s->config_reg = 0x80000000 | (s->bus_num << 16) | 
1378         (d->devfn << 8) | (addr & ~3);
1379     return pci_data_read(s, addr & 3, 2);
1380 }
1381
1382 static uint32_t pci_config_readb(PCIDevice *d, uint32_t addr)
1383 {
1384     PCIBus *s = d->bus;
1385     s->config_reg = 0x80000000 | (s->bus_num << 16) | 
1386         (d->devfn << 8) | (addr & ~3);
1387     return pci_data_read(s, addr & 3, 1);
1388 }
1389
1390 static uint32_t pci_bios_io_addr;
1391 static uint32_t pci_bios_mem_addr;
1392 /* host irqs corresponding to PCI irqs A-D */
1393 static uint8_t pci_irqs[4] = { 11, 9, 11, 9 };
1394
1395 static void pci_set_io_region_addr(PCIDevice *d, int region_num, uint32_t addr)
1396 {
1397     PCIIORegion *r;
1398     uint16_t cmd;
1399     uint32_t ofs;
1400
1401     if ( region_num == PCI_ROM_SLOT ) {
1402         ofs = 0x30;
1403     }else{
1404         ofs = 0x10 + region_num * 4;
1405     }
1406
1407     pci_config_writel(d, ofs, addr);
1408     r = &d->io_regions[region_num];
1409
1410     /* enable memory mappings */
1411     cmd = pci_config_readw(d, PCI_COMMAND);
1412     if ( region_num == PCI_ROM_SLOT )
1413         cmd |= 2;
1414     else if (r->type & PCI_ADDRESS_SPACE_IO)
1415         cmd |= 1;
1416     else
1417         cmd |= 2;
1418     pci_config_writew(d, PCI_COMMAND, cmd);
1419 }
1420
1421 static void pci_bios_init_device(PCIDevice *d)
1422 {
1423     int class;
1424     PCIIORegion *r;
1425     uint32_t *paddr;
1426     int i, pin, pic_irq, vendor_id, device_id;
1427
1428     class = pci_config_readw(d, PCI_CLASS_DEVICE);
1429     vendor_id = pci_config_readw(d, PCI_VENDOR_ID);
1430     device_id = pci_config_readw(d, PCI_DEVICE_ID);
1431     switch(class) {
1432     case 0x0101:
1433         if (vendor_id == 0x8086 && device_id == 0x7010) {
1434             /* PIIX3 IDE */
1435             pci_config_writew(d, 0x40, 0x8000); // enable IDE0
1436             pci_config_writew(d, 0x42, 0x8000); // enable IDE1
1437             goto default_map;
1438         } else {
1439             /* IDE: we map it as in ISA mode */
1440             pci_set_io_region_addr(d, 0, 0x1f0);
1441             pci_set_io_region_addr(d, 1, 0x3f4);
1442             pci_set_io_region_addr(d, 2, 0x170);
1443             pci_set_io_region_addr(d, 3, 0x374);
1444         }
1445         break;
1446     case 0x0300:
1447         if (vendor_id != 0x1234)
1448             goto default_map;
1449         /* VGA: map frame buffer to default Bochs VBE address */
1450         pci_set_io_region_addr(d, 0, 0xE0000000);
1451         break;
1452     case 0x0800:
1453         /* PIC */
1454         vendor_id = pci_config_readw(d, PCI_VENDOR_ID);
1455         device_id = pci_config_readw(d, PCI_DEVICE_ID);
1456         if (vendor_id == 0x1014) {
1457             /* IBM */
1458             if (device_id == 0x0046 || device_id == 0xFFFF) {
1459                 /* MPIC & MPIC2 */
1460                 pci_set_io_region_addr(d, 0, 0x80800000 + 0x00040000);
1461             }
1462         }
1463         break;
1464     case 0xff00:
1465         if (vendor_id == 0x0106b &&
1466             (device_id == 0x0017 || device_id == 0x0022)) {
1467             /* macio bridge */
1468             pci_set_io_region_addr(d, 0, 0x80800000);
1469         }
1470         break;
1471     default:
1472     default_map:
1473         /* default memory mappings */
1474         for(i = 0; i < PCI_NUM_REGIONS; i++) {
1475             r = &d->io_regions[i];
1476             if (r->size) {
1477                 if (r->type & PCI_ADDRESS_SPACE_IO)
1478                     paddr = &pci_bios_io_addr;
1479                 else
1480                     paddr = &pci_bios_mem_addr;
1481                 *paddr = (*paddr + r->size - 1) & ~(r->size - 1);
1482                 pci_set_io_region_addr(d, i, *paddr);
1483                 *paddr += r->size;
1484             }
1485         }
1486         break;
1487     }
1488
1489     /* map the interrupt */
1490     pin = pci_config_readb(d, PCI_INTERRUPT_PIN);
1491     if (pin != 0) {
1492         pin = pci_slot_get_pirq(d, pin - 1);
1493         pic_irq = pci_irqs[pin];
1494         pci_config_writeb(d, PCI_INTERRUPT_LINE, pic_irq);
1495     }
1496 }
1497
1498 /*
1499  * This function initializes the PCI devices as a normal PCI BIOS
1500  * would do. It is provided just in case the BIOS has no support for
1501  * PCI.
1502  */
1503 void pci_bios_init(void)
1504 {
1505     PCIBus *bus;
1506     PCIDevice *d;
1507     int devfn, i, irq;
1508     uint8_t elcr[2];
1509
1510     pci_bios_io_addr = 0xc000;
1511     pci_bios_mem_addr = 0xf0000000;
1512
1513     /* activate IRQ mappings */
1514     elcr[0] = 0x00;
1515     elcr[1] = 0x00;
1516     for(i = 0; i < 4; i++) {
1517         irq = pci_irqs[i];
1518         /* set to trigger level */
1519         elcr[irq >> 3] |= (1 << (irq & 7));
1520         /* activate irq remapping in PIIX */
1521         pci_config_writeb((PCIDevice *)piix3_state, 0x60 + i, irq);
1522     }
1523     isa_outb(elcr[0], 0x4d0);
1524     isa_outb(elcr[1], 0x4d1);
1525
1526     bus = first_bus;
1527     if (bus) {
1528         for(devfn = 0; devfn < 256; devfn++) {
1529             d = bus->devices[devfn];
1530             if (d)
1531                 pci_bios_init_device(d);
1532         }
1533     }
1534 }