]> Git Repo - qemu.git/commitdiff
mainstone: Add mapping for dot, slash and backspace.
authorVijay Kumar B <[email protected]>
Tue, 4 Oct 2016 12:28:08 +0000 (13:28 +0100)
committerPeter Maydell <[email protected]>
Tue, 4 Oct 2016 12:28:08 +0000 (13:28 +0100)
Add missed out mappings. These mappings are from the "Intel PXA27x
Processor Developer's Kit User Guide".

Signed-off-by: Vijay Kumar B. <[email protected]>
Reviewed-by: Deepak S. <[email protected]>
Message-id: 1475063033[email protected]
Signed-off-by: Peter Maydell <[email protected]>
hw/arm/mainstone.c

index e81b8783f9cfeb17b87a12899e8142bf3362fceb..f962236cf4cb5ab337c3980d297253e25386b8e3 100644 (file)
@@ -73,8 +73,10 @@ static const struct keymap map[0xE0] = {
     [0x2f] = {3,3}, /* v */
     [0x11] = {3,4}, /* w */
     [0x2d] = {3,5}, /* x */
+    [0x34] = {4,0}, /* . */
     [0x15] = {4,2}, /* y */
     [0x2c] = {4,3}, /* z */
+    [0x35] = {4,4}, /* / */
     [0xc7] = {5,0}, /* Home */
     [0x2a] = {5,1}, /* shift */
     /*
@@ -89,6 +91,7 @@ static const struct keymap map[0xE0] = {
      * TODO: Compare with Linux code and test real hardware.
      */
     [0x1c] = {5,4}, /* enter */
+    [0x0e] = {5,5}, /* backspace */
     [0xc8] = {6,0}, /* up */
     [0xd0] = {6,1}, /* down */
     [0xcb] = {6,2}, /* left */
This page took 0.025726 seconds and 4 git commands to generate.