0001 # SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
0002 %YAML 1.2
0003 ---
0004 $id: http://devicetree.org/schemas/remoteproc/qcom,pil-info.yaml#
0005 $schema: http://devicetree.org/meta-schemas/core.yaml#
0006
0007 title: Qualcomm peripheral image loader relocation info binding
0008
0009 maintainers:
0010 - Bjorn Andersson <bjorn.andersson@linaro.org>
0011
0012 description:
0013 The Qualcomm peripheral image loader relocation memory region, in IMEM, is
0014 used for communicating remoteproc relocation information to post mortem
0015 debugging tools.
0016
0017 properties:
0018 compatible:
0019 const: qcom,pil-reloc-info
0020
0021 reg:
0022 maxItems: 1
0023
0024 required:
0025 - compatible
0026 - reg
0027
0028 additionalProperties: false
0029
0030 examples:
0031 - |
0032 imem@146bf000 {
0033 compatible = "syscon", "simple-mfd";
0034 reg = <0x146bf000 0x1000>;
0035
0036 #address-cells = <1>;
0037 #size-cells = <1>;
0038
0039 ranges = <0 0x146bf000 0x1000>;
0040
0041 pil-reloc@94c {
0042 compatible = "qcom,pil-reloc-info";
0043 reg = <0x94c 0xc8>;
0044 };
0045 };
0046 ...