-
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: 272906 b: refs/heads/master c: dc2d07e h: refs/heads/master v: v3
- Loading branch information
Benoit Cousson
authored and
Kevin Hilman
committed
Oct 4, 2011
1 parent
e1a96bb
commit 1c7fe19
Showing
3 changed files
with
145 additions
and
1 deletion.
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: a4f6cdb0672fe9f171b1e8a0faa121b5d76e1c4a | ||
refs/heads/master: dc2d07ebaea839a6e0fa47588c7984931f3c9c71 |
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,43 @@ | ||
* Texas Instruments OMAP | ||
|
||
OMAP is currently using a static file per SoC family to describe the | ||
IPs present in the SoC. | ||
On top of that an omap_device is created to extend the platform_device | ||
capabilities and to allow binding with one or several hwmods. | ||
The hwmods will contain all the information to build the device: | ||
adresse range, irq lines, dma lines, interconnect, PRCM register, | ||
clock domain, input clocks. | ||
For the moment just point to the existing hwmod, the next step will be | ||
to move data from hwmod to device-tree representation. | ||
|
||
|
||
Required properties: | ||
- compatible: Every devices present in OMAP SoC should be in the | ||
form: "ti,XXX" | ||
- ti,hwmods: list of hwmod names (ascii strings), that comes from the OMAP | ||
HW documentation, attached to a device. Must contain at least | ||
one hwmod. | ||
|
||
Optional properties: | ||
- ti,no_idle_on_suspend: When present, it prevents the PM to idle the module | ||
during suspend. | ||
|
||
|
||
Example: | ||
|
||
spinlock@1 { | ||
compatible = "ti,omap4-spinlock"; | ||
ti,hwmods = "spinlock"; | ||
}; | ||
|
||
|
||
Boards: | ||
|
||
- OMAP3 BeagleBoard : Low cost community board | ||
compatible = "ti,omap3-beagle", "ti,omap3" | ||
|
||
- OMAP4 SDP : Software Developement Board | ||
compatible = "ti,omap4-sdp", "ti,omap4430" | ||
|
||
- OMAP4 PandaBoard : Low cost community board | ||
compatible = "ti,omap4-panda", "ti,omap4430" |
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