Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

dt-bindings: mtd: mxc-nand: add missing compatible string and ref to nand-controller-legacy.yaml

Add compatible string fsl,imx51-nand, fsl,imx53-nand and fsl,imx35-nand.

Add missinge properties dmas and dma-names.

Change reg's maxItems to 2 because i.MX53 have addition NAND flash internal
buffer space.

Change ref to nand-controller-legacy.yaml allow legacy DT layout.

Reviewed-by: Rob Herring (Arm) <robh@kernel.org>
Signed-off-by: Frank Li <Frank.Li@nxp.com>
Signed-off-by: Miquel Raynal <miquel.raynal@bootlin.com>

authored by

Frank Li and committed by
Miquel Raynal
3b2a422e 17de8a68

+18 -2
+18 -2
Documentation/devicetree/bindings/mtd/mxc-nand.yaml
··· 10 10 - Uwe Kleine-König <u.kleine-koenig@pengutronix.de> 11 11 12 12 allOf: 13 - - $ref: nand-controller.yaml 13 + - $ref: nand-controller-legacy.yaml 14 14 15 15 properties: 16 16 compatible: ··· 18 18 - enum: 19 19 - fsl,imx25-nand 20 20 - fsl,imx27-nand 21 + - fsl,imx51-nand 22 + - fsl,imx53-nand 23 + - items: 24 + - enum: 25 + - fsl,imx35-nand 26 + - const: fsl,imx25-nand 21 27 - items: 22 28 - enum: 23 29 - fsl,imx31-nand 24 30 - const: fsl,imx27-nand 25 31 reg: 26 - maxItems: 1 32 + minItems: 1 33 + items: 34 + - description: IP register space 35 + - description: Nand flash internal buffer space 27 36 28 37 interrupts: 29 38 maxItems: 1 30 39 31 40 clocks: 32 41 maxItems: 1 42 + 43 + dmas: 44 + maxItems: 1 45 + 46 + dma-names: 47 + items: 48 + - const: rx-tx 33 49 34 50 required: 35 51 - compatible