nvidia,tegra30-i2s.txt 957 B

123456789101112131415161718192021222324252627
  1. NVIDIA Tegra30 I2S controller
  2. Required properties:
  3. - compatible : For Tegra30, must contain "nvidia,tegra30-i2s". For Tegra124,
  4. must contain "nvidia,tegra124-i2s". Otherwise, must contain
  5. "nvidia,<chip>-i2s" plus at least one of the above, where <chip> is
  6. tegra114 or tegra132.
  7. - reg : Should contain I2S registers location and length
  8. - clocks : Must contain one entry, for the module clock.
  9. See ../clocks/clock-bindings.txt for details.
  10. - resets : Must contain an entry for each entry in reset-names.
  11. See ../reset/reset.txt for details.
  12. - reset-names : Must include the following entries:
  13. - i2s
  14. - nvidia,ahub-cif-ids : The list of AHUB CIF IDs for this port, rx (playback)
  15. first, tx (capture) second. See nvidia,tegra30-ahub.txt for values.
  16. Example:
  17. i2s@70080300 {
  18. compatible = "nvidia,tegra30-i2s";
  19. reg = <0x70080300 0x100>;
  20. nvidia,ahub-cif-ids = <4 4>;
  21. clocks = <&tegra_car 11>;
  22. resets = <&tegra_car 11>;
  23. reset-names = "i2s";
  24. };