On Mon, Sep 16, 2019 at 12:34:31PM +0300, Felipe Balbi wrote: > Add support for Intel PSE Quadrature Encoder > > Signed-off-by: Felipe Balbi <felipe.balbi@xxxxxxxxxxxxxxx> > --- > > Hi William, > > Here's a first cut of the ported driver. Note that this is really an RFC as > there's still quite a bit I don't fully understand. I've left some of my old > sysfs files in there just to keep track of which features I'm still missing. Hi Felipe, That is understandable since this is an RFC; I expect in your final version those sysfs files will be Counter subsystem extension attributes. For reference, the existing Counter subsystem attributes are documented in the Documentation/ABI/testing/sysfs-bus-counter file. If you have any new attributes specific to the Intel QEP driver, add them as a new Documentation/ABI/testing/sysfs-bus-counter-intel-qep file. > If understood this correctly, I should add noise filtering as a signal > extension, right? Same for Input Swap. Determining the type of extension to create is a matter of scope. * Signal extensions are attributes which expose information/control specific to a Signal. These types of attributes will exist under a Signal's directory in sysfs. For example, if have an invert feature for a Signal, you can have a Signal extension called "invert" that toggles that feature: /sys/bus/counter/devices/counterX/signalY/invert * Count extensions are attributes which expose information/control specific to a Count. These type of attributes will exist under a Count's directory in sysfs. For example, if you want to pause/unpause a Count from updating, you could have a Count extension called "enable" that toggles such: /sys/bus/counter/devices/counterX/countY/enable * Device extensions are attributes which expose information/control non-specific to a particular Count or Signal. This is where you would put your global features or other miscellanous functionality. For example, if your device has an overtemp sensor, you could report the chip overheated via a device extension called "error_overtemp": /sys/bus/counter/devices/counterX/error_overtemp I'm not very familiar with the Intel QEP features, so I'll need your help clarifying some of it for me. I'm assuming "noise filtering" is a feature you can enable per individual Signal (is this correct?). If so, then it would be implemented as a Signal extension, maybe as a /sys/bus/counter/devices/counterX/signalY/noise_filter_enable file. Otherwise, it would be a device attribute if it enables noise filtering over all Signals. Is "Input Swap" swapping the Phase A and Phase B signal lines for each Count? If so, this would be a Count extension if you can configure it per Count; otherwise a device extension if it's globally enabled for all Counts. If you're still having trouble figuring out which type of extension to use, give me a simple breakdown of the features you are trying to support with these attributes and I should be able to specify which type works best for each. > How should we handle the reset mode of the device? And mode of operation? Is "reset mode" specifying the condition that causes a Count's count to be reset back to a value of 0? If so, I assume "index" means an active level on the index line will reset the count; does "maximum" mean the index line is ignored and the reset operation is simply activated once the ceiling is reached? As well, I'm assuming this is a global configuration for all counts. If my assumptions are correct here, then this behavior can be exposed by creating two device extensions: "preset" and "preset_enable"; these should be based on the existing two same-named Count attributes (see the Documentation/ABI/testing/sysfs-bus-counter file). * /sys/bus/counter/devices/counterX/preset For the Intel QEP, this will be a read-only that always report "0". * /sys/bus/counter/devices/counterX/preset_enable Assuming "maximum" is just equivalent to ignoring index, preset_enable can toggle between the two modes as a simple boolean: "1" = "index" and "0" = "maximum". If I assumed incorrectly, please let me know and we can discuss the possibility of a new attribute (perhaps "preset_mode"). Take a look inside 104-quad-8.c to see how it handles index lines and reseting the counts; "preset" and "preset_enable" extensions are specified in the quad8_count_ext array. > If you have any ideas, let me know. > > cheers Since I expect a good amount of this code to change once the extensions are added, I'll hold off on a more in-depth code review until we get it closer to what it'll actually look like. From skimming the code in this RFC, it seems like you have the core Counter subsystem functions and structures use correct, so I think it'll be the implementations of the extensions that we'll be focusing on. William Breathitt Gray