Re: [PATCH 0/4] Introduce the Counter character device interface
From: Jonathan Cameron <jic23@kernel.org>
Date: 2020-05-03 15:06:01
Also in:
linux-iio, lkml
On Fri, 1 May 2020 11:46:10 -0400 William Breathitt Gray [off-list ref] wrote:
On Thu, Apr 30, 2020 at 10:13:45PM +0200, Alexandre Belloni wrote:quoted
Hi, On 29/04/2020 14:11:34-0400, William Breathitt Gray wrote:quoted
Over the past couple years we have noticed some shortcomings with the Counter sysfs interface. Although useful in the majority of situations, there are certain use-cases where interacting through sysfs attributes can become cumbersome and inefficient. A desire to support more advanced functionality such as timestamps, multi-axis positioning tables, and other such latency-sensitive applications, has motivated a reevaluation of the Counter subsystem. I believe a character device interface will be helpful for this more niche area of counter device use. To quell any concerns from the offset: this patchset makes no changes to the existing Counter sysfs userspace interface -- existing userspace applications will continue to work with no modifications necessary. I request that driver maintainers please test their applications to verify that this is true, and report any discrepancies if they arise.On that topic, I'm wondering why the counter subsystem uses /sys/bus instead of /sys/class that would be more natural for a class of devices. I can't see how counters would be considered busses. I think you should consider moving it over to /sys/class (even if deprecating /sys/bus/counter will be long).At the time I wasn't quite familiar with sysfs development so I was following the iio sysfs code rather closely. However, I see now that you're probably right: this isn't really a bus but rather a collection of various types of counters -- i.e. a class of devices. Perhaps I should migrate this then to /sys/class/counter. Of course, the /sys/bus/counter location will have to remain for compatibility with existing applications, but I think a simple symlink to the new /sys/class/counter location should suffice for that. If anyone sees an issue with this give me a heads up.quoted
quoted
Interaction with Counter character devices occurs via ioctl commands. This allows userspace applications to access and set counter data using native C datatypes rather than working through string translations.I agree with David that you should consider using read to retrieve the counter data as this will simplify interrupt handling/polling and blocking/non-blocking reads can be used by an application. ABI wise, this can also be a good move as you could always consider having an ioctl requesting a specific format when reading the device so you are not stuck with the initial format you are going to choose.My hesitation to implement support for read/write calls is due to a concern that we will end up with various incompatible formats between counter drivers (thus requiring users to have intimate knowledge of the drivers and therefore defeating the purpose of a subsystem). However, if we can standardize on a format that is flexible enough to work for all counter drivers, then read/write calls should not be a problem.
Absolutely. So the different approaches that have been taken to this approach... 1) IIO, describe the format in sysfs. Highest performance option but heavily constrained in what the data flow can be. Was it a good idea? I think the jury is still out on that after 11 or more years :) 2) Input (evdev) - fixed length self describing records. High overhead, inflexible format, but just fine for the fairly sensible sorts of things that make up human input. https://elixir.bootlin.com/linux/latest/source/include/uapi/linux/input.h#L28
I think a general format could be possible. For example, the counter character device can return a standard header data at the start which provides general information about the counter device: number of counters, number or signals, number of extensions, etc. From this information, offsets can be computed (or perhaps provided by the device) to where the binary data for the count, extension, etc., can be read or written. Interrupts can then be handled as blocking reads, as could other types of events we implement. Would something like this work well?
It's kind of somewhere between IIO and Input. Firstly think about what you might want to actually have out. Mostly I'm thinking timestamp + count value from devices that self clock. Perhaps additional flag to indicate a preset has been hit. Variable length records are a pain. Reality is neither IIO* nor input actually uses them (*once running :) ). Fixed length lets you push it through a kfifo to deal with userspace being slow to read it. So I'd think about doing it the input way and using multiple records for multiple counters. Timestamp can be used to work out they were at the same instant (or various other options such as an 'end' flag). More fun occurs if you want to start controlling 'triggers' etc as that leads to an explosion of the control interface that we still haven't gotten fully sorted in IIO. Good luck :) Jonathan
William Breathitt Grayquoted
quoted
2. Should device driver callbacks return int or long? I sometimes see error values returned as long (e.g. PTR_ERR(), the file_operations structure's ioctl callbacks, etc.); when is it necessary to return long as opposed to int?You should use a long if you ever have to return a point as it is guaranteed to have the correct size. Else, just stick to an int if you are not going to overflow it.quoted
3. I only implemented the unlocked_ioctl callback. Should I implement a compat_ioctl callback as well?The compat_ioctl is to handle 32bit userspace running on a 64bit kernel. If your structures have the same size in both cases, then you don't have to implement compat_ioctl. Have a look at Documentation/driver-api/ioctl.rst -- Alexandre Belloni, Bootlin Embedded Linux and Kernel engineering https://bootlin.com
_______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel