omap-mcpdm.txt 555 B

1234567891011121314151617181920
  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. - ti,hwmods: Name of the hwmod associated to the McPDM
  9. Example:
  10. mcpdm: mcpdm@40132000 {
  11. compatible = "ti,omap4-mcpdm";
  12. reg = <0x40132000 0x7f>, /* MPU private access */
  13. <0x49032000 0x7f>; /* L3 Interconnect */
  14. interrupts = <0 112 0x4>;
  15. interrupt-parent = <&gic>;
  16. ti,hwmods = "mcpdm";
  17. };