2 * DEC 21272 (TSUNAMI/TYPHOON) chipset emulation.
4 * Written by Richard Henderson.
6 * This work is licensed under the GNU GPL license version 2 or later.
9 #include "qemu/osdep.h"
10 #include "qemu/module.h"
11 #include "qemu/units.h"
12 #include "qapi/error.h"
14 #include "hw/boards.h"
16 #include "alpha_sys.h"
17 #include "exec/address-spaces.h"
20 #define TYPE_TYPHOON_PCI_HOST_BRIDGE "typhoon-pcihost"
21 #define TYPE_TYPHOON_IOMMU_MEMORY_REGION "typhoon-iommu-memory-region"
23 typedef struct TyphoonCchip
{
32 typedef struct TyphoonWindow
{
38 typedef struct TyphoonPchip
{
40 MemoryRegion reg_iack
;
43 MemoryRegion reg_conf
;
45 AddressSpace iommu_as
;
46 IOMMUMemoryRegion iommu
;
52 #define TYPHOON_PCI_HOST_BRIDGE(obj) \
53 OBJECT_CHECK(TyphoonState, (obj), TYPE_TYPHOON_PCI_HOST_BRIDGE)
55 typedef struct TyphoonState
{
56 PCIHostState parent_obj
;
60 MemoryRegion dchip_region
;
61 MemoryRegion ram_region
;
64 /* Called when one of DRIR or DIM changes. */
65 static void cpu_irq_change(AlphaCPU
*cpu
, uint64_t req
)
67 /* If there are any non-masked interrupts, tell the cpu. */
69 CPUState
*cs
= CPU(cpu
);
71 cpu_interrupt(cs
, CPU_INTERRUPT_HARD
);
73 cpu_reset_interrupt(cs
, CPU_INTERRUPT_HARD
);
78 static MemTxResult
cchip_read(void *opaque
, hwaddr addr
,
79 uint64_t *data
, unsigned size
,
82 CPUState
*cpu
= current_cpu
;
83 TyphoonState
*s
= opaque
;
88 /* CSC: Cchip System Configuration Register. */
89 /* All sorts of data here; probably the only thing relevant is
90 PIP<14> Pchip 1 Present = 0. */
94 /* MTR: Memory Timing Register. */
95 /* All sorts of stuff related to real DRAM. */
99 /* MISC: Miscellaneous Register. */
100 ret
= s
->cchip
.misc
| (cpu
->cpu_index
& 3);
104 /* MPD: Memory Presence Detect Register. */
107 case 0x0100: /* AAR0 */
108 case 0x0140: /* AAR1 */
109 case 0x0180: /* AAR2 */
110 case 0x01c0: /* AAR3 */
111 /* AAR: Array Address Register. */
112 /* All sorts of information about DRAM. */
116 /* DIM0: Device Interrupt Mask Register, CPU0. */
117 ret
= s
->cchip
.dim
[0];
120 /* DIM1: Device Interrupt Mask Register, CPU1. */
121 ret
= s
->cchip
.dim
[1];
124 /* DIR0: Device Interrupt Request Register, CPU0. */
125 ret
= s
->cchip
.dim
[0] & s
->cchip
.drir
;
128 /* DIR1: Device Interrupt Request Register, CPU1. */
129 ret
= s
->cchip
.dim
[1] & s
->cchip
.drir
;
132 /* DRIR: Device Raw Interrupt Request Register. */
137 /* PRBEN: Probe Enable Register. */
141 /* IIC0: Interval Ignore Count Register, CPU0. */
142 ret
= s
->cchip
.iic
[0];
145 /* IIC1: Interval Ignore Count Register, CPU1. */
146 ret
= s
->cchip
.iic
[1];
149 case 0x0400: /* MPR0 */
150 case 0x0440: /* MPR1 */
151 case 0x0480: /* MPR2 */
152 case 0x04c0: /* MPR3 */
153 /* MPR: Memory Programming Register. */
157 /* TTR: TIGbus Timing Register. */
158 /* All sorts of stuff related to interrupt delivery timings. */
161 /* TDR: TIGbug Device Timing Register. */
165 /* DIM2: Device Interrupt Mask Register, CPU2. */
166 ret
= s
->cchip
.dim
[2];
169 /* DIM3: Device Interrupt Mask Register, CPU3. */
170 ret
= s
->cchip
.dim
[3];
173 /* DIR2: Device Interrupt Request Register, CPU2. */
174 ret
= s
->cchip
.dim
[2] & s
->cchip
.drir
;
177 /* DIR3: Device Interrupt Request Register, CPU3. */
178 ret
= s
->cchip
.dim
[3] & s
->cchip
.drir
;
182 /* IIC2: Interval Ignore Count Register, CPU2. */
183 ret
= s
->cchip
.iic
[2];
186 /* IIC3: Interval Ignore Count Register, CPU3. */
187 ret
= s
->cchip
.iic
[3];
191 /* PWR: Power Management Control. */
194 case 0x0c00: /* CMONCTLA */
195 case 0x0c40: /* CMONCTLB */
196 case 0x0c80: /* CMONCNT01 */
197 case 0x0cc0: /* CMONCNT23 */
208 static uint64_t dchip_read(void *opaque
, hwaddr addr
, unsigned size
)
210 /* Skip this. It's all related to DRAM timing and setup. */
214 static MemTxResult
pchip_read(void *opaque
, hwaddr addr
, uint64_t *data
,
215 unsigned size
, MemTxAttrs attrs
)
217 TyphoonState
*s
= opaque
;
222 /* WSBA0: Window Space Base Address Register. */
223 ret
= s
->pchip
.win
[0].wba
;
227 ret
= s
->pchip
.win
[1].wba
;
231 ret
= s
->pchip
.win
[2].wba
;
235 ret
= s
->pchip
.win
[3].wba
;
239 /* WSM0: Window Space Mask Register. */
240 ret
= s
->pchip
.win
[0].wsm
;
244 ret
= s
->pchip
.win
[1].wsm
;
248 ret
= s
->pchip
.win
[2].wsm
;
252 ret
= s
->pchip
.win
[3].wsm
;
256 /* TBA0: Translated Base Address Register. */
257 ret
= s
->pchip
.win
[0].tba
;
261 ret
= s
->pchip
.win
[1].tba
;
265 ret
= s
->pchip
.win
[2].tba
;
269 ret
= s
->pchip
.win
[3].tba
;
273 /* PCTL: Pchip Control Register. */
277 /* PLAT: Pchip Master Latency Register. */
280 /* PERROR: Pchip Error Register. */
283 /* PERRMASK: Pchip Error Mask Register. */
286 /* PERRSET: Pchip Error Set Register. */
289 /* TLBIV: Translation Buffer Invalidate Virtual Register (WO). */
292 /* TLBIA: Translation Buffer Invalidate All Register (WO). */
294 case 0x0500: /* PMONCTL */
295 case 0x0540: /* PMONCNT */
296 case 0x0800: /* SPRST */
307 static MemTxResult
cchip_write(void *opaque
, hwaddr addr
,
308 uint64_t val
, unsigned size
,
311 TyphoonState
*s
= opaque
;
312 uint64_t oldval
, newval
;
316 /* CSC: Cchip System Configuration Register. */
317 /* All sorts of data here; nothing relevant RW. */
321 /* MTR: Memory Timing Register. */
322 /* All sorts of stuff related to real DRAM. */
326 /* MISC: Miscellaneous Register. */
327 newval
= oldval
= s
->cchip
.misc
;
328 newval
&= ~(val
& 0x10000ff0); /* W1C fields */
329 if (val
& 0x100000) {
330 newval
&= ~0xff0000ull
; /* ACL clears ABT and ABW */
332 newval
|= val
& 0x00f00000; /* ABT field is W1S */
333 if ((newval
& 0xf0000) == 0) {
334 newval
|= val
& 0xf0000; /* ABW field is W1S iff zero */
337 newval
|= (val
& 0xf000) >> 4; /* IPREQ field sets IPINTR. */
339 newval
&= ~0xf0000000000ull
; /* WO and RW fields */
340 newval
|= val
& 0xf0000000000ull
;
341 s
->cchip
.misc
= newval
;
343 /* Pass on changes to IPI and ITI state. */
344 if ((newval
^ oldval
) & 0xff0) {
346 for (i
= 0; i
< 4; ++i
) {
347 AlphaCPU
*cpu
= s
->cchip
.cpu
[i
];
349 CPUState
*cs
= CPU(cpu
);
350 /* IPI can be either cleared or set by the write. */
351 if (newval
& (1 << (i
+ 8))) {
352 cpu_interrupt(cs
, CPU_INTERRUPT_SMP
);
354 cpu_reset_interrupt(cs
, CPU_INTERRUPT_SMP
);
357 /* ITI can only be cleared by the write. */
358 if ((newval
& (1 << (i
+ 4))) == 0) {
359 cpu_reset_interrupt(cs
, CPU_INTERRUPT_TIMER
);
367 /* MPD: Memory Presence Detect Register. */
370 case 0x0100: /* AAR0 */
371 case 0x0140: /* AAR1 */
372 case 0x0180: /* AAR2 */
373 case 0x01c0: /* AAR3 */
374 /* AAR: Array Address Register. */
375 /* All sorts of information about DRAM. */
378 case 0x0200: /* DIM0 */
379 /* DIM: Device Interrupt Mask Register, CPU0. */
380 s
->cchip
.dim
[0] = val
;
381 cpu_irq_change(s
->cchip
.cpu
[0], val
& s
->cchip
.drir
);
383 case 0x0240: /* DIM1 */
384 /* DIM: Device Interrupt Mask Register, CPU1. */
385 s
->cchip
.dim
[1] = val
;
386 cpu_irq_change(s
->cchip
.cpu
[1], val
& s
->cchip
.drir
);
389 case 0x0280: /* DIR0 (RO) */
390 case 0x02c0: /* DIR1 (RO) */
391 case 0x0300: /* DRIR (RO) */
395 /* PRBEN: Probe Enable Register. */
398 case 0x0380: /* IIC0 */
399 s
->cchip
.iic
[0] = val
& 0xffffff;
401 case 0x03c0: /* IIC1 */
402 s
->cchip
.iic
[1] = val
& 0xffffff;
405 case 0x0400: /* MPR0 */
406 case 0x0440: /* MPR1 */
407 case 0x0480: /* MPR2 */
408 case 0x04c0: /* MPR3 */
409 /* MPR: Memory Programming Register. */
413 /* TTR: TIGbus Timing Register. */
414 /* All sorts of stuff related to interrupt delivery timings. */
417 /* TDR: TIGbug Device Timing Register. */
421 /* DIM2: Device Interrupt Mask Register, CPU2. */
422 s
->cchip
.dim
[2] = val
;
423 cpu_irq_change(s
->cchip
.cpu
[2], val
& s
->cchip
.drir
);
426 /* DIM3: Device Interrupt Mask Register, CPU3. */
427 s
->cchip
.dim
[3] = val
;
428 cpu_irq_change(s
->cchip
.cpu
[3], val
& s
->cchip
.drir
);
431 case 0x0680: /* DIR2 (RO) */
432 case 0x06c0: /* DIR3 (RO) */
435 case 0x0700: /* IIC2 */
436 s
->cchip
.iic
[2] = val
& 0xffffff;
438 case 0x0740: /* IIC3 */
439 s
->cchip
.iic
[3] = val
& 0xffffff;
443 /* PWR: Power Management Control. */
446 case 0x0c00: /* CMONCTLA */
447 case 0x0c40: /* CMONCTLB */
448 case 0x0c80: /* CMONCNT01 */
449 case 0x0cc0: /* CMONCNT23 */
459 static void dchip_write(void *opaque
, hwaddr addr
,
460 uint64_t val
, unsigned size
)
462 /* Skip this. It's all related to DRAM timing and setup. */
465 static MemTxResult
pchip_write(void *opaque
, hwaddr addr
,
466 uint64_t val
, unsigned size
,
469 TyphoonState
*s
= opaque
;
474 /* WSBA0: Window Space Base Address Register. */
475 s
->pchip
.win
[0].wba
= val
& 0xfff00003u
;
479 s
->pchip
.win
[1].wba
= val
& 0xfff00003u
;
483 s
->pchip
.win
[2].wba
= val
& 0xfff00003u
;
487 s
->pchip
.win
[3].wba
= (val
& 0x80fff00001ull
) | 2;
491 /* WSM0: Window Space Mask Register. */
492 s
->pchip
.win
[0].wsm
= val
& 0xfff00000u
;
496 s
->pchip
.win
[1].wsm
= val
& 0xfff00000u
;
500 s
->pchip
.win
[2].wsm
= val
& 0xfff00000u
;
504 s
->pchip
.win
[3].wsm
= val
& 0xfff00000u
;
508 /* TBA0: Translated Base Address Register. */
509 s
->pchip
.win
[0].tba
= val
& 0x7fffffc00ull
;
513 s
->pchip
.win
[1].tba
= val
& 0x7fffffc00ull
;
517 s
->pchip
.win
[2].tba
= val
& 0x7fffffc00ull
;
521 s
->pchip
.win
[3].tba
= val
& 0x7fffffc00ull
;
525 /* PCTL: Pchip Control Register. */
526 oldval
= s
->pchip
.ctl
;
527 oldval
&= ~0x00001cff0fc7ffull
; /* RW fields */
528 oldval
|= val
& 0x00001cff0fc7ffull
;
529 s
->pchip
.ctl
= oldval
;
533 /* PLAT: Pchip Master Latency Register. */
536 /* PERROR: Pchip Error Register. */
539 /* PERRMASK: Pchip Error Mask Register. */
542 /* PERRSET: Pchip Error Set Register. */
546 /* TLBIV: Translation Buffer Invalidate Virtual Register. */
550 /* TLBIA: Translation Buffer Invalidate All Register (WO). */
568 static const MemoryRegionOps cchip_ops
= {
569 .read_with_attrs
= cchip_read
,
570 .write_with_attrs
= cchip_write
,
571 .endianness
= DEVICE_LITTLE_ENDIAN
,
573 .min_access_size
= 8,
574 .max_access_size
= 8,
577 .min_access_size
= 8,
578 .max_access_size
= 8,
582 static const MemoryRegionOps dchip_ops
= {
584 .write
= dchip_write
,
585 .endianness
= DEVICE_LITTLE_ENDIAN
,
587 .min_access_size
= 8,
588 .max_access_size
= 8,
591 .min_access_size
= 8,
592 .max_access_size
= 8,
596 static const MemoryRegionOps pchip_ops
= {
597 .read_with_attrs
= pchip_read
,
598 .write_with_attrs
= pchip_write
,
599 .endianness
= DEVICE_LITTLE_ENDIAN
,
601 .min_access_size
= 8,
602 .max_access_size
= 8,
605 .min_access_size
= 8,
606 .max_access_size
= 8,
610 /* A subroutine of typhoon_translate_iommu that builds an IOMMUTLBEntry
611 using the given translated address and mask. */
612 static bool make_iommu_tlbe(hwaddr taddr
, hwaddr mask
, IOMMUTLBEntry
*ret
)
614 *ret
= (IOMMUTLBEntry
) {
615 .target_as
= &address_space_memory
,
616 .translated_addr
= taddr
,
623 /* A subroutine of typhoon_translate_iommu that handles scatter-gather
624 translation, given the address of the PTE. */
625 static bool pte_translate(hwaddr pte_addr
, IOMMUTLBEntry
*ret
)
627 uint64_t pte
= address_space_ldq(&address_space_memory
, pte_addr
,
628 MEMTXATTRS_UNSPECIFIED
, NULL
);
630 /* Check valid bit. */
631 if ((pte
& 1) == 0) {
635 return make_iommu_tlbe((pte
& 0x3ffffe) << 12, 0x1fff, ret
);
638 /* A subroutine of typhoon_translate_iommu that handles one of the
639 four single-address-cycle translation windows. */
640 static bool window_translate(TyphoonWindow
*win
, hwaddr addr
,
643 uint32_t wba
= win
->wba
;
644 uint64_t wsm
= win
->wsm
;
645 uint64_t tba
= win
->tba
;
646 uint64_t wsm_ext
= wsm
| 0xfffff;
648 /* Check for window disabled. */
649 if ((wba
& 1) == 0) {
653 /* Check for window hit. */
654 if ((addr
& ~wsm_ext
) != (wba
& 0xfff00000u
)) {
659 /* Scatter-gather translation. */
662 /* See table 10-6, Generating PTE address for PCI DMA Address. */
663 pte_addr
= tba
& ~(wsm
>> 10);
664 pte_addr
|= (addr
& (wsm
| 0xfe000)) >> 10;
665 return pte_translate(pte_addr
, ret
);
667 /* Direct-mapped translation. */
668 return make_iommu_tlbe(tba
& ~wsm_ext
, wsm_ext
, ret
);
672 /* Handle PCI-to-system address translation. */
673 /* TODO: A translation failure here ought to set PCI error codes on the
674 Pchip and generate a machine check interrupt. */
675 static IOMMUTLBEntry
typhoon_translate_iommu(IOMMUMemoryRegion
*iommu
,
677 IOMMUAccessFlags flag
,
680 TyphoonPchip
*pchip
= container_of(iommu
, TyphoonPchip
, iommu
);
684 if (addr
<= 0xffffffffu
) {
685 /* Single-address cycle. */
687 /* Check for the Window Hole, inhibiting matching. */
688 if ((pchip
->ctl
& 0x20)
690 && addr
<= 0xfffff) {
694 /* Check the first three windows. */
695 for (i
= 0; i
< 3; ++i
) {
696 if (window_translate(&pchip
->win
[i
], addr
, &ret
)) {
701 /* Check the fourth window for DAC disable. */
702 if ((pchip
->win
[3].wba
& 0x80000000000ull
) == 0
703 && window_translate(&pchip
->win
[3], addr
, &ret
)) {
707 /* Double-address cycle. */
709 if (addr
>= 0x10000000000ull
&& addr
< 0x20000000000ull
) {
710 /* Check for the DMA monster window. */
711 if (pchip
->ctl
& 0x40) {
712 /* See 10.1.4.4; in particular <39:35> is ignored. */
713 make_iommu_tlbe(0, 0x007ffffffffull
, &ret
);
718 if (addr
>= 0x80000000000ull
&& addr
<= 0xfffffffffffull
) {
719 /* Check the fourth window for DAC enable and window enable. */
720 if ((pchip
->win
[3].wba
& 0x80000000001ull
) == 0x80000000001ull
) {
723 pte_addr
= pchip
->win
[3].tba
& 0x7ffc00000ull
;
724 pte_addr
|= (addr
& 0xffffe000u
) >> 10;
725 if (pte_translate(pte_addr
, &ret
)) {
733 ret
= (IOMMUTLBEntry
) { .perm
= IOMMU_NONE
};
738 static AddressSpace
*typhoon_pci_dma_iommu(PCIBus
*bus
, void *opaque
, int devfn
)
740 TyphoonState
*s
= opaque
;
741 return &s
->pchip
.iommu_as
;
744 static void typhoon_set_irq(void *opaque
, int irq
, int level
)
746 TyphoonState
*s
= opaque
;
750 /* Set/Reset the bit in CCHIP.DRIR based on IRQ+LEVEL. */
751 drir
= s
->cchip
.drir
;
755 drir
&= ~(1ull << irq
);
757 s
->cchip
.drir
= drir
;
759 for (i
= 0; i
< 4; ++i
) {
760 cpu_irq_change(s
->cchip
.cpu
[i
], s
->cchip
.dim
[i
] & drir
);
764 static void typhoon_set_isa_irq(void *opaque
, int irq
, int level
)
766 typhoon_set_irq(opaque
, 55, level
);
769 static void typhoon_set_timer_irq(void *opaque
, int irq
, int level
)
771 TyphoonState
*s
= opaque
;
774 /* Thankfully, the mc146818rtc code doesn't track the IRQ state,
775 and so we don't have to worry about missing interrupts just
776 because we never actually ACK the interrupt. Just ignore any
777 case of the interrupt level going low. */
782 /* Deliver the interrupt to each CPU, considering each CPU's IIC. */
783 for (i
= 0; i
< 4; ++i
) {
784 AlphaCPU
*cpu
= s
->cchip
.cpu
[i
];
786 uint32_t iic
= s
->cchip
.iic
[i
];
788 /* ??? The verbage in Section 10.2.2.10 isn't 100% clear.
789 Bit 24 is the OverFlow bit, RO, and set when the count
790 decrements past 0. When is OF cleared? My guess is that
791 OF is actually cleared when the IIC is written, and that
792 the ICNT field always decrements. At least, that's an
793 interpretation that makes sense, and "allows the CPU to
794 determine exactly how mant interval timer ticks were
795 skipped". At least within the next 4M ticks... */
797 iic
= ((iic
- 1) & 0x1ffffff) | (iic
& 0x1000000);
798 s
->cchip
.iic
[i
] = iic
;
800 if (iic
& 0x1000000) {
801 /* Set the ITI bit for this cpu. */
802 s
->cchip
.misc
|= 1 << (i
+ 4);
803 /* And signal the interrupt. */
804 cpu_interrupt(CPU(cpu
), CPU_INTERRUPT_TIMER
);
810 static void typhoon_alarm_timer(void *opaque
)
812 TyphoonState
*s
= (TyphoonState
*)((uintptr_t)opaque
& ~3);
813 int cpu
= (uintptr_t)opaque
& 3;
815 /* Set the ITI bit for this cpu. */
816 s
->cchip
.misc
|= 1 << (cpu
+ 4);
817 cpu_interrupt(CPU(s
->cchip
.cpu
[cpu
]), CPU_INTERRUPT_TIMER
);
820 PCIBus
*typhoon_init(ram_addr_t ram_size
, ISABus
**isa_bus
,
822 AlphaCPU
*cpus
[4], pci_map_irq_fn sys_map_irq
)
824 MemoryRegion
*addr_space
= get_system_memory();
831 dev
= qdev_create(NULL
, TYPE_TYPHOON_PCI_HOST_BRIDGE
);
833 s
= TYPHOON_PCI_HOST_BRIDGE(dev
);
834 phb
= PCI_HOST_BRIDGE(dev
);
836 s
->cchip
.misc
= 0x800000000ull
; /* Revision: Typhoon. */
837 s
->pchip
.win
[3].wba
= 2; /* Window 3 SG always enabled. */
839 /* Remember the CPUs so that we can deliver interrupts to them. */
840 for (i
= 0; i
< 4; i
++) {
841 AlphaCPU
*cpu
= cpus
[i
];
842 s
->cchip
.cpu
[i
] = cpu
;
844 cpu
->alarm_timer
= timer_new_ns(QEMU_CLOCK_VIRTUAL
,
846 (void *)((uintptr_t)s
+ i
));
850 *p_rtc_irq
= qemu_allocate_irq(typhoon_set_timer_irq
, s
, 0);
852 /* Main memory region, 0x00.0000.0000. Real hardware supports 32GB,
853 but the address space hole reserved at this point is 8TB. */
854 memory_region_allocate_system_memory(&s
->ram_region
, OBJECT(s
), "ram",
856 memory_region_add_subregion(addr_space
, 0, &s
->ram_region
);
858 /* TIGbus, 0x801.0000.0000, 1GB. */
859 /* ??? The TIGbus is used for delivering interrupts, and access to
860 the flash ROM. I'm not sure that we need to implement it at all. */
862 /* Pchip0 CSRs, 0x801.8000.0000, 256MB. */
863 memory_region_init_io(&s
->pchip
.region
, OBJECT(s
), &pchip_ops
, s
, "pchip0",
865 memory_region_add_subregion(addr_space
, 0x80180000000ULL
,
868 /* Cchip CSRs, 0x801.A000.0000, 256MB. */
869 memory_region_init_io(&s
->cchip
.region
, OBJECT(s
), &cchip_ops
, s
, "cchip0",
871 memory_region_add_subregion(addr_space
, 0x801a0000000ULL
,
874 /* Dchip CSRs, 0x801.B000.0000, 256MB. */
875 memory_region_init_io(&s
->dchip_region
, OBJECT(s
), &dchip_ops
, s
, "dchip0",
877 memory_region_add_subregion(addr_space
, 0x801b0000000ULL
,
880 /* Pchip0 PCI memory, 0x800.0000.0000, 4GB. */
881 memory_region_init(&s
->pchip
.reg_mem
, OBJECT(s
), "pci0-mem", 4 * GiB
);
882 memory_region_add_subregion(addr_space
, 0x80000000000ULL
,
885 /* Pchip0 PCI I/O, 0x801.FC00.0000, 32MB. */
886 memory_region_init_io(&s
->pchip
.reg_io
, OBJECT(s
), &alpha_pci_ignore_ops
,
887 NULL
, "pci0-io", 32 * MiB
);
888 memory_region_add_subregion(addr_space
, 0x801fc000000ULL
,
891 b
= pci_register_root_bus(dev
, "pci",
892 typhoon_set_irq
, sys_map_irq
, s
,
893 &s
->pchip
.reg_mem
, &s
->pchip
.reg_io
,
894 0, 64, TYPE_PCI_BUS
);
896 qdev_init_nofail(dev
);
898 /* Host memory as seen from the PCI side, via the IOMMU. */
899 memory_region_init_iommu(&s
->pchip
.iommu
, sizeof(s
->pchip
.iommu
),
900 TYPE_TYPHOON_IOMMU_MEMORY_REGION
, OBJECT(s
),
901 "iommu-typhoon", UINT64_MAX
);
902 address_space_init(&s
->pchip
.iommu_as
, MEMORY_REGION(&s
->pchip
.iommu
),
904 pci_setup_iommu(b
, typhoon_pci_dma_iommu
, s
);
906 /* Pchip0 PCI special/interrupt acknowledge, 0x801.F800.0000, 64MB. */
907 memory_region_init_io(&s
->pchip
.reg_iack
, OBJECT(s
), &alpha_pci_iack_ops
,
908 b
, "pci0-iack", 64 * MiB
);
909 memory_region_add_subregion(addr_space
, 0x801f8000000ULL
,
912 /* Pchip0 PCI configuration, 0x801.FE00.0000, 16MB. */
913 memory_region_init_io(&s
->pchip
.reg_conf
, OBJECT(s
), &alpha_pci_conf1_ops
,
914 b
, "pci0-conf", 16 * MiB
);
915 memory_region_add_subregion(addr_space
, 0x801fe000000ULL
,
918 /* For the record, these are the mappings for the second PCI bus.
919 We can get away with not implementing them because we indicate
920 via the Cchip.CSC<PIP> bit that Pchip1 is not present. */
921 /* Pchip1 PCI memory, 0x802.0000.0000, 4GB. */
922 /* Pchip1 CSRs, 0x802.8000.0000, 256MB. */
923 /* Pchip1 PCI special/interrupt acknowledge, 0x802.F800.0000, 64MB. */
924 /* Pchip1 PCI I/O, 0x802.FC00.0000, 32MB. */
925 /* Pchip1 PCI configuration, 0x802.FE00.0000, 16MB. */
927 /* Init the ISA bus. */
928 /* ??? Technically there should be a cy82c693ub pci-isa bridge. */
932 *isa_bus
= isa_bus_new(NULL
, get_system_memory(), &s
->pchip
.reg_io
,
934 isa_irqs
= i8259_init(*isa_bus
,
935 qemu_allocate_irq(typhoon_set_isa_irq
, s
, 0));
936 isa_bus_irqs(*isa_bus
, isa_irqs
);
942 static const TypeInfo typhoon_pcihost_info
= {
943 .name
= TYPE_TYPHOON_PCI_HOST_BRIDGE
,
944 .parent
= TYPE_PCI_HOST_BRIDGE
,
945 .instance_size
= sizeof(TyphoonState
),
948 static void typhoon_iommu_memory_region_class_init(ObjectClass
*klass
,
951 IOMMUMemoryRegionClass
*imrc
= IOMMU_MEMORY_REGION_CLASS(klass
);
953 imrc
->translate
= typhoon_translate_iommu
;
956 static const TypeInfo typhoon_iommu_memory_region_info
= {
957 .parent
= TYPE_IOMMU_MEMORY_REGION
,
958 .name
= TYPE_TYPHOON_IOMMU_MEMORY_REGION
,
959 .class_init
= typhoon_iommu_memory_region_class_init
,
962 static void typhoon_register_types(void)
964 type_register_static(&typhoon_pcihost_info
);
965 type_register_static(&typhoon_iommu_memory_region_info
);
968 type_init(typhoon_register_types
)