diff options
author | Helge Deller <deller@gmx.de> | 2019-12-20 22:15:08 +0100 |
---|---|---|
committer | Richard Henderson <richard.henderson@linaro.org> | 2020-01-27 10:49:51 -0800 |
commit | 376b851909d42c6faf4f780f25b6be55f17f3a6e (patch) | |
tree | 4498917486d47539b4b58ba80f6e12cefe234f69 /hw/hppa/hppa_sys.h | |
parent | 18092598a50ab62aba2059a25a7fff8286875610 (diff) | |
download | qemu-376b851909d42c6faf4f780f25b6be55f17f3a6e.zip qemu-376b851909d42c6faf4f780f25b6be55f17f3a6e.tar.gz qemu-376b851909d42c6faf4f780f25b6be55f17f3a6e.tar.bz2 |
hppa: Add support for LASI chip with i82596 NIC
LASI is a built-in multi-I/O chip which supports serial, parallel,
network (Intel i82596 Apricot), sound and other functionalities.
LASI has been used in many HP PARISC machines.
This patch adds the necessary parts to allow Linux and HP-UX to detect
LASI and the network card.
Signed-off-by: Helge Deller <deller@gmx.de>
Signed-off-by: Sven Schnelle <svens@stackframe.org>
Message-Id: <20191220211512.3289-3-svens@stackframe.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'hw/hppa/hppa_sys.h')
-rw-r--r-- | hw/hppa/hppa_sys.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/hw/hppa/hppa_sys.h b/hw/hppa/hppa_sys.h index 4e50196..4d08501 100644 --- a/hw/hppa/hppa_sys.h +++ b/hw/hppa/hppa_sys.h @@ -12,6 +12,8 @@ #include "hppa_hardware.h" PCIBus *dino_init(MemoryRegion *, qemu_irq *, qemu_irq *); +DeviceState *lasi_init(MemoryRegion *); +#define enable_lasi_lan() 0 #define TYPE_DINO_PCI_HOST_BRIDGE "dino-pcihost" |