nvidia,tegra20-ac97.txt 1.2 KB

123456789101112131415161718192021222324252627282930313233343536
  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. - resets : Must contain an entry for each entry in reset-names.
  7. See ../reset/reset.txt for details.
  8. - reset-names : Must include the following entries:
  9. - ac97
  10. - dmas : Must contain an entry for each entry in clock-names.
  11. See ../dma/dma.txt for details.
  12. - dma-names : Must include the following entries:
  13. - rx
  14. - tx
  15. - clocks : Must contain one entry, for the module clock.
  16. See ../clocks/clock-bindings.txt for details.
  17. - nvidia,codec-reset-gpio : The Tegra GPIO controller's phandle and the number
  18. of the GPIO used to reset the external AC97 codec
  19. - nvidia,codec-sync-gpio : The Tegra GPIO controller's phandle and the number
  20. of the GPIO corresponding with the AC97 DAP _FS line
  21. Example:
  22. ac97@70002000 {
  23. compatible = "nvidia,tegra20-ac97";
  24. reg = <0x70002000 0x200>;
  25. interrupts = <0 81 0x04>;
  26. nvidia,codec-reset-gpio = <&gpio 170 0>;
  27. nvidia,codec-sync-gpio = <&gpio 120 0>;
  28. clocks = <&tegra_car 3>;
  29. resets = <&tegra_car 3>;
  30. reset-names = "ac97";
  31. dmas = <&apbdma 12>, <&apbdma 12>;
  32. dma-names = "rx", "tx";
  33. };