1# SPDX-License-Identifier: GPL-2.0
2%YAML 1.2
3---
4$id: http://devicetree.org/schemas/arm/samsung/samsung-secure-firmware.yaml#
5$schema: http://devicetree.org/meta-schemas/core.yaml#
6
7title: Samsung Exynos Secure Firmware
8
9maintainers:
10  - Krzysztof Kozlowski <krzk@kernel.org>
11
12properties:
13  compatible:
14    items:
15      - const: samsung,secure-firmware
16
17  reg:
18    description:
19      Address of non-secure SYSRAM used for communication with firmware.
20    maxItems: 1
21
22required:
23  - compatible
24  - reg
25
26additionalProperties: false
27
28examples:
29  - |
30    firmware@203f000 {
31      compatible = "samsung,secure-firmware";
32      reg = <0x0203f000 0x1000>;
33    };
34