10 #define ISA_NUM_IRQS 16
12 typedef struct ISADevice ISADevice
;
13 typedef struct ISADeviceInfo ISADeviceInfo
;
17 MemoryRegion
*address_space_io
;
28 typedef int (*isa_qdev_initfn
)(ISADevice
*dev
);
29 struct ISADeviceInfo
{
34 ISABus
*isa_bus_new(DeviceState
*dev
, MemoryRegion
*address_space_io
);
35 void isa_bus_irqs(ISABus
*bus
, qemu_irq
*irqs
);
36 qemu_irq
isa_get_irq(ISADevice
*dev
, int isairq
);
37 void isa_init_irq(ISADevice
*dev
, qemu_irq
*p
, int isairq
);
38 void isa_qdev_register(ISADeviceInfo
*info
);
39 MemoryRegion
*isa_address_space(ISADevice
*dev
);
40 ISADevice
*isa_create(ISABus
*bus
, const char *name
);
41 ISADevice
*isa_try_create(ISABus
*bus
, const char *name
);
42 ISADevice
*isa_create_simple(ISABus
*bus
, const char *name
);
45 * isa_register_ioport: Install an I/O port region on the ISA bus.
47 * Register an I/O port region via memory_region_add_subregion
48 * inside the ISA I/O address space.
50 * @dev: the ISADevice against which these are registered; may be NULL.
51 * @io: the #MemoryRegion being registered.
52 * @start: the base I/O port.
54 void isa_register_ioport(ISADevice
*dev
, MemoryRegion
*io
, uint16_t start
);
57 * isa_register_portio_list: Initialize a set of ISA io ports
59 * Several ISA devices have many dis-joint I/O ports. Worse, these I/O
60 * ports can be interleaved with I/O ports from other devices. This
61 * function makes it easy to create multiple MemoryRegions for a single
62 * device and use the legacy portio routines.
64 * @dev: the ISADevice against which these are registered; may be NULL.
65 * @start: the base I/O port against which the portio->offset is applied.
66 * @portio: the ports, sorted by offset.
67 * @opaque: passed into the old_portio callbacks.
68 * @name: passed into memory_region_init_io.
70 void isa_register_portio_list(ISADevice
*dev
, uint16_t start
,
71 const MemoryRegionPortio
*portio
,
72 void *opaque
, const char *name
);
74 extern target_phys_addr_t isa_mem_base
;
76 void isa_mmio_setup(MemoryRegion
*mr
, target_phys_addr_t size
);
77 void isa_mmio_init(target_phys_addr_t base
, target_phys_addr_t size
);
80 int DMA_get_channel_mode (int nchan
);
81 int DMA_read_memory (int nchan
, void *buf
, int pos
, int size
);
82 int DMA_write_memory (int nchan
, void *buf
, int pos
, int size
);
83 void DMA_hold_DREQ (int nchan
);
84 void DMA_release_DREQ (int nchan
);
85 void DMA_schedule(int nchan
);
86 void DMA_init(int high_page_enable
, qemu_irq
*cpu_request_exit
);
87 void DMA_register_channel (int nchan
,
88 DMA_transfer_handler transfer_handler
,