On Thu, 27 Feb 2025 09:46:06 +0200 Matti Vaittinen <mazziesaccount@xxxxxxxxx> wrote: > On 26/02/2025 18:10, David Lechner wrote: > > On 2/26/25 12:28 AM, Matti Vaittinen wrote: > >> Hi David, > >> > >> Thanks for taking a look at this :) > >> > >> On 26/02/2025 02:26, David Lechner wrote: > >>> On 2/24/25 12:33 PM, Matti Vaittinen wrote: > > ... > > >> > >>> Similarly, on several drivers we added recently that make use of adc.yaml > >>> (adi,ad7380, adi,ad4695) we wrote the bindings with the intention that > >>> if a channel was wired in the default configuration, then you would just > >>> omit the channel node for that input pin. Therefore, this helper couldn't > >>> be used by these drivers since we always have a fixed number of channels > >>> used in the driver regardless of if there are explicit channel nodes in > >>> the devicetree or not. > >> > >> I think this works with the ICs where channels, indeed, always are there. But this is not the case with _all_ ICs. And in order to keep the consistency I'd actually required that if channels are listed in the DT, then _all_ the channels must be listed. Else it becomes less straightforward for people to understand how many channels there are based on the device tree. I believe this was also proposed by Jonathan during the v1 review: > >> > >>>> Hmm. That'd mean the ADC channels _must_ be defined in DT in order to be > >>>> usable(?) Well, if this is the usual way, then it should be well known > >>>> by users. Thanks. So there is some history here that complicates things. 1) Originally we always provided all channels. Easy case :) 2) Along came SoC ADC users who were unhappy with this not so much because of the case Matti hit where the channel can be something else but more because it's not unusual to either not wire up some pins on an SoC or there are multiple packages that we don't otherwise distinguish (as no software differences really) in which some internal pins never reach the ones on the package. Various solutions initially existed for this (you can find things like xxx,channels properties in some bindings.) 3) Then along came devices where we wanted per channel config. There were some 'interesting' bindings for that as well for a while but eventually we decided on channel nodes when needed. Those always allowed drivers to supply extra channels that didn't have nodes though (that's a driver /binding choice and motivated somewhat by whether the unwired pin thing matters - there are ADC package variants where this happens but it is rare unlike for SoCs where it seems to be common). From this discussion it occurs to me that we maybe want to make sure that binding docs state what is expected here clearly. If there is a concept of a 'default' for missing channel nodes then we need to say what it is. Property defaults will give us most of that but don't cover everything. 4) Now we had channel nodes we can also use them for (2). In those cases on a device specific case we allow for channels that don't have nodes to be hidden. There is often a fallback for this which is more about how bindings evolved (sure they shouldn't evolve but they do unfortunately). In those cases, no channel nodes == all channel nodes with default settings. > >>> > >>> Yes. We basically have two types of binding wrt to channels. > >>> 1) Always there - no explicit binding, but also no way to describe > >>> anything specific about the channels. > >>> 2) Subnode per channel with stuff from adc.yaml and anything device > >>> specific. Only channels that that have a node are enabled. > >>> > > > > Hmm... does that mean we implemented it wrong on ad7380 and ad4695? > > I believe this is a question to Jonathan. With my ADC-driver experience > I am not the person to answer this :) > > _If_ I commented something to this, I would say that: "I believe, this > question is a good example of why providing helpers is so powerful. In > my experience, when we provide helpers, then there will be a 'de facto' > way of doing things, which improves consistency". But as I feel I'm on > the verge of stepping on someones toes (and I am really the novice on > this area), I won't say that comment out loud. Problem is always 'history'. We already have a bunch of drivers doing what the parts David called out do. The bindings are clear and ultimately it is a bit device specific to whether missing nodes logically should default to default parameters or be hidden. In some cases there are natural defaults, in others not even close as we have fully flexible MUXes in front of differential ADCs and can in theory configure far more combinations than we even have pins for. So today the situation is we have all the options in tree and we aren't really in a position to drop any of them: a) custom bindings to configure channels - lots of these :( b) everything on if no channel nodes. Maybe everything on always. c) channel nodes necessary for a channel to exist. If I were starting all this again we'd probably reduce the options but too late now :( Only thing I'd request is if a binding uses channel nodes at all. It should be possible to provide all nodes - whether or not some are just the defaults. That way we can advise writers of bindings to provide all the channels they want to use. The other cases then become a case of whether they get more channels than expected, but never that some they want aren't there! A binding that didn't do this wouldn't be wrong, it would just mean the writer read the binding doc more carefully and knows what is expected for this device rather than more generally. There are some 'interesting' is it broken ABI backwards compatibility questions when we retrofit channel nodes into a binding. In those cases we can't hide non specified nodes as it would mean channels disappear that in an earlier kernel were present. In theory that should never be a problem but not all userspace code is going to be sufficient careful to not be disrupted by channel number changes. Even this I think we broke once or twice because of cases like the one Matti has where they are multipurpose pins on some chip variant we didn't know about when the driver was written. Jonathan > > >>> There are a few drivers that for historical reasons support both > >>> options with 'no channels' meaning 'all channels'. > >> > >> https://lore.kernel.org/all/20250201162631.2eab9a9a@jic23-huawei/ > >> > >>> In my experience, the only time we don't populate all available channels > >>> on an ADC, even if not used, is in cases like differential chips where > >>> any two inputs can be mixed and matched to form a channel. Some of these, > >>> like adi,ad7173-8 would have 100s or 1000s of channels if we tried to > >>> include all possible channels. In those cases, we make an exception and > >>> use a dynamic number of channels based on the devicetree. But for chips > >>> that have less than 20 total possible channels or so we've always > >>> provided all possible channels to userspace. It makes writing userspace > >>> software for a specific chip easier if we can always assume that chip > >>> has the same number of channels. > >> > >> In any exception to this rule of describing all channels in DT should just avoid using these helpers and do things as they're done now. No one is forced to use them. But I am not really sure why would you not describe all the channels in the device-tree for ICs with less than 20 channels? I'd assume that if the channels are unconditionally usable in the hardware, then they should be in DT as well(?) > > > > I devicetree, I think the tendency is to be less verbose and only add > > properties/nodes when there is something that is not the usual case. > > Default values are chosen to be the most usual case so we don't have > > to write so much in the .dts. > > On the other hand, I've received comments from the DTS people to expose > all HW blocks in the bindings. AFAIR, for example, marking > power-supplies as 'optional' in bindings is frowned upon, because they > are in the HW whether the SW needs to control them or not. Hence I think > marking either all or no channels in dt should be the way to go - but my > thinking is not done based on the years of experience on ADCs! Even for power supplies there is a difference between the binding doc saying they are there and what we do if they aren't (which is assume a stub regulator representing an non controllable / unknowable power supply is sufficient). Also for power supplies there isn't really a 'default' to use so it doesn't really work as a comparison. Hindsight is a wonderful thing. I'm not sure on what policy we should have gone for, but now we are kind of stuck with this slightly messy situation. Helper wise if it expands usefulness we may want a bool parameter to say if we skip the missing or not + make sure a max expected channel is provided (might already be - I didn't check!) Jonathan > > >>>> Add couple of helper functions which can be used to retrieve the channel > >>>> information from the device node. > >>>> > >>>> Signed-off-by: Matti Vaittinen <mazziesaccount@xxxxxxxxx> > >>>> > >> > >> Yours, > >> -- Matti > > >