qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH] evdev_keycode_map
@ 2008-09-24 23:10 Dustin Kirkland
  2008-12-09 22:42 ` Riku Voipio
  0 siblings, 1 reply; 8+ messages in thread
From: Dustin Kirkland @ 2008-09-24 23:10 UTC (permalink / raw)
  To: qemu-devel

[-- Attachment #1: Type: text/plain, Size: 461 bytes --]

Hello,

I'm attaching a patch that we have applied to the qemu implementation
inside of the kvm package in Ubuntu.

This patch was ported from a very similar one applied to gtk-vnc.

I spoke with Anthony Liguori on IRC about it a bit, and he as a few
ideas as to how to handle the configure bits better for QEMU.
Hopefully the rest of this is useful to you as-is.

Thanks,
:-Dustin

Dustin Kirkland
Ubuntu Server Developer
Canonical, LTD
kirkland@canonical.com

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: evdev_keycode_map.patch --]
[-- Type: text/x-diff; name=evdev_keycode_map.patch, Size: 7773 bytes --]

# This code was ported from gtk-vnc, to handle evdev keycode mapping by
# Dustin Kirkland <kirkland@canonical.com>, 24 September 2008.


--- kvm-72+dfsg/qemu/configure	2008-07-27 08:20:10.000000000 -0500
+++ kvm-72+dfsg/qemu/configure	2008-09-24 16:04:28.036791147 -0500
@@ -1198,9 +1198,9 @@ if test "$sdl1" = "yes" ; then
   echo "#define CONFIG_SDL 1" >> $config_h
   echo "CONFIG_SDL=yes" >> $config_mak
   if test "$target_softmmu" = "no" -o "$static" = "yes"; then
-    echo "SDL_LIBS=$sdl_static_libs" >> $config_mak
+    echo "SDL_LIBS=-lX11 $sdl_static_libs" >> $config_mak
   else
-    echo "SDL_LIBS=`$sdl_config --libs`" >> $config_mak
+    echo "SDL_LIBS=-lX11 `$sdl_config --libs`" >> $config_mak
   fi
   if [ "${aa}" = "yes" ] ; then
     echo "SDL_CFLAGS=`$sdl_config --cflags` `aalib-config --cflags`" >> $config_mak
--- kvm-72+dfsg/qemu/sdl.c	2008-07-27 05:08:56.000000000 -0500
+++ kvm-72+dfsg/qemu/sdl.c	2008-09-24 16:39:19.713788782 -0500
@@ -132,21 +132,7 @@ static uint8_t sdl_keyevent_to_keycode(c
 
 static uint8_t sdl_keyevent_to_keycode(const SDL_KeyboardEvent *ev)
 {
-    int keycode;
-
-    keycode = ev->keysym.scancode;
-
-    if (keycode < 9) {
-        keycode = 0;
-    } else if (keycode < 97) {
-        keycode -= 8; /* just an offset */
-    } else if (keycode < 212) {
-        /* use conversion table */
-        keycode = _translate_keycode(keycode - 97);
-    } else {
-        keycode = 0;
-    }
-    return keycode;
+    return _translate_keycode(ev->keysym.scancode);
 }
 
 #endif
--- kvm-72+dfsg/qemu/x_keymap.c	2008-07-27 05:08:56.000000000 -0500
+++ kvm-72+dfsg/qemu/x_keymap.c	2008-09-24 16:52:27.262129702 -0500
@@ -24,7 +24,15 @@
 #include "qemu-common.h"
 #include "console.h"
 
-static const uint8_t x_keycode_to_pc_keycode[115] = {
+#include <SDL/SDL_syswm.h>
+#include <X11/XKBlib.h>
+#include <stdbool.h>
+#include <string.h>
+
+#define TRUE 1
+#define FALSE 0
+
+static const uint8_t x_keycode_to_pc_keycode[61] = {
    0xc7,      /*  97  Home   */
    0xc8,      /*  98  Up     */
    0xc9,      /*  99  PgUp   */
@@ -86,27 +94,136 @@ static const uint8_t x_keycode_to_pc_key
    0x51,         /* 155 KP_PgDn */
    0x52,         /* 156 KP_Ins */
    0x53,         /* 157 KP_Del */
-   0x0,         /* 158 */
-   0x0,         /* 159 */
-   0x0,         /* 160 */
-   0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,         /* 170 */
-   0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,         /* 180 */
-   0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,         /* 190 */
-   0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,         /* 200 */
-   0x0,         /* 201 */
-   0x0,         /* 202 */
-   0x0,         /* 203 */
-   0x0,         /* 204 */
-   0x0,         /* 205 */
-   0x0,         /* 206 */
-   0x0,         /* 207 */
-   0x70,         /* 208 Hiragana_Katakana */
-   0x0,         /* 209 */
-   0x0,         /* 210 */
-   0x73,         /* 211 backslash */
 };
 
-uint8_t _translate_keycode(const int key)
+/* This code was ported from gtk-vnc, to handle evdev keycode mapping by
+ * Dustin Kirkland <kirkland@canonical.com>, 24 September 2008.
+ *
+ * This table was put together by VirtualBox.  It's based on the information in
+ * /usr/share/X11/xkb/keycodes/evdev using the x_keycode_to_pc_keycode table
+ * to get the pc keycodes.
+ */
+
+static const uint8_t evdev_keycode_to_pc_keycode[61] = {
+   0x0,         /*  97 EVDEV - RO   ("Internet" Keyboards) */
+   0x0,         /*  98 EVDEV - KATA (Katakana) */
+   0x0,         /*  99 EVDEV - HIRA (Hiragana) */
+   0x79,        /* 100 EVDEV - HENK (Henkan) */
+   0x70,        /* 101 EVDEV - HKTG (Hiragana/Katakana toggle) */
+   0x7b,        /* 102 EVDEV - MUHE (Muhenkan) */
+   0x0,         /* 103 EVDEV - JPCM (KPJPComma) */
+   0x9c,        /* 104 EVDEV - KPEN */
+   0x9d,        /* 105 EVDEV - RCTL */
+   0xb5,        /* 106 EVDEV - KPDV */
+   0xb7,        /* 107 EVDEV - PRSC ***FIXME*** */
+   0xb8,        /* 108 EVDEV - RALT */
+   0x0,         /* 109 EVDEV - LNFD ("Internet" Keyboards) */
+   0xc7,        /* 110 EVDEV - HOME ***FIXME*** */
+   0xc8,        /* 111 EVDEV - UP   */
+   0xc9,        /* 112 EVDEV - PGUP */
+   0xcb,        /* 113 EVDEV - LEFT */
+   0xcd,        /* 114 EVDEV - RGHT */
+   0xcf,        /* 115 EVDEV - END  */
+   0xd0,        /* 116 EVDEV - DOWN */
+   0xd1,        /* 117 EVDEV - PGDN */
+   0xd2,        /* 118 EVDEV - INS  */
+   0xd3,        /* 119 EVDEV - DELE */
+   0x0,         /* 120 EVDEV - I120 ("Internet" Keyboards) */
+   0x0,         /* 121 EVDEV - MUTE */
+   0x0,         /* 122 EVDEV - VOL- */
+   0x0,         /* 123 EVDEV - VOL+ */
+   0x0,         /* 124 EVDEV - POWR */
+   0x0,         /* 125 EVDEV - KPEQ */
+   0x0,         /* 126 EVDEV - I126 ("Internet" Keyboards) */
+   0x0,         /* 127 EVDEV - PAUS */
+   0x0,         /* 128 EVDEV - ???? */
+   0x0,         /* 129 EVDEV - I129 ("Internet" Keyboards) */
+   0xf1,        /* 130 EVDEV - HNGL (Korean Hangul Latin toggle) */
+   0xf2,        /* 131 EVDEV - HJCV (Korean Hangul Hanja toggle) */
+   0x7d,        /* 132 EVDEV - AE13 (Yen) */
+   0xdb,        /* 133 EVDEV - LWIN */
+   0xdc,        /* 134 EVDEV - RWIN */
+   0xdd,        /* 135 EVDEV - MENU */
+   0x0,         /* 136 EVDEV - STOP */
+   0x0,         /* 137 EVDEV - AGAI */
+   0x0,         /* 138 EVDEV - PROP */
+   0x0,         /* 139 EVDEV - UNDO */
+   0x0,         /* 140 EVDEV - FRNT */
+   0x0,         /* 141 EVDEV - COPY */
+   0x0,         /* 142 EVDEV - OPEN */
+   0x0,         /* 143 EVDEV - PAST */
+   0x0,         /* 144 EVDEV - FIND */
+   0x0,         /* 145 EVDEV - CUT  */
+   0x0,         /* 146 EVDEV - HELP */
+   0x0,         /* 147 EVDEV - I147 */
+   0x0,         /* 148 EVDEV - I148 */
+   0x0,         /* 149 EVDEV - I149 */
+   0x0,         /* 150 EVDEV - I150 */
+   0x0,         /* 151 EVDEV - I151 */
+   0x0,         /* 152 EVDEV - I152 */
+   0x0,         /* 153 EVDEV - I153 */
+   0x0,         /* 154 EVDEV - I154 */
+   0x0,         /* 155 EVDEV - I156 */
+   0x0,         /* 156 EVDEV - I157 */
+   0x0,         /* 157 EVDEV - I158 */
+};
+
+static bool strstarts(const char *lhs, const char *rhs)
+{
+    if (strlen(lhs) < strlen(rhs))
+        return false;
+    return memcmp(lhs, rhs, strlen(rhs)) == 0;
+}
+
+static bool check_for_evdev(void)
+{
+    SDL_SysWMinfo info;
+    XkbDescPtr desc = NULL;
+    bool has_evdev = FALSE;
+    const char *keycodes;
+
+    SDL_VERSION(&info.version);
+    if (!SDL_GetWMInfo(&info))
+        goto out;
+
+    desc = XkbGetKeyboard (info.info.x11.display,
+                XkbAllComponentsMask,
+                XkbUseCoreKbd);
+    if (!desc)
+        goto out;
+
+    keycodes = XGetAtomName(info.info.x11.display, desc->names->keycodes);
+    if (keycodes == NULL)
+        fprintf(stderr, "qemu: warning: could not lookup keycode name\n");
+    else if (strstarts(keycodes, "evdev_"))
+        has_evdev = TRUE;
+    else if (!strstarts(keycodes, "xfree86_"))
+        fprintf(stderr, "qemu: warning: unknown keycodes `%s'\n", keycodes);
+
+    XkbFreeClientMap(desc, XkbGBN_AllComponentsMask, True);
+
+out:
+    return has_evdev;
+}
+
+
+uint8_t _translate_keycode(int keycode)
 {
-	return x_keycode_to_pc_keycode[key];
+    if (keycode < 9)
+        keycode = 0;
+    else if (keycode < 97)
+        keycode -= 8; /* just an offset */
+    else if (keycode < 158) {
+        if (check_for_evdev())
+            keycode = evdev_keycode_to_pc_keycode[keycode - 97];
+        else
+            keycode = x_keycode_to_pc_keycode[keycode - 97];
+    } else if (keycode == 208) /* Hiragana_Katakana */
+        keycode = 0x70;
+    else if (keycode == 211) /* backslash */
+        keycode = 0x73;
+    else
+        keycode = 0;
+
+    return keycode;
 }

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [Qemu-devel] [PATCH] evdev_keycode_map
  2008-09-24 23:10 [Qemu-devel] [PATCH] evdev_keycode_map Dustin Kirkland
@ 2008-12-09 22:42 ` Riku Voipio
  2008-12-10  8:37   ` Dustin Kirkland
  2008-12-10 11:28   ` Daniel P. Berrange
  0 siblings, 2 replies; 8+ messages in thread
From: Riku Voipio @ 2008-12-09 22:42 UTC (permalink / raw)
  To: Dustin Kirkland; +Cc: qemu-devel

[-- Attachment #1: Type: text/plain, Size: 8895 bytes --]

On Wed, Sep 24, 2008 at 06:10:27PM -0500, Dustin Kirkland wrote:
> I'm attaching a patch that we have applied to the qemu implementation
> inside of the kvm package in Ubuntu.

Anyone know why this patch is still lingering?

> --- kvm-72+dfsg/qemu/configure	2008-07-27 08:20:10.000000000 -0500
> +++ kvm-72+dfsg/qemu/configure	2008-09-24 16:04:28.036791147 -0500
> @@ -1198,9 +1198,9 @@ if test "$sdl1" = "yes" ; then
>    echo "#define CONFIG_SDL 1" >> $config_h
>    echo "CONFIG_SDL=yes" >> $config_mak
>    if test "$target_softmmu" = "no" -o "$static" = "yes"; then
> -    echo "SDL_LIBS=$sdl_static_libs" >> $config_mak
> +    echo "SDL_LIBS=-lX11 $sdl_static_libs" >> $config_mak
>    else
> -    echo "SDL_LIBS=`$sdl_config --libs`" >> $config_mak
> +    echo "SDL_LIBS=-lX11 `$sdl_config --libs`" >> $config_mak
>    fi

These changes make the SDL code dependant on X ? This
would make compiling windows less trivial..

>    if [ "${aa}" = "yes" ] ; then
>      echo "SDL_CFLAGS=`$sdl_config --cflags` `aalib-config --cflags`" >> $config_mak
> --- kvm-72+dfsg/qemu/sdl.c	2008-07-27 05:08:56.000000000 -0500
> +++ kvm-72+dfsg/qemu/sdl.c	2008-09-24 16:39:19.713788782 -0500
> @@ -132,21 +132,7 @@ static uint8_t sdl_keyevent_to_keycode(c
>  
>  static uint8_t sdl_keyevent_to_keycode(const SDL_KeyboardEvent *ev)
>  {
> -    int keycode;
> -
> -    keycode = ev->keysym.scancode;
> -
> -    if (keycode < 9) {
> -        keycode = 0;
> -    } else if (keycode < 97) {
> -        keycode -= 8; /* just an offset */
> -    } else if (keycode < 212) {
> -        /* use conversion table */
> -        keycode = _translate_keycode(keycode - 97);
> -    } else {
> -        keycode = 0;
> -    }
> -    return keycode;
> +    return _translate_keycode(ev->keysym.scancode);
>  }
>  
>  #endif
> --- kvm-72+dfsg/qemu/x_keymap.c	2008-07-27 05:08:56.000000000 -0500
> +++ kvm-72+dfsg/qemu/x_keymap.c	2008-09-24 16:52:27.262129702 -0500
> @@ -24,7 +24,15 @@
>  #include "qemu-common.h"
>  #include "console.h"
>  
> -static const uint8_t x_keycode_to_pc_keycode[115] = {
> +#include <SDL/SDL_syswm.h>
> +#include <X11/XKBlib.h>
> +#include <stdbool.h>
> +#include <string.h>
> +
> +#define TRUE 1
> +#define FALSE 0
> +
> +static const uint8_t x_keycode_to_pc_keycode[61] = {
>     0xc7,      /*  97  Home   */
>     0xc8,      /*  98  Up     */
>     0xc9,      /*  99  PgUp   */
> @@ -86,27 +94,136 @@ static const uint8_t x_keycode_to_pc_key
>     0x51,         /* 155 KP_PgDn */
>     0x52,         /* 156 KP_Ins */
>     0x53,         /* 157 KP_Del */
> -   0x0,         /* 158 */
> -   0x0,         /* 159 */
> -   0x0,         /* 160 */
> -   0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,         /* 170 */
> -   0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,         /* 180 */
> -   0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,         /* 190 */
> -   0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,         /* 200 */
> -   0x0,         /* 201 */
> -   0x0,         /* 202 */
> -   0x0,         /* 203 */
> -   0x0,         /* 204 */
> -   0x0,         /* 205 */
> -   0x0,         /* 206 */
> -   0x0,         /* 207 */
> -   0x70,         /* 208 Hiragana_Katakana */
> -   0x0,         /* 209 */
> -   0x0,         /* 210 */
> -   0x73,         /* 211 backslash */
>  };
>  
> -uint8_t _translate_keycode(const int key)
> +/* This code was ported from gtk-vnc, to handle evdev keycode mapping by
> + * Dustin Kirkland <kirkland@canonical.com>, 24 September 2008.
> + *
> + * This table was put together by VirtualBox.  It's based on the information in
> + * /usr/share/X11/xkb/keycodes/evdev using the x_keycode_to_pc_keycode table
> + * to get the pc keycodes.
> + */
> +
> +static const uint8_t evdev_keycode_to_pc_keycode[61] = {
> +   0x0,         /*  97 EVDEV - RO   ("Internet" Keyboards) */
> +   0x0,         /*  98 EVDEV - KATA (Katakana) */
> +   0x0,         /*  99 EVDEV - HIRA (Hiragana) */
> +   0x79,        /* 100 EVDEV - HENK (Henkan) */
> +   0x70,        /* 101 EVDEV - HKTG (Hiragana/Katakana toggle) */
> +   0x7b,        /* 102 EVDEV - MUHE (Muhenkan) */
> +   0x0,         /* 103 EVDEV - JPCM (KPJPComma) */
> +   0x9c,        /* 104 EVDEV - KPEN */
> +   0x9d,        /* 105 EVDEV - RCTL */
> +   0xb5,        /* 106 EVDEV - KPDV */
> +   0xb7,        /* 107 EVDEV - PRSC ***FIXME*** */
> +   0xb8,        /* 108 EVDEV - RALT */
> +   0x0,         /* 109 EVDEV - LNFD ("Internet" Keyboards) */
> +   0xc7,        /* 110 EVDEV - HOME ***FIXME*** */
> +   0xc8,        /* 111 EVDEV - UP   */
> +   0xc9,        /* 112 EVDEV - PGUP */
> +   0xcb,        /* 113 EVDEV - LEFT */
> +   0xcd,        /* 114 EVDEV - RGHT */
> +   0xcf,        /* 115 EVDEV - END  */
> +   0xd0,        /* 116 EVDEV - DOWN */
> +   0xd1,        /* 117 EVDEV - PGDN */
> +   0xd2,        /* 118 EVDEV - INS  */
> +   0xd3,        /* 119 EVDEV - DELE */
> +   0x0,         /* 120 EVDEV - I120 ("Internet" Keyboards) */
> +   0x0,         /* 121 EVDEV - MUTE */
> +   0x0,         /* 122 EVDEV - VOL- */
> +   0x0,         /* 123 EVDEV - VOL+ */
> +   0x0,         /* 124 EVDEV - POWR */
> +   0x0,         /* 125 EVDEV - KPEQ */
> +   0x0,         /* 126 EVDEV - I126 ("Internet" Keyboards) */
> +   0x0,         /* 127 EVDEV - PAUS */
> +   0x0,         /* 128 EVDEV - ???? */
> +   0x0,         /* 129 EVDEV - I129 ("Internet" Keyboards) */
> +   0xf1,        /* 130 EVDEV - HNGL (Korean Hangul Latin toggle) */
> +   0xf2,        /* 131 EVDEV - HJCV (Korean Hangul Hanja toggle) */
> +   0x7d,        /* 132 EVDEV - AE13 (Yen) */
> +   0xdb,        /* 133 EVDEV - LWIN */
> +   0xdc,        /* 134 EVDEV - RWIN */
> +   0xdd,        /* 135 EVDEV - MENU */
> +   0x0,         /* 136 EVDEV - STOP */
> +   0x0,         /* 137 EVDEV - AGAI */
> +   0x0,         /* 138 EVDEV - PROP */
> +   0x0,         /* 139 EVDEV - UNDO */
> +   0x0,         /* 140 EVDEV - FRNT */
> +   0x0,         /* 141 EVDEV - COPY */
> +   0x0,         /* 142 EVDEV - OPEN */
> +   0x0,         /* 143 EVDEV - PAST */
> +   0x0,         /* 144 EVDEV - FIND */
> +   0x0,         /* 145 EVDEV - CUT  */
> +   0x0,         /* 146 EVDEV - HELP */
> +   0x0,         /* 147 EVDEV - I147 */
> +   0x0,         /* 148 EVDEV - I148 */
> +   0x0,         /* 149 EVDEV - I149 */
> +   0x0,         /* 150 EVDEV - I150 */
> +   0x0,         /* 151 EVDEV - I151 */
> +   0x0,         /* 152 EVDEV - I152 */
> +   0x0,         /* 153 EVDEV - I153 */
> +   0x0,         /* 154 EVDEV - I154 */
> +   0x0,         /* 155 EVDEV - I156 */
> +   0x0,         /* 156 EVDEV - I157 */
> +   0x0,         /* 157 EVDEV - I158 */
> +};
> +
> +static bool strstarts(const char *lhs, const char *rhs)
> +{
> +    if (strlen(lhs) < strlen(rhs))
> +        return false;
> +    return memcmp(lhs, rhs, strlen(rhs)) == 0;
> +}
> +
> +static bool check_for_evdev(void)
> +{
> +    SDL_SysWMinfo info;
> +    XkbDescPtr desc = NULL;
> +    bool has_evdev = FALSE;
> +    const char *keycodes;
> +
> +    SDL_VERSION(&info.version);
> +    if (!SDL_GetWMInfo(&info))
> +        goto out;
> +
> +    desc = XkbGetKeyboard (info.info.x11.display,
> +                XkbAllComponentsMask,
> +                XkbUseCoreKbd);
> +    if (!desc)
> +        goto out;
> +
> +    keycodes = XGetAtomName(info.info.x11.display, desc->names->keycodes);
> +    if (keycodes == NULL)
> +        fprintf(stderr, "qemu: warning: could not lookup keycode name\n");
> +    else if (strstarts(keycodes, "evdev_"))
> +        has_evdev = TRUE;
> +    else if (!strstarts(keycodes, "xfree86_"))
> +        fprintf(stderr, "qemu: warning: unknown keycodes `%s'\n", keycodes);
> +
> +    XkbFreeClientMap(desc, XkbGBN_AllComponentsMask, True);
> +
> +out:
> +    return has_evdev;
> +}
> +
> +
> +uint8_t _translate_keycode(int keycode)
>  {
> -	return x_keycode_to_pc_keycode[key];
> +    if (keycode < 9)
> +        keycode = 0;
> +    else if (keycode < 97)
> +        keycode -= 8; /* just an offset */
> +    else if (keycode < 158) {
> +        if (check_for_evdev())
> +            keycode = evdev_keycode_to_pc_keycode[keycode - 97];
> +        else
> +            keycode = x_keycode_to_pc_keycode[keycode - 97];

This is suboptimal, for every keycode translation we have several
rountrips to Xserver and back. Consider someone using a remote X
server. save the result of check_for_evdev() and use it in subsequent
calls.

> +    } else if (keycode == 208) /* Hiragana_Katakana */
> +        keycode = 0x70;
> +    else if (keycode == 211) /* backslash */
> +        keycode = 0x73;
> +    else
> +        keycode = 0;
> +
> +    return keycode;
>  }


-- 
"rm -rf" only sounds scary if you don't have backups

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 189 bytes --]

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [Qemu-devel] [PATCH] evdev_keycode_map
  2008-12-09 22:42 ` Riku Voipio
@ 2008-12-10  8:37   ` Dustin Kirkland
  2008-12-10  9:05     ` Riku Voipio
  2008-12-10 11:28   ` Daniel P. Berrange
  1 sibling, 1 reply; 8+ messages in thread
From: Dustin Kirkland @ 2008-12-10  8:37 UTC (permalink / raw)
  To: Riku Voipio; +Cc: qemu-devel

[-- Attachment #1: Type: text/plain, Size: 399 bytes --]

On Wed, 2008-12-10 at 00:42 +0200, Riku Voipio wrote:
> On Wed, Sep 24, 2008 at 06:10:27PM -0500, Dustin Kirkland wrote:
> > I'm attaching a patch that we have applied to the qemu implementation
> > inside of the kvm package in Ubuntu.
> 
> Anyone know why this patch is still lingering?

FYI, I submitted it to the upstream QEMU project.  It may have already
made it in there.

:-Dustin

[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 197 bytes --]

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [Qemu-devel] [PATCH] evdev_keycode_map
  2008-12-10  8:37   ` Dustin Kirkland
@ 2008-12-10  9:05     ` Riku Voipio
  0 siblings, 0 replies; 8+ messages in thread
From: Riku Voipio @ 2008-12-10  9:05 UTC (permalink / raw)
  To: Dustin Kirkland; +Cc: qemu-devel

[-- Attachment #1: Type: text/plain, Size: 506 bytes --]

On Wed, Dec 10, 2008 at 12:37:03AM -0800, Dustin Kirkland wrote:
> On Wed, 2008-12-10 at 00:42 +0200, Riku Voipio wrote:
> > Anyone know why this patch is still lingering?

> FYI, I submitted it to the upstream QEMU project.  It may have already
> made it in there.

Well it's not, and that is precisely why I replied to the mail where
you dropped to the patch to the qemu list.. I also had some questions
of your patch in the mail.


-- 
"rm -rf" only sounds scary if you don't have backups

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 189 bytes --]

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [Qemu-devel] [PATCH] evdev_keycode_map
  2008-12-09 22:42 ` Riku Voipio
  2008-12-10  8:37   ` Dustin Kirkland
@ 2008-12-10 11:28   ` Daniel P. Berrange
  2008-12-10 14:44     ` Anthony Liguori
  1 sibling, 1 reply; 8+ messages in thread
From: Daniel P. Berrange @ 2008-12-10 11:28 UTC (permalink / raw)
  To: qemu-devel; +Cc: Dustin Kirkland

On Wed, Dec 10, 2008 at 12:42:35AM +0200, Riku Voipio wrote:
> On Wed, Sep 24, 2008 at 06:10:27PM -0500, Dustin Kirkland wrote:
> > I'm attaching a patch that we have applied to the qemu implementation
> > inside of the kvm package in Ubuntu.
> 
> Anyone know why this patch is still lingering?
> 
> > --- kvm-72+dfsg/qemu/configure	2008-07-27 08:20:10.000000000 -0500
> > +++ kvm-72+dfsg/qemu/configure	2008-09-24 16:04:28.036791147 -0500
> > @@ -1198,9 +1198,9 @@ if test "$sdl1" = "yes" ; then
> >    echo "#define CONFIG_SDL 1" >> $config_h
> >    echo "CONFIG_SDL=yes" >> $config_mak
> >    if test "$target_softmmu" = "no" -o "$static" = "yes"; then
> > -    echo "SDL_LIBS=$sdl_static_libs" >> $config_mak
> > +    echo "SDL_LIBS=-lX11 $sdl_static_libs" >> $config_mak
> >    else
> > -    echo "SDL_LIBS=`$sdl_config --libs`" >> $config_mak
> > +    echo "SDL_LIBS=-lX11 `$sdl_config --libs`" >> $config_mak
> >    fi
> 
> These changes make the SDL code dependant on X ? This
> would make compiling windows less trivial..

It ought to be possible to just #ifdef out the bit of the code which 
checks for evdev on non-Linux, and just default to the existing 
mapping QEMU had.

> > +uint8_t _translate_keycode(int keycode)
> >  {
> > -	return x_keycode_to_pc_keycode[key];
> > +    if (keycode < 9)
> > +        keycode = 0;
> > +    else if (keycode < 97)
> > +        keycode -= 8; /* just an offset */
> > +    else if (keycode < 158) {
> > +        if (check_for_evdev())
> > +            keycode = evdev_keycode_to_pc_keycode[keycode - 97];
> > +        else
> > +            keycode = x_keycode_to_pc_keycode[keycode - 97];
> 
> This is suboptimal, for every keycode translation we have several
> rountrips to Xserver and back. Consider someone using a remote X
> server. save the result of check_for_evdev() and use it in subsequent
> calls.

Sub-optimal is an understatement :-) Easiest would be to  declare
another "static uint8_t *keymap", and at startup check for evdev
and initialize this to point to either the PC or evdev key table.

Daniel
-- 
|: Red Hat, Engineering, London   -o-   http://people.redhat.com/berrange/ :|
|: http://libvirt.org  -o-  http://virt-manager.org  -o-  http://ovirt.org :|
|: http://autobuild.org       -o-         http://search.cpan.org/~danberr/ :|
|: GnuPG: 7D3B9505  -o-  F3C9 553F A1DA 4AC2 5648 23C1 B3DF F742 7D3B 9505 :|

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [Qemu-devel] [PATCH] evdev_keycode_map
  2008-12-10 11:28   ` Daniel P. Berrange
@ 2008-12-10 14:44     ` Anthony Liguori
  2008-12-25 23:17       ` andrzej zaborowski
  0 siblings, 1 reply; 8+ messages in thread
From: Anthony Liguori @ 2008-12-10 14:44 UTC (permalink / raw)
  To: Daniel P. Berrange, qemu-devel; +Cc: Dustin Kirkland

Daniel P. Berrange wrote:
> On Wed, Dec 10, 2008 at 12:42:35AM +0200, Riku Voipio wrote:
>   
>> On Wed, Sep 24, 2008 at 06:10:27PM -0500, Dustin Kirkland wrote:
>>     
>>> I'm attaching a patch that we have applied to the qemu implementation
>>> inside of the kvm package in Ubuntu.
>>>       
>> Anyone know why this patch is still lingering?
>>
>>     
>>> --- kvm-72+dfsg/qemu/configure	2008-07-27 08:20:10.000000000 -0500
>>> +++ kvm-72+dfsg/qemu/configure	2008-09-24 16:04:28.036791147 -0500
>>> @@ -1198,9 +1198,9 @@ if test "$sdl1" = "yes" ; then
>>>    echo "#define CONFIG_SDL 1" >> $config_h
>>>    echo "CONFIG_SDL=yes" >> $config_mak
>>>    if test "$target_softmmu" = "no" -o "$static" = "yes"; then
>>> -    echo "SDL_LIBS=$sdl_static_libs" >> $config_mak
>>> +    echo "SDL_LIBS=-lX11 $sdl_static_libs" >> $config_mak
>>>    else
>>> -    echo "SDL_LIBS=`$sdl_config --libs`" >> $config_mak
>>> +    echo "SDL_LIBS=-lX11 `$sdl_config --libs`" >> $config_mak
>>>    fi
>>>       
>> These changes make the SDL code dependant on X ? This
>> would make compiling windows less trivial..
>>     
>
> It ought to be possible to just #ifdef out the bit of the code which 
> checks for evdev on non-Linux, and just default to the existing 
> mapping QEMU had.
>   

This is what's required for merging.  SDL X11 support needs to be probed 
at configure time, an appropriate #define needs to be added to config.h, 
and then the detection code needs to be enabled conditionally based on 
that #define.

Otherwise, non-X11 SDL platforms will stop building which certainly 
isn't acceptable.

Regards,

Anthony Liguori

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [Qemu-devel] [PATCH] evdev_keycode_map
  2008-12-10 14:44     ` Anthony Liguori
@ 2008-12-25 23:17       ` andrzej zaborowski
  2008-12-26 18:53         ` Anthony Liguori
  0 siblings, 1 reply; 8+ messages in thread
From: andrzej zaborowski @ 2008-12-25 23:17 UTC (permalink / raw)
  To: qemu-devel; +Cc: Dustin Kirkland

2008/12/10 Anthony Liguori <anthony@codemonkey.ws>:
> Daniel P. Berrange wrote:
>>
>> On Wed, Dec 10, 2008 at 12:42:35AM +0200, Riku Voipio wrote:
>>
>>>
>>> On Wed, Sep 24, 2008 at 06:10:27PM -0500, Dustin Kirkland wrote:
>>>
>>>>
>>>> I'm attaching a patch that we have applied to the qemu implementation
>>>> inside of the kvm package in Ubuntu.
>>>>
>>>
>>> Anyone know why this patch is still lingering?
>>>
>>>
>>>>
>>>> --- kvm-72+dfsg/qemu/configure  2008-07-27 08:20:10.000000000 -0500
>>>> +++ kvm-72+dfsg/qemu/configure  2008-09-24 16:04:28.036791147 -0500
>>>> @@ -1198,9 +1198,9 @@ if test "$sdl1" = "yes" ; then
>>>>   echo "#define CONFIG_SDL 1" >> $config_h
>>>>   echo "CONFIG_SDL=yes" >> $config_mak
>>>>   if test "$target_softmmu" = "no" -o "$static" = "yes"; then
>>>> -    echo "SDL_LIBS=$sdl_static_libs" >> $config_mak
>>>> +    echo "SDL_LIBS=-lX11 $sdl_static_libs" >> $config_mak
>>>>   else
>>>> -    echo "SDL_LIBS=`$sdl_config --libs`" >> $config_mak
>>>> +    echo "SDL_LIBS=-lX11 `$sdl_config --libs`" >> $config_mak
>>>>   fi
>>>>
>>>
>>> These changes make the SDL code dependant on X ? This
>>> would make compiling windows less trivial..
>>>
>>
>> It ought to be possible to just #ifdef out the bit of the code which
>> checks for evdev on non-Linux, and just default to the existing mapping QEMU
>> had.
>>
>
> This is what's required for merging.  SDL X11 support needs to be probed at
> configure time, an appropriate #define needs to be added to config.h, and
> then the detection code needs to be enabled conditionally based on that
> #define.
>
> Otherwise, non-X11 SDL platforms will stop building which certainly isn't
> acceptable.

You can have X11 support compiled in and not use it, SDL can be
compiled with >1 backends.

Cheers

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [Qemu-devel] [PATCH] evdev_keycode_map
  2008-12-25 23:17       ` andrzej zaborowski
@ 2008-12-26 18:53         ` Anthony Liguori
  0 siblings, 0 replies; 8+ messages in thread
From: Anthony Liguori @ 2008-12-26 18:53 UTC (permalink / raw)
  To: qemu-devel

On Thu, Dec 25, 2008 at 5:17 PM, andrzej zaborowski <balrogg@gmail.com> wrote:
> 2008/12/10 Anthony Liguori <anthony@codemonkey.ws>:
>> Otherwise, non-X11 SDL platforms will stop building which certainly isn't
>> acceptable.
>
> You can have X11 support compiled in and not use it, SDL can be
> compiled with >1 backends.

I think that proper error checking will handle this case but it should
be tested.

Regards,

Anthony Liguori

> Cheers
>
>
>

^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2008-12-26 18:53 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-09-24 23:10 [Qemu-devel] [PATCH] evdev_keycode_map Dustin Kirkland
2008-12-09 22:42 ` Riku Voipio
2008-12-10  8:37   ` Dustin Kirkland
2008-12-10  9:05     ` Riku Voipio
2008-12-10 11:28   ` Daniel P. Berrange
2008-12-10 14:44     ` Anthony Liguori
2008-12-25 23:17       ` andrzej zaborowski
2008-12-26 18:53         ` Anthony Liguori

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).