marvell,pxa2xx-ac97.txt 826 B

123456789101112131415161718192021222324252627
  1. Marvell PXA2xx audio complex
  2. This descriptions matches the AC97 controller found in pxa2xx and pxa3xx series.
  3. Required properties:
  4. - compatible: should be one of the following:
  5. "marvell,pxa250-ac97"
  6. "marvell,pxa270-ac97"
  7. "marvell,pxa300-ac97"
  8. - reg: device MMIO address space
  9. - interrupts: single interrupt generated by AC97 IP
  10. - clocks: input clock of the AC97 IP, refer to clock-bindings.txt
  11. Optional properties:
  12. - pinctrl-names, pinctrl-0: refer to pinctrl-bindings.txt
  13. - reset-gpios: gpio used for AC97 reset, refer to gpio.txt
  14. Example:
  15. ac97: sound@40500000 {
  16. compatible = "marvell,pxa250-ac97";
  17. reg = < 0x40500000 0x1000 >;
  18. interrupts = <14>;
  19. reset-gpios = <&gpio 113 GPIO_ACTIVE_HIGH>;
  20. #sound-dai-cells = <1>;
  21. pinctrl-names = "default";
  22. pinctrl-0 = < &pmux_ac97_default >;
  23. };