-
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.
ASoC: omap-mcpdm: Add device tree bindings
Device tree support for OMAP4+ McPDM cpu dai driver. Signed-off-by: Peter Ujfalusi <peter.ujfalusi@ti.com> Reviewed-by: Mark Brown <broonie@opensource.wolfsonmicro.com> Signed-off-by: Liam Girdwood <lrg@ti.com>
- Loading branch information
Peter Ujfalusi
authored and
Liam Girdwood
committed
May 22, 2012
1 parent
ce37f5e
commit 7cb8a1b
Showing
2 changed files
with
29 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
* Texas Instruments OMAP4+ McPDM | ||
|
||
Required properties: | ||
- compatible: "ti,omap4-mcpdm" | ||
- reg: Register location and size as an array: | ||
<MPU access base address, size>, | ||
<L3 interconnect address, size>; | ||
- interrupts: Interrupt number for McPDM | ||
- interrupt-parent: The parent interrupt controller | ||
- ti,hwmods: Name of the hwmod associated to the McPDM | ||
|
||
Example: | ||
|
||
mcpdm: mcpdm@40132000 { | ||
compatible = "ti,omap4-mcpdm"; | ||
reg = <0x40132000 0x7f>, /* MPU private access */ | ||
<0x49032000 0x7f>; /* L3 Interconnect */ | ||
interrupts = <0 112 0x4>; | ||
interrupt-parent = <&gic>; | ||
ti,hwmods = "mcpdm"; | ||
}; |
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