-
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.
- Loading branch information
Bastian Hecht
authored and
Artem Bityutskiy
committed
Nov 15, 2012
1 parent
c2815c5
commit 6bde490
Showing
3 changed files
with
137 additions
and
8 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: 83738d87e3a0a4096e1419a65b8228130d183df6 | ||
refs/heads/master: 7c8f680e96edbd9896b13b5e6ff39bc5852dce2a |
49 changes: 49 additions & 0 deletions
49
trunk/Documentation/devicetree/bindings/mtd/flctl-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,49 @@ | ||
FLCTL NAND controller | ||
|
||
Required properties: | ||
- compatible : "renesas,shmobile-flctl-sh7372" | ||
- reg : Address range of the FLCTL | ||
- interrupts : flste IRQ number | ||
- nand-bus-width : bus width to NAND chip | ||
|
||
Optional properties: | ||
- dmas: DMA specifier(s) | ||
- dma-names: name for each DMA specifier. Valid names are | ||
"data_tx", "data_rx", "ecc_tx", "ecc_rx" | ||
|
||
The DMA fields are not used yet in the driver but are listed here for | ||
completing the bindings. | ||
|
||
The device tree may optionally contain sub-nodes describing partitions of the | ||
address space. See partition.txt for more detail. | ||
|
||
Example: | ||
|
||
flctl@e6a30000 { | ||
#address-cells = <1>; | ||
#size-cells = <1>; | ||
compatible = "renesas,shmobile-flctl-sh7372"; | ||
reg = <0xe6a30000 0x100>; | ||
interrupts = <0x0d80>; | ||
|
||
nand-bus-width = <16>; | ||
|
||
dmas = <&dmac 1 /* data_tx */ | ||
&dmac 2;> /* data_rx */ | ||
dma-names = "data_tx", "data_rx"; | ||
|
||
system@0 { | ||
label = "system"; | ||
reg = <0x0 0x8000000>; | ||
}; | ||
|
||
userdata@8000000 { | ||
label = "userdata"; | ||
reg = <0x8000000 0x10000000>; | ||
}; | ||
|
||
cache@18000000 { | ||
label = "cache"; | ||
reg = <0x18000000 0x8000000>; | ||
}; | ||
}; |
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