-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathmain.cpp
269 lines (243 loc) · 8.06 KB
/
main.cpp
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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
#include "bzh_dell_smm_io_codes.h"
#include "bzh_dell_smm_io_drv_fun.h"
#include <iostream>
using namespace std;
// Function prototypes.
void usage();
void loadDriver();
void unloadDriver();
// Main program begins here.
int main(int argc, char* argv[])
{
cout << "DellFanCmd 1.1\n";
cout << "By Aaron Kelley\n";
cout << "Licensed under GPLv3\n";
cout << "Source code available at https://github.com/AaronKelley/DellFanCmd\n\n";
cout << "Dell SMM IO driver by 424778940z\n";
cout << "https://github.com/424778940z/bzh-windrv-dell-smm-io\n\n";
cout << "Derived from \"Dell fan utility\" by 424778940z\n";
cout << "https://github.com/424778940z/dell-fan-utility\n\n";
int returnCode = 0;
if (argc != 2)
{
usage();
}
else
{
// Behavior variables.
bool disableEcFanControl = false;
bool enableEcFanControl = false;
bool setFansTo100 = false;
bool useAlternateCommand = false;
bool setFanLevel = false;
bool getFanRpm = false;
ULONG fanSelection = 0;
ULONG fanLevel = 0;
// Figure out what was requested.
if (strcmp(argv[1], "ec-disable") == 0)
{
disableEcFanControl = true;
setFansTo100 = true;
}
else if (strcmp(argv[1], "ec-disable-nofanchg") == 0)
{
disableEcFanControl = true;
}
else if (strcmp(argv[1], "ec-enable") == 0)
{
enableEcFanControl = true;
}
else if (strcmp(argv[1], "ec-disable-alt") == 0)
{
disableEcFanControl = true;
setFansTo100 = true;
useAlternateCommand = true;
}
else if (strcmp(argv[1], "ec-disable-alt-nofanchg") == 0)
{
disableEcFanControl = true;
useAlternateCommand = true;
}
else if (strcmp(argv[1], "ec-enable-alt") == 0)
{
enableEcFanControl = true;
useAlternateCommand = true;
}
else if (strcmp(argv[1], "fan1-level0") == 0)
{
setFanLevel = true;
fanSelection = DELL_SMM_IO_FAN1;
fanLevel = DELL_SMM_IO_FAN_LV0;
}
else if (strcmp(argv[1], "fan1-level1") == 0)
{
setFanLevel = true;
fanSelection = DELL_SMM_IO_FAN1;
fanLevel = DELL_SMM_IO_FAN_LV1;
}
else if (strcmp(argv[1], "fan1-level2") == 0)
{
setFanLevel = true;
fanSelection = DELL_SMM_IO_FAN1;
fanLevel = DELL_SMM_IO_FAN_LV2;
}
else if (strcmp(argv[1], "fan2-level0") == 0)
{
setFanLevel = true;
fanSelection = DELL_SMM_IO_FAN2;
fanLevel = DELL_SMM_IO_FAN_LV0;
}
else if (strcmp(argv[1], "fan2-level1") == 0)
{
setFanLevel = true;
fanSelection = DELL_SMM_IO_FAN2;
fanLevel = DELL_SMM_IO_FAN_LV1;
}
else if (strcmp(argv[1], "fan2-level2") == 0)
{
setFanLevel = true;
fanSelection = DELL_SMM_IO_FAN2;
fanLevel = DELL_SMM_IO_FAN_LV2;
}
else if (strcmp(argv[1], "rpm-fan1") == 0)
{
getFanRpm = true;
fanSelection = DELL_SMM_IO_FAN1;
}
else if (strcmp(argv[1], "rpm-fan2") == 0)
{
getFanRpm = true;
fanSelection = DELL_SMM_IO_FAN2;
}
else
{
usage();
exit(-3);
}
// Execute request.
// Load driver first.
loadDriver();
if (disableEcFanControl)
{
cout << "Attempting to disable EC control of the fan...\n";
ULONG command = !useAlternateCommand ? DELL_SMM_IO_DISABLE_FAN_CTL1 : DELL_SMM_IO_DISABLE_FAN_CTL2;
int result = dell_smm_io(command, DELL_SMM_IO_NO_ARG);
if (result == -1)
{
cerr << "Failed.\n";
unloadDriver();
exit(-1);
}
cout << " ...Success.\n";
if (setFansTo100)
{
cout << "Setting fan 1 speed to maximum...\n";
result = dell_smm_io_set_fan_lv(DELL_SMM_IO_FAN1, DELL_SMM_IO_FAN_LV2);
if (result == -1)
{
cerr << "Failed.\n";
}
cout << "Setting fan 2 speed to maximum...\n";
result = dell_smm_io_set_fan_lv(DELL_SMM_IO_FAN2, DELL_SMM_IO_FAN_LV2);
if (result == -1)
{
cerr << "Failed. (Maybe your system just has one fan?)\n";
}
}
else
{
cout << "WARNING: CPU and GPU are not designed to run under load without active cooling.\n";
cout << "Make sure that you have alternate fan speed control measures in place.\n";
}
}
else if (enableEcFanControl)
{
cout << "Attempting to enable EC control of the fan...\n";
ULONG command = !useAlternateCommand ? DELL_SMM_IO_ENABLE_FAN_CTL1 : DELL_SMM_IO_ENABLE_FAN_CTL2;
int result = dell_smm_io(command, DELL_SMM_IO_NO_ARG);
if (result == -1)
{
cerr << "Failed.\n";
unloadDriver();
exit(-1);
}
cout << " ...Success.\n";
}
else if (setFanLevel)
{
cout << "Attempting to set the fan level...\n";
int result = dell_smm_io_set_fan_lv(fanSelection, fanLevel);
if (result == -1)
{
cerr << "Failed.\n";
unloadDriver();
exit(-1);
}
cout << " ...Success.\n";
}
else if (getFanRpm)
{
cout << "Attempting to query the fan RPM...\n";
int result = dell_smm_io_get_fan_rpm(fanSelection);
if (result == -1)
{
cerr << "Failed.\n";
unloadDriver();
exit(-1);
}
cout << " Result: " << result << "\n";
returnCode = result;
}
// Unload driver.
unloadDriver();
}
return returnCode;
}
// Print out basic usage information.
void usage()
{
cout << "Usage: DellFanCmd [command]\n";
cout << "Available commands:\n";
cout << " ec-disable Turn EC fan control off (fan goes to manual control)\n";
cout << " ec-disable-nofanchg Turn EC fan control off and don't change the fan speed\n";
cout << " ec-enable Turn EC fan control on (fan goes to automatic control)\n";
cout << " fan1-rpm Report RPM for fan 1\n";
cout << " fan2-rpm Report RPM for fan 2\n";
cout << " (RPMs are reported via status/error code)\n";
cout << "\n";
cout << "After EC fan control is off, you may use:\n";
cout << " fan1-level0 Set fan 1 to level 0 (0%)\n";
cout << " fan1-level1 Set fan 1 to level 1 (50%)\n";
cout << " fan1-level2 Set fan 1 to level 2 (100%)\n";
cout << " fan2-level0 Set fan 2 to level 0 (0%)\n";
cout << " fan2-level1 Set fan 2 to level 1 (50%)\n";
cout << " fan2-level2 Set fan 2 to level 2 (100%)\n";
cout << "\n";
cout << "Append \"-alt\" to EC disable or enable commands to attempt alternate method.\n";
cout << "(Example: ec-disable-alt)\n";
}
// Load the SMM IO driver.
void loadDriver()
{
cout << "Loading SMM IO driver...\n";
bool result = BDSID_Initialize();
if (!result)
{
cerr << "Failed.\n";
cerr << "\n";
cerr << "Please make sure that bzh_dell_smm_io_x64.sys is present in the working directory,\n";
cerr << "and that measures needed to allow the signature to be verified have been performed.\n";
cerr << "\n";
cout << "Attempting driver cleanup after failed driver load, errors may follow.\n";
unloadDriver();
exit(2);
}
cout << " ...Success.\n";
}
// Unload the SMM IO driver.
void unloadDriver()
{
cout << "Unloading SMM IO driver...\n";
BDSID_Shutdown();
cout << " ...Done.\n";
}