diff options
author | Jason Thorpe <thorpej@me.com> | 2021-06-16 07:15:38 -0700 |
---|---|---|
committer | Richard Henderson <richard.henderson@linaro.org> | 2021-06-28 07:27:32 -0700 |
commit | 5ec4f1d348e164355ff0e50486d537973e517e19 (patch) | |
tree | d31395b01a950ecec791a51f6fadf1a15c274257 /hw/alpha/Kconfig | |
parent | 387a1dcb351be6a6ec4e27d36173df2de1017bcc (diff) | |
download | qemu-5ec4f1d348e164355ff0e50486d537973e517e19.zip qemu-5ec4f1d348e164355ff0e50486d537973e517e19.tar.gz qemu-5ec4f1d348e164355ff0e50486d537973e517e19.tar.bz2 |
hw/alpha: Provide a PCI-ISA bridge device node
- Move initialization of the ISA bus from typhoon_init() to clipper_init();
this apsect of device topology is really associated with the individual
model, not the core logic chipset. typhoon_init() now returns the IRQ
to use for the output of the ISA PIC.
- In clipper_init(), instantiate an i82378 instance, and connect its
PIC output to the ISA IRQ input provided by typhoon_init(). Remove
the explicit instantiations of i8254 and i82374, as these devices
are subsumed by the i82378.
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Signed-off-by: Jason Thorpe <thorpej@me.com>
Message-Id: <20210616141538.25436-1-thorpej@me.com>
[rth: Remove direct dependencies on i82374, i8254, i8259.]
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'hw/alpha/Kconfig')
-rw-r--r-- | hw/alpha/Kconfig | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/hw/alpha/Kconfig b/hw/alpha/Kconfig index 15c59ff..9af650c 100644 --- a/hw/alpha/Kconfig +++ b/hw/alpha/Kconfig @@ -3,9 +3,7 @@ config DP264 imply PCI_DEVICES imply TEST_DEVICES imply E1000_PCI - select I82374 - select I8254 - select I8259 + select I82378 select IDE_CMD646 select MC146818RTC select PCI |