-
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: 298184 b: refs/heads/master c: 6551ab5 h: refs/heads/master v: v3
- Loading branch information
Stefan Roese
authored and
David Woodhouse
committed
Mar 27, 2012
1 parent
5b4e5a4
commit 846cd0f
Showing
4 changed files
with
136 additions
and
13 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: f7e3dd8f48faad24334f7bea048ea59a2c766587 | ||
refs/heads/master: 6551ab5d30d6bf0cea0c6cb294686ce3c7fc6042 |
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 @@ | ||
* SPEAr SMI | ||
|
||
Required properties: | ||
- compatible : "st,spear600-smi" | ||
- reg : Address range of the mtd chip | ||
- #address-cells, #size-cells : Must be present if the device has sub-nodes | ||
representing partitions. | ||
- interrupt-parent: Should be the phandle for the interrupt controller | ||
that services interrupts for this device | ||
- interrupts: Should contain the STMMAC interrupts | ||
- clock-rate : Functional clock rate of SMI in Hz | ||
|
||
Optional properties: | ||
- st,smi-fast-mode : Flash supports read in fast mode | ||
|
||
Example: | ||
|
||
smi: flash@fc000000 { | ||
compatible = "st,spear600-smi"; | ||
#address-cells = <1>; | ||
#size-cells = <1>; | ||
reg = <0xfc000000 0x1000>; | ||
interrupt-parent = <&vic1>; | ||
interrupts = <12>; | ||
clock-rate = <50000000>; /* 50MHz */ | ||
|
||
flash@f8000000 { | ||
st,smi-fast-mode; | ||
... | ||
}; | ||
}; |
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