1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
2%YAML 1.2
3---
4$id: http://devicetree.org/schemas/soc/qcom/qcom,pbs.yaml#
5$schema: http://devicetree.org/meta-schemas/core.yaml#
6
7title: Qualcomm Technologies, Inc. Programmable Boot Sequencer
8
9maintainers:
10  - Anjelique Melendez <quic_amelende@quicinc.com>
11
12description: |
13  The Qualcomm Technologies, Inc. Programmable Boot Sequencer (PBS)
14  supports triggering power up and power down sequences for clients
15  upon request.
16
17properties:
18  compatible:
19    items:
20      - enum:
21          - qcom,pmi632-pbs
22      - const: qcom,pbs
23
24  reg:
25    maxItems: 1
26
27required:
28  - compatible
29  - reg
30
31additionalProperties: false
32
33examples:
34  - |
35    #include <dt-bindings/spmi/spmi.h>
36
37    pmic@0 {
38      reg = <0x0 SPMI_USID>;
39      #address-cells = <1>;
40      #size-cells = <0>;
41
42      pbs@7400 {
43        compatible = "qcom,pmi632-pbs", "qcom,pbs";
44        reg = <0x7400>;
45      };
46    };
47