Adding support for MOXA ART SoC. Testing port of linux-2.6.32.60-moxart.
[linux-3.6.7-moxart.git] / Documentation / devicetree / bindings / mtd / atmel-nand.txt
bloba20069502f5aaeeb85c45978bcf13c67f598e962
1 Atmel NAND flash
3 Required properties:
4 - compatible : "atmel,at91rm9200-nand".
5 - reg : should specify localbus address and size used for the chip,
6         and if availlable the ECC.
7 - atmel,nand-addr-offset : offset for the address latch.
8 - atmel,nand-cmd-offset : offset for the command latch.
9 - #address-cells, #size-cells : Must be present if the device has sub-nodes
10   representing partitions.
12 - gpios : specifies the gpio pins to control the NAND device. detect is an
13   optional gpio and may be set to 0 if not present.
15 Optional properties:
16 - nand-ecc-mode : String, operation mode of the NAND ecc mode, soft by default.
17   Supported values are: "none", "soft", "hw", "hw_syndrome", "hw_oob_first",
18   "soft_bch".
19 - nand-bus-width : 8 or 16 bus width if not present 8
20 - nand-on-flash-bbt: boolean to enable on flash bbt option if not present false
22 Examples:
23 nand0: nand@40000000,0 {
24         compatible = "atmel,at91rm9200-nand";
25         #address-cells = <1>;
26         #size-cells = <1>;
27         reg = <0x40000000 0x10000000
28                0xffffe800 0x200
29               >;
30         atmel,nand-addr-offset = <21>;  /* ale */
31         atmel,nand-cmd-offset = <22>;   /* cle */
32         nand-on-flash-bbt;
33         nand-ecc-mode = "soft";
34         gpios = <&pioC 13 0     /* rdy */
35                  &pioC 14 0     /* nce */
36                  0              /* cd */
37                 >;
38         partition@0 {
39                 ...
40         };