1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 2%YAML 1.2 3--- 4$id: http://devicetree.org/schemas/mtd/raw-nand-chip.yaml# 5$schema: http://devicetree.org/meta-schemas/core.yaml# 6 7title: Raw NAND Chip Common Properties 8 9maintainers: 10 - Miquel Raynal <miquel.raynal@bootlin.com> 11 12allOf: 13 - $ref: nand-chip.yaml# 14 - $ref: raw-nand-property.yaml# 15 16description: | 17 The ECC strength and ECC step size properties define the user 18 desires in terms of correction capability of a controller. Together, 19 they request the ECC engine to correct {strength} bit errors per 20 {size} bytes for a particular raw NAND chip. 21 22 The interpretation of these parameters is implementation-defined, so 23 not all implementations must support all possible 24 combinations. However, implementations are encouraged to further 25 specify the value(s) they support. 26 27properties: 28 $nodename: 29 pattern: "^nand@[a-f0-9]$" 30 31 reg: 32 description: 33 Contains the chip-select IDs. 34 35required: 36 - reg 37 38# This is a generic file other binding inherit from and extend 39additionalProperties: true 40