omap-mcpdm.txt 607 B

123456789101112131415161718192021
  1. * Texas Instruments OMAP4+ McPDM
  2. Required properties:
  3. - compatible: "ti,omap4-mcpdm"
  4. - reg: Register location and size as an array:
  5. <MPU access base address, size>,
  6. <L3 interconnect address, size>;
  7. - interrupts: Interrupt number for McPDM
  8. - interrupt-parent: The parent interrupt controller
  9. - ti,hwmods: Name of the hwmod associated to the McPDM
  10. Example:
  11. mcpdm: mcpdm@40132000 {
  12. compatible = "ti,omap4-mcpdm";
  13. reg = <0x40132000 0x7f>, /* MPU private access */
  14. <0x49032000 0x7f>; /* L3 Interconnect */
  15. interrupts = <0 112 0x4>;
  16. interrupt-parent = <&gic>;
  17. ti,hwmods = "mcpdm";
  18. };