The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/contrib/device-tree/Bindings/sound/nvidia,tegra30-hda.txt

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 NVIDIA Tegra30 HDA controller
    2 
    3 Required properties:
    4 - compatible : For Tegra30, must contain "nvidia,tegra30-hda".  Otherwise,
    5   must contain '"nvidia,<chip>-hda", "nvidia,tegra30-hda"', where <chip> is
    6   tegra114, tegra124, or tegra132.
    7 - reg : Should contain the HDA registers location and length.
    8 - interrupts : The interrupt from the HDA controller.
    9 - clocks : Must contain an entry for each required entry in clock-names.
   10   See ../clocks/clock-bindings.txt for details.
   11 - clock-names : Must include the following entries: hda, hda2hdmi, hda2codec_2x
   12 - resets : Must contain an entry for each entry in reset-names.
   13   See ../reset/reset.txt for details.
   14 - reset-names : Must include the following entries: hda, hda2hdmi, hda2codec_2x
   15 
   16 Optional properties:
   17 - nvidia,model : The user-visible name of this sound complex. Since the property
   18   is optional, legacy boards can use default name provided in hda driver.
   19 
   20 Example:
   21 
   22 hda@70030000 {
   23         compatible = "nvidia,tegra124-hda", "nvidia,tegra30-hda";
   24         reg = <0x0 0x70030000 0x0 0x10000>;
   25         interrupts = <GIC_SPI 81 IRQ_TYPE_LEVEL_HIGH>;
   26         clocks = <&tegra_car TEGRA124_CLK_HDA>,
   27                  <&tegra_car TEGRA124_CLK_HDA2HDMI>,
   28                  <&tegra_car TEGRA124_CLK_HDA2CODEC_2X>;
   29         clock-names = "hda", "hda2hdmi", "hda2codec_2x";
   30         resets = <&tegra_car 125>, /* hda */
   31                  <&tegra_car 128>, /* hda2hdmi */
   32                  <&tegra_car 111>; /* hda2codec_2x */
   33         reset-names = "hda", "hda2hdmi", "hda2codec_2x";
   34         nvidia,model = "jetson-tk1-hda";
   35 };

Cache object: 9eab2eeb5b62e4688e36c72b13125b34


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.