-
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.
arm/dts: OMAP3+: Add mpu, dsp and iva nodes
Add nodes for devices used by PM code (mpu, dsp, iva). Add a cpus node as well as recommended in the DT spec. Remove mpu, dsp, iva devices init if is populated. Signed-off-by: Benoit Cousson <b-cousson@ti.com> Acked-by: Grant Likely <grant.likely@secretlab.ca> Cc: Kevin Hilman <khilman@ti.com>
- Loading branch information
Benoit Cousson
committed
Oct 4, 2011
1 parent
ad8dfac
commit 476b679
Showing
6 changed files
with
104 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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
* TI - DSP (Digital Signal Processor) | ||
|
||
TI DSP included in OMAP SoC | ||
|
||
Required properties: | ||
- compatible : Should be "ti,omap3-c64" for OMAP3 & 4 | ||
- ti,hwmods: "dsp" | ||
|
||
Examples: | ||
|
||
dsp { | ||
compatible = "ti,omap3-c64"; | ||
ti,hwmods = "dsp"; | ||
}; |
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 @@ | ||
* TI - IVA (Imaging and Video Accelerator) subsystem | ||
|
||
The IVA contain various audio, video or imaging HW accelerator | ||
depending of the version. | ||
|
||
Required properties: | ||
- compatible : Should be: | ||
- "ti,ivahd" for OMAP4 | ||
- "ti,iva2.2" for OMAP3 | ||
- "ti,iva2.1" for OMAP2430 | ||
- "ti,iva1" for OMAP2420 | ||
- ti,hwmods: "iva" | ||
|
||
Examples: | ||
|
||
iva { | ||
compatible = "ti,ivahd", "ti,iva"; | ||
ti,hwmods = "iva"; | ||
}; |
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,27 @@ | ||
* TI - MPU (Main Processor Unit) subsystem | ||
|
||
The MPU subsystem contain one or several ARM cores | ||
depending of the version. | ||
The MPU contain CPUs, GIC, L2 cache and a local PRCM. | ||
|
||
Required properties: | ||
- compatible : Should be "ti,omap3-mpu" for OMAP3 | ||
Should be "ti,omap4-mpu" for OMAP4 | ||
- ti,hwmods: "mpu" | ||
|
||
Examples: | ||
|
||
- For an OMAP4 SMP system: | ||
|
||
mpu { | ||
compatible = "ti,omap4-mpu"; | ||
ti,hwmods = "mpu"; | ||
}; | ||
|
||
|
||
- For an OMAP3 monocore system: | ||
|
||
mpu { | ||
compatible = "ti,omap3-mpu"; | ||
ti,hwmods = "mpu"; | ||
}; |
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