From: Gerd Hoffmann <kraxel@redhat.com>
To: qemu-devel@nongnu.org
Cc: Gerd Hoffmann <kraxel@redhat.com>
Subject: [Qemu-devel] [PATCH 0/4] input: add virtio input devices
Date: Tue, 3 Jun 2014 10:42:51 +0200 [thread overview]
Message-ID: <1401784975-5104-1-git-send-email-kraxel@redhat.com> (raw)
Hi,
This series adds virtio input support to qemu. virtio
input basically sends linux evdev events over virtio.
Patch #1 is just the pci id. Patch #2 adds the core code
as abstract qom class. Patch #3 adds emulated devices on
top of that, and patch #4 adds evdev passthrough.
The corresponding linux kernel driver is here:
https://www.kraxel.org/cgit/linux/log/?h=virtio-input
cheers,
Gerd
Gerd Hoffmann (4):
pci: add virtio input pci device id
virtio-input: core code & base class
virtio-input: emulated devices
virtio-input: evdev passthrough
docs/specs/pci-ids.txt | 1 +
hw/input/Makefile.objs | 6 +
hw/input/virtio-input-hid.c | 484 +++++++++++++++++++++++++++++++++++++++
hw/input/virtio-input-host.c | 172 ++++++++++++++
hw/input/virtio-input.c | 284 +++++++++++++++++++++++
hw/virtio/virtio-pci.c | 135 +++++++++++
hw/virtio/virtio-pci.h | 37 +++
include/hw/pci/pci.h | 1 +
include/hw/virtio/virtio-input.h | 140 +++++++++++
include/hw/virtio/virtio.h | 1 +
10 files changed, 1261 insertions(+)
create mode 100644 hw/input/virtio-input-hid.c
create mode 100644 hw/input/virtio-input-host.c
create mode 100644 hw/input/virtio-input.c
create mode 100644 include/hw/virtio/virtio-input.h
--
1.8.3.1
next reply other threads:[~2014-06-03 8:51 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-06-03 8:42 Gerd Hoffmann [this message]
2014-06-03 8:42 ` [Qemu-devel] [PATCH 1/4] pci: add virtio input pci device id Gerd Hoffmann
2014-06-03 8:42 ` [Qemu-devel] [PATCH 2/4] virtio-input: core code & base class Gerd Hoffmann
2014-06-03 8:42 ` [Qemu-devel] [PATCH 3/4] virtio-input: emulated devices Gerd Hoffmann
2014-06-03 8:42 ` [Qemu-devel] [PATCH 4/4] virtio-input: evdev passthrough Gerd Hoffmann
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1401784975-5104-1-git-send-email-kraxel@redhat.com \
--to=kraxel@redhat.com \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).