1 #ifndef HW_ISA_H 2 #define HW_ISA_H 3 4 /* ISA bus */ 5 6 #include "exec/memory.h" 7 #include "exec/ioport.h" 8 #include "hw/qdev-core.h" 9 #include "qom/object.h" 10 11 #define ISA_NUM_IRQS 16 12 13 #define TYPE_ISA_DEVICE "isa-device" 14 OBJECT_DECLARE_SIMPLE_TYPE(ISADevice, ISA_DEVICE) 15 16 #define TYPE_ISA_BUS "ISA" 17 OBJECT_DECLARE_SIMPLE_TYPE(ISABus, ISA_BUS) 18 19 #define TYPE_ISADMA "isa-dma" 20 21 typedef struct IsaDmaClass IsaDmaClass; 22 DECLARE_CLASS_CHECKERS(IsaDmaClass, ISADMA, 23 TYPE_ISADMA) 24 #define ISADMA(obj) \ 25 INTERFACE_CHECK(IsaDma, (obj), TYPE_ISADMA) 26 27 typedef enum { 28 ISADMA_TRANSFER_VERIFY, 29 ISADMA_TRANSFER_READ, 30 ISADMA_TRANSFER_WRITE, 31 ISADMA_TRANSFER_ILLEGAL, 32 } IsaDmaTransferMode; 33 34 typedef int (*IsaDmaTransferHandler)(void *opaque, int nchan, int pos, 35 int size); 36 37 struct IsaDmaClass { 38 InterfaceClass parent; 39 40 bool (*has_autoinitialization)(IsaDma *obj, int nchan); 41 int (*read_memory)(IsaDma *obj, int nchan, void *buf, int pos, int len); 42 int (*write_memory)(IsaDma *obj, int nchan, void *buf, int pos, int len); 43 void (*hold_DREQ)(IsaDma *obj, int nchan); 44 void (*release_DREQ)(IsaDma *obj, int nchan); 45 void (*schedule)(IsaDma *obj); 46 void (*register_channel)(IsaDma *obj, int nchan, 47 IsaDmaTransferHandler transfer_handler, 48 void *opaque); 49 }; 50 51 struct ISABus { 52 /*< private >*/ 53 BusState parent_obj; 54 /*< public >*/ 55 56 MemoryRegion *address_space; 57 MemoryRegion *address_space_io; 58 qemu_irq *irqs; 59 IsaDma *dma[2]; 60 }; 61 62 struct ISADevice { 63 /*< private >*/ 64 DeviceState parent_obj; 65 /*< public >*/ 66 67 int ioport_id; 68 }; 69 70 ISABus *isa_bus_new(DeviceState *dev, MemoryRegion *address_space, 71 MemoryRegion *address_space_io, Error **errp); 72 void isa_bus_irqs(ISABus *bus, qemu_irq *irqs); 73 qemu_irq isa_get_irq(ISADevice *dev, unsigned isairq); 74 void isa_connect_gpio_out(ISADevice *isadev, int gpioirq, unsigned isairq); 75 void isa_bus_dma(ISABus *bus, IsaDma *dma8, IsaDma *dma16); 76 IsaDma *isa_get_dma(ISABus *bus, int nchan); 77 MemoryRegion *isa_address_space(ISADevice *dev); 78 MemoryRegion *isa_address_space_io(ISADevice *dev); 79 ISADevice *isa_new(const char *name); 80 ISADevice *isa_try_new(const char *name); 81 bool isa_realize_and_unref(ISADevice *dev, ISABus *bus, Error **errp); 82 ISADevice *isa_create_simple(ISABus *bus, const char *name); 83 84 ISADevice *isa_vga_init(ISABus *bus); 85 86 /** 87 * isa_register_ioport: Install an I/O port region on the ISA bus. 88 * 89 * Register an I/O port region via memory_region_add_subregion 90 * inside the ISA I/O address space. 91 * 92 * @dev: the ISADevice against which these are registered; may be NULL. 93 * @io: the #MemoryRegion being registered. 94 * @start: the base I/O port. 95 */ 96 void isa_register_ioport(ISADevice *dev, MemoryRegion *io, uint16_t start); 97 98 /** 99 * isa_register_portio_list: Initialize a set of ISA io ports 100 * 101 * Several ISA devices have many dis-joint I/O ports. Worse, these I/O 102 * ports can be interleaved with I/O ports from other devices. This 103 * function makes it easy to create multiple MemoryRegions for a single 104 * device and use the legacy portio routines. 105 * 106 * @dev: the ISADevice against which these are registered; may be NULL. 107 * @piolist: the PortioList associated with the io ports 108 * @start: the base I/O port against which the portio->offset is applied. 109 * @portio: the ports, sorted by offset. 110 * @opaque: passed into the portio callbacks. 111 * @name: passed into memory_region_init_io. 112 * 113 * Returns: 0 on success, negative error code otherwise (e.g. if the 114 * ISA bus is not available) 115 */ 116 int isa_register_portio_list(ISADevice *dev, 117 PortioList *piolist, 118 uint16_t start, 119 const MemoryRegionPortio *portio, 120 void *opaque, const char *name); 121 122 static inline ISABus *isa_bus_from_device(ISADevice *d) 123 { 124 return ISA_BUS(qdev_get_parent_bus(DEVICE(d))); 125 } 126 127 #endif 128