mirror of
https://github.com/torvalds/linux.git
synced 2024-12-18 17:12:55 +00:00
7cb8a1b5ba
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>
22 lines
607 B
Plaintext
22 lines
607 B
Plaintext
* 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";
|
|
};
|