mirror of
https://github.com/AetherDroid/android_kernel_samsung_on5xelte.git
synced 2025-09-08 01:08:03 -04:00
26 lines
522 B
C
26 lines
522 B
C
/*
|
|
* This header provides constants for most thermal bindings.
|
|
*
|
|
* Copyright (C) 2013 Texas Instruments
|
|
* Eduardo Valentin <eduardo.valentin@ti.com>
|
|
*
|
|
* GPLv2 only
|
|
*/
|
|
|
|
#ifndef _DT_BINDINGS_THERMAL_THERMAL_H
|
|
#define _DT_BINDINGS_THERMAL_THERMAL_H
|
|
|
|
/* On cooling devices upper and lower limits */
|
|
#define THERMAL_NO_LIMIT (-1UL)
|
|
#define TABLE_END (~1)
|
|
|
|
#define THROTTLE_ACTIVE (1)
|
|
#define THROTTLE_PASSIVE (2)
|
|
#define SW_TRIP (3)
|
|
#define HW_TRIP (4)
|
|
|
|
#define DISABLE (0)
|
|
#define ENABLE (1)
|
|
|
|
#endif
|
|
|