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/iio/adc/mt6577_auxadc.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 * Mediatek AUXADC - Analog to Digital Converter on Mediatek mobile soc (mt65xx/mt81xx/mt27xx)
    2 ===============
    3 
    4 The Auxiliary Analog/Digital Converter (AUXADC) is an ADC found
    5 in some Mediatek SoCs which among other things measures the temperatures
    6 in the SoC. It can be used directly with register accesses, but it is also
    7 used by thermal controller which reads the temperatures from the AUXADC
    8 directly via its own bus interface. See
    9 Documentation/devicetree/bindings/thermal/mediatek-thermal.txt
   10 for the Thermal Controller which holds a phandle to the AUXADC.
   11 
   12 Required properties:
   13   - compatible: Should be one of:
   14     - "mediatek,mt2701-auxadc": For MT2701 family of SoCs
   15     - "mediatek,mt2712-auxadc": For MT2712 family of SoCs
   16     - "mediatek,mt6765-auxadc": For MT6765 family of SoCs
   17     - "mediatek,mt7622-auxadc": For MT7622 family of SoCs
   18     - "mediatek,mt8173-auxadc": For MT8173 family of SoCs
   19     - "mediatek,mt8183-auxadc", "mediatek,mt8173-auxadc": For MT8183 family of SoCs
   20   - reg: Address range of the AUXADC unit.
   21   - clocks: Should contain a clock specifier for each entry in clock-names
   22   - clock-names: Should contain "main".
   23   - #io-channel-cells: Should be 1, see ../iio-bindings.txt
   24 
   25 Example:
   26 
   27 auxadc: adc@11001000 {
   28         compatible = "mediatek,mt2701-auxadc";
   29         reg = <0 0x11001000 0 0x1000>;
   30         clocks = <&pericfg CLK_PERI_AUXADC>;
   31         clock-names = "main";
   32         #io-channel-cells = <1>;
   33 };

Cache object: 98c2e52cbce4d10dac5b4bf639e6f399


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