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/thermal/amlogic,thermal.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 OR BSD-2-Clause)
    2 %YAML 1.2
    3 ---
    4 $id: http://devicetree.org/schemas/thermal/amlogic,thermal.yaml#
    5 $schema: http://devicetree.org/meta-schemas/core.yaml#
    6 
    7 title: Amlogic Thermal
    8 
    9 maintainers:
   10   - Guillaume La Roque <glaroque@baylibre.com>
   11 
   12 description: Binding for Amlogic Thermal
   13 
   14 properties:
   15   compatible:
   16     items:
   17       - enum:
   18           - amlogic,g12a-cpu-thermal
   19           - amlogic,g12a-ddr-thermal
   20       - const: amlogic,g12a-thermal
   21 
   22   reg:
   23     maxItems: 1
   24 
   25   interrupts:
   26     maxItems: 1
   27 
   28   clocks:
   29     maxItems: 1
   30 
   31   amlogic,ao-secure:
   32     description: phandle to the ao-secure syscon
   33     $ref: '/schemas/types.yaml#/definitions/phandle'
   34 
   35   '#thermal-sensor-cells':
   36     const: 0
   37 
   38 required:
   39   - compatible
   40   - reg
   41   - interrupts
   42   - clocks
   43   - amlogic,ao-secure
   44 
   45 additionalProperties: false
   46 
   47 examples:
   48   - |
   49         cpu_temp: temperature-sensor@ff634800 {
   50                 compatible = "amlogic,g12a-cpu-thermal",
   51                              "amlogic,g12a-thermal";
   52                 reg = <0xff634800 0x50>;
   53                 interrupts = <0x0 0x24 0x0>;
   54                 clocks = <&clk 164>;
   55                 #thermal-sensor-cells = <0>;
   56                 amlogic,ao-secure = <&sec_AO>;
   57         };
   58 ...

Cache object: 4b147b1cd3ba196c88ab5c171578148b


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