Message ID | 20200227084642.7057-4-chris.packham@alliedtelesis.co.nz (mailing list archive) |
---|---|
State | Accepted |
Headers | show |
Series | hwmon: (adt7475) attenuator bypass and pwm invert | expand |
On Thu, 27 Feb 2020 21:46:40 +1300, Chris Packham wrote: > > Add binding information for the adi,pwm-active-state property. > > Signed-off-by: Chris Packham <chris.packham@alliedtelesis.co.nz> > --- > > Notes: > Changes in v5: > - change to adi,pwm-active-state > - uint32 array > > Changes in v4: > - use $ref uint32 and enum > - add adi vendor prefix > > Cahnges in v3: > - new > > .../devicetree/bindings/hwmon/adt7475.yaml | 14 ++++++++++++++ > 1 file changed, 14 insertions(+) > Reviewed-by: Rob Herring <robh@kernel.org>
On Thu, Feb 27, 2020 at 09:46:40PM +1300, Chris Packham wrote: > Add binding information for the adi,pwm-active-state property. > > Signed-off-by: Chris Packham <chris.packham@alliedtelesis.co.nz> > Reviewed-by: Rob Herring <robh@kernel.org> Applied. Thanks, Guenter > --- > > Notes: > Changes in v5: > - change to adi,pwm-active-state > - uint32 array > > Changes in v4: > - use $ref uint32 and enum > - add adi vendor prefix > > Cahnges in v3: > - new > > .../devicetree/bindings/hwmon/adt7475.yaml | 14 ++++++++++++++ > 1 file changed, 14 insertions(+) > > diff --git a/Documentation/devicetree/bindings/hwmon/adt7475.yaml b/Documentation/devicetree/bindings/hwmon/adt7475.yaml > index e40612ee075f..76985034ea73 100644 > --- a/Documentation/devicetree/bindings/hwmon/adt7475.yaml > +++ b/Documentation/devicetree/bindings/hwmon/adt7475.yaml > @@ -50,6 +50,19 @@ patternProperties: > - $ref: /schemas/types.yaml#/definitions/uint32 > - enum: [0, 1] > > + "^adi,pwm-active-state$": > + description: | > + Integer array, represents the active state of the pwm outputs If set to 0 > + the pwm uses a logic low output for 100% duty cycle. If set to 1 the pwm > + uses a logic high output for 100% duty cycle. > + allOf: > + - $ref: /schemas/types.yaml#/definitions/uint32-array > + - minItems: 3 > + maxItems: 3 > + items: > + enum: [0, 1] > + default: 1 > + > required: > - compatible > - reg > @@ -65,6 +78,7 @@ examples: > reg = <0x2e>; > adi,bypass-attenuator-in0 = <1>; > adi,bypass-attenuator-in1 = <0>; > + adi,pwm-active-state = <1 0 1>; > }; > }; >
diff --git a/Documentation/devicetree/bindings/hwmon/adt7475.yaml b/Documentation/devicetree/bindings/hwmon/adt7475.yaml index e40612ee075f..76985034ea73 100644 --- a/Documentation/devicetree/bindings/hwmon/adt7475.yaml +++ b/Documentation/devicetree/bindings/hwmon/adt7475.yaml @@ -50,6 +50,19 @@ patternProperties: - $ref: /schemas/types.yaml#/definitions/uint32 - enum: [0, 1] + "^adi,pwm-active-state$": + description: | + Integer array, represents the active state of the pwm outputs If set to 0 + the pwm uses a logic low output for 100% duty cycle. If set to 1 the pwm + uses a logic high output for 100% duty cycle. + allOf: + - $ref: /schemas/types.yaml#/definitions/uint32-array + - minItems: 3 + maxItems: 3 + items: + enum: [0, 1] + default: 1 + required: - compatible - reg @@ -65,6 +78,7 @@ examples: reg = <0x2e>; adi,bypass-attenuator-in0 = <1>; adi,bypass-attenuator-in1 = <0>; + adi,pwm-active-state = <1 0 1>; }; };
Add binding information for the adi,pwm-active-state property. Signed-off-by: Chris Packham <chris.packham@alliedtelesis.co.nz> --- Notes: Changes in v5: - change to adi,pwm-active-state - uint32 array Changes in v4: - use $ref uint32 and enum - add adi vendor prefix Cahnges in v3: - new .../devicetree/bindings/hwmon/adt7475.yaml | 14 ++++++++++++++ 1 file changed, 14 insertions(+)