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/ak4642.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 AK4642 I2C transmitter
    2 
    3 This device supports I2C mode only.
    4 
    5 Required properties:
    6 
    7   - compatible : "asahi-kasei,ak4642" or "asahi-kasei,ak4643" or "asahi-kasei,ak4648"
    8   - reg : The chip select number on the I2C bus
    9 
   10 Optional properties:
   11 
   12   - #clock-cells :              common clock binding; shall be set to 0
   13   - clocks :                    common clock binding; MCKI clock
   14   - clock-frequency :           common clock binding; frequency of MCKO
   15   - clock-output-names :        common clock binding; MCKO clock name
   16 
   17 Example 1:
   18 
   19 &i2c {
   20         ak4648: ak4648@12 {
   21                 compatible = "asahi-kasei,ak4642";
   22                 reg = <0x12>;
   23         };
   24 };
   25 
   26 Example 2:
   27 
   28 &i2c {
   29         ak4643: codec@12 {
   30                 compatible = "asahi-kasei,ak4643";
   31                 reg = <0x12>;
   32                 #clock-cells = <0>;
   33                 clocks = <&audio_clock>;
   34                 clock-frequency = <12288000>;
   35                 clock-output-names = "ak4643_mcko";
   36         };
   37 };

Cache object: c367ef3c9dca3e2fbb72b421c4f0912b


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