a4d65b701f
Other functions in the VT82xx chips need to raise ISA interrupts. Keep a reference to them in the device state and add via_isa_set_irq() to allow setting their state. Signed-off-by: BALATON Zoltan <balaton@eik.bme.hu> Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Reviewed-by: Jiaxun Yang <jiaxun.yang@flygoat.com> Message-Id: <778c04dc2c8affac060b8edf9e8d7dab3c3e04eb.1634259980.git.balaton@eik.bme.hu> Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
16 lines
355 B
C
16 lines
355 B
C
#ifndef HW_VT82C686_H
|
|
#define HW_VT82C686_H
|
|
|
|
#include "hw/pci/pci.h"
|
|
|
|
#define TYPE_VT82C686B_ISA "vt82c686b-isa"
|
|
#define TYPE_VT82C686B_PM "vt82c686b-pm"
|
|
#define TYPE_VT8231_ISA "vt8231-isa"
|
|
#define TYPE_VT8231_PM "vt8231-pm"
|
|
#define TYPE_VIA_AC97 "via-ac97"
|
|
#define TYPE_VIA_MC97 "via-mc97"
|
|
|
|
void via_isa_set_irq(PCIDevice *d, int n, int level);
|
|
|
|
#endif
|