4 * Copyright (c) 2004 Fabrice Bellard
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:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
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
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 */
39 /* just used for simpler irq handling. */
40 #define PCI_DEVICES_MAX 64
41 #define PCI_IRQ_WORDS ((PCI_DEVICES_MAX + 31) / 32)
46 void (*set_irq
)(PCIDevice
*pci_dev
, int irq_num
, int level
);
47 uint32_t config_reg
; /* XXX: suppress */
49 SetIRQFunc
*low_set_irq
;
51 PCIDevice
*devices
[256];
54 target_phys_addr_t pci_mem_base
;
55 static int pci_irq_index
;
56 static uint32_t pci_irq_levels
[4][PCI_IRQ_WORDS
];
57 static PCIBus
*first_bus
;
59 static PCIBus
*pci_register_bus(void)
62 bus
= qemu_mallocz(sizeof(PCIBus
));
67 void generic_pci_save(QEMUFile
* f
, void *opaque
)
69 PCIDevice
* s
=(PCIDevice
*)opaque
;
71 qemu_put_buffer(f
, s
->config
, 256);
74 int generic_pci_load(QEMUFile
* f
, void *opaque
, int version_id
)
76 PCIDevice
* s
=(PCIDevice
*)opaque
;
81 qemu_get_buffer(f
, s
->config
, 256);
85 /* -1 for devfn means auto assign */
86 PCIDevice
*pci_register_device(PCIBus
*bus
, const char *name
,
87 int instance_size
, int devfn
,
88 PCIConfigReadFunc
*config_read
,
89 PCIConfigWriteFunc
*config_write
)
93 if (pci_irq_index
>= PCI_DEVICES_MAX
)
97 for(devfn
= bus
->devfn_min
; devfn
< 256; devfn
+= 8) {
98 if (!bus
->devices
[devfn
])
104 pci_dev
= qemu_mallocz(instance_size
);
108 pci_dev
->devfn
= devfn
;
109 pstrcpy(pci_dev
->name
, sizeof(pci_dev
->name
), name
);
112 config_read
= pci_default_read_config
;
114 config_write
= pci_default_write_config
;
115 pci_dev
->config_read
= config_read
;
116 pci_dev
->config_write
= config_write
;
117 pci_dev
->irq_index
= pci_irq_index
++;
118 bus
->devices
[devfn
] = pci_dev
;
122 void pci_register_io_region(PCIDevice
*pci_dev
, int region_num
,
123 uint32_t size
, int type
,
124 PCIMapIORegionFunc
*map_func
)
128 if ((unsigned int)region_num
>= PCI_NUM_REGIONS
)
130 r
= &pci_dev
->io_regions
[region_num
];
134 r
->map_func
= map_func
;
137 static void pci_addr_writel(void* opaque
, uint32_t addr
, uint32_t val
)
143 static uint32_t pci_addr_readl(void* opaque
, uint32_t addr
)
146 return s
->config_reg
;
149 static void pci_update_mappings(PCIDevice
*d
)
153 uint32_t last_addr
, new_addr
, config_ofs
;
155 cmd
= le16_to_cpu(*(uint16_t *)(d
->config
+ PCI_COMMAND
));
156 for(i
= 0; i
< PCI_NUM_REGIONS
; i
++) {
157 r
= &d
->io_regions
[i
];
158 if (i
== PCI_ROM_SLOT
) {
161 config_ofs
= 0x10 + i
* 4;
164 if (r
->type
& PCI_ADDRESS_SPACE_IO
) {
165 if (cmd
& PCI_COMMAND_IO
) {
166 new_addr
= le32_to_cpu(*(uint32_t *)(d
->config
+
168 new_addr
= new_addr
& ~(r
->size
- 1);
169 last_addr
= new_addr
+ r
->size
- 1;
170 /* NOTE: we have only 64K ioports on PC */
171 if (last_addr
<= new_addr
|| new_addr
== 0 ||
172 last_addr
>= 0x10000) {
179 if (cmd
& PCI_COMMAND_MEMORY
) {
180 new_addr
= le32_to_cpu(*(uint32_t *)(d
->config
+
182 /* the ROM slot has a specific enable bit */
183 if (i
== PCI_ROM_SLOT
&& !(new_addr
& 1))
185 new_addr
= new_addr
& ~(r
->size
- 1);
186 last_addr
= new_addr
+ r
->size
- 1;
187 /* NOTE: we do not support wrapping */
188 /* XXX: as we cannot support really dynamic
189 mappings, we handle specific values as invalid
191 if (last_addr
<= new_addr
|| new_addr
== 0 ||
200 /* now do the real mapping */
201 if (new_addr
!= r
->addr
) {
203 if (r
->type
& PCI_ADDRESS_SPACE_IO
) {
205 /* NOTE: specific hack for IDE in PC case:
206 only one byte must be mapped. */
207 class = d
->config
[0x0a] | (d
->config
[0x0b] << 8);
208 if (class == 0x0101 && r
->size
== 4) {
209 isa_unassign_ioport(r
->addr
+ 2, 1);
211 isa_unassign_ioport(r
->addr
, r
->size
);
214 cpu_register_physical_memory(r
->addr
+ pci_mem_base
,
221 r
->map_func(d
, i
, r
->addr
, r
->size
, r
->type
);
228 uint32_t pci_default_read_config(PCIDevice
*d
,
229 uint32_t address
, int len
)
234 val
= d
->config
[address
];
237 val
= le16_to_cpu(*(uint16_t *)(d
->config
+ address
));
241 val
= le32_to_cpu(*(uint32_t *)(d
->config
+ address
));
247 void pci_default_write_config(PCIDevice
*d
,
248 uint32_t address
, uint32_t val
, int len
)
253 if (len
== 4 && ((address
>= 0x10 && address
< 0x10 + 4 * 6) ||
254 (address
>= 0x30 && address
< 0x34))) {
258 if ( address
>= 0x30 ) {
261 reg
= (address
- 0x10) >> 2;
263 r
= &d
->io_regions
[reg
];
266 /* compute the stored value */
267 if (reg
== PCI_ROM_SLOT
) {
268 /* keep ROM enable bit */
269 val
&= (~(r
->size
- 1)) | 1;
271 val
&= ~(r
->size
- 1);
274 *(uint32_t *)(d
->config
+ address
) = cpu_to_le32(val
);
275 pci_update_mappings(d
);
279 /* not efficient, but simple */
281 for(i
= 0; i
< len
; i
++) {
282 /* default read/write accesses */
283 switch(d
->config
[0x0e]) {
296 case 0x10 ... 0x27: /* base */
297 case 0x30 ... 0x33: /* rom */
318 case 0x38 ... 0x3b: /* rom */
329 d
->config
[addr
] = val
;
336 if (end
> PCI_COMMAND
&& address
< (PCI_COMMAND
+ 2)) {
337 /* if the command register is modified, we must modify the mappings */
338 pci_update_mappings(d
);
342 static void pci_data_write(void *opaque
, uint32_t addr
,
343 uint32_t val
, int len
)
347 int config_addr
, bus_num
;
349 #if defined(DEBUG_PCI) && 0
350 printf("pci_data_write: addr=%08x val=%08x len=%d\n",
351 s
->config_reg
, val
, len
);
353 if (!(s
->config_reg
& (1 << 31))) {
356 bus_num
= (s
->config_reg
>> 16) & 0xff;
359 pci_dev
= s
->devices
[(s
->config_reg
>> 8) & 0xff];
362 config_addr
= (s
->config_reg
& 0xfc) | (addr
& 3);
363 #if defined(DEBUG_PCI)
364 printf("pci_config_write: %s: addr=%02x val=%08x len=%d\n",
365 pci_dev
->name
, config_addr
, val
, len
);
367 pci_dev
->config_write(pci_dev
, config_addr
, val
, len
);
370 static uint32_t pci_data_read(void *opaque
, uint32_t addr
,
375 int config_addr
, bus_num
;
378 if (!(s
->config_reg
& (1 << 31)))
380 bus_num
= (s
->config_reg
>> 16) & 0xff;
383 pci_dev
= s
->devices
[(s
->config_reg
>> 8) & 0xff];
400 config_addr
= (s
->config_reg
& 0xfc) | (addr
& 3);
401 val
= pci_dev
->config_read(pci_dev
, config_addr
, len
);
402 #if defined(DEBUG_PCI)
403 printf("pci_config_read: %s: addr=%02x val=%08x len=%d\n",
404 pci_dev
->name
, config_addr
, val
, len
);
407 #if defined(DEBUG_PCI) && 0
408 printf("pci_data_read: addr=%08x val=%08x len=%d\n",
409 s
->config_reg
, val
, len
);
414 static void pci_data_writeb(void* opaque
, uint32_t addr
, uint32_t val
)
416 pci_data_write(opaque
, addr
, val
, 1);
419 static void pci_data_writew(void* opaque
, uint32_t addr
, uint32_t val
)
421 pci_data_write(opaque
, addr
, val
, 2);
424 static void pci_data_writel(void* opaque
, uint32_t addr
, uint32_t val
)
426 pci_data_write(opaque
, addr
, val
, 4);
429 static uint32_t pci_data_readb(void* opaque
, uint32_t addr
)
431 return pci_data_read(opaque
, addr
, 1);
434 static uint32_t pci_data_readw(void* opaque
, uint32_t addr
)
436 return pci_data_read(opaque
, addr
, 2);
439 static uint32_t pci_data_readl(void* opaque
, uint32_t addr
)
441 return pci_data_read(opaque
, addr
, 4);
444 /* i440FX PCI bridge */
446 static void piix3_set_irq(PCIDevice
*pci_dev
, int irq_num
, int level
);
448 PCIBus
*i440fx_init(void)
453 s
= pci_register_bus();
454 s
->set_irq
= piix3_set_irq
;
456 register_ioport_write(0xcf8, 4, 4, pci_addr_writel
, s
);
457 register_ioport_read(0xcf8, 4, 4, pci_addr_readl
, s
);
459 register_ioport_write(0xcfc, 4, 1, pci_data_writeb
, s
);
460 register_ioport_write(0xcfc, 4, 2, pci_data_writew
, s
);
461 register_ioport_write(0xcfc, 4, 4, pci_data_writel
, s
);
462 register_ioport_read(0xcfc, 4, 1, pci_data_readb
, s
);
463 register_ioport_read(0xcfc, 4, 2, pci_data_readw
, s
);
464 register_ioport_read(0xcfc, 4, 4, pci_data_readl
, s
);
466 d
= pci_register_device(s
, "i440FX", sizeof(PCIDevice
), 0,
469 d
->config
[0x00] = 0x86; // vendor_id
470 d
->config
[0x01] = 0x80;
471 d
->config
[0x02] = 0x37; // device_id
472 d
->config
[0x03] = 0x12;
473 d
->config
[0x08] = 0x02; // revision
474 d
->config
[0x0a] = 0x00; // class_sub = host2pci
475 d
->config
[0x0b] = 0x06; // class_base = PCI_bridge
476 d
->config
[0x0e] = 0x00; // header_type
480 /* PIIX3 PCI to ISA bridge */
482 typedef struct PIIX3State
{
486 PIIX3State
*piix3_state
;
488 /* return the global irq number corresponding to a given device irq
489 pin. We could also use the bus number to have a more precise
491 static inline int pci_slot_get_pirq(PCIDevice
*pci_dev
, int irq_num
)
494 slot_addend
= (pci_dev
->devfn
>> 3) - 1;
495 return (irq_num
+ slot_addend
) & 3;
498 static inline int get_pci_irq_level(int irq_num
)
501 #if (PCI_IRQ_WORDS == 2)
502 pic_level
= ((pci_irq_levels
[irq_num
][0] |
503 pci_irq_levels
[irq_num
][1]) != 0);
508 for(i
= 0; i
< PCI_IRQ_WORDS
; i
++) {
509 if (pci_irq_levels
[irq_num
][i
]) {
519 static void piix3_set_irq(PCIDevice
*pci_dev
, int irq_num
, int level
)
521 int irq_index
, shift
, pic_irq
, pic_level
;
524 irq_num
= pci_slot_get_pirq(pci_dev
, irq_num
);
525 irq_index
= pci_dev
->irq_index
;
526 p
= &pci_irq_levels
[irq_num
][irq_index
>> 5];
527 shift
= (irq_index
& 0x1f);
528 *p
= (*p
& ~(1 << shift
)) | (level
<< shift
);
530 /* now we change the pic irq level according to the piix irq mappings */
532 pic_irq
= piix3_state
->dev
.config
[0x60 + irq_num
];
534 /* the pic level is the logical OR of all the PCI irqs mapped
537 if (pic_irq
== piix3_state
->dev
.config
[0x60])
538 pic_level
|= get_pci_irq_level(0);
539 if (pic_irq
== piix3_state
->dev
.config
[0x61])
540 pic_level
|= get_pci_irq_level(1);
541 if (pic_irq
== piix3_state
->dev
.config
[0x62])
542 pic_level
|= get_pci_irq_level(2);
543 if (pic_irq
== piix3_state
->dev
.config
[0x63])
544 pic_level
|= get_pci_irq_level(3);
545 pic_set_irq(pic_irq
, pic_level
);
549 static void piix3_reset(PIIX3State
*d
)
551 uint8_t *pci_conf
= d
->dev
.config
;
553 pci_conf
[0x04] = 0x07; // master, memory and I/O
554 pci_conf
[0x05] = 0x00;
555 pci_conf
[0x06] = 0x00;
556 pci_conf
[0x07] = 0x02; // PCI_status_devsel_medium
557 pci_conf
[0x4c] = 0x4d;
558 pci_conf
[0x4e] = 0x03;
559 pci_conf
[0x4f] = 0x00;
560 pci_conf
[0x60] = 0x80;
561 pci_conf
[0x69] = 0x02;
562 pci_conf
[0x70] = 0x80;
563 pci_conf
[0x76] = 0x0c;
564 pci_conf
[0x77] = 0x0c;
565 pci_conf
[0x78] = 0x02;
566 pci_conf
[0x79] = 0x00;
567 pci_conf
[0x80] = 0x00;
568 pci_conf
[0x82] = 0x00;
569 pci_conf
[0xa0] = 0x08;
570 pci_conf
[0xa0] = 0x08;
571 pci_conf
[0xa2] = 0x00;
572 pci_conf
[0xa3] = 0x00;
573 pci_conf
[0xa4] = 0x00;
574 pci_conf
[0xa5] = 0x00;
575 pci_conf
[0xa6] = 0x00;
576 pci_conf
[0xa7] = 0x00;
577 pci_conf
[0xa8] = 0x0f;
578 pci_conf
[0xaa] = 0x00;
579 pci_conf
[0xab] = 0x00;
580 pci_conf
[0xac] = 0x00;
581 pci_conf
[0xae] = 0x00;
584 void piix3_init(PCIBus
*bus
)
589 d
= (PIIX3State
*)pci_register_device(bus
, "PIIX3", sizeof(PIIX3State
),
591 register_savevm("PIIX3", 0, 1, generic_pci_save
, generic_pci_load
, d
);
594 pci_conf
= d
->dev
.config
;
596 pci_conf
[0x00] = 0x86; // Intel
597 pci_conf
[0x01] = 0x80;
598 pci_conf
[0x02] = 0x00; // 82371SB PIIX3 PCI-to-ISA bridge (Step A1)
599 pci_conf
[0x03] = 0x70;
600 pci_conf
[0x0a] = 0x01; // class_sub = PCI_ISA
601 pci_conf
[0x0b] = 0x06; // class_base = PCI_bridge
602 pci_conf
[0x0e] = 0x80; // header_type = PCI_multifunction, generic
609 static inline void set_config(PCIBus
*s
, target_phys_addr_t addr
)
613 for(i
= 0; i
< 11; i
++) {
614 if ((addr
& (1 << (11 + i
))) != 0)
617 devfn
= ((addr
>> 8) & 7) | (i
<< 3);
618 s
->config_reg
= 0x80000000 | (addr
& 0xfc) | (devfn
<< 8);
621 static void PPC_PCIIO_writeb (void *opaque
, target_phys_addr_t addr
, uint32_t val
)
625 pci_data_write(s
, addr
, val
, 1);
628 static void PPC_PCIIO_writew (void *opaque
, target_phys_addr_t addr
, uint32_t val
)
632 #ifdef TARGET_WORDS_BIGENDIAN
635 pci_data_write(s
, addr
, val
, 2);
638 static void PPC_PCIIO_writel (void *opaque
, target_phys_addr_t addr
, uint32_t val
)
642 #ifdef TARGET_WORDS_BIGENDIAN
645 pci_data_write(s
, addr
, val
, 4);
648 static uint32_t PPC_PCIIO_readb (void *opaque
, target_phys_addr_t addr
)
653 val
= pci_data_read(s
, addr
, 1);
657 static uint32_t PPC_PCIIO_readw (void *opaque
, target_phys_addr_t addr
)
662 val
= pci_data_read(s
, addr
, 2);
663 #ifdef TARGET_WORDS_BIGENDIAN
669 static uint32_t PPC_PCIIO_readl (void *opaque
, target_phys_addr_t addr
)
674 val
= pci_data_read(s
, addr
, 4);
675 #ifdef TARGET_WORDS_BIGENDIAN
681 static CPUWriteMemoryFunc
*PPC_PCIIO_write
[] = {
687 static CPUReadMemoryFunc
*PPC_PCIIO_read
[] = {
693 static void prep_set_irq(PCIDevice
*d
, int irq_num
, int level
)
695 /* XXX: we do not simulate the hardware - we rely on the BIOS to
696 set correctly for irq line field */
697 pic_set_irq(d
->config
[PCI_INTERRUPT_LINE
], level
);
700 PCIBus
*pci_prep_init(void)
706 s
= pci_register_bus();
707 s
->set_irq
= prep_set_irq
;
709 register_ioport_write(0xcf8, 4, 4, pci_addr_writel
, s
);
710 register_ioport_read(0xcf8, 4, 4, pci_addr_readl
, s
);
712 register_ioport_write(0xcfc, 4, 1, pci_data_writeb
, s
);
713 register_ioport_write(0xcfc, 4, 2, pci_data_writew
, s
);
714 register_ioport_write(0xcfc, 4, 4, pci_data_writel
, s
);
715 register_ioport_read(0xcfc, 4, 1, pci_data_readb
, s
);
716 register_ioport_read(0xcfc, 4, 2, pci_data_readw
, s
);
717 register_ioport_read(0xcfc, 4, 4, pci_data_readl
, s
);
719 PPC_io_memory
= cpu_register_io_memory(0, PPC_PCIIO_read
,
721 cpu_register_physical_memory(0x80800000, 0x00400000, PPC_io_memory
);
723 /* PCI host bridge */
724 d
= pci_register_device(s
, "PREP Host Bridge - Motorola Raven",
725 sizeof(PCIDevice
), 0, NULL
, NULL
);
726 d
->config
[0x00] = 0x57; // vendor_id : Motorola
727 d
->config
[0x01] = 0x10;
728 d
->config
[0x02] = 0x01; // device_id : Raven
729 d
->config
[0x03] = 0x48;
730 d
->config
[0x08] = 0x00; // revision
731 d
->config
[0x0A] = 0x00; // class_sub = pci host
732 d
->config
[0x0B] = 0x06; // class_base = PCI_bridge
733 d
->config
[0x0C] = 0x08; // cache_line_size
734 d
->config
[0x0D] = 0x10; // latency_timer
735 d
->config
[0x0E] = 0x00; // header_type
736 d
->config
[0x34] = 0x00; // capabilities_pointer
742 /* Grackle PCI host */
743 static void pci_grackle_config_writel (void *opaque
, target_phys_addr_t addr
,
747 #ifdef TARGET_WORDS_BIGENDIAN
753 static uint32_t pci_grackle_config_readl (void *opaque
, target_phys_addr_t addr
)
759 #ifdef TARGET_WORDS_BIGENDIAN
765 static CPUWriteMemoryFunc
*pci_grackle_config_write
[] = {
766 &pci_grackle_config_writel
,
767 &pci_grackle_config_writel
,
768 &pci_grackle_config_writel
,
771 static CPUReadMemoryFunc
*pci_grackle_config_read
[] = {
772 &pci_grackle_config_readl
,
773 &pci_grackle_config_readl
,
774 &pci_grackle_config_readl
,
777 static void pci_grackle_writeb (void *opaque
, target_phys_addr_t addr
,
781 pci_data_write(s
, addr
, val
, 1);
784 static void pci_grackle_writew (void *opaque
, target_phys_addr_t addr
,
788 #ifdef TARGET_WORDS_BIGENDIAN
791 pci_data_write(s
, addr
, val
, 2);
794 static void pci_grackle_writel (void *opaque
, target_phys_addr_t addr
,
798 #ifdef TARGET_WORDS_BIGENDIAN
801 pci_data_write(s
, addr
, val
, 4);
804 static uint32_t pci_grackle_readb (void *opaque
, target_phys_addr_t addr
)
808 val
= pci_data_read(s
, addr
, 1);
812 static uint32_t pci_grackle_readw (void *opaque
, target_phys_addr_t addr
)
816 val
= pci_data_read(s
, addr
, 2);
817 #ifdef TARGET_WORDS_BIGENDIAN
823 static uint32_t pci_grackle_readl (void *opaque
, target_phys_addr_t addr
)
828 val
= pci_data_read(s
, addr
, 4);
829 #ifdef TARGET_WORDS_BIGENDIAN
835 static CPUWriteMemoryFunc
*pci_grackle_write
[] = {
841 static CPUReadMemoryFunc
*pci_grackle_read
[] = {
847 void pci_set_pic(PCIBus
*bus
, SetIRQFunc
*set_irq
, void *irq_opaque
)
849 bus
->low_set_irq
= set_irq
;
850 bus
->irq_opaque
= irq_opaque
;
853 /* XXX: we do not simulate the hardware - we rely on the BIOS to
854 set correctly for irq line field */
855 static void pci_set_irq_simple(PCIDevice
*d
, int irq_num
, int level
)
858 s
->low_set_irq(s
->irq_opaque
, d
->config
[PCI_INTERRUPT_LINE
], level
);
861 PCIBus
*pci_grackle_init(uint32_t base
)
865 int pci_mem_config
, pci_mem_data
;
867 s
= pci_register_bus();
868 s
->set_irq
= pci_set_irq_simple
;
870 pci_mem_config
= cpu_register_io_memory(0, pci_grackle_config_read
,
871 pci_grackle_config_write
, s
);
872 pci_mem_data
= cpu_register_io_memory(0, pci_grackle_read
,
873 pci_grackle_write
, s
);
874 cpu_register_physical_memory(base
, 0x1000, pci_mem_config
);
875 cpu_register_physical_memory(base
+ 0x00200000, 0x1000, pci_mem_data
);
876 d
= pci_register_device(s
, "Grackle host bridge", sizeof(PCIDevice
),
878 d
->config
[0x00] = 0x57; // vendor_id
879 d
->config
[0x01] = 0x10;
880 d
->config
[0x02] = 0x02; // device_id
881 d
->config
[0x03] = 0x00;
882 d
->config
[0x08] = 0x00; // revision
883 d
->config
[0x09] = 0x01;
884 d
->config
[0x0a] = 0x00; // class_sub = host
885 d
->config
[0x0b] = 0x06; // class_base = PCI_bridge
886 d
->config
[0x0e] = 0x00; // header_type
888 d
->config
[0x18] = 0x00; // primary_bus
889 d
->config
[0x19] = 0x01; // secondary_bus
890 d
->config
[0x1a] = 0x00; // subordinate_bus
891 d
->config
[0x1c] = 0x00;
892 d
->config
[0x1d] = 0x00;
894 d
->config
[0x20] = 0x00; // memory_base
895 d
->config
[0x21] = 0x00;
896 d
->config
[0x22] = 0x01; // memory_limit
897 d
->config
[0x23] = 0x00;
899 d
->config
[0x24] = 0x00; // prefetchable_memory_base
900 d
->config
[0x25] = 0x00;
901 d
->config
[0x26] = 0x00; // prefetchable_memory_limit
902 d
->config
[0x27] = 0x00;
905 /* PCI2PCI bridge same values as PearPC - check this */
906 d
->config
[0x00] = 0x11; // vendor_id
907 d
->config
[0x01] = 0x10;
908 d
->config
[0x02] = 0x26; // device_id
909 d
->config
[0x03] = 0x00;
910 d
->config
[0x08] = 0x02; // revision
911 d
->config
[0x0a] = 0x04; // class_sub = pci2pci
912 d
->config
[0x0b] = 0x06; // class_base = PCI_bridge
913 d
->config
[0x0e] = 0x01; // header_type
915 d
->config
[0x18] = 0x0; // primary_bus
916 d
->config
[0x19] = 0x1; // secondary_bus
917 d
->config
[0x1a] = 0x1; // subordinate_bus
918 d
->config
[0x1c] = 0x10; // io_base
919 d
->config
[0x1d] = 0x20; // io_limit
921 d
->config
[0x20] = 0x80; // memory_base
922 d
->config
[0x21] = 0x80;
923 d
->config
[0x22] = 0x90; // memory_limit
924 d
->config
[0x23] = 0x80;
926 d
->config
[0x24] = 0x00; // prefetchable_memory_base
927 d
->config
[0x25] = 0x84;
928 d
->config
[0x26] = 0x00; // prefetchable_memory_limit
929 d
->config
[0x27] = 0x85;
934 /* Uninorth PCI host (for all Mac99 and newer machines */
935 static void pci_unin_main_config_writel (void *opaque
, target_phys_addr_t addr
,
941 #ifdef TARGET_WORDS_BIGENDIAN
945 for (i
= 11; i
< 32; i
++) {
946 if ((val
& (1 << i
)) != 0)
950 s
->config_reg
= 0x80000000 | (1 << 16) | (val
& 0x7FC) | (i
<< 11);
952 s
->config_reg
= 0x80000000 | (0 << 16) | (val
& 0x7FC) | (i
<< 11);
956 static uint32_t pci_unin_main_config_readl (void *opaque
,
957 target_phys_addr_t addr
)
963 devfn
= (s
->config_reg
>> 8) & 0xFF;
964 val
= (1 << (devfn
>> 3)) | ((devfn
& 0x07) << 8) | (s
->config_reg
& 0xFC);
965 #ifdef TARGET_WORDS_BIGENDIAN
972 static CPUWriteMemoryFunc
*pci_unin_main_config_write
[] = {
973 &pci_unin_main_config_writel
,
974 &pci_unin_main_config_writel
,
975 &pci_unin_main_config_writel
,
978 static CPUReadMemoryFunc
*pci_unin_main_config_read
[] = {
979 &pci_unin_main_config_readl
,
980 &pci_unin_main_config_readl
,
981 &pci_unin_main_config_readl
,
984 static void pci_unin_main_writeb (void *opaque
, target_phys_addr_t addr
,
988 pci_data_write(s
, addr
& 7, val
, 1);
991 static void pci_unin_main_writew (void *opaque
, target_phys_addr_t addr
,
995 #ifdef TARGET_WORDS_BIGENDIAN
998 pci_data_write(s
, addr
& 7, val
, 2);
1001 static void pci_unin_main_writel (void *opaque
, target_phys_addr_t addr
,
1005 #ifdef TARGET_WORDS_BIGENDIAN
1008 pci_data_write(s
, addr
& 7, val
, 4);
1011 static uint32_t pci_unin_main_readb (void *opaque
, target_phys_addr_t addr
)
1016 val
= pci_data_read(s
, addr
& 7, 1);
1021 static uint32_t pci_unin_main_readw (void *opaque
, target_phys_addr_t addr
)
1026 val
= pci_data_read(s
, addr
& 7, 2);
1027 #ifdef TARGET_WORDS_BIGENDIAN
1034 static uint32_t pci_unin_main_readl (void *opaque
, target_phys_addr_t addr
)
1039 val
= pci_data_read(s
, addr
, 4);
1040 #ifdef TARGET_WORDS_BIGENDIAN
1047 static CPUWriteMemoryFunc
*pci_unin_main_write
[] = {
1048 &pci_unin_main_writeb
,
1049 &pci_unin_main_writew
,
1050 &pci_unin_main_writel
,
1053 static CPUReadMemoryFunc
*pci_unin_main_read
[] = {
1054 &pci_unin_main_readb
,
1055 &pci_unin_main_readw
,
1056 &pci_unin_main_readl
,
1061 static void pci_unin_config_writel (void *opaque
, target_phys_addr_t addr
,
1066 #ifdef TARGET_WORDS_BIGENDIAN
1069 s
->config_reg
= 0x80000000 | (val
& ~0x00000001);
1072 static uint32_t pci_unin_config_readl (void *opaque
,
1073 target_phys_addr_t addr
)
1078 val
= (s
->config_reg
| 0x00000001) & ~0x80000000;
1079 #ifdef TARGET_WORDS_BIGENDIAN
1086 static CPUWriteMemoryFunc
*pci_unin_config_write
[] = {
1087 &pci_unin_config_writel
,
1088 &pci_unin_config_writel
,
1089 &pci_unin_config_writel
,
1092 static CPUReadMemoryFunc
*pci_unin_config_read
[] = {
1093 &pci_unin_config_readl
,
1094 &pci_unin_config_readl
,
1095 &pci_unin_config_readl
,
1098 static void pci_unin_writeb (void *opaque
, target_phys_addr_t addr
,
1102 pci_data_write(s
, addr
& 3, val
, 1);
1105 static void pci_unin_writew (void *opaque
, target_phys_addr_t addr
,
1109 #ifdef TARGET_WORDS_BIGENDIAN
1112 pci_data_write(s
, addr
& 3, val
, 2);
1115 static void pci_unin_writel (void *opaque
, target_phys_addr_t addr
,
1119 #ifdef TARGET_WORDS_BIGENDIAN
1122 pci_data_write(s
, addr
& 3, val
, 4);
1125 static uint32_t pci_unin_readb (void *opaque
, target_phys_addr_t addr
)
1130 val
= pci_data_read(s
, addr
& 3, 1);
1135 static uint32_t pci_unin_readw (void *opaque
, target_phys_addr_t addr
)
1140 val
= pci_data_read(s
, addr
& 3, 2);
1141 #ifdef TARGET_WORDS_BIGENDIAN
1148 static uint32_t pci_unin_readl (void *opaque
, target_phys_addr_t addr
)
1153 val
= pci_data_read(s
, addr
& 3, 4);
1154 #ifdef TARGET_WORDS_BIGENDIAN
1161 static CPUWriteMemoryFunc
*pci_unin_write
[] = {
1167 static CPUReadMemoryFunc
*pci_unin_read
[] = {
1174 PCIBus
*pci_pmac_init(void)
1178 int pci_mem_config
, pci_mem_data
;
1180 /* Use values found on a real PowerMac */
1181 /* Uninorth main bus */
1182 s
= pci_register_bus();
1183 s
->set_irq
= pci_set_irq_simple
;
1185 pci_mem_config
= cpu_register_io_memory(0, pci_unin_main_config_read
,
1186 pci_unin_main_config_write
, s
);
1187 pci_mem_data
= cpu_register_io_memory(0, pci_unin_main_read
,
1188 pci_unin_main_write
, s
);
1189 cpu_register_physical_memory(0xf2800000, 0x1000, pci_mem_config
);
1190 cpu_register_physical_memory(0xf2c00000, 0x1000, pci_mem_data
);
1191 s
->devfn_min
= 11 << 3;
1192 d
= pci_register_device(s
, "Uni-north main", sizeof(PCIDevice
),
1193 11 << 3, NULL
, NULL
);
1194 d
->config
[0x00] = 0x6b; // vendor_id : Apple
1195 d
->config
[0x01] = 0x10;
1196 d
->config
[0x02] = 0x1F; // device_id
1197 d
->config
[0x03] = 0x00;
1198 d
->config
[0x08] = 0x00; // revision
1199 d
->config
[0x0A] = 0x00; // class_sub = pci host
1200 d
->config
[0x0B] = 0x06; // class_base = PCI_bridge
1201 d
->config
[0x0C] = 0x08; // cache_line_size
1202 d
->config
[0x0D] = 0x10; // latency_timer
1203 d
->config
[0x0E] = 0x00; // header_type
1204 d
->config
[0x34] = 0x00; // capabilities_pointer
1206 #if 0 // XXX: not activated as PPC BIOS doesn't handle mutiple buses properly
1207 /* pci-to-pci bridge */
1208 d
= pci_register_device("Uni-north bridge", sizeof(PCIDevice
), 0, 13 << 3,
1210 d
->config
[0x00] = 0x11; // vendor_id : TI
1211 d
->config
[0x01] = 0x10;
1212 d
->config
[0x02] = 0x26; // device_id
1213 d
->config
[0x03] = 0x00;
1214 d
->config
[0x08] = 0x05; // revision
1215 d
->config
[0x0A] = 0x04; // class_sub = pci2pci
1216 d
->config
[0x0B] = 0x06; // class_base = PCI_bridge
1217 d
->config
[0x0C] = 0x08; // cache_line_size
1218 d
->config
[0x0D] = 0x20; // latency_timer
1219 d
->config
[0x0E] = 0x01; // header_type
1221 d
->config
[0x18] = 0x01; // primary_bus
1222 d
->config
[0x19] = 0x02; // secondary_bus
1223 d
->config
[0x1A] = 0x02; // subordinate_bus
1224 d
->config
[0x1B] = 0x20; // secondary_latency_timer
1225 d
->config
[0x1C] = 0x11; // io_base
1226 d
->config
[0x1D] = 0x01; // io_limit
1227 d
->config
[0x20] = 0x00; // memory_base
1228 d
->config
[0x21] = 0x80;
1229 d
->config
[0x22] = 0x00; // memory_limit
1230 d
->config
[0x23] = 0x80;
1231 d
->config
[0x24] = 0x01; // prefetchable_memory_base
1232 d
->config
[0x25] = 0x80;
1233 d
->config
[0x26] = 0xF1; // prefectchable_memory_limit
1234 d
->config
[0x27] = 0x7F;
1235 // d->config[0x34] = 0xdc // capabilities_pointer
1237 #if 0 // XXX: not needed for now
1238 /* Uninorth AGP bus */
1240 pci_mem_config
= cpu_register_io_memory(0, pci_unin_config_read
,
1241 pci_unin_config_write
, s
);
1242 pci_mem_data
= cpu_register_io_memory(0, pci_unin_read
,
1244 cpu_register_physical_memory(0xf0800000, 0x1000, pci_mem_config
);
1245 cpu_register_physical_memory(0xf0c00000, 0x1000, pci_mem_data
);
1247 d
= pci_register_device("Uni-north AGP", sizeof(PCIDevice
), 0, 11 << 3,
1249 d
->config
[0x00] = 0x6b; // vendor_id : Apple
1250 d
->config
[0x01] = 0x10;
1251 d
->config
[0x02] = 0x20; // device_id
1252 d
->config
[0x03] = 0x00;
1253 d
->config
[0x08] = 0x00; // revision
1254 d
->config
[0x0A] = 0x00; // class_sub = pci host
1255 d
->config
[0x0B] = 0x06; // class_base = PCI_bridge
1256 d
->config
[0x0C] = 0x08; // cache_line_size
1257 d
->config
[0x0D] = 0x10; // latency_timer
1258 d
->config
[0x0E] = 0x00; // header_type
1259 // d->config[0x34] = 0x80; // capabilities_pointer
1262 #if 0 // XXX: not needed for now
1263 /* Uninorth internal bus */
1265 pci_mem_config
= cpu_register_io_memory(0, pci_unin_config_read
,
1266 pci_unin_config_write
, s
);
1267 pci_mem_data
= cpu_register_io_memory(0, pci_unin_read
,
1269 cpu_register_physical_memory(0xf4800000, 0x1000, pci_mem_config
);
1270 cpu_register_physical_memory(0xf4c00000, 0x1000, pci_mem_data
);
1272 d
= pci_register_device("Uni-north internal", sizeof(PCIDevice
),
1273 3, 11 << 3, NULL
, NULL
);
1274 d
->config
[0x00] = 0x6b; // vendor_id : Apple
1275 d
->config
[0x01] = 0x10;
1276 d
->config
[0x02] = 0x1E; // device_id
1277 d
->config
[0x03] = 0x00;
1278 d
->config
[0x08] = 0x00; // revision
1279 d
->config
[0x0A] = 0x00; // class_sub = pci host
1280 d
->config
[0x0B] = 0x06; // class_base = PCI_bridge
1281 d
->config
[0x0C] = 0x08; // cache_line_size
1282 d
->config
[0x0D] = 0x10; // latency_timer
1283 d
->config
[0x0E] = 0x00; // header_type
1284 d
->config
[0x34] = 0x00; // capabilities_pointer
1289 /* Ultrasparc APB PCI host */
1290 static void pci_apb_config_writel (void *opaque
, target_phys_addr_t addr
,
1296 for (i
= 11; i
< 32; i
++) {
1297 if ((val
& (1 << i
)) != 0)
1300 s
->config_reg
= 0x80000000 | (1 << 16) | (val
& 0x7FC) | (i
<< 11);
1303 static uint32_t pci_apb_config_readl (void *opaque
,
1304 target_phys_addr_t addr
)
1310 devfn
= (s
->config_reg
>> 8) & 0xFF;
1311 val
= (1 << (devfn
>> 3)) | ((devfn
& 0x07) << 8) | (s
->config_reg
& 0xFC);
1315 static CPUWriteMemoryFunc
*pci_apb_config_write
[] = {
1316 &pci_apb_config_writel
,
1317 &pci_apb_config_writel
,
1318 &pci_apb_config_writel
,
1321 static CPUReadMemoryFunc
*pci_apb_config_read
[] = {
1322 &pci_apb_config_readl
,
1323 &pci_apb_config_readl
,
1324 &pci_apb_config_readl
,
1327 static void apb_config_writel (void *opaque
, target_phys_addr_t addr
,
1330 //PCIBus *s = opaque;
1332 switch (addr
& 0x3f) {
1333 case 0x00: // Control/Status
1336 case 0x20: // Diagnostic
1337 case 0x28: // Target address space
1344 static uint32_t apb_config_readl (void *opaque
,
1345 target_phys_addr_t addr
)
1347 //PCIBus *s = opaque;
1350 switch (addr
& 0x3f) {
1351 case 0x00: // Control/Status
1354 case 0x20: // Diagnostic
1355 case 0x28: // Target address space
1364 static CPUWriteMemoryFunc
*apb_config_write
[] = {
1370 static CPUReadMemoryFunc
*apb_config_read
[] = {
1376 static void pci_apb_writeb (void *opaque
, target_phys_addr_t addr
,
1381 pci_data_write(s
, addr
& 7, val
, 1);
1384 static void pci_apb_writew (void *opaque
, target_phys_addr_t addr
,
1389 pci_data_write(s
, addr
& 7, val
, 2);
1392 static void pci_apb_writel (void *opaque
, target_phys_addr_t addr
,
1397 pci_data_write(s
, addr
& 7, val
, 4);
1400 static uint32_t pci_apb_readb (void *opaque
, target_phys_addr_t addr
)
1405 val
= pci_data_read(s
, addr
& 7, 1);
1409 static uint32_t pci_apb_readw (void *opaque
, target_phys_addr_t addr
)
1414 val
= pci_data_read(s
, addr
& 7, 2);
1418 static uint32_t pci_apb_readl (void *opaque
, target_phys_addr_t addr
)
1423 val
= pci_data_read(s
, addr
, 4);
1427 static CPUWriteMemoryFunc
*pci_apb_write
[] = {
1433 static CPUReadMemoryFunc
*pci_apb_read
[] = {
1439 static void pci_apb_iowriteb (void *opaque
, target_phys_addr_t addr
,
1442 cpu_outb(NULL
, addr
& 0xffff, val
);
1445 static void pci_apb_iowritew (void *opaque
, target_phys_addr_t addr
,
1448 cpu_outw(NULL
, addr
& 0xffff, val
);
1451 static void pci_apb_iowritel (void *opaque
, target_phys_addr_t addr
,
1454 cpu_outl(NULL
, addr
& 0xffff, val
);
1457 static uint32_t pci_apb_ioreadb (void *opaque
, target_phys_addr_t addr
)
1461 val
= cpu_inb(NULL
, addr
& 0xffff);
1465 static uint32_t pci_apb_ioreadw (void *opaque
, target_phys_addr_t addr
)
1469 val
= cpu_inw(NULL
, addr
& 0xffff);
1473 static uint32_t pci_apb_ioreadl (void *opaque
, target_phys_addr_t addr
)
1477 val
= cpu_inl(NULL
, addr
& 0xffff);
1481 static CPUWriteMemoryFunc
*pci_apb_iowrite
[] = {
1487 static CPUReadMemoryFunc
*pci_apb_ioread
[] = {
1493 PCIBus
*pci_apb_init(target_ulong special_base
, target_ulong mem_base
)
1497 int pci_mem_config
, pci_mem_data
, apb_config
, pci_ioport
;
1499 /* Ultrasparc APB main bus */
1500 s
= pci_register_bus();
1501 s
->set_irq
= pci_set_irq_simple
;
1503 pci_mem_config
= cpu_register_io_memory(0, pci_apb_config_read
,
1504 pci_apb_config_write
, s
);
1505 apb_config
= cpu_register_io_memory(0, apb_config_read
,
1506 apb_config_write
, s
);
1507 pci_mem_data
= cpu_register_io_memory(0, pci_apb_read
,
1509 pci_ioport
= cpu_register_io_memory(0, pci_apb_ioread
,
1510 pci_apb_iowrite
, s
);
1512 cpu_register_physical_memory(special_base
+ 0x2000ULL
, 0x40, apb_config
);
1513 cpu_register_physical_memory(special_base
+ 0x1000000ULL
, 0x10, pci_mem_config
);
1514 cpu_register_physical_memory(special_base
+ 0x2000000ULL
, 0x10000, pci_ioport
);
1515 cpu_register_physical_memory(mem_base
, 0x10000000, pci_mem_data
); // XXX size should be 4G-prom
1517 d
= pci_register_device(s
, "Advanced PCI Bus", sizeof(PCIDevice
),
1519 d
->config
[0x00] = 0x8e; // vendor_id : Sun
1520 d
->config
[0x01] = 0x10;
1521 d
->config
[0x02] = 0x00; // device_id
1522 d
->config
[0x03] = 0xa0;
1523 d
->config
[0x04] = 0x06; // command = bus master, pci mem
1524 d
->config
[0x05] = 0x00;
1525 d
->config
[0x06] = 0xa0; // status = fast back-to-back, 66MHz, no error
1526 d
->config
[0x07] = 0x03; // status = medium devsel
1527 d
->config
[0x08] = 0x00; // revision
1528 d
->config
[0x09] = 0x00; // programming i/f
1529 d
->config
[0x0A] = 0x00; // class_sub = pci host
1530 d
->config
[0x0B] = 0x06; // class_base = PCI_bridge
1531 d
->config
[0x0D] = 0x10; // latency_timer
1532 d
->config
[0x0E] = 0x00; // header_type
1536 /***********************************************************/
1537 /* generic PCI irq support */
1539 /* 0 <= irq_num <= 3. level must be 0 or 1 */
1540 void pci_set_irq(PCIDevice
*pci_dev
, int irq_num
, int level
)
1542 PCIBus
*bus
= pci_dev
->bus
;
1543 bus
->set_irq(pci_dev
, irq_num
, level
);
1546 /***********************************************************/
1547 /* monitor info on PCI */
1549 static void pci_info_device(PCIDevice
*d
)
1554 term_printf(" Bus %2d, device %3d, function %d:\n",
1555 d
->bus
->bus_num
, d
->devfn
>> 3, d
->devfn
& 7);
1556 class = le16_to_cpu(*((uint16_t *)(d
->config
+ PCI_CLASS_DEVICE
)));
1560 term_printf("IDE controller");
1563 term_printf("Ethernet controller");
1566 term_printf("VGA controller");
1569 term_printf("Class %04x", class);
1572 term_printf(": PCI device %04x:%04x\n",
1573 le16_to_cpu(*((uint16_t *)(d
->config
+ PCI_VENDOR_ID
))),
1574 le16_to_cpu(*((uint16_t *)(d
->config
+ PCI_DEVICE_ID
))));
1576 if (d
->config
[PCI_INTERRUPT_PIN
] != 0) {
1577 term_printf(" IRQ %d.\n", d
->config
[PCI_INTERRUPT_LINE
]);
1579 for(i
= 0;i
< PCI_NUM_REGIONS
; i
++) {
1580 r
= &d
->io_regions
[i
];
1582 term_printf(" BAR%d: ", i
);
1583 if (r
->type
& PCI_ADDRESS_SPACE_IO
) {
1584 term_printf("I/O at 0x%04x [0x%04x].\n",
1585 r
->addr
, r
->addr
+ r
->size
- 1);
1587 term_printf("32 bit memory at 0x%08x [0x%08x].\n",
1588 r
->addr
, r
->addr
+ r
->size
- 1);
1596 PCIBus
*bus
= first_bus
;
1601 for(devfn
= 0; devfn
< 256; devfn
++) {
1602 d
= bus
->devices
[devfn
];
1609 /***********************************************************/
1610 /* XXX: the following should be moved to the PC BIOS */
1612 static __attribute__((unused
)) uint32_t isa_inb(uint32_t addr
)
1614 return cpu_inb(NULL
, addr
);
1617 static void isa_outb(uint32_t val
, uint32_t addr
)
1619 cpu_outb(NULL
, addr
, val
);
1622 static __attribute__((unused
)) uint32_t isa_inw(uint32_t addr
)
1624 return cpu_inw(NULL
, addr
);
1627 static __attribute__((unused
)) void isa_outw(uint32_t val
, uint32_t addr
)
1629 cpu_outw(NULL
, addr
, val
);
1632 static __attribute__((unused
)) uint32_t isa_inl(uint32_t addr
)
1634 return cpu_inl(NULL
, addr
);
1637 static __attribute__((unused
)) void isa_outl(uint32_t val
, uint32_t addr
)
1639 cpu_outl(NULL
, addr
, val
);
1642 static void pci_config_writel(PCIDevice
*d
, uint32_t addr
, uint32_t val
)
1645 s
->config_reg
= 0x80000000 | (s
->bus_num
<< 16) |
1646 (d
->devfn
<< 8) | addr
;
1647 pci_data_write(s
, 0, val
, 4);
1650 static void pci_config_writew(PCIDevice
*d
, uint32_t addr
, uint32_t val
)
1653 s
->config_reg
= 0x80000000 | (s
->bus_num
<< 16) |
1654 (d
->devfn
<< 8) | (addr
& ~3);
1655 pci_data_write(s
, addr
& 3, val
, 2);
1658 static void pci_config_writeb(PCIDevice
*d
, uint32_t addr
, uint32_t val
)
1661 s
->config_reg
= 0x80000000 | (s
->bus_num
<< 16) |
1662 (d
->devfn
<< 8) | (addr
& ~3);
1663 pci_data_write(s
, addr
& 3, val
, 1);
1666 static __attribute__((unused
)) uint32_t pci_config_readl(PCIDevice
*d
, uint32_t addr
)
1669 s
->config_reg
= 0x80000000 | (s
->bus_num
<< 16) |
1670 (d
->devfn
<< 8) | addr
;
1671 return pci_data_read(s
, 0, 4);
1674 static uint32_t pci_config_readw(PCIDevice
*d
, uint32_t addr
)
1677 s
->config_reg
= 0x80000000 | (s
->bus_num
<< 16) |
1678 (d
->devfn
<< 8) | (addr
& ~3);
1679 return pci_data_read(s
, addr
& 3, 2);
1682 static uint32_t pci_config_readb(PCIDevice
*d
, uint32_t addr
)
1685 s
->config_reg
= 0x80000000 | (s
->bus_num
<< 16) |
1686 (d
->devfn
<< 8) | (addr
& ~3);
1687 return pci_data_read(s
, addr
& 3, 1);
1690 static uint32_t pci_bios_io_addr
;
1691 static uint32_t pci_bios_mem_addr
;
1692 /* host irqs corresponding to PCI irqs A-D */
1693 static uint8_t pci_irqs
[4] = { 11, 9, 11, 9 };
1695 static void pci_set_io_region_addr(PCIDevice
*d
, int region_num
, uint32_t addr
)
1701 if ( region_num
== PCI_ROM_SLOT
) {
1704 ofs
= 0x10 + region_num
* 4;
1707 pci_config_writel(d
, ofs
, addr
);
1708 r
= &d
->io_regions
[region_num
];
1710 /* enable memory mappings */
1711 cmd
= pci_config_readw(d
, PCI_COMMAND
);
1712 if ( region_num
== PCI_ROM_SLOT
)
1714 else if (r
->type
& PCI_ADDRESS_SPACE_IO
)
1718 pci_config_writew(d
, PCI_COMMAND
, cmd
);
1721 static void pci_bios_init_device(PCIDevice
*d
)
1726 int i
, pin
, pic_irq
, vendor_id
, device_id
;
1728 class = pci_config_readw(d
, PCI_CLASS_DEVICE
);
1729 vendor_id
= pci_config_readw(d
, PCI_VENDOR_ID
);
1730 device_id
= pci_config_readw(d
, PCI_DEVICE_ID
);
1733 if (vendor_id
== 0x8086 && device_id
== 0x7010) {
1735 pci_config_writew(d
, 0x40, 0x8000); // enable IDE0
1736 pci_config_writew(d
, 0x42, 0x8000); // enable IDE1
1739 /* IDE: we map it as in ISA mode */
1740 pci_set_io_region_addr(d
, 0, 0x1f0);
1741 pci_set_io_region_addr(d
, 1, 0x3f4);
1742 pci_set_io_region_addr(d
, 2, 0x170);
1743 pci_set_io_region_addr(d
, 3, 0x374);
1747 if (vendor_id
!= 0x1234)
1749 /* VGA: map frame buffer to default Bochs VBE address */
1750 pci_set_io_region_addr(d
, 0, 0xE0000000);
1754 vendor_id
= pci_config_readw(d
, PCI_VENDOR_ID
);
1755 device_id
= pci_config_readw(d
, PCI_DEVICE_ID
);
1756 if (vendor_id
== 0x1014) {
1758 if (device_id
== 0x0046 || device_id
== 0xFFFF) {
1760 pci_set_io_region_addr(d
, 0, 0x80800000 + 0x00040000);
1765 if (vendor_id
== 0x0106b &&
1766 (device_id
== 0x0017 || device_id
== 0x0022)) {
1768 pci_set_io_region_addr(d
, 0, 0x80800000);
1773 /* default memory mappings */
1774 for(i
= 0; i
< PCI_NUM_REGIONS
; i
++) {
1775 r
= &d
->io_regions
[i
];
1777 if (r
->type
& PCI_ADDRESS_SPACE_IO
)
1778 paddr
= &pci_bios_io_addr
;
1780 paddr
= &pci_bios_mem_addr
;
1781 *paddr
= (*paddr
+ r
->size
- 1) & ~(r
->size
- 1);
1782 pci_set_io_region_addr(d
, i
, *paddr
);
1789 /* map the interrupt */
1790 pin
= pci_config_readb(d
, PCI_INTERRUPT_PIN
);
1792 pin
= pci_slot_get_pirq(d
, pin
- 1);
1793 pic_irq
= pci_irqs
[pin
];
1794 pci_config_writeb(d
, PCI_INTERRUPT_LINE
, pic_irq
);
1799 * This function initializes the PCI devices as a normal PCI BIOS
1800 * would do. It is provided just in case the BIOS has no support for
1803 void pci_bios_init(void)
1810 pci_bios_io_addr
= 0xc000;
1811 pci_bios_mem_addr
= 0xf0000000;
1813 /* activate IRQ mappings */
1816 for(i
= 0; i
< 4; i
++) {
1818 /* set to trigger level */
1819 elcr
[irq
>> 3] |= (1 << (irq
& 7));
1820 /* activate irq remapping in PIIX */
1821 pci_config_writeb((PCIDevice
*)piix3_state
, 0x60 + i
, irq
);
1823 isa_outb(elcr
[0], 0x4d0);
1824 isa_outb(elcr
[1], 0x4d1);
1828 for(devfn
= 0; devfn
< 256; devfn
++) {
1829 d
= bus
->devices
[devfn
];
1831 pci_bios_init_device(d
);
1836 /* Initialize a PCI NIC. */
1837 void pci_nic_init(PCIBus
*bus
, NICInfo
*nd
)
1839 if (strcmp(nd
->model
, "ne2k_pci") == 0) {
1840 pci_ne2000_init(bus
, nd
);
1841 } else if (strcmp(nd
->model
, "rtl8139") == 0) {
1842 pci_rtl8139_init(bus
, nd
);
1844 fprintf(stderr
, "qemu: Unsupported NIC: %s\n", nd
->model
);