xref: /freebsd/sys/contrib/device-tree/Bindings/mtd/mxc-nand.txt (revision c66ec88fed842fbaad62c30d510644ceb7bd2d71)
1*c66ec88fSEmmanuel Vadot* Freescale's mxc_nand
2*c66ec88fSEmmanuel Vadot
3*c66ec88fSEmmanuel VadotRequired properties:
4*c66ec88fSEmmanuel Vadot- compatible: "fsl,imxXX-nand"
5*c66ec88fSEmmanuel Vadot- reg: address range of the nfc block
6*c66ec88fSEmmanuel Vadot- interrupts: irq to be used
7*c66ec88fSEmmanuel Vadot- nand-bus-width: see nand-controller.yaml
8*c66ec88fSEmmanuel Vadot- nand-ecc-mode: see nand-controller.yaml
9*c66ec88fSEmmanuel Vadot- nand-on-flash-bbt: see nand-controller.yaml
10*c66ec88fSEmmanuel Vadot
11*c66ec88fSEmmanuel VadotExample:
12*c66ec88fSEmmanuel Vadot
13*c66ec88fSEmmanuel Vadot	nand@d8000000 {
14*c66ec88fSEmmanuel Vadot		compatible = "fsl,imx27-nand";
15*c66ec88fSEmmanuel Vadot		reg = <0xd8000000 0x1000>;
16*c66ec88fSEmmanuel Vadot		interrupts = <29>;
17*c66ec88fSEmmanuel Vadot		nand-bus-width = <8>;
18*c66ec88fSEmmanuel Vadot		nand-ecc-mode = "hw";
19*c66ec88fSEmmanuel Vadot	};
20