1# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
2%YAML 1.2
3---
4$id: http://devicetree.org/schemas/firmware/fwu-mdata-gpt.yaml#
5$schema: http://devicetree.org/meta-schemas/core.yaml#
6
7title: FWU metadata on device with GPT partitioned layout
8
9maintainers:
10 - Sughosh Ganu <sughosh.ganu@linaro.org>
11
12properties:
13  compatible:
14    items:
15      - const: u-boot,fwu-mdata-gpt
16
17  fwu-mdata-store:
18    maxItems: 1
19    description: Phandle of the device which contains the FWU medatata partition.
20
21required:
22  - compatible
23  - fwu-mdata-store
24
25additionalProperties: false
26
27examples:
28  - |
29    fwu-mdata {
30        compatible = "u-boot,fwu-mdata-gpt";
31        fwu-mdata-store = <&sdmmc1>;
32    };
33