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/amd,sbtsi.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 $id: http://devicetree.org/schemas/hwmon/amd,sbtsi.yaml#
    5 $schema: http://devicetree.org/meta-schemas/core.yaml#
    6 
    7 title: >
    8   Sideband interface Temperature Sensor Interface (SB-TSI) compliant
    9   AMD SoC temperature device
   10 
   11 maintainers:
   12   - Kun Yi <kunyi@google.com>
   13   - Supreeth Venkatesh <supreeth.venkatesh@amd.com>
   14 
   15 description: |
   16   SB Temperature Sensor Interface (SB-TSI) is an SMBus compatible
   17   interface that reports AMD SoC's Ttcl (normalized temperature),
   18   and resembles a typical 8-pin remote temperature sensor's I2C interface
   19   to BMC. The emulated thermal sensor can report temperatures in increments
   20   of 0.125 degrees, ranging from 0 to 255.875.
   21 
   22 properties:
   23   compatible:
   24     enum:
   25       - amd,sbtsi
   26 
   27   reg:
   28     maxItems: 1
   29     description: |
   30       I2C bus address of the device as specified in Section 6.3.1 of the
   31       SoC register reference. The SB-TSI address is normally 98h for socket
   32       0 and 90h for socket 1, but it could vary based on hardware address
   33       select pins.
   34       \[open source SoC register reference\]
   35         https://www.amd.com/system/files/TechDocs/56255_OSRR.pdf
   36 
   37 required:
   38   - compatible
   39   - reg
   40 
   41 additionalProperties: false
   42 
   43 examples:
   44   - |
   45     i2c0 {
   46         #address-cells = <1>;
   47         #size-cells = <0>;
   48 
   49         sbtsi@4c {
   50                 compatible = "amd,sbtsi";
   51                 reg = <0x4c>;
   52         };
   53     };
   54 ...

Cache object: f7e164f592a915d8d97db3de1aea0911


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