nvidia,tegra20-ac97.txt 831 B

12345678910111213141516171819202122
  1. NVIDIA Tegra 20 AC97 controller
  2. Required properties:
  3. - compatible : "nvidia,tegra20-ac97"
  4. - reg : Should contain AC97 controller registers location and length
  5. - interrupts : Should contain AC97 interrupt
  6. - nvidia,dma-request-selector : The Tegra DMA controller's phandle and
  7. request selector for the AC97 controller
  8. - nvidia,codec-reset-gpio : The Tegra GPIO controller's phandle and the number
  9. of the GPIO used to reset the external AC97 codec
  10. - nvidia,codec-sync-gpio : The Tegra GPIO controller's phandle and the number
  11. of the GPIO corresponding with the AC97 DAP _FS line
  12. Example:
  13. ac97@70002000 {
  14. compatible = "nvidia,tegra20-ac97";
  15. reg = <0x70002000 0x200>;
  16. interrupts = <0 81 0x04>;
  17. nvidia,dma-request-selector = <&apbdma 12>;
  18. nvidia,codec-reset-gpio = <&gpio 170 0>;
  19. nvidia,codec-sync-gpio = <&gpio 120 0>;
  20. };