omap-dmic.txt 626 B

123456789101112131415161718192021
  1. * Texas Instruments OMAP4+ Digital Microphone Module
  2. Required properties:
  3. - compatible: "ti,omap4-dmic"
  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 DMIC
  8. - interrupt-parent: The parent interrupt controller
  9. - ti,hwmods: Name of the hwmod associated with OMAP dmic IP
  10. Example:
  11. dmic: dmic@4012e000 {
  12. compatible = "ti,omap4-dmic";
  13. reg = <0x4012e000 0x7f>, /* MPU private access */
  14. <0x4902e000 0x7f>; /* L3 Interconnect */
  15. interrupts = <0 114 0x4>;
  16. interrupt-parent = <&gic>;
  17. ti,hwmods = "dmic";
  18. };