hc
2024-05-11 04dd17822334871b23ea2862f7798fb0e0007777
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
NAND support for Marvell Orion SoC platforms
 
Required properties:
- compatible : "marvell,orion-nand".
- reg : Base physical address of the NAND and length of memory mapped
   region
 
Optional properties:
- cle : Address line number connected to CLE. Default is 0
- ale : Address line number connected to ALE. Default is 1
- bank-width : Width in bytes of the device. Default is 1
- chip-delay : Chip dependent delay for transferring data from array to read
               registers in usecs
 
The device tree may optionally contain sub-nodes describing partitions of the
address space. See partition.txt for more detail.
 
Example:
 
nand@f4000000 {
   #address-cells = <1>;
   #size-cells = <1>;
   cle = <0>;
   ale = <1>;
   bank-width = <1>;
   chip-delay = <25>;
   compatible = "marvell,orion-nand";
   reg = <0xf4000000 0x400>;
 
   partition@0 {
       label = "u-boot";
       reg = <0x0000000 0x100000>;
       read-only;
   };
 
   partition@100000 {
       label = "uImage";
       reg = <0x0100000 0x200000>;
   };
 
   partition@300000 {
       label = "dtb";
       reg = <0x0300000 0x100000>;
   };
 
   partition@400000 {
       label = "root";
       reg = <0x0400000 0x7d00000>;
   };
};