From: Marcel Holtmann <marcel@holtmann.org>
To: Andre Guedes <andre.guedes@openbossa.org>
Cc: David Herrmann <dh.herrmann@googlemail.com>,
linux-input@vger.kernel.org, jkosina@suse.cz, chen.ganir@ti.com,
claudio.takahasi@openbossa.org, jprvita@openbossa.org,
linux-bluetooth@vger.kernel.org, Vijaykumar.Dadmode@csr.com
Subject: Re: [RFC 1/1] HID: User-space I/O driver support for HID subsystem
Date: Fri, 16 Mar 2012 10:15:48 -0700 [thread overview]
Message-ID: <1331918148.14217.173.camel@aeonflux> (raw)
In-Reply-To: <CACJA=fVLRuRvvOTkDmuxVckW7oqM_4vk+NCN5fP1WtkGMV-NDw@mail.gmail.com>
Hi Andre,
> > This driver allows to write I/O drivers in user-space and feed the input
> > into the HID subsystem. It operates on the same level as USB-HID and
> > Bluetooth-HID (HIDP). It does not provide support to write special HID
> > device drivers but rather provides support for user-space I/O devices to
> > feed their data into the kernel HID subsystem. The HID subsystem then
> > loads the HID device drivers for the device and provides input-devices
> > based on the user-space HID I/O device.
> >
> > This driver register a new char-device (/dev/uhid). A user-space process
> > has to open this file for each device that it wants to provide to the
> > kernel. It can then use write/read to communicate with the UHID driver.
> > Both input and output data is sent with a uhid_event structure. The "type"
> > field of the structure specifies what kind of event is sent. There is a
> > file in Documentation/ explaining the ABI.
> >
> > Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
> > ---
> > Documentation/hid/uhid.txt | 95 +++++++++
> > drivers/hid/Kconfig | 21 ++
> > drivers/hid/Makefile | 2 +-
> > drivers/hid/uhid.c | 502 ++++++++++++++++++++++++++++++++++++++++++++
> > include/linux/uhid.h | 71 +++++++
> > 5 files changed, 690 insertions(+), 1 deletion(-)
> > create mode 100644 Documentation/hid/uhid.txt
> > create mode 100644 drivers/hid/uhid.c
> > create mode 100644 include/linux/uhid.h
> >
> > diff --git a/Documentation/hid/uhid.txt b/Documentation/hid/uhid.txt
> > new file mode 100644
> > index 0000000..67b138d
> > --- /dev/null
> > +++ b/Documentation/hid/uhid.txt
> > @@ -0,0 +1,95 @@
> > + UHID - User-space I/O driver support for HID subsystem
> > + ========================================================
> > +
> > +The UHID driver provides an interface for user-space I/O drivers to feed their
> > +data into the HID subsystem. The HID subsystem then parses the HID reports and
> > +loads the corresponding HID device driver which then provides the parsed data
> > +via input-devices to user-space.
> > +
> > +This allows user-space to operate on the same level as USB-HID, Bluetooth-HID
> > +and similar. It does not provide a way to write HID device drivers, though! Use
> > +HIDRAW for this purpose.
> > +
> > +UHID dynamically allocates the minor/major number, meaning that you should rely
> > +on udev to create the UHID device node. Typically this is created as /dev/uhid.
> > +
> > +The UHID API
> > +------------
> > +
> > +For each device that you want to register with the HID core, you need to open a
> > +separate file-descriptor on /dev/uhid. All communication is done by read()'ing
> > +or write()'ing "struct uhid_event" objects to the file. Non-blocking operations
> > +via O_NONBLOCK are supported.
> > +
> > +struct uhid_event {
> > + __u32 type;
> > + ... payload ...
> > +};
> > +
> > +write()
> > +-------
> > +write() allows you to modify the state of the device and feed input data into
> > +the kernel. The following types are supported: UHID_CREATE, UHID_DESTROY and
> > +UHID_INPUT.
> > +
> > + UHID_CREATE:
> > + This creates the internal HID device. No I/O is possible until you send this
> > + event to the kernel. The payload is of type struct uhid_create_req and
> > + contains information about your device.
> > +
> > + UHID_DESTROY:
> > + This destroys the internal HID device. No further I/O will be accepted. There
> > + may still be pending messages that you can receive with read() but no further
> > + UHID_INPUT events can be sent to the kernel.
> > + You can create a new device by sending UHID_CREATE again. There is no need to
> > + reopen the character device.
> > +
> > + UHID_INPUT:
> > + You must send UHID_CREATE before sending input to the kernel! This event
> > + contains a data-payload. This is the raw data that you read from your device.
> > + The kernel will parse the HID reports and react on it.
> > +
> > +read()
> > +------
> > +read() will return a queued ouput report. These output reports can be of type
> > +UHID_START, UHID_STOP, UHID_OPEN, UHID_CLOSE, UHID_OUTPUT or UHID_OUTPUT_EV. No
> > +reaction is required to any of them but you should handle them according to your
> > +needs. Only UHID_OUTPUT and UHID_OUTPUT_EV have payloads.
> > +
> > + UHID_START:
> > + This is sent when the HID device is started. Consider this as an answer to
> > + UHID_CREATE. This is always the first event that is sent. No I/O is possible
> > + before you read this.
> > +
> > + UHID_STOP:
> > + This is sent when the HID device is stopped. Consider this as an answer to
> > + UHID_DESTROY. No further I/O will be possible after receiving this.
> > + If the kernel HID device driver closes the device manually (that is, you
> > + didn't send UHID_DESTROY) then you should consider this device closed and send
> > + an UHID_DESTROY event. You may want to reregister your device, though.
> > +
> > + UHID_OPEN:
> > + This is sent when the HID device is opened. That is, the data that the HID
> > + device provides is read by some other process. You may ignore this event but
> > + it is useful for power-management. As long as you haven't received this event
> > + there is actually no other process that reads your data so there is no need to
> > + send UHID_INPUT events to the kernel.
> > +
> > + UHID_CLOSE:
> > + This is sent when there are no more processes which read the HID data. It is
> > + the counterpart of UHID_OPEN and you may as well ignore this event.
> > +
> > + UHID_OUTPUT:
> > + This is sent if the HID device driver wants to send raw data to the I/O
> > + device. You should read the payload and forward it to the device. The payload
> > + is of type "struct uhid_data_req".
> > + This may be received even though you haven't received UHID_OPEN, yet.
> > +
> > + UHID_OUTPUT_EV:
> > + Same as UHID_OUTPUT but this contains a "struct input_event" as payload. This
> > + is called for force-feedback, LED or similar events which are received through
> > + an input device by the HID subsystem. You should convert this into raw reports
> > + and send them to your device similar to events of type UHID_OUTPUT.
> > +
> > +Document by:
> > + David Herrmann <dh.herrmann@googlemail.com>
>
> What do you think about using ioctl() to handle creating, destroying
> and configuring internal hid devices and leave read() and write() to
> handle HID reports?
>
> This way, at user-space, we wouldn't need to build uhid_event messages
> for every HID report we get. We would just write() the HID report
> right away.
we could also just use scatter gather writes and reads. So that is not
really a problem as long as the "header" has a fixed length.
Regards
Marcel
next prev parent reply other threads:[~2012-03-16 17:16 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-03-16 14:53 [RFC 0/1] User-space I/O driver for HID subsystem (Bluetooth-LE HIDP) David Herrmann
2012-03-16 14:53 ` [RFC 1/1] HID: User-space I/O driver support for HID subsystem David Herrmann
[not found] ` <1331909617-22106-2-git-send-email-dh.herrmann-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org>
2012-03-16 16:00 ` Marcel Holtmann
2012-03-16 18:51 ` David Herrmann
2012-03-16 20:51 ` Marcel Holtmann
2012-03-16 17:00 ` Andre Guedes
2012-03-16 17:15 ` Marcel Holtmann [this message]
2012-03-16 19:01 ` David Herrmann
2012-03-16 20:45 ` Marcel Holtmann
2012-03-16 23:38 ` Vinicius Costa Gomes
2012-03-26 17:38 ` David Herrmann
[not found] ` <1331909617-22106-1-git-send-email-dh.herrmann-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org>
2012-03-16 14:58 ` [RFC 0/1] User-space I/O driver for HID subsystem (Bluetooth-LE HIDP) Jiri Kosina
[not found] ` <alpine.LNX.2.00.1203161556540.18356-ztGlSCb7Y1iN3ZZ/Hiejyg@public.gmane.org>
2012-03-16 16:03 ` Marcel Holtmann
2012-03-16 16:04 ` Anderson Lizardo
[not found] ` <CAJdJm_NHvdHNUsYh1tOkXEd9u5cGLszDCsXTVrwG=TjRxbNFuw-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2012-03-16 17:28 ` Joao Paulo Rechi Vita
2012-03-16 17:50 ` Joao Paulo Rechi Vita
2012-03-16 17:57 ` Marcel Holtmann
2012-03-16 18:09 ` Dmitry Torokhov
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=1331918148.14217.173.camel@aeonflux \
--to=marcel@holtmann.org \
--cc=Vijaykumar.Dadmode@csr.com \
--cc=andre.guedes@openbossa.org \
--cc=chen.ganir@ti.com \
--cc=claudio.takahasi@openbossa.org \
--cc=dh.herrmann@googlemail.com \
--cc=jkosina@suse.cz \
--cc=jprvita@openbossa.org \
--cc=linux-bluetooth@vger.kernel.org \
--cc=linux-input@vger.kernel.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).