mirror of
				https://github.com/qemu/qemu.git
				synced 2025-10-31 04:06:46 +00:00 
			
		
		
		
	 47973a2dbf
			
		
	
	
		47973a2dbf
		
	
	
	
	
		
			
			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>
		
			
				
	
	
		
			25 lines
		
	
	
		
			547 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			547 B
		
	
	
	
		
			C
		
	
	
	
	
	
| /*
 | |
|  * 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 */
 |