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