mvebu-audio.txt 771 B

1234567891011121314151617181920212223242526272829
  1. * mvebu (Kirkwood, Dove, Armada 370) audio controller
  2. Required properties:
  3. - compatible: "marvell,mvebu-audio"
  4. - reg: physical base address of the controller and length of memory mapped
  5. region.
  6. - interrupts: list of two irq numbers.
  7. The first irq is used for data flow and the second one is used for errors.
  8. - clocks: one or two phandles.
  9. The first one is mandatory and defines the internal clock.
  10. The second one is optional and defines an external clock.
  11. - clock-names: names associated to the clocks:
  12. "internal" for the internal clock
  13. "extclk" for the external clock
  14. Example:
  15. i2s1: audio-controller@b4000 {
  16. compatible = "marvell,mvebu-audio";
  17. reg = <0xb4000 0x2210>;
  18. interrupts = <21>, <22>;
  19. clocks = <&gate_clk 13>;
  20. clock-names = "internal";
  21. };