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/pcm512x.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 PCM512x audio CODECs
    2 
    3 These devices support both I2C and SPI (configured with pin strapping
    4 on the board).
    5 
    6 Required properties:
    7 
    8   - compatible : One of "ti,pcm5121", "ti,pcm5122", "ti,pcm5141" or
    9                  "ti,pcm5142"
   10 
   11   - reg : the I2C address of the device for I2C, the chip select
   12           number for SPI.
   13 
   14   - AVDD-supply, DVDD-supply, and CPVDD-supply : power supplies for the
   15     device, as covered in bindings/regulator/regulator.txt
   16 
   17 Optional properties:
   18 
   19   - clocks : A clock specifier for the clock connected as SCLK.  If this
   20     is absent the device will be configured to clock from BCLK.  If pll-in
   21     and pll-out are specified in addition to a clock, the device is
   22     configured to accept clock input on a specified gpio pin.
   23 
   24   - pll-in, pll-out : gpio pins used to connect the pll using <1>
   25     through <6>.  The device will be configured for clock input on the
   26     given pll-in pin and PLL output on the given pll-out pin.  An
   27     external connection from the pll-out pin to the SCLK pin is assumed.
   28 
   29 Examples:
   30 
   31         pcm5122: pcm5122@4c {
   32                 compatible = "ti,pcm5122";
   33                 reg = <0x4c>;
   34 
   35                 AVDD-supply = <&reg_3v3_analog>;
   36                 DVDD-supply = <&reg_1v8>;
   37                 CPVDD-supply = <&reg_3v3>;
   38         };
   39 
   40 
   41         pcm5142: pcm5142@4c {
   42                 compatible = "ti,pcm5142";
   43                 reg = <0x4c>;
   44 
   45                 AVDD-supply = <&reg_3v3_analog>;
   46                 DVDD-supply = <&reg_1v8>;
   47                 CPVDD-supply = <&reg_3v3>;
   48 
   49                 clocks = <&sck>;
   50                 pll-in = <3>;
   51                 pll-out = <6>;
   52         };

Cache object: dff71a95ed2a29bb3a79898d01f00cb4


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