4 #include "qemu-common.h"
6 /* Devices used by sparc32 system. */
9 void sparc_iommu_memory_rw(void *opaque
, target_phys_addr_t addr
,
10 uint8_t *buf
, int len
, int is_write
);
11 static inline void sparc_iommu_memory_read(void *opaque
,
12 target_phys_addr_t addr
,
13 uint8_t *buf
, int len
)
15 sparc_iommu_memory_rw(opaque
, addr
, buf
, len
, 0);
18 static inline void sparc_iommu_memory_write(void *opaque
,
19 target_phys_addr_t addr
,
20 uint8_t *buf
, int len
)
22 sparc_iommu_memory_rw(opaque
, addr
, buf
, len
, 1);
26 void slavio_pic_info(Monitor
*mon
, DeviceState
*dev
);
27 void slavio_irq_info(Monitor
*mon
, DeviceState
*dev
);
30 void sun4c_pic_info(Monitor
*mon
, void *opaque
);
31 void sun4c_irq_info(Monitor
*mon
, void *opaque
);
34 #include "sparc32_dma.h"