nvidia,tegra30-hda.txt 1.2 KB

123456789101112131415161718192021222324252627282930
  1. NVIDIA Tegra30 HDA controller
  2. Required properties:
  3. - compatible : For Tegra30, must contain "nvidia,tegra30-hda". Otherwise,
  4. must contain '"nvidia,<chip>-hda", "nvidia,tegra30-hda"', where <chip> is
  5. tegra114, tegra124, or tegra132.
  6. - reg : Should contain the HDA registers location and length.
  7. - interrupts : The interrupt from the HDA controller.
  8. - clocks : Must contain an entry for each required entry in clock-names.
  9. See ../clocks/clock-bindings.txt for details.
  10. - clock-names : Must include the following entries: hda, hda2hdmi, hda2codec_2x
  11. - resets : Must contain an entry for each entry in reset-names.
  12. See ../reset/reset.txt for details.
  13. - reset-names : Must include the following entries: hda, hda2hdmi, hda2codec_2x
  14. Example:
  15. hda@0,70030000 {
  16. compatible = "nvidia,tegra124-hda", "nvidia,tegra30-hda";
  17. reg = <0x0 0x70030000 0x0 0x10000>;
  18. interrupts = <GIC_SPI 81 IRQ_TYPE_LEVEL_HIGH>;
  19. clocks = <&tegra_car TEGRA124_CLK_HDA>,
  20. <&tegra_car TEGRA124_CLK_HDA2HDMI>,
  21. <&tegra_car TEGRA124_CLK_HDA2CODEC_2X>;
  22. clock-names = "hda", "hda2hdmi", "hda2codec_2x";
  23. resets = <&tegra_car 125>, /* hda */
  24. <&tegra_car 128>, /* hda2hdmi */
  25. <&tegra_car 111>; /* hda2codec_2x */
  26. reset-names = "hda", "hda2hdmi", "hda2codec_2x";
  27. };