2 * QEMU Alpha PCI support functions.
4 * Some of this isn't very Alpha specific at all.
6 * ??? Sparse memory access not implemented.
10 #include "alpha_sys.h"
12 #include "sysemu/sysemu.h"
15 /* Fallback for unassigned PCI I/O operations. Avoids MCHK. */
17 static uint64_t ignore_read(void *opaque
, hwaddr addr
, unsigned size
)
22 static void ignore_write(void *opaque
, hwaddr addr
, uint64_t v
, unsigned size
)
26 const MemoryRegionOps alpha_pci_ignore_ops
= {
28 .write
= ignore_write
,
29 .endianness
= DEVICE_LITTLE_ENDIAN
,
41 /* PCI config space reads/writes, to byte-word addressable memory. */
42 static uint64_t bw_conf1_read(void *opaque
, hwaddr addr
,
46 return pci_data_read(b
, addr
, size
);
49 static void bw_conf1_write(void *opaque
, hwaddr addr
,
50 uint64_t val
, unsigned size
)
53 pci_data_write(b
, addr
, val
, size
);
56 const MemoryRegionOps alpha_pci_conf1_ops
= {
57 .read
= bw_conf1_read
,
58 .write
= bw_conf1_write
,
59 .endianness
= DEVICE_LITTLE_ENDIAN
,
66 /* PCI/EISA Interrupt Acknowledge Cycle. */
68 static uint64_t iack_read(void *opaque
, hwaddr addr
, unsigned size
)
70 return pic_read_irq(isa_pic
);
73 static void special_write(void *opaque
, hwaddr addr
,
74 uint64_t val
, unsigned size
)
76 qemu_log("pci: special write cycle");
79 const MemoryRegionOps alpha_pci_iack_ops
= {
81 .write
= special_write
,
82 .endianness
= DEVICE_LITTLE_ENDIAN
,