Browse Source
Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Acked-by: David Gibson <david@gibson.dropbear.id.au> (hw/ppc) Message-Id: <20180308223946.26784-4-f4bug@amsat.org> Reviewed-by: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>pull/66/merge
committed by
Paolo Bonzini
15 changed files with 43 additions and 16 deletions
@ -0,0 +1,24 @@ |
|||
/*
|
|||
* QEMU PS/2 Controller |
|||
* |
|||
* Copyright (c) 2003 Fabrice Bellard |
|||
* |
|||
* SPDX-License-Identifier: MIT |
|||
*/ |
|||
#ifndef HW_INPUT_I8042_H |
|||
#define HW_INPUT_I8042_H |
|||
|
|||
#include "hw/hw.h" |
|||
#include "hw/isa/isa.h" |
|||
|
|||
#define TYPE_I8042 "i8042" |
|||
|
|||
#define I8042_A20_LINE "a20" |
|||
|
|||
void i8042_mm_init(qemu_irq kbd_irq, qemu_irq mouse_irq, |
|||
MemoryRegion *region, ram_addr_t size, |
|||
hwaddr mask); |
|||
void i8042_isa_mouse_fake_event(void *opaque); |
|||
void i8042_setup_a20_line(ISADevice *dev, qemu_irq a20_out); |
|||
|
|||
#endif /* HW_INPUT_I8042_H */ |
|||
Loading…
Reference in new issue