brintos

brintos / linux-shallow public Read only

0
0
Text · 1.1 KiB · 4c1cbf4 Raw
45 lines · yaml
1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)2%YAML 1.23---4$id: http://devicetree.org/schemas/mtd/partitions/seama.yaml#5$schema: http://devicetree.org/meta-schemas/core.yaml#6 7title: Seattle Image Partitions8 9description: The SEAttle iMAge (SEAMA) partition is a type of partition10  used for NAND flash devices. This type of flash image is found in some11  D-Link routers such as DIR-645, DIR-842, DIR-859, DIR-860L, DIR-885L,12  DIR890L and DCH-M225, as well as in WD and NEC routers on the ath7913  (MIPS), Broadcom BCM53xx, and RAMIPS platforms. This partition type14  does not have children defined in the device tree, they need to be15  detected by software.16 17allOf:18  - $ref: partition.yaml#19 20maintainers:21  - Linus Walleij <linus.walleij@linaro.org>22 23properties:24  compatible:25    const: seama26 27required:28  - compatible29 30unevaluatedProperties: false31 32examples:33  - |34    partitions {35        compatible = "fixed-partitions";36        #address-cells = <1>;37        #size-cells = <1>;38 39        partition@0 {40            compatible = "seama";41            reg = <0x0 0x800000>;42            label = "firmware";43        };44    };45