Files
android_kernel_samsung_sm87…/bindings/regulator/qcom,stub-regulator.yaml
David Collins 33623ba803 dt-bindings: regulator: stub-regulator: fix dt_binding_check warning
make dt_binding_check outputs the following warning for the file
qcom,stub-regulator.yaml:

Documentation/devicetree/bindings/regulator/
qcom,stub-regulator.example.dtb:
  regulator-l1: 'regulator-max-microvolt', 'regulator-min-microvolt',
  'regulator-name' do not match any of the regexes: 'pinctrl-[0-9]+'

This occurs because both of these are specified:
 * allOf:
     - $ref: "regulator.yaml#"

 * additionalProperties: false

Fix this warning by switching the latter to:

  unevaluatedProperties: false

Change-Id: I5e0c9eb9e6a0638464db5d084bd008df357505d6
Signed-off-by: David Collins <quic_collinsd@quicinc.com>
2023-08-03 16:42:25 -07:00

56 lines
1.4 KiB
YAML

# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
%YAML 1.2
---
$id: http://devicetree.org/schemas/regulator/qcom,stub-regulator.yaml#
$schema: http://devicetree.org/meta-schemas/core.yaml#
title: Qualcomm Technologies, Inc. Stub Regulators
maintainers:
- David Collins <quic_collinsd@quicinc.com>
description: |
stub-regulators are place-holder regulator devices which do not impact any
hardware state. They provide a means for consumer devices to utilize all
regulator features for testing purposes.
allOf:
- $ref: "regulator.yaml#"
properties:
compatible:
const: qcom,stub-regulator
parent-supply:
description: phandle to the parent regulator node if one exists.
qcom,hpm-min-load:
description: |
Load current in uA which corresponds to the minimum load
which requires the regulator to be in high power mode.
$ref: /schemas/types.yaml#/definitions/uint32
qcom,system-load:
description: |
Load in uA present on regulator that is not captured by any
consumer request.
$ref: /schemas/types.yaml#/definitions/uint32
required:
- compatible
- regulator-name
unevaluatedProperties: false
examples:
- |
pm8026_l1: regulator-l1 {
compatible = "qcom,stub-regulator";
regulator-name = "8026_l1";
parent-supply = <&pm8026_s3>;
qcom,hpm-min-load = <10000>;
regulator-min-microvolt = <1225000>;
regulator-max-microvolt = <1225000>;
};
...