-
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: 310708 b: refs/heads/master c: 3ab2cdd h: refs/heads/master v: v3
- Loading branch information
David S. Miller
committed
Jun 4, 2012
1 parent
e788a5f
commit 9995c20
Showing
676 changed files
with
28,596 additions
and
10,361 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: dc605dbdb8dd152448ccb8d4c4d5bd9439965a20 | ||
refs/heads/master: 3ab2cdd02850d53d32369e51c0ae2dbcf8a66e55 |
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
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
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
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
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
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
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,33 @@ | ||
* Freescale General-Purpose Media Interface (GPMI) | ||
|
||
The GPMI nand controller provides an interface to control the | ||
NAND flash chips. We support only one NAND chip now. | ||
|
||
Required properties: | ||
- compatible : should be "fsl,<chip>-gpmi-nand" | ||
- reg : should contain registers location and length for gpmi and bch. | ||
- reg-names: Should contain the reg names "gpmi-nand" and "bch" | ||
- interrupts : The first is the DMA interrupt number for GPMI. | ||
The second is the BCH interrupt number. | ||
- interrupt-names : The interrupt names "gpmi-dma", "bch"; | ||
- fsl,gpmi-dma-channel : Should contain the dma channel it uses. | ||
|
||
The device tree may optionally contain sub-nodes describing partitions of the | ||
address space. See partition.txt for more detail. | ||
|
||
Examples: | ||
|
||
gpmi-nand@8000c000 { | ||
compatible = "fsl,imx28-gpmi-nand"; | ||
#address-cells = <1>; | ||
#size-cells = <1>; | ||
reg = <0x8000c000 2000>, <0x8000a000 2000>; | ||
reg-names = "gpmi-nand", "bch"; | ||
interrupts = <88>, <41>; | ||
interrupt-names = "gpmi-dma", "bch"; | ||
fsl,gpmi-dma-channel = <4>; | ||
|
||
partition@0 { | ||
... | ||
}; | ||
}; |
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,19 @@ | ||
* Freescale's mxc_nand | ||
|
||
Required properties: | ||
- compatible: "fsl,imxXX-nand" | ||
- reg: address range of the nfc block | ||
- interrupts: irq to be used | ||
- nand-bus-width: see nand.txt | ||
- nand-ecc-mode: see nand.txt | ||
- nand-on-flash-bbt: see nand.txt | ||
|
||
Example: | ||
|
||
nand@d8000000 { | ||
compatible = "fsl,imx27-nand"; | ||
reg = <0xd8000000 0x1000>; | ||
interrupts = <29>; | ||
nand-bus-width = <8>; | ||
nand-ecc-mode = "hw"; | ||
}; |
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
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
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
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
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
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
Oops, something went wrong.