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/src/arm/exynos4-cpu-thermal.dtsi

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
    2 /*
    3  * Device tree sources for Exynos4 thermal zone
    4  *
    5  * Copyright (c) 2014 Lukasz Majewski <l.majewski@samsung.com>
    6  */
    7 
    8 #include <dt-bindings/thermal/thermal.h>
    9 
   10 / {
   11 thermal-zones {
   12         cpu_thermal: cpu-thermal {
   13                 thermal-sensors = <&tmu 0>;
   14                 polling-delay-passive = <0>;
   15                 polling-delay = <0>;
   16                 trips {
   17                         cpu_alert0: cpu-alert-0 {
   18                                 temperature = <70000>; /* millicelsius */
   19                                 hysteresis = <10000>; /* millicelsius */
   20                                 type = "active";
   21                         };
   22                         cpu_alert1: cpu-alert-1 {
   23                                 temperature = <95000>; /* millicelsius */
   24                                 hysteresis = <10000>; /* millicelsius */
   25                                 type = "active";
   26                         };
   27                         cpu_alert2: cpu-alert-2 {
   28                                 temperature = <110000>; /* millicelsius */
   29                                 hysteresis = <10000>; /* millicelsius */
   30                                 type = "active";
   31                         };
   32                         cpu_crit0: cpu-crit-0 {
   33                                 temperature = <120000>; /* millicelsius */
   34                                 hysteresis = <0>; /* millicelsius */
   35                                 type = "critical";
   36                         };
   37                 };
   38                 cooling-maps {
   39                         map0 {
   40                                 trip = <&cpu_alert0>;
   41                         };
   42                         map1 {
   43                                 trip = <&cpu_alert1>;
   44                         };
   45                 };
   46         };
   47 };
   48 };

Cache object: c999eb3654b5f71bad1fea0bfc1592bc


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