-
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: 326722 b: refs/heads/master c: fd6c9b7 h: refs/heads/master v: v3
- Loading branch information
Olof Johansson
committed
Sep 7, 2012
1 parent
6ceab99
commit 494af35
Showing
30 changed files
with
1,384 additions
and
545 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: 25b3ab6c7e39e42245d98c27d25d9902baec7b65 | ||
refs/heads/master: fd6c9b75c7e341e0c6824be39ac81b32b7d9fe2f |
17 changes: 17 additions & 0 deletions
17
trunk/Documentation/devicetree/bindings/arm/mrvl/tauros2.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,17 @@ | ||
* Marvell Tauros2 Cache | ||
|
||
Required properties: | ||
- compatible : Should be "marvell,tauros2-cache". | ||
- marvell,tauros2-cache-features : Specify the features supported for the | ||
tauros2 cache. | ||
The features including | ||
CACHE_TAUROS2_PREFETCH_ON (1 << 0) | ||
CACHE_TAUROS2_LINEFILL_BURST8 (1 << 1) | ||
The definition can be found at | ||
arch/arm/include/asm/hardware/cache-tauros2.h | ||
|
||
Example: | ||
L2: l2-cache { | ||
compatible = "marvell,tauros2-cache"; | ||
marvell,tauros2-cache-features = <0x3>; | ||
}; |
31 changes: 31 additions & 0 deletions
31
trunk/Documentation/devicetree/bindings/mtd/pxa3xx-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,31 @@ | ||
PXA3xx NAND DT bindings | ||
|
||
Required properties: | ||
|
||
- compatible: Should be "marvell,pxa3xx-nand" | ||
- reg: The register base for the controller | ||
- interrupts: The interrupt to map | ||
- #address-cells: Set to <1> if the node includes partitions | ||
|
||
Optional properties: | ||
|
||
- marvell,nand-enable-arbiter: Set to enable the bus arbiter | ||
- marvell,nand-keep-config: Set to keep the NAND controller config as set | ||
by the bootloader | ||
- num-cs: Number of chipselect lines to usw | ||
|
||
Example: | ||
|
||
nand0: nand@43100000 { | ||
compatible = "marvell,pxa3xx-nand"; | ||
reg = <0x43100000 90>; | ||
interrupts = <45>; | ||
#address-cells = <1>; | ||
|
||
marvell,nand-enable-arbiter; | ||
marvell,nand-keep-config; | ||
num-cs = <1>; | ||
|
||
/* partitions (optional) */ | ||
}; | ||
|
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,14 @@ | ||
* PXA RTC | ||
|
||
PXA specific RTC driver. | ||
|
||
Required properties: | ||
- compatible : Should be "marvell,pxa-rtc" | ||
|
||
Examples: | ||
|
||
rtc@40900000 { | ||
compatible = "marvell,pxa-rtc"; | ||
reg = <0x40900000 0x3c>; | ||
interrupts = <30 31>; | ||
}; |
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.