From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:57906) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Whzgp-0007gM-JF for qemu-devel@nongnu.org; Wed, 07 May 2014 07:07:13 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Whzgf-0002ja-NQ for qemu-devel@nongnu.org; Wed, 07 May 2014 07:07:07 -0400 Received: from mx1.redhat.com ([209.132.183.28]:8612) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Whzgf-0002iT-G3 for qemu-devel@nongnu.org; Wed, 07 May 2014 07:06:57 -0400 Received: from int-mx10.intmail.prod.int.phx2.redhat.com (int-mx10.intmail.prod.int.phx2.redhat.com [10.5.11.23]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id s47B6t0L030001 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=OK) for ; Wed, 7 May 2014 07:06:56 -0400 From: Gerd Hoffmann Date: Wed, 7 May 2014 13:06:39 +0200 Message-Id: <1399460809-15975-1-git-send-email-kraxel@redhat.com> Subject: [Qemu-devel] [PATCH v2 00/10] input layer rework continued List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Gerd Hoffmann Hi, Series adds some keyboard mapping helpers and starts switching over devices to the new input api. New in v2: - sparc kbd fixes, according to reports by Olivier Danet, please verify. - picked up ps/2 buffer size fix by Gonglei. cheers, Gerd Gerd Hoffmann (9): input: key mapping helpers input: add qemu_input_handler_deactivate input: use KeyValue directly in sendkey monitor command input: switch ps/2 kbd to new input api input: switch ps/2 mouse to new input api input: switch sparc32 kbd to new input api input: remove sparc keymap hack input: sparc32 kbd: fix some key mappings input: sparc32 kbd: claim en-us layout Gonglei (1): ps2: set ps/2 output buffer size as the same as kernel hw/char/escc.c | 233 +++++++++++++++++++++++++++++++++++++++-------------- hw/input/ps2.c | 166 +++++++++++++++++++++++++++++++++----- include/ui/input.h | 5 ++ trace-events | 4 +- ui/Makefile.objs | 3 +- ui/input-keymap.c | 191 +++++++++++++++++++++++++++++++++++++++++++ ui/input-legacy.c | 226 +++++++-------------------------------------------- ui/input.c | 7 ++ 8 files changed, 553 insertions(+), 282 deletions(-) create mode 100644 ui/input-keymap.c -- 1.8.3.1