]>
Commit | Line | Data |
---|---|---|
87ecb68b PB |
1 | #ifndef SUN4M_H |
2 | #define SUN4M_H | |
3 | ||
376253ec AL |
4 | #include "qemu-common.h" |
5 | ||
87ecb68b PB |
6 | /* Devices used by sparc32 system. */ |
7 | ||
8 | /* iommu.c */ | |
c227f099 | 9 | void sparc_iommu_memory_rw(void *opaque, target_phys_addr_t addr, |
87ecb68b PB |
10 | uint8_t *buf, int len, int is_write); |
11 | static inline void sparc_iommu_memory_read(void *opaque, | |
c227f099 | 12 | target_phys_addr_t addr, |
87ecb68b PB |
13 | uint8_t *buf, int len) |
14 | { | |
15 | sparc_iommu_memory_rw(opaque, addr, buf, len, 0); | |
16 | } | |
17 | ||
18 | static inline void sparc_iommu_memory_write(void *opaque, | |
c227f099 | 19 | target_phys_addr_t addr, |
87ecb68b PB |
20 | uint8_t *buf, int len) |
21 | { | |
22 | sparc_iommu_memory_rw(opaque, addr, buf, len, 1); | |
23 | } | |
24 | ||
87ecb68b | 25 | /* slavio_intctl.c */ |
d453c2c3 BS |
26 | void slavio_pic_info(Monitor *mon, DeviceState *dev); |
27 | void slavio_irq_info(Monitor *mon, DeviceState *dev); | |
87ecb68b | 28 | |
ee76f82e | 29 | /* sun4c_intctl.c */ |
376253ec AL |
30 | void sun4c_pic_info(Monitor *mon, void *opaque); |
31 | void sun4c_irq_info(Monitor *mon, void *opaque); | |
ee76f82e | 32 | |
661f1929 JK |
33 | /* sun4m.c */ |
34 | void sun4m_pic_info(Monitor *mon); | |
35 | void sun4m_irq_info(Monitor *mon); | |
36 | ||
87ecb68b | 37 | /* sparc32_dma.c */ |
216fdffa | 38 | #include "sparc32_dma.h" |
87ecb68b | 39 | |
87ecb68b | 40 | #endif |