1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 2%YAML 1.2 3--- 4$id: http://devicetree.org/schemas/mtd/nand-chip.yaml# 5$schema: http://devicetree.org/meta-schemas/core.yaml# 6 7title: NAND Chip Common Properties 8 9maintainers: 10 - Miquel Raynal <miquel.raynal@bootlin.com> 11 12allOf: 13 - $ref: mtd.yaml# 14 - $ref: nand-property.yaml 15 16description: | 17 This file covers the generic description of a NAND chip. It implies that the 18 bus interface should not be taken into account: both raw NAND devices and 19 SPI-NAND devices are concerned by this description. 20 21properties: 22 reg: 23 description: 24 Contains the chip-select IDs. 25 26required: 27 - reg 28 29# This file can be referenced by more specific devices (like spi-nands) 30additionalProperties: true 31