Message ID | 20220419142458.884933-2-gengcixi@gmail.com (mailing list archive) |
---|---|
State | Accepted |
Headers | show |
Series | iio: adc: sc27xx: adjust structure and add PMIC's support | expand |
On 19/04/2022 16:24, Cixi Geng wrote: > - nvmem-cell-names: > - items: > - - const: big_scale_calib > - - const: small_scale_calib > + nvmem-cell-names: true > +> +if: Better to include it under "allOf:" so next time you need more of such if-then, you do not need to change indentation. But anyway looks good: Reviewed-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org> > + not: > + properties: > + compatible: Best regards, Krzysztof
On Wed, 20 Apr 2022 09:01:51 +0200 Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org> wrote: > On 19/04/2022 16:24, Cixi Geng wrote: > > - nvmem-cell-names: > > - items: > > - - const: big_scale_calib > > - - const: small_scale_calib > > + nvmem-cell-names: true > > +> +if: > > Better to include it under "allOf:" so next time you need more of such > if-then, you do not need to change indentation. But anyway looks good: > > Reviewed-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org> I added the allOf: whilst applying. Thanks, Jonathan > > > + not: > > + properties: > > + compatible: > > > > Best regards, > Krzysztof
diff --git a/Documentation/devicetree/bindings/iio/adc/sprd,sc2720-adc.yaml b/Documentation/devicetree/bindings/iio/adc/sprd,sc2720-adc.yaml index caa3ee0b4b8c..c9fe45c1c0d8 100644 --- a/Documentation/devicetree/bindings/iio/adc/sprd,sc2720-adc.yaml +++ b/Documentation/devicetree/bindings/iio/adc/sprd,sc2720-adc.yaml @@ -20,6 +20,7 @@ properties: - sprd,sc2723-adc - sprd,sc2730-adc - sprd,sc2731-adc + - sprd,ump9620-adc reg: maxItems: 1 @@ -33,13 +34,38 @@ properties: hwlocks: maxItems: 1 - nvmem-cells: - maxItems: 2 + nvmem-cells: true - nvmem-cell-names: - items: - - const: big_scale_calib - - const: small_scale_calib + nvmem-cell-names: true + +if: + not: + properties: + compatible: + contains: + enum: + - sprd,ump9620-adc +then: + properties: + nvmem-cells: + maxItems: 2 + nvmem-cell-names: + items: + - const: big_scale_calib + - const: small_scale_calib + +else: + properties: + nvmem-cells: + maxItems: 6 + nvmem-cell-names: + items: + - const: big_scale_calib1 + - const: big_scale_calib2 + - const: small_scale_calib1 + - const: small_scale_calib2 + - const: vbat_det_cal1 + - const: vbat_det_cal2 required: - compatible @@ -69,4 +95,25 @@ examples: nvmem-cell-names = "big_scale_calib", "small_scale_calib"; }; }; + + - | + #include <dt-bindings/interrupt-controller/irq.h> + pmic { + #address-cells = <1>; + #size-cells = <0>; + adc@504 { + compatible = "sprd,ump9620-adc"; + reg = <0x504>; + interrupt-parent = <&ump9620_pmic>; + interrupts = <0 IRQ_TYPE_LEVEL_HIGH>; + #io-channel-cells = <1>; + hwlocks = <&hwlock 4>; + nvmem-cells = <&adc_bcal1>, <&adc_bcal2>, + <&adc_scal1>, <&adc_scal2>, + <&vbat_det_cal1>, <&vbat_det_cal2>; + nvmem-cell-names = "big_scale_calib1", "big_scale_calib2", + "small_scale_calib1", "small_scale_calib2", + "vbat_det_cal1", "vbat_det_cal2"; + }; + }; ...