Tom Rini | 53633a8 | 2024-02-29 12:33:36 -0500 | [diff] [blame] | 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 | |
| 7 | title: Samsung Exynos Secure Firmware |
| 8 | |
| 9 | maintainers: |
| 10 | - Krzysztof Kozlowski <krzk@kernel.org> |
| 11 | |
| 12 | properties: |
| 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 | |
| 22 | required: |
| 23 | - compatible |
| 24 | - reg |
| 25 | |
| 26 | additionalProperties: false |
| 27 | |
| 28 | examples: |
| 29 | - | |
| 30 | firmware@203f000 { |
| 31 | compatible = "samsung,secure-firmware"; |
| 32 | reg = <0x0203f000 0x1000>; |
| 33 | }; |