x_keymap.c 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168
  1. /*
  2. * QEMU SDL display driver
  3. *
  4. * Copyright (c) 2003 Fabrice Bellard
  5. *
  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:
  12. *
  13. * The above copyright notice and this permission notice shall be included in
  14. * all copies or substantial portions of the Software.
  15. *
  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
  22. * THE SOFTWARE.
  23. */
  24. #include "qemu-common.h"
  25. #include "x_keymap.h"
  26. static const uint8_t x_keycode_to_pc_keycode[115] = {
  27. 0xc7, /* 97 Home */
  28. 0xc8, /* 98 Up */
  29. 0xc9, /* 99 PgUp */
  30. 0xcb, /* 100 Left */
  31. 0x4c, /* 101 KP-5 */
  32. 0xcd, /* 102 Right */
  33. 0xcf, /* 103 End */
  34. 0xd0, /* 104 Down */
  35. 0xd1, /* 105 PgDn */
  36. 0xd2, /* 106 Ins */
  37. 0xd3, /* 107 Del */
  38. 0x9c, /* 108 Enter */
  39. 0x9d, /* 109 Ctrl-R */
  40. 0x0, /* 110 Pause */
  41. 0xb7, /* 111 Print */
  42. 0xb5, /* 112 Divide */
  43. 0xb8, /* 113 Alt-R */
  44. 0xc6, /* 114 Break */
  45. 0x0, /* 115 */
  46. 0x0, /* 116 */
  47. 0x0, /* 117 */
  48. 0x0, /* 118 */
  49. 0x0, /* 119 */
  50. 0x0, /* 120 */
  51. 0x0, /* 121 */
  52. 0x0, /* 122 */
  53. 0x0, /* 123 */
  54. 0x0, /* 124 */
  55. 0x0, /* 125 */
  56. 0x0, /* 126 */
  57. 0x0, /* 127 */
  58. 0x0, /* 128 */
  59. 0x79, /* 129 Henkan */
  60. 0x0, /* 130 */
  61. 0x7b, /* 131 Muhenkan */
  62. 0x0, /* 132 */
  63. 0x7d, /* 133 Yen */
  64. 0x0, /* 134 */
  65. 0x0, /* 135 */
  66. 0x47, /* 136 KP_7 */
  67. 0x48, /* 137 KP_8 */
  68. 0x49, /* 138 KP_9 */
  69. 0x4b, /* 139 KP_4 */
  70. 0x4c, /* 140 KP_5 */
  71. 0x4d, /* 141 KP_6 */
  72. 0x4f, /* 142 KP_1 */
  73. 0x50, /* 143 KP_2 */
  74. 0x51, /* 144 KP_3 */
  75. 0x52, /* 145 KP_0 */
  76. 0x53, /* 146 KP_. */
  77. 0x47, /* 147 KP_HOME */
  78. 0x48, /* 148 KP_UP */
  79. 0x49, /* 149 KP_PgUp */
  80. 0x4b, /* 150 KP_Left */
  81. 0x4c, /* 151 KP_ */
  82. 0x4d, /* 152 KP_Right */
  83. 0x4f, /* 153 KP_End */
  84. 0x50, /* 154 KP_Down */
  85. 0x51, /* 155 KP_PgDn */
  86. 0x52, /* 156 KP_Ins */
  87. 0x53, /* 157 KP_Del */
  88. };
  89. /* This table is generated based off the xfree86 -> scancode mapping above
  90. * and the keycode mappings in /usr/share/X11/xkb/keycodes/evdev
  91. * and /usr/share/X11/xkb/keycodes/xfree86
  92. */
  93. static const uint8_t evdev_keycode_to_pc_keycode[61] = {
  94. 0, /* 97 EVDEV - RO ("Internet" Keyboards) */
  95. 0, /* 98 EVDEV - KATA (Katakana) */
  96. 0, /* 99 EVDEV - HIRA (Hiragana) */
  97. 0x79, /* 100 EVDEV - HENK (Henkan) */
  98. 0x70, /* 101 EVDEV - HKTG (Hiragana/Katakana toggle) */
  99. 0x7b, /* 102 EVDEV - MUHE (Muhenkan) */
  100. 0, /* 103 EVDEV - JPCM (KPJPComma) */
  101. 0x9c, /* 104 KPEN */
  102. 0x9d, /* 105 RCTL */
  103. 0xb5, /* 106 KPDV */
  104. 0xb7, /* 107 PRSC */
  105. 0xb8, /* 108 RALT */
  106. 0, /* 109 EVDEV - LNFD ("Internet" Keyboards) */
  107. 0xc7, /* 110 HOME */
  108. 0xc8, /* 111 UP */
  109. 0xc9, /* 112 PGUP */
  110. 0xcb, /* 113 LEFT */
  111. 0xcd, /* 114 RGHT */
  112. 0xcf, /* 115 END */
  113. 0xd0, /* 116 DOWN */
  114. 0xd1, /* 117 PGDN */
  115. 0xd2, /* 118 INS */
  116. 0xd3, /* 119 DELE */
  117. 0, /* 120 EVDEV - I120 ("Internet" Keyboards) */
  118. 0, /* 121 EVDEV - MUTE */
  119. 0, /* 122 EVDEV - VOL- */
  120. 0, /* 123 EVDEV - VOL+ */
  121. 0, /* 124 EVDEV - POWR */
  122. 0, /* 125 EVDEV - KPEQ */
  123. 0, /* 126 EVDEV - I126 ("Internet" Keyboards) */
  124. 0, /* 127 EVDEV - PAUS */
  125. 0, /* 128 EVDEV - ???? */
  126. 0, /* 129 EVDEV - I129 ("Internet" Keyboards) */
  127. 0xf1, /* 130 EVDEV - HNGL (Korean Hangul Latin toggle) */
  128. 0xf2, /* 131 EVDEV - HJCV (Korean Hangul Hanja toggle) */
  129. 0x7d, /* 132 AE13 (Yen)*/
  130. 0xdb, /* 133 EVDEV - LWIN */
  131. 0xdc, /* 134 EVDEV - RWIN */
  132. 0xdd, /* 135 EVDEV - MENU */
  133. 0, /* 136 EVDEV - STOP */
  134. 0, /* 137 EVDEV - AGAI */
  135. 0, /* 138 EVDEV - PROP */
  136. 0, /* 139 EVDEV - UNDO */
  137. 0, /* 140 EVDEV - FRNT */
  138. 0, /* 141 EVDEV - COPY */
  139. 0, /* 142 EVDEV - OPEN */
  140. 0, /* 143 EVDEV - PAST */
  141. 0, /* 144 EVDEV - FIND */
  142. 0, /* 145 EVDEV - CUT */
  143. 0, /* 146 EVDEV - HELP */
  144. 0, /* 147 EVDEV - I147 */
  145. 0, /* 148 EVDEV - I148 */
  146. 0, /* 149 EVDEV - I149 */
  147. 0, /* 150 EVDEV - I150 */
  148. 0, /* 151 EVDEV - I151 */
  149. 0, /* 152 EVDEV - I152 */
  150. 0, /* 153 EVDEV - I153 */
  151. 0, /* 154 EVDEV - I154 */
  152. 0, /* 155 EVDEV - I156 */
  153. 0, /* 156 EVDEV - I157 */
  154. 0, /* 157 EVDEV - I158 */
  155. };
  156. uint8_t translate_xfree86_keycode(const int key)
  157. {
  158. return x_keycode_to_pc_keycode[key];
  159. }
  160. uint8_t translate_evdev_keycode(const int key)
  161. {
  162. return evdev_keycode_to_pc_keycode[key];
  163. }