2007-11-17 20:14:51 +03:00
|
|
|
#ifndef SUN4M_H
|
|
|
|
#define SUN4M_H
|
|
|
|
|
2009-03-06 02:01:23 +03:00
|
|
|
#include "qemu-common.h"
|
|
|
|
|
2007-11-17 20:14:51 +03:00
|
|
|
/* Devices used by sparc32 system. */
|
|
|
|
|
|
|
|
/* iommu.c */
|
2009-10-02 01:12:16 +04:00
|
|
|
void sparc_iommu_memory_rw(void *opaque, target_phys_addr_t addr,
|
2007-11-17 20:14:51 +03:00
|
|
|
uint8_t *buf, int len, int is_write);
|
|
|
|
static inline void sparc_iommu_memory_read(void *opaque,
|
2009-10-02 01:12:16 +04:00
|
|
|
target_phys_addr_t addr,
|
2007-11-17 20:14:51 +03:00
|
|
|
uint8_t *buf, int len)
|
|
|
|
{
|
|
|
|
sparc_iommu_memory_rw(opaque, addr, buf, len, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void sparc_iommu_memory_write(void *opaque,
|
2009-10-02 01:12:16 +04:00
|
|
|
target_phys_addr_t addr,
|
2007-11-17 20:14:51 +03:00
|
|
|
uint8_t *buf, int len)
|
|
|
|
{
|
|
|
|
sparc_iommu_memory_rw(opaque, addr, buf, len, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* slavio_intctl.c */
|
2009-08-23 16:23:30 +04:00
|
|
|
void slavio_pic_info(Monitor *mon, DeviceState *dev);
|
|
|
|
void slavio_irq_info(Monitor *mon, DeviceState *dev);
|
2007-11-17 20:14:51 +03:00
|
|
|
|
2007-12-28 23:59:23 +03:00
|
|
|
/* sun4c_intctl.c */
|
2009-03-06 02:01:23 +03:00
|
|
|
void sun4c_pic_info(Monitor *mon, void *opaque);
|
|
|
|
void sun4c_irq_info(Monitor *mon, void *opaque);
|
2007-12-28 23:59:23 +03:00
|
|
|
|
2007-11-17 20:14:51 +03:00
|
|
|
/* sparc32_dma.c */
|
2008-04-21 20:55:57 +04:00
|
|
|
#include "sparc32_dma.h"
|
2007-11-17 20:14:51 +03:00
|
|
|
|
|
|
|
#endif
|