Re: [RFC v2 0/1] User-space HID I/O Driver
From: Jiri Kosina <hidden>
Date: 2012-03-28 10:50:16
Also in:
linux-input
On Mon, 26 Mar 2012, David Herrmann wrote:
This is the second revision of the UHID driver. It basically allows to register hid_ll_drivers in user-space. This is needed to implement Bluetooth HoG (HID over GATT) as discussed earlier. Changes: - Improved documentation - Added example which emulates a 3-button mouse with wheel in user-space - Fixed some remaining bugs I didn't change any major parts. I checked that writev/readv work correctly and I documented how to use it in ./Documentation/hid/uhid.txt. For a full example please see ./samples/uhid/uhid-example.c. While developing it I also considered moving HIDP to user-space. If we do BT-HoG in user-space, it should be easier to also move HIDP to user-space. The current in-kernel HIDP is buggy, anyway. Still open points: - How do I get a proper "parent" pointer for uhid->hid->dev.parent? I could use the uhid misc device as parent or is there some device-struct inside "struct file"?
Misc device sounds like the best we could get. You can't really use anything else from struct file than private_data and pointer to dentry (but that's likely not something you'd like to be using here).
- Should user-space be able to provide "uniq" and "phys" names for HID-devices?
I think so ... it would corelate with the in-kernel implementation, where those are derived from real devices in the in-kernel driver.
- uhid_event is quite big (>4KB) which makes uhid_device really big (~70KB). Should I allocate the ring-buffer dynamically to avoid this?
Yes, please.
- Should I provide the quirks field to user-space? Probably as part of UHID_START?
In order to have the situation mirroring what we already have, it might make sense. On the other hand -- how about adding the propagation only when it turns out that it's actually needed? (i.e. by finding out the first device, for which we need that).
- Could someone review x32 COMPAT stuff? I tried to align all the public structures correctly so I could even remove the __packed attribute. Anyway, I thought keeping it is probably better for future extensions.
Will look into it.
I spent some time on the locks and they seem all fine. I couldn't find any races. Jiri, Marcel, could you review the design and tell me what you think?
Generally, I like it. Thanks a lot for the effort. I will be going through the code in a more detailed way hopefully by the end of this week and will send you some comments (if any). Thanks, -- Jiri Kosina SUSE Labs