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/hwmon/nuvoton,nct6775.yaml

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 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
    2 %YAML 1.2
    3 ---
    4 
    5 $id: http://devicetree.org/schemas/hwmon/nuvoton,nct6775.yaml#
    6 $schema: http://devicetree.org/meta-schemas/core.yaml#
    7 
    8 title: Nuvoton NCT6775 and compatible Super I/O chips
    9 
   10 maintainers:
   11   - Zev Weiss <zev@bewilderbeest.net>
   12 
   13 properties:
   14   compatible:
   15     enum:
   16       - nuvoton,nct6106
   17       - nuvoton,nct6116
   18       - nuvoton,nct6775
   19       - nuvoton,nct6776
   20       - nuvoton,nct6779
   21       - nuvoton,nct6791
   22       - nuvoton,nct6792
   23       - nuvoton,nct6793
   24       - nuvoton,nct6795
   25       - nuvoton,nct6796
   26       - nuvoton,nct6797
   27       - nuvoton,nct6798
   28 
   29   reg:
   30     maxItems: 1
   31 
   32   nuvoton,tsi-channel-mask:
   33     description:
   34       Bitmask indicating which TSI temperature sensor channels are
   35       active.  LSB is TSI0, bit 1 is TSI1, etc.
   36     $ref: /schemas/types.yaml#/definitions/uint32
   37     maximum: 0xff
   38     default: 0
   39 
   40 required:
   41   - compatible
   42   - reg
   43 
   44 additionalProperties: false
   45 
   46 examples:
   47   - |
   48     i2c {
   49         #address-cells = <1>;
   50         #size-cells = <0>;
   51 
   52         superio@4d {
   53             compatible = "nuvoton,nct6779";
   54             reg = <0x4d>;
   55             nuvoton,tsi-channel-mask = <0x03>;
   56         };
   57     };

Cache object: 77154610ec86ae7c4c7f79eb56424a3c


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