aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Documentation/devicetree/bindings/soc/qcom/qcom,pbs.yaml
blob: b502ca72266a78c0630c49c30d5f519d0e6a387d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
%YAML 1.2
---
$id: http://devicetree.org/schemas/soc/qcom/qcom,pbs.yaml#
$schema: http://devicetree.org/meta-schemas/core.yaml#

title: Qualcomm Technologies, Inc. Programmable Boot Sequencer

maintainers:
  - Anjelique Melendez <quic_amelende@quicinc.com>

description: |
  The Qualcomm Technologies, Inc. Programmable Boot Sequencer (PBS)
  supports triggering power up and power down sequences for clients
  upon request.

properties:
  compatible:
    items:
      - enum:
          - qcom,pmi632-pbs
      - const: qcom,pbs

  reg:
    maxItems: 1

required:
  - compatible
  - reg

additionalProperties: false

examples:
  - |
    #include <dt-bindings/spmi/spmi.h>

    pmic@0 {
      reg = <0x0 SPMI_USID>;
      #address-cells = <1>;
      #size-cells = <0>;

      pbs@7400 {
        compatible = "qcom,pmi632-pbs", "qcom,pbs";
        reg = <0x7400>;
      };
    };