brintos

brintos / linux-shallow public Read only

0
0
Text · 1.1 KiB · 5d7be0b Raw
59 lines · yaml
1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)2%YAML 1.23---4$id: http://devicetree.org/schemas/nvmem/qcom,spmi-sdam.yaml#5$schema: http://devicetree.org/meta-schemas/core.yaml#6 7title: Qualcomm Technologies, Inc. SPMI SDAM8 9maintainers:10  - David Collins <quic_collinsd@quicinc.com>11 12description: |13  The SDAM provides scratch register space for the PMIC clients. This14  memory can be used by software to store information or communicate15  to/from the PBUS.16 17allOf:18  - $ref: nvmem.yaml#19  - $ref: nvmem-deprecated-cells.yaml#20 21properties:22  compatible:23    enum:24      - qcom,spmi-sdam25 26  reg:27    maxItems: 128 29  ranges: true30 31required:32  - compatible33  - reg34  - ranges35 36unevaluatedProperties: false37 38examples:39  - |40    pmic {41        #address-cells = <1>;42        #size-cells = <0>;43 44        sdam_1: nvram@b000 {45            compatible = "qcom,spmi-sdam";46            reg = <0xb000>;47            #address-cells = <1>;48            #size-cells = <1>;49            ranges = <0 0xb000 0x100>;50 51            /* Data cells */52            restart_reason: restart@50 {53                reg = <0x50 0x1>;54                bits = <6 2>;55            };56        };57    };58...59