-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 303512 b: refs/heads/master c: a0fabf7 h: refs/heads/master v: v3
- Loading branch information
Jamie Lentin
authored and
Jason Cooper
committed
May 15, 2012
1 parent
fedb893
commit a0700d5
Showing
3 changed files
with
95 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: 9007d1007317658d5b32bda9f59c797c59ce4d47 | ||
refs/heads/master: a0fabf722c9dc73a3eed24ce166476ddb00eda1e |
50 changes: 50 additions & 0 deletions
50
trunk/Documentation/devicetree/bindings/mtd/orion-nand.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
NAND support for Marvell Orion SoC platforms | ||
|
||
Required properties: | ||
- compatible : "mrvl,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 = "mrvl,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>; | ||
}; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters