1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
#ifndef _MTK_THERMAL_MONITOR_H
#define _MTK_THERMAL_MONITOR_H
#include <linux/thermal.h>
/*
* MTK_THERMAL_WRAPPER_BYPASS = 1 (use original Linux Thermal API)
* MTK_THERMAL_WRAPPER_BYPASS = 0 (use MTK Thermal API Monitor)
*/
#define MTK_THERMAL_WRAPPER_BYPASS 0
#if MTK_THERMAL_WRAPPER_BYPASS
/* Original LTF API */
#define mtk_thermal_zone_device_register thermal_zone_device_register
#define mtk_thermal_zone_device_unregister thermal_zone_device_unregister
#define mtk_thermal_cooling_device_unregister thermal_cooling_device_unregister
#define mtk_thermal_cooling_device_register thermal_cooling_device_register
#define mtk_thermal_zone_bind_cooling_device thermal_zone_bind_cooling_device
#else
extern
struct thermal_zone_device *mtk_thermal_zone_device_register_wrapper
(char *type,
int trips,
void *devdata,
const struct thermal_zone_device_ops *ops,
int tc1, int tc2, int passive_delay, int polling_delay);
extern
void mtk_thermal_zone_device_unregister_wrapper(struct thermal_zone_device *tz);
extern
struct thermal_cooling_device *mtk_thermal_cooling_device_register_wrapper
(char *type, void *devdata, const struct thermal_cooling_device_ops *ops);
extern
void mtk_thermal_cooling_device_unregister_wrapper(struct thermal_cooling_device *cdev);
extern int mtk_thermal_zone_bind_cooling_device_wrapper
(struct thermal_zone_device *tz, int trip, struct thermal_cooling_device *cdev);
extern int mtk_thermal_zone_bind_trigger_trip(struct thermal_zone_device *tz, int trip, int mode);
#define mtk_thermal_zone_device_register mtk_thermal_zone_device_register_wrapper
#define mtk_thermal_zone_device_unregister mtk_thermal_zone_device_unregister_wrapper
#define mtk_thermal_cooling_device_unregister mtk_thermal_cooling_device_unregister_wrapper
#define mtk_thermal_cooling_device_register mtk_thermal_cooling_device_register_wrapper
#define mtk_thermal_zone_bind_cooling_device mtk_thermal_zone_bind_cooling_device_wrapper
#endif
typedef enum {
MTK_THERMAL_SENSOR_CPU = 0,
MTK_THERMAL_SENSOR_ABB,
MTK_THERMAL_SENSOR_PMIC,
MTK_THERMAL_SENSOR_BATTERY,
MTK_THERMAL_SENSOR_MD1,
MTK_THERMAL_SENSOR_MD2,
MTK_THERMAL_SENSOR_WIFI,
MTK_THERMAL_SENSOR_BATTERY2,
MTK_THERMAL_SENSOR_BUCK,
MTK_THERMAL_SENSOR_AP,
MTK_THERMAL_SENSOR_PCB1,
MTK_THERMAL_SENSOR_PCB2,
MTK_THERMAL_SENSOR_SKIN,
MTK_THERMAL_SENSOR_XTAL,
MTK_THERMAL_SENSOR_COUNT
} MTK_THERMAL_SENSOR_ID;
extern int mtk_thermal_get_temp(MTK_THERMAL_SENSOR_ID id);
#endif
|