forked from intel/thermal_daemon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
thd_engine_default.h
52 lines (45 loc) · 1.5 KB
/
thd_engine_default.h
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
/*
* cthd_engine_defualt.cpp: Default thermal engine
*
* Copyright (C) 2013 Intel Corporation. All rights reserved.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License version
* 2 or later as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
* 02110-1301, USA.
*
*
* Author Name <[email protected]>
*
*/
#ifndef THD_ENGINE_DEFAULT_H_
#define THD_ENGINE_DEFAULT_H_
#include "thd_engine.h"
#include "thd_cpu_default_binding.h"
class cthd_engine_default: public cthd_engine {
private:
int add_replace_cdev(cooling_dev_t *config);
bool add_int340x_processor_dev(void);
cthd_cpu_default_binding def_binding;
public:
static const int power_clamp_reduction_percent = 5;
cthd_engine_default() :
cthd_engine() {
}
~cthd_engine_default();
int read_thermal_zones();
int read_cooling_devices();
int read_thermal_sensors();
};
int thd_engine_create_default_engine(bool ignore_cpuid_check,
bool exclusive_control, const char *config_file);
#endif /* THD_ENGINE_DEFAULT_H_ */