2 * QEMU Alpha PCI support functions.
4 * Some of this isn't very Alpha specific at all.
6 * ??? Sparse memory access not implemented.
9 #include "qemu/osdep.h"
10 #include "qemu-common.h"
11 #include "alpha_sys.h"
13 #include "sysemu/sysemu.h"
17 /* Fallback for unassigned PCI I/O operations. Avoids MCHK. */
19 static uint64_t ignore_read(void *opaque
, hwaddr addr
, unsigned size
)
24 static void ignore_write(void *opaque
, hwaddr addr
, uint64_t v
, unsigned size
)
28 const MemoryRegionOps alpha_pci_ignore_ops
= {
30 .write
= ignore_write
,
31 .endianness
= DEVICE_LITTLE_ENDIAN
,
43 /* PCI config space reads/writes, to byte-word addressable memory. */
44 static uint64_t bw_conf1_read(void *opaque
, hwaddr addr
,
48 return pci_data_read(b
, addr
, size
);
51 static void bw_conf1_write(void *opaque
, hwaddr addr
,
52 uint64_t val
, unsigned size
)
55 pci_data_write(b
, addr
, val
, size
);
58 const MemoryRegionOps alpha_pci_conf1_ops
= {
59 .read
= bw_conf1_read
,
60 .write
= bw_conf1_write
,
61 .endianness
= DEVICE_LITTLE_ENDIAN
,
68 /* PCI/EISA Interrupt Acknowledge Cycle. */
70 static uint64_t iack_read(void *opaque
, hwaddr addr
, unsigned size
)
72 return pic_read_irq(isa_pic
);
75 static void special_write(void *opaque
, hwaddr addr
,
76 uint64_t val
, unsigned size
)
78 trace_alpha_pci_iack_write();
81 const MemoryRegionOps alpha_pci_iack_ops
= {
83 .write
= special_write
,
84 .endianness
= DEVICE_LITTLE_ENDIAN
,