nvidia,tegra20-i2s.txt 868 B

123456789101112131415161718192021222324252627282930
  1. NVIDIA Tegra 20 I2S controller
  2. Required properties:
  3. - compatible : "nvidia,tegra20-i2s"
  4. - reg : Should contain I2S registers location and length
  5. - interrupts : Should contain I2S 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. - i2s
  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. Example:
  18. i2s@70002800 {
  19. compatible = "nvidia,tegra20-i2s";
  20. reg = <0x70002800 0x200>;
  21. interrupts = < 45 >;
  22. clocks = <&tegra_car 11>;
  23. resets = <&tegra_car 11>;
  24. reset-names = "i2s";
  25. dmas = <&apbdma 21>, <&apbdma 21>;
  26. dma-names = "rx", "tx";
  27. };