0001 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
0002 %YAML 1.2
0003 ---
0004 $id: http://devicetree.org/schemas/mtd/mxc-nand.yaml#
0005 $schema: http://devicetree.org/meta-schemas/core.yaml#
0006
0007 title: Freescale's mxc_nand binding
0008
0009 maintainers:
0010 - Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
0011
0012 allOf:
0013 - $ref: "nand-controller.yaml"
0014
0015 properties:
0016 compatible:
0017 const: fsl,imx27-nand
0018
0019 reg:
0020 maxItems: 1
0021
0022 interrupts:
0023 maxItems: 1
0024
0025 required:
0026 - compatible
0027 - reg
0028 - interrupts
0029
0030 unevaluatedProperties: false
0031
0032 examples:
0033 - |
0034 nand-controller@d8000000 {
0035 #address-cells = <1>;
0036 #size-cells = <0>;
0037 compatible = "fsl,imx27-nand";
0038 reg = <0xd8000000 0x1000>;
0039 interrupts = <29>;
0040 };