On Fri, Aug 30, 2024 at 11:49:53AM +0000, Sperling, Tobias wrote: > >From b2e04ce5500faf274654be5284be9db4f3abefce Mon Sep 17 00:00:00 2001 Some junk ^^^ above. Please investigate how you send patches. > From: Tobias Sperling <tobias.sperling@xxxxxxxxxxx> > Date: Fri, 23 Aug 2024 12:08:33 +0200 > Subject: [PATCH 1/2] dt-bindings: hwmon: Introduce ADS71x8 And all this suggests malformed patch. > > Add documentation for the driver of ADS7128 and ADS7138 12-bit, 8-channel > analog-to-digital converters. These ADCs have a wide operating range and > a wide feature set. Communication is based on an I2C interface. > The driver provides the functionality of manually reading single channels > or sequentially reading all channels automatically. > > Signed-off-by: Tobias Sperling <tobias.sperling@xxxxxxxxxxx> > --- > .../devicetree/bindings/hwmon/ti,ads71x8.yaml | 85 +++++++++++ > Documentation/hwmon/ads71x8.rst | 140 ++++++++++++++++++ > Documentation/hwmon/index.rst | 1 + Please run scripts/checkpatch.pl and fix reported warnings. Then please run and (probably) fix more warnings. Some warnings can be ignored, especially from --strict run, but the code here looks like it needs a fix. Feel free to get in touch if the warning is not clear. > 3 files changed, 226 insertions(+) > create mode 100644 Documentation/devicetree/bindings/hwmon/ti,ads71x8.yaml > create mode 100644 Documentation/hwmon/ads71x8.rst > > diff --git a/Documentation/devicetree/bindings/hwmon/ti,ads71x8.yaml b/Documentation/devicetree/bindings/hwmon/ti,ads71x8.yaml > new file mode 100644 > index 000000000000..e422c4ebd207 > --- /dev/null > +++ b/Documentation/devicetree/bindings/hwmon/ti,ads71x8.yaml > @@ -0,0 +1,85 @@ > +# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause) > +%YAML 1.2 > +--- > + Drop blank line > +$id: http://devicetree.org/schemas/hwmon/ti,ads71x8.yaml# > +$schema: http://devicetree.org/meta-schemas/core.yaml# > + > +title: Texas Instruments ADS7128/ADS7138 Analog to Digital Converter (ADC) > + > +maintainers: > + - None Fidn a person... otherwise why would we care? > + > +description: | > + The ADS7128 is 12-Bit, 8-Channel Sampling Analog to Digital Converter (ADC) > + with an I2C interface. > + > + Datasheets: > + https://www.ti.com/product/ADS7128 > + https://www.ti.com/product/ADS7138 > + > +properties: > + compatible: > + enum: > + - ti,ads7128 > + - ti,ads7138 > + > + reg: > + maxItems: 1 > + > + avdd-supply: > + description: > + The regulator used as analog supply voltage as well as reference voltage. > + > + ti,mode: > + $ref: /schemas/types.yaml#/definitions/uint8 > + description: | > + Operation mode > + Mode 0 - Manual mode. A channel is only sampled when the according input > + in the sysfs is read. > + Mode 1 - Auto mode. All channels are automatically sampled sequentially. > + Reading an input returns the last valid sample. In this mode further > + features like statistics and interrupts are available. Use string instead. > + default: 0 > + > + ti,interval: > + $ref: /schemas/types.yaml#/definitions/uint16 > + description: | > + Only considered in mode 1! > + Interval in microseconds a new sample is triggered. Is set to closest > + possible interval, see datasheet. User proper unit-suffix. > + default: 1 > + > + interrupts: > + description: | > + Only considered in mode 1! What is "considered"? Driver considers? This does not matter. Describe the hardware and if this is hardware related, you should have allOf:if:then restricting this. > + Interrupt specifier the device's ALERT pin is connected to. Level must be > + IRQ_TYPE_LEVEL_LOW. If not configured the digital window comparator (DWC) > + is not available. > + maxItems: 1 > + > +required: > + - compatible > + - reg > + - avdd-supply > + > +additionalProperties: false > + > +examples: > + - | > + #include <dt-bindings/interrupt-controller/irq.h> > + i2c { > + #address-cells = <1>; > + #size-cells = <0>; > + > + ads7138@10 { Node names should be generic. See also an explanation and list of examples (not exhaustive) in DT specification: https://devicetree-specification.readthedocs.io/en/latest/chapter2-devicetree-basics.html#generic-names-recommendation > + compatible = "ti,ads7138"; > + reg = <0x10>; > + avdd-supply = <®_stb_3v3>; > + ti,mode = /bits/ 8 <1>; > + ti,interval = /bits/ 16 <1000>; > + interrupt-parent = <&gpio2>; > + interrupts = <12 IRQ_TYPE_LEVEL_LOW>; > + status = "okay"; Drop Best regards, Krzysztof