isa.h 3.2 KB
Newer Older
1 2
#ifndef HW_ISA_H
#define HW_ISA_H
3

P
pbrook 已提交
4 5
/* ISA bus */

6
#include "ioport.h"
A
Avi Kivity 已提交
7
#include "memory.h"
8 9
#include "qdev.h"

J
Jan Kiszka 已提交
10 11
#define ISA_NUM_IRQS 16

12
typedef struct ISADevice ISADevice;
13 14 15 16 17 18 19 20 21 22 23 24 25

#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)

typedef struct ISADeviceClass {
    DeviceClass parent_class;
    int (*init)(ISADevice *dev);
} ISADeviceClass;
26

27 28 29 30 31 32
struct ISABus {
    BusState qbus;
    MemoryRegion *address_space_io;
    qemu_irq *irqs;
};

33 34
struct ISADevice {
    DeviceState qdev;
G
Gerd Hoffmann 已提交
35
    uint32_t isairq[2];
36
    int nirqs;
37
    int ioport_id;
38 39
};

40
ISABus *isa_bus_new(DeviceState *dev, MemoryRegion *address_space_io);
41 42
void isa_bus_irqs(ISABus *bus, qemu_irq *irqs);
qemu_irq isa_get_irq(ISADevice *dev, int isairq);
43
void isa_init_irq(ISADevice *dev, qemu_irq *p, int isairq);
44 45
void isa_qdev_register(DeviceInfo *info);
void isa_qdev_register_subclass(DeviceInfo *info, const char *parent);
A
Avi Kivity 已提交
46
MemoryRegion *isa_address_space(ISADevice *dev);
47 48 49
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);
P
pbrook 已提交
50

A
Avi Kivity 已提交
51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80
/**
 * 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.
 * @opaque: passed into the old_portio callbacks.
 * @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);

A
Anthony Liguori 已提交
81
extern target_phys_addr_t isa_mem_base;
P
pbrook 已提交
82

A
Avi Kivity 已提交
83
void isa_mmio_setup(MemoryRegion *mr, target_phys_addr_t size);
84
void isa_mmio_init(target_phys_addr_t base, target_phys_addr_t size);
P
pbrook 已提交
85 86 87 88 89 90 91 92

/* 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);
B
Blue Swirl 已提交
93
void DMA_init(int high_page_enable, qemu_irq *cpu_request_exit);
P
pbrook 已提交
94 95 96
void DMA_register_channel (int nchan,
                           DMA_transfer_handler transfer_handler,
                           void *opaque);
97
#endif