2008-08-30 11:51:20 +02:00
|
|
|
#ifndef HW_ISA_H
|
|
|
|
#define HW_ISA_H
|
2009-07-31 12:30:14 +02:00
|
|
|
|
2007-11-17 18:14:51 +01:00
|
|
|
/* ISA bus */
|
|
|
|
|
2012-12-17 18:19:49 +01:00
|
|
|
#include "exec/ioport.h"
|
|
|
|
#include "exec/memory.h"
|
2013-02-04 15:40:22 +01:00
|
|
|
#include "hw/qdev.h"
|
2009-07-31 12:30:14 +02:00
|
|
|
|
2011-10-07 09:19:35 +02:00
|
|
|
#define ISA_NUM_IRQS 16
|
|
|
|
|
2011-12-04 18:52:49 +01:00
|
|
|
#define TYPE_ISA_DEVICE "isa-device"
|
|
|
|
#define ISA_DEVICE(obj) \
|
|
|
|
OBJECT_CHECK(ISADevice, (obj), TYPE_ISA_DEVICE)
|
|
|
|
#define ISA_DEVICE_CLASS(klass) \
|
|
|
|
OBJECT_CLASS_CHECK(ISADeviceClass, (klass), TYPE_ISA_DEVICE)
|
|
|
|
#define ISA_DEVICE_GET_CLASS(obj) \
|
|
|
|
OBJECT_GET_CLASS(ISADeviceClass, (obj), TYPE_ISA_DEVICE)
|
|
|
|
|
2012-05-02 09:00:20 +02:00
|
|
|
#define TYPE_ISA_BUS "ISA"
|
|
|
|
#define ISA_BUS(obj) OBJECT_CHECK(ISABus, (obj), TYPE_ISA_BUS)
|
|
|
|
|
2013-12-22 16:34:56 +01:00
|
|
|
#define TYPE_APPLE_SMC "isa-applesmc"
|
|
|
|
|
|
|
|
static inline bool applesmc_find(void)
|
|
|
|
{
|
|
|
|
return object_resolve_path_type("", TYPE_APPLE_SMC, NULL);
|
|
|
|
}
|
|
|
|
|
2011-12-04 18:52:49 +01:00
|
|
|
typedef struct ISADeviceClass {
|
|
|
|
DeviceClass parent_class;
|
|
|
|
} ISADeviceClass;
|
2009-07-31 12:30:14 +02:00
|
|
|
|
2011-12-15 22:09:52 +01:00
|
|
|
struct ISABus {
|
2013-06-07 14:11:07 +02:00
|
|
|
/*< private >*/
|
|
|
|
BusState parent_obj;
|
|
|
|
/*< public >*/
|
|
|
|
|
2015-02-01 09:12:50 +01:00
|
|
|
MemoryRegion *address_space;
|
2011-12-15 22:09:52 +01:00
|
|
|
MemoryRegion *address_space_io;
|
|
|
|
qemu_irq *irqs;
|
|
|
|
};
|
|
|
|
|
2009-07-31 12:30:14 +02:00
|
|
|
struct ISADevice {
|
2013-06-07 13:49:13 +02:00
|
|
|
/*< private >*/
|
|
|
|
DeviceState parent_obj;
|
|
|
|
/*< public >*/
|
|
|
|
|
2009-08-14 11:36:14 +02:00
|
|
|
uint32_t isairq[2];
|
2011-08-11 00:28:12 +02:00
|
|
|
int nirqs;
|
2011-08-15 20:59:09 +02:00
|
|
|
int ioport_id;
|
2009-07-31 12:30:14 +02:00
|
|
|
};
|
|
|
|
|
2015-02-01 09:12:50 +01:00
|
|
|
ISABus *isa_bus_new(DeviceState *dev, MemoryRegion *address_space,
|
|
|
|
MemoryRegion *address_space_io);
|
2011-12-15 22:09:51 +01:00
|
|
|
void isa_bus_irqs(ISABus *bus, qemu_irq *irqs);
|
|
|
|
qemu_irq isa_get_irq(ISADevice *dev, int isairq);
|
2009-09-10 11:43:27 +02:00
|
|
|
void isa_init_irq(ISADevice *dev, qemu_irq *p, int isairq);
|
2011-08-15 16:17:35 +02:00
|
|
|
MemoryRegion *isa_address_space(ISADevice *dev);
|
2012-09-19 13:50:02 +02:00
|
|
|
MemoryRegion *isa_address_space_io(ISADevice *dev);
|
2011-12-15 22:09:51 +01:00
|
|
|
ISADevice *isa_create(ISABus *bus, const char *name);
|
|
|
|
ISADevice *isa_try_create(ISABus *bus, const char *name);
|
|
|
|
ISADevice *isa_create_simple(ISABus *bus, const char *name);
|
2007-11-17 18:14:51 +01:00
|
|
|
|
2012-09-08 16:58:57 +02:00
|
|
|
ISADevice *isa_vga_init(ISABus *bus);
|
|
|
|
|
2011-09-26 13:52:44 +02:00
|
|
|
/**
|
|
|
|
* isa_register_ioport: Install an I/O port region on the ISA bus.
|
|
|
|
*
|
|
|
|
* Register an I/O port region via memory_region_add_subregion
|
|
|
|
* inside the ISA I/O address space.
|
|
|
|
*
|
|
|
|
* @dev: the ISADevice against which these are registered; may be NULL.
|
|
|
|
* @io: the #MemoryRegion being registered.
|
|
|
|
* @start: the base I/O port.
|
|
|
|
*/
|
|
|
|
void isa_register_ioport(ISADevice *dev, MemoryRegion *io, uint16_t start);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* isa_register_portio_list: Initialize a set of ISA io ports
|
|
|
|
*
|
|
|
|
* Several ISA devices have many dis-joint I/O ports. Worse, these I/O
|
|
|
|
* ports can be interleaved with I/O ports from other devices. This
|
|
|
|
* function makes it easy to create multiple MemoryRegions for a single
|
|
|
|
* device and use the legacy portio routines.
|
|
|
|
*
|
|
|
|
* @dev: the ISADevice against which these are registered; may be NULL.
|
|
|
|
* @start: the base I/O port against which the portio->offset is applied.
|
|
|
|
* @portio: the ports, sorted by offset.
|
2013-08-13 12:38:34 +02:00
|
|
|
* @opaque: passed into the portio callbacks.
|
2011-09-26 13:52:44 +02:00
|
|
|
* @name: passed into memory_region_init_io.
|
|
|
|
*/
|
|
|
|
void isa_register_portio_list(ISADevice *dev, uint16_t start,
|
|
|
|
const MemoryRegionPortio *portio,
|
|
|
|
void *opaque, const char *name);
|
|
|
|
|
2012-03-17 15:39:43 +01:00
|
|
|
static inline ISABus *isa_bus_from_device(ISADevice *d)
|
|
|
|
{
|
2013-01-20 18:56:18 +01:00
|
|
|
return ISA_BUS(qdev_get_parent_bus(DEVICE(d)));
|
2012-03-17 15:39:43 +01:00
|
|
|
}
|
|
|
|
|
2007-11-17 18:14:51 +01:00
|
|
|
/* dma.c */
|
|
|
|
int DMA_get_channel_mode (int nchan);
|
|
|
|
int DMA_read_memory (int nchan, void *buf, int pos, int size);
|
|
|
|
int DMA_write_memory (int nchan, void *buf, int pos, int size);
|
|
|
|
void DMA_hold_DREQ (int nchan);
|
|
|
|
void DMA_release_DREQ (int nchan);
|
|
|
|
void DMA_schedule(int nchan);
|
2010-05-22 10:00:52 +02:00
|
|
|
void DMA_init(int high_page_enable, qemu_irq *cpu_request_exit);
|
2007-11-17 18:14:51 +01:00
|
|
|
void DMA_register_channel (int nchan,
|
|
|
|
DMA_transfer_handler transfer_handler,
|
|
|
|
void *opaque);
|
2008-08-30 11:51:20 +02:00
|
|
|
#endif
|