1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 2%YAML 1.2 3--- 4$id: http://devicetree.org/schemas/mtd/partitions/seama.yaml# 5$schema: http://devicetree.org/meta-schemas/core.yaml# 6 7title: Seattle Image Partitions 8 9description: The SEAttle iMAge (SEAMA) partition is a type of partition 10 used for NAND flash devices. This type of flash image is found in some 11 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 ath79 13 (MIPS), Broadcom BCM53xx, and RAMIPS platforms. This partition type 14 does not have children defined in the device tree, they need to be 15 detected by software. 16 17allOf: 18 - $ref: partition.yaml# 19 20maintainers: 21 - Linus Walleij <linus.walleij@linaro.org> 22 23properties: 24 compatible: 25 const: seama 26 27required: 28 - compatible 29 30unevaluatedProperties: false 31 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