mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 00:03:54 -06:00
hw/intc/i8259: Document i8259_init()
i8259_init() helper creates a i8259 device on an ISA bus, connects its IRQ output to the parent's input IRQ, and returns an array of 16 ISA input IRQs. Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Message-Id: <20230210163744.32182-2-philmd@linaro.org>
This commit is contained in:
parent
9d724e0ba8
commit
78827d5f7b
2 changed files with 11 additions and 3 deletions
|
@ -4,7 +4,15 @@
|
|||
/* i8259.c */
|
||||
|
||||
extern PICCommonState *isa_pic;
|
||||
qemu_irq *i8259_init(ISABus *bus, qemu_irq parent_irq);
|
||||
|
||||
/*
|
||||
* i8259_init()
|
||||
*
|
||||
* Create a i8259 device on an ISA @bus,
|
||||
* connect its output to @parent_irq_in,
|
||||
* return an (allocated) array of 16 input IRQs.
|
||||
*/
|
||||
qemu_irq *i8259_init(ISABus *bus, qemu_irq parent_irq_in);
|
||||
qemu_irq *kvm_i8259_init(ISABus *bus);
|
||||
int pic_get_output(PICCommonState *s);
|
||||
int pic_read_irq(PICCommonState *s);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue