summaryrefslogtreecommitdiff
path: root/src/dev/x86/I8042.py
diff options
context:
space:
mode:
authorAndreas Sandberg <andreas.sandberg@arm.com>2018-04-09 18:35:30 +0100
committerAndreas Sandberg <andreas.sandberg@arm.com>2018-04-17 08:46:33 +0000
commit0f7710d4f7898e1244774d7158786639ae1131f4 (patch)
treead8eb6fc46fbb9a3ad4a44ddcbfbdbaa9e453e1a /src/dev/x86/I8042.py
parent18f62ac208a3fc8d385e66c3b5ff22473229d1d7 (diff)
downloadgem5-0f7710d4f7898e1244774d7158786639ae1131f4.tar.xz
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 <andreas.sandberg@arm.com> Reviewed-by: Giacomo Travaglini <giacomo.travaglini@arm.com> Reviewed-on: https://gem5-review.googlesource.com/9763 Reviewed-by: Gabe Black <gabeblack@google.com> Maintainer: Gabe Black <gabeblack@google.com>
Diffstat (limited to 'src/dev/x86/I8042.py')
-rw-r--r--src/dev/x86/I8042.py2
1 files changed, 1 insertions, 1 deletions
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")