From 0f7710d4f7898e1244774d7158786639ae1131f4 Mon Sep 17 00:00:00 2001 From: Andreas Sandberg Date: Mon, 9 Apr 2018 18:35:30 +0100 Subject: ps2: Add VNC support to the keyboard model Add support for keyboard input from the VNC server in the PS/2 keyboard model. The introduced code is based on the functionality in the Arm PL050 KMI model. Change-Id: If04a9713e5a15e2149d1a7471b999e3060d8ee7d Signed-off-by: Andreas Sandberg Reviewed-by: Giacomo Travaglini Reviewed-on: https://gem5-review.googlesource.com/9763 Reviewed-by: Gabe Black Maintainer: Gabe Black --- src/dev/x86/I8042.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/dev/x86/I8042.py') diff --git a/src/dev/x86/I8042.py b/src/dev/x86/I8042.py index 9203f40f5..43e70d6e4 100644 --- a/src/dev/x86/I8042.py +++ b/src/dev/x86/I8042.py @@ -45,5 +45,5 @@ class I8042(BasicPioDevice): keyboard_int_pin = Param.X86IntSourcePin(X86IntSourcePin(), 'Pin to signal the keyboard has data') - keyboard = Param.PS2Device(PS2Keyboard(), "PS/2 keyboard device") + keyboard = Param.PS2Device(PS2Keyboard(vnc=NULL), "PS/2 keyboard device") mouse = Param.PS2Device(PS2Mouse(), "PS/2 mouse device") -- cgit v1.2.3