2008-08-30 13:51:20 +04:00
|
|
|
#ifndef HW_ISA_H
|
|
|
|
#define HW_ISA_H
|
2009-07-31 14:30:14 +04:00
|
|
|
|
2007-11-17 20:14:51 +03:00
|
|
|
/* ISA bus */
|
|
|
|
|
2012-12-17 21:19:49 +04:00
|
|
|
#include "exec/memory.h"
|
2016-03-16 12:24:54 +03:00
|
|
|
#include "exec/ioport.h"
|
2019-08-12 08:23:51 +03:00
|
|
|
#include "hw/qdev-core.h"
|
2020-09-03 23:43:22 +03:00
|
|
|
#include "qom/object.h"
|
2009-07-31 14:30:14 +04:00
|
|
|
|
2011-10-07 11:19:35 +04:00
|
|
|
#define ISA_NUM_IRQS 16
|
|
|
|
|
2011-12-04 21:52:49 +04:00
|
|
|
#define TYPE_ISA_DEVICE "isa-device"
|
2020-09-16 21:25:18 +03:00
|
|
|
OBJECT_DECLARE_TYPE(ISADevice, ISADeviceClass, ISA_DEVICE)
|
2011-12-04 21:52:49 +04:00
|
|
|
|
2012-05-02 11:00:20 +04:00
|
|
|
#define TYPE_ISA_BUS "ISA"
|
2020-09-16 21:25:19 +03:00
|
|
|
OBJECT_DECLARE_SIMPLE_TYPE(ISABus, ISA_BUS)
|
2012-05-02 11:00:20 +04:00
|
|
|
|
2016-02-03 19:28:57 +03:00
|
|
|
#define TYPE_ISADMA "isa-dma"
|
|
|
|
|
2020-09-03 23:43:22 +03:00
|
|
|
typedef struct IsaDmaClass IsaDmaClass;
|
2020-09-01 00:07:33 +03:00
|
|
|
DECLARE_CLASS_CHECKERS(IsaDmaClass, ISADMA,
|
|
|
|
TYPE_ISADMA)
|
2016-02-03 19:28:57 +03:00
|
|
|
#define ISADMA(obj) \
|
|
|
|
INTERFACE_CHECK(IsaDma, (obj), TYPE_ISADMA)
|
|
|
|
|
|
|
|
typedef enum {
|
|
|
|
ISADMA_TRANSFER_VERIFY,
|
|
|
|
ISADMA_TRANSFER_READ,
|
|
|
|
ISADMA_TRANSFER_WRITE,
|
|
|
|
ISADMA_TRANSFER_ILLEGAL,
|
|
|
|
} IsaDmaTransferMode;
|
|
|
|
|
2016-03-09 14:55:26 +03:00
|
|
|
typedef int (*IsaDmaTransferHandler)(void *opaque, int nchan, int pos,
|
|
|
|
int size);
|
|
|
|
|
2020-09-03 23:43:22 +03:00
|
|
|
struct IsaDmaClass {
|
2016-02-03 19:28:57 +03:00
|
|
|
InterfaceClass parent;
|
|
|
|
|
|
|
|
bool (*has_autoinitialization)(IsaDma *obj, int nchan);
|
|
|
|
int (*read_memory)(IsaDma *obj, int nchan, void *buf, int pos, int len);
|
|
|
|
int (*write_memory)(IsaDma *obj, int nchan, void *buf, int pos, int len);
|
|
|
|
void (*hold_DREQ)(IsaDma *obj, int nchan);
|
|
|
|
void (*release_DREQ)(IsaDma *obj, int nchan);
|
|
|
|
void (*schedule)(IsaDma *obj);
|
|
|
|
void (*register_channel)(IsaDma *obj, int nchan,
|
2016-03-09 14:55:26 +03:00
|
|
|
IsaDmaTransferHandler transfer_handler,
|
2016-02-03 19:28:57 +03:00
|
|
|
void *opaque);
|
2020-09-03 23:43:22 +03:00
|
|
|
};
|
2016-02-03 19:28:57 +03:00
|
|
|
|
2020-09-03 23:43:22 +03:00
|
|
|
struct ISADeviceClass {
|
2011-12-04 21:52:49 +04:00
|
|
|
DeviceClass parent_class;
|
2020-09-03 23:43:22 +03:00
|
|
|
};
|
2009-07-31 14:30:14 +04:00
|
|
|
|
2011-12-16 01:09:52 +04:00
|
|
|
struct ISABus {
|
2013-06-07 16:11:07 +04:00
|
|
|
/*< private >*/
|
|
|
|
BusState parent_obj;
|
|
|
|
/*< public >*/
|
|
|
|
|
2015-02-01 11:12:50 +03:00
|
|
|
MemoryRegion *address_space;
|
2011-12-16 01:09:52 +04:00
|
|
|
MemoryRegion *address_space_io;
|
|
|
|
qemu_irq *irqs;
|
2016-02-03 19:28:57 +03:00
|
|
|
IsaDma *dma[2];
|
2011-12-16 01:09:52 +04:00
|
|
|
};
|
|
|
|
|
2009-07-31 14:30:14 +04:00
|
|
|
struct ISADevice {
|
2013-06-07 15:49:13 +04:00
|
|
|
/*< private >*/
|
|
|
|
DeviceState parent_obj;
|
|
|
|
/*< public >*/
|
|
|
|
|
2011-08-15 22:59:09 +04:00
|
|
|
int ioport_id;
|
2009-07-31 14:30:14 +04:00
|
|
|
};
|
|
|
|
|
2015-02-01 11:12:50 +03:00
|
|
|
ISABus *isa_bus_new(DeviceState *dev, MemoryRegion *address_space,
|
isa: Clean up error handling around isa_bus_new()
We can have at most one ISA bus. If you try to create another one,
isa_bus_new() complains to stderr and returns null.
isa_bus_new() is called in two contexts, machine's init() and device's
realize() methods. Since complaining to stderr is not proper in the
latter context, convert isa_bus_new() to Error.
Machine's init():
* mips_jazz_init(), called from the init() methods of machines
"magnum" and "pica"
* mips_r4k_init(), the init() method of machine "mips"
* pc_init1() called from the init() methods of non-q35 PC machines
* typhoon_init(), called from clipper_init(), the init() method of
machine "clipper"
These callers always create the first ISA bus, hence isa_bus_new()
can't fail. Simply pass &error_abort.
Device's realize():
* i82378_realize(), of PCI device "i82378"
* ich9_lpc_realize(), of PCI device "ICH9-LPC"
* pci_ebus_realize(), of PCI device "ebus"
* piix3_realize(), of PCI device "pci-piix3", abstract parent of
"PIIX3" and "PIIX3-xen"
* piix4_realize(), of PCI device "PIIX4"
* vt82c686b_realize(), of PCI device "VT82C686B"
Propagate the error. Note that these devices are typically created
only by machine init() methods with qdev_init_nofail() or similar. If
we screwed up and created an ISA bus before that call, we now give up
right away. Before, we'd hobble on, and typically die in
isa_bus_irqs(). Similar if someone finds a way to hot-plug one of
these critters.
Cc: Richard Henderson <rth@twiddle.net>
Cc: "Michael S. Tsirkin" <mst@redhat.com>
Cc: "Hervé Poussineau" <hpoussin@reactos.org>
Cc: Aurelien Jarno <aurelien@aurel32.net>
Cc: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
Signed-off-by: Markus Armbruster <armbru@pond.sub.org>
Reviewed-by: Marcel Apfelbaum <marcel@redhat.com>
Reviewed-by: Hervé Poussineau <hpoussin@reactos.org>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Message-Id: <1450370121-5768-11-git-send-email-armbru@redhat.com>
2015-12-17 19:35:18 +03:00
|
|
|
MemoryRegion *address_space_io, Error **errp);
|
2011-12-16 01:09:51 +04:00
|
|
|
void isa_bus_irqs(ISABus *bus, qemu_irq *irqs);
|
2019-12-13 15:00:43 +03:00
|
|
|
qemu_irq isa_get_irq(ISADevice *dev, unsigned isairq);
|
|
|
|
void isa_connect_gpio_out(ISADevice *isadev, int gpioirq, unsigned isairq);
|
2016-02-03 19:28:57 +03:00
|
|
|
void isa_bus_dma(ISABus *bus, IsaDma *dma8, IsaDma *dma16);
|
|
|
|
IsaDma *isa_get_dma(ISABus *bus, int nchan);
|
2011-08-15 18:17:35 +04:00
|
|
|
MemoryRegion *isa_address_space(ISADevice *dev);
|
2012-09-19 15:50:02 +04:00
|
|
|
MemoryRegion *isa_address_space_io(ISADevice *dev);
|
2020-06-10 08:32:07 +03:00
|
|
|
ISADevice *isa_new(const char *name);
|
|
|
|
ISADevice *isa_try_new(const char *name);
|
|
|
|
bool isa_realize_and_unref(ISADevice *dev, ISABus *bus, Error **errp);
|
2011-12-16 01:09:51 +04:00
|
|
|
ISADevice *isa_create_simple(ISABus *bus, const char *name);
|
2007-11-17 20:14:51 +03:00
|
|
|
|
2012-09-08 18:58:57 +04:00
|
|
|
ISADevice *isa_vga_init(ISABus *bus);
|
|
|
|
|
2011-09-26 15:52:44 +04: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.
|
2016-07-13 03:11:59 +03:00
|
|
|
* @piolist: the PortioList associated with the io ports
|
2011-09-26 15:52:44 +04:00
|
|
|
* @start: the base I/O port against which the portio->offset is applied.
|
|
|
|
* @portio: the ports, sorted by offset.
|
2013-08-13 14:38:34 +04:00
|
|
|
* @opaque: passed into the portio callbacks.
|
2011-09-26 15:52:44 +04:00
|
|
|
* @name: passed into memory_region_init_io.
|
2021-04-16 15:52:56 +03:00
|
|
|
*
|
|
|
|
* Returns: 0 on success, negative error code otherwise (e.g. if the
|
|
|
|
* ISA bus is not available)
|
2011-09-26 15:52:44 +04:00
|
|
|
*/
|
2021-04-16 15:52:56 +03:00
|
|
|
int isa_register_portio_list(ISADevice *dev,
|
|
|
|
PortioList *piolist,
|
|
|
|
uint16_t start,
|
|
|
|
const MemoryRegionPortio *portio,
|
|
|
|
void *opaque, const char *name);
|
2011-09-26 15:52:44 +04:00
|
|
|
|
2012-03-17 18:39:43 +04:00
|
|
|
static inline ISABus *isa_bus_from_device(ISADevice *d)
|
|
|
|
{
|
2013-01-20 21:56:18 +04:00
|
|
|
return ISA_BUS(qdev_get_parent_bus(DEVICE(d)));
|
2012-03-17 18:39:43 +04:00
|
|
|
}
|
|
|
|
|
2008-08-30 13:51:20 +04:00
|
|
|
#endif
|