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,tegra-audio-sgtl5000.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 Tegra audio complex, with SGTL5000 CODEC
    2 
    3 Required properties:
    4 - compatible : "nvidia,tegra-audio-sgtl5000"
    5 - clocks : Must contain an entry for each entry in clock-names.
    6   See ../clocks/clock-bindings.txt for details.
    7 - clock-names : Must include the following entries:
    8   - pll_a
    9   - pll_a_out0
   10   - mclk (The Tegra cdev1/extern1 clock, which feeds the CODEC's mclk)
   11 - nvidia,model : The user-visible name of this sound complex.
   12 - nvidia,audio-routing : A list of the connections between audio components.
   13   Each entry is a pair of strings, the first being the connection's sink,
   14   the second being the connection's source. Valid names for sources and
   15   sinks are the SGTL5000's pins (as documented in its binding), and the jacks
   16   on the board:
   17 
   18   * Headphone Jack
   19   * Line In Jack
   20   * Mic Jack
   21 
   22 - nvidia,i2s-controller : The phandle of the Tegra I2S controller that's
   23   connected to the CODEC.
   24 - nvidia,audio-codec : The phandle of the SGTL5000 audio codec.
   25 
   26 Example:
   27 
   28 sound {
   29         compatible = "toradex,tegra-audio-sgtl5000-apalis_t30",
   30                      "nvidia,tegra-audio-sgtl5000";
   31         nvidia,model = "Toradex Apalis T30";
   32         nvidia,audio-routing =
   33                 "Headphone Jack", "HP_OUT",
   34                 "LINE_IN", "Line In Jack",
   35                 "MIC_IN", "Mic Jack";
   36         nvidia,i2s-controller = <&tegra_i2s2>;
   37         nvidia,audio-codec = <&sgtl5000>;
   38         clocks = <&tegra_car TEGRA30_CLK_PLL_A>,
   39                  <&tegra_car TEGRA30_CLK_PLL_A_OUT0>,
   40                  <&tegra_car TEGRA30_CLK_EXTERN1>;
   41         clock-names = "pll_a", "pll_a_out0", "mclk";
   42 };

Cache object: c5217dfe9acf3d7b8336f8b067be332a


[ 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.