-
Notifications
You must be signed in to change notification settings - Fork 0
/
performance.conf
145 lines (145 loc) · 6.12 KB
/
performance.conf
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
<?xml version="1.0"?>
<!--
use "man thermal-conf.xml" for details
https://gist.github.com/presianbg/ab0d78406a8663fd4138
-->
<!-- BEGIN -->
<ThermalConfiguration>
<Platform>
<Name>ASUS G750J</Name>
<ProductName>*</ProductName>
<!--Quiet mode will only use passive cooling device. "PERFORMANCE"
will only select active devices .-->
<Preference>QUIET</Preference>
<ThermalZones>
<ThermalZone>
<Type>x86_pkg_temp</Type>
<TripPoints>
<TripPoint>
<SensorType>x86_pkg_temp</SensorType>
<Temperature>60000</Temperature>
<!-- max/passive/active If a MAX type is specified,
then daemon will use PID control to aggressively throttle to
avoid reaching this temp.-->
<type>passive</type>
<!-- SEQUENTIAL | PARALLEL. When a trip point temp is violated,
then number of cooling devices can be activated. If control
type is SEQUENTIAL then, it will exhaust first cooling device
before trying next.-->
<ControlType>PARALLEL</ControlType>
<CoolingDevice>
<index>1</index>
<type>cpu_fan0_disabled</type>
<!-- Influence will be used order cooling devices. First cooling
device will be used, which has highest influence.-->
<influence> 100 </influence>
<!-- Delay in using this cdev -->
<SamplingPeriod> 1000 </SamplingPeriod>
</CoolingDevice>
<CoolingDevice>
<index>1</index>
<type>cpu_fan1_disabled</type>
<influence> 100 </influence>
<SamplingPeriod> 1000 </SamplingPeriod>
</CoolingDevice>
<CoolingDevice>
<index>1</index>
<type>cpu_fan2_disabled</type>
<influence> 100 </influence>
<SamplingPeriod> 1000 </SamplingPeriod>
</CoolingDevice>
<!--CoolingDevice>
<index>2</index>
<type>rapl_controller</type>
<influence> 50 </influence>
<SamplingPeriod> 10 </SamplingPeriod>
</CoolingDevice-->
</TripPoint>
<TripPoint>
<SensorType>x86_pkg_temp</SensorType>
<Temperature>70000</Temperature>
<type>passive</type>
<ControlType>SEQUENTIAL</ControlType>
<CoolingDevice>
<index>1</index>
<type>cpu_fan2</type>
<influence> 100 </influence>
<SamplingPeriod> 1 </SamplingPeriod>
</CoolingDevice>
<CoolingDevice>
<index>1</index>
<type>cpu_fan1</type>
<influence> 100 </influence>
<SamplingPeriod> 1 </SamplingPeriod>
</CoolingDevice>
<CoolingDevice>
<index>1</index>
<type>cpu_fan0</type>
<influence> 100 </influence>
<SamplingPeriod> 1 </SamplingPeriod>
</CoolingDevice>
<!--CoolingDevice>
<index>2</index>
<type>rapl_controller</type>
<influence> 50 </influence>
<SamplingPeriod> 10 </SamplingPeriod>
</CoolingDevice-->
<CoolingDevice>
<index>3</index>
<type>intel_pstate</type>
<influence> 40 </influence>
<SamplingPeriod> 10 </SamplingPeriod>
</CoolingDevice>
</TripPoint>
</TripPoints>
</ThermalZone>
</ThermalZones>
<CoolingDevices>
<CoolingDevice>
<Type>cpu_fan0_disabled</Type>
<Path>/sys/devices/platform/asus-nb-wmi/hwmon/hwmon0/pwm1</Path>
<MinState>0</MinState>
<MaxState>0</MaxState>
</CoolingDevice>
<CoolingDevice>
<Type>cpu_fan1_disabled</Type>
<Path>/sys/devices/platform/asus-nb-wmi/hwmon/hwmon1/pwm1</Path>
<MinState>0</MinState>
<MaxState>0</MaxState>
</CoolingDevice>
<CoolingDevice>
<Type>cpu_fan2_disabled</Type>
<Path>/sys/devices/platform/asus-nb-wmi/hwmon/hwmon2/pwm1</Path>
<MinState>0</MinState>
<MaxState>0</MaxState>
</CoolingDevice>
<CoolingDevice>
<Type>cpu_fan0</Type>
<Path>/sys/devices/platform/asus-nb-wmi/hwmon/hwmon0/pwm1</Path>
<MinState>60</MinState>
<IncDecStep>30</IncDecStep>
<ReadBack> 0 </ReadBack>
<MaxState>255</MaxState>
<!--Debounce period can be used to force a waiting period for action. -->
<!--DebouncePeriod>5</DebouncePeriod-->
</CoolingDevice>
<CoolingDevice>
<Type>cpu_fan1</Type>
<Path>/sys/devices/platform/asus-nb-wmi/hwmon/hwmon1/pwm1</Path>
<MinState>60</MinState>
<IncDecStep>30</IncDecStep>
<ReadBack> 0 </ReadBack>
<MaxState>255</MaxState>
</CoolingDevice>
<CoolingDevice>
<Type>cpu_fan2</Type>
<Path>/sys/devices/platform/asus-nb-wmi/hwmon/hwmon2/pwm1</Path>
<MinState>60</MinState>
<IncDecStep>30</IncDecStep>
<ReadBack> 0 </ReadBack>
<MaxState>255</MaxState>
</CoolingDevice>
</CoolingDevices>
</Platform>
</ThermalConfiguration>
<!-- END -->