2 * QEMU SDL display driver
4 * Copyright (c) 2003 Fabrice Bellard
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
24 #include "qemu-common.h"
27 static const uint8_t x_keycode_to_pc_keycode
[115] = {
40 0x9d, /* 109 Ctrl-R */
43 0xb5, /* 112 Divide */
60 0x79, /* 129 Henkan */
62 0x7b, /* 131 Muhenkan */
78 0x47, /* 147 KP_HOME */
80 0x49, /* 149 KP_PgUp */
81 0x4b, /* 150 KP_Left */
83 0x4d, /* 152 KP_Right */
84 0x4f, /* 153 KP_End */
85 0x50, /* 154 KP_Down */
86 0x51, /* 155 KP_PgDn */
87 0x52, /* 156 KP_Ins */
88 0x53, /* 157 KP_Del */
91 /* This table is generated based off the xfree86 -> scancode mapping above
92 * and the keycode mappings in /usr/share/X11/xkb/keycodes/evdev
93 * and /usr/share/X11/xkb/keycodes/xfree86
96 static const uint8_t evdev_keycode_to_pc_keycode
[61] = {
97 0x73, /* 97 EVDEV - RO ("Internet" Keyboards) */
98 0, /* 98 EVDEV - KATA (Katakana) */
99 0, /* 99 EVDEV - HIRA (Hiragana) */
100 0x79, /* 100 EVDEV - HENK (Henkan) */
101 0x70, /* 101 EVDEV - HKTG (Hiragana/Katakana toggle) */
102 0x7b, /* 102 EVDEV - MUHE (Muhenkan) */
103 0, /* 103 EVDEV - JPCM (KPJPComma) */
109 0, /* 109 EVDEV - LNFD ("Internet" Keyboards) */
120 0, /* 120 EVDEV - I120 ("Internet" Keyboards) */
121 0, /* 121 EVDEV - MUTE */
122 0, /* 122 EVDEV - VOL- */
123 0, /* 123 EVDEV - VOL+ */
124 0, /* 124 EVDEV - POWR */
125 0, /* 125 EVDEV - KPEQ */
126 0, /* 126 EVDEV - I126 ("Internet" Keyboards) */
127 0, /* 127 EVDEV - PAUS */
128 0, /* 128 EVDEV - ???? */
129 0x7e, /* 129 EVDEV - KP_COMMA (brazilian) */
130 0xf1, /* 130 EVDEV - HNGL (Korean Hangul Latin toggle) */
131 0xf2, /* 131 EVDEV - HJCV (Korean Hangul Hanja toggle) */
132 0x7d, /* 132 AE13 (Yen)*/
133 0xdb, /* 133 EVDEV - LWIN */
134 0xdc, /* 134 EVDEV - RWIN */
135 0xdd, /* 135 EVDEV - MENU */
136 0, /* 136 EVDEV - STOP */
137 0, /* 137 EVDEV - AGAI */
138 0, /* 138 EVDEV - PROP */
139 0, /* 139 EVDEV - UNDO */
140 0, /* 140 EVDEV - FRNT */
141 0, /* 141 EVDEV - COPY */
142 0, /* 142 EVDEV - OPEN */
143 0, /* 143 EVDEV - PAST */
144 0, /* 144 EVDEV - FIND */
145 0, /* 145 EVDEV - CUT */
146 0, /* 146 EVDEV - HELP */
147 0, /* 147 EVDEV - I147 */
148 0, /* 148 EVDEV - I148 */
149 0, /* 149 EVDEV - I149 */
150 0, /* 150 EVDEV - I150 */
151 0, /* 151 EVDEV - I151 */
152 0, /* 152 EVDEV - I152 */
153 0, /* 153 EVDEV - I153 */
154 0, /* 154 EVDEV - I154 */
155 0, /* 155 EVDEV - I156 */
156 0, /* 156 EVDEV - I157 */
157 0, /* 157 EVDEV - I158 */
160 uint8_t translate_xfree86_keycode(const int key
)
162 return x_keycode_to_pc_keycode
[key
];
165 uint8_t translate_evdev_keycode(const int key
)
167 return evdev_keycode_to_pc_keycode
[key
];